-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 08, 2026 at 10:28 PM
-- Server version: 8.0.46
-- PHP Version: 8.3.26

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `ddcph_ddcpharmacy`
--

DELIMITER $$
--
-- Procedures
--
CREATE  PROCEDURE `activateUserbyOTP` (IN `userid` INT)   BEGIN

END$$

CREATE  PROCEDURE `addAdvertisements` (IN `adtype` INT, IN `adtitle` VARCHAR(255), IN `adowner` VARCHAR(255), IN `adbrand` INT, IN `adfromdate` DATE, IN `addateto` DATE, IN `adproduct` INT, IN `admainctgory` INT, IN `adsubctgory` INT, IN `adcatogry` INT, IN `adcontent` TEXT, IN `adlogo` VARCHAR(255), IN `adurl` VARCHAR(255), IN `adpublish` INT, IN `adstatus` INT, IN `adoffer` INT, IN `homepagestat` INT, IN `maincatstat` INT, IN `subcatstat` INT, IN `catstatus` INT, IN `adminid` INT)   BEGIN  

	DECLARE lid INT DEFAULT 0;
	INSERT INTO advertisements_tbl(advt_type,advt_title,advt_owner,advt_brand,advt_datefrom,advt_dateto,advt_products,advt_maincategories,advt_subcategories, advt_catgory,advt_content, advt_image, advt_linkedurl,advt_publish, advt_status,advt_offer,advt_hompagestatus,advt_maincatstatus,advt_subcatstatus,advt_catstatus, advt_crtdby, advt_crtdon) VALUES (adtype,adtitle,adowner,adbrand,adfromdate,addateto,adproduct,admainctgory,adsubctgory,adcatogry,adcontent,adlogo,adurl,adpublish,adstatus,adoffer,homepagestat,maincatstat,subcatstat,catstatus,adminid,CURRENT_TIMESTAMP());
    
    SET lid = LAST_INSERT_ID();
END$$

CREATE  PROCEDURE `addAdvice` (IN `qtype` INT, IN `qitem` INT, IN `advice` TEXT, IN `adminid` INT)   BEGIN
	DECLARE adid INT DEFAULT 0;
    
	INSERT INTO advices_table  
    (advice_type, advice_item, advice_content, advice_crtdby)
    VALUES(qtype, qitem, advice, adminid);
    
    SET adid = LAST_INSERT_ID();
    SELECT adid;
END$$

CREATE  PROCEDURE `addbillStock` (IN `storeid` INT, IN `itemid` INT, IN `batch` VARCHAR(255))   BEGIN
SELECT bill_stock FROM billstock_tbl b  WHERE  billstore_id =storeid AND billstock_item=itemid AND bill_batch=batch;
END$$

CREATE  PROCEDURE `addBrandManufactureDuplicate` (IN `brandId` VARCHAR(225), IN `manufId` INT)   BEGIN  
INSERT INTO brand_manufacturer_tbl (brnd_id, brndmanu_id)
SELECT b.brand_id, b.brand_owner
FROM brands_tbl b
WHERE b.brand_id = brandId AND b.brand_owner=manufId AND b.brand_status=1;
UPDATE brands_tbl b SET b.brand_duplicate=1 WHERE b.brand_id = brandId AND b.brand_owner=manufId AND b.brand_status=1;
END$$

CREATE  PROCEDURE `addCartDataToOrderDetails` (IN `custmrid` INT, IN `orderno` VARCHAR(20), IN `razorpayid` VARCHAR(20), IN `amount` DECIMAL(11,2), IN `trnstnid` VARCHAR(50), IN `delvid` INT)   BEGIN
DECLARE ordid ,ord_ids ,store,item INT DEFAULT 0;
DECLARE resultString ,resultQty ,singleValue,singleQty TEXT;
 /* insert into order table Table */
  INSERT INTO orders_tbl(order_customer,order_deliverId,order_orderid,order_razorpayid ,order_source, order_paidby,order_shipby,order_subtotal,order_updby, order_updon) VALUES(custmrid,delvid,orderno,razorpayid,1,custmrid,NULL,amount,1,CURRENT_TIMESTAMP);
     SET ordid = LAST_INSERT_ID();
/* insert into Payment Table */
    INSERT INTO payments_tbl(paymt_orderid,paymt_userid,paymt_paid,paymt_paidon,paymt_paidby,paymt_transid)
    VALUES (ordid,custmrid,amount,CURRENT_TIMESTAMP,1,trnstnid);
   /* insert into order details Table */
     		/*INSERT INTO order_details(ordet_order,ordet_cartid, ordet_productid, ordet_quantity, ordet_producpackid, order_batchid) SELECT ordid,cart_id,product_id,quantity,prodpack_id,batch_id FROM user_cart WHERE user_id=custmrid;
       */
       CALL AllocateProductStock(custmrid,ordid);
       SELECT order_id  INTO ord_ids FROM orders_tbl WHERE order_customer=custmrid ORDER BY order_id DESC LIMIT 1;
    SELECT GROUP_CONCAT(order_batchid) INTO resultString FROM order_details WHERE ordet_order=ord_ids;
    SELECT GROUP_CONCAT(ordet_quantity) INTO resultQty FROM order_details WHERE ordet_order=ord_ids;
 WHILE resultString IS NOT NULL AND resultString != '' DO
        SET singleValue = SUBSTRING_INDEX(resultString, ',', 1);
        SET singleQty = SUBSTRING_INDEX(resultQty, ',', 1);
        SELECT strstk_store,strstk_item INTO store,item FROM storestock_pricing WHERE strstk_id =singleValue;
        UPDATE storestock_pricing SET strstk_reserved=strstk_reserved+singleQty WHERE strstk_id =singleValue;
        UPDATE storestock_master SET storestock_reserved=storestock_reserved+singleQty WHERE storestock_store = store AND storestock_item =item;
        -- Remove the processed value from resultString
        SET resultString = REPLACE(resultString, CONCAT(singleValue, ','), '');
        SET resultQty = REPLACE(resultQty, CONCAT(singleQty, ','), '');
        IF resultString = singleValue AND resultQty=singleQty  THEN
            SET resultString = '';
            SET resultQty='';
        END IF;
    END WHILE;
    DELETE FROM user_cart  WHERE user_id=custmrid AND order_id=0;
SELECT c.customer_phone as phone FROM customers_tbl c WHERE c.customer_id=custmrid;
END$$

CREATE  PROCEDURE `addCartDataToOrderDetailswithPrescription` (IN `custmrid` INT, IN `orderno` VARCHAR(20), IN `razorpayid` VARCHAR(20), IN `amount` DECIMAL(11,2), IN `trnstnid` VARCHAR(50), IN `delvid` INT, IN `checkval` INT)   BEGIN
DECLARE ordid ,ord_ids ,store,item INT DEFAULT 0;
DECLARE resultString ,resultQty ,singleValue,singleQty TEXT;
 /* insert into order table Table */
  INSERT INTO orders_tbl(order_customer,order_deliverId,order_orderid,order_razorpayid ,order_source, order_paidby,order_shipby,order_subtotal,order_prescription,order_updby, order_updon) VALUES(custmrid,delvid,orderno,razorpayid,1,custmrid,NULL,amount,checkval,1,CURRENT_TIMESTAMP);
     SET ordid = LAST_INSERT_ID();
/* insert into Payment Table */
    INSERT INTO payments_tbl(paymt_orderid,paymt_userid,paymt_paid,paymt_paidon,paymt_paidby,paymt_transid)
    VALUES (ordid,custmrid,amount,CURRENT_TIMESTAMP,1,trnstnid);
   /* insert into order details Table */
     		/*INSERT INTO order_details(ordet_order,ordet_cartid, ordet_productid, ordet_quantity, ordet_producpackid, order_batchid) SELECT ordid,cart_id,product_id,quantity,prodpack_id,batch_id FROM user_cart WHERE user_id=custmrid;
       */
       CALL AllocateProductStock(custmrid,ordid);
       SELECT order_id  INTO ord_ids FROM orders_tbl WHERE order_customer=custmrid ORDER BY order_id DESC LIMIT 1;
    SELECT GROUP_CONCAT(order_batchid) INTO resultString FROM order_details WHERE ordet_order=ord_ids;
    SELECT GROUP_CONCAT(ordet_quantity) INTO resultQty FROM order_details WHERE ordet_order=ord_ids;
 WHILE resultString IS NOT NULL AND resultString != '' DO
        SET singleValue = SUBSTRING_INDEX(resultString, ',', 1);
        SET singleQty = SUBSTRING_INDEX(resultQty, ',', 1);
        SELECT strstk_store,strstk_item INTO store,item FROM storestock_pricing WHERE strstk_id =singleValue;
        UPDATE storestock_pricing SET strstk_reserved=strstk_reserved+singleQty WHERE strstk_id =singleValue;
        UPDATE storestock_master SET storestock_reserved=storestock_reserved+singleQty WHERE storestock_store = store AND storestock_item =item;
        -- Remove the processed value from resultString
        SET resultString = REPLACE(resultString, CONCAT(singleValue, ','), '');
        SET resultQty = REPLACE(resultQty, CONCAT(singleQty, ','), '');
        IF resultString = singleValue AND resultQty=singleQty  THEN
            SET resultString = '';
            SET resultQty='';
        END IF;
    END WHILE;
    DELETE FROM user_cart  WHERE user_id=custmrid AND order_id=0;
    SELECT ordid, c.customer_phone as phone FROM customers_tbl c WHERE c.customer_id=custmrid;

END$$

CREATE  PROCEDURE `addCartDataToOrderDetailswithPrescriptionbyOrderID` (IN `custmrid` INT, IN `orderno` VARCHAR(20), IN `razorpayid` VARCHAR(20), IN `amount` DECIMAL(11,2), IN `trnstnid` VARCHAR(50), IN `delvid` INT)   BEGIN
DECLARE ordid ,ord_ids ,store,item INT DEFAULT 0;
DECLARE resultString ,resultQty ,singleValue,singleQty TEXT;
 /* insert into order table Table */
  
     
     SELECT o.order_id INTO ordid from orders_tbl o WHERE o.order_orderid=orderno AND o.order_customer=custmrid;
     
     UPDATE orders_tbl o SET o.order_razorpayid=razorpayid,o.order_source=1,o.order_delivery=1,o.order_subtotal=amount,o.order_quick=0,o.order_updby=custmrid WHERE o.order_customer=custmrid AND o.order_orderid=orderno;
     
/* insert into Payment Table */
    INSERT INTO payments_tbl(paymt_orderid,paymt_userid,paymt_paid,paymt_paidon,paymt_paidby,paymt_transid)
    VALUES (ordid,custmrid,amount,CURRENT_TIMESTAMP,1,trnstnid);
   /* insert into order details Table */
     		/*INSERT INTO order_details(ordet_order,ordet_cartid, ordet_productid, ordet_quantity, ordet_producpackid, order_batchid) SELECT ordid,cart_id,product_id,quantity,prodpack_id,batch_id FROM user_cart WHERE user_id=custmrid;
       */
       CALL AllocateProductStockk(custmrid,ordid);
       SELECT order_id  INTO ord_ids FROM orders_tbl WHERE order_customer=custmrid AND order_orderid=orderno;
    SELECT GROUP_CONCAT(order_batchid) INTO resultString FROM order_details WHERE ordet_order=ord_ids;
    SELECT GROUP_CONCAT(ordet_quantity) INTO resultQty FROM order_details WHERE ordet_order=ord_ids;
 WHILE resultString IS NOT NULL AND resultString != '' DO
        SET singleValue = SUBSTRING_INDEX(resultString, ',', 1);
        SET singleQty = SUBSTRING_INDEX(resultQty, ',', 1);
        SELECT strstk_store,strstk_item INTO store,item FROM storestock_pricing WHERE strstk_id =singleValue;
        UPDATE storestock_pricing SET strstk_reserved=strstk_reserved+singleQty WHERE strstk_id =singleValue;
        UPDATE storestock_master SET storestock_reserved=storestock_reserved+singleQty WHERE storestock_store = store AND storestock_item =item;
        -- Remove the processed value from resultString
        SET resultString = REPLACE(resultString, CONCAT(singleValue, ','), '');
        SET resultQty = REPLACE(resultQty, CONCAT(singleQty, ','), '');
        IF resultString = singleValue AND resultQty=singleQty  THEN
            SET resultString = '';
            SET resultQty='';
        END IF;
    END WHILE;
    DELETE FROM user_cart  WHERE user_id=custmrid AND order_id=ordid;
    SELECT orderno, c.customer_phone as phone FROM customers_tbl c WHERE c.customer_id=custmrid;

END$$

CREATE  PROCEDURE `addCourier` (IN `cname` VARCHAR(100), IN `ctype` INT, IN `staffid` INT, IN `mobile` VARCHAR(20), IN `vehicle` VARCHAR(20), IN `regno` VARCHAR(20), IN `contact` VARCHAR(50), IN `address` VARCHAR(255), IN `phones` VARCHAR(50), IN `whatsapp` VARCHAR(20), IN `email` VARCHAR(100), IN `url` VARCHAR(100), IN `gst` VARCHAR(30), IN `tin` VARCHAR(30), IN `notes` TEXT, IN `rates` LONGTEXT, IN `areas` LONGTEXT, IN `collect` LONGTEXT, IN `status` INT, IN `adminid` INT)   BEGIN
	DECLARE success INT DEFAULT 0;
	IF( SELECT COUNT(*) FROM couriers_tbl x 
       	WHERE x.courier_name = trim(cname) OR x.courier_mobile = trim(mobile) ) = 0 THEN
    		INSERT INTO couriers_tbl( courier_type, courier_staffid, courier_name, courier_mobile, courier_vehicle, courier_vehregn, courier_contact, courier_address, courier_gst, courier_tin, courier_phones, courier_whatsapp, courier_email, courier_url, courier_rates, courier_areas, courier_collect, courier_notes, courier_status, courier_crtdby ) 
            VALUES( ctype, staffid, cname, mobile, vehicle, regno, contact, address, gst, tin, phones, whatsapp, email, url, rates, areas, collect,notes, status,adminid );
        SET success = 1;
   	END IF;
    
    SELECT success;
END$$

CREATE  PROCEDURE `addDealer` (IN `dname` VARCHAR(200), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(50), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT, IN `dealers` VARCHAR(255), IN `products` VARCHAR(255))   BEGIN
	DECLARE distid INT DEFAULT 0;
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	INSERT INTO dealers_tbl   
    ( dealer_name, dealer_address, dealer_phones, dealer_email, dealer_website, dealer_contact, dealer_contactno, dealer_contactemail, dealer_contactcell, dealer_whatsapp, dealer_contactat, dealer_regn, dealer_GST, dealer_TIN, dealer_remarks, dealer_status, dealer_crtdby )
	VALUES( dname, address, phones, email, website, contact, contactno, conemail, concell, whatsapp, contactat, regn, gstnum, tin, remarks, mstatus, adminid );
    
    SET distid = LAST_INSERT_ID();
    
    IF distid > 0 THEN
        /* add as sub-dealer if not empty */
        subiterator:
        LOOP
        	IF LENGTH(TRIM(dealers)) = 0 OR dealers IS NULL THEN
            	LEAVE subiterator;
            END IF;
            SET front = SUBSTRING_INDEX(dealers, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO subdealers_tbl ( 
               	subdealer_dealer, subdealer_parent, subdealer_crtdby ) 
            VALUES (distid, tempVal, adminid);
            SET dealers = INSERT(dealers, 1, frontlen + 1, '');
        END LOOP;
        
        /* add products if not empty */
        proditerator:
        LOOP
        	IF LENGTH(TRIM(products)) = 0 OR products IS NULL THEN
            	LEAVE proditerator;
            END IF;
            SET front = SUBSTRING_INDEX(products, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO dealer_products ( 
                dealerprod_dealer, dealerprod_product, dealerprod_crtdby ) 
            VALUES (distid, tempVal, adminid);
            SET products = INSERT(products, 1, frontlen + 1, '');
        END LOOP;
        
    END IF;
END$$

CREATE  PROCEDURE `addDeliverydetails` (IN `user_id` INT, IN `delivery_to` VARCHAR(200), IN `delivery_phone` VARCHAR(200), IN `customer_email` VARCHAR(200), IN `delivery_pin` VARCHAR(200), IN `delivery_house` TEXT, IN `delivery_street` TEXT, IN `delivery_landmark` TEXT, IN `delivery_city` VARCHAR(200), IN `delivery_state` VARCHAR(200), IN `delivery_type` INT, IN `guest_address` INT)   BEGIN
declare ids int;
DECLARE counts int;
IF (user_id IS NULL) THEN
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_phone=delivery_phone and c.customer_type=0;
IF(counts>=1)THEN
SELECT c.customer_id into ids FROM customers_tbl c WHERE c.customer_phone=delivery_phone and c.customer_type=0;

 -- Check if the delivery address exists
        IF EXISTS (
            SELECT 1 
            FROM delivery_address d 
            WHERE d.delivery_user = ids 
              AND d.delivery_status = 1
            LIMIT 1
        ) THEN
           UPDATE delivery_address d SET d.delivery_to=delivery_to,d.delivery_email=customer_email,d.delivery_pin=delivery_pin,d.delivery_house=delivery_house,d.delivery_street=delivery_street,d.delivery_landmark=delivery_landmark,d.delivery_city=delivery_city,d.delivery_state=delivery_state,d.delivery_type=delivery_type WHERE d.delivery_user=ids;
        
        ELSE
            -- Insert new delivery address if none exists
           INSERT INTO `delivery_address`(`delivery_user`, `delivery_to`, `delivery_phone`,`delivery_email`, `delivery_pin`, `delivery_house`, `delivery_street`, `delivery_landmark`, `delivery_city`, `delivery_state`, `delivery_type`, `delivery_status`) VALUES (ids, delivery_to, delivery_phone,customer_email,delivery_pin, delivery_house, delivery_street, delivery_landmark, delivery_city, delivery_state, delivery_type, 1);    
        END IF;
SELECT ids as userId, 0 as type ;
ELSE

INSERT INTO `customers_tbl`( `customer_type`,`customer_phone`) VALUES (0,delivery_phone);
SET ids = LAST_INSERT_ID();
INSERT INTO `delivery_address`(`delivery_user`, `delivery_to`, `delivery_phone`,`delivery_email`, `delivery_pin`, `delivery_house`, `delivery_street`, `delivery_landmark`, `delivery_city`, `delivery_state`, `delivery_type`, `delivery_status`) VALUES (ids, delivery_to, delivery_phone,customer_email,delivery_pin, delivery_house, delivery_street, delivery_landmark, delivery_city, delivery_state, delivery_type, 1);
SELECT ids as userId, 0 as type ;
END IF;

ELSE
IF(guest_address!=0)THEN
UPDATE delivery_address d SET d.delivery_to=delivery_to,d.delivery_phone=delivery_phone,d.delivery_email=customer_email,d.delivery_pin=delivery_pin,d.delivery_house=delivery_house,d.delivery_street=delivery_street,d.delivery_landmark=delivery_landmark,d.delivery_city=delivery_city,d.delivery_state=delivery_state,d.delivery_type=delivery_type WHERE d.delivery_user=user_id and d.delivery_id=guest_address;
SELECT user_id as userId, 1 as type;
ELSE
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_id=user_id and c.customer_type=1;
IF(counts=1)THEN
UPDATE delivery_address d SET d.delivery_status=0 WHERE d.delivery_user=user_id;
INSERT INTO `delivery_address`(`delivery_user`, `delivery_to`, `delivery_phone`,`delivery_email`, `delivery_pin`, `delivery_house`, `delivery_street`, `delivery_landmark`, `delivery_city`, `delivery_state`, `delivery_type`, `delivery_status`) VALUES (user_id, delivery_to, delivery_phone,customer_email,delivery_pin, delivery_house, delivery_street, delivery_landmark, delivery_city, delivery_state, delivery_type, 1);
SELECT user_id as userId, 1 as type;
ELSE 
SELECT "" as userId, "" as type;
END IF;
END IF;
END IF;
END$$

CREATE  PROCEDURE `addDeliverydetailsold` (IN `user_id` INT, IN `delivery_to` VARCHAR(200), IN `delivery_phone` VARCHAR(200), IN `customer_email` VARCHAR(200), IN `delivery_pin` VARCHAR(200), IN `delivery_house` TEXT, IN `delivery_street` TEXT, IN `delivery_landmark` TEXT, IN `delivery_city` VARCHAR(200), IN `delivery_state` VARCHAR(200), IN `delivery_type` INT, IN `guest_address` INT)   BEGIN
declare ids int;
DECLARE counts int;
if(user_id=null OR user_id="")THEN
if(guest_address=1)THEN
SELECT c.customer_id as userId, 0 as type FROM customers_tbl c WHERE c.customer_phone=delivery_phone and c.customer_type=0;
ELSE
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_phone=delivery_phone and c.customer_type=0;
IF(counts=1)THEN
SELECT c.customer_id into ids FROM customers_tbl c WHERE c.customer_phone=delivery_phone and c.customer_type=0;
UPDATE delivery_address d SET d.delivery_status=0 WHERE d.delivery_user=ids;
INSERT INTO `delivery_address`(`delivery_user`, `delivery_to`, `delivery_phone`,`delivery_email`, `delivery_pin`, `delivery_house`, `delivery_street`, `delivery_landmark`, `delivery_city`, `delivery_state`, `delivery_type`, `delivery_status`) VALUES (ids, delivery_to, delivery_phone,customer_email,delivery_pin, delivery_house, delivery_street, delivery_landmark, delivery_city, delivery_state, delivery_type, 1);
SELECT ids as userId, 0 as type ;
ELSE

INSERT INTO `customers_tbl`( `customer_type`,`customer_phone`) VALUES (0,delivery_phone);
SET ids = LAST_INSERT_ID();
INSERT INTO `delivery_address`(`delivery_user`, `delivery_to`, `delivery_phone`,`delivery_email`, `delivery_pin`, `delivery_house`, `delivery_street`, `delivery_landmark`, `delivery_city`, `delivery_state`, `delivery_type`, `delivery_status`) VALUES (ids, delivery_to, delivery_phone,customer_email,delivery_pin, delivery_house, delivery_street, delivery_landmark, delivery_city, delivery_state, delivery_type, 1);
SELECT ids as userId, 0 as type ;
END IF;
END IF;
ELSE
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_id=user_id;
IF(counts=1)THEN
INSERT INTO `delivery_address`(`delivery_user`, `delivery_to`, `delivery_phone`, `delivery_pin`, `delivery_house`, `delivery_street`, `delivery_landmark`, `delivery_city`, `delivery_state`, `delivery_type`, `delivery_status`) VALUES (user_id, delivery_to, delivery_phone,delivery_pin, delivery_house, delivery_street, delivery_landmark, delivery_city, delivery_state, delivery_type, 1);
SELECT user_id as userId, 1 as type;
ELSE 
SELECT "" as userId, "" as type;
END IF;
END IF;
END$$

CREATE  PROCEDURE `addDistributor` (IN `dname` VARCHAR(200), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(200), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT, IN `manufs` VARCHAR(255), IN `distrbs` VARCHAR(255), IN `products` VARCHAR(255))   BEGIN
	DECLARE distid INT DEFAULT 0;
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	INSERT INTO distributors_tbl  
    ( distri_name, distri_address, distri_phones, distri_email, distri_website, distri_contact, distri_contactno, distri_contactemail, distri_contactcell, distri_whatsapp, distri_contactat, distri_regn, distri_GST, distri_TIN, distri_remarks, distri_status, distri_crtdby )
	VALUES( dname, address, phones, email, website, contact, contactno, conemail, concell, whatsapp, contactat, regn, gstnum, tin, remarks, mstatus, adminid );
    
    SET distid = LAST_INSERT_ID();
    
    IF distid > 0 THEN
    	/* add manufacturers if given */
        iterator:
        LOOP
        	IF LENGTH(TRIM(manufs)) = 0 OR manufs IS NULL THEN
            	LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(manufs, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO distributor_manufacturers (
                distrimanu_distributor, distrimanu_company, distrimanu_crtdby) 
            VALUES (distid, tempVal, adminid);
            SET manufs = INSERT(manufs, 1, frontlen + 1, '');
        END LOOP;
        
        /* add as sub-distributor if not empty */
        subiterator:
        LOOP
        	IF LENGTH(TRIM(distrbs)) = 0 OR distrbs IS NULL THEN
            	LEAVE subiterator;
            END IF;
            SET front = SUBSTRING_INDEX(distrbs, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO subdistributors_tbl ( 
                subdistri_distributor, subdistri_parent, subdistri_crtdby ) 
            VALUES (distid, tempVal, adminid);
            SET distrbs = INSERT(distrbs, 1, frontlen + 1, '');
        END LOOP;
        
        /* add products if not empty */
        proditerator:
        LOOP
        	IF LENGTH(TRIM(products)) = 0 OR products IS NULL THEN
            	LEAVE proditerator;
            END IF;
            SET front = SUBSTRING_INDEX(products, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO distributor_products ( 
                distriprod_distributor, distriprod_product, distriprod_crtdby ) 
            VALUES (distid, tempVal, adminid);
            SET products = INSERT(products, 1, frontlen + 1, '');
        END LOOP;
        
    END IF;
END$$

CREATE  PROCEDURE `adddoctor` (IN `dtype` INT, IN `dname` VARCHAR(100), IN `dregno` VARCHAR(50), IN `dmobile` VARCHAR(50), IN `demail` VARCHAR(50), IN `ddegrees` VARCHAR(255), IN `dhospital` VARCHAR(255), IN `dremarks` VARCHAR(255), IN `dphoto` VARCHAR(100), IN `dsignature` VARCHAR(100), IN `ddatefrom` DATE, IN `davailfrom` TIME, IN `ddateto` DATE, IN `davailto` TIME, IN `adminid` INT)   BEGIN

DECLARE did INT DEFAULT 0;
INSERT INTO doctors_tbl(doctor_type, doctor_name, doctor_regno, doctor_mobile, doctor_email, doctor_degrees, doctor_hospital, doctor_remarks, doctor_photo, doctor_signature, doctor_datefrom, doctor_availfrom, doctor_dateto, doctor_availto, doctor_crtdby) VALUES (dtype, dname, dregno, dmobile, demail, ddegrees, dhospital, dremarks, dphoto, dsignature, ddatefrom, davailfrom, ddateto, davailto, adminid);
    
    SET did = LAST_INSERT_ID();
END$$

CREATE  PROCEDURE `addDrugClassification` (IN `drgclass` VARCHAR(150), IN `parent` INT, IN `uses` TEXT, IN `warning` TEXT, IN `precautions` TEXT, IN `howto` TEXT, IN `dosage` TEXT, IN `misdose` TEXT, IN `overdose` TEXT, IN `avoids` TEXT, IN `sideffects` TEXT, IN `interactions` TEXT, IN `remarks` TEXT, IN `dstatus` INT, IN `adminid` INT)   BEGIN
	DECLARE drugid INT DEFAULT 0;
    
	INSERT INTO drug_classifications 
    ( drugclass_name, drugclass_parent, drugclass_details, drugclass_uses, drugclass_warnings, drugclass_precautions, drugclass_procedure, drugclass_dosage, drugclass_missdose, drugclass_overdose, drugclass_avoids, drugclass_sideffects, drugclass_interactions, drugclass_status, drugclass_crtdby )
    VALUES( drgclass, parent, remarks, uses, warning, precautions, howto, dosage, misdose, overdose, avoids, sideffects, interactions, dstatus, adminid );
    
    SET drugid = LAST_INSERT_ID();
    CALL reworkDrugSequence(drugid);
END$$

CREATE  PROCEDURE `addFaq` (IN `qtype` INT, IN `qitem` INT, IN `question` VARCHAR(255), IN `answer` TEXT, IN `adminid` INT)   BEGIN
	DECLARE faqid INT DEFAULT 0;
	INSERT INTO faq_table  
    (faq_type, faq_item, faq_question, faq_answer, faq_crtdby)
    VALUES(qtype, qitem, question, answer, adminid);
    SET faqid = LAST_INSERT_ID();
    SELECT faqid;
END$$

CREATE  PROCEDURE `addGenericMedicine` (IN `medicine` VARCHAR(255), IN `uses` TEXT, IN `working` TEXT, IN `sideffects` TEXT, IN `notes` TEXT, IN `mstatus` INT, IN `adminid` INT)   BEGIN
	IF TRIM(medicine) <> '' THEN
    	INSERT INTO generic_medicines( genmed_name, genmed_uses, genmed_working, genmed_sideffects, genmed_remarks, genmed_status, genmed_crtdby )
       	VALUES( medicine, uses, working, sideffects, notes, mstatus, adminid);
    END IF;
END$$

CREATE  PROCEDURE `addIngredient` (IN `ingred` VARCHAR(200), IN `itype` INT, IN `formula` VARCHAR(100), IN `bankid` VARCHAR(20), IN `atccode` VARCHAR(100), IN `isactive` INT, IN `drclass` VARCHAR(100), IN `notes` TEXT, IN `istatus` INT, IN `admin` INT)   BEGIN
	INSERT INTO ingredients_tbl 
    ( ingred_name, ingred_type, ingred_formula, ingred_drugbankid, ingred_codes, ingred_isactive, ingred_drugclasses, ingred_notes, ingred_status, ingred_crtdby )
    VALUES ( ingred, itype, formula, bankid, atccode, isactive, drclass, notes, istatus, admin);
END$$

CREATE  PROCEDURE `addIntoPrograms` (IN `menu` VARCHAR(50), IN `url` VARCHAR(100), IN `icon` VARCHAR(100), IN `parent` INT(10))   begin
DECLARE maxid int default 0;
SELECT MAX(progr_id) FROM programs_table into maxid ;
insert into programs_table(progr_menu ,progr_url, progr_icon, progr_parent,progr_serial) values(menu,url,icon,parent,maxid+1);

set @last_insert_id = LAST_INSERT_ID();

/*UPDATE programs_table s set s.progr_serial  = @last_insert_id WHERE s.progr_id = @last_insert_id;
*/
END$$

CREATE  PROCEDURE `addInvoice` (IN `invno` VARCHAR(50), IN `invdated` DATE, IN `ventype` INT, IN `venid` INT, IN `vendorgst` VARCHAR(255), IN `storeid` INT, IN `storegst` VARCHAR(255), IN `total` DECIMAL(10,2), IN `cst` DECIMAL(8,2), IN `gst` DECIMAL(8,2), IN `invdetails` TEXT, IN `notes` TEXT, IN `adminid` INT)   BEGIN
	DECLARE invid, resp INT DEFAULT 0;
    IF( SELECT COUNT(*) FROM invoices_tbl WHERE invoice_number = trim(invno) ) = 0 THEN
		INSERT INTO invoices_tbl( invoice_number, invoice_dated, invoice_vendertype, invoice_vendor,invoice_vendorgst,invoice_delstore,invoice_delgst, invoice_amount, invoice_cgst, invoice_sgst, invoice_notes, invoice_crtdby, invoice_delstatus )
    	VALUES( invno, invdated, ventype, venid,vendorgst,storeid,storegst, total, cst, gst, notes, adminid, 1 );
    	SET invid = LAST_INSERT_ID();
    	SET resp = invid;
    	IF invid > 0 THEN
    		SET @text := TRIM(BOTH '##' FROM invdetails);
  			SET @strLen := 0;
  			SET @i := 1;
  			WHILE @strLen < LENGTH(@text) DO
    			SET @str := SUBSTRING_INDEX(@text, '##', @i);
    			SET @strLen := LENGTH(@str);
    			SET @i := @i + 1;
     			SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        		SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 			SET @strGLen := 0;
     			SET @Gi := 1;
     			SET @icols := 1;
     			WHILE @strGLen < LENGTH(@GRAPE) DO
		        	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                	SET @strGLen := LENGTH(@Gstr);
                	SET @Gi := @Gi + 1;
                	IF @icols = 1 THEN
                   		SET @pord := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 2 THEN
                    	SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 3 THEN
                    	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 4 THEN
                    	SET @price := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 5 THEN
                    	SET @cstpc := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 6 THEN
                    	SET @cst := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 7 THEN
                    	SET @sstpc := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 8 THEN
                    	SET @sst := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 9 THEN
                    	SET @delat := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 10 THEN
                    	SET @mrp := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 11 THEN
                    	SET @free := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 12 THEN
                    	SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 13 THEN
                    	SET @ptr := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 14 THEN
                    	SET @taxamt := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 15 THEN
                    	SET @discpc := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 16 THEN
                    	SET @disct := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 17 THEN
                    	SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 18 THEN
                    	SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSE
                    	SET @schdisc := SUBSTRING_INDEX(@Gstr, '|', -1);
                	END IF;
        			SET @icols := @icols + 1;
     			END WHILE;
     			IF @pord !=0 THEN
                 INSERT INTO invoice_details( invdet_invoice, invdet_porder, invdet_item, invdet_qty, invdet_price, invdet_cstpc, invdet_cst, invdet_sstpc, invdet_sst, invdet_delivered, invdet_mrp, invdet_free, invdet_schdisc, invdet_hsn, invdet_ptr, invdet_taxamt, invdet_discpc, invdet_discount, invdet_batch, invdet_expiry )
            	VALUES( invid, @pord, @item, @qty, @price, @cstpc, @cst, @sstpc, @sst, @delat, @mrp, @free, @schdisc, @hsn, @ptr, @taxamt, @discpc, @disct, @batch, @expiry );
                ELSE
                INSERT INTO invoice_details( invdet_invoice, invdet_porder,	invdet_wopo, invdet_item, invdet_qty, invdet_price, invdet_cstpc, invdet_cst, invdet_sstpc, invdet_sst, invdet_delivered, invdet_mrp, invdet_free, invdet_schdisc, invdet_hsn, invdet_ptr, invdet_taxamt, invdet_discpc, invdet_discount, invdet_batch, invdet_expiry )
            	VALUES( invid, @pord,1, @item, @qty, @price, @cstpc, @cst, @sstpc, @sst, @delat, @mrp, @free, @schdisc, @hsn, @ptr, @taxamt, @discpc, @disct, @batch, @expiry );
                END IF;
                UPDATE purchase_orders p SET p.purchord_status=5 WHERE p.purchord_id=@pord;
  			END WHILE;
    	END IF;
    END IF;
    SELECT resp;
END$$

CREATE  PROCEDURE `addItemtoGallery` (IN `packid` INT, IN `placedat` INT, IN `url` VARCHAR(100), IN `medm` INT, IN `heading` VARCHAR(255), IN `title` VARCHAR(255), IN `alt` VARCHAR(255), IN `descr` VARCHAR(255), IN `serial` INT, IN `publish` INT, IN `gstatus` INT, IN `adminid` INT)   BEGIN
	INSERT INTO product_gallery( prodgal_prodpack, prodgal_url, prodgal_placedat, prodgal_medium, prodgal_heading, prodgal_descr, prodgal_title, prodgal_alt, prodgal_serial, prodgal_publish, prodgal_status, prodgal_crtdby )
    VALUES( packid, url, placedat, medm, heading, descr, title, alt, serial, publish, gstatus, adminid );
END$$

CREATE  PROCEDURE `addLocation` (IN `location` VARCHAR(100), IN `pin` VARCHAR(10), IN `country` VARCHAR(3), IN `state` VARCHAR(20), IN `district` INT, IN `remarks` TEXT, IN `dstatus` INT, IN `adminid` INT)   BEGIN
	DECLARE lid INT DEFAULT 0;
    
	INSERT INTO delivery_areas( delarea_location, delarea_pincode, delarea_country, delarea_province, delarea_district, delarea_remarks, delarea_status, delarea_crtdby )
    VALUES( location, pin, country, state, district, remarks, dstatus, adminid );
    
    SET lid = LAST_INSERT_ID();
    
    SELECT lid;
END$$

CREATE  PROCEDURE `addManufacturer` (IN `mname` VARCHAR(200), IN `mcode` VARCHAR(20), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(50), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT)   BEGIN
	INSERT INTO manufacturers_tbl 
    (manuf_name, manuf_code,manuf_address, manuf_phones, manuf_email, manuf_website, manuf_contact, 
     manuf_contactno, manuf_contactemail, manuf_contactcell, manuf_whatsapp, manuf_contactat, 
     manuf_regn, manuf_remarks, manuf_status, manuf_crtdby)
	VALUES( mname,mcode,address, phones, email, website, contact, contactno, conemail, concell, 
           whatsapp, contactat, regn, remarks, mstatus, adminid );
END$$

CREATE  PROCEDURE `addMeasuringUnit` (IN `measur` VARCHAR(50), IN `shorted` VARCHAR(10), IN `adminid` INT)   BEGIN
	DECLARE mid INT DEFAULT 0;
    
	INSERT INTO measure_units( measunit_name, measunit_shortname, measunit_crtdby )
    VALUES( measur, shorted, adminid );
    
    SET mid = LAST_INSERT_ID();
    SELECT mid;
END$$

CREATE  PROCEDURE `addNewIssusPerTask` (IN `task_id` INT, IN `issues` TEXT, IN `solution` TEXT)   BEGIN

INSERT INTO tbl_help_desk_reason (reason_help_id,reason_issue,reason_help,reason_status) VALUES (task_id,issues,solution,1) ;




END$$

CREATE  PROCEDURE `addOnInvoice` (IN `invoiceno` VARCHAR(50), IN `invdated` DATE, IN `vendtype` INT, IN `vendor` INT, IN `vendorgst` VARCHAR(255), IN `storeid` INT, IN `storegst` VARCHAR(255), IN `invdetails` TEXT, IN `notes` TEXT, IN `adminid` INT)   BEGIN
	DECLARE invid, resp INT DEFAULT 0;
     IF( SELECT COUNT(*) FROM invoices_tbl WHERE invoice_number = trim(invoiceno) ) = 0 THEN
		INSERT INTO invoices_tbl(invoice_number, invoice_dated, invoice_vendertype,	invoice_vendor,invoice_vendorgst,invoice_delstore,invoice_delgst,invoice_amount, invoice_cgst, invoice_sgst, invoice_notes, invoice_crtdby, invoice_delstatus )
    	VALUES(invoiceno, invdated, vendtype, vendor,vendorgst,storeid,storegst, 0, 0, 0, notes, adminid, 1 );
    	SET invid = LAST_INSERT_ID();
    	SET resp = invid;
    	IF invid > 0 THEN
    		SET @text := TRIM(BOTH '##' FROM invdetails);
  			SET @strLen := 0;
  			SET @i := 1;
  			WHILE @strLen < LENGTH(@text) DO
    			SET @str := SUBSTRING_INDEX(@text, '##', @i);
    			SET @strLen := LENGTH(@str);
    			SET @i := @i + 1;
     			SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        		SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 			SET @strGLen := 0;
     			SET @Gi := 1;
     			SET @icols := 1;
     			WHILE @strGLen < LENGTH(@GRAPE) DO
		        	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                	SET @strGLen := LENGTH(@Gstr);
                	SET @Gi := @Gi + 1;
                	IF @icols = 1 THEN
                   		SET @invref := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 2 THEN                   	
                        SET @pord := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 3 THEN                   	
                        SET @stoknid := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 4 THEN
                    	SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 5 THEN
                    	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 6 THEN
                    	SET @qtyshort := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 7 THEN
                    	SET @delat := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 8 THEN
                    	SET @mrp := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 9 THEN
                    	SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 10 THEN
                    	SET @ptr := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 11 THEN
                    	SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSE
                    	SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
                	END IF;
        			SET @icols := @icols + 1;
     			END WHILE;
     			INSERT INTO invoice_details( invdet_invoice, invdet_porder, invdet_item, invdet_qty, invdet_price, invdet_cstpc, invdet_cst, invdet_sstpc, invdet_sst, invdet_delivered, invdet_mrp, invdet_free, invdet_hsn, invdet_ptr, invdet_taxamt, invdet_discpc, invdet_discount, invdet_batch, invdet_expiry )
            	VALUES(invid, @pord, @item, @qty, 0, 0, 0, 0, 0, @delat, @mrp,0, @hsn, @ptr,0,0,0, @batch, @expiry );
                INSERT INTO addoninvoice(addinv_stokinid,addinv_ref,addinv_invoice, addinv_item,addinv_short,addinv_supply,addinv_status,addinv_updby,addinv_updon) VALUES (@stoknid,@invref,invid,@item, @qtyshort,@qty,1,adminid,CURRENT_TIMESTAMP);
UPDATE stock_inwards SET stockin_short = (@qtyshort - @qty) WHERE stockin_id = @stoknid AND stockin_invref IN (SELECT invdet_id FROM invoice_details WHERE invdet_invoice = @invref);
  			END WHILE;
    	END IF;
    END IF;
    SELECT resp;
END$$

CREATE  PROCEDURE `addPackingType` (IN `packing` VARCHAR(50), IN `packsale` INT, IN `adminid` INT)   BEGIN
	DECLARE pid INT DEFAULT 0;
	INSERT INTO packing_tbl( packing_type, packing_sale, packing_crtdby)
    VALUES( packing, packsale, adminid );
    SET pid = LAST_INSERT_ID();
    SELECT pid;
END$$

CREATE  PROCEDURE `addpharmacontent` (IN `pharma_name` VARCHAR(750), IN `pharma_status` INT, IN `adminid` INT)   BEGIN
    INSERT INTO pharmacologicalcontent_tbl (pharma_name, pharma_status, pharma_crtdby)
    VALUES (pharma_name, pharma_status, adminid);
    SELECT LAST_INSERT_ID() AS new_id;

END$$

CREATE  PROCEDURE `addPrescriptionFiles` (IN `p_user_id` INT, IN `p_ordid` VARCHAR(100), IN `p_files` JSON, IN `p_path` VARCHAR(255), IN `p_phone` VARCHAR(20), IN `p_status` INT)   BEGIN
    DECLARE i INT DEFAULT 0;
    DECLARE total INT DEFAULT 0;

    -- Handle NULL safely
    IF p_files IS NOT NULL AND JSON_VALID(p_files) THEN
        SET total = JSON_LENGTH(p_files);
    END IF;

    -- Case 1: If files exist, insert each file
    IF total > 0 THEN
        WHILE i < total DO
            INSERT INTO prescription_files(user_id, order_id, file_name, file_path, user_phone,file_status)
            VALUES (
                p_user_id,
                p_ordid,
                JSON_UNQUOTE(JSON_EXTRACT(p_files, CONCAT('$[', i, ']'))),
                p_path,
                p_phone,
                p_status
            );
            SET i = i + 1;
        END WHILE;
    ELSE
        -- Case 2: Only phone number, no files
        INSERT INTO prescription_files(user_id, order_id, file_name, file_path, user_phone,file_status)
        VALUES (p_user_id, p_ordid, NULL, NULL, p_phone,p_status);
    END IF;
END$$

CREATE  PROCEDURE `addPrescriptiontmpFiles` (IN `p_user_id` INT, IN `p_files` JSON, IN `p_path` VARCHAR(255))   BEGIN
    DECLARE i INT DEFAULT 0;
    DECLARE total INT DEFAULT 0;

    -- Handle NULL safely
    IF p_files IS NOT NULL AND JSON_VALID(p_files) THEN
        SET total = JSON_LENGTH(p_files);
    END IF;

    -- Case 1: If files exist, insert each file
    IF total > 0 THEN
        WHILE i < total DO
            INSERT INTO prescription_files_attached(user_id, file_name, file_path)
            VALUES (
                p_user_id,
          
                JSON_UNQUOTE(JSON_EXTRACT(p_files, CONCAT('$[', i, ']'))),
                p_path
               
            );
            SET i = i + 1;
        END WHILE;
    ELSE
        -- Case 2: Only phone number, no files
        INSERT INTO prescription_files_attached(user_id,file_name, file_path)
        VALUES (p_user_id, NULL, NULL);
    END IF;
END$$

CREATE  PROCEDURE `addProduct` (IN `pname` VARCHAR(255), IN `display` VARCHAR(255), IN `generic` INT, IN `maincat` INT, IN `subcat` INT, IN `categ` INT, IN `manuf` INT, IN `brand` INT, IN `drugmain` INT, IN `drugsub` INT, IN `drugclass` INT, IN `clasfd` INT, IN `prescrp` INT, IN `highlights` TEXT, IN `inform` TEXT, IN `working` TEXT, IN `howto` TEXT, IN `benefits` TEXT, IN `specs` TEXT, IN `features` TEXT, IN `usge` TEXT, IN `caution` TEXT, IN `warns` TEXT, IN `effects` TEXT, IN `antidot` TEXT, IN `interact` TEXT, IN `publish` INT, IN `sale` INT, IN `onlne` INT, IN `featured` INT, IN `popular` INT, IN `ingreds` TEXT, IN `dossage` TEXT, IN `taxgrp` INT, IN `schedule_id` INT, IN `pcontent` INT, IN `adminid` INT)   BEGIN

	DECLARE pid INT DEFAULT 0;
    
    INSERT INTO products_tbl( product_name, product_display,product_generic, product_maincategory, product_subcategory, product_category, product_manufacturer, product_brand, product_drugmainclass, product_drugsubclass, product_drugclass, product_classified, product_prescrption, product_highlights, product_information, product_working, product_howto, product_benefits, product_specifications, product_features, product_usage, product_precautions, product_warnings, product_sideffects, product_antidot, product_interactions, product_publish, product_sale, product_online, product_featured, product_popular, product_taxgroup, product_schedule, product_pcontent, product_crtdby) 
    VALUES(pname, display,generic, maincat, subcat, categ, manuf, brand, drugmain, drugsub, drugclass, clasfd, prescrp, highlights, inform, working, howto, benefits, specs, features, usge, caution, warns, effects, antidot, interact, publish, sale, onlne, featured, popular,taxgrp,schedule_id, pcontent, adminid);

	SET pid = LAST_INSERT_ID();
    
    IF pid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM ingreds);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
  
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
    
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     
     SET @icols := 1;
     
     WHILE @strGLen < LENGTH(@GRAPE) DO
     
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
     
        IF @icols = 1 THEN
        	SET @ingrd := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 2 THEN
            SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @unt := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        
        SET @icols := @icols + 1;
        
     END WHILE;
/* SELECT @ingrd, @qty, @unt,pid; */
	 INSERT INTO product_ingredients( prodingred_product, prodingred_ingredient, prodingred_quantity, prodingred_unit, prodingred_crtdby ) 
     VALUES( pid, @ingrd, @qty, @unt, adminid );
  END WHILE;
  
    /* packaging details */
    SET @text := TRIM(BOTH '##' FROM dossage);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
  
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
    
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     
     SET @icols := 1;
     
     WHILE @strGLen < LENGTH(@GRAPE) DO
     
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
     
        IF @icols = 1 THEN
        	SET @packid := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 2 THEN
            SET @pqty := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 3 THEN
            SET @punit := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 4 THEN
            SET @stkmax := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 5 THEN
            SET @stkmin := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 6 THEN
            SET @roq := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 7 THEN
            SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @tax := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        
        SET @icols := @icols + 1;
        
     END WHILE;

	 INSERT INTO product_packing( prodpack_product, prodpack_package, prodpack_quantity, prodpack_unit, prodpack_maxstock, prodpack_minstock, prodpack_roq, prodpack_hsn, prodpack_taxgroup, prodpack_crtdby ) 
     VALUES( pid, @packid, @pqty, @punit, @stkmax, @stkmin, @roq, @hsn, @tax, adminid );
  END WHILE;
    
    END IF;
END$$

CREATE  PROCEDURE `addProductClass` (IN `prparent` INT, IN `prclass` VARCHAR(100), IN `serial` INT, IN `adminid` INT, IN `thumb` VARCHAR(100))   BEGIN
	DECLARE prid INT DEFAULT 0;
	INSERT INTO product_classes  
    (prodclass_parent, prodclass_name, prodclass_serial, prodclass_crtdby, prodclass_thumb)
    VALUES( prparent, prclass, serial, adminid, thumb );
    
    SET prid = LAST_INSERT_ID(); 
    CALL reworkProductClassSequence(prid);
    SELECT prid;
END$$

CREATE  PROCEDURE `AddProductStockk` (IN `p_product_id` INT, IN `p_item_id` INT, IN `p_stock_id` INT, IN `p_required_qty` INT, IN `order_id` INT, IN `cart_id` INT)   BEGIN
    -- Declare variables
    DECLARE mrp, msp, disc DOUBLE DEFAULT 0;
    DECLARE qtys, strk,total_allocated,stock_available,allocated_qty INT DEFAULT 0;
   

    -- Retrieve product pricing details
    SELECT e1.strstk_mrp, e1.strstk_msp, e1.strstk_discount, 
           (e1.strstk_stock - e1.strstk_reserved), e1.strstk_id 
    INTO mrp, msp, disc, qtys, strk 
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = p_product_id  
      AND e1.strstk_item = p_item_id 
      AND e1.strstk_id = p_stock_id;

    -- Create temporary table
    CREATE TEMPORARY TABLE IF NOT EXISTS TempStockSelection (
          product_id INT,
        allocated_quantity INT,
        strstk_item INT,
        strstk_id INT,
        mrp DECIMAL(9,2),
         msp DECIMAL(9,2),
         discount DECIMAL(5,2)
    );
 -- Insert eligible stock entries sorted by expiry
    CREATE TEMPORARY TABLE IF NOT EXISTS TempStockData AS
    SELECT 
    e1.strstk_product,
        e1.strstk_id, 
        e1.strstk_item, 
        (e1.strstk_stock - e1.strstk_reserved) AS available_stock, 
        s1.stockin_expiry, 
        e1.strstk_discount, 
        e1.strstk_mrp, 
        e1.strstk_msp
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = p_product_id
      AND e1.strstk_item = p_item_id
      AND (e1.strstk_stock - e1.strstk_reserved) > 0
      AND s1.stockin_expiry >= CURRENT_DATE()
       AND e1.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) 
      AND e1.strstk_msp = CAST(msp AS DECIMAL(10,2)) 
      AND e1.strstk_discount = CAST(disc AS DECIMAL(10,2))
    ORDER BY s1.stockin_expiry ASC,e1.strstk_discount DESC,(e1.strstk_stock - e1.strstk_reserved) DESC;
    -- Process stock entries dynamically
    WHILE total_allocated < p_required_qty AND EXISTS (SELECT 1 FROM TempStockData) DO
        -- Get the next available stock
        SELECT strstk_product,strstk_id, strstk_item, available_stock, stockin_expiry, 
               strstk_discount, strstk_mrp, strstk_msp
        INTO @product_id,@stock_id, @stock_item, stock_available, @stock_expiry, 
             @stock_discount, @stock_mrp, @stock_msp
        FROM TempStockData
        ORDER BY stockin_expiry ASC,strstk_discount DESC, available_stock DESC
        LIMIT 1;

        -- Determine allocated quantity
        SET allocated_qty = LEAST(stock_available, p_required_qty - total_allocated);
        
        -- Insert into TempStockSelection
        INSERT INTO TempStockSelection (
            product_id,allocated_quantity,strstk_item,strstk_id, mrp,msp,discount
        ) VALUES (
            @product_id,allocated_qty,@stock_item,@stock_id,@stock_mrp,@stock_msp,@stock_discount
        );

        -- Update total allocated quantity
        SET total_allocated = total_allocated + allocated_qty;

        -- Remove processed row from TempStockData
        DELETE FROM TempStockData WHERE strstk_id = @stock_id;
    END WHILE;

    -- Return the selected stock with allocated quantities
    INSERT INTO order_details (ordet_order, ordet_cartid, ordet_productid, ordet_quantity, ordet_producpackid, order_batchid,order_mrp,order_msp,order_disc)
SELECT order_id, cart_id, product_id,allocated_quantity,strstk_item,strstk_id,mrp,msp,discount
FROM TempStockSelection;
    
    /*SELECT * FROM order_details WHERE ordet_order=order_id;*/

    -- Cleanup
    DROP TEMPORARY TABLE IF EXISTS TempStockSelection;
    DROP TEMPORARY TABLE IF EXISTS TempStockData;
END$$

CREATE  PROCEDURE `addPromotions` (IN `promotype` INT, IN `title` VARCHAR(255), IN `promoacnt` INT, IN `discamount` DECIMAL(10,0), IN `discprcntg` DECIMAL(10,0), IN `promomax` DECIMAL(10,0), IN `promocount` INT, IN `datefrom` DATE, IN `dateto` DATE, IN `promostatus` INT, IN `publishstatus` INT, IN `promohighlights` INT, IN `adminid` INT)   BEGIN
	DECLARE lid INT DEFAULT 0;
    INSERT INTO promotions_tbl(promo_type,promo_title, promo_account, promo_discountamt, promo_discountpc, promo_max, promo_count, promo_datefrom, promo_dateto, promo_status, promo_publish, promo_highlights, promo_crtdby, promo_crtdon) VALUES (promotype,title,promoacnt,discamount,discprcntg,promomax,promocount,datefrom,dateto,promostatus,publishstatus,promohighlights,adminid,CURRENT_TIMESTAMP());
    SET lid = LAST_INSERT_ID();
END$$

CREATE  PROCEDURE `addPurchaseOrder` (IN `orderef` VARCHAR(20), IN `ordate` DATE, IN `license` VARCHAR(50), IN `vtype` INT, IN `vendid` INT, IN `amount` DECIMAL(11,2), IN `ordetails` TEXT, IN `notes` TEXT, IN `deliverat` INT, IN `deliverby` DATE, IN `adminid` INT)   BEGIN
	DECLARE ordid ,checkid INT DEFAULT 0;
    SELECT user_id INTO checkid  FROM users_tbl  WHERE user_checkid=adminid;
    INSERT INTO purchase_orders( purchord_ref, purchord_date, purchord_license, purchord_vendtype, purchord_vendor, purchord_amount, purchord_notes, purchord_preprdby, purchord_crtdby, purchord_deliverat, purchord_deliverby, purchord_preprdon )
    VALUES( orderef, ordate, license, vtype, vendid, amount, notes, checkid, checkid, deliverat, deliverby, CURDATE() );
    SET ordid = LAST_INSERT_ID();
    IF ordid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM ordetails);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                    SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @price := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
     		INSERT INTO purchase_details( podetail_order, podetail_item, podetail_qty, podetail_price )
            VALUES( ordid, @item, @qty, @price );
  		END WHILE;
    END IF;
END$$

CREATE  PROCEDURE `addReceivedPacketsItems` (IN `flag` INT, IN `secret_id` VARCHAR(100), IN `tnfr_packid` INT, IN `packid` TEXT, IN `fromstore` INT, IN `tostore` INT, IN `itemdetails` VARCHAR(255), IN `courierid` INT, IN `note` TEXT, IN `adminid` INT)   BEGIN
	DECLARE front, TempValue, alltracks, packets TEXT DEFAULT NULL;
   	DECLARE frontlen INT DEFAULT 0;
    IF flag=1 THEN
    
    select u.user_id from users_tbl u  where u.user_checkid = secret_id into @receiveid ;
    
    	UPDATE transfer_packets SET transpack_deliverby=courierid,transpack_deliveron=CURRENT_TIMESTAMP(),transpack_status=10 ,transpack_notes = CONCAT(transpack_notes, '<COURNOTES>', note, '</COURNOTES>'),transpack_receiveby=@receiveid,transpack_receiveon=CURRENT_TIMESTAMP(), transpack_grn=fnCreateGRNnumber(tostore) WHERE transpack_id=tnfr_packid;
    	SELECT transpack_to INTO tostore FROM transfer_packets WHERE transpack_id = packid;
		SET @text := TRIM(BOTH '##' FROM itemdetails);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
            SET @str := SUBSTRING_INDEX(@text, '##', @i);
            SET @strLen := LENGTH(@str);
            SET @i := @i + 1;
            SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
            SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
            SET @strGLen := 0;
            SET @Gi := 1;
            SET @icols := 1;
    		WHILE @strGLen < LENGTH(@GRAPE) DO
                SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                    SET @items := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                    SET @orditems := SUBSTRING_INDEX(@Gstr, '|', -1); /* store_stock_pricing_id */
                ELSEIF @icols = 3 THEN
                    SET @ordqty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 4 THEN
                    SET @rcvdqty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                	 SET @rack := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
                SET @icols := @icols + 1;
      		END WHILE;
           /* SELECT @ordqty,@rcvdqty,(@ordqty-@rcvdqty),@items,@orditems;*/
        	START TRANSACTION;
            UPDATE transferpack_items SET store_stack=@rack, transferpack_recieved=@rcvdqty,transferpack_short=(@ordqty-@rcvdqty),	transferpack_checkby=secret_id, transferpack_checkon=CURRENT_TIMESTAMP(), transferpack_status=10 WHERE transferpack_packet=packid AND transferpack_item=@items AND transferpack_qty=@ordqty;
        	/*	#update stock at source store
        	UPDATE storestock_pricing
        	SET strstk_transfer = (strstk_transfer + @rcvdqty), strstk_reserved = (strstk_reserved - @rcvdqty),
            strstk_stock = (strstk_stock - @rcvdqty)
        	WHERE strstk_id = @orditems; */
       	 	#insert stock at receiving store
        	INSERT INTO storestock_pricing(strstk_refer, strstk_store, strstk_item, strstk_product, strstk_msp, strstk_discount, strstk_mrp, strstk_cost, strstk_last, strstk_currency, strstk_inward, strstk_stock,strstk_stack ,strstk_crtdby)
            SELECT strstk_refer, tostore, strstk_item, strstk_product, strstk_msp, strstk_discount, strstk_mrp, strstk_cost, strstk_last, strstk_currency, @rcvdqty, @rcvdqty,@rack, adminid FROM storestock_pricing WHERE strstk_id = @orditems;
          /* #update stock at source store in stockmaster
          UPDATE storestock_master SET storestock_available=(storestock_available- @rcvdqty) ,storestock_reserved=(storestock_reserved - @rcvdqty) WHERE storestock_store =fromstore AND storestock_item =@items; */
          #insert stockes to receiving store
          INSERT INTO storestock_master (storestock_item,storestock_store,storestock_available,storestock_inward) VALUES (@items,tostore,@rcvdqty,@rcvdqty) ON DUPLICATE KEY UPDATE storestock_available=(storestock_available + @rcvdqty);
        	COMMIT;
		END WHILE;
	ELSEIF flag=2 THEN
     	SET packets = packid;
    	iterator:
			LOOP
				IF LENGTH(TRIM(packid)) = 0 OR packid IS NULL THEN
					LEAVE iterator;
				END IF;
				SET front = SUBSTRING_INDEX(packid,',',1);
				SET frontlen = LENGTH(front);
				SET TempValue = TRIM(front);
    			UPDATE transfer_packets SET transpack_receiveby=secret_id, transpack_updby=adminid, transpack_receiveon=CURRENT_TIMESTAMP(),transpack_status=15 WHERE transpack_id=TempValue;
                SET packid = INSERT(packid, 1, frontlen + 1, '');
			END LOOP;
  	END IF;
END$$

CREATE  PROCEDURE `addRefundDetails` (IN `ids` INT, IN `oderno` VARCHAR(225), IN `userid` INT, IN `payids` VARCHAR(225), IN `razorid` VARCHAR(225), IN `amount` DECIMAL(10,2), IN `statuss` VARCHAR(225))   BEGIN
DECLARE store,item INT DEFAULT 0;
DECLARE resultString ,resultQty ,singleValue,singleQty TEXT;
INSERT INTO refund_table(refund_orderid,refund_order,refund_userid,refund_paymentid,refund_razorid,refund_amount,refund_status) VALUES 
(ids,oderno,userid,payids,razorid,amount,statuss);

UPDATE orders_tbl set order_delivery=5 WHERE order_id=ids;
SELECT GROUP_CONCAT(c.order_batchid) INTO resultString FROM order_details c WHERE c.ordet_order=ids ;
    SELECT GROUP_CONCAT(c.ordet_quantity) INTO resultQty FROM order_details c WHERE c.ordet_order=ids ;
 WHILE resultString IS NOT NULL AND resultString != '' DO
        SET singleValue = SUBSTRING_INDEX(resultString, ',', 1);
        SET singleQty = SUBSTRING_INDEX(resultQty, ',', 1);
        SELECT strstk_store,strstk_item INTO store,item FROM storestock_pricing WHERE strstk_id =singleValue;
        UPDATE storestock_pricing SET strstk_reserved=strstk_reserved-singleQty WHERE strstk_id =singleValue;
        UPDATE storestock_master SET storestock_reserved=storestock_reserved-singleQty WHERE storestock_store = store AND storestock_item =item;
        -- Remove the processed value from resultString
        SET resultString = REPLACE(resultString, CONCAT(singleValue, ','), '');
        SET resultQty = REPLACE(resultQty, CONCAT(singleQty, ','), '');
        IF resultString = singleValue AND resultQty=singleQty  THEN
            SET resultString = '';
            SET resultQty='';
        END IF;
    END WHILE;

SELECT DATE_FORMAT(CURRENT_TIMESTAMP, "%M %d, %Y %h:%i %p") AS rdate;
END$$

CREATE  PROCEDURE `addSalesbill` (IN `billdate` DATE, IN `billstore` INT, IN `billno` INT, IN `billstaff` VARCHAR(255), IN `staffcheckid` VARCHAR(100), IN `billcustomer` VARCHAR(255), IN `billmob` VARCHAR(100), IN `billname` VARCHAR(255), IN `billage` INT, IN `billgender` INT, IN `billaddress` VARCHAR(255), IN `billreferrer` VARCHAR(255), IN `billdoctor` INT, IN `billitems` TEXT, IN `billquantity` INT, IN `billmrp` INT, IN `billtaxable` DECIMAL(10,2), IN `billcgst` DECIMAL(10,2), IN `billsgst` DECIMAL(10,2), IN `billnetpay` DECIMAL(10,2), IN `billpayref` INT, IN `delmode` INT, IN `billtransid` VARCHAR(20), IN `paymnt` INT, IN `adminid` INT)   BEGIN
DECLARE billid, strids,stkTotal INT DEFAULT 0;
DECLARE lqty DECIMAL(10,2) DEFAULT 0;
DECLARE sqty DECIMAL(10,2) DEFAULT 0;
DECLARE minvalue,stockval DECIMAL(10,0) DEFAULT 0;

    insert INTO bills_table(bill_date, bill_store,bill_no, bill_pharmacist, billpharmacist_checkid, bill_customer, bill_mobile, bill_name, bill_age, bill_gender, bill_address, bill_referrer, bill_doctor, bill_quantity, bill_mrp, bill_taxable, bill_cgst, bill_sgst, bill_netpay, bill_payref,bill_delmode, bill_transid, bill_payby, bill_crtdby)
   
    VALUES(billdate, billstore, fnGenerateBillNumber(billstore),  billstaff, staffcheckid, billcustomer,billmob, billname, billage, billgender,billaddress, billreferrer, billdoctor, billquantity, billmrp, billtaxable, billcgst, billsgst, billnetpay, billpayref,delmode, billtransid, paymnt, adminid);
       
      

         /* item details */
  
  SET billid = LAST_INSERT_ID();
    IF billid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM billitems);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     SET @icols := 1;
     WHILE @strGLen < LENGTH(@GRAPE) DO
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
        IF @icols=1 THEN
        SET @itemid := SUBSTRING_INDEX(@Gstr, '|', -1);
       ELSEIF @icols = 2 THEN
        	SET @itemname := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 3 THEN
            SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 4 THEN
            SET @mfr := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 5 THEN
            SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 6 THEN
            SET @exp := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 7 THEN
            SET @sch := SUBSTRING_INDEX(@Gstr, '|', -1);
              ELSEIF @icols = 8 THEN
            SET @mrp := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 9 THEN
            SET @discper := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 10 THEN
            SET @rate := SUBSTRING_INDEX(@Gstr, '|', -1);
              ELSEIF @icols = 11 THEN
            SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 12 THEN
            SET @amt := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 13 THEN
            SET @cgst := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 14 THEN
            SET @sgst := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 15 THEN
        		SET @strstk := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE 
        		SET @mode := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        SET @icols := @icols + 1;
     END WHILE;
     START TRANSACTION;
     INSERT INTO bill_items(billit_id,billit_item,billit_strstkid, billit_name, billit_hsn, billit_mfr, billit_batch, billit_expiry,billit_sched, billit_mrp, billit_discount, billit_rate, billit_qty, billit_amount, billit_cgstpc,  billit_sgstpc)  VALUES (billid, @itemid,@strstk, @itemname, @hsn, @mfr, @batch, @exp, @sch, @mrp, @discper, @rate, @qty, @amt, @cgst, @sgst);
    
 SELECT ss.strstk_refer,ss.strstk_stock INTO strids,stkTotal FROM storestock_pricing ss WHERE ss.strstk_id= @strstk;
 if(@mode='Strip')THEN
       
       SELECT l.LsQty_lqty, l.LsQty_sqty INTO lqty, sqty FROM looseitemqty_tbl l WHERE l.LsQty_refer = strids AND l.LsQty_batch=@batch;
   
       
     set stockval=FLOOR(((lqty*stkTotal)-@qty) / lqty);
     
  UPDATE storestock_pricing SET strstk_stock=stockval WHERE strstk_id =@strstk;
    UPDATE storestock_master SET storestock_available=(storestock_available-stkTotal)+stockval WHERE storestock_item=@itemid AND storestock_store=billstore;
   
     set minvalue = FLOOR((lqty*(stkTotal-stockval))-@qty);
    UPDATE looseitemqty_tbl l SET l.LsQty_sqty= l.LsQty_sqty+minvalue WHERE l.LsQty_refer = strids AND l.LsQty_batch=@batch;
   
    ELSEIF(@mode='loose')THEN
     UPDATE looseitemqty_tbl l SET l.LsQty_sqty= l.LsQty_sqty-@qty WHERE l.LsQty_refer = strids AND l.LsQty_batch=@batch;
   ELSEIF(@mode='return')THEN
         UPDATE looseitreturn_tbl l SET l.LsQty_sqty= l.LsQty_sqty-@qty WHERE l.LsQty_refer = strids AND l.LsQty_batch=@batch;
ELSE
UPDATE storestock_pricing SET strstk_stock=strstk_stock-@qty WHERE strstk_id =@strstk;
    UPDATE storestock_master SET storestock_available=storestock_available-@qty WHERE storestock_item=@itemid AND storestock_store=billstore;
    END IF;
    
    
   COMMIT;
  END WHILE;
  END IF;
  
  INSERT INTO offline_customers_tbl (customer_number, customer_name, customer_address, customer_phone, customer_gender, customer_age) VALUES(billcustomer, billname, billaddress, billmob, billgender, billage);
  
SELECT b.bill_id, b.bill_date, b.bill_store, b.bill_no, b.bill_pharmacist, b.bill_customer, b.bill_name, b.bill_age, b.bill_gender, b.bill_address, b.bill_referrer, b.bill_doctor, b.bill_license, b.bill_quantity, b.bill_mrp, b.bill_taxable, b.bill_cgst, b.bill_sgst, b.bill_discounts, b.bill_netpay, b.bill_paid, b.bill_paidon, b.bill_payby, b.bill_payref, b.bill_transid, b.bill_balance, bt.* FROM bills_table b JOIN bill_items bt ON b.bill_id = bt.billit_id WHERE b.bill_id = billid;


END$$

CREATE  PROCEDURE `addSalesItemsDetails` (IN `storeid` INT, IN `itemid` INT, IN `qty` INT, IN `batch` VARCHAR(255))   BEGIN
DECLARE stock, newqty,newstock INT DEFAULT 0;
SELECT strstk_stock INTO stock FROM storestock_pricing LEFT JOIN stock_inwards si ON si.stockin_id= strstk_refer WHERE strstk_store= storeid AND strstk_item=itemid AND si.stockin_batch= batch ;
SELECT bill_stock INTO newqty FROM billstock_tbl  WHERE billstock_item= itemid AND bill_batch= batch;
INSERT INTO billstock_tbl (billstore_id , billstock_item ,bill_stock,bill_qty,bill_batch) VALUES(storeid,itemid,(stock-qty),qty,batch) ON DUPLICATE KEY UPDATE bill_stock=newqty-qty, bill_qty = bill_qty+qty;
SELECT bill_stock INTO newstock FROM billstock_tbl  WHERE billstock_item= itemid AND bill_batch= batch;
SELECT newstock;
END$$

CREATE  PROCEDURE `addScheduledDiscountDatas` (IN `dates` DATE, IN `storeid` INT, IN `mainpdct` TEXT, IN `freepdct` TEXT, IN `note` TEXT, IN `adminid` INT)   BEGIN
INSERT INTO schedulediscount_tbl  (dis_date,dis_store,dis_mainitem,dis_freeitem,dis_note,dis_crtdby,dis_crtdon) VALUES (dates,storeid,mainpdct,freepdct,note,adminid,CURRENT_TIMESTAMP());
END$$

CREATE  PROCEDURE `addSearchlogbyStore` (IN `storeid` INT, IN `item` INT, IN `adminid` INT)   BEGIN

INSERT INTO searchlog_tbl(search_item,search_store,search_crtdby) VALUES(item,storeid,adminid);

END$$

CREATE  PROCEDURE `addStaff` (IN `staffname` VARCHAR(100), IN `staffcode` VARCHAR(100), IN `staffdob` DATE, IN `staffgender` TINYINT, IN `staffmobile` VARCHAR(100), IN `staffemail` VARCHAR(100), IN `staffaddress` TEXT, IN `adminid` INT)   begin

INSERT into staff_tbl(staff_name,staff_code,staff_dob,staff_gender,staff_mobile,staff_email,staff_address,staff_crtby) values(staffname,staffcode,staffdob,staffgender,staffmobile,staffemail,staffaddress,adminid);

END$$

CREATE  PROCEDURE `addStock` (IN `invid` INT, IN `supply` VARCHAR(255), IN `charges` VARCHAR(200), IN `adminid` INT, IN `notes` TEXT)   BEGIN
	DECLARE delstat, newrec, mindel, minstat, inwardid,porder, newprod,checkid,lqty,packingsale INT DEFAULT 0;
    DECLARE maxdate DATE;
    SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid ;
    UPDATE invoices_tbl SET invoice_delnotes = notes
    WHERE invoice_id = invid;
	SET @text := TRIM(BOTH '##' FROM supply);
  	SET @strLen := 0;
  	SET @i := 1;
  	WHILE @strLen < LENGTH(@text) DO
    	SET @str := SUBSTRING_INDEX(@text, '##', @i);
    	SET @strLen := LENGTH(@str);
    	SET @i := @i + 1;
    	SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
       	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  		SET @strGLen := 0;
    	SET @Gi := 1;
    	SET @icols := 1;
    	WHILE @strGLen < LENGTH(@GRAPE) DO
			SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
            SET @strGLen := LENGTH(@Gstr);
            SET @Gi := @Gi + 1;
            IF @icols = 1 THEN
                SET @refer := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 2 THEN
                SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 3 THEN
                SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 4 THEN
                SET @short := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 5 THEN
                SET @qr := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 6 THEN
                SET @dated := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 7 THEN
                SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 8 THEN
                SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 9 THEN
                SET @stack := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 10 THEN
                SET @store := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 11 THEN
                SET @damage := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSE
                SET @mrp := SUBSTRING_INDEX(@Gstr, '|', -1);
            END IF;
        	SET @icols := @icols + 1;
      	END WHILE;
        IF(SELECT COUNT(*) FROM stock_inwards x WHERE x.stockin_item = @item AND x.stockin_invref = @refer) = 0 THEN
     		INSERT INTO stock_inwards( stockin_item, stockin_invref, stockin_qrcode,
				stockin_supdate, stockin_batch, stockin_expiry, stockin_stack,
				stockin_inward, stockin_short,stockin_damaged, stockin_balance, stockin_store, stockin_mrp, stockin_crtdby, stockin_mode)
            VALUES( @item, @refer, @qr, @dated, @batch, @expiry, @stack, @qty, @short,@damage, @qty, @store, @mrp, checkid, 1 );
            SET inwardid = LAST_INSERT_ID();
            INSERT INTO stock_master (stock_item, stock_available, stock_inward)
            VALUES(@item, @qty, @qty)
            ON DUPLICATE KEY UPDATE stock_available = stock_available + @qty, stock_inward = stock_inward + @qty;
            INSERT INTO storestock_master( storestock_item, storestock_store, storestock_available, storestock_inward )
            VALUES(@item, @store, @qty, @qty)
            ON DUPLICATE KEY UPDATE storestock_available = storestock_available + @qty,
            storestock_inward = storestock_inward + @qty;
            #looseitemqty_table
            SELECT p.prodpack_quantity,pt.packing_sale INTO lqty,packingsale FROM product_packing p join packing_tbl pt on 				pt.packing_id = p.prodpack_package WHERE p.prodpack_id=@item;
            INSERT INTO 											looseitemqty_tbl(LsQty_refer,LsQty_item,LsQty_store,LsQty_batch,LsQty_pack,LsQty_lqty,LsQty_sqty,LsQty_crtdby,LsQty_crtdon)
 VALUES(inwardid,@item,@store,@batch,0,(CASE WHEN packingsale = 0 THEN 1 ELSE lqty END),0,checkid,CURRENT_TIMESTAMP());
 
 INSERT INTO 											looseitreturn_tbl(LsQty_refer,LsQty_item,LsQty_store,LsQty_batch,LsQty_pack,LsQty_lqty,LsQty_sqty,LsQty_crtdby,LsQty_crtdon)
 VALUES(inwardid,@item,@store,@batch,0,(CASE WHEN packingsale = 0 THEN 1 ELSE lqty END),0,checkid,CURRENT_TIMESTAMP());
 
 
            SELECT prodpack_product INTO newprod FROM product_packing
            WHERE prodpack_id = @item;
            INSERT INTO storestock_pricing (strstk_refer, strstk_store, strstk_item, strstk_product, strstk_mrp, strstk_inward, strstk_stock, strstk_stack, strstk_crtdby) VALUES(inwardid, @store, @item, newprod, @mrp, @qty, @qty, @stack, checkid);
            SET newprod = 0;
            SET newrec = 1;
            IF @short = 0 THEN
            	SET delstat = 10;
            ELSE	
            	SET delstat = 5;
            END IF;
            UPDATE invoice_details SET /*invdet_delivered = @store,*/ invdet_deldate = @dated, invdet_delstatus = delstat
            WHERE invdet_id = @refer;
            SET delstat = 0;
        END IF;
  	END WHILE;
    IF newrec = 1 THEN
        SELECT MIN(d.invdet_delstatus), MAX(d.invdet_deldate) INTO minstat, maxdate FROM invoice_details d WHERE d.invdet_invoice = invid AND d.invdet_status > 0;
        SELECT DISTINCT(d.invdet_porder)INTO porder from invoice_details d WHERE d.invdet_invoice=invid AND d.invdet_porder!=0;
        IF minstat = 10 THEN
          	 UPDATE invoices_tbl SET invoice_delstatus = 10, invoice_deldate = maxdate WHERE invoice_id = invid;
        	 UPDATE purchase_orders SET purchord_status=15 WHERE purchord_id= porder;
        ELSEIF minstat = 5 THEN
           	 UPDATE invoices_tbl SET invoice_delstatus = 5, invoice_deldate = maxdate WHERE invoice_id = invid;
        	 UPDATE purchase_orders SET purchord_status=10 WHERE purchord_id= porder;
        END IF;
    END IF;
    /*	IF (SELECT COUNT(*) FROM stockin_expenses x WHERE x.stokexp_refer = invid AND x.stokexp_type = 1) = 0 THEN */
        	SET @text := TRIM(BOTH '##' FROM charges);
  			SET @strLen := 0;
  			SET @i := 1;
  			WHILE @strLen < LENGTH(@text) DO
    			SET @str := SUBSTRING_INDEX(@text, '##', @i);
    			SET @strLen := LENGTH(@str);
    			SET @i := @i + 1;
    			SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
       			SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  				SET @strGLen := 0;
    			SET @Gi := 1;
    			SET @icols := 1;
    			WHILE @strGLen < LENGTH(@GRAPE) DO
					SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
            		SET @strGLen := LENGTH(@Gstr);
            		SET @Gi := @Gi + 1;
            		IF @icols = 1 THEN
                		SET @chid := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSE
                		SET @chamount := SUBSTRING_INDEX(@Gstr, '|', -1);
            		END IF;
        			SET @icols := @icols + 1;
      			END WHILE;
                INSERT INTO stockin_expenses(stokexp_refer, stokexp_type, stokexp_chargeon, stokexp_amount)
                VALUES(invid, 1, @chid, @chamount)
                ON DUPLICATE KEY UPDATE stokexp_amount = @chamount, stokexp_status = 1 ;
        	END WHILE;
  	/*	END IF; */
END$$

CREATE  PROCEDURE `addStockist` (IN `sname` VARCHAR(200), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(50), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT, IN `manufs` VARCHAR(255), IN `products` VARCHAR(255))   BEGIN
	DECLARE stkid INT DEFAULT 0;
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	INSERT INTO stockists_tbl 
    (stockist_name, stockist_address, stockist_phones, stockist_email, stockist_website, stockist_contact, 
     stockist_contactno, stockist_contactemail, stockist_contactcell, stockist_whatsapp, stockist_contactat, 
     stockist_regn, stockist_gst, stockist_tin, stockist_remarks, stockist_status, stockist_crtdby)
	VALUES( sname, address, phones, email, website, contact, contactno, conemail, concell, 
           whatsapp, contactat, regn, gstnum, tin, remarks, mstatus, adminid );
    
    SET stkid = LAST_INSERT_ID();
    
    IF stkid > 0 THEN
    	/* add manufacturers if given */
        iterator:
        LOOP
        	IF LENGTH(TRIM(manufs)) = 0 OR manufs IS NULL THEN
            	LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(manufs, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO stockist_manufacturers (stockmanu_stockist, stockmanu_company, stockmanu_crtdby) VALUES (stkid, tempVal, adminid);
            SET manufs = INSERT(manufs, 1, frontlen + 1, '');
        END LOOP;
        
        /* add products if not empty */
        proditerator:
        LOOP
        	IF LENGTH(TRIM(products)) = 0 OR products IS NULL THEN
            	LEAVE proditerator;
            END IF;
            SET front = SUBSTRING_INDEX(products, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO stockist_products (stockistprod_stockist, stockistprod_product, stockistprod_crtdby) 
            	VALUES (stkid, tempVal, adminid);
            SET products = INSERT(products, 1, frontlen + 1, '');
        END LOOP;

END IF;
END$$

CREATE  PROCEDURE `addStockTransferOrder` (IN `orderno` VARCHAR(20), IN `orderdate` DATE, IN `storefrom` INT, IN `storeto` INT, IN `transitems` TEXT, IN `adminid` INT, IN `notes` TEXT)   BEGIN
	DECLARE transid, insid INT DEFAULT 0;
    
	INSERT INTO stock_transfers(stocktrans_order, stocktrans_date, stocktrans_strfrom, stocktrans_strto, stocktrans_prprdby, stocktrans_crtdby, stocktrans_notes)
    VALUES(orderno, orderdate, storefrom, storeto, adminid, adminid, notes);
	SET transid = LAST_INSERT_ID();
    
	IF transid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM transitems);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
               	IF @icols = 1 THEN
                   	SET @stockid := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                   	SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSEIF @icols = 3 THEN
                   	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSEIF @icols = 4 THEN
                   	SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSE
                   	SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
               	END IF;
       			SET @icols := @icols + 1;
    		END WHILE;
    		INSERT INTO stocktransfer_details( stockorder_refer, stockorder_item, stockorder_quantity, stockorder_batch, stockorder_expiry ) 
           	VALUES( transid, @stockid, @qty, @batch, @expiry );
            SET insid = LAST_INSERT_ID();
            IF insid > 0 THEN
            	UPDATE stock_inwards SET stockin_reserved = stockin_reserved + @qty 
                WHERE stockin_id = @stockid;
                UPDATE storestock_master SET storestock_reserved = storestock_reserved + @qty 
                WHERE storestock_item = @item AND storestock_store = storefrom;
            END IF;
  		END WHILE;
    END IF;
END$$

CREATE  PROCEDURE `addStockTransferOrderNew` (IN `orderno` VARCHAR(20), IN `orderdate` DATE, IN `storefrom` INT, IN `storeto` INT, IN `transitems` TEXT, IN `adminid` INT, IN `notes` TEXT)   BEGIN
	DECLARE transid, insid,checkid INT DEFAULT 0;
    SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid ;
	INSERT INTO stock_transfers(stocktrans_order, stocktrans_date, stocktrans_strfrom, stocktrans_strto, stocktrans_prprdby, stocktrans_crtdby, stocktrans_notes)
    VALUES(orderno, orderdate, storefrom, storeto, checkid, checkid, notes);
	SET transid = LAST_INSERT_ID();
	IF transid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM transitems);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
               	IF @icols = 1 THEN /* strstk_id of storestock_pricing */
                   	SET @stockid := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                   	SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSEIF @icols = 3 THEN
                   	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSEIF @icols = 4 THEN
                   	SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSE
                   	SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
               	END IF;
       			SET @icols := @icols + 1;
    		END WHILE;
    		INSERT INTO stocktransfer_details( stockorder_refer, stockorder_item, stockorder_quantity, stockorder_batch, stockorder_expiry )
           	VALUES( transid, @stockid, @qty, @batch, @expiry );
            SET insid = LAST_INSERT_ID();
            IF insid > 0 THEN
            	UPDATE storestock_pricing SET strstk_reserved = strstk_reserved + @qty
                WHERE strstk_id = @stockid;
                UPDATE storestock_master SET storestock_reserved = storestock_reserved + @qty
                WHERE storestock_item = @item AND storestock_store = storefrom;
            END IF;
  		END WHILE;
    END IF;
END$$

CREATE  PROCEDURE `addStockTransferOrderNewTest` (IN `orderno` VARCHAR(20), IN `orderdate` DATE, IN `storefrom` INT, IN `storeto` INT, IN `transitems` TEXT, IN `adminid` INT, IN `notes` TEXT)   BEGIN

    DECLARE done INT DEFAULT 0;

    -- Create temporary table
    DROP TEMPORARY TABLE IF EXISTS temp_stocktransfer_details;

    CREATE TEMPORARY TABLE temp_stocktransfer_details (
        stockorder_item INT,
        stockorder_quantity DECIMAL(10,2),
        stockorder_batch VARCHAR(50),
        stockorder_expiry DATE
    );

    IF transitems IS NOT NULL AND transitems <> '' THEN

        SET @text := TRIM(BOTH '##' FROM transitems);
        SET @strLen := 0;
        SET @i := 1;

        WHILE @strLen < LENGTH(@text) DO

            SET @str := SUBSTRING_INDEX(@text, '##', @i);
            SET @strLen := LENGTH(@str);
            SET @i := @i + 1;

            SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
            SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);

            SET @strGLen := 0;
            SET @Gi := 1;
            SET @icols := 1;

            WHILE @strGLen < LENGTH(@GRAPE) DO

                SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;

                IF @icols = 1 THEN
                    SET @stockid := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                    SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 3 THEN
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 4 THEN
                    SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;

                SET @icols := @icols + 1;

            END WHILE;

            -- Insert into TEMP table instead of real table
            INSERT INTO temp_stocktransfer_details (
                stockorder_item,
                stockorder_quantity,
                stockorder_batch,
                stockorder_expiry
            )
            VALUES (
                @stockid,
                @qty,
                @batch,
                STR_TO_DATE(@expiry, '%Y-%m-%d')
            );

        END WHILE;

    END IF;

    -- Display result
    SELECT * FROM temp_stocktransfer_details;

    -- Optional: explicitly drop (not required, auto drops after session)
    DROP TEMPORARY TABLE IF EXISTS temp_stocktransfer_details;

END$$

CREATE  PROCEDURE `addStorage` (IN `slabel` VARCHAR(50), IN `stype` INT(11), IN `stemp` VARCHAR(50), IN `shumidity` VARCHAR(50), IN `ssecurity` VARCHAR(50), IN `svolume` INT(11), IN `ssize` VARCHAR(50), IN `sload` VARCHAR(50), IN `sremarks` TEXT, IN `adminid` INT)   BEGIN
INSERT INTO storage_tbl(storage_label, storage_type, storage_temperature, storage_humidity, storage_security, storage_volume, storage_size, storage_load, storage_remarks,storage_crtdby)VALUES(slabel, stype, stemp, shumidity, ssecurity, svolume, ssize, sload, sremarks, adminid);
END$$

CREATE  PROCEDURE `addStore` (IN `stype` INT, IN `sname` VARCHAR(200), IN `address` VARCHAR(255), IN `coords` TEXT, IN `phones` VARCHAR(200), IN `mobile` VARCHAR(50), IN `email` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `conwapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `power` INT, IN `water` INT, IN `remarks` TEXT, IN `adminid` INT, IN `delareas` VARCHAR(255), IN `timings` TEXT, IN `scode` VARCHAR(6), IN `license` VARCHAR(50), IN `gstate` INT, IN `pan` VARCHAR(10))   BEGIN
	DECLARE distid INT DEFAULT 0;
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	INSERT INTO stores_tbl    
    ( store_type, store_name, store_address, store_phones, store_mobile, store_email, store_whatsapp, store_contact, store_contactno, store_contactemail, store_contactcell, store_contactwapp, store_contactat, store_regn, store_GST, store_TIN, store_power, store_water, store_location, store_remarks, store_crtdby, store_code, store_license, store_taxstate, store_pan )
	VALUES( stype, sname, address, phones, mobile, email, whatsapp, contact, contactno, conemail, concell, conwapp, contactat, regn, gstnum, tin, power, water, coords, remarks, adminid, scode, license, gstate, pan );
    
    SET distid = LAST_INSERT_ID();
    
    IF distid > 0 THEN
    	/* add delivery areas if not empty */
        iterator:
        LOOP
        	IF LENGTH(TRIM(delareas)) = 0 OR delareas IS NULL THEN
            	LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(delareas, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO store_delivery ( 
                strdelv_store, strdelv_area, strdelv_crtdby ) 
            VALUES (distid, tempVal, adminid);
            SET delareas = INSERT(delareas, 1, frontlen + 1, '');
        END LOOP;
        
        /* Add timimgs */
        SET @text := TRIM(BOTH '##' FROM timings);
        SET @strLen := 0;
        SET @i := 1;
        WHILE @strLen < LENGTH(@text) DO
  
            SET @str := SUBSTRING_INDEX(@text, '##', @i);
            SET @strLen := LENGTH(@str);
            SET @i := @i + 1;

            SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);

            SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
            SET @strGLen := 0;
            SET @Gi := 1;
     		SET @icols := 1;
     
     		WHILE @strGLen < LENGTH(@GRAPE) DO
                SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
     
       			IF @icols = 1 THEN
        			SET @day := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
        			SET @sesn := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 3 THEN
        			SET @tfrom := SUBSTRING_INDEX(@Gstr, '|', -1);
        		ELSE
            		SET @tto := SUBSTRING_INDEX(@Gstr, '|', -1);
        		END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
     		
            INSERT INTO store_timings( strtme_store, strtme_day, strtme_session, strtme_from, strtme_to, strtme_crtdby) 
            VALUES( distid, @day, @sesn,  @tfrom, @tto, adminid );
  		END WHILE;
        
    END IF;
END$$

CREATE  PROCEDURE `addStoreIntend` (IN `intendno` VARCHAR(255), IN `dated` DATE, IN `strfrom` INT, IN `strto` INT, IN `notes` TEXT, IN `ordetails` TEXT, IN `adminid` INT)   BEGIN
	DECLARE ordid, itemcount,checkid INT DEFAULT 0;
    SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid;
    INSERT INTO intends_tbl(intend_number, intend_date, intend_from, intend_to, intend_notes, intend_preprdby, intend_crtdby,intend_crtdon )
    VALUES(intendno, dated, strfrom, strto, notes, checkid, checkid,CURRENT_TIMESTAMP() );
    SET ordid = LAST_INSERT_ID();
    IF ordid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM ordetails);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                    SET @product := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                    SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 3 THEN
                    SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 4 THEN
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @stock := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
     		INSERT INTO intend_details( intdet_id, intdet_item, intdet_product, intdet_hsn, intdet_quantity, intdet_stock,intdet_delivered )
            VALUES( ordid, @item, @product, @hsn, @qty, @stock,strfrom )
            ON DUPLICATE KEY UPDATE intdet_quantity = (intdet_quantity + @qty);
  		END WHILE;
        UPDATE intends_tbl SET intend_items = (SELECT COUNT(*) FROM intend_details WHERE intdet_id = ordid)
        WHERE intend_id = ordid;
    END IF;
END$$

CREATE  PROCEDURE `addTransferPacket` (IN `packetid` VARCHAR(20), IN `packtype` INT, IN `transorder` INT, IN `storefrom` INT, IN `storeto` INT, IN `notes` TEXT, IN `items` TEXT, IN `adminid` INT)   BEGIN
	DECLARE packid INT DEFAULT 0;
	INSERT INTO transfer_packets(transpack_type, transpack_refer, transpack_packid, transpack_from, transpack_to, transpack_notes, transpack_crtdby) VALUES(packtype, transorder, packetid, storefrom, storeto, notes, adminid);
    SET packid = LAST_INSERT_ID(); 
    
    IF packid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM items);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
               	IF @icols = 1 THEN
               		SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSE
                   	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
               	END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
     		INSERT INTO transferpack_items( transferpack_packet, transferpack_item, transferpack_qty, transferpack_packby ) 
           	VALUES( packid, @item, @qty, adminid )
            ON DUPLICATE KEY UPDATE transferpack_qty = (transferpack_qty + @qty) ;
  		END WHILE;
        UPDATE transfer_packets 
        SET transpack_items = (SELECT COUNT(*) FROM transferpack_items WHERE transferpack_packet = packid)
        WHERE transpack_id = packid;
    END IF;
    SELECT x.transpack_id, x.transpack_type, x.transpack_refer, x.transpack_packid, x.transpack_from, x.transpack_to, x.transpack_items,
    ( SELECT GROUP_CONCAT(CONCAT(y.transferpack_item, '|', fnGetProductFromPack(w.stockin_item, 0), '|', y.transferpack_qty, '|', w.stockin_batch, '|', w.stockin_expiry) SEPARATOR '##') 
     	FROM transferpack_items y
     	LEFT JOIN stock_inwards w ON w.stockin_id = y.transferpack_item
     	WHERE y.transferpack_packet = packid) AS items
    FROM transfer_packets x
    WHERE x.transpack_id = packid; 
    
END$$

CREATE  PROCEDURE `addTransferPacketNew` (IN `packetid` VARCHAR(20), IN `packtype` INT, IN `transorder` INT, IN `storefrom` INT, IN `storeto` INT, IN `notes` TEXT, IN `items` TEXT, IN `adminid` INT)   BEGIN
	DECLARE packid INT DEFAULT 0;
	INSERT INTO transfer_packets(transpack_type, transpack_refer, transpack_packid, transpack_from, transpack_to, transpack_notes, transpack_crtdby) VALUES(packtype, transorder, packetid, storefrom, storeto, notes, adminid);
    SET packid = LAST_INSERT_ID(); 
    
    IF packid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM items);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
               	IF @icols = 1 THEN
               		SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
               		SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSE
                   	SET @orditem := SUBSTRING_INDEX(@Gstr, '|', -1);
               	END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
     		INSERT INTO transferpack_items( transferpack_packet, transferpack_item,transferpack_orditem, transferpack_qty, transferpack_packby ) 
           	VALUES( packid, @item, @orditem, @qty, adminid )
            ON DUPLICATE KEY UPDATE transferpack_qty = (transferpack_qty + @qty) ;
  		END WHILE;
        UPDATE transfer_packets 
        SET transpack_items = (SELECT COUNT(*) FROM transferpack_items WHERE transferpack_packet = packid)
        WHERE transpack_id = packid;
    END IF;
    SELECT x.transpack_id, x.transpack_type, x.transpack_refer, x.transpack_packid, x.transpack_from, x.transpack_to, x.transpack_items,
    ( SELECT GROUP_CONCAT(CONCAT(y.transferpack_item, '|', fnGetProductFromPack(w.stockin_item, 0), '|', y.transferpack_qty, '|', w.stockin_batch, '|', w.stockin_expiry) SEPARATOR '##') 
     	FROM transferpack_items y
    	LEFT JOIN storestock_pricing st ON st.strstk_id = y.transferpack_orditem
    	LEFT JOIN stock_inwards w ON w.stockin_id = st.strstk_refer 
     	WHERE y.transferpack_packet = packid) AS items
    FROM transfer_packets x
    WHERE x.transpack_id = packid;   
    
END$$

CREATE  PROCEDURE `addTransferStock` (IN `packetid` INT, IN `supply` VARCHAR(255), IN `charges` VARCHAR(255), IN `adminid` INT, IN `notes` TEXT)   BEGIN 
	DECLARE newrec, inwardid INT DEFAULT 0;
    DECLARE bDone, ordid, paktid, stkitem, initem, pktitems INT DEFAULT 0;
    DECLARE recvd, shrt, frmstor, tostor INT DEFAULT 0;
    DECLARE curs CURSOR FOR SELECT orderid, packetid, stockitem, item, received, short, storefrom, storeto, packitems FROM temp_transfers;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET bDone = 1;
    
	DROP TEMPORARY TABLE IF EXISTS temp_transfers;
	CREATE TEMPORARY TABLE IF NOT EXISTS temp_transfers AS (SELECT * FROM temptransfer);
    
    INSERT INTO temp_transfers ( packetid, orderid, stockitem, item, product, qty, ordbatch, ordexpiry, qrcode, mrp, ordqty, storefrom, storeto, checkby, receiveby, packitems ) 
    SELECT x.transferpack_packet, t.transpack_refer, x.transferpack_item, p.prodpack_id, p.prodpack_product, x.transferpack_qty, s.stockin_batch, s.stockin_expiry, s.stockin_qrcode, s.stockin_mrp, x.transferpack_qty, t.transpack_from, t.transpack_to, adminid, adminid, t.transpack_items 
    FROM transferpack_items x 
    LEFT JOIN stock_inwards s ON s.stockin_id = x.transferpack_item 
    LEFT JOIN transfer_packets t ON t.transpack_id = x.transferpack_packet 
    LEFT JOIN product_packing p ON p.prodpack_id = s.stockin_item 
    WHERE x.transferpack_packet = packetid; 
 
 	SET @text := TRIM(BOTH '##' FROM supply);
  	SET @strLen := 0;
  	SET @i := 1;
  	WHILE @strLen < LENGTH(@text) DO
    	SET @str := SUBSTRING_INDEX(@text, '##', @i);
    	SET @strLen := LENGTH(@str);
    	SET @i := @i + 1;
    	SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
       	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  		SET @strGLen := 0;
    	SET @Gi := 1;
    	SET @icols := 1;

    	WHILE @strGLen < LENGTH(@GRAPE) DO
			SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
            SET @strGLen := LENGTH(@Gstr);
            SET @Gi := @Gi + 1;
            IF @icols = 1 THEN
                SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 2 THEN
                SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSE
                SET @short := SUBSTRING_INDEX(@Gstr, '|', -1);
            END IF;
        	SET @icols := @icols + 1;
      	END WHILE;
		UPDATE temp_transfers SET received = @qty, short = @short 
        WHERE stockitem = @item;
    END WHILE;
    
    INSERT INTO stock_inwards (stockin_store, stockin_item, stockin_invref, stockin_mode, stockin_qrcode, stockin_supdate, stockin_mrp, stockin_batch, stockin_expiry, stockin_inward, stockin_short, stockin_balance, stockin_crtdby)
    SELECT storeto, item, orderid, 2, qrcode, CURRENT_DATE(), mrp, ordbatch, ordexpiry, received, short, received, adminid  
    FROM temp_transfers WHERE received > 0;  
    # SELECT * FROM temp_transfers;
    
    OPEN curs;
    SET bDone = 0;
    #REPEAT
    housekeep:LOOP
    	FETCH curs INTO ordid, paktid, stkitem, initem, recvd, shrt, frmstor, tostor, pktitems;
        IF bDone = 1 THEN 
        	LEAVE housekeep;
        END IF;
        # SELECT ordid, paktid, stkitem, initem, recvd, shrt, frmstor, tostor;
        IF recvd > 0 THEN
        	# add store stock pricing
        	
            # update store stocks (source)
            UPDATE stock_inwards SET stockin_transfer = stockin_transfer + recvd, stockin_reserved = stockin_reserved - recvd, stockin_balance = stockin_balance - recvd WHERE stockin_id = initem;
            UPDATE storestock_master SET storestock_available = storestock_available - recvd, storestock_reserved = storestock_reserved - recvd
            WHERE storestock_item = initem AND storestock_store = frmstor;
            # update store stocks (target)
            INSERT INTO storestock_master( storestock_item, storestock_store, storestock_available, storestock_inward )
            VALUES(initem, tostor, recvd, recvd) 
            ON DUPLICATE KEY UPDATE storestock_available = storestock_available + recvd, 
            storestock_inward = storestock_inward + recvd;
            #update transfer item status
            UPDATE transferpack_items SET transferpack_recieved = recvd, transferpack_short = shrt, transferpack_status = 10 WHERE transferpack_packet = paktid AND transferpack_item = stkitem;
        END IF;
    END LOOP housekeep;
    # update transfer status
	IF (SELECT COUNT(*) FROM transferpack_items tri 
        WHERE tri.transferpack_status = 10 AND tri.transferpack_packet = packetid) = pktitems THEN
        	UPDATE transfer_packets SET transpack_status = 15 
            WHERE transpack_id = packetid;
    END IF;
    # update transfer order status
    #UNTIL bDone END REPEAT;
    CLOSE curs;
    DROP TEMPORARY TABLE IF EXISTS temp_transfers;
END$$

CREATE  PROCEDURE `addTransferStockNew` (IN `packetid` INT, IN `supply` VARCHAR(255), IN `charges` VARCHAR(255), IN `adminid` INT, IN `notes` TEXT)   BEGIN 
	DECLARE newrec, inwardid INT DEFAULT 0;
    DECLARE bDone, ordid, paktid, stkitem, initem, pktitems INT DEFAULT 0;
    DECLARE recvd, shrt, frmstor, tostor INT DEFAULT 0;
    DECLARE curs CURSOR FOR SELECT orderid, packetid, stockitem, item, received, short, storefrom, storeto, packitems FROM temp_transfers;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET bDone = 1;
    
	DROP TEMPORARY TABLE IF EXISTS temp_transfers;
	CREATE TEMPORARY TABLE IF NOT EXISTS temp_transfers AS (SELECT * FROM temptransfer);
    
    INSERT INTO temp_transfers ( packetid, orderid, stockitem, item, product, qty, ordbatch, ordexpiry, qrcode, mrp, ordqty, storefrom, storeto, checkby, receiveby, packitems ) 
    SELECT x.transferpack_packet, t.transpack_refer, x.transferpack_item, p.prodpack_id, p.prodpack_product, x.transferpack_qty, s.stockin_batch, s.stockin_expiry, s.stockin_qrcode, s.stockin_mrp, x.transferpack_qty, t.transpack_from, t.transpack_to, adminid, adminid, t.transpack_items 
    FROM transferpack_items x 
    LEFT JOIN storestock_pricing sp ON sp.strstk_id = x.transferpack_item
    LEFT JOIN stock_inwards s ON s.stockin_id = sp.strstk_refer 
    LEFT JOIN transfer_packets t ON t.transpack_id = x.transferpack_packet 
    LEFT JOIN product_packing p ON p.prodpack_id = s.stockin_item 
    WHERE x.transferpack_packet = packetid; 
 
 	SET @text := TRIM(BOTH '##' FROM supply);
  	SET @strLen := 0;
  	SET @i := 1;
  	WHILE @strLen < LENGTH(@text) DO
    	SET @str := SUBSTRING_INDEX(@text, '##', @i);
    	SET @strLen := LENGTH(@str);
    	SET @i := @i + 1;
    	SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
       	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  		SET @strGLen := 0;
    	SET @Gi := 1;
    	SET @icols := 1;

    	WHILE @strGLen < LENGTH(@GRAPE) DO
			SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
            SET @strGLen := LENGTH(@Gstr);
            SET @Gi := @Gi + 1;
            IF @icols = 1 THEN
                SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 2 THEN
                SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSE
                SET @short := SUBSTRING_INDEX(@Gstr, '|', -1);
            END IF;
        	SET @icols := @icols + 1;
      	END WHILE;
		UPDATE temp_transfers SET received = @qty, short = @short 
        WHERE stockitem = @item;
    END WHILE;
    
    # SELECT * FROM temp_transfers;
    
    OPEN curs;
    SET bDone = 0;
    housekeep:LOOP
    	FETCH curs INTO ordid, paktid, stkitem, initem, recvd, shrt, frmstor, tostor, pktitems;
        IF bDone = 1 THEN 
        	LEAVE housekeep;
        END IF;
        # SELECT ordid, paktid, stkitem, initem, recvd, shrt, frmstor, tostor;
        IF recvd > 0 THEN
        	# add to store stock pricing
        	INSERT INTO storestock_pricing ( strstk_refer, strstk_store, strstk_item, strstk_product, strstk_msp, strstk_mrp, strstk_cost, strstk_last, strstk_inward, strstk_stock, strstk_crtdby, strstk_minorder, strstk_maxorder, strstk_dealofday, strstk_dealfrom, strstk_dealto, strstk_offer, strstk_offerfrom, strstk_offerto, strstk_priority ) 
            SELECT initem, tostor, stkitem, w.strstk_product, w.strstk_msp, w.strstk_mrp, w.strstk_cost, w.strstk_last, recvd, recvd, adminid, w.strstk_minorder, w.strstk_maxorder, w.strstk_dealofday, w.strstk_dealfrom, w.strstk_dealto, w.strstk_offer, w.strstk_offerfrom, w.strstk_offerto, w.strstk_priority FROM storestock_pricing w WHERE w.strstk_id = strstk_refer;
            SET newrec = LAST_INSERT_ID();
            
            # update store stocks (source)
            UPDATE stock_inwards SET stockin_transfer = stockin_transfer + recvd, stockin_reserved = stockin_reserved - recvd, stockin_balance = stockin_balance - recvd WHERE stockin_id = initem;
            UPDATE storestock_master SET storestock_available = storestock_available - recvd, storestock_reserved = storestock_reserved - recvd
            WHERE storestock_item = initem AND storestock_store = frmstor;
            
            # update store stocks (target)
            INSERT INTO storestock_master( storestock_item, storestock_store, storestock_available, storestock_inward )
            VALUES(initem, tostor, recvd, recvd) 
            ON DUPLICATE KEY UPDATE storestock_available = storestock_available + recvd, 
            storestock_inward = storestock_inward + recvd;
            
            #update transfer item status
            UPDATE transferpack_items SET transferpack_recieved = recvd, transferpack_short = shrt, transferpack_status = 10 WHERE transferpack_packet = paktid AND transferpack_item = stkitem;
        END IF;
    END LOOP housekeep;
    # update transfer status
	IF (SELECT COUNT(*) FROM transferpack_items tri 
        WHERE tri.transferpack_status = 10 AND tri.transferpack_packet = packetid) = pktitems THEN
        	UPDATE transfer_packets SET transpack_status = 15 
            WHERE transpack_id = packetid;
    END IF;
    # update transfer order status
    IF (SELECT COUNT(*) FROM transfer_packets tp 
        WHERE tp.transpack_status < 15 AND tp.transpack_refer = ordid ) = 0 THEN
        	UPDATE stock_transfers SET stocktrans_status = 10 WHERE stocktrans_id = ordid;
    END IF;
    CLOSE curs;
    DROP TEMPORARY TABLE IF EXISTS temp_transfers;
END$$

CREATE  PROCEDURE `addUserProgramRoles` (IN `rolename` VARCHAR(50), IN `prgmids` MEDIUMTEXT, IN `adminid` INT)   begin
insert into user_program(usrprog_name,usrprog_programs,usrprog_crtby) values(rolename,prgmids,adminid);
END$$

CREATE  PROCEDURE `addUsers` (IN `userlogin` VARCHAR(100), IN `userpassword` VARCHAR(100), IN `staffid` INT, IN `staffname` VARCHAR(100), IN `programid` INT, IN `programcontains` TEXT, IN `adminid` INT)   begin

insert into users_tbl(user_login,user_password,user_staffid,user_staffname,user_programid,user_programcontains,user_crtdby) values(userlogin,userpassword,staffid,staffname,programid,programcontains,adminid);
END$$

CREATE  PROCEDURE `addVendorSupply` (IN `vendor` INT, IN `ventype` INT, IN `product` INT, IN `packing` INT, IN `price` DECIMAL(9,2), IN `minq` INT, IN `maxq` INT, IN `eoq` INT, IN `deldays` INT, IN `notes` VARCHAR(255), IN `adminid` INT)   BEGIN
	DECLARE vcount, vstatus, vid INT DEFAULT 0;
	SELECT COUNT(*), x.vendsup_status, x.vendsup_id INTO vcount, vstatus, vid 
    FROM vendor_supplies x 
    WHERE x.vendsup_product = product AND x.vendsup_packing = packing AND x.vendsup_vendor = vendor AND x.vendsup_type = ventype; 
    
    IF vcount = 0 THEN
		INSERT INTO vendor_supplies( vendsup_vendor, vendsup_type, vendsup_product, vendsup_packing, vendsup_price, vendsup_minqty, vendsup_maxqty, vendsup_eoq, vendsup_deliver, vendsup_notes, vendsup_crtdby )
    	VALUES( vendor, ventype, product, packing, price, minq, maxq, eoq, deldays, notes, adminid);
    ELSE
    	UPDATE vendor_supplies SET vendsup_vendor = vendor, vendsup_type = ventype, vendsup_product = product, vendsup_packing = packing, vendsup_price = price, vendsup_minqty = minq, vendsup_maxqty = maxq, vendsup_eoq = eoq, vendsup_deliver = deldays, vendsup_notes = notes, vendsup_updby = adminid WHERE vendsup_id = vid;
    END IF;
END$$

CREATE  PROCEDURE `add_slider` (IN `slider_type` INT, IN `slider_image` VARCHAR(225), IN `slider_product` TEXT, IN `slider_disocunt` INT, IN `slider_sort` INT, IN `slider_disctype` INT)   BEGIN
INSERT INTO `tbl_homepageslier`( `slider_type`, `slider_image`, `slider_product`, `slider_disocunt`,`slider_disctype`, `slider_sort`) VALUES (slider_type, slider_image, slider_product, slider_disocunt,slider_disctype, slider_sort);
END$$

CREATE  PROCEDURE `AllocateProductStock` (IN `p_user_id` INT, IN `order_id` INT)   BEGIN
    -- Declare variables
    DECLARE v_cart_id, v_product_id, v_item_id, v_stock_id, v_required_qty INT;
    DECLARE row_count INT DEFAULT 0;

    -- Create a temporary table to store selected cart items
    CREATE TEMPORARY TABLE IF NOT EXISTS TempUserCart AS
    SELECT cart_id, product_id, prodpack_id, batch_id, quantity
    FROM user_cart
    WHERE user_id = p_user_id AND order_id=0
    AND (quantity > (SELECT (e1.strstk_stock - e1.strstk_reserved) 
                      FROM storestock_pricing e1 
                      WHERE e1.strstk_item = user_cart.prodpack_id 
                      AND e1.strstk_id = user_cart.batch_id AND e1.strstk_product=user_cart.product_id));
                      
                     /* INSERT INTO order_details(ordet_order,ordet_cartid, ordet_productid, ordet_quantity, ordet_producpackid, order_batchid,order_mrp,order_msp,order_disc) SELECT order_id,cart_id,product_id,quantity,prodpack_id,batch_id,e1.strstk_mrp,e1.strstk_msp,e1.strstk_discount FROM user_cart WHERE user_id=p_user_id AND (quantity <= (SELECT (e1.strstk_stock - e1.strstk_reserved) 
                      FROM storestock_pricing e1 
                      WHERE e1.strstk_item = user_cart.prodpack_id 
                      AND e1.strstk_id = user_cart.batch_id AND e1.strstk_product=user_cart.product_id));
*/
INSERT INTO order_details (
    ordet_order, ordet_cartid, ordet_productid, ordet_quantity, 
    ordet_producpackid, order_batchid, order_mrp, order_msp, order_disc
) 
SELECT 
    order_id,cart_id,product_id,quantity,prodpack_id,batch_id, sp.strstk_mrp, sp.strstk_msp, sp.strstk_discount 
FROM user_cart uc 
JOIN storestock_pricing sp 
    ON sp.strstk_item = uc.prodpack_id 
    AND sp.strstk_id = uc.batch_id 
    AND sp.strstk_product = uc.product_id 
WHERE uc.user_id = p_user_id AND uc.order_id=0
AND uc.quantity <= (sp.strstk_stock - sp.strstk_reserved);
    -- Get the number of rows to process
    SELECT COUNT(*) INTO row_count FROM TempUserCart;

    -- Loop through the table using WHILE
    WHILE row_count > 0 DO
        -- Get one row from the table
        SELECT cart_id, product_id, prodpack_id, batch_id, quantity
        INTO v_cart_id, v_product_id, v_item_id, v_stock_id, v_required_qty
        FROM TempUserCart
        LIMIT 1;

      -- Call the stored procedure to generate the temporary table
CALL AddProductStockk(v_product_id, v_item_id, v_stock_id, v_required_qty,order_id,v_cart_id);

        -- Remove processed row
        DELETE FROM TempUserCart WHERE cart_id = v_cart_id;

        -- Update row count
        SELECT COUNT(*) INTO row_count FROM TempUserCart;
    END WHILE;

    -- Cleanup temporary table
    DROP TEMPORARY TABLE IF EXISTS TempUserCart;
   
END$$

CREATE  PROCEDURE `AllocateProductStockk` (IN `p_user_id` INT, IN `order_id` INT)   BEGIN
    -- Declare variables
    DECLARE v_cart_id, v_product_id, v_item_id, v_stock_id, v_required_qty INT;
    DECLARE row_count INT DEFAULT 0;

    -- Create a temporary table to store selected cart items
    CREATE TEMPORARY TABLE IF NOT EXISTS TempUserCart AS
    SELECT cart_id, product_id, prodpack_id, batch_id, quantity
    FROM user_cart
    WHERE user_id = p_user_id AND order_id=order_id
    AND (quantity > (SELECT (e1.strstk_stock - e1.strstk_reserved) 
                      FROM storestock_pricing e1 
                      WHERE e1.strstk_item = user_cart.prodpack_id 
                      AND e1.strstk_id = user_cart.batch_id AND e1.strstk_product=user_cart.product_id));
                      
                     /* INSERT INTO order_details(ordet_order,ordet_cartid, ordet_productid, ordet_quantity, ordet_producpackid, order_batchid,order_mrp,order_msp,order_disc) SELECT order_id,cart_id,product_id,quantity,prodpack_id,batch_id,e1.strstk_mrp,e1.strstk_msp,e1.strstk_discount FROM user_cart WHERE user_id=p_user_id AND (quantity <= (SELECT (e1.strstk_stock - e1.strstk_reserved) 
                      FROM storestock_pricing e1 
                      WHERE e1.strstk_item = user_cart.prodpack_id 
                      AND e1.strstk_id = user_cart.batch_id AND e1.strstk_product=user_cart.product_id));
*/
INSERT INTO order_details (
    ordet_order, ordet_cartid, ordet_productid, ordet_quantity, 
    ordet_producpackid, order_batchid, order_mrp, order_msp, order_disc
) 
SELECT 
    order_id,cart_id,product_id,quantity,prodpack_id,batch_id, sp.strstk_mrp, sp.strstk_msp, sp.strstk_discount 
FROM user_cart uc 
JOIN storestock_pricing sp 
    ON sp.strstk_item = uc.prodpack_id 
    AND sp.strstk_id = uc.batch_id 
    AND sp.strstk_product = uc.product_id 
WHERE uc.user_id = p_user_id AND uc.order_id=order_id
AND uc.quantity <= (sp.strstk_stock - sp.strstk_reserved);
    -- Get the number of rows to process
    SELECT COUNT(*) INTO row_count FROM TempUserCart;

    -- Loop through the table using WHILE
    WHILE row_count > 0 DO
        -- Get one row from the table
        SELECT cart_id, product_id, prodpack_id, batch_id, quantity
        INTO v_cart_id, v_product_id, v_item_id, v_stock_id, v_required_qty
        FROM TempUserCart
        LIMIT 1;

      -- Call the stored procedure to generate the temporary table
CALL AddProductStockk(v_product_id, v_item_id, v_stock_id, v_required_qty,order_id,v_cart_id);

        -- Remove processed row
        DELETE FROM TempUserCart WHERE cart_id = v_cart_id;

        -- Update row count
        SELECT COUNT(*) INTO row_count FROM TempUserCart;
    END WHILE;

    -- Cleanup temporary table
    DROP TEMPORARY TABLE IF EXISTS TempUserCart;
   
END$$

CREATE  PROCEDURE `approveIntend` (IN `intendid` INT, IN `notes` TEXT, IN `stores` TEXT, IN `suppliers` TEXT, IN `secreteid` INT, IN `isfinal` INT)   BEGIN 
	DECLARE uflag, adminid INT DEFAULT 0;
   	SELECT user_id INTO adminid FROM users_tbl  WHERE user_checkid=secreteid;
    INSERT INTO intend_allocations ( intdalloc_intend, intdalloc_notes, intdalloc_crtdby )
    VALUES( intendid, notes, adminid ) 
    ON DUPLICATE KEY UPDATE intdalloc_notes = notes, intdalloc_updby = adminid;
    #IF ROW_COUNT() > 0 THEN
    IF trim(stores) <> '' THEN
    	DELETE FROM intend_allocation_items
    	WHERE intdallocit_intend = intendid AND intdallocit_method = 1 AND intdallocit_status < 5;
    	SET uflag = 1; 
        SET @text := TRIM(BOTH '##' FROM stores);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
               	IF @icols = 1 THEN
                   	SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                   	SET @store := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
        		SET @icols := @icols + 1;
           	END WHILE;
       		#SELECT @item, @store, @qty;
           	/*DELETE FROM intend_allocation_items 
    	    WHERE intend_allocation_items.intdallocit_intend = intendid AND intend_allocation_items.intdallocit_method = 1 and intend_allocation_items.intdallocit_item=@item;*/
            INSERT INTO intend_allocation_items( intdallocit_intend, intdallocit_item, intdallocit_method, intdallocit_source, 				intdallocit_type, intdallocit_quantity ) 
            VALUES( intendid, @item, 1, @store, 0, @qty);
  		END WHILE;
        
       
   	END IF;
        
   	IF trim(suppliers) <> '' THEN
    	SET uflag = 1;
    	DELETE FROM intend_allocation_items 
        WHERE intdallocit_intend = intendid AND intdallocit_method = 2 AND intdallocit_status < 5; 
        SET @text := TRIM(BOTH '##' FROM suppliers);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
           
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
               	IF @icols = 1 THEN
                   	SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                   	SET @vendsid := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 3 THEN
                   	SET @store := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 4 THEN
                   	SET @stype := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 5 THEN
                    SET @price  := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
        		SET @icols := @icols + 1;
                
           	END WHILE;
            /*DELETE FROM intend_allocation_items 
            WHERE intdallocit_intend = intendid AND intdallocit_method = 2 AND intdallocit_item = @item;*/
     		INSERT INTO intend_allocation_items( intdallocit_intend, intdallocit_item,intdallocit_vendsup, intdallocit_method, intdallocit_source, intdallocit_type, intdallocit_quantity,intdallocit_ordrprice) 
            VALUES( intendid, @item,@vendsid, 2, @store, @stype, @qty,@price ) ;
  		END WHILE;
       
        
        END IF;
        
        IF uflag = 1 THEN
        	UPDATE intend_details SET intdet_allotted = 0, intdet_status = 1 
        		WHERE intdet_id = intendid /* AND intdet_status <> 5 */;
			UPDATE intend_details 
        	SET intdet_allotted = (SELECT SUM(y.intdallocit_quantity) FROM intend_allocation_items y 
                WHERE y.intdallocit_intend = intendid AND y.intdallocit_item = intdet_item), 
        		intdet_status = 5, intdet_refer = intendid 
        	WHERE intdet_id = intendid AND intdet_item IN(SELECT intdallocit_item FROM intend_allocation_items WHERE intdallocit_intend = intendid AND intdallocit_status = 1);
        END IF;
        IF isfinal = 1 THEN
        	UPDATE intends_tbl SET intend_status = 5, intend_apprvedby = adminid 
        	WHERE intend_id = intendid;
        END IF;
    #END IF;
END$$

CREATE  PROCEDURE `asignDataForAllDataEntries` (IN `dates` DATE, IN `pharmaname` TEXT, IN `limits` INT)   BEGIN
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';

    WHILE pharmaname IS NOT NULL AND LENGTH(TRIM(pharmaname)) > 0 DO
        -- Extract first staff id
        SET front = SUBSTRING_INDEX(pharmaname, ',', 1);
        SET frontlen = LENGTH(front);
        SET tempVal = TRIM(front);

        -- Update "limits" rows for this staff
        UPDATE products_entry_tbl 
        SET assigned_for = tempVal, 
            assigned_date = dates
        WHERE assigned_date IS NULL
        LIMIT limits;

        -- Remove processed staff id from list
        SET pharmaname = INSERT(pharmaname, 1, frontlen + 1, '');
        SET pharmaname = TRIM(BOTH ',' FROM pharmaname);
    END WHILE;
END$$

CREATE  PROCEDURE `asignDataForDataEntries` (IN `in_date` DATE, IN `in_pharmaname` TEXT, IN `in_limits` INT)   BEGIN
    DECLARE idx INT DEFAULT 1;
    DECLARE total INT;
    DECLARE pharma_id VARCHAR(50);

    -- count how many pharmacist IDs are in the list
    SET total = LENGTH(in_pharmaname) - LENGTH(REPLACE(in_pharmaname, ',', '')) + 1;

    WHILE idx <= total DO
        -- extract one pharmacist id
        SET pharma_id = TRIM(SUBSTRING_INDEX(SUBSTRING_INDEX(in_pharmaname, ',', idx), ',', -1));

        -- assign rows
        UPDATE products_entry_tbl
        SET assigned_for = pharma_id,
            assigned_date = in_date
        WHERE assigned_date IS NULL
        ORDER BY product_id ASC
        LIMIT in_limits;

        SET idx = idx + 1;
    END WHILE;
END$$

CREATE  PROCEDURE `asignProductDataForDataEntries` (IN `dates` DATE, IN `pharmaname` INT, IN `pdtval` TEXT)   BEGIN
SET @sql = CONCAT(
    'UPDATE products_entry_tbl 
     SET assigned_for=', pharmaname,
    ', assigned_date=''', dates, '''',
    ',assigned_status=1  WHERE product_id IN (', pdtval, ')'
);

PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;
END$$

CREATE  PROCEDURE `batchWisePurchaseReturn` (IN `chooseval` INT, IN `batchno` VARCHAR(255), IN `branchid` INT)   BEGIN
IF branchid > 1 THEN
    IF chooseval=1 THEN
      SELECT s.stockin_id,s.stockin_batch,s.stockin_item,s.stockin_damaged,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock, ss.store_id,sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,i.invdet_cstpc,i.invdet_sstpc, sp.strstk_id,ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated ,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount ,(i.invdet_cstpc + i.invdet_sstpc)as total_gst FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=s.stockin_store
    WHERE s.stockin_batch=batchno AND s.stockin_store=branchid AND (sp.strstk_stock - sp.strstk_reserved)>0;
    ELSEIF chooseval=2 THEN
        SELECT s.stockin_id,s.stockin_batch,s.stockin_item,s.stockin_damaged,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock,  ss.store_id,sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,i.invdet_cstpc,i.invdet_sstpc,  sp.strstk_id,ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount,(i.invdet_cstpc + i.invdet_sstpc)as total_gst FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=s.stockin_store
    WHERE i.invdet_wopo=1 AND s.stockin_store=branchid AND (sp.strstk_stock - sp.strstk_reserved)>0;
    ELSEIF chooseval=3 THEN
        SELECT s.stockin_id,s.stockin_batch,s.stockin_item,s.stockin_damaged,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock,  ss.store_id,sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,i.invdet_cstpc,i.invdet_sstpc,  sp.strstk_id,ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount,(i.invdet_cstpc + i.invdet_sstpc)as total_gst FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=s.stockin_store
    WHERE s.stockin_damaged > 0 AND s.stockin_store=branchid AND (sp.strstk_stock - sp.strstk_reserved)>0;
    ELSE
     SELECT s.stockin_id,s.stockin_batch,s.stockin_item,s.stockin_damaged,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock, ss.store_id,  sp.strstk_id,i.invdet_cstpc,i.invdet_sstpc, (i.invdet_cstpc + i.invdet_sstpc)as total_gst,sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=s.stockin_store
    WHERE ( s.stockin_expiry <= DATE_ADD(CURDATE(), INTERVAL 2 MONTH) )AND  (sp.strstk_stock - sp.strstk_reserved)>0 AND s.stockin_store=branchid ORDER BY  ii.invoice_number;
            END IF;
 ELSE
 IF chooseval=1 THEN
      SELECT s.stockin_id,s.stockin_batch,s.stockin_item,s.stockin_damaged,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock, ss.store_id,i.invdet_cstpc,i.invdet_sstpc, (i.invdet_cstpc + i.invdet_sstpc)as total_gst, sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,sp.strstk_id,ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=s.stockin_store
    WHERE s.stockin_batch=batchno AND (sp.strstk_stock - sp.strstk_reserved)>0;
ELSEIF chooseval=2 THEN
        SELECT s.stockin_id,s.stockin_batch,s.stockin_item,s.stockin_damaged,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock,  ss.store_id, sp.strstk_id,i.invdet_cstpc,i.invdet_sstpc,(i.invdet_cstpc + i.invdet_sstpc)as total_gst, sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=sp.strstk_store
    WHERE i.invdet_wopo=1 AND (sp.strstk_stock - sp.strstk_reserved)>0;
ELSEIF chooseval=3 THEN
        SELECT s.stockin_id,s.stockin_batch,s.stockin_item,s.stockin_damaged,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock,  ss.store_id, sp.strstk_id,i.invdet_cstpc,i.invdet_sstpc,(i.invdet_cstpc + i.invdet_sstpc)as total_gst, sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=s.stockin_store
    WHERE s.stockin_damaged != 0 AND (sp.strstk_stock - sp.strstk_reserved)>0;
ELSE
 SELECT s.stockin_id,s.stockin_damaged, s.stockin_batch,s.stockin_item,fnGetProductFromPack(s.stockin_item, 0) AS invitem, ii.invoice_amount,i.invdet_taxamt,i.invdet_cst,i.invdet_sst,ii.invoice_vendertype,ii.invoice_vendor,fnGetVendorName(ii.invoice_vendertype, ii.invoice_vendor) AS vendor,s.stockin_expiry,s.stockin_inward AS original_qty,(sp.strstk_stock - sp.strstk_reserved)AS stock, ss.store_id,sp.strstk_id,sp.strstk_msp,sp.strstk_mrp,sp.strstk_discount,i.invdet_cstpc,i.invdet_sstpc,(i.invdet_cstpc + i.invdet_sstpc)as total_gst, ss.store_code,ss.store_name,ii.invoice_id,ii.invoice_number,ii.invoice_dated,i.invdet_mrp,i.invdet_ptr,i.invdet_discpc,i.invdet_discount FROM stock_inwards s
 JOIN invoice_details i ON i.invdet_id=s.stockin_invref
JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
 JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
 JOIN stores_tbl ss on ss.store_id=s.stockin_store 
WHERE s.stockin_expiry <= DATE_ADD(CURDATE(), INTERVAL 2 MONTH) AND (sp.strstk_stock - sp.strstk_reserved)>0 ORDER BY s.stockin_expiry;
        END IF;
 END IF ;
END$$

CREATE  PROCEDURE `cancelInvoice` (IN `invid` INT)   BEGIN
	DECLARE respcode INT DEFAULT 0;
    DECLARE EXIT HANDLER FOR SQLEXCEPTION
    BEGIN
    	ROLLBACK;
        SET respcode = 0;
    END;
	IF(SELECT COUNT(*) FROM invoices_tbl x 
       	WHERE x.invoice_status = 1 AND x.invoice_delstatus = 0 AND x.invoice_id = invid) = 1 THEN
       	START TRANSACTION;
       		UPDATE invoices_tbl SET invoice_status = 0 WHERE invoice_id = invid;
       		UPDATE invoice_details SET invdet_status = 0 WHERE invdet_invoice = invid;
       		SET respcode = 1;
       	COMMIT;
    END IF;
    SELECT respcode;
END$$

CREATE  PROCEDURE `CancelOrderbyPricingID` (IN `strstkid` INT, IN `qty` INT, IN `propackid` INT)   BEGIN
UPDATE storestock_pricing p SET p.strstk_reserved=p.strstk_reserved-qty , p.strstk_stock=p.strstk_stock+qty WHERE p.strstk_id=strstkid;

UPDATE storestock_master m SET m.storestock_reserved= m.storestock_reserved-qty , m.storestock_available=m.storestock_available+qty WHERE m.storestock_item=propackid AND m.storestock_store=storeid;

END$$

CREATE  PROCEDURE `cancelPurchaseOrder` (IN `poid` INT, IN `adminid` INT)   BEGIN
	DECLARE delstat INT DEFAULT 0;
	DECLARE EXIT HANDLER FOR SQLEXCEPTION
    BEGIN
    	ROLLBACK;
        SET delstat = 0;
    END;
    IF (SELECT purchord_status FROM purchase_orders WHERE purchord_id = poid) < 5 THEN
        START TRANSACTION;
            UPDATE purchase_orders SET purchord_status = 0, purchord_updby = adminid 
            WHERE purchord_id = poid;
            UPDATE purchase_details SET podetail_status = 0, podetail_updby = adminid
            WHERE podetail_order = poid;
            SET delstat = 1;
        COMMIT;
    END IF;
    SELECT delstat;
END$$

CREATE  PROCEDURE `cancelUserOrderDetailsbyOrderId` (IN `orderId` VARCHAR(200), IN `userid` INT, IN `reason` TEXT)   BEGIN
DECLARE ordid ,ord_ids ,store,item INT DEFAULT 0;
DECLARE resultString ,resultQty ,singleValue,singleQty TEXT;
DECLARE phone VARCHAR(225);

SELECT o.order_id,c.customer_phone INTO ordid,phone  FROM orders_tbl o JOIN customers_tbl c ON c.customer_id=o.order_customer WHERE o.order_orderid=orderId and o.order_customer=userid;
 UPDATE orders_tbl o SET o.order_status=0 , o.order_delivery=0, o.order_message=reason, o.orders_cancelled=CURRENT_TIMESTAMP WHERE o.order_orderid=orderId and o.order_customer=userid;
 
 UPDATE order_details o set o.ordet_status=0, o.ordet_active=0, o.order_cancelled=CURRENT_TIMESTAMP WHERE o.ordet_order=ordid;


 SELECT GROUP_CONCAT(c.order_batchid) INTO resultString FROM order_details c WHERE c.ordet_order=ordid ;
    SELECT GROUP_CONCAT(c.ordet_quantity) INTO resultQty FROM order_details c WHERE c.ordet_order=ordid ;
 WHILE resultString IS NOT NULL AND resultString != '' DO
        SET singleValue = SUBSTRING_INDEX(resultString, ',', 1);
        SET singleQty = SUBSTRING_INDEX(resultQty, ',', 1);
        SELECT strstk_store,strstk_item INTO store,item FROM storestock_pricing WHERE strstk_id =singleValue;
        UPDATE storestock_pricing SET strstk_reserved=strstk_reserved-singleQty WHERE strstk_id =singleValue;
        UPDATE storestock_master SET storestock_reserved=storestock_reserved-singleQty WHERE storestock_store = store AND storestock_item =item;
        -- Remove the processed value from resultString
        SET resultString = REPLACE(resultString, CONCAT(singleValue, ','), '');
        SET resultQty = REPLACE(resultQty, CONCAT(singleQty, ','), '');
        IF resultString = singleValue AND resultQty=singleQty  THEN
            SET resultString = '';
            SET resultQty='';
        END IF;
    END WHILE;
 SELECT phone;
END$$

CREATE  PROCEDURE `cancelUserReturnOrdersbyOrderId` (IN `orderId` VARCHAR(200), IN `userid` INT)   BEGIN

DECLARE ordid  INT DEFAULT 0;

SELECT o.order_id INTO ordid  FROM orders_tbl o JOIN customers_tbl c ON c.customer_id=o.order_customer WHERE o.order_orderid=orderId and o.order_customer=userid;

 UPDATE orders_tbl o SET o.order_status=1  WHERE o.order_orderid=orderId and o.order_customer=userid;
 
DELETE FROM order_return_status_history WHERE order_id=ordid;
 
INSERT INTO `order_return_status_history_tmp`( `order_id`, `return_status`, `return_reason`, `status_date`) VALUES (ordid,0,'deleted',CURRENT_TIMESTAMP);
END$$

CREATE  PROCEDURE `checkDeliveryaddressByphone` (IN `phone` VARCHAR(200), IN `userid` INT)   BEGIN
DECLARE counts int;
IF (userid IS NULL) THEN
IF EXISTS(SELECT 1 FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=1)THEN
SELECT 'user' as guest,c.customer_id as user_id FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=1;
/*SELECT 'user' as guest;*/
ELSE
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=0;
IF(counts=1)THEN
SELECT 1 as guest,c.customer_id as user_id FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=0;

SELECT d.delivery_to,d.delivery_email,d.delivery_pin,d.delivery_house,d.delivery_street,d.delivery_landmark,d.delivery_city,d.delivery_state,d.delivery_type FROM delivery_address d JOIN customers_tbl c ON c.customer_id=d.delivery_user WHERE c.customer_type=0 and c.customer_phone=phone and d.delivery_status=1;
ELSE
SELECT 0 as guest;
END IF;
END IF;
ELSE
SELECT 0 as guest;


END IF;



END$$

CREATE  PROCEDURE `checkDuplicate` (IN `itemname` VARCHAR(100), IN `flag` INT)   BEGIN
	DECLARE resp INT DEFAULT 0;
	IF flag = 1 THEN /* invoice number */
    	SELECT COUNT INTO resp FROM invoices_tbl  
        WHERE invoice_number = trim(itemname);
    END IF;
    SELECT resp;
END$$

CREATE  PROCEDURE `checkOfferProduct` (IN `prdid` INT, IN `packid` INT, IN `stockid` INT)   BEGIN
    DECLARE mrp, msp, totalprice, smrp, smsp, disc, sdisc, actualprice DOUBLE DEFAULT 0;
    DECLARE strk INT DEFAULT 0;

    -- Get the pricing details for the given product, pack, and stock ID
    SELECT e1.strstk_mrp, e1.strstk_msp, e1.strstk_discount
    INTO mrp, msp, disc
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = prdid  
      AND e1.strstk_item = packid 
      AND e1.strstk_id = stockid
    LIMIT 1;

    -- Calculate actual price
    SET actualprice = IF(disc != 0, msp, mrp);

    -- Initialize row number variable
    SET @row_number = 0;

    -- Select the best available stock details
    SELECT strstk_mrp, strstk_msp, max_discount, strstk_id
    INTO smrp, smsp, sdisc, strk
    FROM (
        SELECT 
            (@row_number := @row_number + 1) AS virtual_id,
            e1.strstk_mrp, 
            e1.strstk_msp, 
            e1.strstk_discount AS max_discount, 
            e1.strstk_id, 
            e1.strstk_item
        FROM storestock_pricing e1
        JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
        WHERE e1.strstk_product = prdid 
          AND e1.strstk_item = packid  
          AND (e1.strstk_stock - e1.strstk_reserved) > 0 
          AND s1.stockin_expiry >= CURRENT_DATE()
        ORDER BY s1.stockin_expiry ASC, e1.strstk_discount DESC, e1.strstk_stock DESC
        LIMIT 1
    ) AS x;

    -- Calculate the total price
    SET totalprice = IF(sdisc != 0, smsp, smrp);
    
    -- Conditional check for price comparison
    IF actualprice > totalprice THEN
        SELECT 1 AS statusVal;
        select x.product_id,x.product_name,x.product_display,x.prodpack_id,x.prodpack_quantity,x.packing_type,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.product_imageurl,x.strstk_discount,x.strstk_id,x.strstk_item  from (SELECT ( @row_numbers := @row_numbers + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,r.prodpack_id,r.prodpack_quantity,t.packing_type,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,e.strstk_item from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer
WHERE   p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_item = packid  AND (e.strstk_stock-e.strstk_reserved)>0 AND s.stockin_expiry>= CURRENT_DATE() and e.strstk_product = prdid  and e.strstk_id=strk ORDER by s.stockin_expiry asc, e.strstk_discount DESC, e.strstk_stock DESC) AS x GROUP BY x.strstk_item;
        
    ELSE
        SELECT 0 AS statusVal;
    END IF;

END$$

CREATE  PROCEDURE `checkPhoneByuserId` (IN `userid` INT)   BEGIN
DECLARE counts int;

IF EXISTS(SELECT 1 FROM customers_tbl c WHERE c.customer_id=userid)THEN
SELECT c.customer_type as type, c.customer_phone as phone FROM customers_tbl c WHERE c.customer_id=userid;
/*SELECT 'user' as guest;*/
ELSE
SELECT null as type, null as phone;
END IF;



END$$

CREATE  PROCEDURE `checkuserByphone` (IN `phone` VARCHAR(200))   BEGIN
DECLARE counts int;

IF EXISTS(SELECT 1 FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=1)THEN
SELECT 'user' as guest FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=1;
/*SELECT 'user' as guest;*/
ELSE
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=0;
IF(counts=1)THEN
SELECT 1 as guest FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=0;

ELSE
SELECT 0 as guest;
END IF;
END IF;




END$$

CREATE  PROCEDURE `checkuserByTrackID` (IN `orderId` VARCHAR(255), IN `phone` VARCHAR(255))   BEGIN
DECLARE phoneno VARCHAR(225);
IF EXISTS(SELECT o.order_orderid FROM delivery_address d JOIN  orders_tbl o ON o.order_deliverId=d.delivery_id AND d.delivery_user=o.order_customer JOIN customers_tbl c ON c.customer_id=o.order_customer WHERE (d.delivery_phone=phone OR c.customer_phone=phone ) AND o.order_orderid=orderId) THEN
SELECT c.customer_phone INTO phoneno FROM delivery_address d JOIN  orders_tbl o ON o.order_deliverId=d.delivery_id AND d.delivery_user=o.order_customer JOIN customers_tbl c ON c.customer_id=o.order_customer WHERE (d.delivery_phone=phone OR c.customer_phone=phone ) AND o.order_orderid=orderId;
SELECT 1 as users,phoneno as phoneNum;
ELSE
SELECT 0 as users;
END IF;
END$$

CREATE  PROCEDURE `checkUserCredentials` (IN `phone` VARCHAR(50), IN `flag` INT, IN `email` VARCHAR(200))   BEGIN
if flag=2 THEN
IF EXISTS (SELECT 1 FROM customers_tbl c WHERE (c.customer_phone = phone or c.customer_email=email ) and c.customer_type=1 )THEN
SELECT 1 as usr;
ELSE
SELECT 0 as usr;
END IF;
ELSE
SELECT "" as usr;
END IF;
END$$

CREATE  PROCEDURE `checkUserCredentialsbyPhone` (IN `phone` VARCHAR(50))   BEGIN

IF EXISTS (SELECT 1 FROM customers_tbl c WHERE c.customer_phone = phone  and c.customer_type=1 )THEN
SELECT 1 as usr;
ELSE
SELECT 0 as usr;
END IF;

END$$

CREATE  PROCEDURE `checkUserLogin` (IN `username` VARCHAR(100), IN `passwords` VARCHAR(100))   BEGIN

SELECT u.user_id,	u.user_staffid	,u.user_staffname	,u.user_programid	,u.user_programcontains	,u.user_status, s.staff_branch, t.store_name, u.user_checkid, t.store_code FROM users_tbl u LEFT JOIN staff_tbl s ON s.staff_id=u.user_staffid LEFT JOIN stores_tbl t ON t.store_id=s.staff_branch WHERE BINARY u.user_login = username AND BINARY u.user_password = passwords;

END$$

CREATE  PROCEDURE `checkVendorItem` (IN `vtype` INT, IN `vendor` INT, IN `product` INT, IN `packing` INT, IN `qty` INT)   BEGIN
	SELECT COUNT(*) FROM vendor_supplies x 
    LEFT JOIN product_packing p ON p.prodpack_id = x.vendsup_packing
    WHERE x.vendsup_product = product AND x.vendsup_packing = packing 
    AND x.vendsup_type = vtype AND x.vendsup_vendor = vendor 
    AND p.prodpack_quantity = qty;
END$$

CREATE  PROCEDURE `countOfListIntendApproval` (IN `storeid` INT)   BEGIN
IF storeid > 0 THEN
	SELECT COUNT(*) as total
    FROM intend_allocation_items x
    LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
    LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
    LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
    LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
    WHERE x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5 AND x.intdallocit_source=storeid
    AND x.intdallocit_method = 1 ;
    ELSE
    SELECT COUNT(*) as total
    FROM intend_allocation_items x
    LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
    LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
    LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
    LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
    WHERE x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5
    AND x.intdallocit_method = 1 ;
    END IF;
END$$

CREATE  PROCEDURE `countOfNotifications` (IN `storeid` INT)   BEGIN
#count of store intend tranfers
IF storeid > 1 THEN
	SELECT COUNT(*) as total
    FROM intend_allocation_items x
    LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
    LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
    LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
    LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
    WHERE x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5 AND x.intdallocit_source=storeid
    AND x.intdallocit_method = 1 ;
    ELSE
    SELECT COUNT(*) as total
    FROM intend_allocation_items x
    LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
    LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
    LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
    LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
    WHERE x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5
    AND x.intdallocit_method = 1 ;
    END IF;
 #count of stockinward
    IF storeid > 1 THEN
    	SELECT COUNT(*) AS stokin_total
    FROM invoices_tbl x
    WHERE  x.invoice_delstatus=1 AND x.invoice_status=1 AND x.invoice_delstore=storeid ;
    ELSE
    	SELECT COUNT(*) AS stokin_total
    FROM invoices_tbl x
    WHERE x.invoice_delstatus =1 and x.invoice_status=1;
   END IF;
#count of collections
	IF storeid >1 THEN
       SELECT COUNT(*) AS colcn_total
        FROM transfer_packets p
        WHERE p.transpack_status = 1 AND p.transpack_from=storeid;
    ELSE
        SELECT COUNT(*) AS colcn_total
        FROM transfer_packets p WHERE p.transpack_status = 1;
    END IF;
#count of received items
	IF storeid >1 THEN
    SELECT COUNT(*) AS recvd_total FROM transfer_packets t
        WHERE t.transpack_to=storeid AND t.transpack_status >1 AND t.transpack_status <10;
     ELSE
    	 SELECT COUNT(*) AS recvd_total FROM transfer_packets t
            WHERE t.transpack_status >1 AND t.transpack_status <10;
	END IF;
#count of packagings
IF storeid > 1 THEN
   		SELECT COUNT(*) AS pack_total FROM stock_transfers x
    	WHERE x.stocktrans_status = 1 AND x.stocktrans_strfrom=storeid AND (SELECT COUNT(*) FROM transfer_packets p WHERE p.transpack_refer = x.stocktrans_id)=0;
    ELSE
       SELECT COUNT(*) AS pack_total FROM stock_transfers x
    	WHERE x.stocktrans_status = 1 AND (SELECT COUNT(*) FROM transfer_packets p WHERE p.transpack_refer = x.stocktrans_id)=0;
END IF;
#count of approval for warehouse
IF storeid=1 THEN
SELECT COUNT(*) AS aprv_total FROM intends_tbl x
    LEFT JOIN stores_tbl frst ON frst.store_id = x.intend_from
    LEFT JOIN stores_tbl tost ON tost.store_id = x.intend_to
    WHERE x.intend_status = 1 ;
    ELSE
    SELECT 0 AS aprv_total;
 END IF;
 
 #count of item returns
 IF storeid>1 THEN
  SELECT COUNT(*) AS return_total FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice 
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=sp.strstk_store
    WHERE (s.stockin_expiry <= DATE_ADD(CURDATE(), INTERVAL 2 MONTH)) AND (sp.strstk_stock - sp.strstk_reserved)>0 AND s.stockin_store=storeid ;
ELSE 
    SELECT COUNT(*) AS return_total FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice 
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=sp.strstk_store
    WHERE (s.stockin_expiry <= DATE_ADD(CURDATE(), INTERVAL 2 MONTH)) AND (sp.strstk_stock - sp.strstk_reserved)>0;
END IF ;

#count of item low stock store per day
/*IF storeid>1 THEN 
SELECT COUNT(*) AS low_stock FROM searchlog_tbl s JOIN stores_tbl st on st.store_id=s.search_store WHERE date(s.search_crtdon)=CURRENT_DATE AND s.search_store=storeid GROUP BY s.search_store,s.search_item ORDER BY s.search_crtdon DESC;

ELSE
SELECT COUNT(*) AS low_stock FROM searchlog_tbl s JOIN stores_tbl st on st.store_id=s.search_store WHERE date(s.search_crtdon)=CURRENT_DATE  GROUP BY s.search_store,s.search_item ORDER BY s.search_crtdon DESC;
END IF;*/

SELECT COUNT(*) AS low_stock FROM(SELECT DISTINCT s.search_store FROM searchlog_tbl s JOIN stores_tbl st on st.store_id=s.search_store WHERE date(s.search_crtdon)=CURRENT_DATE GROUP BY s.search_store,s.search_item ORDER BY s.search_crtdon DESC) AS sub;

 /*IF storeid>1 THEN
  SELECT COUNT(*) AS return_total FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=sp.strstk_store
    WHERE (s.stockin_expiry <= DATE_ADD(CURDATE(), INTERVAL 2 MONTH)OR s.stockin_damaged>0 OR i.invdet_wopo=1) AND (sp.strstk_stock - sp.strstk_reserved)>0 AND s.stockin_store=storeid ;
ELSE
    SELECT COUNT(*) AS return_total FROM stock_inwards s
    LEFT JOIN invoice_details i ON i.invdet_id=s.stockin_invref
    LEFT JOIN invoices_tbl ii ON ii.invoice_id=i.invdet_invoice
    LEFT JOIN storestock_pricing sp ON sp.strstk_refer=s.stockin_id
    LEFT JOIN stores_tbl ss on ss.store_id=sp.strstk_store
    WHERE (s.stockin_expiry <= DATE_ADD(CURDATE(), INTERVAL 2 MONTH)OR s.stockin_damaged>0 OR i.invdet_wopo=1) AND (sp.strstk_stock - sp.strstk_reserved)>0;
END IF ;*/

END$$

CREATE  PROCEDURE `county_summary` (IN `query` JSON)   BEGIN
	DECLARE i_county varchar(255) default null;
	DECLARE i_year int default null;
	DECLARE i_month int default null;
    
    set i_county = JSON_UNQUOTE(JSON_EXTRACT(query,'$.county'));
set i_year = JSON_EXTRACT(query,'$.year');
set i_month = JSON_EXTRACT(query,'$.month');

SELECT 1, 'test', json_unquote(json_extract(query, '$.name')) AS customer, json_extract(query, '$.age') AS age, json_extract(query, '$.car') AS car;

 if (i_county is not null) && (i_year is not null) && (i_month is not null) then
   select 'loop 1';
 elseif (i_county is not null) && (i_year is not null) then
   select 'loop 2';
 elseif (i_year is not null) && (i_month is not null) then
   select 'loop 3';
 elseif (i_year is not null) then
   select 'loop 4';
 else
   select null as 'no input';
 end if; 
END$$

CREATE  PROCEDURE `createOrderPrescriptionFiles` (IN `p_user_id` INT, IN `p_ordid` VARCHAR(100), IN `p_files` VARCHAR(255), IN `p_phone` VARCHAR(20), IN `p_status` INT)   BEGIN
    
   
        -- Case 2: Only phone number, no files
        INSERT INTO prescription_files(user_id, order_id, file_name,  user_phone,file_status)
        VALUES (p_user_id, p_ordid, p_files, p_phone,p_status);
   
END$$

CREATE  PROCEDURE `createReOrderItemsBYorderID` (IN `orderId` VARCHAR(225))   BEGIN
DECLARE userid INT DEFAULT 0;
SELECT c.customer_id INTO userid from customers_tbl c JOIN orders_tbl o ON o.order_customer=c.customer_id WHERE o.order_orderid=orderId;

INSERT IGNORE INTO `user_cart`(`user_id`, `product_id`, `prodpack_id`, `batch_id`, `quantity`)  (SELECT userid,d.ordet_productid,d.ordet_producpackid,d.order_batchid,d.ordet_quantity FROM order_details d JOIN orders_tbl o ON o.order_id=d.ordet_order WHERE o.order_orderid=orderId);
END$$

CREATE  PROCEDURE `createReOrderPrecriptionItemsBYorderID` (IN `orderId` VARCHAR(225))   BEGIN
DECLARE userid INT DEFAULT 0;
SELECT c.customer_id INTO userid from customers_tbl c JOIN orders_tbl o ON o.order_customer=c.customer_id WHERE o.order_orderid=orderId;

INSERT IGNORE INTO `user_cart`(`user_id`, `product_id`, `prodpack_id`, `batch_id`, `quantity`)  (SELECT userid,d.ordet_productid,d.ordet_producpackid,d.order_batchid,d.ordet_quantity FROM order_details d JOIN orders_tbl o ON o.order_id=d.ordet_order WHERE o.order_orderid=orderId);
END$$

CREATE  PROCEDURE `customerDetails` (IN `mob` VARCHAR(20))   BEGIN
/* customer details fetch*/
SELECT customer_id , customer_number, customer_name, customer_address, customer_phone, customer_gender, customer_age
FROM customers_tbl
WHERE customer_phone = mob;
END$$

CREATE  PROCEDURE `defaultAddCourier` ()   BEGIN
	SELECT x.staff_id, x.staff_code, x.staff_name 
    FROM staff_tbl x 
    WHERE x.staff_status = 1 AND x.staff_role IN(0,1,2)
    ORDER BY x.staff_name;
    
    SELECT y.store_id, y.store_code, y.store_name 
    FROM stores_tbl y 
    WHERE y.store_status = 1 
    ORDER BY y.store_name;
    
    SELECT d.delarea_id, d.delarea_location, d.delarea_pincode
    FROM delivery_areas d 
    WHERE d.delarea_status = 1 
    ORDER BY d.delarea_country, d.delarea_province, d.delarea_district, d.delarea_location;
    
END$$

CREATE  PROCEDURE `defaultAddDealer` ()   BEGIN
	SELECT x.dealer_id, x.dealer_name 
    FROM dealers_tbl x 
    WHERE x.dealer_status = 1 
    ORDER BY x.dealer_name;
END$$

CREATE  PROCEDURE `defaultAddDistributor` ()   BEGIN
	SELECT x.manuf_id, x.manuf_name 
    FROM manufacturers_tbl x 
    WHERE x.manuf_status = 1 
    ORDER BY x.manuf_name;
    
    SELECT d.distri_id, d.distri_name 
    FROM distributors_tbl d 
    WHERE d.distri_status =  1 
    ORDER BY d.distri_name;
END$$

CREATE  PROCEDURE `defaultAddLocation` ()   BEGIN
	SELECT Code, Name 
    FROM country WHERE country.storeok = 1;
    
    SELECT DISTINCT(District) 
    FROM city WHERE CountryCode = 'IND'
    ORDER BY District;
    
    SELECT ID, Name FROM city 
    WHERE District = 'Kerala';
END$$

CREATE  PROCEDURE `defaultAddProduct` ()   BEGIN
	/* Generic Names 
	SELECT genmed_id, genmed_name 
    FROM generic_medicines 
    WHERE genmed_status = 1 
    UNION SELECT 0, 0 
    ORDER BY genmed_name;*/
    
    /* Main categories */
    SELECT prodclass_id, prodclass_name, prodclass_serial 
    FROM product_classes  
    WHERE prodclass_parent = 0 AND prodclass_status = 1 
    UNION ALL SELECT 0, 0, 0 
    ORDER BY prodclass_serial;
    
    /* Basic drug classes 
    SELECT drugclass_id, drugclass_name 
    FROM drug_classifications 
    WHERE drugclass_status = 1 AND drugclass_parent = 0 
    UNION SELECT 0, 0 
    ORDER BY drugclass_name ;*/
    
    /* All Brands */
    SELECT brand_id, brand_name, brand_owner
FROM brands_tbl 
WHERE brand_status = 1 

UNION ALL

SELECT 0, 0, 0 
ORDER BY brand_name;

    
    /* All Manufacturors */
    SELECT 
    m.manuf_id, 
    m.manuf_name, 
    GROUP_CONCAT(b.brand_id SEPARATOR ',') AS brands
FROM manufacturers_tbl m
LEFT JOIN brands_tbl b 
    ON b.brand_owner = m.manuf_id
WHERE m.manuf_status = 1
GROUP BY m.manuf_id, m.manuf_name

UNION ALL

SELECT 0, 'Select Manufacturer', '0'

ORDER BY manuf_name;

    
    /* Ingredients */
    SELECT ingredtype_id, ingredtype_type 
    FROM ingredient_types WHERE ingredtype_status = 1 
    UNION ALL SELECT 0, 0 
    ORDER BY ingredtype_type;
    
    /*SELECT ingred_id, ingred_name, ingred_type, ingredtype_type
    FROM ingredients_tbl  
    LEFT JOIN ingredient_types ON ingredtype_id = ingred_type 
    WHERE ingred_status = 1 
    UNION SELECT 0, 0, 0, 0
    ORDER BY ingred_type, ingred_name; */
    
    /* Packaging types */
    SELECT packing_id, packing_type 
    FROM packing_tbl WHERE packing_status = 1;
    
    /* Measuring units */
    SELECT measunit_id, measunit_name, measunit_shortname 
    FROM measure_units WHERE measunit_status = 1;
    
    /* GST Tax rates */
    SELECT tax_id, tax_group, tax_rate  
    FROM tax_groups WHERE tax_status = 1;
    
   /* Schedule name*/
    SELECT sch_id, sch_name, sch_code FROM schedule_tbl WHERE sch_status=1;
END$$

CREATE  PROCEDURE `defaultAddProducts` ()   BEGIN
	/* Generic Names */
	
    
    /* Main categories */
    SELECT prodclass_id, prodclass_name, prodclass_serial 
    FROM product_classes  
    WHERE prodclass_parent = 0 AND prodclass_status = 1 
    UNION ALL SELECT 0, 0, 0 
    ORDER BY prodclass_serial;
    
    /* Basic drug classes */
    SELECT drugclass_id, drugclass_name 
    FROM drug_classifications 
    WHERE drugclass_status = 1 AND drugclass_parent = 0 
    UNION SELECT 0, 0 
    ORDER BY drugclass_name ;
    SELECT 0 AS brand_id, 0 AS brand_name,0 AS brand_owner;
    /* All Brands 
    SELECT brand_id, brand_name, brand_owner
    FROM brands_tbl WHERE brand_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY brand_name;*/
    
    /* All Manufacturors 
    SELECT 
    m.manuf_id, 
    m.manuf_name, 
    GROUP_CONCAT(b.brand_id SEPARATOR ',') AS brands
FROM manufacturers_tbl m
LEFT JOIN brands_tbl b 
    ON b.brand_owner = m.manuf_id
WHERE m.manuf_status = 1
GROUP BY m.manuf_id, m.manuf_name

UNION ALL

SELECT 0, 'Select Manufacturer', '0'

ORDER BY manuf_name;
*/

SELECT 0 AS manuf_id,null AS manuf_name ,0 AS brands;

    
    /* Ingredients */
    SELECT ingredtype_id, ingredtype_type 
    FROM ingredient_types WHERE ingredtype_status = 1 
    UNION ALL SELECT 0, 0 
    ORDER BY ingredtype_type;
    
    /*SELECT ingred_id, ingred_name, ingred_type, ingredtype_type
    FROM ingredients_tbl  
    LEFT JOIN ingredient_types ON ingredtype_id = ingred_type 
    WHERE ingred_status = 1 
    UNION SELECT 0, 0, 0, 0
    ORDER BY ingred_type, ingred_name; */
    
    /* Packaging types */
    SELECT packing_id, packing_type 
    FROM packing_tbl WHERE packing_status = 1;
    
    /* Measuring units */
    SELECT measunit_id, measunit_name, measunit_shortname 
    FROM measure_units WHERE measunit_status = 1;
    
    /* GST Tax rates */
    SELECT tax_id, tax_group, tax_rate  
    FROM tax_groups WHERE tax_status = 1;
    
   /* Schedule name*/
    SELECT sch_id, sch_name, sch_code FROM schedule_tbl WHERE sch_status=1;
END$$

CREATE  PROCEDURE `defaultAddStockist` ()   BEGIN
	SELECT manuf_id, manuf_name 
    FROM manufacturers_tbl 
    WHERE manuf_status = 1 
    ORDER BY manuf_name;
END$$

CREATE  PROCEDURE `defaultAddStore` ()   BEGIN
	SELECT storetype_id, storetype_name 
    FROM store_types  
    WHERE storetype_status = 1; 
    
    SELECT delarea_id, delarea_location, delarea_pincode
    FROM delivery_areas  
    WHERE delarea_status = 1 
    ORDER BY delarea_location;
END$$

CREATE  PROCEDURE `defaultCollections` (IN `adminid` INT, IN `courier` INT, IN `flag` INT, IN `store` INT)   BEGIN
	SELECT x.store_id, x.store_code, x.store_name
    FROM stores_tbl x WHERE x.store_status = 1;
    SELECT c.courier_id, c.courier_name
    FROM couriers_tbl c WHERE c.courier_status = 1
    ORDER BY c.courier_name;
    IF store >1 THEN
    IF flag=1 THEN
        SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status,t.store_contactcell as contact ,pp.transferpack_orditem,pp.transferpack_qty,pp.transferpack_item
        FROM transfer_packets p
        LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from
        LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to
        LEFT JOIN transferpack_items pp ON pp.transferpack_packet=p.transpack_id
        WHERE p.transpack_status = 5 AND p.transpack_from=store GROUP BY p.transpack_packid;
      ELSEIF flag=2 AND store>0 THEN
        SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status,t.store_contactcell as contact ,pp.transferpack_orditem,pp.transferpack_qty,pp.transferpack_item
        FROM transfer_packets p
        LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from
        LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to
        LEFT JOIN transferpack_items pp ON pp.transferpack_packet=p.transpack_id
        WHERE p.transpack_status = 10 AND p.transpack_from=store GROUP BY p.transpack_packid;
    ELSE
       /*SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status, t.store_contactcell as contact ,pp.transferpack_orditem,pp.transferpack_qty,pp.transferpack_item
        FROM transfer_packets p
        LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from
        LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to
        LEFT JOIN transferpack_items pp ON pp.transferpack_packet=p.transpack_id
        WHERE p.transpack_status = 1 AND p.transpack_from=store GROUP BY p.transpack_packid;*/
        SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status,t.store_contactcell as contact ,group_concat(concat(pp.transferpack_orditem,'|',pp.transferpack_qty,'|',p.transpack_from,'|',pp.transferpack_item) SEPARATOR '##') as orderitem,fnGetProductFromPack(pp.transferpack_item, 0) AS item FROM transfer_packets p
        LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from
        LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to
        LEFT JOIN transferpack_items pp ON pp.transferpack_packet=p.transpack_id
        WHERE p.transpack_status = 1 AND p.transpack_from=store GROUP BY p.transpack_packid;
    END IF;
    ELSE
    IF flag=1 THEN
        SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status,t.store_contactcell as contact ,pp.transferpack_orditem,pp.transferpack_qty,pp.transferpack_item
        FROM transfer_packets p
        LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from
        LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to
        LEFT JOIN transferpack_items pp ON pp.transferpack_packet=p.transpack_id
        WHERE p.transpack_status = 5 GROUP BY p.transpack_packid;
      ELSEIF flag=2 THEN
        SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status, t.store_contactcell as contact ,pp.transferpack_orditem,pp.transferpack_qty,pp.transferpack_item
        FROM transfer_packets p
        LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from
        LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to
        LEFT JOIN transferpack_items pp ON pp.transferpack_packet=p.transpack_id
        WHERE p.transpack_status = 10 GROUP BY p.transpack_packid;
    ELSE
        SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status,t.store_contactcell as contact ,group_concat(concat(pp.transferpack_orditem,'|',pp.transferpack_qty,'|',p.transpack_from,'|',pp.transferpack_item) SEPARATOR '##') as orderitem,fnGetProductFromPack(pp.transferpack_item, 0) AS item FROM transfer_packets p LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to LEFT JOIN transferpack_items pp ON pp.transferpack_packet=p.transpack_id WHERE p.transpack_status = 1 group by p.transpack_packid;
    END IF;
   END IF;
END$$

CREATE  PROCEDURE `defaultDeliveries` (IN `adminid` INT, IN `flag` INT, IN `store` INT, IN `courier` INT)   BEGIN
	SELECT x.store_id, x.store_code, x.store_name
    FROM stores_tbl x WHERE x.store_status = 1;
    
    SELECT c.courier_id, c.courier_name 
    FROM couriers_tbl c WHERE c.courier_status = 1 
    ORDER BY c.courier_name;
    
    IF flag=1 AND store>0 THEN
    SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status, 'contact person' as contact 
    FROM transfer_packets p 
    LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from 
    LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to 
    WHERE p.transpack_status = 5 AND p.transpack_from=store;
    
      ELSEIF flag=2 AND store>0 THEN
    SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status, 'contact person' as contact 
    FROM transfer_packets p 
    LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from 
    LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to 
    WHERE p.transpack_status = 10 AND p.transpack_from=store;
    
    ELSEIF flag=3 AND store>0 THEN
    SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status, 'contact person' as contact 
    FROM transfer_packets p 
    LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from 
    LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to 
    WHERE p.transpack_status = 15 AND p.transpack_to=store;
    ELSE 
	SELECT p.transpack_id, p.transpack_packid, p.transpack_from, s.store_name AS frmstore, p.transpack_to, t.store_name AS tostotre, p.transpack_status, 'Contact person' AS contact ,p.transpack_collectby as courier_id , c.courier_name as courier
    FROM transfer_packets p 
    LEFT JOIN stores_tbl s ON s.store_id = p.transpack_from 
    LEFT JOIN stores_tbl t ON t.store_id = p.transpack_to 
    LEFT JOIN couriers_tbl c ON c.courier_id=p.transpack_collectby
    WHERE p.transpack_status = 5;
    
    END IF;
END$$

CREATE  PROCEDURE `defaultpracticelist` ()   BEGIN
	    
 SELECT practice_id, practice_name FROM practicestype_tbl WHERE practice_status =1 UNION SELECT 0,0 ORDER BY practice_name;
 
 SELECT
    d.doctor_id,
    pt.practice_name AS dtype,
    d.doctor_name,
    d.doctor_regno,
    d.doctor_mobile,
    d.doctor_email,
    d.doctor_degrees,
    d.doctor_hospital,
    d.doctor_remarks,
    d.doctor_photo,
    d.doctor_signature,
    d.doctor_datefrom,
    d.doctor_availfrom,
    d.doctor_dateto,
    d.doctor_availto,
    d.doctor_status
FROM
    doctors_tbl d
LEFT JOIN
    practicestype_tbl pt ON pt.practice_id = d.doctor_type 
ORDER BY
    d.doctor_crtdon DESC;
END$$

CREATE  PROCEDURE `defaultProductSettings` ()   BEGIN
	/* Product base classes */
	SELECT p.prodclass_id, p.prodclass_name, p.prodclass_serial, p.prodclass_status, p.prodclass_thumb,(SELECT COUNT(c.prodclass_parent) FROM product_classes c WHERE c.prodclass_parent=p.prodclass_id) AS subcount
    FROM product_classes p WHERE p.prodclass_parent = 0 AND p.prodclass_status = 1
    UNION SELECT 0, 0, 0, 0, 0,0
    ORDER BY prodclass_serial, prodclass_name;
    /* packing types */
    SELECT packing_id, packing_type,packing_sale ,packing_status
    FROM packing_tbl  p
    UNION SELECT 0, 0, 0,0;
    /* measurements */
    SELECT x.measunit_id, x.measunit_name, x.measunit_shortname, x.measunit_status
    FROM measure_units x
    UNION SELECT 0, 0, 0, 0;
END$$

CREATE  PROCEDURE `defaultStockPricing` ()   BEGIN
	SELECT DISTINCT p.product_id, p.product_name, p.product_maincategory, c.prodclass_name, fnGetProductFromPack(x.strstk_item, 0) AS product_name,
    x.strstk_item, (SELECT COUNT(DISTINCT(y.strstk_store)) FROM storestock_pricing y WHERE y.strstk_item = x.strstk_item AND (y.strstk_stock -y.strstk_reserved) > 0) AS storecount,
    (SELECT COUNT(z.strstk_item) FROM storestock_pricing z WHERE z.strstk_item = x.strstk_item AND (z.strstk_stock - z.strstk_reserved) > 0) AS items,
    p.product_sale, p.product_online, p.product_featured, 0 AS priced
    FROM storestock_pricing x
    LEFT JOIN products_tbl p ON p.product_id = x.strstk_product
    LEFT JOIN product_classes c ON c.prodclass_id = p.product_maincategory
    WHERE (x.strstk_stock-x.strstk_reserved )> 0 AND x.strstk_status = 1
    ORDER BY x.strstk_item;
/*
	SELECT DISTINCT p.product_id, p.product_name, p.product_display, p.product_maincategory, c.prodclass_name,
    (SELECT COUNT(DISTINCT(y.stockin_store)) FROM stock_inwards y WHERE y.stockin_item = x.stockin_item AND y.stockin_balance > 0) AS storecount,
    (SELECT COUNT(z.stockin_item) FROM stock_inwards z WHERE z.stockin_item = x.stockin_item AND z.stockin_balance > 0) AS items,
    0 AS onlines, 0 AS priced
	FROM stock_inwards x
    LEFT JOIN product_packing k ON k.prodpack_id = x.stockin_item
    LEFT JOIN products_tbl p ON p.product_id = k.prodpack_product
    LEFT JOIN product_classes c ON c.prodclass_id = p.product_maincategory
    WHERE x.stockin_balance > 0
    ORDER BY p.product_maincategory, x.stockin_item;  */
    SELECT prodclass_id, prodclass_name
    FROM product_classes x WHERE prodclass_parent = 0 AND prodclass_status = 1
    ORDER BY prodclass_serial;
    SELECT store_id, store_name
    FROM stores_tbl WHERE store_status = 1
    ORDER BY store_name;
    /*
	SELECT p.product_id, p.product_name, p.product_display, s.store_id, s.store_name,
    x.stockin_id, x.stockin_item,  fnGetProductFromPack(x.stockin_item, 0) AS product,
    x.stockin_store, x.stockin_batch, x.stockin_expiry, x.stockin_balance, d.invdet_mrp
    FROM stock_inwards x
    LEFT JOIN product_packing k ON k.prodpack_id = x.stockin_item
    LEFT JOIN products_tbl p ON p.product_id = k.prodpack_product
    LEFT JOIN invoice_details d ON d.invdet_invoice = x.stockin_invref
    LEFT JOIN stores_tbl s ON s.store_id = x.stockin_store
    WHERE x.stockin_balance > 0
    ORDER BY x.stockin_item; */
END$$

CREATE  PROCEDURE `defaultStockTransfer` ()   BEGIN
	SELECT x.store_id, x.store_name, x.store_address, x.store_location
    FROM stores_tbl x 
    WHERE x.store_status = 1  
    ORDER BY x.store_type, x.store_name;
    
    SELECT prodclass_id AS id, prodclass_name AS pclname, prodclass_parent AS parent, prodclass_serial AS serial, prodclass_status AS pstatus, prodclass_counter AS cntr, prodclass_seq AS seq
    FROM product_classes 
    WHERE prodclass_seq <> '' 
    ORDER BY seq, cntr,  serial;
END$$

CREATE  PROCEDURE `defaultStockTransferOrders` (IN `storeid` INT)   BEGIN
	SELECT store_id, store_code, store_name 
    FROM stores_tbl WHERE store_status = 1 
    ORDER BY store_name;
       
    IF storeid > 0 THEN
    	SELECT x.stocktrans_id, x.stocktrans_order, x.stocktrans_date, 
        x.stocktrans_strfrom, s.store_name AS storefrom, x.stocktrans_strto, t.store_name AS storeto, 
        x.stocktrans_items, x.stocktrans_packing, x.stocktrans_delivery, x.stocktrans_status, 
        (SELECT COUNT(*) FROM transfer_packets p WHERE p.transpack_refer = x.stocktrans_id) AS packets  
    	FROM stock_transfers x 
        LEFT JOIN stores_tbl s ON s.store_id = x.stocktrans_strfrom 
        LEFT JOIN stores_tbl t ON t.store_id = x.stocktrans_strto 
    	WHERE (x.stocktrans_strfrom = storeid OR x.stocktrans_strto = storeid) AND x.stocktrans_status = 1;
    ELSE
    	SELECT x.stocktrans_id, x.stocktrans_order, x.stocktrans_date, 
        x.stocktrans_strfrom, s.store_name AS storefrom, x.stocktrans_strto, t.store_name AS storeto, 
        x.stocktrans_items, x.stocktrans_packing, x.stocktrans_delivery, x.stocktrans_status, 
        (SELECT COUNT(*) FROM transfer_packets p WHERE p.transpack_refer = x.stocktrans_id) AS packets  
    	FROM stock_transfers x 
        LEFT JOIN stores_tbl s ON s.store_id = x.stocktrans_strfrom 
        LEFT JOIN stores_tbl t ON t.store_id = x.stocktrans_strto 
    	WHERE x.stocktrans_status = 1;
    END IF;
END$$

CREATE  PROCEDURE `defaultStoreIntend` (IN `storeid` INT)   BEGIN
	SELECT x.store_id, x.store_code, x.store_name 
    FROM stores_tbl x 
    WHERE x.store_status = 1;
    
    SELECT CONCAT('ITD/', s.store_code, '/', (SELECT COUNT(*) + 1 FROM intends_tbl WHERE intend_from = storeid)) AS dummy 
    FROM stores_tbl s WHERE s.store_id = storeid;
END$$

CREATE  PROCEDURE `defaultStoreIntend_0` (IN `storeid` INT)   BEGIN
	SELECT x.store_id, x.store_code, x.store_name 
    FROM stores_tbl x 
    WHERE x.store_status = 1;
    
    SELECT p.product_id, p.product_name, p.product_display 
    FROM products_tbl p 
    WHERE p.product_status = 1 ORDER BY p.product_name;
    
    SELECT CONCAT('ITD/', s.store_code, '/', (SELECT COUNT(*) + 1 FROM intends_tbl WHERE intend_from = storeid)) AS dummy 
    FROM stores_tbl s WHERE s.store_id = storeid;
END$$

CREATE  PROCEDURE `deleteFromPurchaseOrder` (IN `itemid` INT, IN `adminid` INT)   BEGIN
	DECLARE poid, delstatus,qty INT DEFAULT 0;
    DECLARE price DECIMAL(7,2) DEFAULT 0;
    
    SELECT x.podetail_order INTO poid 
    FROM purchase_details x WHERE x.podetail_id = itemid;
    
    IF poid > 0 THEN
    	IF fnGetPurchaseOrderStatus(poid) = 1 THEN
        	SELECT k.podetail_price INTO price FROM purchase_details k WHERE k.podetail_id = itemid;
        	SELECT k.podetail_qty INTO qty FROM purchase_details k WHERE k.podetail_id = itemid;

            START TRANSACTION;
            	DELETE FROM purchase_details WHERE podetail_id = itemid;
                UPDATE purchase_orders SET purchord_amount = (purchord_amount - (price*qty)) WHERE purchord_id = poid;
           	COMMIT;
            SET delstatus = 1;
        END IF;
    END IF;
    
    SELECT delstatus;
END$$

CREATE  PROCEDURE `deleteGalleryItem` (IN `galid` INT)   BEGIN
	DELETE FROM product_gallery WHERE prodgal_id = galid;
    ALTER TABLE product_gallery AUTO_INCREMENT = 1;
END$$

CREATE  PROCEDURE `DeleteMenuBYID` (IN `ids` INT)   BEGIN
DELETE FROM `programs_table` WHERE `progr_id`=ids;
END$$

CREATE  PROCEDURE `deleteProductIngredient` (IN `prodid` INT, IN `ingred` INT)   BEGIN
	DELETE FROM product_ingredients WHERE prodingred_product=prodid and prodingred_ingredient=ingred;
END$$

CREATE  PROCEDURE `deleteProductPacking` (IN `ppackid` INT)   BEGIN
	IF (SELECT COUNT(*) FROM vendor_supplies 
        	WHERE vendsup_packing = ppackid) = 0 THEN
    	DELETE FROM product_packing WHERE prodpack_id = ppackid;
        SELECT 1;
    ELSE
    	SELECT 0;
    END IF;
END$$

CREATE  PROCEDURE `deleteProductSettingsItem` (IN `prsid` INT, IN `setype` INT, IN `adminid` INT)   BEGIN
	DECLARE results, success INT DEFAULT 0;
	IF setype =  1 THEN /* prodcut classes */
    DELETE FROM product_classes WHERE prodclass_id = prsid;
    	IF (SELECT COUNT(*) FROM product_classes x 
        WHERE x.prodclass_parent = prsid) = 0 THEN
        	
            ALTER TABLE product_classes AUTO_INCREMENT = 1;
        END IF;
        SELECT COUNT(*) INTO results FROM product_classes WHERE prodclass_id = prsid;
    ELSEIF setype =  2 THEN  /* packings */
    	DELETE FROM packing_tbl WHERE packing_id = prsid;
        SELECT COUNT(*) INTO results FROM packing_tbl WHERE packing_id  = prsid;
    ELSEIF setype =  3 THEN  /* measures units */   
    	DELETE FROM measure_units WHERE measunit_id = prsid;
        SELECT COUNT(*) INTO results FROM measure_units WHERE measunit_id = prsid;
    END IF;
    
    IF results = 0 THEN
    	SET success = 1;
    END IF;
    SELECT success;
END$$

CREATE  PROCEDURE `deleteVendorPacking` (IN `vsupid` INT)   BEGIN
	DECLARE success, pcount, icount INT DEFAULT 0;
    
    SELECT COUNT(*) INTO pcount 
    FROM purchase_details p WHERE p.podetail_item = vsupid;
    SELECT COUNT(*) INTO icount
    FROM invoice_details n WHERE n.invdet_item = vsupid;
    IF pcount = 0 AND icount = 0 THEN
    	DELETE FROM vendor_supplies WHERE vendsup_id = vsupid;
        SET success = 1;
	END IF;
    SELECT success;
END$$

CREATE  PROCEDURE `doctorName` ()   BEGIN
SELECT d.doctor_id, d.doctor_name FROM doctors_tbl d WHERE doctor_status =1 UNION SELECT 0,0 ORDER BY doctor_name;
SELECT `doctor_id`, `doctor_name`,`doctor_crtdby` FROM `doctors_tbl` ORDER BY doctor_id DESC LIMIT 1;
END$$

CREATE  PROCEDURE `editAddOnInvoice` (IN `invid` INT)   BEGIN
    SELECT x.invoice_id, x.invoice_number, x.invoice_vendertype, x.invoice_vendor, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, x.invoice_dated, x.invoice_amount, x.invoice_cgst, x.invoice_sgst, x.invoice_payby, x.invoice_payment, x.invoice_paidon, x.invoice_paystatus, x.invoice_delstatus, x.invoice_deldate, x.invoice_notes, x.invoice_status ,x.invoice_vendorgst,x.invoice_delstore,x.invoice_delgst,(SELECT s.store_name FROM stores_tbl s WHERE s.store_id=x.invoice_delstore)AS store_name
    FROM invoices_tbl x WHERE x.invoice_id = invid;
        SELECT y.invdet_id, y.invdet_invoice, y.invdet_porder, p.purchord_ref, p.purchord_date,
    y.invdet_item,( y.invdet_qty+y.invdet_free)AS total_qty, y.invdet_price,   y.invdet_delivered, y.invdet_delstatus, y.invdet_deldate,y.invdet_status,
    fnGetProductFromPack(y.invdet_item, 0) AS invitem, y.invdet_mrp, y.invdet_hsn, y.invdet_ptr, y.invdet_batch, y.invdet_expiry,
    (SELECT GROUP_CONCAT(invfile_url SEPARATOR ',') FROM invoice_files WHERE invfile_invoice = invid) AS urls,(SELECT COUNT(invfile_url) FROM invoice_files WHERE invfile_invoice = invid) AS urlcnt , s.stockin_inward ,s.stockin_short , s.stockin_id
    FROM invoice_details y
    LEFT JOIN purchase_orders p ON p.purchord_id = y.invdet_porder
    LEFT JOIN stock_inwards s ON s.stockin_invref=y.invdet_id
    WHERE y.invdet_invoice = invid AND y.invdet_delstatus=5;
         SELECT y.invdet_id,(SELECT x.invoice_number FROM invoices_tbl x WHERE x.invoice_id=a.addinv_invoice)AS invoice_no,(SELECT x.invoice_dated FROM invoices_tbl x WHERE x.invoice_id=a.addinv_invoice) AS invoice_date , y.invdet_invoice, y.invdet_porder, p.purchord_ref, p.purchord_date,
    y.invdet_item,y.invdet_qty, y.invdet_price,   y.invdet_delivered, y.invdet_delstatus, y.invdet_deldate,y.invdet_status,
    fnGetProductFromPack(y.invdet_item, 0) AS invitem, y.invdet_mrp, y.invdet_hsn, y.invdet_ptr, y.invdet_batch, y.invdet_expiry,(SELECT x.invoice_notes FROM invoices_tbl x WHERE x.invoice_id=a.addinv_invoice)AS invoice_notes,
    (SELECT GROUP_CONCAT(invfile_url SEPARATOR ',') FROM invoice_files WHERE invfile_invoice = a.addinv_invoice) AS urls,(SELECT COUNT(invfile_url) FROM invoice_files WHERE invfile_invoice = invid) AS urlcnt , s.stockin_inward ,s.stockin_short , s.stockin_id
    FROM invoice_details y
    LEFT JOIN purchase_orders p ON p.purchord_id = y.invdet_porder
    LEFT JOIN stock_inwards s ON s.stockin_invref=y.invdet_id
    LEFT JOIN addoninvoice a ON a.addinv_ref=invid
    WHERE y.invdet_invoice = a.addinv_invoice
    GROUP BY y.invdet_item;
END$$

CREATE  PROCEDURE `editAdvertisementDetails` (IN `advtid` INT)   BEGIN
    SELECT a.advt_id,a.advt_type,a.advt_title,a.advt_owner,a.advt_brand, b.brand_name,a.advt_datefrom,a.advt_dateto,a.advt_products,a.advt_maincategories,a.advt_subcategories,a.advt_catgory,
a.advt_content,a.advt_image,a.advt_linkedurl,a.advt_publish,a.advt_status,a.advt_offer,a.advt_hompagestatus,a.advt_maincatstatus,a.advt_subcatstatus,a.advt_catstatus ,p.prodclass_name as maincat ,pp.prodclass_name as subcat ,q.prodclass_name as catname ,d.product_name FROM advertisements_tbl a 
LEFT JOIN product_classes p ON p.prodclass_id=a.advt_maincategories
LEFT JOIN product_classes pp ON pp.prodclass_id=a.advt_subcategories
LEFT JOIN product_classes q ON q.prodclass_id=a.advt_catgory
LEFT JOIN products_tbl d ON d.product_id=a.advt_products
LEFT JOIN brands_tbl b ON b.brand_id=a.advt_brand

 WHERE a.advt_id=advtid ;
 
END$$

CREATE  PROCEDURE `editBrand` (IN `brandid` INT)   BEGIN
	DECLARE manuf INT DEFAULT 0;
    
	SELECT x.brand_id, x.brand_name, x.brand_logo, GROUP_CONCAT(b.brndmanu_id) AS brand_owner, 
    x.brand_remarks, x.brand_status, x.brand_publish  
    FROM brands_tbl x JOIN brand_manufacturer_tbl b ON b.brnd_id=x.brand_id
    WHERE x.brand_id = brandid AND x.brand_status=1 GROUP BY b.brnd_id;
    
    SELECT brand_owner INTO manuf FROM brands_tbl 
    WHERE brand_id = brandid;
    
    SELECT m.manuf_id, m.manuf_name, 
    IF(m.manuf_id = manuf, 1, 0) AS mstatus
    FROM manufacturers_tbl m 
    ORDER BY m.manuf_name;
    
    SELECT p.product_id, p.product_name 
    FROM products_tbl p 
    WHERE p.product_brand = brandid 
    ORDER BY p.product_name;
END$$

CREATE  PROCEDURE `editCourier` (IN `courierid` INT)   BEGIN
	SELECT x.courier_id, x.courier_type, x.courier_staffid, x.courier_name, x.courier_mobile, x.courier_vehicle, x.courier_vehregn, x.courier_contact, x.courier_address, x.courier_phones, x.courier_whatsapp, x.courier_email, x.courier_url, x.courier_gst, x.courier_tin, x.courier_notes, x.courier_rates, x.courier_areas, x.courier_areas, x.courier_collect, x.courier_status
    FROM couriers_tbl x 
    WHERE x.courier_id = courierid;
    
    SELECT s.staff_id, s.staff_code, s.staff_name 
    FROM staff_tbl s 
    WHERE s.staff_status = 1 /* AND s.staff_role IN(0,1,2) */
    ORDER BY s.staff_name;
    
    SELECT y.store_id, y.store_code, y.store_name 
    FROM stores_tbl y 
    WHERE y.store_status = 1 
    ORDER BY y.store_name;
    
    SELECT d.delarea_id, d.delarea_location, d.delarea_pincode
    FROM delivery_areas d 
    WHERE d.delarea_status = 1 
    ORDER BY d.delarea_country, d.delarea_province, d.delarea_district, d.delarea_location;
END$$

CREATE  PROCEDURE `editDealor` (IN `dealerid` INT)   BEGIN
	SELECT x.dealer_id, x.dealer_name, x.dealer_address, x.dealer_phones, x.dealer_email, x.dealer_website, x.dealer_contact, x.dealer_contactno, x.dealer_contactemail, x.dealer_contactcell, x.dealer_whatsapp, x.dealer_contactat, x.dealer_regn, x.dealer_GST, x.dealer_TIN, x.dealer_remarks, x.dealer_status
    FROM dealers_tbl x 
    WHERE x.dealer_id = dealerid;
    
    /* list of dealer with parent status and subdealer status */
    SELECT q.dealer_id, q.dealer_name, (SELECT COUNT(*) FROM subdealers_tbl w WHERE w.subdealer_dealer = dealerid AND w.subdealer_parent = q.dealer_id AND w.subdealer_status = 1) AS isParent, (SELECT COUNT(*) FROM subdealers_tbl z WHERE z.subdealer_parent = dealerid AND z.subdealer_dealer = q.dealer_id AND z.subdealer_status = 1)AS isSubDealer 
    FROM dealers_tbl q 
    WHERE q.dealer_id <> dealerid AND q.dealer_status = 1 
    UNION SELECT 0, 0, 0, 0
    ORDER BY dealer_name;
    
    /* products handled by dealer */
    SELECT d.dealerprod_product, m.product_name
    FROM dealer_products d 
    LEFT JOIN products_tbl m ON m.product_id = d.dealerprod_product 
    WHERE d.dealerprod_dealer = dealerid AND d.dealerprod_status = 1 
    /*GROUP BY m.product_manufacturer */
    ORDER BY product_name;
END$$

CREATE  PROCEDURE `editDistributor` (IN `distrbid` INT)   BEGIN
	SELECT d.distri_id, d.distri_name, d.distri_address, d.distri_phones, d.distri_email, d.distri_website, d.distri_contact, d.distri_contactno, d.distri_contactemail, d.distri_contactcell, d.distri_whatsapp, d.distri_contactat, d.distri_regn, d.distri_GST, d.distri_TIN, d.distri_remarks, d.distri_status 
    FROM distributors_tbl d 
    WHERE d.distri_id = distrbid;
    
    /* list of manufacturers */
	SELECT x.manuf_id, x.manuf_name, 
    (SELECT COUNT(*) FROM distributor_manufacturers k 
     WHERE k.distrimanu_distributor = distrbid AND k.distrimanu_company = x.manuf_id AND k.distrimanu_status = 1) AS dstatus
    FROM manufacturers_tbl x 
    WHERE x.manuf_status = 1 
    UNION SELECT 0, 0, 0
    ORDER BY manuf_name;
    
    /* list of distributors with parent status and subdistributor status */
    SELECT q.distri_id, q.distri_name, (SELECT COUNT(*) FROM subdistributors_tbl w WHERE w.subdistri_distributor = distrbid AND w.subdistri_parent = q.distri_id AND w.subdistri_status = 1) AS isParent, (SELECT COUNT(*) FROM subdistributors_tbl z WHERE z.subdistri_parent = distrbid AND z.subdistri_distributor = q.distri_id AND z.subdistri_status = 1)AS isSubDistributor
    FROM distributors_tbl q 
    WHERE q.distri_id <> distrbid AND q.distri_status = 1 
    UNION SELECT 0, 0, 0, 0
    ORDER BY distri_name;
    
    /* products list with handling status */
    SELECT p.product_id, p.product_name, p.product_manufacturer,
    (SELECT COUNT(*) FROM distributor_products dp WHERE dp.distriprod_distributor = distrbid AND dp.distriprod_product = p.product_id AND dp.distriprod_status = 1) AS pstatus 
    FROM products_tbl p 
    WHERE p.product_status = 1 AND p.product_manufacturer IN( 
        SELECT m.distrimanu_company FROM distributor_manufacturers m 
        WHERE m.distrimanu_distributor = distrbid AND m.distrimanu_company = p.product_manufacturer AND m.distrimanu_status = 1) 
    ORDER BY p.product_manufacturer, p.product_name;
    
    
END$$

CREATE  PROCEDURE `editdoctor` (IN `docid` INT)   BEGIN
SELECT d.doctor_id, d.doctor_type, pt.practice_name as dtype, d.doctor_name, d.doctor_regno, d.doctor_mobile, d.doctor_email, d.doctor_degrees, d.doctor_hospital, d.doctor_remarks, d.doctor_photo, d.doctor_signature, d.doctor_datefrom, d.doctor_availfrom, d.doctor_dateto, d.doctor_availto, d.doctor_status, d.doctor_updby FROM doctors_tbl d LEFT JOIN practicestype_tbl pt ON pt.practice_id= d.doctor_type WHERE d.doctor_id=docid ;

 SELECT practice_id, practice_name FROM practicestype_tbl WHERE practice_status =1 UNION SELECT 0,0 ORDER BY practice_name;
END$$

CREATE  PROCEDURE `editDrugClassification` (IN `drgclsid` INT)   BEGIN
	DECLARE parid INT DEFAULT 0;
    
	SELECT x.drugclass_id, x.drugclass_name, x.drugclass_parent, x.drugclass_uses, x.drugclass_warnings, x.drugclass_precautions, x.drugclass_procedure, x.drugclass_dosage, x.drugclass_missdose, x.drugclass_overdose, x.drugclass_avoids, x.drugclass_sideffects, x.drugclass_interactions, x.drugclass_details, x.drugclass_status, x.drugclass_counter, x.drugclass_seq, fnGetDrugclassParent(x.drugclass_id) AS superparent
    FROM drug_classifications x 
    WHERE x.drugclass_id = drgclsid; 
    
    SET parid = fnGetDrugclassParent(drgclsid);

    SELECT y.drugclass_id, y.drugclass_name, y.drugclass_parent as classparent, parid 
    FROM drug_classifications y 
    WHERE (y.drugclass_parent = 0 OR y.drugclass_parent = parid)
    	AND y.drugclass_status = 1 
    UNION SELECT 0, 0, 0, 0 
    ORDER BY classparent, drugclass_name; 
    
    SELECT f.faq_id, f.faq_question, f.faq_answer, f.faq_status
    FROM faq_table f 
    WHERE f.faq_type = 2 AND f.faq_item = drgclsid 
    ORDER BY f.faq_question;
END$$

CREATE  PROCEDURE `editGalleryItem` (IN `galid` INT)   BEGIN
	SELECT x.prodgal_id, x.prodgal_url, x.prodgal_placedat, x.prodgal_medium, x.prodgal_heading, x.prodgal_descr, x.prodgal_title, x.prodgal_alt, x.prodgal_serial, x.prodgal_publish, x.prodgal_status, x.prodgal_prodpack, p.prodpack_product, q.product_name, q.product_display, p.prodpack_package, w.packing_type  
    FROM product_gallery x 
    LEFT JOIN product_packing p ON p.prodpack_id = x.prodgal_prodpack 
    LEFT JOIN products_tbl q ON q.product_id = p.prodpack_product
    LEFT JOIN packing_tbl w ON w.packing_id = p.prodpack_package 
    WHERE x.prodgal_id = galid;
END$$

CREATE  PROCEDURE `editGenericMedicine` (IN `medid` INT)   BEGIN
	SELECT genmed_id, genmed_name, genmed_uses, genmed_working, genmed_sideffects, genmed_remarks, genmed_status
    FROM generic_medicines 
    WHERE genmed_id = medid;
    
    SELECT x.faq_id, x.faq_question, x.faq_answer, x.faq_status 
    FROM faq_table x WHERE x.faq_type = 1 AND x.faq_item = medid
    UNION SELECT 0, 0, 0, 0;
    
    SELECT y.advice_id, y.advice_content, y.advice_status 
    FROM advices_table y WHERE y.advice_type = 1 AND y.advice_item = medid 
    UNION SELECT 0, 0, 0;
END$$

CREATE  PROCEDURE `editIngredient` (IN `ingrid` INT)   BEGIN
	SELECT x.ingred_id, x.ingred_name, x.ingred_type, x.ingred_formula, x.ingred_drugbankid, x.ingred_codes, x.ingred_isactive, x.ingred_drugclasses, x.ingred_notes, x.ingred_status 
    FROM ingredients_tbl x 
    WHERE x.ingred_id = ingrid;
    
    SELECT q.ingredtype_id, q.ingredtype_type
    FROM ingredient_types q 
    WHERE q.ingredtype_status = 1;
    
    
END$$

CREATE  PROCEDURE `editInvoice` (IN `invid` INT)   BEGIN
	DECLARE poids VARCHAR(255) DEFAULT 0;
     
	SELECT x.invoice_id, x.invoice_number, x.invoice_vendertype, x.invoice_vendor, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, x.invoice_dated, x.invoice_amount, x.invoice_cgst, x.invoice_sgst, x.invoice_payby, x.invoice_payment, x.invoice_paidon, x.invoice_paystatus, x.invoice_delstatus, x.invoice_deldate, x.invoice_notes, x.invoice_status,x.invoice_vendorgst,x.invoice_delgst,(SELECT s.store_name FROM stores_tbl s WHERE s.store_id=x.invoice_delstore) as storename
    FROM invoices_tbl x WHERE x.invoice_id = invid;
    
   /*SELECT DISTINCT  invdet_porder INTO poids FROM invoice_details WHERE invdet_invoice=invid;
 
    SELECT xy.podetail_id, xy.podetail_item, xy.podetail_qty, xy.podetail_price, 
    y.vendsup_product,y.vendsup_packing,q.prodpack_id,w.packing_id, p.product_name, p.product_display, 
    q.prodpack_package, q.prodpack_quantity, q.prodpack_unit, w.packing_type, 
    (SELECT z.purchord_deliverat FROM purchase_orders z WHERE z.purchord_id = xy.podetail_order) AS delat, 
    q.prodpack_hsn
    FROM purchase_details xy 
    LEFT JOIN vendor_supplies y ON y.vendsup_id = xy.podetail_item 
    LEFT JOIN products_tbl p ON p.product_id = y.vendsup_product 
    LEFT JOIN product_packing q ON q.prodpack_id = y.vendsup_packing 
    LEFT JOIN packing_tbl w ON w.packing_id = q.prodpack_package 
    WHERE xy.podetail_order = poids;*/
    
    SELECT GROUP_CONCAT(DISTINCT  invdet_porder) INTO poids FROM invoice_details WHERE invdet_invoice=invid;
    
    SELECT xy.podetail_id, xy.podetail_item, xy.podetail_qty, xy.podetail_price, y.vendsup_product,y.vendsup_packing,q.prodpack_id,w.packing_id, p.product_name, p.product_display, q.prodpack_package, q.prodpack_quantity, q.prodpack_unit, w.packing_type, (SELECT z.purchord_deliverat FROM purchase_orders z WHERE z.purchord_id = xy.podetail_order) AS delat, q.prodpack_hsn FROM purchase_details xy LEFT JOIN vendor_supplies y ON y.vendsup_id = xy.podetail_item LEFT JOIN products_tbl p ON p.product_id = y.vendsup_product LEFT JOIN product_packing q ON q.prodpack_id = y.vendsup_packing LEFT JOIN packing_tbl w ON w.packing_id = q.prodpack_package WHERE FIND_IN_SET(xy.podetail_order, poids);
   
    SELECT  y.invdet_id, y.invdet_invoice, y.invdet_porder, p.purchord_ref, p.purchord_date, 
    y.invdet_item, y.invdet_qty, y.invdet_price, y.invdet_schdisc,  y.invdet_cstpc, y.invdet_cst, y.invdet_sstpc, y.invdet_sst, 
    y.invdet_delivered, y.invdet_delstatus, y.invdet_deldate, y.invdet_status, 
    fnGetProductFromPack(y.invdet_item, 0) AS invitem, y.invdet_mrp, y.invdet_free, y.invdet_hsn, y.invdet_ptr, y.invdet_taxamt, y.invdet_discpc, y.invdet_discount, y.invdet_batch, y.invdet_expiry,  
    (SELECT GROUP_CONCAT(invfile_url SEPARATOR ',') FROM invoice_files WHERE invfile_invoice = invid) AS urls,(SELECT COUNT(invfile_url) FROM invoice_files WHERE invfile_invoice = invid) AS urlcnt
    FROM invoice_details y 
    LEFT JOIN purchase_orders p ON p.purchord_id = y.invdet_porder
    WHERE y.invdet_invoice = invid;
    
    /*SELECT k.invfile_id, k.invfile_url 
    FROM invoice_files k WHERE k.invfile_invoice = invid;*/
END$$

CREATE  PROCEDURE `editLocation` (IN `locid` INT)   BEGIN
	DECLARE cntr, state VARCHAR(20) DEFAULT '';
    DECLARE dist INT DEFAULT 0;
    
	SELECT x.delarea_id, x.delarea_location, x.delarea_pincode, x.delarea_country, x.delarea_province, x.delarea_district, x.delarea_remarks, x.delarea_status
    FROM delivery_areas x 
    WHERE x.delarea_id = locid;
    
    SELECT y.strdelv_store, k.store_name, d.delarea_location
    FROM store_delivery y 
    LEFT JOIN delivery_areas d ON d.delarea_id = y.strdelv_area
    LEFT JOIN stores_tbl k ON k.store_id = y.strdelv_store 
    WHERE y.strdelv_area = locid AND y.strdelv_status = 1
    UNION SELECT 0, 0, 0;
    
    SELECT k.delarea_country, k.delarea_province, k.delarea_district INTO cntr, state, dist
    FROM delivery_areas k WHERE k.delarea_id = locid;
    
    SELECT Code, Name, IF(Code = cntr, 1, 0) AS isCountry  
    FROM country WHERE country.storeok = 1
    UNION SELECT 0, 0,0;
    
    SELECT DISTINCT(District), IF(District = state, 1, 0) AS isState  
    FROM city WHERE CountryCode = cntr
    UNION SELECT 0, 0
    ORDER BY District;
    
    SELECT ID, Name, IF(ID = dist, 1, 0) AS isDistrict
    FROM city WHERE District = state AND dist > 0 
    UNION SELECT 0, 0, 0;
    
END$$

CREATE  PROCEDURE `editManufacturer` (IN `manfid` INT)   BEGIN
	SELECT manuf_id, manuf_name,manuf_code ,manuf_address, manuf_phones, manuf_email, manuf_website, manuf_contact,manuf_contactno, manuf_contactemail, manuf_contactcell, manuf_whatsapp, manuf_contactat, manuf_regn, manuf_remarks, manuf_status
    FROM manufacturers_tbl 
    WHERE manuf_id = manfid;
    
    SELECT x.brand_id, x.brand_name
    FROM brands_tbl x 
    WHERE x.brand_owner = manfid AND x.brand_status = 1 
    UNION SELECT 0, 0;

	SELECT product_id, product_name 
    FROM products_tbl  
    WHERE product_manufacturer = manfid 
    UNION SELECT 0, 0 
    ORDER BY product_name;
    
    SELECT stockmanu_stockist, stockist_name
    FROM stockist_manufacturers 
    LEFT JOIN stockists_tbl ON stockmanu_stockist = stockist_id 
    WHERE stockmanu_company = manfid and stockmanu_status = 1
    UNION SELECT 0, 0 
    ORDER BY stockist_name;
    
    SELECT distrimanu_distributor, distri_name
    FROM distributor_manufacturers  
    LEFT JOIN distributors_tbl ON distri_id = distrimanu_distributor
    WHERE distrimanu_company = manfid and distrimanu_status=1
    UNION SELECT 0, 0 
    ORDER BY distri_name;
    
END$$

CREATE  PROCEDURE `editOrderDetails` (IN `ordid` INT)   BEGIN
DECLARE suppliers  TEXT;
DROP TEMPORARY TABLE IF EXISTS temp_cartdetails;
CREATE TEMPORARY TABLE temp_cartdetails (
        product_id INT,
        product_name VARCHAR(255),
    product_display VARCHAR(255),
    product_featured INT,
    product_popular INT,
    prodpack_id INT,
    prodpack_quantity INT,
    packing_type VARCHAR(255),
    measunit_name VARCHAR(255),
    measunit_shortname VARCHAR(255),
    strstk_mrp DECIMAL(9, 2),
    strstk_msp DECIMAL(9, 2),
    stockin_batch VARCHAR(50),
    stockin_expiry DATE,
    strstk_stock INT,
    strstk_stack INT,
    product_imageurl VARCHAR(255),
    strstk_discount	DECIMAL(5, 2),
    strstk_id INT,prd_qty INT,strid INT,strname VARCHAR(255),strcode VARCHAR(255),orderstatus INT,deliverystatus INT,ordcrton DATETIME,ordproc DATETIME,ordship DATETIME,orddeliv DATETIME, ordcancl DATETIME, ordref DATETIME, remarks TEXT);
SELECT o.order_id,o.order_customer,o.order_orderid,DATE(o.order_date)as dates,o.order_source,o.order_trackid,o.order_remarks,o.order_delivery,d.delivery_to, o.order_status,CONCAT(d.delivery_house,',' ,d.delivery_street ,',' ,d.delivery_landmark ,',' ,d.delivery_city ,',' ,d.delivery_state, '-', d.delivery_pin ,'. Mob:' ,d.delivery_phone)AS address,p.paymt_transid,p.paymt_paidon,p.paymt_paid,o.orders_shipped,o.order_finalshipby  FROM orders_tbl o

JOIN delivery_address d ON d.delivery_user=o.order_customer and d.delivery_id=o.order_deliverId
JOIN order_details od ON od.ordet_order=o.order_id JOIN payments_tbl p ON p.paymt_orderid=o.order_id AND p.paymt_userid=o.order_customer

WHERE o.order_id=ordid LIMIT 1;

SELECT GROUP_CONCAT(CONCAT(ordet_producpackid, ',', order_batchid, ',', ordet_quantity,',',ordet_status,',',ordet_active,',',ordet_cron,',',COALESCE(order_prdate,''),',',COALESCE(order_shipped,''),',',COALESCE(order_delivered,''),',',COALESCE(order_cancelled,''),',',COALESCE(order_refund,''),',',COALESCE(order_cancelReason,''),',',order_mrp,',',order_msp,',',order_disc) SEPARATOR '##') INTO suppliers
FROM order_details d JOIN orders_tbl o ON d.ordet_order=o.order_id WHERE d.ordet_order=ordid;

/*SELECT GROUP_CONCAT(CONCAT(ordet_producpackid, ',', order_batchid, ',', ordet_quantity,',',ordet_status,',',ordet_active,',',ordet_cron,',',order_prdate,',',order_shipped,',',order_delivered,',',order_cancelled,',',order_refund,',',order_cancelReason) SEPARATOR '##')INTO suppliers FROM(SELECT ordet_producpackid, order_batchid, SUM(ordet_quantity) AS ordet_quantity,ordet_status,ordet_active,ordet_cron,order_prdate,order_shipped,order_delivered,order_cancelled,order_refund,order_cancelReason FROM order_details d JOIN orders_tbl o ON d.ordet_order=o.order_id WHERE d.ordet_order=ordid  GROUP BY ordet_cartid) AS X;*/




IF trim(suppliers) <> '' THEN
 SET @text := TRIM(BOTH '##' FROM suppliers);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
        SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
             SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
             SET @GRAPE := TRIM(BOTH ',' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
           WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, ',', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                   	SET @pack := SUBSTRING_INDEX(@Gstr, ',', -1);
                    ELSEIF @icols = 2 THEN
                    SET @batch := SUBSTRING_INDEX(@Gstr, ',', -1);
                      ELSEIF @icols = 3 THEN
                     SET @qty := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSEIF @icols = 4 THEN
                     SET @orderstatus := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSEIF @icols = 5 THEN
                       SET @deliverystatus := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 6 THEN
                       SET @ordcrton := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 7 THEN
                       SET @ordproc := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 8 THEN
                       SET @ordship := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 9 THEN
                       SET @orddeliv := SUBSTRING_INDEX(@Gstr, ',', -1);
                ELSEIF @icols = 10 THEN
                       SET @ordcancl := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSEIF @icols = 11 THEN
                       SET @ordref := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSEIF @icols = 12 THEN
                       SET @remarks := SUBSTRING_INDEX(@Gstr, ',', -1);
                       
                       ELSEIF @icols = 13 THEN
                       SET @mrp := SUBSTRING_INDEX(@Gstr, ',', -1);
                       
                       ELSEIF @icols = 14 THEN
                       SET @msp := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSE
                       SET @disc := SUBSTRING_INDEX(@Gstr, ',', -1);
                END IF;
        		SET @icols := @icols + 1;
                SET @ordcrton  = NULLIF(@ordcrton, '');
SET @ordproc   = NULLIF(@ordproc, '');
SET @ordship   = NULLIF(@ordship, '');
SET @orddeliv  = NULLIF(@orddeliv, '');
SET @ordcancl  = NULLIF(@ordcancl, '');
SET @ordref    = NULLIF(@ordref, '');
           	END WHILE;
            INSERT INTO temp_cartdetails(product_id,
        product_name,
    product_display,
    product_featured ,
    product_popular,
    prodpack_id,
    prodpack_quantity,
    packing_type,
    measunit_name,
    measunit_shortname,
    strstk_mrp,
    strstk_msp,
    stockin_batch,
    stockin_expiry,
    strstk_stock,
    strstk_stack,
    product_imageurl,
    strstk_discount,
    strstk_id,prd_qty,strid,strname,strcode,orderstatus,deliverystatus,ordcrton,ordproc,ordship,orddeliv,ordcancl,ordref,remarks)
            SELECT p.product_id,fnGetProductFromPack(r.prodpack_id,0)AS product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,t.packing_type,m.measunit_name,
m.measunit_shortname,@mrp,@msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,@disc, e.strstk_id,@qty,e.strstk_store,st.store_name,st.store_code,@orderstatus,@deliverystatus,@ordcrton,@ordproc,@ordship,@orddeliv,@ordcancl,@ordref,@remarks from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer JOIN stores_tbl st ON st.store_id=e.strstk_store
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_item = @pack and e.strstk_id = @batch;
    		SET @i := @i + 1;
            END WHILE;
      SELECT * FROM temp_cartdetails;
END IF;
END$$

CREATE  PROCEDURE `editProduct` (IN `prodid` INT)   BEGIN
	DECLARE genrc, mcat, scat, cat, mdclass, sdclass, dclass INT DEFAULT 0;
    
	SELECT x.product_id, x.product_name, x.product_display, x.product_generic, x.product_maincategory, x.product_subcategory, x.product_category, x.product_manufacturer, x.product_brand, x.product_drugmainclass, x.product_drugsubclass, x.product_drugclass, x.product_classified, x.product_prescrption, x.product_highlights, x.product_information, x.product_working, x.product_howto, x.product_benefits, x.product_specifications, x.product_features, x.product_usage, x.product_precautions, x.product_warnings, x.product_sideffects, x.product_antidot, x.product_interactions, x.product_publish, x.product_sale, x.product_online, x.product_featured, x.product_popular, x.product_taxgroup, x.product_status,x.product_schedule, x.product_approve, x.product_pcontent, p.pharma_name AS pharmaname
    FROM products_tbl x LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_id = x.product_pcontent
 WHERE x.product_id = prodid;
    
 SELECT p.prodingred_product, p.prodingred_ingredient, p.prodingred_quantity, p.prodingred_unit, p.prodingred_status, t.ingred_name, m.measunit_name, m.measunit_shortname 
    FROM product_ingredients p 
    LEFT JOIN ingredients_tbl t on t.ingred_id=p.prodingred_ingredient
    LEFT JOIN measure_units m ON m.measunit_id = p.prodingred_unit 
    WHERE p.prodingred_product = prodid 
    UNION SELECT 0, 0, 0, 0, 0, 0,0,0;
   
    SELECT k.prodpack_id, k.prodpack_product, k.prodpack_package, k.prodpack_quantity, k.prodpack_unit,p.packing_type , k.prodpack_status, b.measunit_name, b.measunit_shortname, k.prodpack_maxstock, k.prodpack_minstock, k.prodpack_roq, k.prodpack_hsn, k.prodpack_taxgroup  
    FROM product_packing k  
    LEFT JOIN packing_tbl p ON p.packing_id = k.prodpack_package 
    LEFT JOIN measure_units b ON b.measunit_id = k.prodpack_unit 
    WHERE k.prodpack_product = prodid 
    UNION SELECT 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0;
    
    SELECT q.product_generic, q.product_maincategory, q.product_subcategory, q.product_category, q.product_drugmainclass, q.product_drugsubclass, q.product_drugclass INTO genrc, mcat, scat, cat, mdclass, sdclass, dclass 
    FROM products_tbl q WHERE q.product_id = prodid;    
    
   
	/* Generic Names */
	SELECT genmed_id, genmed_name, IF(genrc = genmed_id, 1, 0) AS isgeneric 
    FROM generic_medicines 
    WHERE genmed_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY genmed_name;
    
    /* Main categories */
    SELECT prodclass_id, prodclass_name, prodclass_serial,
    IF(prodclass_id = mcat, 1, 0) AS maincat, 
    IF(prodclass_id = scat, 1, 0) AS subcat, 
    IF(prodclass_id = cat, 1, 0) AS cat, prodclass_parent
    FROM product_classes  
    WHERE prodclass_parent IN(0, mcat, scat, cat) AND prodclass_status = 1 
    UNION SELECT 0, 0, 0, 0, 0, 0, 0  
    ORDER BY prodclass_serial;
    
    /* Basic drug classes */
    SELECT drugclass_id, drugclass_name, 
    IF(mdclass = drugclass_id, 1, 0) AS mainclass, 
    IF(sdclass = drugclass_id, 1, 0) AS subclass, 
    IF(dclass = drugclass_id, 1, 0) AS drugclass
    FROM drug_classifications 
    WHERE drugclass_status = 1 AND drugclass_parent in(0, mdclass, sdclass, dclass) 
    UNION SELECT 0, 0, 0, 0, 0  
    ORDER BY drugclass_name;
    
    /* All Brands */
    SELECT brand_id, brand_name, brand_owner
    FROM brands_tbl WHERE brand_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY brand_name;
    
    /* All Manufacturors */
    SELECT manuf_id, manuf_name, 
    (SELECT GROUP_CONCAT(brand_id SEPARATOR ',') FROM brands_tbl WHERE brand_owner = manuf_id) AS brands 
    FROM manufacturers_tbl WHERE manuf_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY manuf_name;
    
    /* Ingredients */
    SELECT ingredtype_id, ingredtype_type 
    FROM ingredient_types WHERE ingredtype_status = 1 
    UNION SELECT 0, 0 
    ORDER BY ingredtype_type;

	/* Packaging types */
    SELECT packing_id, packing_type 
    FROM packing_tbl WHERE packing_status = 1;
    
    /* Measuring units */
    SELECT measunit_id, measunit_name, measunit_shortname 
    FROM measure_units WHERE measunit_status = 1;
    
    /* GST Tax rates */
    SELECT tax_id, tax_group, tax_rate 
    FROM tax_groups WHERE tax_status = 1;
    
    SELECT sch_id, sch_name, sch_code FROM schedule_tbl WHERE sch_status=1;
    /* faq */
    SELECT f.faq_id, f.faq_question, f.faq_answer, f.faq_status 
    FROM faq_table f WHERE f.faq_type = 3 AND f.faq_item = prodid 
    UNION SELECT 0, 0, 0, 0;
    
    
    /* Suppliers handling the product */
    SELECT stockistprod_stockist AS supplier, stockist_name AS supname, 1 as suptype 
    FROM stockist_products  
    LEFT JOIN stockists_tbl ON stockist_id = stockistprod_stockist 
    WHERE stockistprod_product = prodid AND stockistprod_status = 1
    UNION
    SELECT distriprod_distributor AS supplier, distri_name AS supname, 2 as suptype 
    FROM distributor_products 
    LEFT JOIN distributors_tbl ON distri_id = distriprod_distributor 
    WHERE distriprod_product = prodid AND distriprod_status = 1
    UNION
    SELECT dealerprod_dealer AS supplier, dealer_name AS supname, 3 AS suptype
    FROM dealer_products  
    LEFT JOIN dealers_tbl ON dealer_id = dealerprod_dealer
    WHERE dealerprod_product = prodid AND dealerprod_status = 1; 
    
       /*Pharamacological content*/
    SELECT p.pharma_id, p.pharma_name FROM pharmacologicalcontent_tbl p WHERE p.pharma_status=1;
END$$

CREATE  PROCEDURE `editProductEntryData` (IN `prodid` INT)   BEGIN
	DECLARE genrc, mcat, scat, cat, mdclass, sdclass, dclass INT DEFAULT 0;
     SELECT  x.product_manufacturer INTO @brand
    FROM products_entry_tbl x LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_id = x.product_pcontent
 WHERE x.product_id = prodid;
    
	SELECT x.product_id, x.product_name, x.product_display, x.product_generic, x.product_maincategory, x.product_subcategory, x.product_category, x.product_manufacturer, x.product_brand, x.product_drugmainclass, x.product_drugsubclass, x.product_drugclass, x.product_classified, x.product_prescrption, x.product_highlights, x.product_information, x.product_working, x.product_howto, x.product_benefits, x.product_specifications, x.product_features, x.product_usage, x.product_precautions, x.product_warnings, x.product_sideffects, x.product_antidot, x.product_interactions, x.product_publish, x.product_sale, x.product_online, x.product_featured, x.product_popular, x.product_taxgroup, x.product_status,x.product_schedule, x.product_approve, x.product_pcontent, p.pharma_name AS pharmaname
    FROM products_entry_tbl x LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_id = x.product_pcontent
 WHERE x.product_id = prodid;
    
 SELECT p.prodingred_product, p.prodingred_ingredient, p.prodingred_quantity, p.prodingred_unit, p.prodingred_status, t.ingred_name, m.measunit_name, m.measunit_shortname 
    FROM product_ingredients p 
    LEFT JOIN ingredients_tbl t on t.ingred_id=p.prodingred_ingredient
    LEFT JOIN measure_units m ON m.measunit_id = p.prodingred_unit 
    WHERE p.prodingred_product = prodid 
    UNION SELECT 0, 0, 0, 0, 0, 0,0,0;
   
    SELECT k.prodpack_id, k.prodpack_product, k.prodpack_package, k.prodpack_quantity, k.prodpack_unit,p.packing_type , k.prodpack_status, b.measunit_name, b.measunit_shortname, k.prodpack_maxstock, k.prodpack_minstock, k.prodpack_roq, k.prodpack_hsn, b.measunit_id,k.prodpack_taxgroup  
    FROM product_packing k  
    LEFT JOIN packing_tbl p ON p.packing_id = k.prodpack_package 
    LEFT JOIN measure_units b ON b.measunit_id = k.prodpack_unit 
    WHERE k.prodpack_product = prodid 
    UNION SELECT 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0;
    
    SELECT q.product_generic, q.product_maincategory, q.product_subcategory, q.product_category, q.product_drugmainclass, q.product_drugsubclass, q.product_drugclass INTO genrc, mcat, scat, cat, mdclass, sdclass, dclass 
    FROM products_entry_tbl q WHERE q.product_id = prodid;    
    
   
	/* Generic Names 
	SELECT genmed_id, genmed_name, IF(genrc = genmed_id, 1, 0) AS isgeneric 
    FROM generic_medicines 
    WHERE genmed_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY genmed_name;
    */
    /* Main categories */
    SELECT prodclass_id, prodclass_name, prodclass_serial,
    IF(prodclass_id = mcat, 1, 0) AS maincat, 
    IF(prodclass_id = scat, 1, 0) AS subcat, 
    IF(prodclass_id = cat, 1, 0) AS cat, prodclass_parent
    FROM product_classes  
    WHERE prodclass_parent IN(0, mcat, scat, cat) AND prodclass_status = 1 
    UNION SELECT 0, 0, 0, 0, 0, 0, 0  
    ORDER BY prodclass_serial;
    
    /* Basic drug classes */
    SELECT drugclass_id, drugclass_name, 
    IF(mdclass = drugclass_id, 1, 0) AS mainclass, 
    IF(sdclass = drugclass_id, 1, 0) AS subclass, 
    IF(dclass = drugclass_id, 1, 0) AS drugclass
    FROM drug_classifications 
    WHERE drugclass_status = 1 AND drugclass_parent in(0, mdclass, sdclass, dclass) 
    UNION SELECT 0, 0, 0, 0, 0  
    ORDER BY drugclass_name;
    
    /* All Brands */
     SELECT brand_id, brand_name, brand_owner
    FROM brands_tbl WHERE brand_status = 1 and brand_owner=@brand
    UNION SELECT 0, 0, 0 
    ORDER BY brand_name;
    
    
    /* All Manufacturors */
    /*SELECT manuf_id, manuf_name, 
    (SELECT GROUP_CONCAT(brand_id SEPARATOR ',') FROM brands_tbl WHERE brand_owner = manuf_id) AS brands 
    FROM manufacturers_tbl WHERE manuf_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY manuf_name;*/
    
    SELECT 
    m.manuf_id, 
    m.manuf_name, 
    GROUP_CONCAT(b.brand_id SEPARATOR ',') AS brands
FROM manufacturers_tbl m
LEFT JOIN brands_tbl b 
    ON b.brand_owner = m.manuf_id
WHERE m.manuf_status = 1
GROUP BY m.manuf_id, m.manuf_name

UNION ALL

SELECT 0, 'Select Manufacturer', '0'

ORDER BY manuf_name;
    
    /* Ingredients */
    SELECT ingredtype_id, ingredtype_type 
    FROM ingredient_types WHERE ingredtype_status = 1 
    UNION SELECT 0, 0 
    ORDER BY ingredtype_type;

	/* Packaging types */
    SELECT packing_id, packing_type 
    FROM packing_tbl WHERE packing_status = 1;
    
    /* Measuring units */
    SELECT measunit_id, measunit_name, measunit_shortname 
    FROM measure_units WHERE measunit_status = 1;
    
    /* GST Tax rates */
    SELECT tax_id, tax_group, tax_rate 
    FROM tax_groups WHERE tax_status = 1;
    
    SELECT sch_id, sch_name, sch_code FROM schedule_tbl WHERE sch_status=1;
    /* faq */
    SELECT f.faq_id, f.faq_question, f.faq_answer, f.faq_status 
    FROM faq_table f WHERE f.faq_type = 3 AND f.faq_item = prodid 
    UNION SELECT 0, 0, 0, 0;
    
    
    /* Suppliers handling the product */
    SELECT stockistprod_stockist AS supplier, stockist_name AS supname, 1 as suptype 
    FROM stockist_products  
    LEFT JOIN stockists_tbl ON stockist_id = stockistprod_stockist 
    WHERE stockistprod_product = prodid AND stockistprod_status = 1
    UNION
    SELECT distriprod_distributor AS supplier, distri_name AS supname, 2 as suptype 
    FROM distributor_products 
    LEFT JOIN distributors_tbl ON distri_id = distriprod_distributor 
    WHERE distriprod_product = prodid AND distriprod_status = 1
    UNION
    SELECT dealerprod_dealer AS supplier, dealer_name AS supname, 3 AS suptype
    FROM dealer_products  
    LEFT JOIN dealers_tbl ON dealer_id = dealerprod_dealer
    WHERE dealerprod_product = prodid AND dealerprod_status = 1; 
    
      
    #SELECT p.pharma_id, p.pharma_name FROM pharmacologicalcontent_tbl p WHERE p.pharma_status=1;
END$$

CREATE  PROCEDURE `editProductEntryDataNew` (IN `prodid` INT)   BEGIN
	DECLARE genrc, mcat, scat, cat, mdclass, sdclass, dclass INT DEFAULT 0;
     SELECT  x.product_manufacturer INTO @brand
    FROM products_entry_tbl x LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_id = x.product_pcontent
 WHERE x.product_id = prodid;
    
	SELECT x.product_id, x.product_name, x.product_display, x.product_generic, x.product_maincategory, x.product_subcategory, x.product_category, x.product_manufacturer, x.product_brand, x.product_drugmainclass, x.product_drugsubclass, x.product_drugclass, x.product_classified, x.product_prescrption, x.product_highlights, x.product_information, x.product_working, x.product_howto, x.product_benefits, x.product_specifications, x.product_features, x.product_usage, x.product_precautions, x.product_warnings, x.product_sideffects, x.product_antidot, x.product_interactions, x.product_publish, x.product_sale, x.product_online, x.product_featured, x.product_popular, x.product_taxgroup, x.product_status,x.product_schedule, x.product_approve, x.product_pcontent, p.pharma_name AS pharmaname
    FROM products_entry_tbl x LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_id = x.product_pcontent
 WHERE x.product_id = prodid;
    
 SELECT p.prodingred_product, p.prodingred_ingredient, p.prodingred_quantity, p.prodingred_unit, p.prodingred_status, t.ingred_name, m.measunit_name, m.measunit_shortname 
    FROM product_ingredients p 
    LEFT JOIN ingredients_tbl t on t.ingred_id=p.prodingred_ingredient
    LEFT JOIN measure_units m ON m.measunit_id = p.prodingred_unit 
    WHERE p.prodingred_product = prodid 
    UNION SELECT 0, 0, 0, 0, 0, 0,0,0;
   
    SELECT k.prodpack_id, k.prodpack_product, k.prodpack_package, k.prodpack_quantity, k.prodpack_unit,p.packing_type , k.prodpack_status, b.measunit_name, b.measunit_shortname, k.prodpack_maxstock, k.prodpack_minstock, k.prodpack_roq, k.prodpack_hsn, b.measunit_id,k.prodpack_taxgroup  
    FROM product_packing k  
    LEFT JOIN packing_tbl p ON p.packing_id = k.prodpack_package 
    LEFT JOIN measure_units b ON b.measunit_id = k.prodpack_unit 
    WHERE k.prodpack_product = prodid 
    UNION SELECT 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0;
    
    SELECT q.product_generic, q.product_maincategory, q.product_subcategory, q.product_category, q.product_drugmainclass, q.product_drugsubclass, q.product_drugclass INTO genrc, mcat, scat, cat, mdclass, sdclass, dclass 
    FROM products_entry_tbl q WHERE q.product_id = prodid;    
    
   
	/* Generic Names 
	SELECT genmed_id, genmed_name, IF(genrc = genmed_id, 1, 0) AS isgeneric 
    FROM generic_medicines 
    WHERE genmed_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY genmed_name;
    */
    /* Main categories */
    SELECT prodclass_id, prodclass_name, prodclass_serial,
    IF(prodclass_id = mcat, 1, 0) AS maincat, 
    IF(prodclass_id = scat, 1, 0) AS subcat, 
    IF(prodclass_id = cat, 1, 0) AS cat, prodclass_parent
    FROM product_classes  
    WHERE prodclass_parent IN(0, mcat, scat, cat) AND prodclass_status = 1 
    UNION SELECT 0, 0, 0, 0, 0, 0, 0  
    ORDER BY prodclass_serial;
    
    /* Basic drug classes */
    SELECT drugclass_id, drugclass_name, 
    IF(mdclass = drugclass_id, 1, 0) AS mainclass, 
    IF(sdclass = drugclass_id, 1, 0) AS subclass, 
    IF(dclass = drugclass_id, 1, 0) AS drugclass
    FROM drug_classifications 
    WHERE drugclass_status = 1 AND drugclass_parent in(0, mdclass, sdclass, dclass) 
    UNION SELECT 0, 0, 0, 0, 0  
    ORDER BY drugclass_name;
    
    /* All Brands */
     
    SELECT * FROM (SELECT brand_id, brand_name, brndmanu_id as brand_owner
    FROM brands_tbl b JOIN brand_manufacturer_tbl m ON b.brand_id=m.brnd_id  WHERE b.brand_status = 1 and m.brndmanu_id=@brand UNION SELECT 0, 0, 0 ) AS x ORDER BY x.brand_name;
    
    /* All Manufacturors */
   /* SELECT manuf_id, manuf_name, 
    (SELECT GROUP_CONCAT(brand_id SEPARATOR ',') FROM brands_tbl WHERE brand_owner = manuf_id) AS brands 
    FROM manufacturers_tbl WHERE manuf_status = 1 
    UNION SELECT 0, 0, 0 
    ORDER BY manuf_name;
    */
    SELECT 
    m.manuf_id, 
    m.manuf_name, 
    GROUP_CONCAT(b.brnd_id SEPARATOR ',') AS brands
FROM manufacturers_tbl m
LEFT JOIN brand_manufacturer_tbl b 
    ON b.brndmanu_id = m.manuf_id AND b.brndmanu_id=@brand
WHERE m.manuf_status = 1 AND m.manuf_id=@brand
GROUP BY m.manuf_id, m.manuf_name

UNION ALL

SELECT 0, 'Select Manufacturer', '0'

ORDER BY manuf_name;
    
    /* Ingredients */
    SELECT ingredtype_id, ingredtype_type 
    FROM ingredient_types WHERE ingredtype_status = 1 
    UNION SELECT 0, 0 
    ORDER BY ingredtype_type;

	/* Packaging types */
    SELECT packing_id, packing_type 
    FROM packing_tbl WHERE packing_status = 1;
    
    /* Measuring units */
    SELECT measunit_id, measunit_name, measunit_shortname 
    FROM measure_units WHERE measunit_status = 1;
    
    /* GST Tax rates */
    SELECT tax_id, tax_group, tax_rate 
    FROM tax_groups WHERE tax_status = 1;
    
    SELECT sch_id, sch_name, sch_code FROM schedule_tbl WHERE sch_status=1;
    /* faq */
    SELECT f.faq_id, f.faq_question, f.faq_answer, f.faq_status 
    FROM faq_table f WHERE f.faq_type = 3 AND f.faq_item = prodid 
    UNION SELECT 0, 0, 0, 0;
    
    
    /* Suppliers handling the product */
    SELECT stockistprod_stockist AS supplier, stockist_name AS supname, 1 as suptype 
    FROM stockist_products  
    LEFT JOIN stockists_tbl ON stockist_id = stockistprod_stockist 
    WHERE stockistprod_product = prodid AND stockistprod_status = 1
    UNION
    SELECT distriprod_distributor AS supplier, distri_name AS supname, 2 as suptype 
    FROM distributor_products 
    LEFT JOIN distributors_tbl ON distri_id = distriprod_distributor 
    WHERE distriprod_product = prodid AND distriprod_status = 1
    UNION
    SELECT dealerprod_dealer AS supplier, dealer_name AS supname, 3 AS suptype
    FROM dealer_products  
    LEFT JOIN dealers_tbl ON dealer_id = dealerprod_dealer
    WHERE dealerprod_product = prodid AND dealerprod_status = 1; 
    
      
    #SELECT p.pharma_id, p.pharma_name FROM pharmacologicalcontent_tbl p WHERE p.pharma_status=1;
END$$

CREATE  PROCEDURE `editProductStockPricing` (IN `prodid` INT)   BEGIN
	SELECT x.strstk_id, x.strstk_store, x.strstk_item, fnGetProductFromPack(x.strstk_item, 0) AS product,
    s.stockin_batch, s.stockin_expiry, x.strstk_mrp, x.strstk_cost, x.strstk_msp, x.strstk_discount, x.strstk_stock, (x.strstk_stock-x.strstk_reserved) AS stock,
    x.strstk_offer, x.strstk_offerfrom, x.strstk_offerto, x.strstk_dealofday, x.strstk_dealfrom, x.strstk_dealto,
    p.product_name, p.product_display, t.store_name
    FROM storestock_pricing x
    LEFT JOIN stock_inwards s ON s.stockin_id = x.strstk_refer
    LEFT JOIN products_tbl p ON p.product_id = x.strstk_product
    LEFT JOIN stores_tbl t ON t.store_id = x.strstk_store
    WHERE x.strstk_item = prodid AND x.strstk_status = 1 AND x.strstk_stock > 0
    ORDER BY s.stockin_expiry,  x.strstk_store, x.strstk_item ASC;
	/*
   SELECT p.product_id, p.product_name, p.product_display, s.store_id, s.store_name,
    x.stockin_id, x.stockin_item,  fnGetProductFromPack(x.stockin_item, 0) AS product,
    x.stockin_store, x.stockin_batch, x.stockin_expiry, x.stockin_balance, d.invdet_mrp
    FROM stock_inwards x
    LEFT JOIN product_packing k ON k.prodpack_id = x.stockin_item
    LEFT JOIN products_tbl p ON p.product_id = k.prodpack_product
    LEFT JOIN invoice_details d ON d.invdet_invoice = x.stockin_invref
    LEFT JOIN stores_tbl s ON s.store_id = x.stockin_store
    WHERE x.stockin_balance > 0 AND p.product_id = prodid
    ORDER BY x.stockin_item; */
END$$

CREATE  PROCEDURE `editPromotions` (IN `promoid` INT)   BEGIN
	SELECT p.promo_id,p.promo_type,p.promo_title,p.promo_account,p.promo_discountamt,p.promo_discountpc,p.promo_max,p.promo_count,p.promo_datefrom,p.promo_dateto,p.promo_status,p.promo_publish,p.promo_highlights
    FROM promotions_tbl p WHERE p.promo_id=promoid;
	SELECT pp.promotype_id,pp.promotype_name,pp.promotype_status  FROM promotiontypes_tbl pp WHERE pp.promotype_status > 0;
END$$

CREATE  PROCEDURE `editPurchaseOrder` (IN `poid` INT)   BEGIN
	DECLARE ventype, venid INT DEFAULT 0;
	SELECT purchord_id, purchord_ref, purchord_date, purchord_license, purchord_amount,
    purchord_vendtype, purchord_vendor, fnGetVendorName(purchord_vendtype, purchord_vendor) AS vendor,
    purchord_notes, purchord_supply, purchord_progress,
    purchord_preprdby,(select u.user_staffname from users_tbl u WHERE u.user_id = purchord_preprdby) as preparedbyname, purchord_preprdon, purchord_aprvdby,(select u.user_staffname from users_tbl u WHERE u.user_id = purchord_aprvdby) as aprvdbyname,  purchord_aprvdon,
    purchord_issuedby,(select u.user_staffname from users_tbl u WHERE u.user_id = purchord_issuedby) as issuedbyname,   purchord_issuedon, purchord_status, (select s.staff_signature FROM staff_tbl s LEFT JOIN users_tbl u ON u.user_staffid=s.staff_id WHERE u.user_id = purchord_aprvdby) as aprvdbysign,(select s.staff_signature FROM staff_tbl s LEFT JOIN users_tbl u ON u.user_staffid=s.staff_id WHERE u.user_id = purchord_issuedby) as isuedbysign,
    fnGetVendorContacts(purchord_vendtype, purchord_vendor) AS contacts,
    purchord_deliverat, store_name, purchord_deliverby
    FROM purchase_orders
    LEFT JOIN stores_tbl ON store_id = purchord_deliverat
    WHERE purchord_id = poid;
    
    SELECT podetail_id, podetail_order, podetail_item, x.vendsup_product, p.product_name, x.vendsup_packing, q.packing_type, podetail_qty,
    podetail_price, podetail_status,CONCAT(q.packing_type, ' ', z.prodpack_quantity, ' ', m.measunit_shortname) AS boxunit
    FROM purchase_details
    LEFT JOIN vendor_supplies x ON x.vendsup_id = podetail_item
    LEFT JOIN products_tbl p ON p.product_id = x.vendsup_product
    LEFT JOIN product_packing z ON z.prodpack_id = x.vendsup_packing
    LEFT JOIN packing_tbl q ON q.packing_id = z.prodpack_package
    LEFT JOIN measure_units m ON m.measunit_id =z.prodpack_unit
    WHERE podetail_order = poid;
    SELECT purchord_vendtype, purchord_vendor INTO ventype, venid
    FROM purchase_orders WHERE purchord_id = poid;
   /* IF ventype = 1 THEN
    	SELECT x.stockistprod_product AS pid,a.stockist_email, p.product_name, p.product_display
        FROM stockist_products x
        LEFT JOIN products_tbl p ON p.product_id = x.stockistprod_product
        LEFT JOIN stockists_tbl a ON a.stockist_id= x.stockistprod_stockist
        WHERE x.stockistprod_stockist = venid AND x.stockistprod_status = 1
        ORDER BY p.product_display;
    ELSEIF ventype = 2 THEN
    	SELECT d.distriprod_product AS pid, p.product_name, p.product_display
        FROM distributor_products d
        LEFT JOIN products_tbl p ON p.product_id = d.distriprod_product
        WHERE d.distriprod_distributor = venid AND d.distriprod_status = 1
        ORDER BY p.product_display;
    ELSE
    	SELECT q.dealerprod_product AS pid, p.product_name, p.product_display
        FROM dealer_products q
        LEFT JOIN products_tbl p ON p.product_id = q.dealerprod_product
        WHERE q.dealerprod_dealer = venid AND q.dealerprod_status = 1
        ORDER BY p.product_display;
    END IF; */
    IF ventype = 1 THEN   /* Stockists */
    	SELECT x.stockistprod_product AS pid, p.product_name, p.product_display, 'Stockist' AS suppliertype,s.stockist_GST,p.product_taxgroup
        FROM stockist_products x
        INNER JOIN products_tbl p ON p.product_id = x.stockistprod_product INNER JOIN vendor_supplies v on v.vendsup_product=p.product_id INNER JOIN stockists_tbl s ON s.stockist_id=x.stockistprod_stockist
        WHERE x.stockistprod_stockist = venid AND x.stockistprod_status = 1 AND v.vendsup_vendor = venid AND v.vendsup_type = ventype AND v.vendsup_status = 1
        GROUP BY p.product_display;
    ELSEIF ventype = 2 THEN  /* Distributors */
    	SELECT d.distriprod_product AS pid, p.product_name, p.product_display, 'Distributor' AS suppliertype ,dt.distri_GST,p.product_taxgroup
        FROM distributor_products d
        LEFT JOIN products_tbl p ON p.product_id = d.distriprod_product INNER JOIN vendor_supplies v on v.vendsup_product=p.product_id INNER JOIN distributors_tbl dt ON dt.distri_id=d.distriprod_distributor
        WHERE d.distriprod_distributor = venid AND d.distriprod_status = 1 AND v.vendsup_vendor = venid AND v.vendsup_type = ventype AND v.vendsup_status = 1
        GROUP BY p.product_display;
    ELSE
    	SELECT q.dealerprod_product AS pid, p.product_name, p.product_display, 'Dealer' AS suppliertype ,dt.dealer_GST,p.product_taxgroup
        FROM dealer_products q
        LEFT JOIN products_tbl p ON p.product_id = q.dealerprod_product INNER JOIN vendor_supplies v on v.vendsup_product=p.product_id INNER JOIN dealers_tbl dt ON dt.dealer_id=q.dealerprod_dealer
        WHERE q.dealerprod_dealer = venid AND q.dealerprod_status = 1 AND v.vendsup_vendor = venid AND v.vendsup_type = ventype AND v.vendsup_status = 1
        GROUP BY p.product_display;
    END IF;
    /* Stores and type of store for new orders */
    SELECT store_id, store_type, store_name, store_license
    FROM stores_tbl WHERE store_status = 1
    UNION SELECT 0, 0, 0, 0
    ORDER BY store_type, store_name;
END$$

CREATE  PROCEDURE `editScheduleDiscountData` (IN `discid` INT)   BEGIN
 SELECT s.dis_id,s.dis_date,s.dis_store,sb.store_code,sb.store_name, s.dis_mainitem,s.dis_freeitem,s.dis_status,s.dis_note,s.dis_crtdby,s.dis_approvedby FROM schedulediscount_tbl s JOIN stores_tbl sb on sb.store_id=s.dis_store WHERE s.dis_id=discid;
 END$$

CREATE  PROCEDURE `editStockInwardInvoice` (IN `invid` INT)   BEGIN
	SELECT x.invoice_id, x.invoice_number, x.invoice_dated,
    fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) as vendor,
    (SELECT GROUP_CONCAT( DISTINCT(CONCAT(q.purchord_ref, ' Dtd:', DATE_FORMAT(q.purchord_date, '%d-%m-%Y'))) SEPARATOR ',') FROM invoice_details z LEFT JOIN purchase_orders q ON q.purchord_id = z.invdet_porder WHERE z.invdet_invoice = x.invoice_id) AS porders,
    /*(SELECT GROUP_CONCAT( DISTINCT(s.store_name) SEPARATOR ',')
     FROM invoice_details y LEFT JOIN purchase_orders p ON p.purchord_id = y.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE y.invdet_invoice = x.invoice_id) AS delvat*/
       (SELECT GROUP_CONCAT( DISTINCT(s.store_name) SEPARATOR ',')
     FROM invoice_details y LEFT JOIN stores_tbl s ON s.store_id = y.invdet_delivered WHERE y.invdet_invoice = x.invoice_id AND  s.store_id = x.invoice_delstore) AS delvat , x.invoice_status, x.invoice_delstatus, x.invoice_delnotes,
     (SELECT GROUP_CONCAT( f.invfile_url SEPARATOR ',') FROM invoice_files f
      WHERE f.invfile_invoice = invid AND f.invfile_status = 1) AS fileurls
    FROM invoices_tbl x WHERE x.invoice_id = invid;
    SELECT d.invdet_id, d.invdet_item, fnGetProductFromPack(d.invdet_item, 0) AS invitem, (d.invdet_qty+d.invdet_free)AS tquantity, d.invdet_delivered,
    (SELECT COUNT(*) FROM stock_inwards y WHERE y.stockin_invref = d.invdet_id) AS marked,
    s.stockin_qrcode, s.stockin_supdate, s.stockin_batch, s.stockin_expiry, s.stockin_stack, s.stockin_damaged,
    s.stockin_inward, d.invdet_mrp, s.stockin_mrp, d.invdet_batch, d.invdet_expiry,sb.storage_label
    FROM invoice_details d
    LEFT JOIN stock_inwards s ON s.stockin_invref = d.invdet_id
    LEFT JOIN storage_tbl sb on sb.storage_id=s.stockin_stack
    WHERE d.invdet_invoice = invid;
    SELECT h.handling_id, h.handling_charge, e.stokexp_amount
    FROM handling_charges h
    LEFT JOIN stockin_expenses e ON (e.stokexp_chargeon = h.handling_id AND e.stokexp_type = 1 AND e.stokexp_refer = invid AND e.stokexp_status = 1)
    WHERE h.handling_status = 1;
   # stack selection
   SELECT s.storage_id,s.storage_label,s.storage_status  FROM storage_tbl s WHERE s.storage_status=1;
END$$

CREATE  PROCEDURE `editStockist` (IN `stkid` INT)   BEGIN
	SELECT stockist_id, stockist_name, stockist_address, stockist_phones, stockist_email, stockist_website, stockist_contact, stockist_contactno, stockist_contactemail, stockist_contactcell, stockist_whatsapp, stockist_contactat, stockist_regn, stockist_GST, stockist_TIN, stockist_remarks, stockist_status
    FROM stockists_tbl  
    WHERE stockist_id = stkid;
   
    SELECT manuf_id, manuf_name, 
    (SELECT COUNT(*) FROM stockist_manufacturers  
     WHERE stockmanu_stockist = stkid AND stockmanu_company = manuf_id AND stockmanu_status = 1) AS mstatus 
    FROM manufacturers_tbl  
    WHERE manuf_status = 1 
    UNION SELECT 0, 0, 0
    ORDER BY manuf_name;
   
    SELECT product_id, product_name, product_manufacturer,
    /*(SELECT COUNT(*) FROM stockist_manufacturers WHERE stockmanu_stockist = stkid AND stockmanu_company = product_manufacturer)*/ (SELECT COUNT(*) FROM stockist_products sp WHERE sp.stockistprod_stockist = stkid AND sp.stockistprod_product = product_id AND sp.stockistprod_status=1) AS pstatus
FROM products_tbl
 WHERE product_status = 1 AND product_manufacturer IN(
SELECT s.stockmanu_company FROM stockist_manufacturers s
 WHERE s.stockmanu_stockist = stkid AND s.stockmanu_company =product_manufacturer AND  s.stockmanu_status = 1) 
    ORDER BY product_manufacturer, product_name;
END$$

CREATE  PROCEDURE `editStorage` (IN `strgid` INT)   BEGIN
    SELECT s.storage_id, s.storage_label, s.storage_type, s.storage_temperature, s.storage_humidity, s.storage_security, s.storage_status, s.storage_volume, s.storage_size, s.storage_load, s.storage_remarks, s.storage_crtdby FROM storage_tbl s WHERE s.storage_id=strgid;
        SELECT t.strgtype_id, t.strgtype_type FROM storage_types t WHERE t.strgtype_status=1;
            END$$

CREATE  PROCEDURE `editStore` (IN `storeid` INT)   BEGIN
	SELECT store_id, store_type, store_code, store_name, store_address, store_phones, store_mobile, store_email, store_whatsapp, store_contact, store_contactno, store_contactemail, store_contactcell, store_contactwapp, store_contactat, store_regn, store_GST, store_TIN, store_power, store_water, store_location, store_remarks, store_status,store_license,store_pan,store_taxstate
    FROM stores_tbl WHERE store_id = storeid;
    
    SELECT strtme_day, strtme_session, strtme_from, strtme_to 
    FROM store_timings WHERE strtme_store = storeid AND strtme_status = 1 
    UNION SELECT 0, 0, 0, 0 
    ORDER BY strtme_day, strtme_session;
    
    SELECT storetype_id, storetype_name
    FROM store_types WHERE storetype_status = 1;
    
    SELECT k.delarea_id, k.delarea_location, k.delarea_pincode, (SELECT COUNT(*) FROM store_delivery d WHERE d.strdelv_store = storeid AND d.strdelv_area = k.delarea_id and d.strdelv_status = 1) AS isDelarea 
    FROM delivery_areas k 
    WHERE k.delarea_status = 1 
    ORDER BY k.delarea_location;
END$$

CREATE  PROCEDURE `editStoreIntend` (IN `intendid` INT)   BEGIN
	SELECT x.store_id, x.store_code, x.store_name 
    FROM stores_tbl x 
    WHERE x.store_status = 1;
    
	SELECT x.intend_id, x.intend_number, x.intend_date, x.intend_from, s.store_name, x.intend_to, x.intend_items, x.intend_notes, x.intend_delstatus, x.intend_status
    FROM intends_tbl x 
    LEFT JOIN stores_tbl s ON s.store_id = x.intend_from 
    WHERE x.intend_id = intendid;
    
    SELECT y.intdet_id, y.intdet_product, p.product_name, y.intdet_item, fnGetProductFromPack(y.intdet_item, 0) AS orditem, y.intdet_quantity, y.intdet_stock, y.intdet_hsn, y.intdet_status, y.intdet_allotted, y.intdet_delivered 
    FROM intend_details y 
    LEFT JOIN products_tbl p ON p.product_id = y.intdet_product
    WHERE y.intdet_id = intendid;
END$$

CREATE  PROCEDURE `editVendorSupply` (IN `vensupid` INT)   BEGIN

	SELECT x.vendsup_id, x.vendsup_product, p.product_name, p.product_display, x.vendsup_packing, k.prodpack_package, q.packing_type, k.prodpack_quantity, k.prodpack_unit, m.measunit_shortname, x.vendsup_price, x.vendsup_type, x.vendsup_vendor, x.vendsup_minqty, x.vendsup_maxqty, x.vendsup_eoq, x.vendsup_deliver, x.vendsup_notes, x.vendsup_status 
    FROM vendor_supplies x 
    LEFT JOIN products_tbl p ON p.product_id = x.vendsup_product 
    LEFT JOIN product_packing k ON k.prodpack_id = x.vendsup_packing 
    LEFT JOIN packing_tbl q ON q.packing_id = k.prodpack_package 
    LEFT JOIN measure_units m ON m.measunit_id = k.prodpack_unit 
    WHERE x.vendsup_id = vensupid;
/*    
    SELECT z.packing_id, z.packing_type 
    FROM packing_tbl z WHERE z.packing_status = 1;
*/

END$$

CREATE  PROCEDURE `EntryDataTest` (IN `prodid` INT)   BEGIN


	DECLARE genrc, mcat, scat, cat, mdclass, sdclass, dclass INT DEFAULT 0;
 
   SELECT  x.product_manufacturer INTO @brand
    FROM products_entry_tbl x LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_id = x.product_pcontent
 WHERE x.product_id = prodid;
    
   
	SELECT x.product_id, x.product_name, x.product_display, x.product_generic, x.product_maincategory, x.product_subcategory, x.product_category, x.product_manufacturer, x.product_brand, x.product_drugmainclass, x.product_drugsubclass, x.product_drugclass, x.product_classified, x.product_prescrption, x.product_highlights, x.product_information, x.product_working, x.product_howto, x.product_benefits, x.product_specifications, x.product_features, x.product_usage, x.product_precautions, x.product_warnings, x.product_sideffects, x.product_antidot, x.product_interactions, x.product_publish, x.product_sale, x.product_online, x.product_featured, x.product_popular, x.product_taxgroup, x.product_status,x.product_schedule, x.product_approve, x.product_pcontent, p.pharma_name AS pharmaname
    FROM products_entry_tbl x LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_id = x.product_pcontent
 WHERE x.product_id = prodid;
    
 SELECT p.prodingred_product, p.prodingred_ingredient, p.prodingred_quantity, p.prodingred_unit, p.prodingred_status, t.ingred_name, m.measunit_name, m.measunit_shortname 
    FROM product_ingredients p 
    LEFT JOIN ingredients_tbl t on t.ingred_id=p.prodingred_ingredient
    LEFT JOIN measure_units m ON m.measunit_id = p.prodingred_unit 
    WHERE p.prodingred_product = prodid ;
   
   SELECT k.prodpack_id, k.prodpack_product, k.prodpack_package, k.prodpack_quantity, k.prodpack_unit,p.packing_type , k.prodpack_status, b.measunit_name, b.measunit_shortname, k.prodpack_maxstock, k.prodpack_minstock, k.prodpack_roq, k.prodpack_hsn, b.measunit_id,k.prodpack_taxgroup  
    FROM product_packing k  
    LEFT JOIN packing_tbl p ON p.packing_id = k.prodpack_package 
    LEFT JOIN measure_units b ON b.measunit_id = k.prodpack_unit 
    WHERE k.prodpack_product = prodid;
    
    SELECT q.product_generic, q.product_maincategory, q.product_subcategory, q.product_category, q.product_drugmainclass, q.product_drugsubclass, q.product_drugclass INTO genrc, mcat, scat, cat, mdclass, sdclass, dclass 
    FROM products_entry_tbl q WHERE q.product_id = prodid;    
    
   
	
    /* Main categories */
    SELECT prodclass_id, prodclass_name, prodclass_serial,
    IF(prodclass_id = mcat, 1, 0) AS maincat, 
    IF(prodclass_id = scat, 1, 0) AS subcat, 
    IF(prodclass_id = cat, 1, 0) AS cat, prodclass_parent
    FROM product_classes  
    WHERE prodclass_parent IN(0, mcat, scat, cat) AND prodclass_status = 1 
    
    ORDER BY prodclass_serial;
    
    /* Basic drug classes */
    SELECT drugclass_id, drugclass_name, 
    IF(mdclass = drugclass_id, 1, 0) AS mainclass, 
    IF(sdclass = drugclass_id, 1, 0) AS subclass, 
    IF(dclass = drugclass_id, 1, 0) AS drugclass
    FROM drug_classifications 
    WHERE drugclass_status = 1 AND drugclass_parent in(0, mdclass, sdclass, dclass) 
   
    ORDER BY drugclass_name;
    
    /* All Brands  */
     
    SELECT * FROM (SELECT brand_id, brand_name, brndmanu_id as brand_owner
    FROM brands_tbl b JOIN brand_manufacturer_tbl m ON b.brand_id=m.brnd_id  WHERE b.brand_status = 1 and m.brndmanu_id=@brand UNION SELECT 0, 0, 0 ) AS x ORDER BY x.brand_name;

    /* All Manufacturors  */
  
    SELECT 
    m.manuf_id, 
    m.manuf_name, 
    GROUP_CONCAT(b.brnd_id SEPARATOR ',') AS brands
FROM manufacturers_tbl m
LEFT JOIN brand_manufacturer_tbl b 
    ON b.brndmanu_id = m.manuf_id AND b.brndmanu_id=@brand
WHERE m.manuf_status = 1 and m.manuf_id=@brand
GROUP BY m.manuf_id, m.manuf_name

UNION ALL

SELECT 0, 'Select Manufacturer', '0'

ORDER BY manuf_name;

   
    /* Ingredients */
  
    SELECT ingredtype_id, ingredtype_type 
    FROM ingredient_types WHERE ingredtype_status = 1 
   
    ORDER BY ingredtype_type;

	/* Packaging types */
    SELECT packing_id, packing_type 
    FROM packing_tbl WHERE packing_status = 1;
    
    /* Measuring units */
    SELECT measunit_id, measunit_name, measunit_shortname 
    FROM measure_units WHERE measunit_status = 1;
    
    /* GST Tax rates */
    SELECT tax_id, tax_group, tax_rate 
    FROM tax_groups WHERE tax_status = 1;
    
    SELECT sch_id, sch_name, sch_code FROM schedule_tbl WHERE sch_status=1;
    /* faq 
   
    SELECT f.faq_id, f.faq_question, f.faq_answer, f.faq_status 
    FROM faq_table f WHERE f.faq_type = 3 AND f.faq_item = prodid ;
   */
   SELECT null;
    /* Suppliers handling the product */
    SELECT DISTINCT supplier, supname, suptype
FROM (
    SELECT stockistprod_stockist AS supplier, stockist_name AS supname, 1 AS suptype
    FROM stockist_products 
    LEFT JOIN stockists_tbl 
        ON stockist_id = stockistprod_stockist 
    WHERE stockistprod_product = prodid 
      AND stockistprod_status = 1

    UNION ALL

    SELECT distriprod_distributor, distri_name, 2
    FROM distributor_products 
    LEFT JOIN distributors_tbl 
        ON distri_id = distriprod_distributor 
    WHERE distriprod_product = prodid 
      AND distriprod_status = 1

    UNION ALL

    SELECT dealerprod_dealer, dealer_name, 3
    FROM dealer_products  
    LEFT JOIN dealers_tbl 
        ON dealer_id = dealerprod_dealer
    WHERE dealerprod_product = prodid 
      AND dealerprod_status = 1
) AS t;
   /*SELECT stockistprod_stockist AS supplier, stockist_name AS supname, 1 as suptype 
    FROM stockist_products  
    LEFT JOIN stockists_tbl ON stockist_id = stockistprod_stockist 
    WHERE stockistprod_product = prodid AND stockistprod_status = 1
    UNION
    SELECT distriprod_distributor AS supplier, distri_name AS supname, 2 as suptype 
    FROM distributor_products 
    LEFT JOIN distributors_tbl ON distri_id = distriprod_distributor 
    WHERE distriprod_product = prodid AND distriprod_status = 1
    UNION
    SELECT dealerprod_dealer AS supplier, dealer_name AS supname, 3 AS suptype
    FROM dealer_products  
    LEFT JOIN dealers_tbl ON dealer_id = dealerprod_dealer
    WHERE dealerprod_product = prodid AND dealerprod_status = 1;*/ 
    
    
    
   
     
END$$

CREATE  PROCEDURE `exportproducts` ()   begin
/*INSERT INTO `dummyproducts_tbl`( `product_name`, `product_display`,`product_manufacturer`,`product_brand`,`product_generic`,`product_highlights`,`product_information`,`product_benefits`,`product_usage`,`product_precautions`,`product_specifications`,`product_features`,`product_warnings`,`product_antidot`,`product_howto`,`product_working`,`product_maincategory`,`product_crtdby`) SELECT a.PRODUCT_NAME,a.KNOWN_AS,d.manuf_id,b.brand_id,gm.genmed_id,a.HIGLIGHTS,a.INFORMATION,a.BENEFITS,a.USAGES,a.PRECAUTIONS,a.SPECIFICATIONS,a.FEATURES,a.WARNINGS,a.ANTIDOTE,a.HOW_TO_USE,a.WORKING,c.prodclass_id,16 from productnew_tbl a INNER JOIN dummymanufacturers_tbl d on d.manuf_name=a.MANUFACTURER INNER JOIN dummybrands_tbl b on b.brand_name=a.BRAND INNER JOIN dummygeneric_medicines gm ON gm.genmed_name=a.GENERIC_NAME INNER JOIN dummyproductclass c on c.prodclass_name=a.CATEGORY ;*/
INSERT INTO `dummyproducts_tbl`( `product_name`, `product_display`,`product_manufacturer`,`product_brand`,`product_generic`,`product_highlights`,`product_information`,`product_benefits`,`product_usage`,`product_precautions`,`product_specifications`,`product_features`,`product_warnings`,`product_antidot`,`product_howto`,`product_working`,`product_maincategory`,`product_drugmainclass`,`product_drugsubclass`,`product_drugclass`,`product_crtdby`) SELECT a.PRODUCT_NAME,a.KNOWN_AS,d.manuf_id,b.brand_id,gm.genmed_id,a.HIGLIGHTS,a.INFORMATION,a.BENEFITS,a.USAGES,a.PRECAUTIONS,a.SPECIFICATIONS,a.FEATURES,a.WARNINGS,a.ANTIDOTE,a.HOW_TO_USE,a.WORKING,c.prodclass_id,(CASE WHEN v.drugclass_parent=0 THEN v.drugclass_id ELSE v.drugclass_parent END) as parent,(CASE WHEN v.drugclass_parent=0 THEN 0 ELSE v.drugclass_id END) as subid,(CASE WHEN v.drugclass_parent=0 THEN 0 ELSE (SELECT c.drugclass_id from dummydrugclassification c WHERE c.drugclass_parent=subid limit 1) END) as drugid,16 from productnew_tbl a LEFT JOIN dummymanufacturers_tbl d on d.manuf_name=a.MANUFACTURER LEFT JOIN dummybrands_tbl b on b.brand_name=a.BRAND LEFT JOIN dummygeneric_medicines gm ON gm.genmed_name=a.GENERIC_NAME LEFT JOIN dummyproductclass c on c.prodclass_name=a.CATEGORY INNER JOIN dummydrugclassification v on a.CLASSIFIED=v.drugclass_name;

END$$

CREATE  PROCEDURE `export_dummyproduct_ingredients` ()   BEGIN
INSERT INTO `dummyproduct_ingredients`( `prodingred_product`,`prodingred_ingredient`,`prodingred_crtdby`)
 SELECT a.product_id,d.ingred_id,16 FROM dummyproducts_tbl a INNER JOIN productnew_tbl p ON a.product_name=p.PRODUCT_NAME INNER JOIN dummyingredients d ON p.INGREDIENTS=d.ingred_name;
END$$

CREATE  PROCEDURE `fecthcartforguest` (IN `phone` VARCHAR(200))   BEGIN
DECLARE counts,cartcount int;
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_phone=phone and c.customer_type=0;
IF(counts=1)THEN
SELECT count(*) into cartcount FROM user_cart u  join customers_tbl c on c.customer_id=u.user_id  WHERE c.customer_phone = phone and c.customer_type=0;
IF (cartcount>0)THEN
SELECT 1 as cart;
SELECT u.product_id,u.prodpack_id,u.batch_id , u.quantity FROM user_cart u  join customers_tbl c on c.customer_id=u.user_id  WHERE c.customer_phone = phone and c.customer_type=0;
ELSE
SELECT 0 as cart;
END IF;
ELSE
SELECT 0 as cart;
END IF;
END$$

CREATE  PROCEDURE `fetchCustomerOrderDetailsbyOrderID` (IN `orderid` INT)   BEGIN

SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid ,o.order_status,o.order_razorpayid,o.order_subtotal,p.paymt_paid,p.paymt_paidon,p.paymt_transid  FROM orders_tbl o JOIN payments_tbl p ON p.paymt_orderid=o.order_id
WHERE o.order_id=orderid AND p.paymt_status=1;


END$$

CREATE  PROCEDURE `fetchCustomerOrderDetailsbyOrderIDForRefund` (IN `orderid` INT)   BEGIN

SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid ,o.order_status,o.order_razorpayid,o.order_subtotal,p.paymt_paid,p.paymt_paidon,p.paymt_transid  FROM orders_tbl o JOIN payments_tbl p ON p.paymt_orderid=o.order_id
WHERE o.order_status=2 AND o.order_id=orderid AND p.paymt_status=1;


END$$

CREATE  PROCEDURE `fetchDataForGDN` (IN `packids` TEXT)   BEGIN
    DECLARE front, TempValue, alltracks, packets TEXT DEFAULT NULL;
   	DECLARE frontlen INT DEFAULT NULL;
    	SET packets = packids;
    	iterator:
			LOOP
				IF LENGTH(TRIM(packids)) = 0 OR packids IS NULL THEN
					LEAVE iterator;
				END IF;
				SET front = SUBSTRING_INDEX(packids,',',1);
				SET frontlen = LENGTH(front);
				SET TempValue = TRIM(front);
                SELECT tt.transpack_gdn, t.transferpack_item,fnGetProductFromPack(t.transferpack_item, 0) AS item ,s.stockin_batch,s.stockin_mrp, DATE_FORMAT(tt.transpack_collecton, '%d-%m-%Y') AS gdn_date,  t.transferpack_orditem,t.transferpack_qty ,DATE_FORMAT(s.stockin_expiry, '%d-%m-%Y') AS expiry,i.invdet_hsn,i.invdet_mrp,i.invdet_ptr,i.invdet_expiry,i.invdet_schdisc,i.invdet_cstpc,i.invdet_sstpc,st.store_id,st.store_code,st.store_name FROM transferpack_items t
                JOIN transfer_packets tt ON tt.transpack_id=t.transferpack_packet
                JOIN storestock_pricing p on p.strstk_id=t.transferpack_orditem
                JOIN stock_inwards s ON s.stockin_id=p.strstk_refer
                JOIN invoice_details i ON i.invdet_id=s.stockin_invref
                JOIN stores_tbl st ON st.store_id=tt.transpack_from
                WHERE tt.transpack_id=TempValue;
                SET packids = INSERT(packids, 1, frontlen + 1, '');
                #SET alltracks = CONCAT(alltracks, ',', trackid);
			END LOOP;
END$$

CREATE  PROCEDURE `fetchDataForGrnReceipts` (IN `packid` INT, IN `flag` INT)   BEGIN
IF flag =1 THEN
SELECT t.transpack_id,t.transpack_grn,t.transpack_packid,DATE_FORMAT(t.transpack_receiveon, '%d-%m-%Y') AS grn_date, s.store_name,s.store_code,fnGetProductFromPack(ti.transferpack_item, 0) AS item,p.prodpack_quantity,m.measunit_shortname,i.invdet_mrp,i.invdet_ptr,ss.stockin_batch,DATE_FORMAT(ss.stockin_expiry, '%d-%m-%Y') AS expiry,ti.transferpack_qty
 FROM transfer_packets t
JOIN stores_tbl s ON s.store_id=t.transpack_to
JOIN transferpack_items ti ON ti.transferpack_packet=t.transpack_id
JOIN product_packing p ON p.prodpack_id=ti.transferpack_item
JOIN measure_units m ON m.measunit_id=p.prodpack_unit
JOIN storestock_pricing sp ON sp.strstk_id=ti.transferpack_orditem
JOIN stock_inwards ss ON ss.stockin_id=sp.strstk_refer
JOIN invoice_details i ON i.invdet_id=ss.stockin_invref
WHERE t.transpack_id=packid AND t.transpack_status=10;
END IF;
END$$

CREATE  PROCEDURE `fetchDeliveryAddress` (IN `user_id` INT)   BEGIN
SELECT 
a.delivery_id,a.delivery_to,a.delivery_pin,a.delivery_phone,a.delivery_email,a.delivery_house,a.delivery_street,a.delivery_landmark,a.delivery_city,a.delivery_state,a.delivery_type,a.delivery_status FROM delivery_address a WHERE a.delivery_user=user_id and a.delivery_active=1;
END$$

CREATE  PROCEDURE `Fetchdoc` ()   BEGIN
SELECT `doctor_id`, `doctor_name`,`doctor_crtdby` FROM `doctors_tbl` ORDER BY doctor_id DESC LIMIT 1;
END$$

CREATE  PROCEDURE `FetchnamebyCheckid` (IN `checkid` INT)   BEGIN
SELECT u.user_staffname, u.user_checkid FROM users_tbl u WHERE u.user_checkid=checkid;
/*SELECT u.user_staffname, u.user_checkid FROM users_tbl u WHERE u.user_staffid=checkid;*/
END$$

CREATE  PROCEDURE `fetchproductlistForPacking` (IN `proid` INT)   BEGIN

SELECT p.product_display ,m.measunit_name,m.measunit_shortname, pk.packing_type ,pp.prodpack_quantity ,st.stockin_expiry,sp.strstk_msp,sp.strstk_discount,sp.strstk_mrp from products_tbl p
 JOIN product_packing pp ON pp.prodpack_product=p.product_id
 JOIN packing_tbl pk ON pk.packing_id=pp.prodpack_package
 JOIN measure_units m ON m.measunit_id=pp.prodpack_unit
 JOIN stock_inwards st ON st.stockin_item=pp.prodpack_id
 JOIN storestock_pricing sp on sp.strstk_refer=st.stockin_id
WHERE p.product_id=proid
AND sp.strstk_product = p.product_id
      AND sp.strstk_item = st.stockin_item
      AND sp.strstk_product = proid
      AND p.product_status = 1
      AND m.measunit_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
      AND pp.prodpack_status = 1
      AND pk.packing_status = 1
      AND st.stockin_expiry >= CURRENT_DATE() ;

END$$

CREATE  PROCEDURE `fetchPurchaseReturnBillData` (IN `billno` INT)   BEGIN
SELECT p.returnbill_id,p.returnbill_number,p.returnbill_dated,p.returnbill_vendertype,p.returnbill_vendor,p.returnbill_status,fnGetVendorName(p.returnbill_vendertype,p.returnbill_vendor) AS vendor,
(SELECT GROUP_CONCAT(f.crd_returnurl SEPARATOR ',') FROM purchasereturnfiles_tbl f
      WHERE f.crd_returnbillid = billno) AS fileurls  FROM purchasereturn_tbl p WHERE p.returnbill_id=billno;

SELECT pp.return_id,pp.return_item,fnGetProductFromPack(pp.return_item,0) AS invitem,pp.returnitem_batch,pp.returnitem_qty,pp.returnitem_expiry,pp.return_remark,pp.returnitem_subtotal,pp.return_store,s.store_code,s.store_name,i.invoice_id,i.invoice_number
,ii.invdet_schdisc,(ii.invdet_cstpc+ii.invdet_sstpc)AS totaltax,ii.invdet_discpc,ii.invdet_mrp,ii.invdet_ptr, i.invoice_dated   FROM purchasereturn_details pp
LEFT JOIN stores_tbl s ON s.store_id=pp.return_store
LEFT JOIN invoices_tbl i ON i.invoice_id=pp.return_invoice 
LEFT JOIN invoice_details ii ON ii.invdet_invoice=i.invoice_id and ii.invdet_item = pp.return_item 
WHERE pp.return_billnum=billno group by pp.returnitem_batch;

END$$

CREATE  PROCEDURE `fileUploadForCreditNote` (IN `retrn_ids` INT, IN `crdurl` VARCHAR(100), IN `adminid` INT)   BEGIN
	INSERT INTO  purchasereturnfiles_tbl( crd_returnbillid,crd_returnurl,crd_crtby )
    VALUES( retrn_ids, crdurl, adminid);
END$$

CREATE  PROCEDURE `fnCreateTransferOrderf` (IN `storefrom` INT, IN `storeto` INT, IN `strorder` TEXT, IN `adminid` INT)   BEGIN
	DECLARE finish, ordcount, ordqty, insid, ordid, ordtotal, orditem INT DEFAULT 0;
    DECLARE batch VARCHAR(50) DEFAULT '';
    DECLARE expiry DATE DEFAULT NULL;
    DECLARE strtrans, stritems, test TEXT DEFAULT '';
    DECLARE stkid, stkitem, store, stock, minstk INT DEFAULT 0;
      
	SET @text := TRIM(BOTH '##' FROM strorder);
  	SET @strLen := 0;
  	SET @i := 1;
  	WHILE @strLen < LENGTH(@text) DO
    	SET @str := SUBSTRING_INDEX(@text, '##', @i);
    	SET @strLen := LENGTH(@str);
    	SET @i := @i + 1;
    	SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
     	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 	SET @strGLen := 0;
     	SET @Gi := 1;
     
     	SET @icols := 1;
     	WHILE @strGLen < LENGTH(@GRAPE) DO
        	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        	SET @strGLen := LENGTH(@Gstr);
        	SET @Gi := @Gi + 1;
        	IF @icols = 1 THEN
        		SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                SET stritems = IF(stritems = '', @item, CONCAT_WS(',', stritems, @item));
        	ELSE
            	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
        	END IF;
        	SET @icols := @icols + 1;
     	END WHILE;
        
        BLOCK2:BEGIN
        	DECLARE stcurs CURSOR FOR SELECT sp.strstk_id, si.stockin_batch, si.stockin_expiry, sp.strstk_item, sp.strstk_store, (sp.strstk_stock - sp.strstk_reserved) AS stock, sm.storestock_min, @qty 
        	FROM storestock_pricing sp 
        	LEFT JOIN stock_inwards si ON si.stockin_id = sp.strstk_refer
            LEFT JOIN storestock_master sm ON sm.storestock_item = sp.strstk_item AND sm.storestock_store = sp.strstk_store
        	WHERE sp.strstk_item = @item AND sp.strstk_store = storefrom AND (sp.strstk_stock - sp.strstk_reserved)>0
        	ORDER BY si.stockin_expiry ASC, stock;
    		DECLARE CONTINUE HANDLER FOR NOT FOUND SET finish = 1;
	        SET ordtotal = 0;
            SET ordqty = 0;
            SET ordcount = 0;
            OPEN stcurs;
        	runorder:LOOP
        		FETCH stcurs INTO stkid, batch, expiry, stkitem, store, stock, minstk, ordcount;
        		IF finish = 1 THEN
            		SET finish = 0;
                    LEAVE runorder;
            	END IF;
            	SELECT CONCAT(stkid,'|', batch,'|', expiry,'|', stkitem,'|',  store,'|',  stock,'|',  minstk,'|',  @qty) INTO test;
                SELECT test;
              /*  
                
                IF stock > minstk AND ordcount > 0 THEN
                	IF strtrans = '' THEN
                		SET ordqty = IF(stock >= ordcount, ordcount, stock);
                		SET strtrans = CONCAT(stkid, '|', @item, '|', ordqty, '|', batch, '|', expiry);
                     	SET ordtotal = ordqty;
                    ELSE
                    	IF ordtotal < ordcount THEN
                        	SET ordqty = IF(stock >= (ordcount - ordqty), (ordcount - ordqty), stock);
                    		SET strtrans = CONCAT(strtrans, '##', stkid, '|', @item, '|', ordqty, '|', batch, '|', expiry);
                    		SET ordtotal = ordtotal + (ordcount - ordqty);
                        ELSE
                        	SET ordtotal = ordcount;
                        END IF;
                    END IF;
                END IF;
                */
            END LOOP runorder;
            SET finish = 0;
	        CLOSE stcurs;
        END BLOCK2;
    END WHILE;  
    
   /* IF TRIM(strtrans) <> '' THEN
        CALL addStockTransferOrderNew(fnGenerateTransferOrderNumber(storefrom), CURRENT_DATE(), storefrom, storeto, strtrans, adminid, '');
        SET insid = LAST_INSERT_ID();
        SELECT x.stockorder_refer INTO ordid FROM stocktransfer_details x WHERE x.stockorder_id = insid;
  	END IF;*/
    SELECT ordid;

END$$

CREATE  PROCEDURE `fnCreateTransferOrderTest` (IN `storefrom` INT, IN `storeto` INT, IN `strorder` TEXT, IN `adminid` INT)   BEGIN 
DECLARE finish, ordcount, ordqty, insid, ordid, ordtotal, orditem INT DEFAULT 0;
    DECLARE batch VARCHAR(50) DEFAULT '';
    DECLARE expiry DATE DEFAULT NULL;
    DECLARE strtrans, stritems, test TEXT DEFAULT '';
    DECLARE stkid, stkitem, store, stock, minstk INT DEFAULT 0;
      
	SET @text := TRIM(BOTH '##' FROM strorder);
  	SET @strLen := 0;
  	SET @i := 1;
  	WHILE @strLen < LENGTH(@text) DO
    	SET @str := SUBSTRING_INDEX(@text, '##', @i);
    	SET @strLen := LENGTH(@str);
    	SET @i := @i + 1;
    	SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
     	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 	SET @strGLen := 0;
     	SET @Gi := 1;
     
     	SET @icols := 1;
     	WHILE @strGLen < LENGTH(@GRAPE) DO
        	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        	SET @strGLen := LENGTH(@Gstr);
        	SET @Gi := @Gi + 1;
        	IF @icols = 1 THEN
        		SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                SET stritems = IF(stritems = '', @item, CONCAT_WS(',', stritems, @item));
        	ELSE
            	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
        	END IF;
        	SET @icols := @icols + 1;
     	END WHILE;

        -- Cursor block
        BLOCK2:BEGIN
        	DECLARE stcurs CURSOR FOR SELECT sp.strstk_id, si.stockin_batch, si.stockin_expiry, sp.strstk_item, sp.strstk_store, (sp.strstk_stock - sp.strstk_reserved) AS stock, sm.storestock_min, @qty 
        	FROM storestock_pricing sp 
        	LEFT JOIN stock_inwards si ON si.stockin_id = sp.strstk_refer
            LEFT JOIN storestock_master sm ON sm.storestock_item = sp.strstk_item AND sm.storestock_store = sp.strstk_store
        	WHERE sp.strstk_item = @item AND sp.strstk_store = storefrom AND (sp.strstk_stock - sp.strstk_reserved)>0
        	ORDER BY si.stockin_expiry ASC, stock;
    		DECLARE CONTINUE HANDLER FOR NOT FOUND SET finish = 1;
	        SET ordtotal = 0;
            SET ordqty = 0;
            SET ordcount = 0;
            OPEN stcurs;
        	runorder:LOOP
        		FETCH stcurs INTO stkid, batch, expiry, stkitem, store, stock, minstk, ordcount;
        		IF finish = 1 THEN
            		SET finish = 0;
                    LEAVE runorder;
            	END IF;
                IF stock > minstk AND ordcount > 0 THEN

                    SET @remaining = ordcount - ordtotal;

                    IF @remaining > 0 THEN

                        SET ordqty = IF(stock >= @remaining, @remaining, stock);

                        -- Prevent zero quantity
                        IF ordqty > 0 THEN

                            IF strtrans = '' THEN
                                SET strtrans = CONCAT(
                                    stkid, '|', @item, '|', ordqty, '|', batch, '|', IFNULL(expiry, '')
                                );
                            ELSE
                                SET strtrans = CONCAT(
                                    strtrans, '##',
                                    stkid, '|', @item, '|', ordqty, '|', batch, '|', IFNULL(expiry, '')
                                );
                            END IF;

                            SET ordtotal = ordtotal + ordqty;

                        END IF;

                    END IF;

                END IF;

            END LOOP;

            CLOSE stcurs;

        END BLOCK2;

    END WHILE;

    -- Final output
    IF TRIM(strtrans) <> '' THEN
        SELECT strtrans;
    END IF;

END$$

CREATE  PROCEDURE `gdnReportByStores` (IN `storeid` INT, IN `fdate` DATE, IN `todate` DATE)   BEGIN
SELECT s.store_id,s.store_code,s.store_name FROM stores_tbl s  WHERE s.store_status=1;
IF storeid>1 THEN
 IF fdate IS NOT NULL AND todate IS NOT NULL THEN

SELECT sd.transpack_id,sd.transpack_gdn,DATE_FORMAT(sd.transpack_collecton,'%d-%m-%Y')AS gdndate,fnGetProductFromPack(s.transferpack_item, 0) AS item ,sw.stockin_batch,sw.stockin_expiry,s.transferpack_qty,st.store_code,st.store_name ,sw.stockin_store,sw.stockin_item,sw.stockin_invref ,iv.invdet_hsn,iv.invdet_cstpc,iv.invdet_sstpc,iv.invdet_mrp,iv.invdet_ptr,iv.invdet_batch ,iv.invdet_expiry,u.user_staffname,m.manuf_code,m.manuf_name FROM transfer_packets sd
LEFT JOIN transferpack_items s ON s.transferpack_packet=sd.transpack_id
LEFT JOIN storestock_pricing sp ON sp.strstk_id=s.transferpack_orditem
LEFT JOIN stock_inwards sw ON sw.stockin_id=sp.strstk_refer
LEFT JOIN invoice_details iv ON iv.invdet_id=sw.stockin_invref
LEFT JOIN users_tbl u ON u.user_id=sd.transpack_crtdby
LEFT JOIN products_tbl p ON p.product_id=sp.strstk_product
LEFT JOIN manufacturers_tbl m ON m.manuf_id=p.product_manufacturer
LEFT JOIN stores_tbl st ON st.store_id=sd.transpack_from WHERE sd.transpack_from=storeid and Date(sd.transpack_collecton) BETWEEN fdate AND todate;
END IF;
END IF ;
END$$

CREATE  PROCEDURE `generateInt` (IN `jsorder` JSON, IN `adminid` INT)   BEGIN
	DECLARE i,checkid INT DEFAULT 0;
    DECLARE bDone, oid, ointend, oitem, osource, otarget, olicense, oquantity INT DEFAULT 0;
    DECLARE fromstore, tostore, cntr, numrecs, neworder, orderqty, retorder INT DEFAULT 0;
    DECLARE strOrder, stroids TEXT DEFAULT '';
    DECLARE curs CURSOR FOR SELECT id, intend, item, sourced, target, license, quantity
    	FROM temp_intendorders ORDER BY sourced, target;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET bDone = 1;
    DROP TEMPORARY TABLE IF EXISTS temp_intendorders;
    SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid ;
	CREATE TEMPORARY TABLE IF NOT EXISTS temp_intendorders AS (SELECT * FROM tempintendorder);
    WHILE i < json_length(jsorder) DO
  /* SELECT JSON_VALUE(jsorder, CONCAT('$[', i, '].id')) c1;*/
		INSERT INTO `temp_intendorders`(id, intend, item, method, sourced, sourcetype, target, license, quantity, adminid)
   			SELECT JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[', i, '].id'))), JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].intend'))), JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].item'))), 1, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].source'))), 1, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].target'))), st.store_license, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].quantity'))), checkid
    			FROM stores_tbl st WHERE st.store_id = JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[', i, '].target')));
       SET i = i + 1;
    END WHILE;
	#SELECT * FROM temp_intendorders;
    OPEN curs;
    	SELECT FOUND_ROWS() INTO numrecs;
    	takeorder:LOOP
        	FETCH curs INTO oid, ointend, oitem, osource, otarget, olicense, oquantity;
        	IF bDone = 1 THEN
            	LEAVE takeorder;
            END IF;
            IF (osource <> fromstore) OR (otarget <> tostore) THEN
            	IF strOrder <> '' THEN
                	SET retorder = fnCreateTransferOrder(fromstore, tostore, strOrder, adminid);
                    #SELECT retorder;
                    IF retorder > 0 THEN
                    	CALL updateTempIntendOrders(retorder, stroids);
                    END IF;
                    SET stroids = '';
                    SET strOrder = '';
                END IF;
                SET strOrder =  CONCAT(oitem, '|', oquantity);
                SET stroids = oid;
                SET fromstore = osource;
                SET tostore = otarget;
            ELSE
            	SET strOrder = CONCAT(strOrder, '##', oitem, '|', oquantity);
            	SET stroids = CONCAT(stroids, ',', oid);
            END IF;
            SET cntr = cntr + 1;
           	IF cntr = numrecs THEN
           		#update intends table
                IF strOrder <> '' THEN
                    SET retorder = fnCreateTransferOrder(fromstore, tostore, strOrder, adminid);
                    #SELECT retorder;
                    IF retorder > 0 THEN
                    	CALL updateTempIntendOrders(retorder, stroids);
                    END IF;
                    SET stroids = '';
                    SET strOrder = '';
                END IF;
            END IF;
        END LOOP takeorder;
    CLOSE curs;
    #SELECT * FROM temp_intendorders;
    UPDBLOCK:BEGIN
    	DECLARE done, cid, cintd, citem, cref, cqty INT DEFAULT 0;
    	DECLARE intends CURSOR FOR SELECT id, intend, item, ordrefer, quantity FROM temp_intendorders;
    	DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;
        #SELECT * FROM temp_intendorders;
   		OPEN intends;
        	getRecords: LOOP
            	FETCH intends INTO cid, cintd, citem, cref, cqty;
                #SELECT cid, cintd, citem, cref, cqty;
            	IF done = 1 THEN
            		LEAVE getRecords;
            	END IF;
                IF cref > 0 AND cqty > 0 THEN
                	UPDATE intend_allocation_items
                	SET intdallocit_ordrqty = cqty, intdallocit_ordrefer = cref, intdallocit_ordstatus = 1, intdallocit_status = 5
                	WHERE intdallocit_id = cid;
                    IF( SELECT COUNT(*) FROM intend_allocation_items x
                       WHERE x.intdallocit_intend = cintd AND x.intdallocit_status =1 ) = 0 THEN
                    		UPDATE intend_allocations SET intdalloc_status = 5, intdalloc_updby =checkid
                    		WHERE intdalloc_intend = cintd;
                   	END IF;
            	END IF;
            END LOOP getRecords;
        CLOSE intends;
        #SET done=0;
    END UPDBLOCK;
   
	DROP TEMPORARY TABLE IF EXISTS temp_intendorders;
 	
END$$

CREATE  PROCEDURE `generateIntendPurchaseOrders` (IN `jsorder` JSON, IN `adminid` INT)   BEGIN 
DECLARE i , checkid INT DEFAULT 0;
    DECLARE oprice FLOAT DEFAULT 0;
    DECLARE bDone, oid, ointend, oitem, osource, osourcetype, otarget, olicense, oquantity ,oordmode INT DEFAULT 0;
    DECLARE supplier, tostore,suppliertype, ordermode, cntr, numrecs, neworder, orderqty, retorder  INT DEFAULT 0;
    DECLARE strOrder, stroids TEXT DEFAULT '';
    DECLARE curs CURSOR FOR SELECT id, intend, item, sourced,sourcetype, target, license, quantity,price,ordmode
    	FROM temp_intendorderss ORDER BY sourced,sourcetype, target,ordmode;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET bDone = 1;
     SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid ;
    DROP TEMPORARY TABLE IF EXISTS temp_intendorderss;
    
	CREATE TEMPORARY TABLE IF NOT EXISTS temp_intendorderss AS (SELECT * FROM tempintendorder);
      WHILE i < json_length(jsorder) DO 
		INSERT INTO temp_intendorderss(id, intend, item, method, sourced, sourcetype, target, license, quantity,price,ordmode, adminid)
   			SELECT JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].id'))),
            JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].intend'))),
            JSON_UNQUOTE( JSON_EXTRACT(jsorder, CONCAT('$[',i,'].item'))),
            2,
            JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].source'))),
            JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].sourcetype'))),
            JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].target'))),
            13, 
            JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].quantity'))),
            JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].price'))),
            JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].ordmode'))),
            checkid 
    			FROM stores_tbl st WHERE st.store_id =JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[', i, '].target')));
		SET i = i + 1;
    END WHILE;
    #SELECT * FROM temp_intendorderss;
  
     OPEN curs;
   	SELECT FOUND_ROWS() INTO numrecs;
    	takeorder:LOOP
        	FETCH curs INTO oid, ointend, oitem, osource,osourcetype, otarget, olicense, oquantity,oprice,oordmode;
        	IF bDone = 1 THEN
            	LEAVE takeorder;
            END IF;
            IF (osource <> supplier) OR (otarget <> tostore) OR(osourcetype<>suppliertype) OR (oordmode<>ordermode) THEN
            #SELECT strOrder;
            	IF (strOrder != "") THEN        
                #SELECT supplier,suppliertype, tostore,oordmode;
                  SET retorder = fnCreatePurchaseOrder(supplier,suppliertype, tostore, strOrder,ordermode, adminid); 
                  #SELECT retorder;
                  IF retorder > 0 THEN
                  		CALL updateTempIntendPurchaseOrders(retorder, stroids);
                    END IF;                         
                  SET stroids = '';
                  SET strOrder = '';
                END IF;
                	SET strOrder =  CONCAT(oitem, '|', oquantity,'|',oprice);
                	SET stroids = oid;
                	SET supplier = osource;
                    SET suppliertype=osourcetype;
                	SET tostore = otarget;     
                    SET ordermode=oordmode;
                ELSE
            		SET strOrder = CONCAT(strorder, '##', oitem, '|', oquantity, '|',oprice); 
            		SET stroids = CONCAT(stroids, ',', oid);
            END IF;  
                  
             SET cntr = cntr + 1;
              IF cntr = numrecs THEN
                IF strOrder <> '' THEN
                #SELECT supplier,suppliertype, tostore,oordmode;
                  SET retorder =fnCreatePurchaseOrder(supplier,suppliertype, tostore, strOrder,ordermode, adminid);
            /*SELECT retorder,stroids;
            SELECT * FROM temp_intendorderss;*/
                   IF retorder > 0 THEN
                    	CALL updateTempIntendPurchaseOrders(retorder, stroids);  
                    END IF;
                    SET stroids = '';
                    SET strOrder = '';
                END IF;
            END IF;
        END LOOP takeorder;
    CLOSE curs;
    
    UPDBLOCK:BEGIN   
    	DECLARE done, cid, cintd, citem, cref, cqty , odmode INT DEFAULT 0;
    	DECLARE intends CURSOR FOR SELECT id, intend, item, ordrefer, quantity ,ordmode FROM temp_intendorderss;
    	DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;
   		OPEN intends;
        	getRecords: LOOP
            	FETCH intends INTO cid, cintd, citem, cref, cqty ,odmode;
	#SELECT cid, cintd, citem, cref, cqty ,odmode;
            	IF done = 1 THEN
            		LEAVE getRecords;
            	END IF;
                IF cref > 0 AND cqty > 0 THEN
                	UPDATE intend_allocation_items 
                	SET intdallocit_ordrqty = cqty, intdallocit_ordrefer = cref,intdallocit_ordrmode=odmode, intdallocit_ordstatus = 1, intdallocit_status = 5
                	WHERE intdallocit_id = cid;
                    IF( SELECT COUNT(*) FROM intend_allocation_items x 
                       WHERE x.intdallocit_intend = cintd AND x.intdallocit_status =1 ) = 0 THEN
                    		UPDATE intend_allocations SET intdalloc_status = 5, intdalloc_updby = checkid 
                    		WHERE intdalloc_intend = cintd;
                   	END IF;
            	END IF;
            END LOOP getRecords;
        CLOSE intends;
    END UPDBLOCK;

     DROP TEMPORARY TABLE IF EXISTS temp_intendorderss;
    
  END$$

CREATE  PROCEDURE `generateIntendTransferOrder` (IN `jsorder` JSON, IN `adminid` INT)   BEGIN
	DECLARE i,checkid INT DEFAULT 0;
    DECLARE olicense VARCHAR(50);
    DECLARE bDone, oid, ointend, oitem, osource, otarget,  oquantity INT DEFAULT 0;
    DECLARE fromstore, tostore, cntr, numrecs, neworder, orderqty, retorder INT DEFAULT 0;
    DECLARE strOrder, stroids TEXT DEFAULT '';
    DECLARE curs CURSOR FOR SELECT id, intend, item, sourced, target, license, quantity
    	FROM temp_intendorders ORDER BY sourced, target;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET bDone = 1;
    DROP TEMPORARY TABLE IF EXISTS temp_intendorders;
    SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid ;
	CREATE TEMPORARY TABLE IF NOT EXISTS temp_intendorders AS (SELECT * FROM tempintendorder);
    WHILE i < json_length(jsorder) DO
  /* SELECT JSON_VALUE(jsorder, CONCAT('$[', i, '].id')) c1;*/
		INSERT INTO `temp_intendorders`(id, intend, item, method, sourced, sourcetype, target, license, quantity, adminid)
   			SELECT JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[', i, '].id'))), JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].intend'))), JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].item'))), 1, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].source'))), 1, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].target'))), st.store_license, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].quantity'))), checkid
    			FROM stores_tbl st WHERE st.store_id = JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[', i, '].target')));
       SET i = i + 1;
    END WHILE;
	#SELECT * FROM temp_intendorders;
    OPEN curs;
    	SELECT FOUND_ROWS() INTO numrecs;
    	takeorder:LOOP
        	FETCH curs INTO oid, ointend, oitem, osource, otarget, olicense, oquantity;
        	IF bDone = 1 THEN
            	LEAVE takeorder;
            END IF;
            IF (osource <> fromstore) OR (otarget <> tostore) THEN
            	IF strOrder <> '' THEN
                	SET retorder = fnCreateTransferOrder(fromstore, tostore, strOrder, adminid);
                    #SELECT retorder;
                    IF retorder > 0 THEN
                    	CALL updateTempIntendOrders(retorder, stroids);
                    END IF;
                    SET stroids = '';
                    SET strOrder = '';
                END IF;
                SET strOrder =  CONCAT(oitem, '|', oquantity);
                SET stroids = oid;
                SET fromstore = osource;
                SET tostore = otarget;
            ELSE
            	SET strOrder = CONCAT(strOrder, '##', oitem, '|', oquantity);
            	SET stroids = CONCAT(stroids, ',', oid);
            END IF;
            SET cntr = cntr + 1;
           	IF cntr = numrecs THEN
           		#update intends table
                IF strOrder <> '' THEN
                    SET retorder = fnCreateTransferOrder(fromstore, tostore, strOrder, adminid);
                    #SELECT retorder;
                    IF retorder > 0 THEN
                    	CALL updateTempIntendOrders(retorder, stroids);
                    END IF;
                    SET stroids = '';
                    SET strOrder = '';
                END IF;
            END IF;
        END LOOP takeorder;
    CLOSE curs;
    #SELECT * FROM temp_intendorders;
    UPDBLOCK:BEGIN
    	DECLARE done, cid, cintd, citem, cref, cqty INT DEFAULT 0;
    	DECLARE intends CURSOR FOR SELECT id, intend, item, ordrefer, quantity FROM temp_intendorders;
    	DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;
        #SELECT * FROM temp_intendorders;
   		OPEN intends;
        	getRecords: LOOP
            	FETCH intends INTO cid, cintd, citem, cref, cqty;
                #SELECT cid, cintd, citem, cref, cqty;
            	IF done = 1 THEN
            		LEAVE getRecords;
            	END IF;
                IF cref > 0 AND cqty > 0 THEN
                	UPDATE intend_allocation_items
                	SET intdallocit_ordrqty = cqty, intdallocit_ordrefer = cref, intdallocit_ordstatus = 1, intdallocit_status = 5
                	WHERE intdallocit_id = cid;
                    IF( SELECT COUNT(*) FROM intend_allocation_items x
                       WHERE x.intdallocit_intend = cintd AND x.intdallocit_status =1 ) = 0 THEN
                    		UPDATE intend_allocations SET intdalloc_status = 5, intdalloc_updby =checkid
                    		WHERE intdalloc_intend = cintd;
                   	END IF;
            	END IF;
            END LOOP getRecords;
        CLOSE intends;
        #SET done=0;
    END UPDBLOCK;
	DROP TEMPORARY TABLE IF EXISTS temp_intendorders;
 	
END$$

CREATE  PROCEDURE `generateRandomIntendno` (IN `storeid` INT)   BEGIN

        SELECT CONCAT('IN_', COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ' '), '_', COALESCE(COUNT(*)+1, 1))	AS nextorder 
        FROM  intends_tbl x 
        WHERE x.intend_from = storeid; 
END$$

CREATE  PROCEDURE `gentest` (IN `jsorder` JSON)   BEGIN
	DECLARE i,checkid INT DEFAULT 0;
    DECLARE bDone, oid, ointend, oitem, osource, otarget, olicense, oquantity INT DEFAULT 0;
    DECLARE fromstore, tostore, cntr, numrecs, neworder, orderqty, retorder INT DEFAULT 0;
    DECLARE strOrder, stroids TEXT DEFAULT '';
    DECLARE curs CURSOR FOR SELECT id, intend, item, sourced, target, license, quantity
    	FROM temp_intendorders ORDER BY sourced, target;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET bDone = 1;
    DROP TEMPORARY TABLE IF EXISTS temp_intendorders;
	CREATE TEMPORARY TABLE IF NOT EXISTS temp_intendorders AS (SELECT * FROM tempintendorder);
    WHILE i < json_length(jsorder) DO
  /* SELECT JSON_VALUE(jsorder, CONCAT('$[', i, '].id')) c1;*/
		INSERT INTO `temp_intendorders`(id, intend, item, method, sourced, sourcetype, target, license, price,quantity, adminid)
   			SELECT JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[', i, '].id'))), JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].intend'))), JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].item'))), 1, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].source'))), 1, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].target'))), st.store_license,0, JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[',i,'].quantity'))), 1
    			FROM stores_tbl st WHERE st.store_id = JSON_UNQUOTE(JSON_EXTRACT(jsorder, CONCAT('$[', i, '].target')));
       SET i = i + 1;
    END WHILE;
SELECT * FROM temp_intendorders;
    
END$$

CREATE  PROCEDURE `getAllBatchItemsPerItem` (IN `itemid` INT)   BEGIN
SELECT s.strstk_id, s.strstk_item ,fnGetProductFromPack(s.strstk_item,0)as items,s.strstk_store,st.store_code,st.store_name,(s.strstk_stock-s.strstk_reserved) AS stock ,s.strstk_msp,s.strstk_discount ,si.stockin_batch,si.stockin_expiry FROM storestock_pricing s
JOIN stores_tbl st ON st.store_id=s.strstk_store
JOIN stock_inwards si ON si.stockin_id=s.strstk_refer
WHERE s.strstk_item=itemid;
END$$

CREATE  PROCEDURE `getAllHelpDeskData` ()   BEGIN

SELECT t.help_id,t.help_icon,t.help_title,t.help_caption FROM tbl_help_desk t ;

SELECT reason_id ,reason_help_id,reason_issue,reason_help  FROM tbl_help_desk_reason WHERE reason_status=1;


END$$

CREATE  PROCEDURE `getAllHomedeliveryData` ()   BEGIN


SELECT h.bill_id,h.bill_no,h.store_id,s.store_code,s.store_name,h.customer_name,h.customer_mob,h.items,h.amount,h.payment_status,h.status FROM homedelivery_tbl h JOIN stores_tbl s on s.store_id=h.store_id ;
END$$

CREATE  PROCEDURE `getAllItemStockForBilling` (IN `storeid` INT, IN `itemid` VARCHAR(200), IN `freeItem` INT)   BEGIN
IF TRIM(itemid) <> '' THEN
    SELECT  CASE WHEN freeItem = x.strstk_item THEN 0 ELSE x.strstk_mrp END AS strstk_mrp,
    CASE WHEN freeItem = x.strstk_item THEN 0 ELSE x.strstk_msp END AS strstk_msp,
    CASE WHEN freeItem = x.strstk_item THEN 0 ELSE x.strstk_discount END AS strstk_discount, x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
         x.strstk_cost, x.strstk_last,
        (x.strstk_stock - x.strstk_reserved) AS available, x.strstk_stack, x.strstk_dealofday AS deal,
        x.strstk_offer AS offer, p.prodpack_hsn, fnGetProductFromPack(x.strstk_item, 1) AS product,
        p.prodpack_roq, MAX(i.invdet_cstpc) AS invdet_cstpc, MAX(i.invdet_sstpc) AS invdet_sstpc,
        m.manuf_code, pt.sch_name AS psch, MAX(a.bill_stock) AS bill_stock, x.strstk_stock,
        p.prodpack_quantity, p.prodpack_unit, p.prodpack_package, t.packing_type, sb.storage_label, bb.billit_item
    FROM storestock_pricing x
    LEFT JOIN stock_inwards si ON si.stockin_id = x.strstk_refer
    LEFT JOIN product_packing p ON p.prodpack_id = x.strstk_item
    LEFT JOIN invoice_details i ON i.invdet_id = si.stockin_invref
    LEFT JOIN products_tbl pr ON pr.product_id = x.strstk_product
    LEFT JOIN manufacturers_tbl m ON pr.product_manufacturer = m.manuf_id
    LEFT JOIN schedule_tbl pt ON pr.product_schedule = pt.sch_id
    LEFT JOIN billstock_tbl a ON a.billstock_item = si.stockin_item
    LEFT JOIN packing_tbl t ON t.packing_id = p.prodpack_package
    LEFT JOIN storage_tbl sb ON sb.storage_id = si.stockin_stack
    LEFT JOIN bill_items bb ON bb.billit_item = x.strstk_item
    WHERE x.strstk_store = storeid
        AND FIND_IN_SET(x.strstk_item, itemid) > 0
    GROUP BY x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
         x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
         available, x.strstk_stack, deal, offer, p.prodpack_hsn, product, p.prodpack_roq,
         m.manuf_code, pt.sch_name, x.strstk_stock, p.prodpack_quantity, p.prodpack_unit,
         p.prodpack_package, t.packing_type, sb.storage_label;
END IF;
END$$

CREATE  PROCEDURE `getAllOnlinedeliveryData` ()   BEGIN
SELECT o.order_id,o.order_orderid,d.delivery_to,d.delivery_phone,CONCAT(d.delivery_house,',',d.delivery_street,',',d.delivery_landmark,',',d.delivery_city,',',d.delivery_state,'-',d.delivery_pin) AS address,o.orders_delivered,o.order_delivery,(SELECT COUNT(*) FROM order_details od WHERE od.ordet_order=o.order_id) as item_count, p.paymt_paid  FROM orders_tbl o  JOIN customers_tbl c on c.customer_id=o.order_customer JOIN delivery_address d on d.delivery_id=o.order_deliverId  JOIN payments_tbl p on p.paymt_orderid=o.order_id WHERE o.order_delivery=4;

END$$

CREATE  PROCEDURE `getAllPByproductparentclass` (IN `prodparentcls` INT)   begin
select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodclass_name,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.stock,x.strstk_stack, x.product_imageurl,x.strstk_discount, x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,c.prodclass_name,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,(e.strstk_stock-e.strstk_reserved) as stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,p.product_prescrption from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and e.strstk_refer = s.stockin_id join product_classes c on c.prodclass_id = p.product_maincategory
                                                                  
WHERE p.product_maincategory = prodparentcls and p.product_status = 1 and p.product_online = 1 and p.product_publish=1  and  s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id;


END$$

CREATE  PROCEDURE `getAllPendingDataPerDates` (IN `id` INT)   BEGIN
SELECT p.assigned_date,COUNT(p.assigned_for) AS total_count,COUNT(IF(p.product_entry_status = 1, 1, NULL)) AS completed_count
FROM products_entry_tbl p WHERE p.assigned_for =id GROUP BY p.assigned_date
HAVING total_count > completed_count ORDER BY p.assigned_date ASC;

END$$

CREATE  PROCEDURE `getAllPharmasistNames` ()   BEGIN
SELECT u.user_id,u.user_staffid,u.user_staffname,u.user_programid FROM users_tbl u  WHERE u.user_programid=64 AND u.user_status=1 ;

END$$

CREATE  PROCEDURE `getAllProductsByAllBrandId` (IN `brandid` VARCHAR(200), IN `offsets` INT, IN `limits` INT)   begin

SET @sql = CONCAT('select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl, x.strstk_id, x.strstk_discount from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl, e.strstk_id,e.strstk_discount from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_brand IN (',brandid,') and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id LIMIT ',offsets,',',limits,'');

/*if type=0 THEN

SET @sql = CONCAT('SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,p.product_prescrption,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_subcategory = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
 AND p.product_brand IN (',brandid,')
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
AND pp.prodclass_id=',parentId,'
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by e.strstk_offerfrom ASC, s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id');
ELSE
SET @sql = CONCAT('SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,x.product_prescrption,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_prescrption,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_category = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
 AND p.product_brand IN (',brandid,')
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
AND pp.prodclass_id=',parentId,'
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by e.strstk_offerfrom ASC, s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id');
END IF;
*/
 PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;

/*select x.product_id, x.product_name, x.price_id, x.product_category, x.price_expiry from (SELECT ( @row_number := @row_number + 1) AS virtual_id, p.product_id,p.product_name, b.price_id,p.product_category,b.price_expiry FROM products_tbl p INNER JOIN product_pricing r on r.prodprice_product=p.product_id INNER JOIN prices_tbl b on b.price_pricingid=r.prodprice_id WHERE p.product_sale=1 and p.product_online=1 and p.product_status=1 and b.price_stock>0 and b.price_expiry >= CURDATE() AND p.product_name LIKE concat(product,'%') order by b.price_expiry ASC, b.price_priority ASC ) AS x GROUP BY x.product_id; */

END$$

CREATE  PROCEDURE `getAllProductsByAllBrandIdwithOffers` (IN `brandid` VARCHAR(200), IN `parentId` INT)   begin
DECLARE disc INT DEFAULT 0;
SELECT h.menu_discount INTO disc  from home_menu_offer h WHERE h.menu_category=parentId;

/*select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_brand IN (brandid) and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and s.stockin_expiry >= CURRENT_DATE() order by s.stockin_expiry asc) as x group by x.product_id;*/

SET @sql = CONCAT('select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.product_prescrption,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl, x.strstk_id, x.strstk_discount from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,p.product_prescrption,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl, e.strstk_id,e.strstk_discount from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_brand IN (',brandid,') and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 and e.strstk_discount<=',disc,' and e.strstk_discount!=0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id');

 PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;

/*select x.product_id, x.product_name, x.price_id, x.product_category, x.price_expiry from (SELECT ( @row_number := @row_number + 1) AS virtual_id, p.product_id,p.product_name, b.price_id,p.product_category,b.price_expiry FROM products_tbl p INNER JOIN product_pricing r on r.prodprice_product=p.product_id INNER JOIN prices_tbl b on b.price_pricingid=r.prodprice_id WHERE p.product_sale=1 and p.product_online=1 and p.product_status=1 and b.price_stock>0 and b.price_expiry >= CURDATE() AND p.product_name LIKE concat(product,'%') order by b.price_expiry ASC, b.price_priority ASC ) AS x GROUP BY x.product_id; */

END$$

CREATE  PROCEDURE `getAllProductsByBrandId` (IN `brandid` INT)   begin
/*select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl, x.strstk_id, x.strstk_discount from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl, e.strstk_id,e.strstk_discount from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_brand = brandid and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and s.stockin_expiry >= CURRENT_DATE() order by s.stockin_expiry asc) as x group by x.product_id;


*/

SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,p.product_prescrption
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
   
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
p.product_brand = brandid AND
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1
  AND s.stockin_expiry >= CURRENT_DATE()
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by e.strstk_offerfrom ASC, s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id ;




/*select x.product_id, x.product_name, x.price_id, x.product_category, x.price_expiry from (SELECT ( @row_number := @row_number + 1) AS virtual_id, p.product_id,p.product_name, b.price_id,p.product_category,b.price_expiry FROM products_tbl p INNER JOIN product_pricing r on r.prodprice_product=p.product_id INNER JOIN prices_tbl b on b.price_pricingid=r.prodprice_id WHERE p.product_sale=1 and p.product_online=1 and p.product_status=1 and b.price_stock>0 and b.price_expiry >= CURDATE() AND p.product_name LIKE concat(product,'%') order by b.price_expiry ASC, b.price_priority ASC ) AS x GROUP BY x.product_id; */

END$$

CREATE  PROCEDURE `getAllProductsByDealofDay` ()   begin
select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.stock,x.strstk_stack, x.product_imageurl, x.strstk_discount, x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,(e.strstk_stock - e.strstk_reserved) as stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,p.product_prescrption from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
WHERE e.strstk_dealofday = 1 and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_dealfrom <= CURRENT_DATE()  and e.strstk_dealto>= CURRENT_DATE() and  s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 order by e.strstk_dealfrom ASC,s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id;
/*select x.product_id, x.product_name, x.price_id, x.product_category, x.price_expiry from (SELECT ( @row_number := @row_number + 1) AS virtual_id, p.product_id,p.product_name, b.price_id,p.product_category,b.price_expiry FROM products_tbl p INNER JOIN product_pricing r on r.prodprice_product=p.product_id INNER JOIN prices_tbl b on b.price_pricingid=r.prodprice_id WHERE p.product_sale=1 and p.product_online=1 and p.product_status=1 and b.price_stock>0 and b.price_expiry >= CURDATE() AND p.product_name LIKE concat(product,'%') order by b.price_expiry ASC, b.price_priority ASC ) AS x GROUP BY x.product_id; */
END$$

CREATE  PROCEDURE `getAllProductsByDiscount` ()   begin

SELECT CASE when t.notice_offer!=0 THEN t.notice_offer ELSE 10 END  INTO @discount FROM tbl_notice t ;

select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.stock,x.strstk_stack, x.product_imageurl,x.strstk_discount, x.strstk_id from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,(e.strstk_stock-e.strstk_reserved) as stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
WHERE e.strstk_offer = 1 and p.product_status = 1 and p.product_online = 1 and p.product_publish=1   and e.strstk_discount=@discount and s.stockin_expiry >= CURRENT_DATE()   and (e.strstk_stock-e.strstk_reserved) > 0 order by e.strstk_offerfrom ASC,s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id;
/*select x.product_id, x.product_name, x.price_id, x.product_category, x.price_expiry from (SELECT ( @row_number := @row_number + 1) AS virtual_id, p.product_id,p.product_name, b.price_id,p.product_category,b.price_expiry FROM products_tbl p INNER JOIN product_pricing r on r.prodprice_product=p.product_id INNER JOIN prices_tbl b on b.price_pricingid=r.prodprice_id WHERE p.product_sale=1 and p.product_online=1 and p.product_status=1 and b.price_stock>0 and b.price_expiry >= CURDATE() AND p.product_name LIKE concat(product,'%') order by b.price_expiry ASC, b.price_priority ASC ) AS x GROUP BY x.product_id; */
END$$

CREATE  PROCEDURE `getAllProductsByDiscountwithOffers` (IN `offer` VARCHAR(225), IN `offsets` INT, IN `limits` INT)   begin
DECLARE offerType TEXT;
SELECT h.menu_discount,h.menu_disctype INTO @discount,@disctype FROM home_menu_offer h WHERE h.menu_title=offer;
IF (@disctype = 1) THEN
    SET offerType = CONCAT(' AND e.strstk_discount = ', @discount);
ELSE
    SET offerType = CONCAT(' AND e.strstk_discount <= ', @discount);
END IF;

if offer!="Medicines" THEN
SET @sqlQuery = CONCAT(
    'SELECT *
FROM (
    SELECT
        p.product_id,
        p.product_name,
        p.product_display,
        p.product_featured,
        p.product_popular,
        r.prodpack_id,
        r.prodpack_quantity,
        r.prodpack_maxstock,
        r.prodpack_minstock,
        t.packing_type,
        m.measunit_name,
        m.measunit_shortname,
        p.product_prescrption,
        e.strstk_mrp,
        e.strstk_msp,
        s.stockin_batch,
        s.stockin_expiry,
        (e.strstk_stock - e.strstk_reserved) AS stock,
        e.strstk_stack,
        (
          SELECT g.prodgal_url
          FROM product_gallery g
          WHERE g.prodgal_prodpack = r.prodpack_id
            AND g.prodgal_placedat = 1
            AND g.prodgal_medium = 1
            AND g.prodgal_publish = 1
            AND g.prodgal_status = 1
          ORDER BY g.prodgal_serial ASC
          LIMIT 1
        ) AS product_imageurl,
        e.strstk_discount,
        e.strstk_id,

        ROW_NUMBER() OVER (
            PARTITION BY p.product_id
            ORDER BY
              e.strstk_offerfrom ASC,
              s.stockin_expiry ASC,
              e.strstk_discount DESC,
              (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn

    FROM products_tbl p
    JOIN product_packing r ON r.prodpack_product = p.product_id
    JOIN packing_tbl t ON t.packing_id = r.prodpack_package
    JOIN measure_units m ON m.measunit_id = r.prodpack_unit
    JOIN stock_inwards s ON s.stockin_item = r.prodpack_id
    JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id

    WHERE e.strstk_offer = 1
      AND p.product_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
      ',offerType,'
      AND e.strstk_discount != 0
      AND s.stockin_expiry >= CURRENT_DATE()
      AND (e.strstk_stock - e.strstk_reserved) > 0
) x
WHERE x.rn = 1
LIMIT ', offsets, ',', limits);

ELSE

SET @sqlQuery = CONCAT(
    'SELECT *
FROM (
    SELECT
        p.product_id,
        p.product_name,
        p.product_display,
        p.product_featured,
        p.product_popular,
        r.prodpack_id,
        r.prodpack_quantity,
        r.prodpack_maxstock,
        r.prodpack_minstock,
        t.packing_type,
        m.measunit_name,
        m.measunit_shortname,
        p.product_prescrption,
        e.strstk_mrp,
        e.strstk_msp,
        s.stockin_batch,
        s.stockin_expiry,
        (e.strstk_stock - e.strstk_reserved) AS stock,
        e.strstk_stack,
        (
          SELECT g.prodgal_url
          FROM product_gallery g
          WHERE g.prodgal_prodpack = r.prodpack_id
            AND g.prodgal_placedat = 1
            AND g.prodgal_medium = 1
            AND g.prodgal_publish = 1
            AND g.prodgal_status = 1
          ORDER BY g.prodgal_serial ASC
          LIMIT 1
        ) AS product_imageurl,
        e.strstk_discount,
        e.strstk_id,

        ROW_NUMBER() OVER (
            PARTITION BY p.product_id
            ORDER BY
              e.strstk_offerfrom ASC,
              s.stockin_expiry ASC,
              e.strstk_discount DESC,
              (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn

    FROM products_tbl p
    JOIN product_packing r ON r.prodpack_product = p.product_id
    JOIN packing_tbl t ON t.packing_id = r.prodpack_package
    JOIN measure_units m ON m.measunit_id = r.prodpack_unit
    JOIN stock_inwards s ON s.stockin_item = r.prodpack_id
    JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id

    WHERE e.strstk_offer = 1
      AND p.product_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
      ',offerType,'
      AND e.strstk_discount != 0
AND p.product_maincategory=1
      AND s.stockin_expiry >= CURRENT_DATE()
      AND (e.strstk_stock - e.strstk_reserved) > 0

) x
WHERE x.rn = 1
LIMIT ', offsets, ',', limits);
/*
select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.product_prescrption,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.stock,x.strstk_stack, x.product_imageurl,x.strstk_discount, x.strstk_id from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,p.product_prescrption,s.stockin_batch,s.stockin_expiry,(e.strstk_stock-e.strstk_reserved) as stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
WHERE e.strstk_offer = 1 and  p.product_status = 1 and p.product_online = 1 and p.product_publish=1   and e.strstk_discount<=@discount and e.strstk_discount!=0 and p.product_maincategory=1 and s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0  order by e.strstk_offerfrom ASC,s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id LIMIT offsets,limits;*/
END IF;
PREPARE stmt FROM @sqlQuery;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END$$

CREATE  PROCEDURE `getAllproductsbyLetter` (IN `letter` VARCHAR(200), IN `offsets` INT, IN `limits` INT)   BEGIN
    -- Initialize row number variable
    SET @row_number := 0;

    SELECT 
        x.product_id,
        x.product_name,
        x.product_display,
        x.product_featured,
        x.product_popular,
        x.prodpack_id,
        x.prodpack_quantity,
        x.prodpack_maxstock,
        x.prodpack_minstock,
        x.packing_type,
        x.measunit_name,
        x.measunit_shortname,
        x.strstk_mrp,
        x.strstk_msp,
        x.stockin_batch,
        x.stockin_expiry,
        x.stock,
        x.strstk_stack,
        x.product_imageurl,
        x.strstk_discount,
        x.strstk_id
    FROM (
        SELECT 
            (@row_number := @row_number + 1) AS virtual_id,
            p.product_id,
            p.product_name,
            p.product_display,
            p.product_featured,
            p.product_popular,
            r.prodpack_id,
            r.prodpack_quantity,
            r.prodpack_maxstock,
            r.prodpack_minstock,
            t.packing_type,
            m.measunit_name,
            m.measunit_shortname,
            e.strstk_mrp,
            e.strstk_msp,
            s.stockin_batch,
            s.stockin_expiry,
            (e.strstk_stock - e.strstk_reserved) AS stock,
            e.strstk_stack,
            (
                SELECT g.prodgal_url
                FROM product_gallery g
                WHERE g.prodgal_prodpack = r.prodpack_id
                  AND g.prodgal_placedat = 1
                  AND g.prodgal_medium = 1
                  AND g.prodgal_publish = 1
                  AND g.prodgal_status = 1
                ORDER BY g.prodgal_serial ASC
                LIMIT 1
            ) AS product_imageurl,
            e.strstk_discount,
            e.strstk_id
        FROM 
            products_tbl p
            JOIN product_packing r ON r.prodpack_product = p.product_id
            JOIN packing_tbl t ON t.packing_id = r.prodpack_package
            JOIN measure_units m ON m.measunit_id = r.prodpack_unit
            JOIN stock_inwards s ON s.stockin_item = r.prodpack_id
            JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id
        WHERE 
            /*e.strstk_offer = 1
            AND*/
        p.product_status = 1
            AND p.product_online = 1
            AND p.product_publish = 1
            AND p.product_name LIKE CONCAT(letter, '%')
            AND s.stockin_expiry >= CURRENT_DATE()
            AND (e.strstk_stock - e.strstk_reserved) > 0
        ORDER BY 
            s.stockin_expiry ASC,
            e.strstk_discount DESC,
            (e.strstk_stock - e.strstk_reserved) DESC
    ) AS x
    GROUP BY x.product_id
    LIMIT offsets, limits;
END$$

CREATE  PROCEDURE `getAllProductsByOffer` ()   begin
select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.stock,x.strstk_stack, x.product_imageurl,x.strstk_discount, x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,(e.strstk_stock-e.strstk_reserved) as stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,p.product_prescrption from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
WHERE e.strstk_offer = 1 and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_offerfrom <= CURRENT_DATE() and e.strstk_offerto>=CURRENT_DATE()  and  s.stockin_expiry >= CURRENT_DATE()   and (e.strstk_stock-e.strstk_reserved) > 0 order by e.strstk_offerfrom ASC,s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id;
/*select x.product_id, x.product_name, x.price_id, x.product_category, x.price_expiry from (SELECT ( @row_number := @row_number + 1) AS virtual_id, p.product_id,p.product_name, b.price_id,p.product_category,b.price_expiry FROM products_tbl p INNER JOIN product_pricing r on r.prodprice_product=p.product_id INNER JOIN prices_tbl b on b.price_pricingid=r.prodprice_id WHERE p.product_sale=1 and p.product_online=1 and p.product_status=1 and b.price_stock>0 and b.price_expiry >= CURDATE() AND p.product_name LIKE concat(product,'%') order by b.price_expiry ASC, b.price_priority ASC ) AS x GROUP BY x.product_id; */
END$$

CREATE  PROCEDURE `getAllSalesbillsFromDates` (IN `itemid` INT, IN `fromdate` DATE, IN `todate` DATE, IN `storeid` INT)   BEGIN
if storeid>0 THEN
SELECT
    b.bill_id, b.bill_date, b.bill_store, b.bill_no, b.bill_pharmacist, bb.billit_item, bb.billit_name, bb.billit_hsn, bb.billit_mfr, bb.billit_batch, bb.billit_expiry, bb.billit_sched, bb.billit_mrp, bb.billit_discount, bb.billit_rate, bb.billit_qty, bb.billit_amount, bb.billit_cgstpc, bb.billit_cgst, bb.billit_sgstpc, bb.billit_sgst, bb.billit_status, b.bill_customer, b.bill_mobile, b.bill_name, b.bill_age, b.bill_gender, b.bill_address, b.bill_referrer, b.bill_doctor, b.bill_license, b.bill_quantity, b.bill_mrp, b.bill_taxable, b.bill_cgst, b.bill_sgst, b.bill_discounts, b.bill_netpay, b.bill_paid, b.bill_paidon, b.bill_payby, b.bill_payref, b.bill_transid, b.bill_balance, b.bill_status
FROM bills_table b
JOIN bill_items bb ON bb.billit_id = b.bill_id
WHERE (itemid IS NULL OR itemid = 0 OR bb.billit_item = itemid)
AND b.bill_date BETWEEN fromdate AND todate AND b.bill_store=storeid GROUP BY b.bill_no ;
ELSE
SELECT
    b.bill_id, b.bill_date, b.bill_store, b.bill_no, b.bill_pharmacist, bb.billit_item, bb.billit_name, bb.billit_hsn, bb.billit_mfr, bb.billit_batch, bb.billit_expiry, bb.billit_sched, bb.billit_mrp, bb.billit_discount, bb.billit_rate, bb.billit_qty, bb.billit_amount, bb.billit_cgstpc, bb.billit_cgst, bb.billit_sgstpc, bb.billit_sgst, bb.billit_status, b.bill_customer, b.bill_mobile, b.bill_name, b.bill_age, b.bill_gender, b.bill_address, b.bill_referrer, b.bill_doctor, b.bill_license, b.bill_quantity, b.bill_mrp, b.bill_taxable, b.bill_cgst, b.bill_sgst, b.bill_discounts, b.bill_netpay, b.bill_paid, b.bill_paidon, b.bill_payby, b.bill_payref, b.bill_transid, b.bill_balance, b.bill_status
FROM bills_table b
JOIN bill_items bb ON bb.billit_id = b.bill_id
WHERE (itemid IS NULL OR itemid = 0 OR bb.billit_item = itemid)
AND b.bill_date BETWEEN fromdate AND todate GROUP BY b.bill_no;
END if;
END$$

CREATE  PROCEDURE `getAllScheduleDiscountData` (IN `branchid` INT)   BEGIN
SET SESSION group_concat_max_len = 1000000;
IF branchid>1 THEN
SELECT s.store_id,s.store_code,s.store_name FROM stores_tbl s WHERE s.store_status=1;
SELECT dis_id,(select GROUP_CONCAT(CONCAT(product_display, ' ', k.packing_type, ':', pt.prodpack_quantity, ' ', m.measunit_shortname)) FROM products_tbl JOIN product_packing pt ON pt.prodpack_product = product_id LEFT JOIN packing_tbl k ON k.packing_id = pt.prodpack_package LEFT JOIN measure_units m ON m.measunit_id = pt.prodpack_unit WHERE find_in_set(pt.prodpack_id ,dis_mainitem) ) AS mainitem,dis_mainitem,
(select GROUP_CONCAT(CONCAT(product_display, ' ', k.packing_type, ':', pt.prodpack_quantity, ' ', m.measunit_shortname)) FROM products_tbl JOIN product_packing pt ON pt.prodpack_product = product_id LEFT JOIN packing_tbl k ON k.packing_id = pt.prodpack_package LEFT JOIN measure_units m ON m.measunit_id = pt.prodpack_unit WHERE find_in_set(pt.prodpack_id ,dis_freeitem) ) AS freeitem,dis_freeitem ,dis_crtdby,dis_approvedby,(SELECT u.user_staffname from users_tbl u WHERE u.user_id=dis_crtdby) AS crtdby,(SELECT u.user_staffname from users_tbl u WHERE u.user_id=dis_approvedby) AS approvedby, dis_status,(SELECT s.store_name FROM stores_tbl s WHERE s.store_id=dis_store) AS store_name FROM schedulediscount_tbl WHERE dis_store=branchid ORDER BY dis_crtdon DESC ;
ELSE
SELECT s.store_id,s.store_code,s.store_name FROM stores_tbl s WHERE s.store_status=1;
SELECT dis_id,(select GROUP_CONCAT(CONCAT(product_display, ' ', k.packing_type, ':', pt.prodpack_quantity, ' ', m.measunit_shortname)) FROM products_tbl JOIN product_packing pt ON pt.prodpack_product = product_id LEFT JOIN packing_tbl k ON k.packing_id = pt.prodpack_package LEFT JOIN measure_units m ON m.measunit_id = pt.prodpack_unit WHERE find_in_set(pt.prodpack_id ,dis_mainitem) ) AS mainitem,dis_mainitem,
(select GROUP_CONCAT(CONCAT(product_display, ' ', k.packing_type, ':', pt.prodpack_quantity, ' ', m.measunit_shortname)) FROM products_tbl JOIN product_packing pt ON pt.prodpack_product = product_id LEFT JOIN packing_tbl k ON k.packing_id = pt.prodpack_package LEFT JOIN measure_units m ON m.measunit_id = pt.prodpack_unit WHERE find_in_set(pt.prodpack_id ,dis_freeitem) ) AS freeitem,dis_freeitem ,dis_crtdby,dis_approvedby,(SELECT u.user_staffname from users_tbl u WHERE u.user_id=dis_crtdby) AS crtdby,(SELECT u.user_staffname from users_tbl u WHERE u.user_id=dis_approvedby) AS approvedby, dis_status,(SELECT s.store_name FROM stores_tbl s WHERE s.store_id=dis_store) AS store_name FROM schedulediscount_tbl ORDER BY dis_crtdon DESC ;
END IF;
END$$

CREATE  PROCEDURE `getAlltheNotices` ()   BEGIN

 SELECT t.notice_id,t.notice_text,t.notice_offer FROM tbl_notice t ;
 
 SELECT h.menu_id ,h.menu_category,h.menu_icon,h.menu_title,h.menu_caption,h.menu_discount ,h.menu_disctype FROM home_menu_offer h;
 
 SELECT `slider_id`, `slider_type`, `slider_image` FROM tbl_homepageslier h WHERE h.slider_status=1 ORDER BY h.slider_sort ASC;
 
END$$

CREATE  PROCEDURE `getalredyAssignedDataInday` (IN `newdate` DATE)   BEGIN

 SELECT 
       u.user_staffname,
        COUNT(p.assigned_for) AS total_count,
    COUNT(IF(p.product_entry_status = 1, 1, NULL)) AS completed_count FROM products_entry_tbl p
     JOIN users_tbl u
        ON u.user_id=p.assigned_for
       AND date(p.assigned_date)=newdate
    GROUP BY u.user_id,u.user_staffname;

END$$

CREATE  PROCEDURE `getApproveSearch` (IN `storeid` INT, IN `aprvsts` INT)   BEGIN
SELECT i.intend_id, i.intend_number, i.intend_date, i.intend_from, s.store_name AS fromstore, t.store_name AS tostore, i.intend_items FROM intends_tbl i INNER JOIN stores_tbl s ON s.store_id=i.intend_from INNER JOIN stores_tbl t ON t.store_id=i.intend_to WHERE i.intend_status=aprvsts AND i.intend_from = storeid;
END$$

CREATE  PROCEDURE `getAvailablePacking` (IN `prodid` INT)   BEGIN
	SELECT x.prodpack_id, fnGetProductFromPack(x.prodpack_id, 0) AS package, p.packing_type, x.prodpack_quantity, m.measunit_shortname, CONCAT(p.packing_type, ' ', x.prodpack_quantity, ' ', m.measunit_shortname) AS boxunit  
    FROM product_packing x
    LEFT JOIN packing_tbl p ON p.packing_id = x.prodpack_package
    LEFT JOIN measure_units m ON m.measunit_id = x.prodpack_unit 
    WHERE x.prodpack_product = prodid AND x.prodpack_status = 1 
    ORDER BY x.prodpack_package, x.prodpack_quantity;
END$$

CREATE  PROCEDURE `getBillDatabyBillNumnber` (IN `billno` VARCHAR(50))   BEGIN

SELECT b.bill_id,b.bill_date,b.bill_store, b.bill_mobile,b.bill_name,b.bill_netpay,s.store_code,s.store_name , 
(SELECT COUNT(l.billit_item) FROM bill_items l WHERE l.billit_id=b.bill_id )as item_count
FROM bills_table b JOIN stores_tbl s on s.store_id=b.bill_store 
WHERE b.bill_no=billno AND b.bill_delmode=3;
END$$

CREATE  PROCEDURE `getbillItems` (IN `storeid` INT)   BEGIN
	SELECT x.strstk_item, x.strstk_refer, x.strstk_store, x.strstk_product, x.strstk_id, fnGetProductFromPack(x.strstk_item, 1) AS product
    FROM storestock_pricing x
    LEFT JOIN products_tbl p ON p.product_id = x.strstk_product
LEFT JOIN stock_inwards si ON si.stockin_id = x.strstk_refer
    WHERE x.strstk_store = storeid AND x.strstk_status = 1
    GROUP BY x.strstk_item
    ORDER BY p.product_name, x.strstk_item ;
END$$

CREATE  PROCEDURE `getbrandListbyCategory` (IN `cat` INT, IN `flag` INT)   BEGIN
if flag = 1 then
select b.brand_id,b.brand_name,b.brand_logo from products_tbl p inner join brands_tbl b on p.product_brand = b.brand_id where p.product_category = cat and p.product_publish = 1 and p.product_online = 1 and p.product_status = 1 GROUP BY b.brand_id, b.brand_name;
elseif flag = 2 THEN
select b.brand_id,b.brand_name,b.brand_logo from products_tbl p inner join brands_tbl b on p.product_brand = b.brand_id where p.product_subcategory = cat and p.product_publish = 1 and p.product_online = 1 and p.product_status = 1 GROUP BY b.brand_id,b.brand_name;
elseif flag = 3 THEN
select b.brand_id,b.brand_name,b.brand_logo from products_tbl p inner join brands_tbl b on p.product_brand = b.brand_id where p.product_maincategory = cat and p.product_publish = 1 and p.product_online = 1 and p.product_status = 1 GROUP BY b.brand_id LIMIT 30;
  
end if;
END$$

CREATE  PROCEDURE `getBrandsOfManufacturer` (IN `manfid` INT)   BEGIN
	SELECT brand_id, brand_name 
    FROM brands_tbl 
    WHERE brand_owner = manfid AND brand_status = 1 
    ORDER BY brand_name;
END$$

CREATE  PROCEDURE `getBrandsOfManufacturerbyBrand` (IN `manfid` INT(11), IN `search_term` VARCHAR(225))   BEGIN
IF search_term IS NULL OR search_term = '' THEN
    SELECT brand_id, brand_name 
    FROM brands_tbl 
    WHERE brand_owner = manfid 
      AND brand_status = 1 
    ORDER BY brand_name;
ELSE
    SELECT brand_id, brand_name 
    FROM brands_tbl 
    WHERE brand_name LIKE CONCAT(search_term,'%') 
      AND brand_status = 1 
    ORDER BY brand_name;
END IF;

END$$

CREATE  PROCEDURE `getBrandsOfManufacturerbyBrandNew` (IN `manfid` INT(11), IN `search_term` VARCHAR(225))   BEGIN
IF search_term IS NULL OR search_term = '' THEN
    SELECT brand_id, brand_name 
    FROM brands_tbl b JOIN brand_manufacturer_tbl m ON b.brand_id=m.brnd_id
    WHERE m.brndmanu_id= manfid 
      AND brand_status = 1 
    ORDER BY brand_name;
ELSE
    SELECT brand_id, brand_name 
    FROM brands_tbl 
    WHERE brand_name LIKE CONCAT(search_term,'%') 
      AND brand_status = 1 
    ORDER BY brand_name;
END IF;

END$$

CREATE  PROCEDURE `getBrandsOfManufacturerNew` (IN `manfid` INT)   BEGIN
	SELECT brand_id, brand_name 
    FROM brands_tbl b JOIN brand_manufacturer_tbl m ON b.brand_id=m.brnd_id
    WHERE m.brndmanu_id = manfid AND brand_status = 1 
    ORDER BY brand_name;
END$$

CREATE  PROCEDURE `getCancelOrderDetailsByItems` (IN `branchid` INT)   BEGIN
if branchid=1 THEN
 SELECT o.order_id,c.delivery_to AS customer_name,cd.customer_phone,p.paymt_mode,p.paymt_paid,p.paymt_transid,p.paymnt_currency,p.paymt_paidon,o.order_orderid,o.order_date,o.order_trackid,o.order_status,o.order_delivery,r.refund_razorid,DATE(r.refund_created ) as refund_date,o.order_message, (SELECT COUNT(*) FROM order_details d WHERE d.ordet_order=o.order_id) as total_items FROM orders_tbl o JOIN customers_tbl cd ON cd.customer_id=o.order_customer
JOIN delivery_address c ON c.delivery_user=o.order_customer AND c.delivery_id=o.order_deliverId JOIN payments_tbl p on  p.paymt_orderid=o.order_id LEFT JOIN refund_table r on r.refund_orderid=o.order_id
WHERE o.order_status=0 ORDER BY o.order_id DESC;
ELSE
 SELECT o.order_id,c.delivery_to AS customer_name,cd.customer_phone,p.paymt_mode,p.paymt_paid,p.paymt_transid,p.paymnt_currency,p.paymt_paidon,o.order_orderid,o.order_date,o.order_trackid,o.order_status,o.order_delivery,r.refund_razorid,DATE(r.refund_created ) as refund_date,o.order_message,f.return_status,f.status_date,f.approved_date ,f.pickup_date,f.refund_date as return_date, (SELECT COUNT(*) FROM order_details d WHERE d.ordet_order=o.order_id) as total_items FROM orders_tbl o JOIN customers_tbl cd ON cd.customer_id=o.order_customer
JOIN delivery_address c ON c.delivery_user=o.order_customer AND c.delivery_id=o.order_deliverId JOIN payments_tbl p on  p.paymt_orderid=o.order_id LEFT JOIN refund_table r on r.refund_orderid=o.order_id LEFT JOIN order_return_status_history f ON f.order_id=o.order_id
WHERE o.order_status=2 ORDER BY o.order_id DESC;
END IF;
END$$

CREATE  PROCEDURE `getCancelOrderReasons` ()   BEGIN
SELECT cancel_id,cancel_reason FROM cancelreason_tbl WHERE cancel_status=1;
END$$

CREATE  PROCEDURE `getCartAllDetails` (IN `suppliers` VARCHAR(200))   BEGIN
DROP TEMPORARY TABLE IF EXISTS temp_cartdetails;
CREATE TEMPORARY TABLE temp_cartdetails (
        product_id INT,
        product_name VARCHAR(255),
    product_display VARCHAR(255),
    prodpack_id INT,
    prodpack_quantity INT,
    packing_type VARCHAR(255),
    measunit_shortname VARCHAR(255),
    strstk_mrp DECIMAL(9, 2),
    strstk_msp DECIMAL(9, 2),
    stockin_batch VARCHAR(50),
    product_imageurl VARCHAR(255),
    strstk_discount	DECIMAL(5, 2),
    strstk_id INT,prd_qty INT,stockout INT,product_prescrption INT,invdet_cstpc DECIMAL(9, 2),invdet_sstpc DECIMAL(9, 2));
IF trim(suppliers) <> '' THEN
 SET @text := TRIM(BOTH '##' FROM suppliers);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
       
        SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
             SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
             SET @GRAPE := TRIM(BOTH ',' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
           WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, ',', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                   	SET @pack := SUBSTRING_INDEX(@Gstr, ',', -1);
                    ELSEIF @icols = 2 THEN  
                    SET @batch := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSE
                     SET @qty := SUBSTRING_INDEX(@Gstr, ',', -1);
                    
                END IF;
        		SET @icols := @icols + 1;
                
           	END WHILE;
            INSERT INTO temp_cartdetails(product_id,
        product_name,
    product_display,
  
 
    prodpack_id,
    prodpack_quantity,
    packing_type,
   
    measunit_shortname,
    strstk_mrp,
    strstk_msp,
    stockin_batch,
    product_imageurl,
    strstk_discount,
    strstk_id,prd_qty,stockout,product_prescrption,invdet_cstpc,invdet_sstpc) 
            SELECT p.product_id,p.product_name,p.product_display,r.prodpack_id,r.prodpack_quantity,t.packing_type,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,@qty,(CASE WHEN (GetProductTotalQuantity(p.product_id,e.strstk_item,e.strstk_id))>0 THEN 1 ELSE 0 END) AS stockout,p.product_prescrption,i.invdet_cstpc, i.invdet_sstpc from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer
JOIN invoice_details i ON i.invdet_id = s.stockin_invref
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_item = @pack and e.strstk_id = @batch;
    		SET @i := @i + 1;
            
            END WHILE;
      SELECT * FROM temp_cartdetails;     
END IF;

END$$

CREATE  PROCEDURE `getCartDetails` (IN `prodpackid` INT, IN `storestockid` INT)   begin
SELECT p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer
                                                                  
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_item = prodpackid and e.strstk_id = storestockid;


END$$

CREATE  PROCEDURE `getCountOfDataentryperDay` (IN `id` INT)   BEGIN

IF id=222 OR id=223 THEN
SELECT COUNT(assigned_for) AS total_assigned
            FROM products_entry_tbl
            WHERE product_entry_status = 1
            AND assigned_for = id
            AND product_updon >= concat(CURDATE(),' 00:00:00') and product_updon <= concat(CURDATE(),' 23:59:59');
            /*SELECT COUNT(assigned_for) AS total_assigned
            FROM products_entry_tbl
            WHERE product_entry_status = 1
            AND assigned_for = id
            AND DATE(product_updon) = CURDATE(); */
ELSE

            SELECT COUNT(assigned_for) AS total_assigned
            FROM products_entry_tbl
            WHERE product_entry_status = 1
            AND product_updon >= concat(CURDATE(),' 00:00:00') and product_updon <= concat(CURDATE(),' 23:59:59');
END IF;

END$$

CREATE  PROCEDURE `getCourierPacketDetails` (IN `packid` INT)   BEGIN
	SELECT x.transpack_id, x.transpack_type, x.transpack_packid, x.transpack_trackid, x.transpack_collectby, z.courier_name AS coltdby, x.transpack_collecton, x.transpack_deliverby, z.courier_name AS delrdby, x.transpack_deliveron, x.transpack_status, x.transpack_notes
    FROM transfer_packets x
    LEFT JOIN couriers_tbl z ON z.courier_id = x.transpack_collectby /*and z.courier_id = x.transpack_deliverby*/
    LEFT JOIN couriers_tbl q ON q.courier_id = x.transpack_deliverby
    WHERE x.transpack_id = packid;
    SELECT y.transferpack_item, y.transferpack_qty, y.transferpack_packon
    FROM transferpack_items y
    WHERE y.transferpack_packet = packid;
    SELECT p.transferpack_item, p.transferpack_qty, fnGetProductFromPack(si.stockin_item, 0) AS product,
    p.transferpack_packon FROM transferpack_items p
/*    LEFT JOIN stock_inwards s ON s.stockin_item = p.transferpack_item*/
     LEFT JOIN storestock_pricing sp ON sp.strstk_id = p.transferpack_orditem
    LEFT JOIN stock_inwards si ON si.stockin_id = sp.strstk_refer
    LEFT JOIN transfer_packets trp ON trp.transpack_id = p.transferpack_packet
    WHERE p.transferpack_packet = packid;
END$$

CREATE  PROCEDURE `getCustSaleDetails` (IN `storeid` INT, IN `dates` DATE)   BEGIN
IF storeid>1 THEN
SELECT c.customer_id, c.customer_type, c.customer_number, c.customer_name, c.customer_address, c.customer_phone, c.customer_email, c.customer_password, c.customer_gender, c.customer_age, c.customer_country, c.customer_passport, c.customer_premium, c.customer_remarks, c.customer_status, c.customer_crtdon, c.customer_updby, c.customer_updon, b.bill_store ,b.bill_no, s.store_name, b.bill_crtdon, b.bill_payby,b.bill_payref, b.bill_transid, d.doctor_name, o.order_orderid, b.bill_taxable, b.bill_cgst, b.bill_sgst, b.bill_discounts,b.bill_netpay, u.user_staffname, b.bill_pharmacist, m.addr_pin FROM offline_customers_tbl c LEFT JOIN bills_table b ON b.bill_customer = customer_number left join stores_tbl s on s.store_id = b.bill_store LEFT JOIN doctors_tbl d ON d.doctor_id= b.bill_doctor LEFT JOIN orders_tbl o ON o.order_customer= customer_id LEFT JOIN users_tbl u ON u.user_id= b.bill_crtdby  LEFT JOIN address_tbl m ON m.addr_owner=c.customer_id WHERE b.bill_store=storeid AND b.bill_date=dates;
ELSE
SELECT c.customer_id, c.customer_type, c.customer_number, c.customer_name, c.customer_address, c.customer_phone, c.customer_email, c.customer_password, c.customer_gender, c.customer_age, c.customer_country, c.customer_passport, c.customer_premium, c.customer_remarks, c.customer_status, c.customer_crtdon, c.customer_updby, c.customer_updon, b.bill_store ,b.bill_no, s.store_name, b.bill_crtdon, b.bill_payby,b.bill_payref, b.bill_transid, d.doctor_name, o.order_orderid, b.bill_taxable, b.bill_cgst, b.bill_sgst, b.bill_discounts,b.bill_netpay, u.user_staffname, b.bill_pharmacist, m.addr_pin FROM offline_customers_tbl c LEFT JOIN bills_table b ON b.bill_customer = customer_number left join stores_tbl s on s.store_id = b.bill_store LEFT JOIN doctors_tbl d ON d.doctor_id= b.bill_doctor LEFT JOIN orders_tbl o ON o.order_customer= customer_id LEFT JOIN users_tbl u ON u.user_id= b.bill_crtdby  LEFT JOIN address_tbl m ON m.addr_owner=c.customer_id WHERE b.bill_date=dates;
END IF;
END$$

CREATE  PROCEDURE `getDataEntryPerUser` (IN `id` INT)   BEGIN

IF id=222 OR id=223 THEN
SELECT COUNT(*) as dataentry_count FROM products_entry_tbl p WHERE p.product_entry_status=1 AND p.assigned_for=id;
SELECT COUNT(assigned_for) AS total_assigned
            FROM products_entry_tbl
            WHERE product_entry_status = 1
            AND assigned_for = id
            AND product_updon >= concat(CURDATE(),' 00:00:00') and product_updon <= concat(CURDATE(),' 23:59:59');
ELSE
SELECT -1 AS dataentry_count;
           SELECT COUNT(assigned_for) AS total_assigned
            FROM products_entry_tbl
            WHERE product_entry_status = 1
            AND product_updon >= concat(CURDATE(),' 00:00:00') and product_updon <= concat(CURDATE(),' 23:59:59');
END IF;
    
SELECT COUNT(*) as total_count FROM products_entry_tbl p WHERE p.product_entry_status=1;

END$$

CREATE  PROCEDURE `getDeliveryAddressbyId` (IN `userId` INT, IN `id` INT)   BEGIN

SELECT d.delivery_to,d.delivery_phone,d.delivery_email,d.delivery_pin,d.delivery_house,d.delivery_street,d.delivery_landmark,d.delivery_city,d.delivery_state,d.delivery_type from delivery_address d WHERE d.delivery_id=id and d.delivery_user=userId;
END$$

CREATE  PROCEDURE `getDetailsbyDates` (IN `storeid` INT, IN `fromdate` DATE, IN `todate` DATE)   BEGIN
SELECT a.`bill_id`, a.`bill_date`, a.`bill_store`,s.store_name, s.store_code, a.`bill_no`, a.`bill_pharmacist`,a.`bill_customer`, a.`bill_name`,a.`bill_doctor`,d.doctor_name, a.`bill_taxable`, a.`bill_cgst`, a.`bill_sgst`, a.`bill_discounts` , b.billit_item, b.billit_name, b.billit_mfr, b.billit_batch, b.billit_mrp, b.billit_discount, b.billit_rate, b.billit_qty, a.bill_crtdby, u.user_staffname, b.billit_cgstpc, b.billit_sgstpc FROM `bills_table` a LEFT JOIN bill_items b ON b.billit_id = bill_id LEFT JOIN doctors_tbl d ON d.doctor_id= a.bill_doctor LEFT JOIN stores_tbl s ON s.store_id= a.bill_store LEFT JOIN users_tbl u ON u.user_id= a.bill_crtdby WHERE a.bill_store=2 AND a.bill_date BETWEEN fromdate AND todate order by b.billit_name;
END$$

CREATE  PROCEDURE `getDistributorProductsOfManufacturer` (IN `distrid` INT, IN `manufid` INT)   BEGIN
	SELECT x.product_id, x.product_name, x.product_manufacturer 
    FROM products_tbl x 
    WHERE x.product_manufacturer = manufid AND x.product_id NOT IN(
    	SELECT p.distriprod_product FROM distributor_products p 
        WHERE p.distriprod_distributor = distrid AND p.distriprod_product = x.product_id AND p.distriprod_status=1
    )
    AND x.product_status = 1 
    ORDER BY x.product_name;
END$$

CREATE  PROCEDURE `getDistrictsOfState` (IN `state` VARCHAR(20))   BEGIN
	SELECT x.ID, x.Name 
    FROM city x WHERE x.District = TRIM(state)  
    ORDER BY x.Name;
END$$

CREATE  PROCEDURE `getDrugSubclassesList` (IN `drgclass` INT)   BEGIN
	SELECT x.drugclass_id, x.drugclass_name 
    FROM drug_classifications x 
    WHERE x.drugclass_parent = drgclass AND x.drugclass_status = 1 
    ORDER BY x.drugclass_name;
END$$

CREATE  PROCEDURE `getExpiredProduct` (IN `storeid` INT)   BEGIN
IF storeid>1 THEN
SELECT a.stockin_store, a.stockin_item, a.stockin_mrp, a.stockin_batch, a.stockin_expiry, a.stockin_stack, b.prodpack_quantity, b.prodpack_unit, c.product_name, c.product_generic, c.product_manufacturer, d.store_name, e.manuf_name, f.genmed_name, g.measunit_shortname, (h.strstk_stock-h.strstk_reserved) AS totalqty, i.invdet_ptr FROM `stock_inwards` a LEFT JOIN product_packing b ON b.prodpack_id=a.stockin_item LEFT JOIN products_tbl c ON c.product_id=b.prodpack_product LEFT JOIN stores_tbl d ON d.store_id=a.stockin_store LEFT JOIN manufacturers_tbl e ON e.manuf_id = c.product_manufacturer LEFT JOIN generic_medicines f ON f.genmed_id= c.product_generic left JOIN measure_units g ON g.measunit_id=b.prodpack_unit LEFT JOIN storestock_pricing h ON h.strstk_item = a.stockin_item LEFT JOIN invoice_details i ON i.invdet_id= a.stockin_id WHERE a.stockin_expiry <= CURDATE() AND a.stockin_store=storeid;
ELSE
SELECT a.stockin_store, a.stockin_item, a.stockin_mrp, a.stockin_batch, a.stockin_expiry, a.stockin_stack, b.prodpack_quantity, b.prodpack_unit, c.product_name, c.product_generic, c.product_manufacturer, d.store_name, e.manuf_name, f.genmed_name, g.measunit_shortname, (h.strstk_stock-h.strstk_reserved) AS totalqty, i.invdet_ptr FROM `stock_inwards` a LEFT JOIN product_packing b ON b.prodpack_id=a.stockin_item LEFT JOIN products_tbl c ON c.product_id=b.prodpack_product LEFT JOIN stores_tbl d ON d.store_id=a.stockin_store LEFT JOIN manufacturers_tbl e ON e.manuf_id = c.product_manufacturer LEFT JOIN generic_medicines f ON f.genmed_id= c.product_generic left JOIN measure_units g ON g.measunit_id=b.prodpack_unit LEFT JOIN storestock_pricing h ON h.strstk_item = a.stockin_item LEFT JOIN invoice_details i ON i.invdet_id= a.stockin_id WHERE a.stockin_expiry <= CURDATE();
END IF;
END$$

CREATE  PROCEDURE `getFilterbyDates` (IN `storeid` INT, IN `fromdate` DATE, IN `todate` DATE)   BEGIN
SELECT b.billit_item, b.billit_name, b.billit_hsn, b.billit_mfr, b.billit_batch, b.billit_expiry, b.billit_sched, b.billit_mrp, b.billit_discount, b.billit_rate, b.billit_qty, b.billit_amount, b.billit_cgstpc, b.billit_cgst, b.billit_sgstpc, b.billit_sgst, a.bill_no, a.bill_pharmacist, a.bill_customer, a.bill_name, a.bill_doctor, a.bill_crtdon, c.doctor_name, a.bill_store, d.store_name, a.bill_taxable FROM bill_items b LEFT JOIN bills_table a ON a.bill_id = b.billit_id LEFT JOIN doctors_tbl c ON c.doctor_id = a.bill_doctor LEFT JOIN stores_tbl d ON d.store_id = a.bill_store WHERE a.bill_store = storeid AND a.bill_date BETWEEN fromdate AND todate;
END$$

CREATE  PROCEDURE `getGrnregister` (IN `storeid` INT, IN `fdate` DATE, IN `tdate` DATE)   BEGIN
SELECT s.store_id,s.store_code,s.store_name  FROM stores_tbl s WHERE s.store_status=1;
SELECT t.transpack_packid, t.transpack_to,date(t.transpack_receiveon) AS grn_date,t.transpack_grn, ti.transferpack_item,fnGetProductFromPack(ti.transferpack_item, 0) AS item ,ti.transferpack_orditem, ti.transferpack_qty,sw.stockin_batch,sw.stockin_mrp,sw.stockin_expiry,iv.invdet_cstpc,iv.invdet_sstpc,iv.invdet_mrp,iv.invdet_ptr,iv.invdet_batch ,iv.invdet_expiry,sb.store_code,sb.store_name FROM transfer_packets t
LEFT JOIN transferpack_items ti ON ti.transferpack_packet=t.transpack_id
LEFT JOIN storestock_pricing sp ON sp.strstk_id=ti.transferpack_orditem
LEFT JOIN stock_inwards sw ON sw.stockin_id=sp.strstk_refer
LEFT JOIN invoice_details iv ON iv.invdet_id=sw.stockin_invref
LEFT JOIN stores_tbl sb ON sb.store_id=t.transpack_to
WHERE t.transpack_to=storeid AND date(t.transpack_receiveon) BETWEEN fdate AND tdate AND t.transpack_status=10;
END$$

CREATE  PROCEDURE `getHelpDesk` ()   BEGIN
SELECT * FROM tbl_help_desk h;
END$$

CREATE  PROCEDURE `gethelpDeskIssuesbyIssueId` (IN `title` VARCHAR(225), IN `id` INT)   BEGIN
SELECT r.reason_id,r.reason_issue FROM tbl_help_desk_reason r JOIN tbl_help_desk d ON d.help_id=r.reason_help_id WHERE d.help_title=title AND d.help_id=id;

END$$

CREATE  PROCEDURE `getHomepageadvertisement` ()   BEGIN 

SELECT * FROM advertisements_tbl a WHERE a.advt_hompagestatus = 1 and a.advt_offer=0 AND a.advt_publish = 1 AND a.advt_status =1 AND CURRENT_DATE BETWEEN a.advt_datefrom AND a.advt_dateto;

END$$

CREATE  PROCEDURE `getHourBaseSalesForChart` (IN `storeid` INT, IN `dates` DATE)   BEGIN
IF storeid > 1 THEN
 SELECT 
    CASE
        WHEN HOUR(bill_crtdon) BETWEEN 6 AND 7 THEN '06-08'
        WHEN HOUR(bill_crtdon) BETWEEN 8 AND 9 THEN '08-10'
        WHEN HOUR(bill_crtdon) BETWEEN 10 AND 11 THEN '10-12'
        WHEN HOUR(bill_crtdon) BETWEEN 12 AND 13 THEN '12-14'
        WHEN HOUR(bill_crtdon) BETWEEN 14 AND 15 THEN '14-16'
        WHEN HOUR(bill_crtdon) BETWEEN 16 AND 17 THEN '16-18'
        WHEN HOUR(bill_crtdon) BETWEEN 18 AND 19 THEN '18-20'
        WHEN HOUR(bill_crtdon) BETWEEN 20 AND 21 THEN '20-22'
    END AS time_range,
    SUM(bill_netpay) AS total
FROM bills_table
WHERE 
    DATE(bill_crtdon) = dates
    AND HOUR(bill_crtdon) BETWEEN 6 AND 21 AND bill_store=storeid 
    GROUP BY time_range
ORDER BY time_range;

ELSEIF storeid = 1 THEN
     SELECT 
    CASE
        WHEN HOUR(bill_crtdon) BETWEEN 6 AND 7 THEN '06-08'
        WHEN HOUR(bill_crtdon) BETWEEN 8 AND 9 THEN '08-10'
        WHEN HOUR(bill_crtdon) BETWEEN 10 AND 11 THEN '10-12'
        WHEN HOUR(bill_crtdon) BETWEEN 12 AND 13 THEN '12-14'
        WHEN HOUR(bill_crtdon) BETWEEN 14 AND 15 THEN '14-16'
        WHEN HOUR(bill_crtdon) BETWEEN 16 AND 17 THEN '16-18'
        WHEN HOUR(bill_crtdon) BETWEEN 18 AND 19 THEN '18-20'
        WHEN HOUR(bill_crtdon) BETWEEN 20 AND 21 THEN '20-22'
    END AS time_range,
    SUM(bill_netpay) AS total
FROM bills_table
WHERE 
    DATE(bill_crtdon) = dates
    AND HOUR(bill_crtdon) BETWEEN 6 AND 21 
GROUP BY time_range
ORDER BY time_range;

END IF;

SELECT s.store_id,s.store_code,s.store_name FROM stores_tbl s WHERE s.store_status=1;
    
END$$

CREATE  PROCEDURE `getIngredientsOfType` (IN `typeid` INT)   BEGIN
	SELECT ingred_id, ingred_name 
    FROM ingredients_tbl  
    WHERE ingred_status = 1 AND ingred_type = typeid 
    ORDER BY ingred_name;
END$$

CREATE  PROCEDURE `getIntendAllocations` (IN `intendid` INT, IN `item` INT)   BEGIN
	SELECT x.intdallocit_intend, x.intdallocit_item, x.intdallocit_method, IF(x.intdallocit_method = 1 , s.store_name, fnGetVendorName(x.intdallocit_type, x.intdallocit_source)) AS vendor, x.intdallocit_quantity, x.intdallocit_ordstatus 
    FROM intend_allocation_items x 
    LEFT JOIN stores_tbl s ON s.store_id = x.intdallocit_source 
    WHERE x.intdallocit_intend = intendid AND x.intdallocit_item = item 
    ORDER BY x.intdallocit_method; 
END$$

CREATE  PROCEDURE `getIntendDetails` (IN `intendid` INT)   BEGIN
	SELECT y.intend_id, y.intend_number, y.intend_date, y.intend_from, sf.store_name AS frmstore, y.intend_to, st.store_name AS tostore, y.intend_notes, ia.intdalloc_notes, y.intend_status
    FROM intends_tbl y
    LEFT JOIN stores_tbl st ON st.store_id = y.intend_to
    LEFT JOIN stores_tbl sf ON sf.store_id = y.intend_from
    LEFT JOIN intend_allocations ia ON ia.intdalloc_intend = y.intend_id
    WHERE y.intend_id = intendid;
	
	SELECT x.intdet_id, x.intdet_item, fnGetProductFromPack(pp.prodpack_id, 0) AS package, x.intdet_product, x.intdet_quantity, x.intdet_stock, x.intdet_hsn, x.intdet_status, x.intdet_procby, x.intdet_allotted,
    fnGetStoreStock(0, pp.prodpack_id) AS localstock, fnGetSupplierCountForItem(x.intdet_product) AS storecount,
    (SELECT GROUP_CONCAT(CONCAT(sa.store_name, '|', b.intdallocit_source, '|', b.intdallocit_quantity) SEPARATOR '##') AS storeallocs  FROM intend_allocation_items b
     	LEFT JOIN stores_tbl sa ON sa.store_id = b.intdallocit_source
     	WHERE b.intdallocit_intend = intendid AND b.intdallocit_method = 1 AND b.intdallocit_item = x.intdet_item) AS stores,
    (SELECT GROUP_CONCAT(CONCAT(fnGetVendorName(k.intdallocit_type, k.intdallocit_source), '|', k.intdallocit_vendsup ,'|',k.intdallocit_source,'|',k.intdallocit_type, '|', k.intdallocit_ordrprice, '|', k.intdallocit_quantity) SEPARATOR '##') FROM intend_allocation_items k
     	WHERE k.intdallocit_intend = intendid AND k.intdallocit_method = 2 AND k.intdallocit_item = x.intdet_item) AS suppliers
    FROM intend_details x
    LEFT JOIN product_packing pp ON pp.prodpack_id = x.intdet_item
    LEFT JOIN intends_tbl q ON q.intend_id = x.intdet_id
    WHERE x.intdet_id = intendid;
END$$

CREATE  PROCEDURE `getInvoiceItemDetails` (IN `invitem` INT)   BEGIN
	SELECT x.invdet_item, fnGetProductFromPack(x.invdet_item, 0) AS productpack, p.prodpack_product, p.prodpack_package, x.invdet_qty, x.invdet_free,x.invdet_schdisc, x.invdet_price, x.invdet_hsn, x.invdet_cstpc, x.invdet_cst, x.invdet_sstpc, x.invdet_sst, x.invdet_mrp, x.invdet_ptr, x.invdet_taxamt, x.invdet_discpc, x.invdet_discount, x.invdet_batch, x.invdet_expiry, x.invdet_delstatus, x.invdet_status
    ,p.prodpack_hsn
    FROM invoice_details x
    LEFT JOIN product_packing p ON p.prodpack_id = x.invdet_item
    WHERE x.invdet_id = invitem;
END$$

CREATE  PROCEDURE `getItemdetails` (IN `storeid` INT, IN `itemid` INT)   BEGIN
SELECT s.stockin_id,s.stockin_store, s.stockin_item, pp.prodpack_product,fnGetProductFromPack(s.stockin_item, 0) AS product, s.stockin_batch, s.stockin_expiry, m.strstk_stack,y.storage_label,m.strstk_stock,m.strstk_reserved, (m.strstk_stock-m.strstk_reserved) AS stock FROM stock_inwards s 
LEFT JOIN storestock_pricing m ON m.strstk_item=s.stockin_item and m.strstk_refer = s.stockin_id
LEFT JOIN product_packing pp ON pp.prodpack_id=m.strstk_item 
LEFT JOIN storage_tbl y ON y.storage_id=m.strstk_stack 
LEFT JOIN storestock_pricing w ON w.strstk_refer=s.stockin_id WHERE m.strstk_store =storeid AND s.stockin_item=itemid GROUP by s.stockin_id;
END$$

CREATE  PROCEDURE `getItemreturndetails` (IN `billnum` VARCHAR(100))   BEGIN
SELECT b.ret_itemid, b.ret_item, b.ret_hsn, b.ret_mfr, b.ret_expiry, b.ret_batch, b.ret_sch, b.ret_mrp, b.ret_discount, b.ret_rate, b.ret_qty, b.ret_amount, b.ret_cgst, b.ret_sgst FROM salesretitem_tbl b WHERE b.ret_billnum=billnum;
END$$

CREATE  PROCEDURE `getItemStockForBilling` (IN `storeid` INT, IN `itemid` INT)   BEGIN
	/*SELECT x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
    x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
    (x.strstk_stock - x.strstk_reserved) AS available, x.strstk_stack, x.strstk_dealofday AS deal,
    x.strstk_offer AS offer, p.prodpack_hsn, fnGetProductFromPack(x.strstk_item, 1) AS product,
    p.prodpack_roq, MAX(i.invdet_cstpc) AS invdet_cstpc, MAX(i.invdet_sstpc) AS invdet_sstpc,
    m.manuf_code, pt.sch_name AS psch, MAX(a.bill_stock) AS bill_stock, x.strstk_stock,
    p.prodpack_quantity, p.prodpack_unit, p.prodpack_package, t.packing_type, sb.storage_label, bb.billit_item
FROM storestock_pricing x
LEFT JOIN stock_inwards si ON si.stockin_id = x.strstk_refer
LEFT JOIN product_packing p ON p.prodpack_id = x.strstk_item
LEFT JOIN invoice_details i ON i.invdet_id = si.stockin_invref
LEFT JOIN products_tbl pr ON pr.product_id = x.strstk_product
LEFT JOIN manufacturers_tbl m ON pr.product_manufacturer = m.manuf_id
LEFT JOIN schedule_tbl pt ON pr.product_schedule = pt.sch_id
LEFT JOIN billstock_tbl a ON a.billstock_item = si.stockin_item
LEFT JOIN packing_tbl t ON t.packing_id = p.prodpack_package
LEFT JOIN storage_tbl sb ON sb.storage_id = si.stockin_stack
LEFT JOIN bill_items bb ON bb.billit_item = x.strstk_item
 WHERE x.strstk_store = storeid AND x.strstk_item = itemid  
GROUP BY x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
         x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
         available, x.strstk_stack, deal, offer, p.prodpack_hsn, product, p.prodpack_roq,
         m.manuf_code, pt.sch_name, x.strstk_stock, p.prodpack_quantity, p.prodpack_unit,
         p.prodpack_package, t.packing_type, sb.storage_label;*/
         
        (SELECT x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
    x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
    (x.strstk_stock - x.strstk_reserved) AS available, x.strstk_stack, x.strstk_dealofday AS deal,
    x.strstk_offer AS offer, p.prodpack_hsn, fnGetProductFromPack(x.strstk_item, 1) AS product,
    p.prodpack_roq, MAX(i.invdet_cstpc) AS invdet_cstpc, MAX(i.invdet_sstpc) AS invdet_sstpc,
    m.manuf_code, pt.sch_name AS psch, MAX(a.bill_stock) AS bill_stock, x.strstk_stock,
    p.prodpack_quantity, p.prodpack_unit, p.prodpack_package, t.packing_type, sb.storage_label, bb.billit_item, 0 as rstatus
FROM storestock_pricing x
LEFT JOIN stock_inwards si ON si.stockin_id = x.strstk_refer
LEFT JOIN product_packing p ON p.prodpack_id = x.strstk_item
LEFT JOIN invoice_details i ON i.invdet_id = si.stockin_invref
LEFT JOIN products_tbl pr ON pr.product_id = x.strstk_product
LEFT JOIN manufacturers_tbl m ON pr.product_manufacturer = m.manuf_id
LEFT JOIN schedule_tbl pt ON pr.product_schedule = pt.sch_id
LEFT JOIN billstock_tbl a ON a.billstock_item = si.stockin_item
LEFT JOIN packing_tbl t ON t.packing_id = p.prodpack_package
LEFT JOIN storage_tbl sb ON sb.storage_id = si.stockin_stack
LEFT JOIN bill_items bb ON bb.billit_item = x.strstk_item
 WHERE x.strstk_store = storeid AND x.strstk_item = itemid 
GROUP BY x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
         x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
         available, x.strstk_stack, deal, offer, p.prodpack_hsn, product, p.prodpack_roq,
         m.manuf_code, pt.sch_name, x.strstk_stock, p.prodpack_quantity, p.prodpack_unit,
         p.prodpack_package, t.packing_type, sb.storage_label)
         
         UNION
         (SELECT x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
    x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
    ls.LsQty_sqty as available, x.strstk_stack, x.strstk_dealofday AS deal,
    x.strstk_offer AS offer, p.prodpack_hsn, fnGetProductFromPack(x.strstk_item, 1) AS product,
    p.prodpack_roq, MAX(i.invdet_cstpc) AS invdet_cstpc, MAX(i.invdet_sstpc) AS invdet_sstpc,
    m.manuf_code, pt.sch_name AS psch, MAX(a.bill_stock) AS bill_stock, x.strstk_stock,
    p.prodpack_quantity, p.prodpack_unit, p.prodpack_package, 'loose' as packing_type, sb.storage_label, bb.billit_item, 1 as rstatus
FROM storestock_pricing x
LEFT JOIN stock_inwards si ON si.stockin_id = x.strstk_refer

 JOIN looseitemqty_tbl ls ON ls.LsQty_refer = x.strstk_refer
LEFT JOIN product_packing p ON p.prodpack_id = x.strstk_item
LEFT JOIN invoice_details i ON i.invdet_id = si.stockin_invref
LEFT JOIN products_tbl pr ON pr.product_id = x.strstk_product
LEFT JOIN manufacturers_tbl m ON pr.product_manufacturer = m.manuf_id
LEFT JOIN schedule_tbl pt ON pr.product_schedule = pt.sch_id
LEFT JOIN billstock_tbl a ON a.billstock_item = si.stockin_item
LEFT JOIN packing_tbl t ON t.packing_id = p.prodpack_package
LEFT JOIN storage_tbl sb ON sb.storage_id = si.stockin_stack
LEFT JOIN bill_items bb ON bb.billit_item = x.strstk_item
 WHERE x.strstk_store = storeid AND x.strstk_item = itemid
 and ls.LsQty_sqty!=0
GROUP BY x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
         x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
         available, x.strstk_stack, deal, offer, p.prodpack_hsn, product, p.prodpack_roq,
         m.manuf_code, pt.sch_name, x.strstk_stock, p.prodpack_quantity, p.prodpack_unit,
         p.prodpack_package, t.packing_type, sb.storage_label)
UNION

(SELECT x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
    x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
    ls.LsQty_sqty as available, x.strstk_stack, x.strstk_dealofday AS deal,
    x.strstk_offer AS offer, p.prodpack_hsn, fnGetProductFromPack(x.strstk_item, 1) AS product,
    p.prodpack_roq, MAX(i.invdet_cstpc) AS invdet_cstpc, MAX(i.invdet_sstpc) AS invdet_sstpc,
    m.manuf_code, pt.sch_name AS psch, MAX(a.bill_stock) AS bill_stock, x.strstk_stock,
    p.prodpack_quantity, p.prodpack_unit, p.prodpack_package, 'return' as packing_type, sb.storage_label, bb.billit_item, 2 as rstatus
FROM storestock_pricing x
LEFT JOIN stock_inwards si ON si.stockin_id = x.strstk_refer

 JOIN looseitreturn_tbl ls ON ls.LsQty_refer = x.strstk_refer
LEFT JOIN product_packing p ON p.prodpack_id = x.strstk_item
LEFT JOIN invoice_details i ON i.invdet_id = si.stockin_invref
LEFT JOIN products_tbl pr ON pr.product_id = x.strstk_product
LEFT JOIN manufacturers_tbl m ON pr.product_manufacturer = m.manuf_id
LEFT JOIN schedule_tbl pt ON pr.product_schedule = pt.sch_id
LEFT JOIN billstock_tbl a ON a.billstock_item = si.stockin_item
LEFT JOIN packing_tbl t ON t.packing_id = p.prodpack_package
LEFT JOIN storage_tbl sb ON sb.storage_id = si.stockin_stack
LEFT JOIN bill_items bb ON bb.billit_item = x.strstk_item
 WHERE x.strstk_store = storeid AND x.strstk_item = itemid
 and ls.LsQty_sqty!=0
GROUP BY x.strstk_id, x.strstk_item, si.stockin_batch, si.stockin_expiry,
         x.strstk_mrp, x.strstk_msp, x.strstk_discount, x.strstk_cost, x.strstk_last,
         available, x.strstk_stack, deal, offer, p.prodpack_hsn, product, p.prodpack_roq,
         m.manuf_code, pt.sch_name, x.strstk_stock, p.prodpack_quantity, p.prodpack_unit,
         p.prodpack_package, t.packing_type, sb.storage_label)
         
         
         
         ORDER BY  strstk_item ASC;
         
END$$

CREATE  PROCEDURE `getLocalStockList` (IN `stkid` INT, IN `intend` INT)   BEGIN
	SELECT x.storestock_store, s.store_name, (x.storestock_available - x.storestock_reserved) AS available, 
    (SELECT CONCAT(COUNT(*), '|', IFNULL(SUM(y.intdallocit_quantity), 0)) FROM intend_allocation_items y 
     	WHERE y.intdallocit_item = stkid AND y.intdallocit_intend = intend 
    	AND y.intdallocit_source = x.storestock_store AND y.intdallocit_method = 1) AS allotted, x.storestock_min
    FROM storestock_master x 
    LEFT JOIN stores_tbl s ON s.store_id = x.storestock_store 
    WHERE x.storestock_item = stkid AND (x.storestock_available - x.storestock_reserved) > 0
    ORDER BY available;  
END$$

CREATE  PROCEDURE `getmainclassadvertisement` (IN `mainclassid` INT(50), IN `flag` INT)   BEGIN

if flag=1 THEN

SELECT *
FROM advertisements_tbl a
WHERE a.advt_maincategories = mainclassid
  AND a.advt_status = 1
  AND a.advt_publish = 1
  AND a.advt_subcatstatus = 1
  AND CURRENT_DATE BETWEEN a.advt_datefrom AND a.advt_dateto
ORDER BY DATEDIFF(a.advt_dateto, a.advt_datefrom) ASC LIMIT 1;
ELSEIF flag=2 THEN


SELECT *
FROM advertisements_tbl a
WHERE a.advt_subcategories = mainclassid
  AND a.advt_status = 1
  AND a.advt_publish = 1
  AND a.advt_subcatstatus = 1
  AND CURRENT_DATE BETWEEN a.advt_datefrom AND a.advt_dateto
ORDER BY DATEDIFF(a.advt_dateto, a.advt_datefrom) ASC LIMIT 1;
ELSE


SELECT *
FROM advertisements_tbl a
WHERE a.advt_catgory = mainclassid
  AND a.advt_status = 1
  AND a.advt_publish = 1
  AND a.advt_subcatstatus = 1
  AND CURRENT_DATE BETWEEN a.advt_datefrom AND a.advt_dateto
ORDER BY DATEDIFF(a.advt_dateto, a.advt_datefrom) ASC LIMIT 1;
End IF;

END$$

CREATE  PROCEDURE `getmanufcontent` (IN `psearch` TEXT)   BEGIN

SELECT 
    m.manuf_id, 
    m.manuf_name
FROM manufacturers_tbl m

WHERE m.manuf_name LIKE concat ('%',psearch,'%') AND m.manuf_status = 1 

UNION ALL

SELECT 0, 'Select Manufacturer'

ORDER BY manuf_name;

END$$

CREATE  PROCEDURE `getNextTransferOrderNumber` (IN `storeid` INT)   BEGIN
    SELECT CONCAT('TR', COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ' '), COUNT(*)+1) AS nextorder
    FROM stock_transfers x 
    WHERE x.stocktrans_strfrom = storeid; 
END$$

CREATE  PROCEDURE `getoffersadvertisement` ()   BEGIN

SELECT * FROM advertisements_tbl a WHERE a.advt_offer = 1 AND a.advt_status = 1 AND a.advt_publish = 1 AND a.advt_hompagestatus=1 AND a.advt_offer=1 AND CURRENT_DATE BETWEEN a.advt_datefrom AND a.advt_dateto;

END$$

CREATE  PROCEDURE `getOrderDatabyOrderNumnber` (IN `order_num` VARCHAR(20))   BEGIN

SELECT o.order_id,o.order_orderid,d.delivery_to,d.delivery_phone,o.order_status,o.order_delivery,o.orders_delivered,o.orders_shipped,o.orders_cancelled,p.paymt_status,CONCAT(d.delivery_house,',',d.delivery_street,',',d.delivery_landmark,',',d.delivery_city,',',d.delivery_state,'-',d.delivery_pin) AS address,(SELECT COUNT(od.ordet_order) )as item_count, p.paymt_paid  FROM orders_tbl o  JOIN customers_tbl c on c.customer_id=o.order_customer JOIN delivery_address d on d.delivery_id=o.order_deliverId JOIN order_details od on od.ordet_order=o.order_id JOIN payments_tbl p on p.paymt_orderid=o.order_id WHERE o.order_orderid=order_num ;

END$$

CREATE  PROCEDURE `getPacketDetailsForTransfer` (IN `packetid` INT)   BEGIN
	SELECT x.transpack_id, x.transpack_refer, st.stocktrans_order, st.stocktrans_date, x.transpack_packid, 
    x.transpack_from, sfr.store_name AS strfrom, x.transpack_to, sto.store_name AS strto, 
    x.transpack_items, x.transpack_trackid, x.transpack_collectby, x.transpack_collecton 
    FROM transfer_packets x 
    LEFT JOIN stock_transfers st ON st.stocktrans_id = x.transpack_refer 
    LEFT JOIN stores_tbl sfr ON sfr.store_id = x.transpack_from 
    LEFT JOIN stores_tbl sto ON sto.store_id = x.transpack_to 
    WHERE x.transpack_id = packetid;
    
    SELECT y.transferpack_packet, t.transpack_packid, y.transferpack_item, fnGetProductFromPack(s.stockin_item, 0) AS product, 
    y.transferpack_qty, y.transferpack_recieved, y.transferpack_short, t.transpack_deliveron, 
    t.transpack_notes, y.transferpack_status, s.stockin_batch, s.stockin_expiry, y.transferpack_packon  
    FROM transferpack_items y 
    LEFT JOIN stock_inwards s ON s.stockin_id = y.transferpack_item 
    LEFT JOIN transfer_packets t ON t.transpack_id = y.transferpack_packet 
    WHERE y.transferpack_packet = packetid; 

	SELECT h.handling_id, h.handling_charge, e.stokexp_amount  
    FROM handling_charges h 
    LEFT JOIN stockin_expenses e ON (e.stokexp_chargeon = h.handling_id AND e.stokexp_type = 2 AND e.stokexp_refer = packetid AND e.stokexp_status = 1) 
    WHERE h.handling_status = 1;

END$$

CREATE  PROCEDURE `getPacketDetailsForTransferNew` (IN `packetid` INT)   BEGIN
	SELECT x.transpack_id, x.transpack_refer, st.stocktrans_order, st.stocktrans_date, x.transpack_packid,
    x.transpack_from, sfr.store_name AS strfrom, x.transpack_to, sto.store_name AS strto,
    x.transpack_items, x.transpack_trackid, x.transpack_collectby, x.transpack_collecton
    FROM transfer_packets x
    LEFT JOIN stock_transfers st ON st.stocktrans_id = x.transpack_refer
    LEFT JOIN stores_tbl sfr ON sfr.store_id = x.transpack_from
    LEFT JOIN stores_tbl sto ON sto.store_id = x.transpack_to
    WHERE x.transpack_id = packetid;
    SELECT y.transferpack_packet, t.transpack_packid, y.transferpack_item, fnGetProductFromPack(s.stockin_item, 0) AS product,
    y.transferpack_qty, y.transferpack_recieved, y.transferpack_short, t.transpack_deliveron,
    t.transpack_notes, y.transferpack_status, s.stockin_batch, s.stockin_expiry, y.transferpack_packon
    FROM transferpack_items y
    LEFT JOIN storestock_pricing sp ON sp.strstk_id = y.transferpack_orditem
    LEFT JOIN stock_inwards s ON s.stockin_id = sp.strstk_refer
    LEFT JOIN transfer_packets t ON t.transpack_id = y.transferpack_packet
    WHERE y.transferpack_packet = packetid;
	SELECT h.handling_id, h.handling_charge, e.stokexp_amount
    FROM handling_charges h
    LEFT JOIN stockin_expenses e ON (e.stokexp_chargeon = h.handling_id AND e.stokexp_type = 2 AND e.stokexp_refer = packetid AND e.stokexp_status = 1)
    WHERE h.handling_status = 1;
END$$

CREATE  PROCEDURE `getPacketItems` (IN `packetid` INT)   BEGIN
	SELECT trp.transpack_packid, tp.transferpack_item, fnGetProductFromPack(si.stockin_item, 0)AS item, tp.transferpack_qty, tp.transferpack_status, si.stockin_batch, si.stockin_expiry, tp.transferpack_packon
    FROM transferpack_items tp
    LEFT JOIN storestock_pricing sp ON sp.strstk_id = tp.transferpack_orditem
    LEFT JOIN stock_inwards si ON si.stockin_id = sp.strstk_refer
    LEFT JOIN transfer_packets trp ON trp.transpack_id = tp.transferpack_packet
    WHERE tp.transferpack_packet = packetid;
/*
	SELECT p.transferpack_item, p.transferpack_qty, fnGetProductFromPack(s.stockin_item, 0) AS product,
    s.stockin_batch, s.stockin_expiry, t.transpack_packid
    FROM transferpack_items p
    LEFT JOIN stock_inwards s ON s.stockin_id = p.transferpack_item
    LEFT JOIN transfer_packets t ON t.transpack_id = p.transferpack_packet
    WHERE p.transferpack_packet = packetid;
*/
END$$

CREATE  PROCEDURE `getPaymentData` (IN `userId` INT)   BEGIN
DECLARE suppliers  TEXT;
DROP TEMPORARY TABLE IF EXISTS temp_cartdetails;
CREATE TEMPORARY TABLE temp_cartdetails (
    strstk_mrp DECIMAL(9, 2),
    strstk_msp DECIMAL(9, 2),
    strstk_discount	DECIMAL(5, 2),
 prd_qty INT,product_prescrption INT,invdet_cstpc DECIMAL(9, 2),invdet_sstpc DECIMAL(9, 2));
 
 SELECT d.delivery_id as deliveryId FROM delivery_address d WHERE d.delivery_user=userId AND  d.delivery_status=1 AND d.delivery_active=1;
 
SELECT GROUP_CONCAT(CONCAT(prodpack_id, ',', batch_id, ',', quantity) SEPARATOR '##') INTO suppliers
FROM user_cart WHERE user_id =userId AND order_id=0;
IF trim(suppliers) <> '' THEN
 SET @text := TRIM(BOTH '##' FROM suppliers);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
        SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
             SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
             SET @GRAPE := TRIM(BOTH ',' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
           WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, ',', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                   	SET @pack := SUBSTRING_INDEX(@Gstr, ',', -1);
                    ELSEIF @icols = 2 THEN
                    SET @batch := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSE
                     SET @qty := SUBSTRING_INDEX(@Gstr, ',', -1);
                END IF;
        		SET @icols := @icols + 1;
           	END WHILE;
            INSERT INTO temp_cartdetails(
    strstk_mrp,
    strstk_msp,
    strstk_discount,
prd_qty,product_prescrption,invdet_cstpc,invdet_sstpc)
            SELECT e.strstk_mrp,e.strstk_msp,e.strstk_discount,@qty,p.product_prescrption,i.invdet_cstpc, i.invdet_sstpc from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id
            JOIN invoice_details i ON i.invdet_id = s.stockin_invref
            join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_item = @pack and e.strstk_id = @batch;
    		SET @i := @i + 1;
            END WHILE;
      SELECT * FROM temp_cartdetails;
END IF;
END$$

CREATE  PROCEDURE `getPaymentDatabyOrderId` (IN `userId` INT, IN `orderId` VARCHAR(225))   BEGIN
DECLARE suppliers  TEXT;

DROP TEMPORARY TABLE IF EXISTS temp_cartdetails;
CREATE TEMPORARY TABLE temp_cartdetails (
    strstk_mrp DECIMAL(9, 2),
    strstk_msp DECIMAL(9, 2),
    strstk_discount	DECIMAL(5, 2),
 prd_qty INT,product_prescrption INT);
 
 SELECT o.order_id INTO @orderID FROM orders_tbl o WHERE o.order_customer=userId AND o.order_orderid=orderId;
 
 SELECT d.delivery_id as deliveryId FROM delivery_address d WHERE d.delivery_user=userId AND  d.delivery_status=1 AND d.delivery_active=1;
 
SELECT GROUP_CONCAT(CONCAT(prodpack_id, ',', batch_id, ',', quantity) SEPARATOR '##') INTO suppliers
FROM user_cart WHERE user_id =userId AND order_id=@orderID;
IF trim(suppliers) <> '' THEN
 SET @text := TRIM(BOTH '##' FROM suppliers);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
        SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
             SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
             SET @GRAPE := TRIM(BOTH ',' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
           WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, ',', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                   	SET @pack := SUBSTRING_INDEX(@Gstr, ',', -1);
                    ELSEIF @icols = 2 THEN
                    SET @batch := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSE
                     SET @qty := SUBSTRING_INDEX(@Gstr, ',', -1);
                END IF;
        		SET @icols := @icols + 1;
           	END WHILE;
            INSERT INTO temp_cartdetails(
    strstk_mrp,
    strstk_msp,
    strstk_discount,
prd_qty,product_prescrption)
            SELECT e.strstk_mrp,e.strstk_msp,e.strstk_discount,@qty,p.product_prescrption from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_item = @pack and e.strstk_id = @batch;
    		SET @i := @i + 1;
            END WHILE;
      SELECT * FROM temp_cartdetails;
END IF;
END$$

CREATE  PROCEDURE `getpharmacontent` ()   BEGIN
SELECT * FROM pharmacologicalcontent_tbl WHERE pharma_status=1 limit 10;
END$$

CREATE  PROCEDURE `getPOitemsForInvoce` (IN `porder` INT)   BEGIN
	SELECT x.podetail_id, x.podetail_item, x.podetail_qty, x.podetail_price, 
    y.vendsup_product,y.vendsup_packing,q.prodpack_id,w.packing_id, p.product_name, p.product_display, 
    q.prodpack_package, q.prodpack_quantity, q.prodpack_unit, w.packing_type, 
    (SELECT z.purchord_deliverat FROM purchase_orders z WHERE z.purchord_id = x.podetail_order) AS delat, 
    q.prodpack_hsn
    FROM purchase_details x 
    LEFT JOIN vendor_supplies y ON y.vendsup_id = x.podetail_item 
    LEFT JOIN products_tbl p ON p.product_id = y.vendsup_product 
    LEFT JOIN product_packing q ON q.prodpack_id = y.vendsup_packing 
    LEFT JOIN packing_tbl w ON w.packing_id = q.prodpack_package 
    WHERE x.podetail_order = porder and ((select count(*) from invoice_details id WHERE id.invdet_porder = porder and id.invdet_item = q.prodpack_id) = 0) ;
END$$

CREATE  PROCEDURE `getPreviousreturnedbill` (IN `returndate` DATE, IN `storeid` INT)   BEGIN
if storeid>1 THEN
SELECT a.salesret_id, a.salesret_billnum, a.salesret_Taxamt, a.salesret_cgst, a.salesret_sgst, a.salesret_netpay, b.ret_itemid, b.ret_item, c.bill_store, DATE_FORMAT(a.salesret_crtdon, '%d-%m-%y') AS billdate, d.store_name, b.ret_hsn, b.ret_mfr, b.ret_expiry, b.ret_batch, b.ret_sch, b.ret_mrp, b.ret_discount, b.ret_rate, b.ret_qty, b.ret_amount, b.ret_cgst, b.ret_sgst FROM salesreturn_tbl a LEFT JOIN salesretitem_tbl b ON b.ret_billnum=a.salesret_billnum LEFT JOIN bills_table c ON c.bill_no=a.salesret_billnum LEFT JOIN stores_tbl d ON d.store_id=c.bill_store WHERE a.salesret_crtdon>=returndate AND c.bill_store=storeid GROUP BY a.salesret_billnum;
ELSE
SELECT a.salesret_id, a.salesret_billnum, a.salesret_Taxamt, a.salesret_cgst, a.salesret_sgst, a.salesret_netpay, b.ret_itemid, b.ret_item, c.bill_store, DATE_FORMAT(a.salesret_crtdon, '%d-%m-%y') AS billdate, d.store_name, b.ret_hsn, b.ret_mfr, b.ret_expiry, b.ret_batch, b.ret_sch, b.ret_mrp, b.ret_discount, b.ret_rate, b.ret_qty, b.ret_amount, b.ret_cgst, b.ret_sgst FROM salesreturn_tbl a LEFT JOIN salesretitem_tbl b ON b.ret_billnum=a.salesret_billnum LEFT JOIN bills_table c ON c.bill_no=a.salesret_billnum LEFT JOIN stores_tbl d ON d.store_id=c.bill_store WHERE a.salesret_crtdon>=returndate GROUP BY a.salesret_billnum;
END IF;
END$$

CREATE  PROCEDURE `getproductBycategories` (IN `pidcat` INT, IN `offsets` INT, IN `limits` INT, IN `brandid` VARCHAR(200))   BEGIN
if(brandid="")THEN

SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,p.product_prescrption,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
AND pp.prodclass_id = pidcat
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by  s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id LIMIT offsets,limits;


ELSE


SET @sql = CONCAT('SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,p.product_prescrption,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
 AND p.product_brand IN (',brandid,')
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
AND pp.prodclass_id = ',pidcat,'
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by  s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id LIMIT ',offsets,',',limits,'');

 PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;


END IF;
END$$

CREATE  PROCEDURE `getproductBycategorieswithOffers` (IN `pidcat` INT, IN `offsets` INT, IN `limits` INT, IN `brandid` VARCHAR(200))   BEGIN
DECLARE disc INT DEFAULT 0;
SELECT h.menu_discount INTO disc  from home_menu_offer h WHERE h.menu_category=pidcat;

if(brandid="")THEN

SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,p.product_prescrption
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand  
LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1
  AND pp.prodclass_id = pidcat
  AND e.strstk_discount<=disc
  AND e.strstk_discount!=0
  AND s.stockin_expiry >= CURRENT_DATE()
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id LIMIT offsets,limits ;
  
 ELSE
 
 SET @sql = CONCAT('SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,p.product_prescrption,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
 AND p.product_brand IN (',brandid,')
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
 AND pp.prodclass_id =', pidcat,'
  AND e.strstk_discount<=',disc,'
  AND e.strstk_discount!=0
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by  s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id LIMIT ',offsets,',',limits,'');

 PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;
  
  END IF;
END$$

CREATE  PROCEDURE `getproductBycategorieswithOffersold` (IN `pidcat` INT)   BEGIN
DECLARE disc INT DEFAULT 0;
SELECT h.menu_discount INTO disc  from home_menu_offer h WHERE h.menu_category=pidcat;
select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.product_prescrption,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_prescrption,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id from products_tbl p join product_classes pc on pc.prodclass_id = p.product_maincategory join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and  s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 and pc.prodclass_id = pidcat AND e.strstk_discount<=disc and e.strstk_discount!=0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id;

END$$

CREATE  PROCEDURE `getProductClassCategorytDetails` (IN `pidcat` INT, IN `offsets` INT, IN `limits` INT, IN `brandid` VARCHAR(200))   BEGIN
if brandid="" THEN
SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,x.product_prescrption,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,p.product_prescrption,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_category = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
AND pp.prodclass_id = pidcat 
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()

  AND (e.strstk_stock-e.strstk_reserved) > 0 order by  s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id;
  
  ELSE
  
  SET @sql = CONCAT('SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,x.product_prescrption,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_prescrption,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_category = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
 AND p.product_brand IN (',brandid,')
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
AND pp.prodclass_id=',pidcat,'
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by  s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id');

 PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;
  
  
  END if;
  
END$$

CREATE  PROCEDURE `getProductClassCategorytDetailswithOffers` (IN `pidcat` INT, IN `parentId` INT)   BEGIN
DECLARE disc INT DEFAULT 0;
SELECT h.menu_discount INTO disc  from home_menu_offer h WHERE h.menu_category=parentId;

select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount, x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,p.product_prescrption from products_tbl p join product_classes pc on pc.prodclass_id = p.product_category join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and  s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 and pc.prodclass_id = pidcat  AND e.strstk_discount<=disc and e.strstk_discount!=0  order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id;

END$$

CREATE  PROCEDURE `getProductClassSubcatDetails` (IN `pid` INT, IN `offsets` INT, IN `limits` INT, IN `brandid` VARCHAR(200))   BEGIN

SELECT p.prodclass_id,p.prodclass_parent,p.prodclass_name,p.prodclass_thumb from product_classes p WHERE p.prodclass_parent=pid and p.prodclass_status=1 order by p.prodclass_serial;

/*select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount, x.strstk_id from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id  and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id from products_tbl p join product_classes pc on pc.prodclass_id = p.product_subcategory join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and  s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 and pc.prodclass_id = pid order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id;

*/

if(brandid="")THEN

SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id,p.product_prescrption
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand  
LEFT JOIN product_classes pp ON p.product_subcategory = pp.prodclass_id
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1
  AND pp.prodclass_id = pid
  AND s.stockin_expiry >= CURRENT_DATE()
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id LIMIT offsets,limits ;
  
 ELSE
 
 SET @sql = CONCAT('SELECT x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,
x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl,x.strstk_discount,
 x.strstk_id,x.product_prescrption from (SELECT ( @row_number := @row_number + 1) AS  virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,p.product_prescrption,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,e.strstk_discount, e.strstk_id
FROM products_tbl p

LEFT JOIN product_classes pp ON p.product_subcategory = pp.prodclass_id
 
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
 e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
 AND p.product_brand IN (',brandid,')
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
AND pp.prodclass_id=',pid,'
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by  s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc 
  ) as x group by x.product_id LIMIT ',offsets,',',limits,'');

 PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;
  
  END IF;
END$$

CREATE  PROCEDURE `getProductDataBySearchForAssign` (IN `searchs` TEXT)   BEGIN
	SELECT p.product_id, p.product_name
    FROM  products_entry_tbl p 
    WHERE p.product_name LIKE CONCAT(searchs , '%') AND p.assigned_status=0
    ORDER BY p.product_name;
  
END$$

CREATE  PROCEDURE `getProductDataBySearchForSlider` (IN `searchs` TEXT)   BEGIN
    SELECT p.product_id, p.product_name
    FROM  products_tbl p 
    WHERE p.product_name LIKE CONCAT(searchs , '%') AND p.product_publish=1
    ORDER BY p.product_name;
END$$

CREATE  PROCEDURE `getProductdetailsByAd` (IN `advid` INT)   begin
/*SELECT
  p.product_id,
  p.product_name,
  p.product_display,
  p.product_featured,
  p.product_popular,
  p.product_prescrption,
  r.prodpack_id,
  r.prodpack_quantity,
  r.prodpack_maxstock,
  r.prodpack_minstock,
  t.packing_type,
  m.measunit_name,
  m.measunit_shortname,

  MAX(e.strstk_mrp) AS strstk_mrp,
  MAX(e.strstk_msp) AS strstk_msp,
  MIN(s.stockin_expiry) AS stockin_expiry,
  SUM(e.strstk_stock - e.strstk_reserved) AS available_stock,
  MAX(e.strstk_discount) AS strstk_discount,
  MAX(e.strstk_id) AS strstk_id,

  (
    SELECT g.prodgal_url
    FROM product_gallery g
    WHERE g.prodgal_prodpack = r.prodpack_id
      AND g.prodgal_placedat = 1
      AND g.prodgal_medium = 1
      AND g.prodgal_publish = 1
      AND g.prodgal_status = 1
    ORDER BY g.prodgal_serial ASC
    LIMIT 1
  ) AS product_imageurl

FROM products_tbl p
JOIN advertisements_tbl a ON a.advt_products = p.product_id
JOIN product_packing r ON r.prodpack_product = p.product_id
JOIN packing_tbl t ON t.packing_id = r.prodpack_package
JOIN measure_units m ON m.measunit_id = r.prodpack_unit
JOIN stock_inwards s ON s.stockin_item = r.prodpack_id
JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id

WHERE a.advt_id = advid
  AND p.product_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND e.strstk_discount != 0
  AND s.stockin_expiry >= CURRENT_DATE()
  AND (e.strstk_stock - e.strstk_reserved) > 0

GROUP BY r.prodpack_id
ORDER BY stockin_expiry ASC, strstk_discount DESC;
*/
SELECT
    product_id,
    product_name,
    product_display,
    product_featured,
  product_popular,
  product_prescrption,
    prodpack_id,
    prodpack_quantity,
    packing_type,
    measunit_shortname,
    strstk_mrp,
    strstk_msp,
    prodpack_maxstock,
  prodpack_minstock,
    product_imageurl,
    strstk_discount,
    strstk_id,
    strstk_item
FROM (
    SELECT
        p.product_id,
        p.product_name,
        p.product_display,
    p.product_featured,
  p.product_popular,
  p.product_prescrption,
        r.prodpack_id,
        r.prodpack_quantity,
        t.packing_type,
        m.measunit_shortname,
        e.strstk_mrp,
        e.strstk_msp,
       r.prodpack_maxstock,
  r.prodpack_minstock,
        (
            SELECT g.prodgal_url
            FROM product_gallery g
            WHERE g.prodgal_prodpack = r.prodpack_id
              AND g.prodgal_placedat = 1
              AND g.prodgal_medium = 1
              AND g.prodgal_publish = 1
              AND g.prodgal_status = 1
            ORDER BY g.prodgal_serial ASC
            LIMIT 1
        ) AS product_imageurl,
        e.strstk_discount,
        e.strstk_id,
        e.strstk_item,

        ROW_NUMBER() OVER (
            PARTITION BY e.strstk_item
            ORDER BY
                s.stockin_expiry ASC,
                e.strstk_discount DESC,
                (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn

    FROM products_tbl p
    JOIN advertisements_tbl a ON a.advt_products = p.product_id
    JOIN product_packing r 
        ON r.prodpack_product = p.product_id
    JOIN packing_tbl t 
        ON t.packing_id = r.prodpack_package
    JOIN measure_units m 
        ON m.measunit_id = r.prodpack_unit
    JOIN stock_inwards s 
        ON s.stockin_item = r.prodpack_id
    JOIN storestock_pricing e 
        ON e.strstk_item = r.prodpack_id
       AND s.stockin_id = e.strstk_refer

    WHERE p.product_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
    AND  a.advt_id =advid
AND (e.strstk_stock - e.strstk_reserved) > 0
    AND e.strstk_discount != 0
      AND s.stockin_expiry >= CURRENT_DATE()) ranked
WHERE rn = 1;
END$$

CREATE  PROCEDURE `getProductdetailsBySliderAd` (IN `advid` INT)   begin
SELECT
    product_id,
    product_name,
    product_display,
    product_featured,
  product_popular,
  product_prescrption,
    prodpack_id,
    prodpack_quantity,
    packing_type,
    measunit_shortname,
    strstk_mrp,
    strstk_msp,
    prodpack_maxstock,
  prodpack_minstock,
    product_imageurl,
    strstk_discount,
    strstk_id,
    strstk_item
FROM (
    SELECT
        p.product_id,
        p.product_name,
        p.product_display,
    p.product_featured,
  p.product_popular,
  p.product_prescrption,
        r.prodpack_id,
        r.prodpack_quantity,
        t.packing_type,
        m.measunit_shortname,
        e.strstk_mrp,
        e.strstk_msp,
       r.prodpack_maxstock,
  r.prodpack_minstock,
        (
            SELECT g.prodgal_url
            FROM product_gallery g
            WHERE g.prodgal_prodpack = r.prodpack_id
              AND g.prodgal_placedat = 1
              AND g.prodgal_medium = 1
              AND g.prodgal_publish = 1
              AND g.prodgal_status = 1
            ORDER BY g.prodgal_serial ASC
            LIMIT 1
        ) AS product_imageurl,
        e.strstk_discount,
        e.strstk_id,
        e.strstk_item,

        ROW_NUMBER() OVER (
            PARTITION BY e.strstk_item
            ORDER BY
                s.stockin_expiry ASC,
                e.strstk_discount DESC,
                (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn

    FROM tbl_homepageslier h,products_tbl p
    
    JOIN product_packing r 
        ON r.prodpack_product = p.product_id
    JOIN packing_tbl t 
        ON t.packing_id = r.prodpack_package
    JOIN measure_units m 
        ON m.measunit_id = r.prodpack_unit
    JOIN stock_inwards s 
        ON s.stockin_item = r.prodpack_id
    JOIN storestock_pricing e 
        ON e.strstk_item = r.prodpack_id
       AND s.stockin_id = e.strstk_refer

    WHERE p.product_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
    AND  h.slider_id=advid
    AND fIND_IN_SET(p.product_id,h.slider_product)
    AND e.strstk_discount != 0
AND (e.strstk_stock - e.strstk_reserved) > 0
      AND s.stockin_expiry >= CURRENT_DATE()) ranked
WHERE rn = 1;
END$$

CREATE  PROCEDURE `getProductforFrontendByIDandBatch` (IN `prdid` INT, IN `propackid` INT, IN `strstkid` INT)   BEGIN
SET @p0=prdid;
SET @p1=propackid;
SET @p2=strstkid;
CREATE TEMPORARY TABLE IF NOT EXISTS TempStockSelection (
    product_id INT,
    prodpack_id INT,
    strstk_discount DECIMAL(9,2),
    strstk_item INT,
    stockin_expiry DATE,
    product_name VARCHAR(200),
    product_display VARCHAR(200),
    product_maincategory  INT,
    product_subcategory INT,
    product_category  INT,
    product_prescrption TEXT,
    product_highlights TEXT,
    product_information TEXT,
    product_working TEXT,
    product_benefits TEXT,
    product_precautions TEXT,
    product_warnings TEXT,
    product_sideffects TEXT,
    product_antidot TEXT,
    product_specifications TEXT,
    brand_name VARCHAR(200),
    manuf_name VARCHAR(200),
    brand_id INT,
    prodpack_quantity INT,
    prodpack_maxstock INT,
    prodpack_minstock INT,
    prodpack_taxgroup DECIMAL(9,2),
    packing_type VARCHAR(200),
    measunit_name VARCHAR(200),
    measunit_shortname VARCHAR(200),
    strstk_msp DECIMAL(9,2),
    strstk_mrp DECIMAL(9,2),
    store_id INT,
    product_imageurl VARCHAR(200),
    stockin_batch VARCHAR(200),
    stock_available INT,
    strstk_id INT,
    selected INT,
    stockout INT,
    composition VARCHAR(200)
);

INSERT INTO TempStockSelection (
    product_id,
    prodpack_id,
    strstk_discount,
    strstk_item,
    stockin_expiry,
    product_name,
    product_display,
    product_maincategory,
    product_subcategory,
    product_category,
    product_prescrption,
    product_highlights,
    product_information,
    product_working,
    product_benefits,
    product_precautions,
    product_warnings,
    product_sideffects,
    product_antidot,
    product_specifications,
    brand_name,
     manuf_name,
    brand_id,
    prodpack_quantity,
    prodpack_maxstock,
    prodpack_minstock,
    prodpack_taxgroup,
    packing_type,
    measunit_name,
    measunit_shortname,
    strstk_msp,
    strstk_mrp,
    store_id,
    product_imageurl,
    stockin_batch,
    stock_available,
    strstk_id,
    selected,
    stockout,
    composition
)
SELECT 
    p.product_id,
    r.prodpack_id,
    e.strstk_discount,
    e.strstk_item,
    s.stockin_expiry,
    p.product_name,
    p.product_display,
    p.product_maincategory,
    p.product_subcategory,
    p.product_category,
    p.product_prescrption,
    p.product_highlights,
    p.product_information,
    p.product_working,
    p.product_benefits,
    p.product_precautions,
    p.product_warnings,
    p.product_sideffects,
    p.product_antidot,
    p.product_specifications,
    b.brand_name,
    f.manuf_name,
    b.brand_id,
    r.prodpack_quantity,
    r.prodpack_maxstock,
    r.prodpack_minstock,
    r.prodpack_taxgroup,
    k.packing_type,
    m.measunit_name,
    m.measunit_shortname,
    e.strstk_msp,
    e.strstk_mrp,
    st.store_id,
    (
        SELECT g.prodgal_url
        FROM product_gallery g
        WHERE g.prodgal_prodpack = r.prodpack_id
            AND g.prodgal_placedat = 1
            AND g.prodgal_medium = 1
            AND g.prodgal_publish = 1
            AND g.prodgal_status = 1
        ORDER BY g.prodgal_serial ASC
        LIMIT 1
    ) AS product_imageurl,
    s.stockin_batch,
    (e.strstk_stock - e.strstk_reserved) AS stock_available,
    e.strstk_id,
    (CASE WHEN r.prodpack_id = @p1 AND e.strstk_id = @p2 THEN 1 ELSE 0 END) AS selected,
    (CASE WHEN (GetProductTotalQuantity(@p0,e.strstk_item,e.strstk_id))>0 THEN 1 ELSE 0 END) AS stockout,
pc.pharma_name as composition
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
JOIN manufacturers_tbl f ON f.manuf_id=p.product_manufacturer
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id
WHERE p.product_id = @p0
  AND e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND e.strstk_product = @p0
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1
  AND s.stockin_expiry >= CURRENT_DATE()
  AND r.prodpack_id = @p1
  AND e.strstk_id = @p2;
  
  INSERT INTO TempStockSelection (
    product_id,
    prodpack_id,
    strstk_discount,
    strstk_item,
    stockin_expiry,
    product_name,
    product_display,
    product_maincategory,
    product_subcategory,
    product_category,
    product_prescrption,
    product_highlights,
    product_information,
    product_working,
    product_benefits,
    product_precautions,
    product_warnings,
    product_sideffects,
    product_antidot,
    product_specifications,
    brand_name,
    manuf_name,
    brand_id,
    prodpack_quantity,
    prodpack_maxstock,
    prodpack_minstock,
    prodpack_taxgroup,
    packing_type,
    measunit_name,
    measunit_shortname,
    strstk_msp,
    strstk_mrp,
    store_id,
    product_imageurl,
    stockin_batch,
    stock_available,
    strstk_id,
    selected,
    stockout,
      composition
)
SELECT x.product_id,
    x.prodpack_id,
    x.strstk_discount,
    x.strstk_item,
    x.stockin_expiry,
    x.product_name,
    x.product_display,
    x.product_maincategory,
    x.product_subcategory,
    x.product_category,
    x.product_prescrption,
    x.product_highlights,
    x.product_information,
    x.product_working,
    x.product_benefits,
    x.product_precautions,
    x.product_warnings,
    x.product_sideffects,
    x.product_antidot,
    x.product_specifications,
    x.brand_name,
    x.manuf_name,
    x.brand_id,
    x.prodpack_quantity,
    x.prodpack_maxstock,
    x.prodpack_minstock,
    x.prodpack_taxgroup,
    x.packing_type,
    x.measunit_name,
    x.measunit_shortname,
    x.strstk_msp,
    x.strstk_mrp,
    x.store_id,
    x.product_imageurl,
    x.stockin_batch,
    x.stock_available,
    x.strstk_id,
    x.selected,
    x.stockout,
    x.composition
    FROM (SELECT ( @row_number := @row_number + 1) AS virtual_id,
    p.product_id,
    r.prodpack_id,
    e.strstk_discount,
    e.strstk_item,
    s.stockin_expiry,
    p.product_name,
    p.product_display,
    p.product_maincategory,
    p.product_subcategory,
    p.product_category,
    p.product_prescrption,
    p.product_highlights,
    p.product_information,
    p.product_working,
    p.product_benefits,
    p.product_precautions,
    p.product_warnings,
    p.product_sideffects,
    p.product_antidot,
    p.product_specifications,
    b.brand_name,
     f.manuf_name,
    b.brand_id,
    r.prodpack_quantity,
    r.prodpack_maxstock,
    r.prodpack_minstock,
    r.prodpack_taxgroup,
    k.packing_type,
    m.measunit_name,
    m.measunit_shortname,
    e.strstk_msp,
    e.strstk_mrp,
    st.store_id,
    (
        SELECT g.prodgal_url
        FROM product_gallery g
        WHERE g.prodgal_prodpack = r.prodpack_id
            AND g.prodgal_placedat = 1
            AND g.prodgal_medium = 1
            AND g.prodgal_publish = 1
            AND g.prodgal_status = 1
        ORDER BY g.prodgal_serial ASC
        LIMIT 1
    ) AS product_imageurl,
    s.stockin_batch,
    (e.strstk_stock - e.strstk_reserved) AS stock_available,
    e.strstk_id,
    (CASE WHEN r.prodpack_id = @p1 AND e.strstk_id = @p2 THEN 1 ELSE 0 END) AS selected,
    (CASE WHEN (GetProductTotalQuantity(@p0,e.strstk_item,e.strstk_id))>0 THEN 1 ELSE 0 END) AS stockout,
          pc.pharma_name AS composition
    /*,
    stockout*/
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
          JOIN manufacturers_tbl f ON f.manuf_id=p.product_manufacturer
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id INNER JOIN stores_tbl st ON st.store_id=e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id

WHERE p.product_id = @p0 
  AND e.strstk_product = p.product_id
  AND  e.strstk_stock>0
  AND e.strstk_item = s.stockin_item
  AND e.strstk_product = @p0
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1
  AND s.stockin_expiry >= CURRENT_DATE()
ORDER BY selected DESC, s.stockin_expiry ASC, e.strstk_discount DESC,(e.strstk_stock-e.strstk_reserved) DESC) AS x WHERE (GetProductTotalQuantity(@p0,x.strstk_item,x.strstk_id))>0 and x.selected!=1 AND x.prodpack_id != @p1 GROUP BY x.prodpack_id;

  SELECT * FROM TempStockSelection;
  
SELECT i.prodingred_quantity,i.prodingred_unit,c.ingred_name,c.ingred_formula,c.ingred_drugbankid,c.ingred_codes,c.ingred_notes,c.ingred_drugclasses,t.ingredtype_type FROM product_ingredients i JOIN ingredients_tbl c on c.ingred_id=i.prodingred_ingredient JOIN ingredient_types t ON t.ingredtype_id=c.ingred_type WHERE i.prodingred_product=prdid;

SELECT f.faq_question,f.faq_answer,f.faq_id FROM faq_table f WHERE f.faq_item=prdid;

select g.prodgal_url,r.prodpack_id from product_gallery g INNER JOIN product_packing r ON  g.prodgal_prodpack = r.prodpack_id  INNER JOIN products_tbl p ON r.prodpack_product=p.product_id INNER JOIN packing_tbl k on k.packing_id=r.prodpack_package where  g.prodgal_placedat = 2 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 and p.product_status=1 and p.product_id=prdid;

END$$

CREATE  PROCEDURE `getProductforFrontendByIDandBatchOLD` (IN `prdid` INT, IN `propackid` INT)   BEGIN
/*SELECT p.product_id,r.prodpack_id,e.strstk_discount,p.product_name,p.product_display,p.product_maincategory,p.product_subcategory,p.product_category,p.product_prescrption,p.product_highlights,p.product_information,p.product_working,p.product_benefits,p.product_precautions,p.product_warnings,p.product_sideffects,p.product_antidot,p.product_specifications,b.brand_name,b.brand_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,k.packing_type,m.measunit_name,m.measunit_shortname,e.strstk_msp,e.strstk_mrp,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl FROM products_tbl p JOIN brands_tbl b on b.brand_id=p.product_brand INNER JOIN product_packing r ON r.prodpack_product=p.product_id INNER JOIN packing_tbl k on k.packing_id=r.prodpack_package INNER JOIN measure_units m ON m.measunit_id=r.prodpack_unit INNER JOIN storestock_pricing e ON   e.strstk_item=r.prodpack_id INNER JOIN stock_inwards s on s.stockin_id=e.strstk_refer WHERE p.product_id=prdid and e.strstk_product=p.product_id and e.strstk_item=s.stockin_item and e.strstk_product=prdid and p.product_status=1 and m.measunit_status=1 and s.stockin_batch=batchid and p.product_online = 1 and p.product_publish=1 and r.prodpack_status=1 and k.packing_status=1 and s.stockin_expiry >= CURRENT_DATE() order by s.stockin_expiry asc;
*/
SELECT
    p.product_id,
    r.prodpack_id,
    e.strstk_discount,
    s.stockin_expiry,
    p.product_name,
    p.product_display,
    p.product_maincategory,
    p.product_subcategory,
    p.product_category,
    p.product_prescrption,
    p.product_highlights,
    p.product_information,
    p.product_working,
    p.product_benefits,
    p.product_precautions,
    p.product_warnings,
    p.product_sideffects,
    p.product_antidot,
    p.product_specifications,
    b.brand_name,
    b.brand_id,
    r.prodpack_quantity,
    r.prodpack_maxstock,
    r.prodpack_minstock,
    r.prodpack_taxgroup,
    k.packing_type,
    m.measunit_name,
    m.measunit_shortname,
    e.strstk_msp,
    e.strstk_mrp,
    st.store_id
    ,
    (SELECT g.prodgal_url
     FROM product_gallery g
     WHERE g.prodgal_prodpack = r.prodpack_id
       AND g.prodgal_placedat = 1
       AND g.prodgal_medium = 1
       AND g.prodgal_publish = 1
       AND g.prodgal_status = 1
     ORDER BY g.prodgal_serial ASC
     LIMIT 1) AS product_imageurl,
    s.stockin_batch, (e.strstk_stock-e.strstk_reserved) as stock_available , e.strstk_id, (case when r.prodpack_id = propackid then 1 else 0 end) as selected
FROM products_tbl p
JOIN brands_tbl b ON b.brand_id = p.product_brand
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id INNER JOIN stores_tbl st ON st.store_id=e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
INNER JOIN (
    -- Select the highest discount for each prodpack_id and expiry date
    select x.strstk_item, x.stockin_expiry, x.max_discount,x.stock_available,x.strstk_mrp,x.strstk_msp  from (SELECT ( @row_number := @row_number + 1) AS virtual_id,e1.strstk_item, s1.stockin_expiry, (e1.strstk_discount) AS max_discount,(e1.strstk_stock-e1.strstk_reserved) as stock_available ,e1.strstk_mrp,e1.strstk_msp FROM storestock_pricing e1 JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer WHERE e1.strstk_product = prdid  AND (e1.strstk_stock-e1.strstk_reserved)>0 AND s1.stockin_expiry>= CURRENT_DATE() ORDER by s1.stockin_expiry asc, e1.strstk_discount DESC, e1.strstk_stock DESC) as x group by x.strstk_item
) AS Best ON Best.strstk_item = e.strstk_item 
        AND Best.stockin_expiry = s.stockin_expiry 
        AND Best.max_discount = e.strstk_discount
WHERE p.product_id = prdid 
  AND e.strstk_product = p.product_id
  AND  e.strstk_stock>0
  AND e.strstk_item = s.stockin_item
  AND e.strstk_product = prdid
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1
  AND s.stockin_expiry >= CURRENT_DATE()
   AND (e.strstk_stock-e.strstk_reserved)>0  GROUP by  r.prodpack_id
ORDER BY s.stockin_expiry ASC, e.strstk_discount DESC,(e.strstk_stock-e.strstk_reserved) DESC;
/*SELECT
    p.product_id,
    r.prodpack_id,
    e.strstk_discount,
    p.product_name,
    p.product_display,
    p.product_maincategory,
    p.product_subcategory,
    p.product_category,
    p.product_prescrption,
    p.product_highlights,
    p.product_information,
    p.product_working,
    p.product_benefits,
    p.product_precautions,
    p.product_warnings,
    p.product_sideffects,
    p.product_antidot,
    p.product_specifications,
    b.brand_name,
    b.brand_id,
    r.prodpack_quantity,
    r.prodpack_maxstock,
    r.prodpack_minstock,
    r.prodpack_taxgroup,
    k.packing_type,
    m.measunit_name,
    m.measunit_shortname,
    e.strstk_msp,
    e.strstk_mrp,
    st.store_id
    ,
    (SELECT g.prodgal_url
     FROM product_gallery g
     WHERE g.prodgal_prodpack = r.prodpack_id
       AND g.prodgal_placedat = 1
       AND g.prodgal_medium = 1
       AND g.prodgal_publish = 1
       AND g.prodgal_status = 1
     ORDER BY g.prodgal_serial ASC
     LIMIT 1) AS product_imageurl,
    s.stockin_batch, e.strstk_stock-e.strstk_reserved as stock_available , e.strstk_id, (case when r.prodpack_id = propackid then 1 else 0 end) as selected
FROM products_tbl p
JOIN brands_tbl b ON b.brand_id = p.product_brand
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id INNER JOIN stores_tbl st ON st.store_id=e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE p.product_id = prdid 
  AND e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND e.strstk_product = prdid 
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1
  AND s.stockin_expiry >= CURRENT_DATE()
  AND e.strstk_discount=(SELECT MAX(e3.strstk_discount) FROM storestock_pricing e3 JOIN stock_inwards se ON se.stockin_id=e3.strstk_refer WHERE e3.strstk_item=r.prodpack_id and e3.strstk_product=prdid)
  AND s.stockin_expiry = (
    SELECT MIN(s2.stockin_expiry)
    FROM stock_inwards s2
    INNER JOIN storestock_pricing e2 ON e2.strstk_refer = s2.stockin_id
    WHERE e2.strstk_item = r.prodpack_id
      AND e2.strstk_product = prdid
  )  order by selected desc;*/
  
SELECT i.prodingred_quantity,i.prodingred_unit,c.ingred_name,c.ingred_formula,c.ingred_drugbankid,c.ingred_codes,c.ingred_notes,c.ingred_drugclasses,t.ingredtype_type FROM product_ingredients i JOIN ingredients_tbl c on c.ingred_id=i.prodingred_ingredient JOIN ingredient_types t ON t.ingredtype_id=c.ingred_type WHERE i.prodingred_product=prdid;

SELECT f.faq_question,f.faq_answer,f.faq_id FROM faq_table f WHERE f.faq_item=prdid;

select g.prodgal_url,r.prodpack_id from product_gallery g INNER JOIN product_packing r ON  g.prodgal_prodpack = r.prodpack_id  INNER JOIN products_tbl p ON r.prodpack_product=p.product_id INNER JOIN packing_tbl k on k.packing_id=r.prodpack_package where  g.prodgal_placedat = 2 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 and p.product_status=1 and p.product_id=prdid;

END$$

CREATE  PROCEDURE `getProductList` ()   BEGIN
	SELECT x.product_id, x.product_name, x.product_display 
    FROM products_tbl x 
    WHERE x.product_status = 1 
    ORDER BY x.product_name;
END$$

CREATE  PROCEDURE `getProductListByKeyword` (IN `keyword` TEXT)   BEGIN
/*SELECT x.product_display,x.product_id,x.prodpack_id,x.prodpack_quantity,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.strstk_discount,x.packing_type,x.strstk_id, x.product_imageurl,x.product_prescrption   FROM (SELECT (@row_number := @row_number + 1) AS virtual_id,
       
        p.product_name AS product_display,
    p.product_id,
    r.prodpack_id,
                                                                                                       r.prodpack_quantity,
    e.strstk_item,
    m.measunit_shortname,
    e.strstk_msp,
    e.strstk_mrp,
         k.packing_type,                                                                            e.strstk_discount,
    st.store_id,
    (
        SELECT g.prodgal_url
        FROM product_gallery g
        WHERE g.prodgal_prodpack = r.prodpack_id
            AND g.prodgal_placedat = 1
            AND g.prodgal_medium = 1
            AND g.prodgal_publish = 1
            AND g.prodgal_status = 1
        ORDER BY g.prodgal_serial ASC
        LIMIT 1
    ) AS product_imageurl,
    e.strstk_id,p.product_prescrption   
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
   LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
              (
    p.product_name LIKE CONCAT('%', keyword, '%') OR
    pc.pharma_name LIKE CONCAT('%', keyword, '%') OR
    b.brand_name LIKE CONCAT('%', keyword, '%') OR
    pp.prodclass_name LIKE CONCAT('%', keyword, '%')
)   
  AND e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc LIMIT 20
  ) as x group by x.product_id;*/
  
  SELECT product_name,
product_id,
prodpack_id,
prodpack_quantity,
measunit_shortname,
strstk_mrp,
strstk_msp,
strstk_discount,
packing_type,
strstk_id, 
product_imageurl,
product_prescrption
FROM (SELECT 
      p.product_name,
    p.product_id,
    r.prodpack_id,
r.prodpack_quantity,
    e.strstk_item,
    m.measunit_shortname,
    e.strstk_msp,
    e.strstk_mrp,
    k.packing_type,  
    e.strstk_discount,
    st.store_id,
    (
        SELECT g.prodgal_url
        FROM product_gallery g
        WHERE g.prodgal_prodpack = r.prodpack_id
            AND g.prodgal_placedat = 1
            AND g.prodgal_medium = 1
            AND g.prodgal_publish = 1
            AND g.prodgal_status = 1
        ORDER BY g.prodgal_serial ASC
        LIMIT 1
    ) AS product_imageurl,
    e.strstk_id,p.product_prescrption,  
ROW_NUMBER() OVER (
            PARTITION BY e.strstk_item
            ORDER BY
                s.stockin_expiry ASC,
                e.strstk_discount DESC,
                (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn
 
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
   LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
              (
    p.product_name LIKE CONCAT('%', keyword, '%') OR
    pc.pharma_name LIKE CONCAT('%', keyword, '%') OR
    b.brand_name LIKE CONCAT('%', keyword, '%') OR
    pp.prodclass_name LIKE CONCAT('%', keyword, '%')
)   
  AND e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
  AND (e.strstk_stock-e.strstk_reserved) > 0 
  ) ranked where rn=1 ;
  
  END$$

CREATE  PROCEDURE `getProductListOfCategories` (IN `mainctgry` INT, IN `subctgry` INT, IN `ctgry` INT)   BEGIN
	SELECT p.product_id,p.product_name,p.product_display,p.product_generic,p.product_maincategory,p.product_subcategory,p.product_category,p.product_status  FROM products_tbl p WHERE p.product_maincategory=mainctgry AND p.product_subcategory=subctgry AND p.product_category=ctgry AND p.product_status >0 AND p.product_publish > 0;
END$$

CREATE  PROCEDURE `getProductPackages` (IN `prodid` INT)   BEGIN
	SELECT x.prodpack_id, fnGetProductFromPack(x.prodpack_id, 0) AS package
    FROM product_packing x 
    WHERE x.prodpack_product = prodid AND x.prodpack_status = 1 
    ORDER BY x.prodpack_package;
END$$

CREATE  PROCEDURE `getProductPacksForIntend` (IN `prodid` INT, IN `storeid` INT)   BEGIN
	DECLARE listprods TEXT DEFAULT '';
/*
	SELECT GROUP_CONCAT(p.prodpack_product) INTO listprods 
    FROM `storestock_master` xx
    LEFT JOIN product_packing p ON p.prodpack_id = xx.storestock_item 
    LEFT JOIN products_tbl t ON t.product_id = p.prodpack_product 
    WHERE xx.storestock_store = storeid;
*/
	SELECT x.prodpack_id, fnGetProductFromPack(x.prodpack_id, 0) AS package, x.prodpack_hsn, 
    (SELECT (s.storestock_available - s.storestock_reserved) 
    FROM storestock_master s WHERE s.storestock_store = storeid AND s.storestock_item = x.prodpack_id) AS available 
    FROM product_packing x 
    WHERE x.prodpack_product = prodid AND x.prodpack_status = 1 /* AND FIND_IN_SET(x.prodpack_product, listprods) */
    ORDER BY x.prodpack_package;  
END$$

CREATE  PROCEDURE `getProductSearchResults` (IN `searchs` VARCHAR(100))   BEGIN
	/*SELECT p.product_id, p.product_name, x.manuf_name
    FROM products_tbl p 
    LEFT JOIN manufacturers_tbl x ON x.manuf_id = p.product_manufacturer
    WHERE p.product_name LIKE CONCAT(searchs , '%') 
    AND p.product_status = 1 
    GROUP BY p.product_manufacturer
    ORDER BY p.product_name;*/
    SELECT p.product_id, p.product_name, x.manuf_name
    FROM products_tbl p 
    LEFT JOIN manufacturers_tbl x ON x.manuf_id = p.product_manufacturer
    WHERE p.product_name LIKE CONCAT(searchs , '%') 
    AND p.product_status = 1 
   
    ORDER BY p.product_name;
END$$

CREATE  PROCEDURE `getProductsInstoreNew` (IN `storeid` INT, IN `classcat` INT)   BEGIN
	DECLARE listclass TEXT DEFAULT ''; 

    SELECT GROUP_CONCAT( REPLACE(CONCAT_WS(',', IF(t.product_maincategory > 0, t.product_maincategory, ' ') , IF(t.product_subcategory > 0, t.product_subcategory, ' '), IF(t.product_category > 0, t.product_category, ' ')), ', ', '')) INTO listclass 
    FROM `storestock_pricing` xx
    LEFT JOIN product_packing p ON p.prodpack_id = xx.strstk_item AND xx.strstk_store = storeid  
    LEFT JOIN products_tbl t ON t.product_id = p.prodpack_product 
    WHERE xx.strstk_store = storeid AND (xx.strstk_inward - xx.strstk_reserved) > 0;

	IF classcat > 0 THEN 
    	SELECT sp.strstk_id, sp.strstk_item, fnGetProductFromPack(sp.strstk_item, 0) AS product, 
        s.stockin_batch, s.stockin_expiry, sp.strstk_stack, 
        (sp.strstk_stock - sp.strstk_reserved) AS stock, sp.strstk_store, sp.strstk_refer
        FROM storestock_pricing sp 
        LEFT JOIN stock_inwards s ON s.stockin_id = sp.strstk_refer
        LEFT JOIN product_packing y ON y.prodpack_id = sp.strstk_item
		LEFT JOIN products_tbl p ON p.product_id = y.prodpack_product 
		WHERE sp.strstk_store = storeid AND (sp.strstk_stock - sp.strstk_reserved) > 0 
        AND (p.product_maincategory = classcat OR p.product_subcategory = classcat 
        OR p.product_category = classcat) 
        UNION SELECT 0, 0, 0, 0, 0, 0, 0, 0, 0 
        ORDER BY 3 /*p.product_display*/ ;
    ELSE
    	SELECT sp.strstk_id, sp.strstk_item, fnGetProductFromPack(sp.strstk_item, 0) AS product,
        s.stockin_batch, s.stockin_expiry, sp.strstk_stack, 
        (sp.strstk_stock - sp.strstk_reserved) AS stock, sp.strstk_store, sp.strstk_refer 
        FROM storestock_pricing sp 
        LEFT JOIN stock_inwards s ON s.stockin_id = sp.strstk_refer
        WHERE sp.strstk_store = storeid AND (sp.strstk_stock - sp.strstk_reserved) > 0
        UNION SELECT 0, 0, 0, 0, 0, 0, 0, 0, 0 ;
    END IF;
    
    SELECT x.prodclass_id AS id, x.prodclass_name AS pclname, x.prodclass_parent AS parent, x.prodclass_serial AS serial, x.prodclass_status AS pstatus, x.prodclass_counter AS cntr, x.prodclass_seq AS seq
    FROM product_classes x 
    WHERE FIND_IN_SET(x.prodclass_id, listclass) 
    ORDER BY seq, cntr,  serial;
    #SELECT listclass; 
END$$

CREATE  PROCEDURE `getProductsofManufacturer` (IN `manufid` INT)   BEGIN
	SELECT p.product_id, p.product_name, p.product_display
    FROM products_tbl p 
    WHERE p.product_manufacturer = manufid AND p.product_status = 1 
    ORDER BY p.product_display;
END$$

CREATE  PROCEDURE `GetProductStockk` (IN `p_product_id` INT, IN `p_item_id` INT, IN `p_stock_id` INT, IN `p_required_qty` INT)   BEGIN
    -- Declare variables
    DECLARE mrp, msp, disc DOUBLE DEFAULT 0;
    DECLARE qtys, strk,total_allocated,stock_available,allocated_qty INT DEFAULT 0;
   

    -- Retrieve product pricing details
    SELECT e1.strstk_mrp, e1.strstk_msp, e1.strstk_discount, 
           (e1.strstk_stock - e1.strstk_reserved), e1.strstk_id 
    INTO mrp, msp, disc, qtys, strk 
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = p_product_id  
      AND e1.strstk_item = p_item_id 
      AND e1.strstk_id = p_stock_id;

    -- Create temporary table
    CREATE TEMPORARY TABLE IF NOT EXISTS TempStockSelection (
        strstk_id INT,
        strstk_item INT,
        strstk_stock INT,
        stockin_expiry DATE,
        max_discount DECIMAL(10,2),
        allocated_quantity INT,
        strstk_mrp DECIMAL(10,2),
        strstk_msp DECIMAL(10,2)
    );
 -- Insert eligible stock entries sorted by expiry
    CREATE TEMPORARY TABLE IF NOT EXISTS TempStockData AS
    SELECT 
        e1.strstk_id, 
        e1.strstk_item, 
        (e1.strstk_stock - e1.strstk_reserved) AS available_stock, 
        s1.stockin_expiry, 
        e1.strstk_discount, 
        e1.strstk_mrp, 
        e1.strstk_msp
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = p_product_id
      AND e1.strstk_item = p_item_id
      AND (e1.strstk_stock - e1.strstk_reserved) > 0
      AND s1.stockin_expiry >= CURRENT_DATE()
       AND e1.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) 
      AND e1.strstk_msp = CAST(msp AS DECIMAL(10,2)) 
      AND e1.strstk_discount = CAST(disc AS DECIMAL(10,2))
    ORDER BY s1.stockin_expiry ASC,e1.strstk_discount DESC,(e1.strstk_stock - e1.strstk_reserved) DESC;
    -- Process stock entries dynamically
    WHILE total_allocated < p_required_qty AND EXISTS (SELECT 1 FROM TempStockData) DO
        -- Get the next available stock
        SELECT strstk_id, strstk_item, available_stock, stockin_expiry, 
               strstk_discount, strstk_mrp, strstk_msp
        INTO @stock_id, @stock_item, stock_available, @stock_expiry, 
             @stock_discount, @stock_mrp, @stock_msp
        FROM TempStockData
        ORDER BY stockin_expiry ASC,strstk_discount DESC, available_stock DESC
        LIMIT 1;

        -- Determine allocated quantity
        SET allocated_qty = LEAST(stock_available, p_required_qty - total_allocated);
        
        -- Insert into TempStockSelection
        INSERT INTO TempStockSelection (
            strstk_id, strstk_item, strstk_stock, stockin_expiry, max_discount, allocated_quantity, strstk_mrp, strstk_msp
        ) VALUES (
            @stock_id, @stock_item, stock_available, @stock_expiry, 
            @stock_discount, allocated_qty, @stock_mrp, @stock_msp
        );

        -- Update total allocated quantity
        SET total_allocated = total_allocated + allocated_qty;

        -- Remove processed row from TempStockData
        DELETE FROM TempStockData WHERE strstk_id = @stock_id;
    END WHILE;

    -- Return the selected stock with allocated quantities
    SELECT * FROM TempStockSelection;

    -- Cleanup
    DROP TEMPORARY TABLE IF EXISTS TempStockSelection;
    DROP TEMPORARY TABLE IF EXISTS TempStockData;
END$$

CREATE  PROCEDURE `getProductSubcategoriesList` (IN `categ` INT)   BEGIN
	SELECT x.prodclass_id, x.prodclass_name 
    FROM product_classes x 
    WHERE x.prodclass_parent = categ AND x.prodclass_status = 1
    ORDER BY x.prodclass_serial, x.prodclass_name;
END$$

CREATE  PROCEDURE `getProductSubclasses` (IN `prclsid` INT)   BEGIN
	DECLARE parents, subs TEXT DEFAULT '';
    
  
    
    SELECT GROUP_CONCAT(x.prodclass_id) INTO parents 
    FROM product_classes x 
    WHERE x.prodclass_parent = prclsid;
   
    SELECT prodclass_id AS id, prodclass_name AS pclname, prodclass_parent AS parent, prodclass_serial AS serial, prodclass_status AS pstatus, IF(prodclass_parent = prclsid, 0, 1) AS cntr, IF(prodclass_parent = prclsid, prodclass_id, CONCAT(prodclass_parent, '_', prodclass_parent)) AS seq, prodclass_thumb AS thumb,(SELECT COUNT(p.prodclass_id) 
     FROM product_classes p 
     WHERE p.prodclass_parent = pp.prodclass_id) AS subcount
    FROM product_classes pp
    WHERE FIND_IN_SET(prodclass_id, parents) OR FIND_IN_SET(prodclass_parent, parents)
    ORDER BY seq, serial;

END$$

CREATE  PROCEDURE `getProductSubclassesSeq` (IN `prclsid` INT)   BEGIN
	DECLARE parents, subs TEXT DEFAULT '';
    
    SELECT GROUP_CONCAT(x.prodclass_id) INTO parents 
    FROM product_classes_seq x 
    WHERE x.prodclass_parent = prclsid;
    
    SELECT parents;
    
    SELECT prodclass_id AS id, prodclass_name AS pclname, prodclass_parent AS parent, prodclass_serial AS serial, prodclass_status AS pstatus, prodclass_counter AS cntr, IF(prodclass_parent = prclsid, prodclass_id, CONCAT(prodclass_parent, '_', prodclass_parent)) AS seq, prodclass_thumb AS thumb
    FROM product_classes_seq
    WHERE FIND_IN_SET(prodclass_id, parents) OR FIND_IN_SET(prodclass_parent, parents)
    ORDER BY seq, serial;
END$$

CREATE  PROCEDURE `getProgramById` (IN `id` INT)   begin

SELECT p.progr_id,p.progr_menu,p.progr_url,p.progr_icon,p.progr_serial,p.progr_parent,p.progr_status from programs_table p WHERE p.progr_id = id;

END$$

CREATE  PROCEDURE `getProgramListForMenu` ()   BEGIN 

    SELECT p.progr_id AS progmid, p.progr_menu AS progmname, p.progr_url AS progmurl, p.progr_icon AS progmicon, p.progr_parent AS progmparent, IF(p.progr_parent = 0, p.progr_url, z.progr_menu) AS progmparentname , p.progr_serial AS programserial, IF(p.progr_parent = 0, p.progr_id, CONCAT(p.progr_parent, '_', p.progr_id)) AS seq, p.progr_status AS programstatus
    FROM programs_table p 
    LEFT JOIN programs_table z ON z.progr_id = p.progr_parent
    WHERE p.progr_status = 1 
    ORDER BY progmparent, programserial, progmid asc,seq;
        
END$$

CREATE  PROCEDURE `getProgramListForRoles` ()   BEGIN 

    SELECT p.progr_id AS progmid, p.progr_menu AS progmname, p.progr_url AS progmurl, p.progr_icon AS progmicon, p.progr_parent AS progmparent, IF(p.progr_parent = 0, p.progr_url, z.progr_menu) AS progmparentname , p.progr_serial AS programserial, IF(p.progr_parent = 0, p.progr_id, CONCAT(p.progr_parent, '_', CAST(p.progr_id AS CHAR(10)))) AS seq, p.progr_status AS programstatus
    FROM programs_table p 
    LEFT JOIN programs_table z ON z.progr_id = p.progr_parent
    WHERE p.progr_status = 1 
    ORDER BY seq, programserial;
        
END$$

CREATE  PROCEDURE `getProgramRolesById` (IN `id` INT)   BEGIN 
	DECLARE rolename varchar(50);
	DECLARE rolepgms mediumtext;
	
    SELECT x.usrprog_name, x.usrprog_programs INTO rolename, rolepgms
    FROM user_program x WHERE x.usrprog_id = id; 
    
    SELECT p.progr_id AS progmid, p.progr_menu AS progmname, p.progr_url AS progmurl, p.progr_icon AS progmicon, p.progr_parent AS progmparent, IF(p.progr_parent = 0, p.progr_url, z.progr_menu) AS progmparentname , p.progr_serial AS programserial, IF(p.progr_parent = 0, p.progr_id, CONCAT(p.progr_parent, '_', CAST(p.progr_id AS CHAR(10)))) AS seq, p.progr_status AS programstatus , IF(FIND_IN_SET(p.progr_id, rolepgms), 1, 0) AS selected
    FROM programs_table p 
    LEFT JOIN programs_table z ON z.progr_id = p.progr_parent
    WHERE p.progr_status = 1 
    ORDER BY seq, programserial;
      
    SELECT rolename, rolepgms;
END$$

CREATE  PROCEDURE `getProgramsForDropdown` ()   BEGIN

	SELECT p.progr_id AS progmid, p.progr_menu AS progmname, p.progr_url AS progmurl, p.progr_icon AS progmicon, p.progr_parent AS progmparent, IF(p.progr_parent = 0, p.progr_url, z.progr_menu) AS progmparentname , p.progr_serial AS programserial, IF(p.progr_parent = 0, p.progr_id, CONCAT(p.progr_parent, '_', p.progr_id)) AS seq, p.progr_status AS programstatus
    FROM programs_table p 
    LEFT JOIN programs_table z ON z.progr_id = p.progr_parent
    ORDER BY seq, programserial;

END$$

CREATE  PROCEDURE `getPurchaseDetails` (IN `storeid` INT, IN `fromdate` DATE, IN `todate` DATE)   BEGIN
IF storeid >1 THEN
SELECT i.invoice_id, i.invoice_number, i.invoice_vendertype, i.invoice_vendor, i.invoice_vendorgst, i.invoice_delstore, i.invoice_delgst,i.invoice_dated, i.invoice_amount, i.invoice_cgst, i.invoice_sgst, i.invoice_payby, id.invdet_item, id.invdet_qty, id.invdet_free, id.invdet_schdisc, id.invdet_price, id.invdet_hsn, id.invdet_cstpc, id.invdet_cst, id.invdet_sstpc, id.invdet_sst, id.invdet_mrp, id.invdet_ptr, id.invdet_taxamt, id.invdet_discpc, id.invdet_discount, id.invdet_batch, id.invdet_expiry, fnGetVendorName(i.invoice_vendertype, i.invoice_vendor) AS vendor, fnGetProductFromPack(id.invdet_item, 1) AS item, pp.prodpack_product, p.product_name, p.product_generic, p.product_maincategory, g.genmed_name, pc.prodclass_name, s.store_name FROM invoices_tbl i LEFT JOIN invoice_details id ON id.invdet_invoice= i.invoice_id LEFT JOIN product_packing pp ON pp.prodpack_id=id.invdet_item LEFT JOIN products_tbl p ON p.product_id=pp.prodpack_product LEFT JOIN generic_medicines g ON g.genmed_id=p.product_generic LEFT JOIN product_classes pc ON pc.prodclass_id = p.product_maincategory LEFT JOIN stores_tbl s ON s.store_id= i.invoice_delstore WHERE i.invoice_delstore=storeid AND i.invoice_dated BETWEEN fromdate AND todate;
ELSE
SELECT i.invoice_id, i.invoice_number, i.invoice_vendertype, i.invoice_vendor, i.invoice_vendorgst, i.invoice_delstore, i.invoice_delgst,i.invoice_dated, i.invoice_amount, i.invoice_cgst, i.invoice_sgst, i.invoice_payby, id.invdet_item, id.invdet_qty, id.invdet_free, id.invdet_schdisc, id.invdet_price, id.invdet_hsn, id.invdet_cstpc, id.invdet_cst, id.invdet_sstpc, id.invdet_sst, id.invdet_mrp, id.invdet_ptr, id.invdet_taxamt, id.invdet_discpc, id.invdet_discount, id.invdet_batch, id.invdet_expiry, fnGetVendorName(i.invoice_vendertype, i.invoice_vendor) AS vendor, fnGetProductFromPack(id.invdet_item, 1) AS item, pp.prodpack_product, p.product_name, p.product_generic, p.product_maincategory, g.genmed_name, pc.prodclass_name, s.store_name FROM invoices_tbl i LEFT JOIN invoice_details id ON id.invdet_invoice= i.invoice_id LEFT JOIN product_packing pp ON pp.prodpack_id=id.invdet_item LEFT JOIN products_tbl p ON p.product_id=pp.prodpack_product LEFT JOIN generic_medicines g ON g.genmed_id=p.product_generic LEFT JOIN product_classes pc ON pc.prodclass_id = p.product_maincategory LEFT JOIN stores_tbl s ON s.store_id= i.invoice_delstore WHERE i.invoice_dated BETWEEN fromdate AND todate;
END IF;
END$$

CREATE  PROCEDURE `getPurchasereturnBillData` ()   BEGIN
SELECT p.returnbill_id,p.returnbill_number,p.returnbill_dated,p.returnbill_vendertype,p.returnbill_vendor,p.returnbill_amt,p.returnbill_subamt,p.returnbill_difnce ,fnGetVendorName(p.returnbill_vendertype, p.returnbill_vendor) AS vendor,p.returnbill_status  FROM purchasereturn_tbl p ORDER BY p.returnbill_crtdon DESC;

END$$

CREATE  PROCEDURE `getReasonByIssueId` (IN `id` INT)   BEGIN
SELECT t.reason_help,t.reason_issue from tbl_help_desk_reason t WHERE t.reason_id=id and t.reason_status=1;

END$$

CREATE  PROCEDURE `getRetunOrderReasons` (IN `catId` INT)   BEGIN
SELECT r.return_id,r.return_catid,r.return_category FROM returnreason_tbl r GROUP BY r.return_catid;
SELECT r.return_id,r.return_catid,r.return_reason FROM returnreason_tbl r WHERE r.return_catid=catId;
END$$

CREATE  PROCEDURE `getRoqStock` (IN `itemid` INT)   BEGIN
SELECT p.prodpack_id, p.prodpack_roq, (x.strstk_stock-x.strstk_reserved) AS stock FROM product_packing p LEFT JOIN storestock_pricing x ON p.prodpack_id = x.strstk_item WHERE p.prodpack_roq <= (x.strstk_stock - x.strstk_reserved) AND p.prodpack_id=itemid;
END$$

CREATE  PROCEDURE `getSaleDetiles` (IN `storeid` INT, IN `saledate` DATE)   BEGIN
IF storeid >1 THEN
SELECT a.bill_store, a.bill_date,a.bill_name, a.bill_no, a.bill_pharmacist, a.bill_customer, a.bill_payby, b.billit_item, b.billit_name, b.billit_hsn, b.billit_mfr, b.billit_batch, b.billit_expiry, b.billit_sched, b.billit_mrp, b.billit_discount, b.billit_rate, b.billit_qty, b.billit_amount, b.billit_cgstpc, b.billit_sgstpc, c.store_name, e.product_generic, g.genmed_name, f.brand_name FROM bills_table a LEFT JOIN bill_items b ON b.billit_id= a.bill_id LEFT JOIN stores_tbl c ON c.store_id=a.bill_store LEFT JOIN product_packing d ON d.prodpack_id=b.billit_item LEFT JOIN products_tbl e ON e.product_id= d.prodpack_product LEFT JOIN generic_medicines g ON g.genmed_id=e.product_generic LEFT JOIN brands_tbl f ON f.brand_id=e.product_brand WHERE a.bill_store=storeid AND a.bill_date=saledate;
ELSE
SELECT a.bill_store, a.bill_date,a.bill_name, a.bill_no, a.bill_pharmacist, a.bill_customer, a.bill_payby, b.billit_item, b.billit_name, b.billit_hsn, b.billit_mfr, b.billit_batch, b.billit_expiry, b.billit_sched, b.billit_mrp, b.billit_discount, b.billit_rate, b.billit_qty, b.billit_amount, b.billit_cgstpc, b.billit_sgstpc, c.store_name, e.product_generic, g.genmed_name, f.brand_name FROM bills_table a LEFT JOIN bill_items b ON b.billit_id= a.bill_id LEFT JOIN stores_tbl c ON c.store_id=a.bill_store LEFT JOIN product_packing d ON d.prodpack_id=b.billit_item LEFT JOIN products_tbl e ON e.product_id= d.prodpack_product LEFT JOIN generic_medicines g ON g.genmed_id=e.product_generic LEFT JOIN brands_tbl f ON f.brand_id=e.product_brand WHERE a.bill_date=saledate;
END IF;
END$$

CREATE  PROCEDURE `getSalesBillDatasPerDate` (IN `saledate` DATE, IN `storeid` INT)   BEGIN
IF storeid>1 THEN
SELECT b.bill_id,DATE_FORMAT(b.bill_date, '%d-%m-%Y') AS billdate,b.bill_store,s.store_code,s.store_name, b.bill_no,b.bill_netpay AS amount,b.bill_status FROM bills_table b JOIN stores_tbl s ON s.store_id=b.bill_store WHERE b.bill_date=saledate AND b.bill_store=storeid ORDER BY b.bill_crtdon DESC;
 ELSE
 SELECT b.bill_id,DATE_FORMAT(b.bill_date, '%d-%m-%Y') AS billdate,b.bill_store,s.store_code,s.store_name, b.bill_no,b.bill_netpay AS amount,b.bill_status FROM bills_table b JOIN stores_tbl s ON s.store_id=b.bill_store WHERE b.bill_date=saledate ORDER BY b.bill_crtdon DESC;
 END IF;
END$$

CREATE  PROCEDURE `getSalesdiscount` (IN `storeid` INT)   BEGIN
IF storeid>1 THEN
SELECT a.`bill_id`, a.`bill_date`, a.`bill_store`,s.store_name, s.store_code, a.`bill_no`, a.`bill_pharmacist`,a.`bill_customer`, a.`bill_name`,a.`bill_doctor`,d.doctor_name, a.`bill_taxable`, a.`bill_cgst`, a.`bill_sgst`, a.`bill_discounts` , b.billit_item, b.billit_name, b.billit_mfr, b.billit_batch, b.billit_mrp, b.billit_discount, b.billit_rate, b.billit_qty, a.bill_crtdby, u.user_staffname, b.billit_cgstpc, b.billit_sgstpc FROM `bills_table` a LEFT JOIN bill_items b ON b.billit_id = bill_id LEFT JOIN doctors_tbl d ON d.doctor_id= a.bill_doctor LEFT JOIN stores_tbl s ON s.store_id= a.bill_store LEFT JOIN users_tbl u ON u.user_id= a.bill_crtdby WHERE `bill_store`=storeid order by b.billit_name;
ELSE
SELECT a.`bill_id`, a.`bill_date`, a.`bill_store`,s.store_name, s.store_code, a.`bill_no`, a.`bill_pharmacist`,a.`bill_customer`, a.`bill_name`,a.`bill_doctor`,d.doctor_name, a.`bill_taxable`, a.`bill_cgst`, a.`bill_sgst`, a.`bill_discounts` , b.billit_item, b.billit_name, b.billit_mfr, b.billit_batch, b.billit_mrp, b.billit_discount, b.billit_rate, b.billit_qty, a.bill_crtdby, u.user_staffname, b.billit_cgstpc, b.billit_sgstpc FROM `bills_table` a LEFT JOIN bill_items b ON b.billit_id = bill_id LEFT JOIN doctors_tbl d ON d.doctor_id= a.bill_doctor LEFT JOIN stores_tbl s ON s.store_id= a.bill_store LEFT JOIN users_tbl u ON u.user_id= a.bill_crtdby  order by b.billit_name;
END IF;
END$$

CREATE  PROCEDURE `getSalesScheme` (IN `itemid` INT)   BEGIN
SELECT dis_id, dis_date, dis_store,
       (SELECT GROUP_CONCAT(CONCAT(product_display, ' ', k.packing_type, ':', pt.prodpack_quantity, ' ', m.measunit_shortname))
        FROM products_tbl
        JOIN product_packing pt ON pt.prodpack_product = product_id
        LEFT JOIN packing_tbl k ON k.packing_id = pt.prodpack_package
        LEFT JOIN measure_units m ON m.measunit_id = pt.prodpack_unit
        WHERE FIND_IN_SET(pt.prodpack_id, dis_mainitem)) AS mainitem,
       dis_mainitem,
       (SELECT GROUP_CONCAT(CONCAT(product_display, ' ', k.packing_type, ':', pt.prodpack_quantity, ' ', m.measunit_shortname))
        FROM products_tbl
        JOIN product_packing pt ON pt.prodpack_product = product_id
        LEFT JOIN packing_tbl k ON k.packing_id = pt.prodpack_package
        LEFT JOIN measure_units m ON m.measunit_id = pt.prodpack_unit
        WHERE FIND_IN_SET(pt.prodpack_id, dis_freeitem)) AS freeitem,
       dis_freeitem,
       dis_crtdby,
       dis_approvedby,
       (SELECT u.user_staffname FROM users_tbl u WHERE u.user_id = dis_crtdby) AS crtdby,
       (SELECT u.user_staffname FROM users_tbl u WHERE u.user_id = dis_approvedby) AS approvedby,
       dis_status,
       (SELECT s.store_name FROM stores_tbl s WHERE s.store_id = dis_store) AS store_name
FROM schedulediscount_tbl
WHERE FIND_IN_SET(itemid,dis_mainitem)
ORDER BY dis_crtdon DESC;
END$$

CREATE  PROCEDURE `getSearchbySalesBillnum` (IN `billnum` VARCHAR(50))   BEGIN
SELECT b.bill_id, b.bill_date, b.bill_store, b.bill_no, b.bill_counter, b.bill_pharmacist,
       b.bill_customer, b.bill_mobile, b.bill_name, b.bill_age, b.bill_gender, b.bill_address, b.bill_referrer,
       b.bill_doctor, d.doctor_name, b.bill_quantity, b.bill_mrp, b.bill_taxable, b.bill_cgst, b.bill_sgst,
       b.bill_discounts, b.bill_netpay, b.bill_paid, b.bill_payref, b.bill_transid, b.bill_payby,
       bi.billit_id, bi.billit_item, bi.billit_name, bi.billit_hsn, bi.billit_mfr, bi.billit_batch,
       bi.billit_expiry, bi.billit_sched,(x.strstk_stock - x.strstk_reserved) AS available, bi.billit_mrp, bi.billit_discount, bi.billit_rate,
       bi.billit_qty, bi.billit_amount, bi.billit_cgstpc, bi.billit_cgst, bi.billit_sgstpc,
       bi.billit_sgst,  bi.billit_itid, pp.packing_type, p.prodpack_package, x.strstk_id, x.strstk_item, x.strstk_product, p.prodpack_quantity, b.bill_status, st.store_name, st.store_address , st.store_mobile,st.store_contactno
FROM bills_table b
LEFT JOIN bill_items bi ON bi.billit_id = b.bill_id
    LEFT JOIN  storestock_pricing x ON x.strstk_item=bi.billit_item AND x.strstk_id=bi.billit_strstkid
    LEFT JOIN doctors_tbl d ON d.doctor_id=b.bill_doctor
       LEFT JOIN  product_packing p ON p.prodpack_id=x.strstk_item
       join stores_tbl st on st.store_id = b.bill_store 
    LEFT JOIN packing_tbl pp ON pp.packing_id = p.prodpack_package
WHERE b.bill_no = billnum and x.strstk_refer IN (select stockin_id from stock_inwards where stockin_item=bi.billit_item and stockin_batch = bi.billit_batch) ;
/*GROUP BY bi.billit_item*/
END$$

CREATE  PROCEDURE `getSearchList` (IN `search_term` VARCHAR(255))   BEGIN
    -- First: Keyword-based suggestions (distinct labels)
    if search_term!="" THEN
    SELECT
   product_name,product_id,prodpack_id,strstk_item,prodpack_quantity,
packing_type,
measunit_shortname,strstk_mrp,strstk_msp,strstk_discount,strstk_id, product_imageurl
FROM (
    SELECT
 p.product_name,
    p.product_id,
    r.prodpack_id,
    e.strstk_item,
    r.prodpack_quantity,
        t.packing_type,
        m.measunit_shortname,
        e.strstk_mrp,
        e.strstk_msp,
      e.strstk_discount,
    st.store_id,
        (
            SELECT g.prodgal_url
            FROM product_gallery g
            WHERE g.prodgal_prodpack = r.prodpack_id
              AND g.prodgal_placedat = 1
              AND g.prodgal_medium = 1
              AND g.prodgal_publish = 1
              AND g.prodgal_status = 1
            ORDER BY g.prodgal_serial ASC
            LIMIT 1
        ) AS product_imageurl,
     
        e.strstk_id,
      
        ROW_NUMBER() OVER (
            PARTITION BY e.strstk_item
            ORDER BY
                s.stockin_expiry ASC,
                e.strstk_discount DESC,
                (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn

    FROM products_tbl p
    LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
 LEFT JOIN manufacturers_tbl f ON f.manuf_id=p.product_manufacturer                                                                                    
LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
   LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id
    JOIN product_packing r 
        ON r.prodpack_product = p.product_id
    JOIN packing_tbl t 
        ON t.packing_id = r.prodpack_package
    JOIN measure_units m 
        ON m.measunit_id = r.prodpack_unit
    JOIN stock_inwards s 
        ON s.stockin_item = r.prodpack_id
    JOIN storestock_pricing e 
        ON e.strstk_item = r.prodpack_id
       AND s.stockin_id = e.strstk_refer
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store


    WHERE
  (    p.product_name LIKE CONCAT('%', search_term, '%') OR
        pc.pharma_name LIKE CONCAT('%', search_term, '%') OR
           f.manuf_name LIKE CONCAT('%', search_term, '%') OR
        b.brand_name LIKE CONCAT('%', search_term, '%') OR
        pp.prodclass_name LIKE CONCAT('%', search_term, '%'))

AND p.product_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
    
    
AND (e.strstk_stock - e.strstk_reserved) > 0
      AND s.stockin_expiry >= CURRENT_DATE()) ranked
WHERE rn = 1;
   /* SELECT x.product_name,x.product_id,x.prodpack_id,x.strstk_item,                                               x.prodpack_quantity,x.packing_type,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.strstk_discount,x.strstk_id, x.product_imageurl FROM (SELECT (@row_number := @row_number + 1) AS virtual_id,
        p.product_name,
    p.product_id,
    r.prodpack_id,
    e.strstk_item,
r.prodpack_quantity,
k.packing_type,
    m.measunit_shortname,
    e.strstk_msp,
    e.strstk_mrp,
 e.strstk_discount,
    st.store_id,
    (
        SELECT g.prodgal_url
        FROM product_gallery g
        WHERE g.prodgal_prodpack = r.prodpack_id
            AND g.prodgal_placedat = 1
            AND g.prodgal_medium = 1
            AND g.prodgal_publish = 1
            AND g.prodgal_status = 1
        ORDER BY g.prodgal_serial ASC
        LIMIT 1
    ) AS product_imageurl,
    e.strstk_id 
FROM products_tbl p
LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
 LEFT JOIN manufacturers_tbl f ON f.manuf_id=p.product_manufacturer                                                                                    
LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
   LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id
INNER JOIN product_packing r ON r.prodpack_product = p.product_id
INNER JOIN packing_tbl k ON k.packing_id = r.prodpack_package
INNER JOIN measure_units m ON m.measunit_id = r.prodpack_unit
INNER JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id 
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store
INNER JOIN stock_inwards s ON s.stockin_id = e.strstk_refer
WHERE
           (    p.product_name LIKE CONCAT('%', search_term, '%') OR
        pc.pharma_name LIKE CONCAT('%', search_term, '%') OR
           f.manuf_name LIKE CONCAT('%', search_term, '%') OR
        b.brand_name LIKE CONCAT('%', search_term, '%') OR
        pp.prodclass_name LIKE CONCAT('%', search_term, '%'))
              
  AND e.strstk_product = p.product_id
  AND e.strstk_item = s.stockin_item
  AND p.product_status = 1
  AND m.measunit_status = 1
  AND p.product_online = 1
  AND p.product_publish = 1
  AND r.prodpack_status = 1
  AND k.packing_status = 1        
  AND s.stockin_expiry >= CURRENT_DATE()
  AND (e.strstk_stock-e.strstk_reserved) > 0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc LIMIT 20
  ) as x group by x.product_id;*/
 END IF;
END$$

CREATE  PROCEDURE `getsearchLogByStore` ()   BEGIN

SELECT  st.store_code,st.store_name,fnGetProductFromPack(s.search_item, 0) AS orditem,s.search_item,s.search_store,MAX(s.search_crtdon) FROM searchlog_tbl s JOIN stores_tbl st on st.store_id=s.search_store WHERE date(s.search_crtdon)=CURRENT_DATE GROUP BY s.search_store,s.search_item ORDER BY s.search_crtdon DESC;



END$$

CREATE  PROCEDURE `getSearchSuggestions` (IN `search_term` VARCHAR(255))   BEGIN
    -- First: Keyword-based suggestions (distinct labels)
    if search_term!="" THEN
/*  SELECT 
    'suggestion' AS type,
   TRIM(CONCAT_WS(' ',
        pc.pharma_name,
        CASE
            WHEN p.product_name LIKE '%500%' AND pc.pharma_name NOT LIKE '%500%' THEN '500'
            WHEN p.product_name LIKE '%650%' AND pc.pharma_name NOT LIKE '%650%' THEN '650'
            ELSE ''
        END,
        CASE
            WHEN p.product_name LIKE '%Syrup%' AND pc.pharma_name NOT LIKE '%Syrup%' THEN 'Syrup'
            WHEN p.product_name LIKE '%Tablet%' AND pc.pharma_name NOT LIKE '%Tablet%' THEN 'Tablet'
            ELSE ''
        END
    )) AS product_display,NULL AS product_id,NULL AS prodpack_id,
NULL AS measunit_shortname,NULL AS strstk_mrp,NULL AS strstk_msp,NULL AS strstk_id, NULL AS product_imageurl
FROM products_tbl p
LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id
WHERE pc.pharma_name LIKE CONCAT('%', search_term, '%')
GROUP BY product_display
UNION
SELECT 
        'suggestion' AS type,
        TRIM(SUBSTRING_INDEX(p.product_name, ' ', 2)) AS product_display,NULL AS product_id,NULL AS prodpack_id,
NULL AS measunit_shortname,NULL AS strstk_mrp,NULL AS strstk_msp,NULL AS strstk_id, NULL AS product_imageurl
    FROM products_tbl p
    WHERE LOWER(p.product_name) LIKE CONCAT(LOWER(search_term), '%')
    OR LOWER(p.product_name) LIKE CONCAT('% ', LOWER(search_term), '%')
    GROUP BY product_display*/
   SELECT
    'suggestion' AS type,
    product_display,
    NULL AS product_id,
    NULL AS prodpack_id,
    NULL AS strstk_item,
    NULL AS prodpack_quantity,
    NULL AS packing_type,
    NULL AS measunit_shortname,
    NULL AS strstk_mrp,
    NULL AS strstk_msp,
    NULL AS strstk_discount,
    NULL AS strstk_id,
    NULL AS product_imageurl
FROM (
    SELECT DISTINCT
        TRIM(SUBSTRING_INDEX(product_name, ' ', 2)) AS product_display
    FROM products_tbl
    WHERE product_name LIKE CONCAT(search_term, '%')
) t

    UNION

    -- Second: Direct product links
   SELECT
    type,product_display,product_id,prodpack_id,strstk_item,prodpack_quantity,
packing_type,
measunit_shortname,strstk_mrp,strstk_msp,strstk_discount,strstk_id, product_imageurl
FROM (
    SELECT
'product' AS type,
        p.product_name AS product_display,
    p.product_id,
    r.prodpack_id,
    e.strstk_item,
    r.prodpack_quantity,
        t.packing_type,
        m.measunit_shortname,
        e.strstk_mrp,
        e.strstk_msp,
      e.strstk_discount,
    st.store_id,
        (
            SELECT g.prodgal_url
            FROM product_gallery g
            WHERE g.prodgal_prodpack = r.prodpack_id
              AND g.prodgal_placedat = 1
              AND g.prodgal_medium = 1
              AND g.prodgal_publish = 1
              AND g.prodgal_status = 1
            ORDER BY g.prodgal_serial ASC
            LIMIT 1
        ) AS product_imageurl,
     
        e.strstk_id,
      
        ROW_NUMBER() OVER (
            PARTITION BY e.strstk_item
            ORDER BY
                s.stockin_expiry ASC,
                e.strstk_discount DESC,
                (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn

    FROM products_tbl p
    LEFT JOIN brands_tbl b ON b.brand_id = p.product_brand
 LEFT JOIN manufacturers_tbl f ON f.manuf_id=p.product_manufacturer                                                                                    
LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
   LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id
    JOIN product_packing r 
        ON r.prodpack_product = p.product_id
    JOIN packing_tbl t 
        ON t.packing_id = r.prodpack_package
    JOIN measure_units m 
        ON m.measunit_id = r.prodpack_unit
    JOIN stock_inwards s 
        ON s.stockin_item = r.prodpack_id
    JOIN storestock_pricing e 
        ON e.strstk_item = r.prodpack_id
       AND s.stockin_id = e.strstk_refer
INNER JOIN stores_tbl st ON st.store_id = e.strstk_store


    WHERE
  (    p.product_name LIKE CONCAT('%', search_term, '%') OR
        pc.pharma_name LIKE CONCAT('%', search_term, '%') OR
           f.manuf_name LIKE CONCAT('%', search_term, '%') OR
        b.brand_name LIKE CONCAT('%', search_term, '%') OR
        pp.prodclass_name LIKE CONCAT('%', search_term, '%'))

AND p.product_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
    
    
AND (e.strstk_stock - e.strstk_reserved) > 0
      AND s.stockin_expiry >= CURRENT_DATE()) ranked
WHERE rn = 1;
    
   
 END IF;
END$$

CREATE  PROCEDURE `getStaffDetailsById` (IN `id` INT)   begin
	SELECT s.staff_id, s.staff_name, s.staff_code, s.staff_branch, s.staff_dob, s.staff_gender, s.staff_mobile, s.staff_email, s.staff_address, s.staff_status, s.staff_crtby, u.user_id, u.user_login, u.user_password, u.user_programid, u.user_programcontains, u.user_checkid, s.staff_image,s.staff_signature
	from staff_tbl s
    left JOIN users_tbl u on s.staff_id = u.user_staffid
    where s.staff_id = id;
SELECT u.store_id, u.store_name, u.store_code FROM stores_tbl u;
END$$

CREATE  PROCEDURE `getStaffForCourier` (IN `staffid` INT)   BEGIN
	SELECT x.staff_id, x.staff_name, x.staff_code, x.staff_mobile, x.staff_email, x.staff_address  
    FROM staff_tbl x 
    WHERE x.staff_id = staffid;
END$$

CREATE  PROCEDURE `getStaffImage` (IN `staffid` INT)   BEGIN
SELECT CONCAT('dist/img/staff/', s.staff_image) AS staff_image_path
FROM `staff_tbl` s
WHERE staff_id = staffid;
END$$

CREATE  PROCEDURE `getStaffList` ()   begin

SELECT s.staff_id,s.staff_name,s.staff_code,s.staff_dob,s.staff_gender,s.staff_mobile,s.staff_email,s.staff_status from staff_tbl s;

END$$

CREATE  PROCEDURE `getstaffListforusers` (IN `str` VARCHAR(100))   begin

select s.staff_id,s.staff_name from staff_tbl s WHERE s.staff_status = 1 and s.staff_id not in (SELECT u.user_staffid from users_tbl u ) and s.staff_name like concat('%',str,'%');


END$$

CREATE  PROCEDURE `getStockistProductsOfManufacturer` (IN `stkid` INT, IN `manufid` INT)   BEGIN
	SELECT x.product_id, x.product_name, x.product_manufacturer 
    FROM products_tbl x 
    WHERE x.product_manufacturer = manufid AND x.product_id NOT IN(
    	SELECT p.stockistprod_product FROM stockist_products p 
        WHERE p.stockistprod_stockist = stkid AND p.stockistprod_product = x.product_id AND p.stockistprod_status=1
    )
    AND x.product_status = 1 
    ORDER BY x.product_name;
END$$

CREATE  PROCEDURE `getStockTransferOrderDetailsNew` (IN `stkordid` INT)   BEGIN
	DECLARE listclass TEXT DEFAULT '';
    
	SELECT x.stocktrans_id, x.stocktrans_order, x.stocktrans_date, 
    x.stocktrans_strfrom, s.store_name AS storefrom, s.store_code AS codefrom, s.store_address AS addrfrom, 
    x.stocktrans_strto, t.store_name AS storeto, t.store_code AS codeto, t.store_address AS addrto, 
    x.stocktrans_packing, x.stocktrans_delivery, x.stocktrans_notes, x.stocktrans_status, 
    x.stocktrans_prprdby, pr.user_staffname AS prpdby, x.stocktrans_apprdby, ap.user_staffname AS aprvdby 
    FROM stock_transfers x 
    LEFT JOIN stores_tbl s ON s.store_id = x.stocktrans_strfrom 
    LEFT JOIN stores_tbl t ON t.store_id = x.stocktrans_strto 
    LEFT JOIN users_tbl pr ON pr.user_id = x.stocktrans_prprdby 
    LEFT JOIN users_tbl ap ON ap.user_id = x.stocktrans_apprdby 
    WHERE x.stocktrans_id = stkordid; 
    
    SELECT y.stockorder_id, y.stockorder_refer, y.stockorder_item, y.stockorder_batch, y.stockorder_expiry, y.stockorder_quantity, s.strstk_item, fnGetProductFromPack(s.strstk_item, 0) AS product, s.strstk_stack, (s.strstk_stock - s.strstk_reserved) AS stock, y.stockorder_packed, y.stockorder_packing, y.stockorder_delivery, y.stockorder_delivered  
    FROM stocktransfer_details y 
    LEFT JOIN storestock_pricing s ON s.strstk_id = y.stockorder_item 
    WHERE y.stockorder_refer = stkordid 
    ORDER BY y.stockorder_status;
    
    SELECT t.transpack_id, t.transpack_packid, t.transpack_trackid, t.transpack_from, sfr.store_name AS fromstore, 
    t.transpack_to, sto.store_name AS tostore, t.transpack_items, t.transpack_collectby, t.transpack_status
    FROM transfer_packets t 
    LEFT JOIN stores_tbl sfr ON sfr.store_id = t.transpack_from 
    LEFT JOIN stores_tbl sto ON sto.store_id = t.transpack_to 
    WHERE t.transpack_refer = stkordid;
    
    SELECT tp.transferpack_packet, trp.transpack_packid, tp.transferpack_item, fnGetProductFromPack(si.stockin_item, 0)AS item, tp.transferpack_qty, tp.transferpack_status, si.stockin_batch, si.stockin_expiry, trp.transpack_notes, tp.transferpack_packon  
    FROM transferpack_items tp
    LEFT JOIN storestock_pricing sp ON sp.strstk_id = tp.transferpack_orditem
    LEFT JOIN stock_inwards si ON si.stockin_id = sp.strstk_refer  
    LEFT JOIN transfer_packets trp ON trp.transpack_id = tp.transferpack_packet 
    WHERE tp.transferpack_packet IN( 
        SELECT t.transpack_id FROM transfer_packets t WHERE t.transpack_refer = stkordid)
    ORDER BY tp.transferpack_packet;  
    
    SELECT GROUP_CONCAT( REPLACE(CONCAT_WS(',', IF(t.product_maincategory > 0, t.product_maincategory, ' ') , IF(t.product_subcategory > 0, t.product_subcategory, ' '), IF(t.product_category > 0, t.product_category, ' ')), ', ', '')) INTO listclass 
    FROM `storestock_master` xx
    LEFT JOIN product_packing p ON p.prodpack_id = xx.storestock_item 
    LEFT JOIN products_tbl t ON t.product_id = p.prodpack_product 
    WHERE xx.storestock_store = (SELECT sx.stocktrans_strfrom FROM stock_transfers sx WHERE sx.stocktrans_id = stkordid);
	
    	SELECT prodclass_id AS id, prodclass_name AS pclname, prodclass_parent AS parent, prodclass_serial AS serial, prodclass_status AS pstatus, prodclass_counter AS cntr, prodclass_seq AS seq 
    	FROM product_classes 
    	WHERE FIND_IN_SET(prodclass_id, listclass) 
    	ORDER BY seq, cntr,  serial;
    
END$$

CREATE  PROCEDURE `getStockTransferOrders` (IN `storeid` INT)   BEGIN
   	SELECT x.stocktrans_id, x.stocktrans_order, x.stocktrans_date, 
    x.stocktrans_strfrom, s.store_name AS storefrom, x.stocktrans_strto, t.store_name AS storeto, 
    x.stocktrans_items, x.stocktrans_packing, x.stocktrans_delivery, x.stocktrans_status, 
    (SELECT COUNT(*) FROM transfer_packets p WHERE p.transpack_refer = x.stocktrans_id) AS packets  
  	FROM stock_transfers x 
    LEFT JOIN stores_tbl s ON s.store_id = x.stocktrans_strfrom 
    LEFT JOIN stores_tbl t ON t.store_id = x.stocktrans_strto 
  	WHERE (x.stocktrans_strfrom = storeid OR x.stocktrans_strto = storeid) AND x.stocktrans_status = 1;
END$$

CREATE  PROCEDURE `getStorageTypes` ()   BEGIN
SELECT s.strgtype_id, s.strgtype_type FROM storage_types s;
END$$

CREATE  PROCEDURE `GetStoreId` (IN `pincode` VARCHAR(10))   BEGIN
SELECT d.delarea_location,d.delarea_pincode,d.delarea_geomap,d.delarea_country,d.delarea_province,d.delarea_district FROM delivery_areas d WHERE d.delarea_pincode = pincode and d.delarea_status=1;
   /* DECLARE del_id INT;
    DECLARE store_id INT;
    
 
    
    -- Search for delivery area ID based on pincode
    SELECT delarea_id INTO del_id FROM delivery_areas WHERE delarea_pincode = pincode LIMIT 1;
    
  
    
    -- Check if delivery area ID was found
    IF del_id IS NOT NULL THEN
        -- Search for store ID based on the found delarea_id
        SELECT strdelv_store INTO store_id FROM store_delivery WHERE strdelv_area = del_id LIMIT 1;
        -- Check if store ID was found
        IF store_id IS NOT NULL THEN
            -- Return the store ID
            SELECT store_id;
        END IF;
    END IF;*/
END$$

CREATE  PROCEDURE `getStorelocator` ()   BEGIN
SELECT * FROM (SELECT s.store_name,s.store_address,s.store_mobile,s.store_email,s.store_location,DATE_FORMAT(t.strtme_from, '%l %p') AS strtme_from, DATE_FORMAT(t.strtme_to, '%l:%i %p') AS strtme_to, (CASE WHEN t.strtme_day=1 THEN "Monday" WHEN t.strtme_day=2 THEN "Tuesday" WHEN t.strtme_day=3 THEN "Wednesday" WHEN t.strtme_day=4 THEN "Thursday" WHEN t.strtme_day=5 THEN "Friday" WHEN t.strtme_day=6 THEN "Saturday" ELSE "Sunday" END  ) AS day   FROM stores_tbl s JOIN  store_timings t on s.store_id=t.strtme_store WHERE s.store_id!=1 and s.store_status=1) AS x WHERE  x.day=(SELECT DAYNAME(CURDATE()) AS today);
END$$

CREATE  PROCEDURE `getStorelocatoreByName` (IN `search_key` TEXT)   BEGIN
SELECT * FROM (SELECT s.store_name,s.store_address,s.store_mobile,s.store_email,s.store_location,DATE_FORMAT(t.strtme_from, '%l %p') AS strtme_from, DATE_FORMAT(t.strtme_to, '%l:%i %p') AS strtme_to, (CASE WHEN t.strtme_day=1 THEN "Monday" WHEN t.strtme_day=2 THEN "Tuesday" WHEN t.strtme_day=3 THEN "Wednesday" WHEN t.strtme_day=4 THEN "Thursday" WHEN t.strtme_day=5 THEN "Friday" WHEN t.strtme_day=6 THEN "Saturday" ELSE "Sunday" END  ) AS day   FROM stores_tbl s JOIN  store_timings t on s.store_id=t.strtme_store WHERE s.store_id!=1 and s.store_status=1) AS x WHERE  x.day=(SELECT DAYNAME(CURDATE()) AS today) AND (x.store_name LIKE CONCAT('%',search_key) OR  x.store_name LIKE CONCAT('%',search_key,'%'));
END$$

CREATE  PROCEDURE `getStoreProducts` (IN `storeid` INT)   BEGIN
if storeid > 1 THEN
SELECT s.storestock_item,fnGetProductFromPack(s.storestock_item, 0) AS product, s.storestock_store, st.store_name, (s.storestock_available-s.storestock_reserved) AS stock, (select count(x.stockin_id) from stock_inwards x where x.stockin_expiry <= CURRENT_DATE() + INTERVAL 44 DAY and x.stockin_store = storeid and x.stockin_item = s.storestock_item ) as expirycount FROM  storestock_master s LEFT JOIN stores_tbl st ON st.store_id=s.storestock_store WHERE  s.storestock_store=storeid;
ELSE
SELECT s.storestock_item,fnGetProductFromPack(s.storestock_item, 0) AS product, s.storestock_store, st.store_name, (s.storestock_available-s.storestock_reserved) AS stock, (select count(x.stockin_id) from stock_inwards x where x.stockin_expiry <= CURRENT_DATE() + INTERVAL 44 DAY and x.stockin_store = storeid and x.stockin_item = s.storestock_item ) as expirycount FROM  storestock_master s LEFT JOIN stores_tbl st ON st.store_id=s.storestock_store;
END IF;
END$$

CREATE  PROCEDURE `getStoreRegister` (IN `storeid` INT)   BEGIN
IF storeid>1 THEN
SELECT b.billit_item, b.billit_name, b.billit_hsn, b.billit_mfr, b.billit_batch, b.billit_expiry, b.billit_sched, b.billit_mrp,b.billit_discount, b.billit_rate, b.billit_qty, b.billit_amount, b.billit_cgstpc, b.billit_cgst, b.billit_sgstpc, b.billit_sgst, a.bill_no, a.bill_pharmacist, a.bill_customer, a.bill_name, a.bill_doctor, a.bill_crtdon, c.doctor_name, a.bill_store, d.store_name, a.bill_taxable FROM bill_items b LEFT JOIN bills_table a ON a.bill_id=b.billit_id LEFT JOIN doctors_tbl c ON c.doctor_id=a.bill_doctor LEFT JOIN stores_tbl d ON d.store_id= a.bill_store WHERE a.bill_store=storeid;
ELSE
SELECT b.billit_item, b.billit_name, b.billit_hsn, b.billit_mfr, b.billit_batch, b.billit_expiry, b.billit_sched, b.billit_mrp,b.billit_discount, b.billit_rate, b.billit_qty, b.billit_amount, b.billit_cgstpc, b.billit_cgst, b.billit_sgstpc, b.billit_sgst, a.bill_no, a.bill_pharmacist, a.bill_customer, a.bill_name, a.bill_doctor, a.bill_crtdon, c.doctor_name, a.bill_store, d.store_name, a.bill_taxable FROM bill_items b LEFT JOIN bills_table a ON a.bill_id=b.billit_id LEFT JOIN doctors_tbl c ON c.doctor_id=a.bill_doctor LEFT JOIN stores_tbl d ON d.store_id= a.bill_store; 
END IF;
END$$

CREATE  PROCEDURE `getStoreStockForBilling` (IN `storeid` INT)   BEGIN
	SELECT x.strstk_item, x.strstk_refer, x.strstk_store, x.strstk_product, x.strstk_id, fnGetProductFromPack(x.strstk_item, 1) AS product
    FROM storestock_pricing x
    LEFT JOIN products_tbl p ON p.product_id = x.strstk_product
    LEFT JOIN stock_inwards si ON si.stockin_id = x.strstk_refer 
    WHERE x.strstk_store = storeid AND x.strstk_status = 1 
    GROUP BY x.strstk_item
    ORDER BY p.product_name, x.strstk_item ;
END$$

CREATE  PROCEDURE `getSubdrugClasses` (IN `parent` INT)   BEGIN
	SELECT x.drugclass_id, x.drugclass_name 
    FROM drug_classifications x 
    WHERE x.drugclass_parent = parent AND x.drugclass_status = 1 
    ORDER BY x.drugclass_name;
END$$

CREATE  PROCEDURE `getSupplierListForItem` (IN `stkid` INT, IN `intend` INT)   BEGIN
	DECLARE prodid, packid INT DEFAULT 0; 
    
    SELECT p.prodpack_product, /*p.prodpack_package,*/ p.prodpack_id INTO prodid, packid 
    FROM product_packing p WHERE p.prodpack_id = stkid;
    
	SELECT x.vendsup_id, x.vendsup_type, x.vendsup_vendor, fnGetVendorName(x.vendsup_type, x.vendsup_vendor) AS vendor, x.vendsup_price, 
    (SELECT CONCAT(COUNT(*), '|', IFNULL(SUM(y.intdallocit_quantity), 0)) FROM intend_allocation_items y 
     	WHERE y.intdallocit_item = stkid AND y.intdallocit_intend = intend 
    	AND y.intdallocit_source = x.vendsup_vendor AND y.intdallocit_method = 2 AND y.intdallocit_type = x.vendsup_type ) AS allotted 
    FROM vendor_supplies  x  
    WHERE x.vendsup_product = prodid AND x.vendsup_packing = packid AND x.vendsup_status = 1 
    ORDER BY 2;
END$$

CREATE  PROCEDURE `getSupplierProducts` (IN `stype` INT, IN `supplier` INT)   BEGIN
	IF stype = 1 THEN   /* Stockists */
    	SELECT x.stockistprod_product AS pid, p.product_name, 'Stockist' AS suppliertype,s.stockist_GST,p.product_taxgroup
        FROM stockist_products x
        LEFT JOIN products_tbl p ON p.product_id = x.stockistprod_product LEFT JOIN vendor_supplies v on v.vendsup_product=p.product_id LEFT JOIN stockists_tbl s ON s.stockist_id=x.stockistprod_stockist
        WHERE x.stockistprod_stockist = supplier AND x.stockistprod_status = 1 AND v.vendsup_vendor = supplier AND v.vendsup_type = stype AND v.vendsup_status = 1 GROUP by p.product_name;
       
    ELSEIF stype = 2 THEN  /* Distributors */
    	SELECT d.distriprod_product AS pid, p.product_name,  'Distributor' AS suppliertype ,dt.distri_GST,p.product_taxgroup
        FROM distributor_products d
        LEFT JOIN products_tbl p ON p.product_id = d.distriprod_product INNER JOIN vendor_supplies v on v.vendsup_product=p.product_id INNER JOIN distributors_tbl dt ON dt.distri_id=d.distriprod_distributor
        WHERE d.distriprod_distributor = supplier AND d.distriprod_status = 1 AND v.vendsup_vendor = supplier AND v.vendsup_type = stype AND v.vendsup_status = 1 GROUP by p.product_name;
       
    ELSE
    	SELECT q.dealerprod_product AS pid, p.product_name,'Dealer' AS suppliertype ,dt.dealer_GST,p.product_taxgroup
        FROM dealer_products q
        LEFT JOIN products_tbl p ON p.product_id = q.dealerprod_product INNER JOIN vendor_supplies v on v.vendsup_product=p.product_id INNER JOIN dealers_tbl dt ON dt.dealer_id=q.dealerprod_dealer
        WHERE q.dealerprod_dealer = supplier AND q.dealerprod_status = 1 AND v.vendsup_vendor = supplier AND v.vendsup_type = stype AND v.vendsup_status = 1 GROUP by p.product_name;
       
    END IF;
    #store selection
    SELECT s.store_id,s.store_type,s.store_code,s.store_name,s.store_GST  FROM stores_tbl s WHERE s.store_status=1;
END$$

CREATE  PROCEDURE `getSuppliersOfPackage` (IN `prodid` INT, IN `packid` INT)   BEGIN
	SELECT x.vendsup_id, x.vendsup_type, x.vendsup_vendor, fnGetVendorName(x.vendsup_type, x.vendsup_vendor) AS vendor 
    FROM vendor_supplies x 
    WHERE x.vendsup_product = prodid AND x.vendsup_packing = packid AND x.vendsup_status = 1 
    ORDER BY 2;
    
END$$

CREATE  PROCEDURE `getSuppliersofType` (IN `stype` INT)   BEGIN
	IF stype = 1 THEN   /* Stockists */
    	SELECT x.stockist_id, x.stockist_name, 'Stockists' AS supliertype  
        FROM stockists_tbl x WHERE x.stockist_status = 1
        ORDER BY x.stockist_name;
    ELSEIF stype = 2 THEN  /* Distributors */
    	SELECT d.distri_id, d.distri_name, 'Distributor' AS supliertype
        FROM distributors_tbl d WHERE d.distri_status = 1 
        ORDER BY d.distri_name;
    ELSE
    	SELECT q.dealer_id, q.dealer_name, 'Dealers' AS supliertype
        FROM dealers_tbl q WHERE q.dealer_status = 1 
        ORDER BY q.dealer_name;
    END IF;
END$$

CREATE  PROCEDURE `getThePrescriptionForOrder` (IN `ordid` INT)   BEGIN

/*SELECT * FROM prescription_files WHERE order_id=ordid;*/
SELECT p.* FROM prescription_files_attached p JOIN orders_tbl o ON o.order_customer=p.user_id JOIN prescription_files f ON f.order_id=o.order_id WHERE FIND_IN_SET( p.file_id,(SELECT l.file_name FROM prescription_files l WHERE l.order_id=o.order_id)) AND o.order_id=ordid;

END$$

CREATE  PROCEDURE `getTheProductDetailsBySearch` (IN `searchs` TEXT)   BEGIN
	SELECT p.product_id, p.product_name, x.manuf_name
    FROM products_tbl p 
    LEFT JOIN manufacturers_tbl x ON x.manuf_id = p.product_manufacturer
    WHERE p.product_name LIKE CONCAT(searchs , '%') 
    AND p.product_status = 1 
   /* GROUP BY product_manufacturer*/ 
    ORDER BY p.product_name;
END$$

CREATE  PROCEDURE `getTrackOrderByOrderID` (IN `orderId` VARCHAR(200), IN `phone` VARCHAR(200))   BEGIN
DECLARE suppliers  TEXT;
DROP TEMPORARY TABLE IF EXISTS temp_cartdetails;
CREATE TEMPORARY TABLE temp_cartdetails (
        product_id INT,
        product_name VARCHAR(255),
    product_display VARCHAR(255),
    product_featured INT,
    product_popular INT,
    prodpack_id INT,
    prodpack_quantity INT,
    packing_type VARCHAR(255),
    measunit_name VARCHAR(255),
    measunit_shortname VARCHAR(255),
    strstk_mrp DECIMAL(9, 2),
    strstk_msp DECIMAL(9, 2),
    stockin_batch VARCHAR(50),
    stockin_expiry DATE,
    strstk_stock INT,
    strstk_stack INT,
    product_imageurl VARCHAR(255),
    strstk_discount	DECIMAL(5, 2),
    strstk_id INT,prd_qty INT,orderstatus INT,deliverystatus INT,ordcrton DATETIME,ordproc DATETIME,ordship DATETIME,orddeliv DATETIME, ordcancl DATETIME, ordref DATETIME, remarks TEXT);
    SELECT d.delivery_to,d.delivery_phone,d.delivery_email,d.delivery_pin,d.delivery_house,d.delivery_street,d.delivery_landmark,d.delivery_city,d.delivery_state,d.delivery_type,DATE_FORMAT(o.order_date, '%M %d, %Y at %l:%i %p') AS order_date,o.orders_delivered,o.orders_shipped,o.orders_cancelled,o.order_delivery,o.order_status,DATEDIFF(CURDATE(), o.orders_delivered) AS days_difference,o.order_quick,DATE_FORMAT(o.order_quick_processed, '%M %d, %Y at %l:%i %p') AS order_processed,DATEDIFF(CURDATE(), o.order_quick_processed) AS days_datedifference ,r.return_status,DATE_FORMAT(r.status_date, '%M %d, %Y at %l:%i %p') AS status_date ,DATE_FORMAT(r.approved_date, '%M %d, %Y at %l:%i %p') AS approved_date ,DATE_FORMAT(r.pickup_date, '%M %d, %Y at %l:%i %p') AS pickup_date,DATE_FORMAT(r.refund_date, '%M %d, %Y at %l:%i %p') AS refund_date,f.refund_paymentid,f.refund_amount,DATE_FORMAT(f.refund_created, '%M %d, %Y at %l:%i %p') AS refund_created FROM delivery_address d JOIN  orders_tbl o ON o.order_deliverId=d.delivery_id AND d.delivery_user=o.order_customer  JOIN customers_tbl c ON c.customer_id=o.order_customer LEFT JOIN order_return_status_history r ON r.order_id=o.order_id LEFT JOIN refund_table f ON f.refund_orderid=o.order_id  WHERE (d.delivery_phone=phone OR c.customer_phone =phone)  AND o.order_orderid=orderId;
    
/*SELECT GROUP_CONCAT(CONCAT(ordet_producpackid, ',', order_batchid, ',', ordet_quantity,',',ordet_status,',',ordet_active,',',ordet_cron,',',order_prdate,',',order_shipped,',',order_delivered,',',order_cancelled,',',order_refund,',',order_cancelReason) SEPARATOR '##') INTO suppliers
FROM order_details d JOIN orders_tbl o ON d.ordet_order=o.order_id WHERE o.order_orderid=orderId  AND o.order_customer=userid;*/

/*SELECT GROUP_CONCAT(CONCAT(ordet_producpackid, ',', order_batchid, ',', ordet_quantity,',',ordet_status,',',ordet_active,',',ordet_cron,',',order_prdate,',',COALESCE(order_prdate,''),',',COALESCE(order_shipped,''),',',COALESCE(order_delivered,''),',',COALESCE(order_cancelled,''),',',COALESCE(order_refund,''),',',COALESCE(order_cancelReason,'')) SEPARATOR '##')INTO suppliers FROM(SELECT ordet_producpackid, order_batchid, SUM(ordet_quantity) AS ordet_quantity,ordet_status,ordet_active,ordet_cron,order_prdate,order_shipped,order_delivered,order_cancelled,order_refund,order_cancelReason FROM order_details d JOIN orders_tbl o ON d.ordet_order=o.order_id JOIN customers_tbl c ON c.customer_id=o.order_customer JOIN delivery_address a ON a.delivery_id=o.order_deliverId WHERE o.order_orderid=orderId AND (a.delivery_phone=phone OR c.customer_phone=phone) GROUP BY ordet_cartid) AS X;
*/


SELECT GROUP_CONCAT(CONCAT(ordet_producpackid, ',', order_batchid, ',', ordet_quantity,',',ordet_status,',',ordet_active,',',COALESCE(ordet_cron,''),',',COALESCE(order_prdate,''),',',COALESCE(order_shipped,''),',',COALESCE(order_delivered,''),',',COALESCE(order_cancelled,''),',',COALESCE(order_refund,''),',',COALESCE(order_cancelReason,''),',',order_mrp,',',order_msp,',',order_disc) SEPARATOR '##') INTO suppliers
FROM order_details d JOIN orders_tbl o ON d.ordet_order=o.order_id 
JOIN customers_tbl c ON c.customer_id = o.order_customer
    JOIN delivery_address a ON a.delivery_id = o.order_deliverId   WHERE o.order_orderid = orderId
      AND (a.delivery_phone = phone
           OR c.customer_phone = phone);

IF trim(suppliers) <> '' THEN
 SET @text := TRIM(BOTH '##' FROM suppliers);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
        SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
             SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
             SET @GRAPE := TRIM(BOTH ',' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
           WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, ',', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                   	SET @pack := SUBSTRING_INDEX(@Gstr, ',', -1);
                    ELSEIF @icols = 2 THEN
                    SET @batch := SUBSTRING_INDEX(@Gstr, ',', -1);
                      ELSEIF @icols = 3 THEN
                     SET @qty := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSEIF @icols = 4 THEN
                     SET @orderstatus := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSEIF @icols = 5 THEN
                       SET @deliverystatus := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 6 THEN
                       SET @ordcrton := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 7 THEN
                       SET @ordproc := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 8 THEN
                       SET @ordship := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 9 THEN
                       SET @orddeliv := SUBSTRING_INDEX(@Gstr, ',', -1);
                ELSEIF @icols = 10 THEN
                       SET @ordcancl := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSEIF @icols = 11 THEN
                       SET @ordref := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSEIF @icols = 12 THEN
                       SET @remarks := SUBSTRING_INDEX(@Gstr, ',', -1);
                       
                       ELSEIF @icols = 13 THEN
                       SET @mrp := SUBSTRING_INDEX(@Gstr, ',', -1);
                       
                       ELSEIF @icols = 14 THEN
                       SET @msp := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSE
                       SET @disc := SUBSTRING_INDEX(@Gstr, ',', -1);
                END IF;
        		SET @icols := @icols + 1;
                SET @ordcrton  = NULLIF(@ordcrton, '');
SET @ordproc   = NULLIF(@ordproc, '');
SET @ordship   = NULLIF(@ordship, '');
SET @orddeliv  = NULLIF(@orddeliv, '');
SET @ordcancl  = NULLIF(@ordcancl, '');
SET @ordref    = NULLIF(@ordref, '');
           	END WHILE;
            INSERT INTO temp_cartdetails(product_id,
        product_name,
    product_display,
    product_featured ,
    product_popular,
    prodpack_id,
    prodpack_quantity,
    packing_type,
    measunit_name,
    measunit_shortname,
    strstk_mrp,
    strstk_msp,
    stockin_batch,
    stockin_expiry,
    strstk_stock,
    strstk_stack,
    product_imageurl,
    strstk_discount,
    strstk_id,prd_qty,orderstatus,deliverystatus,ordcrton,ordproc,ordship,orddeliv,ordcancl,ordref,remarks)
            SELECT p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,t.packing_type,m.measunit_name,
m.measunit_shortname,@mrp,@msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,@disc, e.strstk_id,@qty,@orderstatus,@deliverystatus,@ordcrton,@ordproc,@ordship,@orddeliv,@ordcancl,@ordref,@remarks from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer
WHERE  e.strstk_item = @pack and e.strstk_id = @batch;
    		SET @i := @i + 1;
            END WHILE;
      SELECT * FROM temp_cartdetails;
END IF;


END$$

CREATE  PROCEDURE `getTransferPackets` (IN `stkordid` INT)   BEGIN
	SELECT t.transpack_id, t.transpack_packid, t.transpack_trackid, t.transpack_from, sfr.store_name AS fromstore, 
    t.transpack_to, sto.store_name AS tostore, t.transpack_items, t.transpack_collectby, t.transpack_status
    FROM transfer_packets t 
    LEFT JOIN stores_tbl sfr ON sfr.store_id = t.transpack_from 
    LEFT JOIN stores_tbl sto ON sto.store_id = t.transpack_to 
    WHERE t.transpack_refer = stkordid;
END$$

CREATE  PROCEDURE `getUserAllOrderDetailsbyUserId` (IN `userid` INT, IN `status_list` TEXT, IN `time_filter` TEXT, IN `final_date` VARCHAR(225))   BEGIN

/*SELECT o.order_orderid,DATE_FORMAT(o.order_date, '%M %d, %Y') as order_date,o.order_delivery, DATE_FORMAT(o.orders_delivered, 'On %a, %d %b') as orders_delivered,o.order_status,DATE_FORMAT(o.orders_cancelled, 'On %a, %d %b')as orders_cancelled, p.product_id,p.product_name,p.product_display,r.prodpack_id,t.packing_type,m.measunit_name,
m.measunit_shortname,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl, e.strstk_id FROM customers_tbl c JOIN orders_tbl o ON o.order_customer =c.customer_id JOIN order_details d ON d.ordet_order=o.order_id JOIN products_tbl p ON p.product_id=d.ordet_productid join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer  WHERE c.customer_id=userid AND c.customer_type=1 and e.strstk_item = d.ordet_producpackid and e.strstk_id=d.order_batchid order by o.order_id DESC  ;
*/
 DECLARE base_sql TEXT;
    DECLARE status_sql,cancelled_sql TEXT DEFAULT '';
    DECLARE date_sql TEXT DEFAULT '';
    DECLARE full_sql TEXT;
    DECLARE phone VARCHAR(255) DEFAULT '';
    
SELECT c.customer_phone INTO phone FROM customers_tbl c WHERE c.customer_id=userid;

    -- Filter: status
    
    SET status_sql = '';

IF status_list != '' THEN
    SET status_sql = CONCAT(
        ' AND (',

        /* Cancelled */
        ' (FIND_IN_SET(0, "', status_list, '") AND o.order_status = 0)',

        ' OR ',

        /* Returned */
        ' (FIND_IN_SET(2, "', status_list, '") AND o.order_status = 2)',

        ' OR ',

        /* Placed / Processing */
        ' (FIND_IN_SET(1, "', status_list, '") 
            AND o.order_status = 1 
            AND o.order_delivery IN (1,2,3))',

        ' OR ',

        /* Delivered */
        ' (FIND_IN_SET(4, "', status_list, '") 
            AND o.order_status = 1 
            AND o.order_delivery = 4)',

        ' )'
    );
END IF;

/*IF status_list != '' THEN
 
    SET status_sql = CONCAT(
        ' AND o.order_delivery IN (', status_list, ')');
       
END IF;*/


    -- Filter: time
    IF time_filter = 'Last 30 days' THEN
        SET date_sql = " AND o.order_date >= CURDATE() - INTERVAL 30 DAY";
    ELSEIF time_filter = 'Older' THEN
        SET date_sql = CONCAT(' AND YEAR(o.order_date) < ', final_date);
     ELSEIF time_filter LIKE '%,%' THEN
        SET date_sql = CONCAT(" AND FIND_IN_SET(YEAR(o.order_date), '", time_filter, "') > 0");

    -- ✅ SINGLE YEAR FILTER (e.g. '2023')
    ELSEIF time_filter REGEXP '^[0-9]{4}$' THEN
        SET date_sql = CONCAT(" AND YEAR(o.order_date) = ", time_filter);
        ELSE
        SET date_sql = "";
    END IF;

    -- Base Query
   
SET @sql  = CONCAT(
    '
    (SELECT 
        o.order_orderid,
        DATE_FORMAT(o.order_date, "%M %d, %Y") AS order_date,
        o.order_delivery,
        DATE_FORMAT(o.orders_delivered, "On %a, %d %b") AS orders_delivered,
            DATE_FORMAT(o.orders_shipped, "On %a, %d %b") AS orders_shipped,
        o.order_status,
        DATE_FORMAT(o.orders_cancelled, "On %a, %d %b") AS orders_cancelled,
    h.return_status,DATE_FORMAT(h.status_date, "On %a, %d %b") AS status_date ,DATE_FORMAT(h.approved_date, "On %a, %d %b") AS approved_date ,DATE_FORMAT(h.pickup_date, "On %a, %d %b") AS pickup_date,DATE_FORMAT(h.refund_date, "On %a, %d %b") AS refund_date,
        null AS product_id,
        null AS product_name,
        null AS product_display,
        null AS prodpack_id,
        null AS packing_type,
        null AS measunit_name,
        null AS measunit_shortname,
        null  AS product_imageurl,
        null AS strstk_id,
        o.order_quick,
        o.order_quick_status,DATE_FORMAT(order_quick_processed, "On %a, %d %b") AS order_quick_processed
     FROM 
        customers_tbl c
     JOIN orders_tbl o ON o.order_customer = c.customer_id
    LEFT JOIN order_return_status_history h ON h.order_id=o.order_id
    
     WHERE 
        c.customer_id = ', userid, '
        AND c.customer_type = 1
       
        AND o.order_quick=1 ', status_sql, date_sql, '
   
          )
    UNION
    
    ',cancelled_sql,'
    (SELECT 
        o.order_orderid,
        DATE_FORMAT(o.order_date, "%M %d, %Y") AS order_date,
        o.order_delivery,
        DATE_FORMAT(o.orders_delivered, "On %a, %d %b") AS orders_delivered,
            DATE_FORMAT(o.orders_shipped, "On %a, %d %b") AS orders_shipped,
        o.order_status,
        DATE_FORMAT(o.orders_cancelled, "On %a, %d %b") AS orders_cancelled,
    h.return_status,DATE_FORMAT(h.status_date, "On %a, %d %b") AS status_date ,DATE_FORMAT(h.approved_date, "On %a, %d %b") AS approved_date ,DATE_FORMAT(h.pickup_date, "On %a, %d %b") AS pickup_date,DATE_FORMAT(h.refund_date, "On %a, %d %b") AS refund_date,
        p.product_id,
        p.product_name,
        p.product_display,
        r.prodpack_id,
        t.packing_type,
        m.measunit_name,
        m.measunit_shortname,
        (SELECT g.prodgal_url
         FROM product_gallery g
         WHERE g.prodgal_prodpack = r.prodpack_id
           AND g.prodgal_placedat = 1
           AND g.prodgal_medium = 1
           AND g.prodgal_publish = 1
           AND g.prodgal_status = 1
         ORDER BY g.prodgal_serial ASC
         LIMIT 1) AS product_imageurl,
        e.strstk_id,
    o.order_quick,
        o.order_quick_status,DATE_FORMAT(order_quick_processed, "On %a, %d %b") AS order_quick_processed
     FROM 
        customers_tbl c
     JOIN orders_tbl o ON o.order_customer = c.customer_id
    LEFT JOIN order_return_status_history h ON h.order_id=o.order_id
     JOIN order_details d ON d.ordet_order = o.order_id
     JOIN products_tbl p ON p.product_id = d.ordet_productid
     JOIN product_packing r ON r.prodpack_product = p.product_id
     JOIN packing_tbl t ON t.packing_id = r.prodpack_package
     JOIN measure_units m ON m.measunit_id = r.prodpack_unit
     JOIN stock_inwards s ON s.stockin_item = r.prodpack_id
     JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id AND s.stockin_id = e.strstk_refer
     WHERE 
        c.customer_id = ', userid, '
        AND c.customer_type = 1
        AND e.strstk_item = d.ordet_producpackid
   
        AND e.strstk_id = d.order_batchid ', status_sql, date_sql, ' )
UNION
( 
     SELECT 
        o.order_orderid,
        DATE_FORMAT(o.order_date, "%M %d, %Y") AS order_date,
        o.order_delivery,
        DATE_FORMAT(o.orders_delivered, "On %a, %d %b") AS orders_delivered,
                DATE_FORMAT(o.orders_shipped, "On %a, %d %b") AS orders_shipped,
        o.order_status,
        DATE_FORMAT(o.orders_cancelled, "On %a, %d %b") AS orders_cancelled,
    h.return_status,DATE_FORMAT(h.status_date, "On %a, %d %b") AS status_date ,DATE_FORMAT(h.approved_date, "On %a, %d %b") AS approved_date ,DATE_FORMAT(h.pickup_date, "On %a, %d %b") AS pickup_date,DATE_FORMAT(h.refund_date, "On %a, %d %b") AS refund_date,

        p.product_id,
        p.product_name,
        p.product_display,
        r.prodpack_id,
        t.packing_type,
        m.measunit_name,
        m.measunit_shortname,
        (SELECT g.prodgal_url
         FROM product_gallery g
         WHERE g.prodgal_prodpack = r.prodpack_id
           AND g.prodgal_placedat = 1
           AND g.prodgal_medium = 1
           AND g.prodgal_publish = 1
           AND g.prodgal_status = 1
         ORDER BY g.prodgal_serial ASC
         LIMIT 1) AS product_imageurl,
        e.strstk_id,
    o.order_quick,
        o.order_quick_status,DATE_FORMAT(order_quick_processed, "On %a, %d %b") AS order_quick_processed
     FROM 
        customers_tbl c
     JOIN orders_tbl o ON o.order_customer = c.customer_id
    LEFT JOIN order_return_status_history h ON h.order_id=o.order_id

     JOIN delivery_address dd ON o.order_deliverId = dd.delivery_id
     JOIN order_details d ON d.ordet_order = o.order_id
     JOIN products_tbl p ON p.product_id = d.ordet_productid
     JOIN product_packing r ON r.prodpack_product = p.product_id
     JOIN packing_tbl t ON t.packing_id = r.prodpack_package
     JOIN measure_units m ON m.measunit_id = r.prodpack_unit
     JOIN stock_inwards s ON s.stockin_item = r.prodpack_id
     JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id AND s.stockin_id = e.strstk_refer
     WHERE 
        dd.delivery_phone = ', phone, '
        AND c.customer_type = 1
        AND e.strstk_item = d.ordet_producpackid
        AND e.strstk_id = d.order_batchid ', status_sql, date_sql, ' ) ORDER BY order_orderid DESC

');


    -- Combine final query
   
    -- Prepare and Execute
    PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;

END$$

CREATE  PROCEDURE `getUserByID` (IN `id` INT)   begin
select u.user_id,u.user_login,u.user_password,u.user_staffid,u.user_staffname,u.user_programid,u.user_programcontains,up.usrprog_name,u.user_status from users_tbl u join user_program up on u.user_programid = up.usrprog_id where u.user_id = id;
 END$$

CREATE  PROCEDURE `getUserCredentials` (IN `phone` VARCHAR(50), IN `pass` VARCHAR(50), IN `flag` INT)   BEGIN
declare ids,counts int;
if flag=1 THEN
SELECT count(*) INTO counts FROM customers_tbl c WHERE (c.customer_phone = phone OR c.customer_email=phone) and c.customer_type=1;
IF(counts=1)THEN
IF EXISTS (
    SELECT customer_id
    FROM customers_tbl
    WHERE (customer_phone = phone OR customer_email = phone)
    AND customer_password = pass
) THEN
    SELECT customer_id INTO ids
    FROM customers_tbl
    WHERE (customer_phone = phone OR customer_email = phone)
    AND customer_password = pass;
 SELECT ids;
 ELSE
 SELECT "wrong password";
 END IF;
 
ELSE
 SELECT "not exists";
 END IF;

END IF;
END$$

CREATE  PROCEDURE `getUserCredentialsbyPhone` (IN `phone` VARCHAR(50))   BEGIN
declare ids,counts int;

SELECT count(*) INTO counts FROM customers_tbl c WHERE (c.customer_phone = phone) and c.customer_type=1;
IF(counts=1)THEN
IF EXISTS (
    SELECT customer_id
    FROM customers_tbl
    WHERE customer_phone = phone AND customer_type=1
    
) THEN
    SELECT customer_id INTO ids
    FROM customers_tbl
    WHERE customer_phone = phone AND customer_type=1;
   
 SELECT ids;

 END IF;
 
ELSE
 SELECT "not exists";
 END IF;

END$$

CREATE  PROCEDURE `getUserDetailsbyID` (IN `customer_id` INT)   BEGIN
SELECT c.customer_number,c.customer_name,c.customer_phone,c.customer_email,c.customer_gender,c.customer_age FROM customers_tbl c WHERE c.customer_id=customer_id AND c.customer_type=1;
END$$

CREATE  PROCEDURE `getUserOrderDetailsbyOrderId` (IN `orderId` VARCHAR(200), IN `userid` INT)   BEGIN
DECLARE suppliers  TEXT;
DECLARE quickorder INT DEFAULT 0;
DROP TEMPORARY TABLE IF EXISTS temp_cartdetails;
CREATE TEMPORARY TABLE temp_cartdetails (
        product_id INT,
        product_name VARCHAR(255),
    product_display VARCHAR(255),
    product_featured INT,
    product_popular INT,
    prodpack_id INT,
    prodpack_quantity INT,
    packing_type VARCHAR(255),
    measunit_name VARCHAR(255),
    measunit_shortname VARCHAR(255),
    strstk_mrp DECIMAL(9, 2),
    strstk_msp DECIMAL(9, 2),
    stockin_batch VARCHAR(50),
    stockin_expiry DATE,
    strstk_stock INT,
    strstk_stack INT,
    product_imageurl VARCHAR(255),
    strstk_discount	DECIMAL(5, 2),
    strstk_id INT,prd_qty INT,orderstatus INT,deliverystatus INT,ordcrton DATETIME,ordproc DATETIME,ordship DATETIME,orddeliv DATETIME, ordcancl DATETIME, ordref DATETIME, remarks TEXT);
    SELECT d.delivery_to,d.delivery_phone,d.delivery_email,d.delivery_pin,d.delivery_house,d.delivery_street,d.delivery_landmark,d.delivery_city,d.delivery_state,d.delivery_type,DATE_FORMAT(o.order_date, '%M %d, %Y at %l:%i %p') AS order_date,o.orders_delivered,o.orders_shipped,o.orders_cancelled,o.order_delivery,o.order_status,DATEDIFF(CURDATE(), o.orders_delivered) AS days_difference,r.return_status,DATE_FORMAT(r.status_date, '%M %d, %Y at %l:%i %p') AS status_date ,DATE_FORMAT(r.approved_date, '%M %d, %Y at %l:%i %p') AS approved_date ,DATE_FORMAT(r.pickup_date, '%M %d, %Y at %l:%i %p') AS pickup_date,DATE_FORMAT(r.refund_date, '%M %d, %Y at %l:%i %p') AS refund_date,o.order_quick_status,
o.order_quick,DATE_FORMAT(o.order_quick_processed, '%M %d, %Y at %l:%i %p') AS order_quick_processed,DATEDIFF(CURDATE(), o.order_quick_processed) AS days_datedifference,f.refund_paymentid,f.refund_amount,DATE_FORMAT(f.refund_created, '%M %d, %Y at %l:%i %p') AS refund_created FROM delivery_address d JOIN  orders_tbl o ON o.order_deliverId=d.delivery_id AND d.delivery_user=o.order_customer LEFT JOIN order_return_status_history r ON r.order_id=o.order_id LEFT JOIN refund_table f ON f.refund_orderid=o.order_id  WHERE d.delivery_user=userid  AND o.order_orderid=orderId;
    
   SELECT GROUP_CONCAT(CONCAT(ordet_producpackid, ',', order_batchid, ',', ordet_quantity,',',ordet_status,',',ordet_active,',',ordet_cron,',',COALESCE(order_prdate,''),',',COALESCE(order_shipped,''),',',COALESCE(order_delivered,''),',',COALESCE(order_cancelled,''),',',COALESCE(order_refund,''),',',COALESCE(order_cancelReason,''),',',order_mrp,',',order_msp,',',order_disc) SEPARATOR '##') INTO suppliers
FROM order_details d JOIN orders_tbl o ON d.ordet_order=o.order_id WHERE o.order_orderid=orderId  AND o.order_customer=userid;

IF quickorder=0 THEN

IF trim(suppliers) <> '' THEN
 SET @text := TRIM(BOTH '##' FROM suppliers);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
        SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
             SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
             SET @GRAPE := TRIM(BOTH ',' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
           WHILE @strGLen < LENGTH(@GRAPE) DO
		       	SET @Gstr := SUBSTRING_INDEX(@GRAPE, ',', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                   	SET @pack := SUBSTRING_INDEX(@Gstr, ',', -1);
                    ELSEIF @icols = 2 THEN
                    SET @batch := SUBSTRING_INDEX(@Gstr, ',', -1);
                      ELSEIF @icols = 3 THEN
                     SET @qty := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSEIF @icols = 4 THEN
                     SET @orderstatus := SUBSTRING_INDEX(@Gstr, ',', -1);
                     ELSEIF @icols = 5 THEN
                       SET @deliverystatus := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 6 THEN
                       SET @ordcrton := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 7 THEN
                       SET @ordproc := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 8 THEN
                       SET @ordship := SUBSTRING_INDEX(@Gstr, ',', -1);
                 ELSEIF @icols = 9 THEN
                       SET @orddeliv := SUBSTRING_INDEX(@Gstr, ',', -1);
                ELSEIF @icols = 10 THEN
                       SET @ordcancl := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSEIF @icols = 11 THEN
                       SET @ordref := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSEIF @icols = 12 THEN
                       SET @remarks := SUBSTRING_INDEX(@Gstr, ',', -1);
                       
                       ELSEIF @icols = 13 THEN
                       SET @mrp := SUBSTRING_INDEX(@Gstr, ',', -1);
                       
                       ELSEIF @icols = 14 THEN
                       SET @msp := SUBSTRING_INDEX(@Gstr, ',', -1);
                       ELSE
                       SET @disc := SUBSTRING_INDEX(@Gstr, ',', -1);
                END IF;
        		SET @icols := @icols + 1;
                
                SET @ordcrton  = NULLIF(@ordcrton, '');
SET @ordproc   = NULLIF(@ordproc, '');
SET @ordship   = NULLIF(@ordship, '');
SET @orddeliv  = NULLIF(@orddeliv, '');
SET @ordcancl  = NULLIF(@ordcancl, '');
SET @ordref    = NULLIF(@ordref, '');
           	END WHILE;
            
            
            INSERT INTO temp_cartdetails(product_id,
        product_name,
    product_display,
    product_featured ,
    product_popular,
    prodpack_id,
    prodpack_quantity,
    packing_type,
    measunit_name,
    measunit_shortname,
    strstk_mrp,
    strstk_msp,
    stockin_batch,
    stockin_expiry,
    strstk_stock,
    strstk_stack,
    product_imageurl,
    strstk_discount,
    strstk_id,prd_qty,orderstatus,deliverystatus,ordcrton,ordproc,ordship,orddeliv,ordcancl,ordref,remarks)
            SELECT p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,t.packing_type,m.measunit_name,
m.measunit_shortname,@mrp,@msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl,@disc, e.strstk_id,@qty,@orderstatus,@deliverystatus,@ordcrton,@ordproc,@ordship,@orddeliv,@ordcancl,@ordref,@remarks from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id and s.stockin_id=e.strstk_refer
WHERE p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and e.strstk_item = @pack and e.strstk_id = @batch;
    		SET @i := @i + 1;
            END WHILE;
      SELECT * FROM temp_cartdetails;
       
END IF;
 
      END IF;
      
END$$

CREATE  PROCEDURE `getUserPrograms` ()   begin


select u.usrprog_id,u.usrprog_name,u.usrprog_programs,u.usrprog_crtby from user_program u ;

END$$

CREATE  PROCEDURE `getUserQucikOrderDetailsbyOrderId` (IN `orderId` VARCHAR(200), IN `userid` INT)   BEGIN

    SELECT d.delivery_to,d.delivery_phone,d.delivery_email,d.delivery_pin,d.delivery_house,d.delivery_street,d.delivery_landmark,d.delivery_city,d.delivery_state,d.delivery_type,DATE_FORMAT(o.order_date, '%M %d, %Y at %l:%i %p') AS order_date,o.order_quick_status,o.orders_cancelled,o.order_status,DATE_FORMAT(o.order_quick_processed, '%M %d, %Y at %l:%i %p') AS order_processed,DATEDIFF(CURDATE(), o.order_quick_processed) AS days_difference FROM delivery_address d JOIN  orders_tbl o ON o.order_deliverId=d.delivery_id AND d.delivery_user=o.order_customer  WHERE d.delivery_user=userid  AND o.order_orderid=orderId AND o.order_quick=1;
    
 
END$$

CREATE  PROCEDURE `getUsersList` ()   begin
select u.user_id,u.user_login,u.user_staffid,u.user_staffname,u.user_status from users_tbl u;
END$$

CREATE  PROCEDURE `getVendorPOsforInvoice` (IN `vtype` INT, IN `vendor` INT)   BEGIN
    	SELECT x.purchord_id, x.purchord_ref, x.purchord_date ,x.purchord_deliverat,s.store_GST,s.store_name
        FROM purchase_orders x  INNER JOIN stores_tbl s ON s.store_id=x.purchord_deliverat
        WHERE x.purchord_vendtype = vtype AND x.purchord_vendor = vendor AND  x.purchord_status > 0 AND x.purchord_issuedby > 0 and ((select count(*) from purchase_details pd where pd.podetail_order = x.purchord_id) <> (select count(*)  from invoice_details id where id.invdet_porder = x.purchord_id))
        ORDER BY x.purchord_date;
END$$

CREATE  PROCEDURE `getVendorProductSupplies` (IN `vtype` INT, IN `vendid` INT, IN `product` INT)   BEGIN
	SELECT x.vendsup_id, x.vendsup_packing, p.packing_type, pp.prodpack_hsn, pp.prodpack_taxgroup,
    x.vendsup_price, x.vendsup_minqty, x.vendsup_maxqty, x.vendsup_eoq, x.vendsup_deliver,CONCAT(p.packing_type, ' ', pp.prodpack_quantity, ' ', m.measunit_shortname) AS boxunit
    FROM vendor_supplies x
    LEFT JOIN product_packing pp on x.vendsup_packing = pp.prodpack_id
    LEFT JOIN packing_tbl p ON p.packing_id = pp.prodpack_package
    LEFT JOIN measure_units m ON m.measunit_id =pp.prodpack_unit
    WHERE x.vendsup_type = vtype AND x.vendsup_vendor = vendid
    AND x.vendsup_product = product AND x.vendsup_status = 1
    ORDER BY x.vendsup_packing;
END$$

CREATE  PROCEDURE `get_slider` ()   BEGIN
SELECT `slider_id`, `slider_type`, `slider_image`,  `slider_disocunt`, `slider_disctype`, `slider_sort`, `slider_status`,
    
      IFNULL( (SELECT GROUP_CONCAT(p.product_name SEPARATOR ', ')
        FROM products_tbl p
        WHERE FIND_IN_SET(p.product_id, h.slider_product)),'') AS slider_products  FROM tbl_homepageslier h;
END$$

CREATE  PROCEDURE `globalsearchProductByName` (IN `prdname` VARCHAR(200))   BEGIN
if prdname!='' then
select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
                                                                  
WHERE p.product_name like concat(prdname,'%') and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and s.stockin_expiry >= CURRENT_DATE() order by s.stockin_expiry asc) as x group by x.product_id UNION select x.product_id,x.product_name,x.product_display,x.product_featured,x.product_popular,x.prodpack_id,x.prodpack_quantity,x.prodpack_maxstock,x.prodpack_minstock,x.packing_type,x.measunit_name,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.stockin_expiry,x.strstk_stock,x.strstk_stack, x.product_imageurl from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_id,p.product_name,p.product_display,p.product_featured,p.product_popular,r.prodpack_id,r.prodpack_quantity,r.prodpack_maxstock,r.prodpack_minstock,t.packing_type,m.measunit_name,p.product_generic,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,s.stockin_expiry,e.strstk_stock,e.strstk_stack,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id LEFT JOIN generic_medicines j ON j.genmed_id=p.product_generic
                                                                  
WHERE j.genmed_name like concat('%',prdname,'%') and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and s.stockin_expiry >= CURRENT_DATE() order by s.stockin_expiry asc) as x group by x.product_id;
END IF;
END$$

CREATE  PROCEDURE `hourlySalesAnalysisByStores` (IN `storeid` INT, IN `fdate` DATE)   BEGIN

SELECT s.store_id,s.store_code,s.store_name FROM stores_tbl s WHERE s.store_status=1;

    SELECT 
        DATE(b.bill_crtdon) AS bill_date,
        CASE
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '07:01' AND '08:00' THEN '07:01 to 08:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '08:01' AND '09:00' THEN '08:01 to 09:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '09:01' AND '10:00' THEN '09:01 to 10:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '10:01' AND '11:00' THEN '10:01 to 11:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '11:01' AND '12:00' THEN '11:01 to 12:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '12:01' AND '13:00' THEN '12:01 to 13:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '13:01' AND '14:00' THEN '13:01 to 14:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '14:01' AND '15:00' THEN '14:01 to 15:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '15:01' AND '16:00' THEN '15:01 to 16:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '16:01' AND '17:00' THEN '16:01 to 17:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '17:01' AND '18:00' THEN '17:01 to 18:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '18:01' AND '19:00' THEN '18:01 to 19:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '19:01' AND '20:00' THEN '19:01 to 20:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '20:01' AND '21:00' THEN '20:01 to 21:00'
            WHEN DATE_FORMAT(b.bill_crtdon, '%H:%i') BETWEEN '21:01' AND '22:00' THEN '21:01 to 22:00'
        END AS time_interval,
        COUNT(b.bill_id) AS total_bills,
        SUM(b.bill_netpay) AS total_amount,ss.store_code,ss.store_name,ss.store_id
    FROM bills_table b
   /* LEFT JOIN bill_items bt ON bt.billit_id = b.bill_id */
    LEFT JOIN stores_tbl ss ON ss.store_id=b.bill_store
    WHERE 
        b.bill_store = storeid 
        AND b.bill_date = fdate
    GROUP BY bill_date, time_interval
    ORDER BY bill_date, time_interval;

END$$

CREATE  PROCEDURE `inlineSaveForHomeMenuOffers` (IN `ids` INT, IN `datalist` INT, IN `content` VARCHAR(225))   BEGIN

IF datalist=1 THEN

UPDATE home_menu_offer SET 	menu_caption=content WHERE menu_id=ids;
 ELSEIF datalist=2 THEN
UPDATE home_menu_offer SET 	menu_discount=content WHERE menu_id=ids;

ELSE
UPDATE home_menu_offer SET 	menu_disctype=content WHERE menu_id=ids;

END IF;
END$$

CREATE  PROCEDURE `inlineSaveForHomeSlider` (IN `ids` INT, IN `content` VARCHAR(225))   BEGIN


UPDATE tbl_homepageslier SET slider_sort=content WHERE slider_id=ids;
 
END$$

CREATE  PROCEDURE `inlineSaveForIsssueandSolution` (IN `inline_id` INT, IN `datalist` INT, IN `content` TEXT)   BEGIN

IF datalist=1 THEN
UPDATE tbl_help_desk_reason SET reason_issue=content WHERE 	reason_id=inline_id;

ELSE 
UPDATE tbl_help_desk_reason SET reason_help=content WHERE 	reason_id=inline_id;
END IF ;
END$$

CREATE  PROCEDURE `inlineUpdateStoreIntend` (IN `intendid` INT, IN `item` INT, IN `quantity` INT, IN `adminid` INT, IN `flag` INT)   BEGIN
	DECLARE success INT DEFAULT 0; 
    
	IF flag = 0 THEN
		UPDATE intend_details SET intdet_quantity = quantity, intdet_updby = adminid  
    	WHERE intdet_id = intendid AND intdet_item = item;
        SET success = 1;
    ELSEIF flag = 1 THEN /* cancel intend */
    	UPDATE intends_tbl SET intend_status = 0 
        WHERE intend_id = intendid AND intend_apprvedby = 0;
        IF (SELECT intend_status FROM intends_tbl WHERE intend_id = intendid) = 0 THEN
        	SET success = 1;
            UPDATE intend_details SET intdet_status = 0 
            WHERE intdet_id = intendid /* AND intdet_item = item 
        		AND intdet_allotted = 0 */ AND intdet_status = 1;
        END IF;
    ELSEIF flag = 2 THEN /* cancel intend item */
    	DELETE FROM intend_details 
        WHERE intdet_id = intendid AND intdet_item = item 
        	AND intdet_allotted = 0 AND intdet_status = 1;
        IF ROW_COUNT() > 0 THEN
        	UPDATE intends_tbl SET intend_items = intend_items - 1 
            WHERE intend_id = intendid;
            SET success = 1;
        END IF;
    END IF;
    SELECT success as response;
END$$

CREATE  PROCEDURE `inlUpdateAdviceStatus` (IN `advid` INT, IN `advice` TEXT, IN `adstatus` INT, IN `flag` INT, IN `admin` INT)   BEGIN
	IF flag = 1 THEN
		UPDATE advices_table SET advice_content = advice, advice_updby = admin 
    	WHERE advice_id = advid;
    ELSE
    	UPDATE advices_table SET advice_status = adstatus, advice_updby = admin 
    	WHERE advice_id = advid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateBrandnameStatus` (IN `brandid` INT, IN `brand` VARCHAR(100), IN `bstatus` INT, IN `flag` INT, IN `admin` INT)   BEGIN
	IF flag = 1 THEN
		UPDATE brands_tbl SET brand_name = brand, brand_updby = admin 
    	WHERE brand_id = brandid;
    ELSE
    	UPDATE brands_tbl SET brand_status = bstatus, brand_updby = admin  
    	WHERE brand_id = brandid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateDrugclassStatus` (IN `drgclsid` INT, IN `drgclass` VARCHAR(150), IN `dstatus` INT, IN `flag` INT, IN `admin` INT)   BEGIN
	DECLARE isStatus INT DEFAULT 1;
    DECLARE pcount INT DEFAULT 0;
    
    IF flag = 1 THEN
    	UPDATE drug_classifications SET
    	drugclass_name = drgclass, drugclass_updby = admin 
    	WHERE drugclass_id = drgclsid;
    ELSE
        IF dstatus = 0 THEN
            SELECT COUNT(drugclass_id) INTO pcount 
            FROM drug_classifications k 
            WHERE k.drugclass_parent = drgclsid;
            IF pcount = 0 THEN
                SET isStatus = 0;
            END IF;
        END IF;
		UPDATE drug_classifications SET
    	drugclass_status = isStatus, drugclass_updby = admin 
    	WHERE drugclass_id = drgclsid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateFaqStatus` (IN `faqid` INT, IN `faq` VARCHAR(255), IN `answer` TEXT, IN `fstatus` INT, IN `flag` INT, IN `admin` INT)   BEGIN
	IF flag = 1 THEN
		UPDATE faq_table SET faq_question = faq, faq_updby = admin 
    	WHERE faq_id = faqid;
    ELSEIF flag = 2 THEN
		UPDATE faq_table SET faq_answer = answer, faq_updby = admin 
    	WHERE faq_id = faqid;
    ELSE
    	UPDATE faq_table SET faq_status = fstatus, faq_updby = admin  
    	WHERE faq_id = faqid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateGenericStatus` (IN `genmedid` INT, IN `medicine` VARCHAR(100), IN `mstatus` INT, IN `flag` INT, IN `admin` INT)   BEGIN
	IF flag = 1 THEN
		UPDATE generic_medicines SET genmed_name = medicine, genmed_updby = admin 
    	WHERE genmed_id = genmedid;
    ELSE
    	UPDATE generic_medicines SET genmed_status = mstatus, genmed_updby = admin  
    	WHERE genmed_id = genmedid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateIngredStatus` (IN `ingrid` INT, IN `ingred` VARCHAR(100), IN `istatus` INT, IN `flag` INT, IN `admin` INT)   BEGIN
	IF flag = 1 THEN
		UPDATE ingredients_tbl SET ingred_name = ingred, ingred_updby = admin 
    	WHERE brand_id = brandid;
    ELSE
    	UPDATE ingredients_tbl SET ingred_status = istatus, ingred_updby = admin  
    	WHERE brand_id = brandid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateListing` (IN `program` INT, IN `listing` INT, IN `keyval` INT, IN `newval` VARCHAR(200), IN `adminid` INT)   BEGIN
	/* listing 1: name, 2:contact person, 3:phone, 4:mobile, 5:email, 6:whatsapp, 7:code */
    if listing = 1 THEN
    	CASE program 
        	WHEN 10 THEN
            	UPDATE generic_medicines SET genmed_name = newval, genmed_updby = adminid  
                WHERE genmed_id = keyval;
            WHEN 11 THEN
            	UPDATE manufacturers_tbl SET manuf_name = newval, manuf_updby = adminid 
                WHERE manuf_id = keyval;
            WHEN 12 THEN
            	UPDATE brands_tbl SET brand_name = newval, brand_updby = adminid 
                WHERE brand_id = keyval;
            WHEN 13 THEN
            	UPDATE stockists_tbl SET stockist_name = newval, stockist_updby = adminid 
                WHERE stockist_id = keyval;
            WHEN 14 THEN
            	UPDATE distributors_tbl SET distri_name = newval, distri_updby = adminid 
                WHERE distri_id = keyval;
            WHEN 15 THEN
            	UPDATE dealers_tbl SET dealer_name = newval, dealer_updby = adminid 
                WHERE dealer_id = keyval;
            WHEN 16 THEN
            	UPDATE ingredients_tbl SET ingred_name = newval, ingred_updby = adminid 
                WHERE ingred_id = keyval;
            WHEN 17 THEN
            	UPDATE drug_classifications SET drugclass_name = newval, drugclass_updby = adminid 
                WHERE drugclass_id = keyval;
            WHEN 18 THEN
            	UPDATE products_tbl SET product_name = newval, product_updby = adminid 
                WHERE product_id = keyval;
            WHEN 20 THEN
            	UPDATE stores_tbl SET store_name = newval, store_updby = adminid 
                WHERE store_id = keyval;
            WHEN 21 THEN
            	UPDATE delivery_areas SET delarea_location = newval, delarea_updby = adminid 
                WHERE delarea_id = keyval;
        END CASE;
    ELSEIF listing = 2 THEN
    	CASE program 
            WHEN 11 THEN
            	UPDATE manufacturers_tbl SET manuf_contact = newval, manuf_updby = adminid 
                WHERE manuf_id = keyval;
            WHEN 13 THEN
            	UPDATE stockists_tbl SET stockist_contact = newval, stockist_updby = adminid 
                WHERE stockist_id = keyval;
            WHEN 14 THEN
            	UPDATE distributors_tbl SET distri_contact = newval, distri_updby = adminid 
                WHERE distri_id = keyval;
            WHEN 15 THEN
            	UPDATE dealers_tbl SET dealer_contact = newval, dealer_updby = adminid 
                WHERE dealer_id = keyval;
            WHEN 20 THEN
            	UPDATE stores_tbl SET store_contact = newval, store_updby = adminid 
                WHERE store_id = keyval;
        END CASE;
    ELSEIF listing = 3 THEN
    	CASE program 
            WHEN 11 THEN
            	UPDATE manufacturers_tbl SET manuf_contactno = newval, manuf_updby = adminid 
                WHERE manuf_id = keyval;
            WHEN 13 THEN
            	UPDATE stockists_tbl SET stockist_contactno = newval, stockist_updby = adminid 
                WHERE stockist_id = keyval;
            WHEN 14 THEN
            	UPDATE distributors_tbl SET distri_contactno = newval, distri_updby = adminid 
                WHERE distri_id = keyval;
            WHEN 15 THEN
            	UPDATE dealers_tbl SET dealer_contactno = newval, dealer_updby = adminid 
                WHERE dealer_id = keyval;
            WHEN 20 THEN
            	UPDATE stores_tbl SET store_contactno = newval, store_updby = adminid 
                WHERE store_id = keyval;
        END CASE;
    ELSEIF listing = 4 THEN
    	CASE program 
            WHEN 11 THEN
            	UPDATE manufacturers_tbl SET manuf_contactcell = newval, manuf_updby = adminid 
                WHERE manuf_id = keyval;
            WHEN 13 THEN
            	UPDATE stockists_tbl SET stockist_contactcell = newval, stockist_updby = adminid 
                WHERE stockist_id = keyval;
            WHEN 14 THEN
            	UPDATE distributors_tbl SET distri_contactcell = newval, distri_updby = adminid 
                WHERE distri_id = keyval;
            WHEN 15 THEN
            	UPDATE dealers_tbl SET dealer_contactcell = newval, dealer_updby = adminid 
                WHERE dealer_id = keyval;
            WHEN 20 THEN
            	UPDATE stores_tbl SET store_contactcell = newval, store_updby = adminid 
                WHERE store_id = keyval;
        END CASE;
    ELSEIF listing = 5 THEN
    	CASE program 
            WHEN 11 THEN
            	UPDATE manufacturers_tbl SET manuf_contactemail = newval, manuf_updby = adminid 
                WHERE manuf_id = keyval;
            WHEN 13 THEN
            	UPDATE stockists_tbl SET stockist_contactemail = newval, stockist_updby = adminid 
                WHERE stockist_id = keyval;
            WHEN 14 THEN
            	UPDATE distributors_tbl SET distri_contactemail = newval, distri_updby = adminid 
                WHERE distri_id = keyval;
            WHEN 15 THEN
            	UPDATE dealers_tbl SET dealer_contactemail = newval, dealer_updby = adminid 
                WHERE dealer_id = keyval;
            WHEN 20 THEN
            	UPDATE stores_tbl SET store_contactemail = newval, store_updby = adminid 
                WHERE store_id = keyval;
    	END CASE;
    ELSEIF listing = 6 THEN
    	CASE program 
            WHEN 11 THEN
            	UPDATE manufacturers_tbl SET manuf_whatsapp = newval, manuf_updby = adminid 
                WHERE manuf_id = keyval;
            WHEN 13 THEN
            	UPDATE stockists_tbl SET stockist_whatsapp = newval, stockist_updby = adminid 
                WHERE stockist_id = keyval;
            WHEN 14 THEN
            	UPDATE distributors_tbl SET distri_whatsapp = newval, distri_updby = adminid 
                WHERE distri_id = keyval;
            WHEN 15 THEN
            	UPDATE dealers_tbl SET dealer_whatsapp = newval, dealer_updby = adminid 
                WHERE dealer_id = keyval;
            WHEN 20 THEN
            	UPDATE stores_tbl SET store_contactwapp = newval, store_updby = adminid 
                WHERE store_id = keyval;
        END CASE;
    ELSEIF listing = 7 THEN
    	UPDATE stores_tbl SET store_code = newval, store_updby = adminid 
        WHERE store_id = keyval;
    END IF;
    
END$$

CREATE  PROCEDURE `inlUpdateMesureUnitName` (IN `prdclid` INT, IN `measure` VARCHAR(50), IN `shrt` VARCHAR(50), IN `adminid` INT)   BEGIN
	IF TRIM(measure) <> '' THEN
		UPDATE measure_units 
    	SET measunit_name = measure, measunit_updby = adminid 
    	WHERE measunit_id = prdclid;
    ELSEIF TRIM(shrt) <> '' THEN
		UPDATE measure_units 
    	SET measunit_shortname= shrt, measunit_updby = adminid 
    	WHERE measunit_id = prdclid;
   	END IF;
END$$

CREATE  PROCEDURE `inlUpdatePackingName` (IN `prdclid` INT, IN `packing` VARCHAR(50), IN `adminid` INT)   BEGIN
	IF trim(packing) <> '' THEN
		UPDATE packing_tbl 
    	SET packing_type = packing, packing_updby = adminid 
    	WHERE packing_id = prdclid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateProdcuClassName` (IN `prdclid` INT, IN `prdcls` VARCHAR(100), IN `adminid` INT)   BEGIN
	UPDATE product_classes 
    SET prodclass_name = prdcls, prodclass_updby = adminid 
    WHERE prodclass_id = prdclid;
END$$

CREATE  PROCEDURE `inlUpdateStockPrice` (IN `stkid` INT, IN `msp` DECIMAL(9,2), IN `mrp` DECIMAL(9,2), IN `discount` DECIMAL(5,2))   BEGIN
	DECLARE newprice DECIMAL(9,2) DEFAULT 0;

    IF discount > 0 THEN
    	SELECT (x.strstk_mrp * (100 - discount)/100) INTO newprice  
        FROM storestock_pricing x WHERE x.strstk_id = stkid;
        
    	UPDATE storestock_pricing 
    	SET strstk_msp = newprice, strstk_discount = discount  
        WHERE strstk_id = stkid;
    
	ELSEIF msp > 0 THEN
		UPDATE storestock_pricing 
    	SET strstk_msp = msp, strstk_discount = 0 
        WHERE strstk_id = stkid AND strstk_mrp >= msp;
   
   ELSEIF discount = 0 THEN
    	UPDATE storestock_pricing 
    	SET strstk_msp = strstk_mrp, strstk_discount = 0 
        WHERE strstk_id = stkid;
    END IF;
END$$

CREATE  PROCEDURE `inlUpdateStockPromotion` (IN `stkid` INT, IN `flag` INT, IN `datefrom` DATE, IN `dateto` DATE, IN `statusval` INT)   BEGIN
	IF statusval = 0 THEN
    	SET datefrom = '0000-00-00';
        SET dateto = '0000-00-00';
    END IF;
    
	IF flag = 1 THEN /* deal of day */
    	UPDATE storestock_pricing  
        SET strstk_dealofday = statusval, strstk_dealfrom = datefrom, strstk_dealto = dateto
        WHERE strstk_id = stkid;
    ELSEIF flag = 2 THEN  /* offer */
    	UPDATE storestock_pricing 
        SET strstk_offer = statusval, strstk_offerfrom = datefrom, strstk_offerto = dateto
        WHERE strstk_id = stkid;
    END IF;
END$$

CREATE  PROCEDURE `insertUserCredentials` (IN `phone` VARCHAR(50), IN `pass` VARCHAR(50), IN `flag` INT, IN `email` VARCHAR(200))   BEGIN
declare ids,counts int;
IF flag=2 THEN
IF EXISTS (SELECT 1 FROM customers_tbl c WHERE c.customer_phone = phone  and c.customer_type=0 )THEN
UPDATE customers_tbl c  SET c.customer_type=1 ,c.customer_password=pass, c.customer_email=email WHERE c.customer_phone=phone;
SELECT c.customer_id as ids FROM customers_tbl c WHERE c.customer_phone=phone;
ELSEIF EXISTS (SELECT 1 FROM customers_tbl c WHERE (c.customer_phone = phone or c.customer_email=email ) and c.customer_type=1 )THEN
SELECT "exists";
ELSE
INSERT INTO customers_tbl (customer_phone,customer_password,customer_type,customer_email) 
        VALUES (phone,pass,1,email);
        SET ids = LAST_INSERT_ID();
         SELECT ids;
        END IF;

END IF;
END$$

CREATE  PROCEDURE `insert_products_and_packing` ()   BEGIN
     -- Step 0: Temporary staging table
    DROP TEMPORARY TABLE IF EXISTS tmp_products;
    CREATE TEMPORARY TABLE tmp_products AS
    SELECT 
        a.product_name,
        a.product_manufacturer,
        CASE 
            WHEN COUNT(DISTINCT a2.product_manufacturer) > 1
            THEN CONCAT(a.product_name, ' (', a.product_manufacturer, ')')
            ELSE a.product_name
        END AS final_product_name,
        MAX(a.product_generic) AS product_generic,
        MAX(a.product_highlights) AS product_highlights,
        MAX(a.product_information) AS product_information,
        MAX(a.product_working) AS product_working,
        MAX(a.product_benefits) AS product_benefits,
        MAX(a.product_usage) AS product_usage,
        MAX(a.product_precautions) AS product_precautions,
        MAX(a.product_warnings) AS product_warnings,
        MAX(a.product_sideffects) AS product_sideffects,
        MAX(a.product_interactions) AS product_interactions,
        MAX(a.product_pcontents) AS product_pcontents
    FROM addtest a
    JOIN addtest a2 ON a2.product_name = a.product_name
    GROUP BY a.product_name, a.product_manufacturer;

    -- Step 1: Insert products (unique product+manufacturer combination)
    INSERT INTO products_tbl(
        product_name,
        product_generic,
        product_manufacturer,
        product_highlights,
        product_information,
        product_working,
        product_benefits,
        product_usage,
        product_precautions,
        product_warnings,
        product_sideffects,
        product_interactions,
        product_pcontent
    )
    SELECT 
        t.final_product_name,
        g.genmed_id,
        m.manuf_id,
        t.product_highlights,
        t.product_information,
        t.product_working,
        t.product_benefits,
        t.product_usage,
        t.product_precautions,
        t.product_warnings,
        t.product_sideffects,
        t.product_interactions,
        p.pharma_id
    FROM tmp_products t
    LEFT JOIN manufacturers_tbl m ON m.manuf_name = t.product_manufacturer
    LEFT JOIN pharmacologicalcontent_tbl p ON p.pharma_name = t.product_pcontents
    LEFT JOIN generic_medicines g ON g.genmed_name = t.product_generic
    ON DUPLICATE KEY UPDATE 
        product_name = VALUES(product_name),
        product_manufacturer = VALUES(product_manufacturer);

    -- Step 2: Insert packings
    INSERT INTO product_packing (
        prodpack_product,
        prodpack_package,
        prodpack_quantity,
        prodpack_unit
    )
    SELECT 
        pr.product_id,
        b.packing_id,
        a.qty,
        mu.measunit_id
    FROM addtest a
    JOIN tmp_products t 
        ON a.product_name = t.product_name 
       AND a.product_manufacturer = t.product_manufacturer
    JOIN products_tbl pr 
        ON pr.product_name = t.final_product_name
    LEFT JOIN packing_tbl b 
        ON b.packing_type = a.package
    LEFT JOIN measure_units mu 
        ON mu.measunit_shortname = a.unit;

END$$

CREATE  PROCEDURE `intendApproveStatusFromStores` (IN `intend_ids` INT, IN `statusval` INT)   BEGIN
DECLARE intends,methods,items,qty INT DEFAULT 0;
 SELECT i.intdallocit_intend,i.intdallocit_method,i.intdallocit_item ,i.intdallocit_quantity INTO intends,methods, items,qty FROM intend_allocation_items i WHERE i.intdallocit_id=intend_ids;
 #update intend_allocation_items table
 UPDATE intend_allocation_items SET intdallocit_aprvstatus=statusval,intdallocit_status=2,intdallocit_quantity=(intdallocit_quantity-qty),intdallocit_source=0 WHERE intdallocit_id=intend_ids;
  #update intend_details table
 UPDATE intend_details SET intdet_allotted=(intdet_allotted-qty),intdet_status=1 WHERE 	intdet_id=intends AND intdet_item=items;
  #update intends table
 UPDATE intends_tbl SET intend_apprvedby=0,	intend_status=1 WHERE intend_id =intends;
END$$

CREATE  PROCEDURE `intendFromstoreReports` (IN `dates` DATE)   BEGIN

SELECT i.intend_id,i.intend_number,i.intend_date,s.store_code AS fromcode,s.store_name as fromname,ss.store_code as tocode,ss.store_name as toname,fnGetProductFromPack(d.intdet_item, 0) AS item ,p.product_display, i.intend_notes AS remark,d.intdet_quantity,m.manuf_name,m.manuf_code , pp.prodpack_quantity,u.measunit_name,u.measunit_shortname ,pt.packing_type FROM intends_tbl i
LEFT JOIN intend_details d ON d.intdet_id=i.intend_id
LEFT JOIN stores_tbl s ON s.store_id=i.intend_from
LEFT JOIN stores_tbl ss ON ss.store_id=i.intend_to
LEFT JOIN products_tbl p ON p.product_id=d.intdet_product
LEFT JOIN manufacturers_tbl m ON m.manuf_id=p.product_manufacturer
LEFT JOIN product_packing pp ON pp.prodpack_id=d.intdet_item
LEFT JOIN measure_units u ON u.measunit_id=pp.prodpack_unit
LEFT JOIN packing_tbl pt ON pt.packing_id=pp.prodpack_package
WHERE i.intend_date=dates;
END$$

CREATE  PROCEDURE `listAddonInvoices` ()   BEGIN
	SELECT x.invoice_id, x.invoice_number, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor ,(SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id AND y.invdet_delstatus <10) AS invitems, x.invoice_payby, x.invoice_delstatus, x.invoice_status,x.invoice_paystatus,
   (SELECT GROUP_CONCAT( DISTINCT(s.store_name) SEPARATOR ',') FROM invoice_details y LEFT JOIN stores_tbl s ON s.store_id = y.invdet_delivered  WHERE y.invdet_invoice = x.invoice_id and s.store_id = x.invoice_delstore) AS delat
   FROM invoices_tbl x
    LEFT JOIN invoice_details y ON  y.invdet_invoice=x.invoice_id
    LEFT JOIN stock_inwards s ON s.stockin_invref =y.invdet_id
    WHERE s.stockin_short >0
    GROUP BY x.invoice_id;
END$$

CREATE  PROCEDURE `listBrands` ()   BEGIN
	/* List brands */
   /* SELECT x.brand_id, x.brand_name, m.manuf_name, x.brand_logo, x.brand_status, x.brand_publish 
    FROM brands_tbl x
    LEFT JOIN manufacturers_tbl m ON m.manuf_id = x.brand_owner
    ORDER BY x.brand_name;
    */
    SELECT x.brand_id, x.brand_name, GROUP_CONCAT(m.manuf_name) AS manuf_name, x.brand_logo, x.brand_status, x.brand_publish 
    FROM brands_tbl x JOIN brand_manufacturer_tbl t ON t.brnd_id=x.brand_id
    LEFT JOIN manufacturers_tbl m ON m.manuf_id = t.brndmanu_id WHERE x.brand_status=1 GROUP BY t.brnd_id
    ORDER BY x.brand_name;
    /* Manufacturers for add/edit brand */
    SELECT y.manuf_id, y.manuf_name
    FROM manufacturers_tbl y
    WHERE y.manuf_status = 1 
    ORDER BY y.manuf_name;
    
END$$

CREATE  PROCEDURE `listBrandswithLimit` (IN `offsets` INT, IN `limits` INT)   BEGIN
	/* List brands */
    SELECT x.brand_id, x.brand_name, m.manuf_name, x.brand_logo, x.brand_status, x.brand_publish 
    FROM brands_tbl x
    LEFT JOIN manufacturers_tbl m ON m.manuf_id = x.brand_owner WHERE x.brand_status=1 and x.brand_publish =1
    ORDER BY x.brand_name LIMIT offsets,limits;
    
    /* Manufacturers for add/edit brand */
    SELECT y.manuf_id, y.manuf_name
    FROM manufacturers_tbl y
    WHERE y.manuf_status = 1 
    ORDER BY y.manuf_name;
    
    SELECT count(*) AS TotalBrand
    FROM brands_tbl x 
    LEFT JOIN manufacturers_tbl m ON m.manuf_id = x.brand_owner WHERE x.brand_status=1 and x.brand_publish =1;
    
    
END$$

CREATE  PROCEDURE `listCouriers` ()   BEGIN
	SELECT x.courier_id, x.courier_type, x.courier_staffid, x.courier_name, x.courier_mobile, x.courier_contact, x.courier_address, x.courier_status, x.courier_phones, x.courier_whatsapp, x.courier_email 
    FROM couriers_tbl x 
    ORDER BY x.courier_name;
END$$

CREATE  PROCEDURE `listDealers` ()   BEGIN
	SELECT x.dealer_id, x.dealer_name, x.dealer_contact, x.dealer_contactno, x.dealer_contactcell, x.dealer_whatsapp, x.dealer_status 
    FROM dealers_tbl x 
    ORDER BY x.dealer_name;
END$$

CREATE  PROCEDURE `listDistributors` ()   BEGIN
	SELECT x.distri_id, x.distri_name, x.distri_contact, x.distri_contactno, x.distri_contactcell, x.distri_whatsapp, x.distri_status 
    FROM distributors_tbl x
    ORDER BY x.distri_name;
END$$

CREATE  PROCEDURE `listDrugClasses` ()   BEGIN
SELECT
  x.drugclass_id   AS id,
  x.drugclass_name AS dname,
  x.drugclass_parent AS dparent,
  x.drugclass_counter AS cntr,
  x.drugclass_seq  AS seq,
  x.drugclass_status AS dstatus,
  y.drugclass_name AS theparent
FROM drug_classifications x
LEFT JOIN drug_classifications y
  ON y.drugclass_id = x.drugclass_parent
ORDER BY
  -- top-level bucket (e.g., 10)
  CAST(SUBSTRING_INDEX(x.drugclass_seq, '_', 1) AS UNSIGNED),

  -- group by the second-level parent id so a parent (e.g., id=138)
  -- and all its children (seq LIKE '...138') stay together:
  CASE
    WHEN (LENGTH(x.drugclass_seq) - LENGTH(REPLACE(x.drugclass_seq,'',''))) = 0
      THEN x.drugclass_id                                -- top level (e.g., 10)
    WHEN (LENGTH(x.drugclass_seq) - LENGTH(REPLACE(x.drugclass_seq,'',''))) = 1
      THEN x.drugclass_id                                -- second level (e.g., 138)
    ELSE CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(x.drugclass_seq,'',3),'_',-1) AS UNSIGNED)
                                                        -- third level: use parent id (e.g., 138)
  END,

  -- parent row first, then its children
  CASE
    WHEN (LENGTH(x.drugclass_seq) - LENGTH(REPLACE(x.drugclass_seq,'_',''))) = 1 THEN 0
    ELSE 1
  END,

  -- tiebreaker among siblings/children
  x.drugclass_id;
    SELECT k.drugclass_id, k.drugclass_name
    FROM drug_classifications k 
    WHERE k.drugclass_parent = 0 AND k.drugclass_status = 1 
    ORDER BY k.drugclass_name;
END$$

CREATE  PROCEDURE `listDrugClasses_temp` ()   BEGIN
	DECLARE parents, secparents TEXT DEFAULT '';
    
	DROP TEMPORARY TABLE IF EXISTS temp_drugparent;
    DROP TEMPORARY TABLE IF EXISTS temp_second;
    DROP TEMPORARY TABLE IF EXISTS temp_third;
    
	CREATE TEMPORARY TABLE IF NOT EXISTS temp_drugparent AS (SELECT dc.drugclass_id AS id, dc.drugclass_name as dname, 0 as counter, dc.drugclass_id AS seq, dc.drugclass_parent as parent, dc.drugclass_status AS dstatus FROM drug_classifications dc WHERE dc.drugclass_parent = 0 /*AND dc.drugclass_status = 1*/);
    SELECT GROUP_CONCAT(id) INTO parents FROM temp_drugparent;
      
    CREATE TEMPORARY TABLE IF NOT EXISTS temp_second AS (SELECT ds.drugclass_id as id, ds.drugclass_name AS dname, 1 AS counter, concat(ds.drugclass_parent, '_', ds.drugclass_parent) AS seq, ds.drugclass_parent AS parent, ds.drugclass_status AS dstatus FROM drug_classifications ds WHERE find_in_set(ds.drugclass_parent, parents) /*AND ds.drugclass_status = 1*/);
    SELECT GROUP_CONCAT(id) INTO secparents FROM temp_second;
    
    CREATE TEMPORARY TABLE IF NOT EXISTS temp_third AS (SELECT dt.drugclass_id as id, dt.drugclass_name AS dname, 2 AS counter, concat((SELECT parent FROM temp_second WHERE id = dt.drugclass_parent), '_', (SELECT parent FROM temp_second WHERE id = dt.drugclass_parent), '_', dt.drugclass_parent) AS seq, dt.drugclass_parent AS parent, dt.drugclass_status AS dstatus FROM drug_classifications dt WHERE find_in_set(dt.drugclass_parent, secparents) /*AND dt.drugclass_status = 1*/);
    
    #SELECT * FROM temp_drugparent ORDER BY seq;
    #SELECT * FROM temp_second ORDER BY seq;
    #SELECT * FROM temp_third ORDER BY seq;
    SELECT id, dname, 0 as dparent, counter, seq, dstatus, '' AS theparent FROM temp_drugparent 
    UNION SELECT id, dname, ts.parent, counter, seq, dstatus, q.drugclass_name FROM temp_second ts LEFT JOIN drug_classifications q ON q.drugclass_id = ts.parent
    UNION SELECT id, dname, tt.parent, counter, seq, dstatus, z.drugclass_name FROM temp_third  tt LEFT JOIN drug_classifications z ON z.drugclass_id = tt.parent
    ORDER BY seq, dname;
    
    DROP TEMPORARY TABLE IF EXISTS temp_drugparent;
    DROP TEMPORARY TABLE IF EXISTS temp_second;
    DROP TEMPORARY TABLE IF EXISTS temp_third;
END$$

CREATE  PROCEDURE `listGenericMedicines` ()   BEGIN
	SELECT x.genmed_id, x.genmed_name, x.genmed_uses, x.genmed_working, x.genmed_sideffects, x.genmed_remarks, x.genmed_status
    FROM generic_medicines x 
    ORDER BY x.genmed_name;
END$$

CREATE  PROCEDURE `listingOfAdvertisements` (IN `flag` INT)   BEGIN
	IF flag=1 THEN
    SELECT a.advt_id,a.advt_type,a.advt_title,a.advt_owner,a.advt_datefrom,a.advt_dateto,a.advt_products,pp.product_name, a.advt_maincategories, p.prodclass_name,a.advt_subcategories,a.advt_catgory,a.advt_image,a.advt_linkedurl,
    a.advt_publish,a.advt_status FROM advertisements_tbl a
    LEFT JOIN product_classes p ON p.prodclass_id=a.advt_maincategories
    LEFT JOIN products_tbl pp ON pp.product_id=a.advt_products WHERE a.advt_brand = 0
    ORDER BY a.advt_crtdon DESC;
    ELSEIF flag=2 THEN
    SELECT a.advt_id,a.advt_type,a.advt_title,a.advt_brand,b.brand_name, a.advt_datefrom,a.advt_dateto,a.advt_image,a.advt_linkedurl,
    a.advt_publish,a.advt_status FROM advertisements_tbl a
    LEFT JOIN brands_tbl b ON b.brand_id=a.advt_brand
    WHERE a.advt_brand > 0
    ORDER BY a.advt_crtdon DESC;
    END IF ;
    SELECT b.brand_id,b.brand_name,b.brand_status,b.brand_publish  FROM brands_tbl b WHERE b.brand_status > 0 AND b.brand_publish > 0 ;
END$$

CREATE  PROCEDURE `listingOfPromotions` ()   BEGIN
	
    SELECT P.promo_id, P.promo_type ,pp.promotype_name,P.promo_title,P.promo_account,P.promo_discountamt,P.promo_discountpc,P.promo_max,P.promo_count,P.promo_datefrom,P.promo_dateto,P.promo_status,P.promo_publish,P.promo_highlights FROM promotions_tbl P
    LEFT JOIN promotiontypes_tbl pp ON pp.promotype_id=P.promo_type
    ORDER BY P.promo_crtdon DESC;
END$$

CREATE  PROCEDURE `listingQuickorderData` (IN `letter` VARCHAR(200))   BEGIN
    -- Initialize row number variable
    SET @row_number := 0;

    SELECT 
        x.product_id,
        x.product_name,
        x.product_display,
        x.product_featured,
        x.product_popular,
        x.prodpack_id,
        x.prodpack_quantity,
        x.prodpack_maxstock,
        x.prodpack_minstock,
        x.packing_type,
        x.measunit_name,
        x.measunit_shortname,
        x.strstk_mrp,
        x.strstk_msp,
        x.stockin_batch,
        x.stockin_expiry,
        x.stock,
        x.strstk_stack,
        x.product_imageurl,
        x.strstk_discount,
        x.strstk_id
    FROM (
        SELECT 
            (@row_number := @row_number + 1) AS virtual_id,
            p.product_id,
            p.product_name,
            p.product_display,
            p.product_featured,
            p.product_popular,
            r.prodpack_id,
            r.prodpack_quantity,
            r.prodpack_maxstock,
            r.prodpack_minstock,
            t.packing_type,
            m.measunit_name,
            m.measunit_shortname,
            e.strstk_mrp,
            e.strstk_msp,
            s.stockin_batch,
            s.stockin_expiry,
            (e.strstk_stock - e.strstk_reserved) AS stock,
            e.strstk_stack,
            (
                SELECT g.prodgal_url
                FROM product_gallery g
                WHERE g.prodgal_prodpack = r.prodpack_id
                  AND g.prodgal_placedat = 1
                  AND g.prodgal_medium = 1
                  AND g.prodgal_publish = 1
                  AND g.prodgal_status = 1
                ORDER BY g.prodgal_serial ASC
                LIMIT 1
            ) AS product_imageurl,
            e.strstk_discount,
            e.strstk_id
        FROM 
            products_tbl p
            JOIN product_packing r ON r.prodpack_product = p.product_id
            JOIN packing_tbl t ON t.packing_id = r.prodpack_package
            JOIN measure_units m ON m.measunit_id = r.prodpack_unit
            JOIN stock_inwards s ON s.stockin_item = r.prodpack_id
            JOIN storestock_pricing e ON e.strstk_item = r.prodpack_id
        WHERE 
            /*e.strstk_offer = 1
            AND*/
        p.product_status = 1
            AND p.product_online = 1
            AND p.product_publish = 1
            AND p.product_name LIKE CONCAT(letter, '%')
            AND s.stockin_expiry >= CURRENT_DATE()
            AND (e.strstk_stock - e.strstk_reserved) > 0
        ORDER BY 
            s.stockin_expiry ASC,
            e.strstk_discount DESC,
            (e.strstk_stock - e.strstk_reserved) DESC
    ) AS x
    GROUP BY x.product_id;
    
END$$

CREATE  PROCEDURE `listIngredients` ()   BEGIN
	SELECT x.ingred_id, x.ingred_name, p.ingredtype_type, p.ingredtype_status,x.ingred_status
    FROM ingredients_tbl x
    LEFT JOIN ingredient_types p ON p.ingredtype_id = x.ingred_type        
   
    ORDER BY ingred_name  ;
    
    SELECT q.ingredtype_id, q.ingredtype_type 
    FROM ingredient_types q 
    WHERE q.ingredtype_status = 1;
END$$

CREATE  PROCEDURE `listIntendApprovals` (IN `flag` INT, IN `storeid` INT, IN `optionval` INT)   BEGIN
IF storeid > 1 THEN
	IF flag = 1 THEN
		if optionval=0 then
			SELECT x.intdallocit_id, x.intdallocit_intend, x.intdallocit_item, fnGetProductFromPack(x.intdallocit_item, 0) AS package, x.intdallocit_source,  y.intend_from, st.store_name AS tostore, sf.store_name AS fromstore, d.intdet_quantity AS requested, x.intdallocit_quantity AS allotted, fnGetStoreStock(x.intdallocit_source, x.intdallocit_item) as available, x.intdallocit_ordstatus, x.intdallocit_status,x.intdallocit_ordrqty
			FROM intend_allocation_items x
			LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
			LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
			LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
			LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
			WHERE x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5 AND x.intdallocit_source=storeid
			AND x.intdallocit_method = 1
			GROUP BY x.intdallocit_id
			ORDER BY x.intdallocit_item;
		elseif optionval=1 then
			SELECT x.intdallocit_id, x.intdallocit_intend, x.intdallocit_item, fnGetProductFromPack(x.intdallocit_item, 0) AS package, x.intdallocit_source,  y.intend_from, st.store_name AS tostore, sf.store_name AS fromstore, d.intdet_quantity AS requested, x.intdallocit_quantity AS allotted, fnGetStoreStock(x.intdallocit_source, x.intdallocit_item) as available, x.intdallocit_ordstatus, x.intdallocit_status,x.intdallocit_ordrqty
			FROM intend_allocation_items x
			LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
			LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
			LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
			LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
			WHERE x.intdallocit_ordstatus = 1 AND x.intdallocit_status = 5 AND d.intdet_status = 5  AND y.intend_status = 5 AND x.intdallocit_source=storeid
			AND x.intdallocit_method = 1
			GROUP BY x.intdallocit_id
			ORDER BY x.intdallocit_item;
		end if;
	ELSE
		SELECT x.intdallocit_id, x.intdallocit_intend, x.intdallocit_item, fnGetProductFromPack(x.intdallocit_item, 0) AS package, x.intdallocit_source, x.intdallocit_type, fnGetVendorName(x.intdallocit_type, x.intdallocit_source) AS supplier, y.intend_from, st.store_name AS tostore, d.intdet_quantity AS requested, x.intdallocit_quantity AS allotted,x.intdallocit_ordrprice, x.intdallocit_vendsup
		FROM intend_allocation_items x
		LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
		LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
		LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
		WHERE x.intdallocit_method = 2 and x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5 AND y.intend_from=storeid GROUP BY x.intdallocit_id
		ORDER BY x.intdallocit_source, x.intdallocit_type, x.intdallocit_item;
	END IF;
 ELSE
  	
    IF flag = 1 THEN
		if optionval=0 then
			SELECT x.intdallocit_id, x.intdallocit_intend, x.intdallocit_item, fnGetProductFromPack(x.intdallocit_item, 0) AS package, x.intdallocit_source,  y.intend_from, st.store_name AS tostore, sf.store_name AS fromstore, d.intdet_quantity AS requested, x.intdallocit_quantity AS allotted, fnGetStoreStock(x.intdallocit_source, x.intdallocit_item) as available, x.intdallocit_ordstatus, x.intdallocit_status,x.intdallocit_ordrqty
			FROM intend_allocation_items x
			LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
			LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
			LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
			LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
			WHERE x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5
			AND x.intdallocit_method = 1
			GROUP BY x.intdallocit_id
			ORDER BY x.intdallocit_item;
		elseif optionval=1 then
			SELECT x.intdallocit_id, x.intdallocit_intend, x.intdallocit_item, fnGetProductFromPack(x.intdallocit_item, 0) AS package, x.intdallocit_source,  y.intend_from, st.store_name AS tostore, sf.store_name AS fromstore, d.intdet_quantity AS requested, x.intdallocit_quantity AS allotted, fnGetStoreStock(x.intdallocit_source, x.intdallocit_item) as available, x.intdallocit_ordstatus, x.intdallocit_status,x.intdallocit_ordrqty
			FROM intend_allocation_items x
			LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
			LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
			LEFT JOIN stores_tbl sf ON sf.store_id = x.intdallocit_source
			LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
			WHERE x.intdallocit_ordstatus = 1 AND x.intdallocit_status = 5 AND d.intdet_status = 5  AND y.intend_status = 5
			AND x.intdallocit_method = 1
			GROUP BY x.intdallocit_id
			ORDER BY x.intdallocit_item;
		end if;
    ELSE
        SELECT x.intdallocit_id, x.intdallocit_intend, x.intdallocit_item, fnGetProductFromPack(x.intdallocit_item, 0) AS package, x.intdallocit_source, x.intdallocit_type, fnGetVendorName(x.intdallocit_type, x.intdallocit_source) AS supplier, y.intend_from, st.store_name AS tostore, d.intdet_quantity AS requested, x.intdallocit_quantity AS allotted,x.intdallocit_ordrprice, x.intdallocit_vendsup
        FROM intend_allocation_items x
        LEFT JOIN intends_tbl y ON y.intend_id = x.intdallocit_intend
        LEFT JOIN stores_tbl st ON st.store_id = y.intend_from
        LEFT JOIN intend_details d ON d.intdet_id = x.intdallocit_intend AND x.intdallocit_item = d.intdet_item
        WHERE x.intdallocit_method = 2 and x.intdallocit_ordstatus = 0 AND x.intdallocit_status = 1 AND d.intdet_status = 5  AND y.intend_status = 5 GROUP BY x.intdallocit_id
        ORDER BY x.intdallocit_source, x.intdallocit_type, x.intdallocit_item;
	END IF;
 END IF;
END$$

CREATE  PROCEDURE `listInvoices` (IN `tempval` INT, IN `startdate` DATE, IN `endDate` DATE)   BEGIN
	IF tempval=1 THEN
   		 SELECT x.invoice_id, x.invoice_number, x.invoice_dated, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, x.invoice_amount, (SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id) AS invitems,  x.invoice_payby, x.invoice_delstatus, x.invoice_status,x.invoice_paystatus,
   /* (SELECT DISTINCT(s.store_name) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat*/
  (SELECT DISTINCT(s.store_name) FROM invoice_details d  LEFT JOIN stores_tbl s ON s.store_id = x.invoice_delstore WHERE d.invdet_invoice = x.invoice_id) AS delat,  (SELECT DISTINCT(s.store_id) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat_id
    FROM invoices_tbl x
    WHERE  x.invoice_dated BETWEEN startdate AND endDate
    ORDER BY x.invoice_dated;
  ELSEIF tempval=2 THEN
  	 SELECT x.invoice_id, x.invoice_number, x.invoice_dated, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, x.invoice_amount, (SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id) AS invitems,  x.invoice_payby, x.invoice_delstatus, x.invoice_status,x.invoice_paystatus,
    /*(SELECT DISTINCT(s.store_name) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat*/
   (SELECT DISTINCT(s.store_name) FROM invoice_details d  LEFT JOIN stores_tbl s ON s.store_id = x.invoice_delstore WHERE d.invdet_invoice = x.invoice_id) AS delat,  (SELECT DISTINCT(s.store_id) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat_id
    FROM invoices_tbl x
    WHERE (x.invoice_dated BETWEEN startdate AND endDate) AND (x.invoice_delstatus<10)
    ORDER BY x.invoice_dated;
    ELSEIF tempval=3 THEN
    	 SELECT x.invoice_id, x.invoice_number, x.invoice_dated, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, x.invoice_amount, (SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id) AS invitems,  x.invoice_payby, x.invoice_delstatus, x.invoice_status,x.invoice_paystatus,
   /* (SELECT DISTINCT(s.store_name) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat*/
   (SELECT DISTINCT(s.store_name) FROM invoice_details d  LEFT JOIN stores_tbl s ON s.store_id = x.invoice_delstore WHERE d.invdet_invoice = x.invoice_id) AS delat,  (SELECT DISTINCT(s.store_id) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat_id
    FROM invoices_tbl x
    WHERE (x.invoice_dated BETWEEN startdate AND endDate) AND (x.invoice_delstatus=10)
    ORDER BY x.invoice_dated;
    ELSE
/*SELECT x.invoice_id, x.invoice_number, x.invoice_dated, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, x.invoice_amount, (SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id) AS invitems,  x.invoice_payby, x.invoice_delstatus, x.invoice_status,x.invoice_paystatus,
    (SELECT DISTINCT(s.store_name) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat,  (SELECT DISTINCT(s.store_id) FROM invoice_details d LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE d.invdet_invoice = x.invoice_id) AS delat_id
    FROM invoices_tbl x
    WHERE (x.invoice_status BETWEEN 1 AND 10) OR x.invoice_paystatus > 0 OR (x.invoice_delstatus BETWEEN 1 AND 10)
    ORDER BY x.invoice_crtdon;*/
    SELECT x.invoice_id, x.invoice_number, x.invoice_dated, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, x.invoice_amount, (SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id) AS invitems,
  x.invoice_payby, x.invoice_delstatus, x.invoice_status, x.invoice_paystatus,s.store_name AS delat,s.store_id AS delat_id
FROM invoices_tbl x
LEFT JOIN invoice_details d ON d.invdet_invoice = x.invoice_id
/*LEFT JOIN purchase_orders p ON p.purchord_id = d.invdet_porder
LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat */
LEFT JOIN  stores_tbl s ON s.store_id=x.invoice_delstore
WHERE (x.invoice_status BETWEEN 1 AND 10) OR x.invoice_paystatus > 0 OR (x.invoice_delstatus BETWEEN 1 AND 10) GROUP BY x.invoice_id ORDER BY x.invoice_crtdon DESC;
END IF;
END$$

CREATE  PROCEDURE `listLocations` ()   BEGIN
	SELECT delarea_id, delarea_location, delarea_pincode, delarea_status 
    FROM delivery_areas 
    GROUP BY delarea_pincode, delarea_location 
    ORDER BY delarea_pincode, delarea_location;
END$$

CREATE  PROCEDURE `listManufacturers` ()   BEGIN
	SELECT manuf_id, manuf_name, manuf_contact, manuf_contactno, manuf_status
    FROM manufacturers_tbl 
    ORDER BY manuf_name;
END$$

CREATE  PROCEDURE `listOfCustomerOrders` (IN `branchid` INT, IN `frmdate` DATE, IN `todate` DATE)   BEGIN
IF branchid=1 THEN
SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid,o.order_remarks,o.order_delivery,d.delivery_to,
CONCAT(d.delivery_house,',' ,d.delivery_street ,',' ,d.delivery_landmark ,',' ,d.delivery_city ,',' ,d.delivery_state, '-', d.delivery_pin ,'. Mob:' ,d.delivery_phone)AS address ,o.order_status,(SELECT COUNT(*) FROM order_details s WHERE s.ordet_order=od.ordet_order) AS totalItem,(SELECT SUM(CASE WHEN s.ordet_status = 0 THEN 1 ELSE 0 END) AS cancel_item FROM order_details s WHERE s.ordet_order=od.ordet_order) AS cancelItem,o.order_prescription,r.return_status FROM orders_tbl o 
JOIN delivery_address d  ON d.delivery_user=o.order_customer and d.delivery_id=o.order_deliverId JOIN order_details od on od.ordet_order=o.order_id LEFT JOIN order_return_status_history r ON r.order_id=o.order_id
WHERE o.order_status>=0 AND o.order_quick=0 AND  DATE(o.order_date) BETWEEN frmdate AND todate GROUP by od.ordet_order ORDER BY o.order_date DESC;
/*SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid,o.order_remarks,o.order_delivery,d.delivery_to,
CONCAT(d.delivery_house,',' ,d.delivery_street ,',' ,d.delivery_landmark ,',' ,d.delivery_city ,',' ,d.delivery_state, '-', d.delivery_pin ,'. Mob:' ,d.delivery_phone)AS address ,o.order_status FROM orders_tbl o
JOIN delivery_address d  ON d.delivery_user=o.order_customer and d.delivery_id=o.order_deliverId
WHERE o.order_status>=0 AND o.order_date BETWEEN frmdate AND todate  ORDER BY o.order_date DESC;*/
END IF;
END$$

CREATE  PROCEDURE `listOfCustomerQuickOrders` (IN `branchid` INT, IN `frmdate` DATE, IN `todate` DATE)   BEGIN
IF branchid=1 THEN
SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid,o.order_remarks,o.order_delivery,d.delivery_to,o.order_quick_status,
CONCAT(d.delivery_house,',' ,d.delivery_street ,',' ,d.delivery_landmark ,',' ,d.delivery_city ,',' ,d.delivery_state, '-', d.delivery_pin ,'. Mob:' ,d.delivery_phone)AS address ,o.order_status,o.order_prescription FROM orders_tbl o 
JOIN delivery_address d  ON d.delivery_user=o.order_customer and d.delivery_id=o.order_deliverId 
WHERE o.order_status>=0 AND o.order_quick=1 AND  DATE(o.order_date) BETWEEN frmdate AND todate  ORDER BY o.order_date DESC;
/*SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid,o.order_remarks,o.order_delivery,d.delivery_to,
CONCAT(d.delivery_house,',' ,d.delivery_street ,',' ,d.delivery_landmark ,',' ,d.delivery_city ,',' ,d.delivery_state, '-', d.delivery_pin ,'. Mob:' ,d.delivery_phone)AS address ,o.order_status FROM orders_tbl o
JOIN delivery_address d  ON d.delivery_user=o.order_customer and d.delivery_id=o.order_deliverId
WHERE o.order_status>=0 AND o.order_date BETWEEN frmdate AND todate  ORDER BY o.order_date DESC;*/
END IF;
END$$

CREATE  PROCEDURE `listOfCustomerReturnOrders` (IN `branchid` INT, IN `frmdate` DATE, IN `todate` DATE)   BEGIN
IF branchid=1 THEN
SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid,o.order_remarks,o.order_delivery,d.delivery_to,
CONCAT(d.delivery_house,',' ,d.delivery_street ,',' ,d.delivery_landmark ,',' ,d.delivery_city ,',' ,d.delivery_state, '-', d.delivery_pin ,'. Mob:' ,d.delivery_phone)AS address ,o.order_status,(SELECT COUNT(*) FROM order_details s WHERE s.ordet_order=od.ordet_order) AS totalItem,(SELECT SUM(CASE WHEN s.ordet_status = 0 THEN 1 ELSE 0 END) AS cancel_item FROM order_details s WHERE s.ordet_order=od.ordet_order) AS cancelItem,o.order_prescription,r.return_status,r.status_date,r.approved_date,r.pickup_date,r.refund_date,ss.return_reason FROM orders_tbl o 
JOIN delivery_address d  ON d.delivery_user=o.order_customer and d.delivery_id=o.order_deliverId JOIN order_details od on od.ordet_order=o.order_id LEFT JOIN order_return_status_history r ON r.order_id=o.order_id JOIN returnreason_tbl ss ON ss.return_id=r.return_reason
WHERE o.order_status=2 AND  DATE(o.order_date) BETWEEN frmdate AND todate GROUP by od.ordet_order ORDER BY o.order_date DESC;
/*SELECT o.order_id,o.order_customer,o.order_orderid,DATE( o.order_date) AS dates,o.order_trackid,o.order_remarks,o.order_delivery,d.delivery_to,
CONCAT(d.delivery_house,',' ,d.delivery_street ,',' ,d.delivery_landmark ,',' ,d.delivery_city ,',' ,d.delivery_state, '-', d.delivery_pin ,'. Mob:' ,d.delivery_phone)AS address ,o.order_status FROM orders_tbl o
JOIN delivery_address d  ON d.delivery_user=o.order_customer and d.delivery_id=o.order_deliverId
WHERE o.order_status>=0 AND o.order_date BETWEEN frmdate AND todate  ORDER BY o.order_date DESC;*/
END IF;
END$$

CREATE  PROCEDURE `listOfItemsInPackets` (IN `packid` INT)   BEGIN
SELECT t.transpack_id,t.transpack_refer,t.transpack_deliverby,t.transpack_deliveron,t.transpack_status,t.transpack_notes FROM transfer_packets t WHERE t.transpack_id=packid;
   SELECT c.courier_id,c.courier_name,c.courier_contact,c.courier_mobile FROM couriers_tbl c WHERE c.courier_status=1 ORDER BY c.courier_name ASC;
		SELECT t.transferpack_packet,tr.transpack_packid, t.transferpack_item,t.transferpack_orditem as strstk_id,fnGetProductFromPack(t.transferpack_item, 0) AS packitem ,t.transferpack_status, t.transferpack_qty,t.transferpack_recieved,tr.transpack_deliverby, tr.transpack_from,tr.transpack_to,st.store_name AS sourcestore,sd.store_name AS destnstore ,tr.transpack_notes ,t.store_stack,sg.storage_label FROM transferpack_items t
    LEFT JOIN  transfer_packets tr ON tr.transpack_id=t.transferpack_packet
    LEFT JOIN  stores_tbl st ON st.store_id=tr.transpack_from
     LEFT JOIN  stores_tbl sd ON sd.store_id=tr.transpack_to
     LEFT JOIN storage_tbl sg ON sg.storage_id=t.store_stack
     WHERE t.transferpack_status>=5 AND t.transferpack_packet=packid ;
     #stack listing
     SELECT s.storage_id,s.storage_label,s.storage_type,s.storage_status FROM storage_tbl s WHERE s.storage_status=1;
END$$

CREATE  PROCEDURE `listOfOrders` ()   BEGIN  
	SELECT o.order_id, o.order_orderid ,o.order_date, c.customer_name ,o.order_subtotal,o.order_salestax, o.order_trackid,cc.customer_name AS order_paidby ,CONCAT(a.addr_door,',',a.addr_street,',',a.addr_city,',',a.addr_state,'-',a.addr_pin,', Phone:',a.addr_phone)AS shipping_adr ,o.order_trackid,o.orders_shipped ,o.order_delivery FROM orders_tbl o 
    LEFT JOIN customers_tbl c ON c.customer_id  = o.order_customer
    LEFT JOIN customers_tbl cc on cc.customer_id=o.order_paidby 
    LEFT JOIN address_tbl a ON a.addr_id=o.order_shipping
  
   	ORDER BY o.order_date;

END$$

CREATE  PROCEDURE `listProductGallery` (IN `packid` INT)   BEGIN
	SELECT x.prodpack_product, p.product_name, p.product_display, 
    x.prodpack_package, q.packing_type 
    FROM product_packing x 
    LEFT JOIN products_tbl p ON p.product_id = x.prodpack_product 
    LEFT JOIN packing_tbl q ON q.packing_id = x.prodpack_package 
    WHERE x.prodpack_id = packid;
    
	SELECT prodgal_id, prodgal_prodpack, prodgal_url, prodgal_placedat, prodgal_medium, prodgal_heading, prodgal_title, prodgal_alt, prodgal_serial, prodgal_publish, prodgal_status 
    FROM product_gallery 
    WHERE prodgal_prodpack = packid 
    ORDER BY prodgal_serial;
END$$

CREATE  PROCEDURE `listProducts` (IN `catid` INT, IN `offsets` INT, IN `limits` INT)   BEGIN
	SELECT x.prodclass_id AS id, x.prodclass_name AS pclname, x.prodclass_parent AS parent, x.prodclass_serial AS serial, x.prodclass_status AS pstatus, x.prodclass_counter AS cntr, x.prodclass_seq AS seq
    FROM product_classes x 
    WHERE x.prodclass_seq <> ''
    ORDER BY seq, cntr, serial; 
    
	IF catid = 0 THEN
    	SELECT x.product_id, x.product_name, x.product_display, x.product_maincategory, x.product_subcategory, x.product_category, x.product_brand, b.brand_name, x.product_status, x.product_publish, y.prodclass_name  AS maincat, z.prodclass_name AS subcat, k.prodclass_name AS category, m.manuf_name
        FROM products_tbl x 
        LEFT JOIN product_classes y ON y.prodclass_id = x.product_maincategory 
        LEFT JOIN product_classes z ON z.prodclass_id = x.product_subcategory 
        LEFT JOIN product_classes k ON k.prodclass_id = x.product_category 
        LEFT JOIN brands_tbl b ON b.brand_id = x.product_brand 
        LEFT JOIN manufacturers_tbl m on m.manuf_id=x.product_manufacturer
      /*  GROUP BY x.product_maincategory, x.product_subcategory, x.product_category 
     */   ORDER BY x.product_name LIMIT offsets ,limits;
     
     SELECT COUNT(*) as totalRecords
        FROM products_tbl x 
        LEFT JOIN product_classes y ON y.prodclass_id = x.product_maincategory 
        LEFT JOIN product_classes z ON z.prodclass_id = x.product_subcategory 
        LEFT JOIN product_classes k ON k.prodclass_id = x.product_category 
        LEFT JOIN brands_tbl b ON b.brand_id = x.product_brand 
        LEFT JOIN manufacturers_tbl m on m.manuf_id=x.product_manufacturer
      /*  GROUP BY x.product_maincategory, x.product_subcategory, x.product_category 
     */   ORDER BY x.product_name;
     
    ELSE
    	SELECT x.product_id, x.product_name, x.product_display, x.product_maincategory, x.product_subcategory, x.product_category, x.product_brand, b.brand_name, x.product_status, x.product_publish, y.prodclass_name  AS maincat, z.prodclass_name AS subcat, k.prodclass_name AS category,m.manuf_name
        FROM products_tbl x 
        LEFT JOIN product_classes y ON y.prodclass_id = x.product_maincategory 
        LEFT JOIN product_classes z ON z.prodclass_id = x.product_subcategory 
        LEFT JOIN product_classes k ON k.prodclass_id = x.product_category 
        LEFT JOIN brands_tbl b ON b.brand_id = x.product_brand
        LEFT JOIN manufacturers_tbl m on m.manuf_id=x.product_manufacturer
        WHERE x.product_maincategory = catid OR x.product_subcategory = catid OR x.product_category = catid 
        /*GROUP BY x.product_maincategory, x.product_subcategory, x.product_category */
        ORDER BY x.product_name LIMIT offsets ,limits;
        
        SELECT COUNT(*) as totalRecords
        FROM products_tbl x 
        LEFT JOIN product_classes y ON y.prodclass_id = x.product_maincategory 
        LEFT JOIN product_classes z ON z.prodclass_id = x.product_subcategory 
        LEFT JOIN product_classes k ON k.prodclass_id = x.product_category 
        LEFT JOIN brands_tbl b ON b.brand_id = x.product_brand 
        LEFT JOIN manufacturers_tbl m on m.manuf_id=x.product_manufacturer
        
      /*  GROUP BY x.product_maincategory, x.product_subcategory, x.product_category 
     */   ORDER BY x.product_name;
    END IF;
END$$

CREATE  PROCEDURE `listProductsForProductsEntry` (IN `ids` INT, IN `dates` DATE)   BEGIN
	/*SELECT x.prodclass_id AS id, x.prodclass_name AS pclname, x.prodclass_parent AS parent, x.prodclass_serial AS serial, x.prodclass_status AS pstatus, x.prodclass_counter AS cntr, x.prodclass_seq AS seq
    FROM product_classes x 
    WHERE x.prodclass_seq <> ''
    ORDER BY seq, cntr, serial; 
    */
 IF ids=222 OR ids=223 THEN
    	SELECT x.product_id, x.product_name, x.product_display, x.product_maincategory, x.product_subcategory, x.product_category, x.product_brand, b.brand_name, x.product_status, x.product_publish, y.prodclass_name  AS maincat, z.prodclass_name AS subcat, k.prodclass_name AS category ,x.assigned_for,x.product_entry_status,m.manuf_name
        FROM products_entry_tbl x 
        LEFT JOIN product_classes y ON y.prodclass_id = x.product_maincategory 
        LEFT JOIN product_classes z ON z.prodclass_id = x.product_subcategory 
        LEFT JOIN product_classes k ON k.prodclass_id = x.product_category 
        LEFT JOIN manufacturers_tbl m on m.manuf_id=x.product_manufacturer
        LEFT JOIN brands_tbl b ON b.brand_id = x.product_brand WHERE x.assigned_for=ids AND x.assigned_date=dates ORDER BY x.product_name;
 
 ELSE
 SELECT x.product_id, x.product_name, x.product_display, x.product_maincategory, x.product_subcategory, x.product_category, x.product_brand, b.brand_name, x.product_status, x.product_publish, y.prodclass_name  AS maincat, z.prodclass_name AS subcat, k.prodclass_name AS category ,x.assigned_for,x.product_entry_status,m.manuf_name
        FROM products_entry_tbl x 
        LEFT JOIN product_classes y ON y.prodclass_id = x.product_maincategory 
        LEFT JOIN product_classes z ON z.prodclass_id = x.product_subcategory 
        LEFT JOIN product_classes k ON k.prodclass_id = x.product_category 
        LEFT JOIN manufacturers_tbl m on m.manuf_id=x.product_manufacturer
        LEFT JOIN brands_tbl b ON b.brand_id = x.product_brand WHERE x.assigned_date=dates  ORDER BY x.product_name;
        
        END IF;
        
END$$

CREATE  PROCEDURE `listPurchaseOrders` (IN `temVal` INT, IN `fromDate` DATE, IN `toDate` DATE)  COMMENT 'purchase orders where supply is pending' BEGIN
SELECT store_id, store_type, store_name, store_license
    FROM stores_tbl WHERE store_status = 1
    UNION SELECT 0, 0, 0, 0
    ORDER BY store_type, store_name;
    IF temVal=1 THEN
	SELECT x.purchord_id, x.purchord_ref, x.purchord_date,  fnGetVendorName(x.purchord_vendtype, x.purchord_vendor) AS vendor, x.purchord_amount, (SELECT COUNT(*) FROM purchase_details y WHERE y.podetail_order = x.purchord_id) AS orditems, x.purchord_supply, x.purchord_preprdby, x.purchord_aprvdby, x.purchord_issuedby, x.purchord_status, x.purchord_deliverby, x.purchord_deliverat, s.store_name
    FROM purchase_orders x
    LEFT JOIN stores_tbl s ON s.store_id = x.purchord_deliverat
    WHERE x.purchord_date BETWEEN fromDate AND toDate
    /*ORDER BY x.purchord_crtdon;*/
    ORDER BY x.purchord_date DESC;
    ELSEIF temVal=2 THEN
    	SELECT x.purchord_id, x.purchord_ref, x.purchord_date,  fnGetVendorName(x.purchord_vendtype, x.purchord_vendor) AS vendor, x.purchord_amount, (SELECT COUNT(*) FROM purchase_details y WHERE y.podetail_order = x.purchord_id) AS orditems, x.purchord_supply, x.purchord_preprdby, x.purchord_aprvdby, x.purchord_issuedby, x.purchord_status, x.purchord_deliverby, x.purchord_deliverat, s.store_name
    FROM purchase_orders x
    LEFT JOIN stores_tbl s ON s.store_id = x.purchord_deliverat
    WHERE(x.purchord_date BETWEEN fromDate AND toDate) AND x.purchord_status=1
    /*ORDER BY x.purchord_crtdon;*/
    ORDER BY x.purchord_date DESC;
    ELSEIF temVal=3 THEN
    	SELECT x.purchord_id, x.purchord_ref, x.purchord_date,  fnGetVendorName(x.purchord_vendtype, x.purchord_vendor) AS vendor, x.purchord_amount, (SELECT COUNT(*) FROM purchase_details y WHERE y.podetail_order = x.purchord_id) AS orditems, x.purchord_supply, x.purchord_preprdby, x.purchord_aprvdby, x.purchord_issuedby, x.purchord_status, x.purchord_deliverby, x.purchord_deliverat, s.store_name
    FROM purchase_orders x
    LEFT JOIN stores_tbl s ON s.store_id = x.purchord_deliverat
    WHERE(x.purchord_date BETWEEN fromDate AND toDate) AND ( x.purchord_status = 5 OR  x.purchord_status = 10)
    /*ORDER BY x.purchord_crtdon;*/
    ORDER BY x.purchord_date DESC;
     ELSEIF temVal=4 THEN
    	SELECT x.purchord_id, x.purchord_ref, x.purchord_date,  fnGetVendorName(x.purchord_vendtype, x.purchord_vendor) AS vendor, x.purchord_amount, (SELECT COUNT(*) FROM purchase_details y WHERE y.podetail_order = x.purchord_id) AS orditems, x.purchord_supply, x.purchord_preprdby, x.purchord_aprvdby, x.purchord_issuedby, x.purchord_status, x.purchord_deliverby, x.purchord_deliverat, s.store_name
    FROM purchase_orders x
    LEFT JOIN stores_tbl s ON s.store_id = x.purchord_deliverat
    WHERE(x.purchord_date BETWEEN fromDate AND toDate) AND x.purchord_status=15
    /*ORDER BY x.purchord_crtdon;*/
    ORDER BY x.purchord_date DESC;
   ELSE
   	SELECT x.purchord_id, x.purchord_ref, x.purchord_date,  fnGetVendorName(x.purchord_vendtype, x.purchord_vendor) AS vendor, x.purchord_amount, (SELECT COUNT(*) FROM purchase_details y WHERE y.podetail_order = x.purchord_id) AS orditems, x.purchord_supply, x.purchord_preprdby, x.purchord_aprvdby, x.purchord_issuedby, x.purchord_status, x.purchord_deliverby, x.purchord_deliverat, s.store_name
    FROM purchase_orders x
    LEFT JOIN stores_tbl s ON s.store_id = x.purchord_deliverat
    WHERE x.purchord_supply < 10 AND x.purchord_status > 0
    ORDER BY x.purchord_crtdon DESC;
 
 END IF;

END$$

CREATE  PROCEDURE `listreturnItemsDeliveries` (IN `courierid` INT)   BEGIN
DECLARE cur_id INT DEFAULT 0;
    IF courierid>0 THEN
     SELECT courier_id INTO cur_id FROM couriers_tbl WHERE courier_staffid=courierid;
SELECT GROUP_CONCAT(p.return_id) AS return_ids,pp.returnbill_id,pp.returnbill_number,pp.returnbill_dated,pp.returnbill_vendertype,pp.returnbill_vendor,pp.returnbill_amt,pp.returnbill_subamt,pp.returnbill_difnce,s.store_name,s.store_id 
    ,pp.returnbill_status,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,c.courier_name, p.courier_cltdon,p.return_delon ,p.returncltn_status, SUM(CASE WHEN p.returncltn_status = 1 THEN 1 ELSE 0 END) AS returncltn_status_1_count,
            SUM(CASE WHEN p.returncltn_status = 0 THEN 1 ELSE 0 END) AS returncltn_status_0_count,SUM(CASE WHEN p.returncltn_status = 5 THEN 1 ELSE 0 END) AS returncltn_status_5_count,p.return_delon ,COUNT(p.return_item)AS itemcount  FROM purchasereturn_details p
    LEFT JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    LEFT JOIN stores_tbl s ON s.store_id=p.return_store
    LEFT JOIN couriers_tbl c ON c.courier_id=p.return_courier
    WHERE pp.returnbill_status>0 AND p.return_courier=cur_id GROUP BY p.return_billnum,p.return_store  ORDER BY p.courier_cltdon DESC ;
    
    ELSE
    SELECT GROUP_CONCAT(p.return_id) AS return_ids,pp.returnbill_id,pp.returnbill_number,pp.returnbill_dated,pp.returnbill_vendertype,pp.returnbill_vendor,pp.returnbill_amt,pp.returnbill_subamt,pp.returnbill_difnce,s.store_name,s.store_id 
    ,pp.returnbill_status,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,c.courier_name, p.courier_cltdon,p.return_delon,p.returncltn_status, SUM(CASE WHEN p.returncltn_status = 1 THEN 1 ELSE 0 END) AS returncltn_status_1_count,
            SUM(CASE WHEN p.returncltn_status = 0 THEN 1 ELSE 0 END) AS returncltn_status_0_count ,SUM(CASE WHEN p.returncltn_status = 5 THEN 1 ELSE 0 END) AS returncltn_status_5_count, COUNT(p.return_item)AS itemcount FROM purchasereturn_details p
    LEFT JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    LEFT JOIN stores_tbl s ON s.store_id=p.return_store
    LEFT JOIN couriers_tbl c ON c.courier_id=p.return_courier
    WHERE p.return_courier>0  GROUP BY p.return_billnum,p.return_store ORDER BY p.courier_cltdon DESC ;
    
    END IF;
END$$

CREATE  PROCEDURE `listStockInwardInvoices` (IN `storeid` INT)   BEGIN
	IF storeid > 1 THEN
    	SELECT x.invoice_id, x.invoice_number, x.invoice_dated, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, (SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id) AS invitems, x.invoice_delstatus, x.invoice_status, x.invoice_delstore,
    	(SELECT GROUP_CONCAT( DISTINCT(s.store_name) SEPARATOR ',') FROM invoice_details y LEFT JOIN stores_tbl s ON s.store_id = y.invdet_delivered  WHERE y.invdet_invoice = x.invoice_id and s.store_id = x.invoice_delstore) AS delvat
    FROM invoices_tbl x
    WHERE (x.invoice_status IN(1,5) OR x.invoice_delstatus < 10 )AND x.invoice_status!=0 AND x.invoice_delstore=storeid
    ORDER BY x.invoice_crtdon DESC;
    ELSE
    	SELECT x.invoice_id, x.invoice_number, x.invoice_dated, fnGetVendorName(x.invoice_vendertype, x.invoice_vendor) AS vendor, (SELECT COUNT(*) FROM invoice_details y WHERE y.invdet_invoice = x.invoice_id) AS invitems, x.invoice_delstatus, x.invoice_status,
    	/*(SELECT GROUP_CONCAT( DISTINCT(s.store_name) SEPARATOR ',') FROM invoice_details y LEFT JOIN purchase_orders p ON p.purchord_id = y.invdet_porder LEFT JOIN stores_tbl s ON s.store_id = p.purchord_deliverat WHERE y.invdet_invoice = x.invoice_id) AS delvat */
        (SELECT GROUP_CONCAT( DISTINCT(s.store_name) SEPARATOR ',') FROM invoice_details y LEFT JOIN stores_tbl s ON s.store_id = y.invdet_delivered  WHERE y.invdet_invoice = x.invoice_id and s.store_id = x.invoice_delstore) AS delvat
    FROM invoices_tbl x
    WHERE x.invoice_status IN(1,5) OR x.invoice_delstatus < 10 and x.invoice_status!=0
    ORDER BY x.invoice_crtdon DESC;
   END IF;
END$$

CREATE  PROCEDURE `listStockists` ()   BEGIN
	SELECT stockist_id, stockist_name, stockist_contact, stockist_contactno, stockist_contactcell, stockist_whatsapp, stockist_status
    FROM stockists_tbl  
    ORDER BY stockist_name;
END$$

CREATE  PROCEDURE `listStockTransferOrders` (IN `storeid` INT)   BEGIN
	IF storeid > 1 THEN
   		SELECT x.stocktrans_id, x.stocktrans_order, x.stocktrans_date,
        x.stocktrans_strfrom, s.store_name AS storefrom, x.stocktrans_strto, t.store_name AS storeto,
        x.stocktrans_items, x.stocktrans_packing, x.stocktrans_delivery, x.stocktrans_status,
        (SELECT COUNT(*) FROM transfer_packets p WHERE p.transpack_refer = x.stocktrans_id) AS packets,(SELECT COUNT(*) FROM stocktransfer_details WHERE stockorder_refer=x.stocktrans_id GROUP BY stockorder_refer)as itemscount
    	FROM stock_transfers x
        LEFT JOIN stores_tbl s ON s.store_id = x.stocktrans_strfrom
        LEFT JOIN stores_tbl t ON t.store_id = x.stocktrans_strto
    	WHERE x.stocktrans_status = 1 AND x.stocktrans_strfrom=storeid order by x.stocktrans_crtdon DESC;
    ELSE
        SELECT x.stocktrans_id, x.stocktrans_order, x.stocktrans_date,
        x.stocktrans_strfrom, s.store_name AS storefrom, x.stocktrans_strto, t.store_name AS storeto,
        x.stocktrans_items, x.stocktrans_packing, x.stocktrans_delivery, x.stocktrans_status,
        (SELECT COUNT(*) FROM transfer_packets p WHERE p.transpack_refer = x.stocktrans_id) AS packets,(SELECT COUNT(*) FROM stocktransfer_details WHERE stockorder_refer=x.stocktrans_id GROUP BY stockorder_refer)as itemscount
    	FROM stock_transfers x
        LEFT JOIN stores_tbl s ON s.store_id = x.stocktrans_strfrom
        LEFT JOIN stores_tbl t ON t.store_id = x.stocktrans_strto
    	WHERE x.stocktrans_status = 1 order by x.stocktrans_crtdon DESC;
    END IF;
END$$

CREATE  PROCEDURE `listStorage` ()   BEGIN
SELECT s.storage_id, s.storage_label, s.storage_type, t.strgtype_type, s.storage_remarks, s.storage_temperature, s.storage_humidity, s.storage_security, s.storage_status, s.storage_volume, s.storage_size, s.storage_load FROM storage_tbl s LEFT JOIN storage_types t ON t.strgtype_id = s.storage_type;
END$$

CREATE  PROCEDURE `listStoreIntends` (IN `storeid` INT)   BEGIN
	SELECT s.store_id, s.store_code, s.store_name
    FROM stores_tbl s WHERE s.store_status = 1 ORDER BY s.store_name;
    IF storeid > 1 THEN
    	SELECT x.intend_id, x.intend_number, x.intend_date, x.intend_from, sf.store_name AS storefrom, x.intend_to, st.store_name AS storeto, x.intend_items, x.intend_delstatus, x.intend_status,x.intend_preprdby,x.intend_updby,x.intend_crtdon,x.intend_updon,(select u.user_staffname from users_tbl u WHERE u.user_id = x.intend_preprdby) as prepdbyname ,(select u.user_staffname from users_tbl u WHERE u.user_id = x.intend_updby) as updtdbyname,(select u.user_staffname from users_tbl u WHERE u.user_id = x.intend_apprvedby) as aprvdbyname
    	FROM intends_tbl x
        LEFT JOIN stores_tbl sf ON sf.store_id = x.intend_from
        LEFT JOIN stores_tbl st ON st.store_id = x.intend_to
    	WHERE  x.intend_from = storeid AND x.intend_status IN(1,5) ORDER BY x.intend_crtdon DESC;
    ELSE
		SELECT x.intend_id, x.intend_number, x.intend_date, x.intend_from, sf.store_name AS storefrom, x.intend_to, st.store_name AS storeto, x.intend_items, x.intend_delstatus, x.intend_status,x.intend_preprdby,x.intend_updby,x.intend_crtdon,x.intend_updon,(select u.user_staffname from users_tbl u WHERE u.user_id = x.intend_preprdby) as prepdbyname,(select u.user_staffname from users_tbl u WHERE u.user_id = x.intend_updby) as updtdbyname,(select u.user_staffname from users_tbl u WHERE u.user_id = x.intend_apprvedby) as aprvdbyname
    	FROM intends_tbl x
        LEFT JOIN stores_tbl sf ON sf.store_id = x.intend_from
        LEFT JOIN stores_tbl st ON st.store_id = x.intend_to
    	WHERE x.intend_status IN(1,5) ORDER BY x.intend_crtdon DESC;
    END IF;
END$$

CREATE  PROCEDURE `listStoreIntendsForApprovals` ()   BEGIN
	SELECT x.intend_id, x.intend_number, x.intend_date, x.intend_from, frst.store_name AS fromstore, x.intend_to, tost.store_name AS tostore, x.intend_items, x.intend_apprvedby, x.intend_procdby, x.intend_status 
    FROM intends_tbl x 
    LEFT JOIN stores_tbl frst ON frst.store_id = x.intend_from 
    LEFT JOIN stores_tbl tost ON tost.store_id = x.intend_to 
    WHERE x.intend_status = 1 
    ORDER BY x.intend_date;
END$$

CREATE  PROCEDURE `listStoreItemreceived` (IN `storeid` INT, IN `opnval` INT, IN `fromdate` VARCHAR(225), IN `todate` VARCHAR(225))   BEGIN
	SELECT s.store_id,s.store_code,s.store_name  FROM stores_tbl s WHERE s.store_status=1 ORDER BY s.store_name;
    
    IF storeid > 1 THEN
      IF opnval=1 THEN
    	SELECT t.transpack_id,t.transpack_packid,t.transpack_from,st.store_name AS sourcestore,sf.store_name AS receivedstore ,t.transpack_to ,t.transpack_status,t.transpack_deliverby,t.transpack_receiveby,t.transpack_receiveon,c.courier_name ,u.user_staffname FROM transfer_packets t 
            LEFT JOIN  stores_tbl st ON st.store_id=t.transpack_from
            LEFT JOIN stores_tbl sf ON sf.store_id=t.transpack_to
            LEFT JOIN couriers_tbl c ON c.courier_id=t.transpack_deliverby
            LEFT JOIN users_tbl u ON u.user_id=t.transpack_receiveby
            WHERE t.transpack_status =10 AND t.transpack_to=storeid ORDER BY t.transpack_receiveon DESC;
     ELSE
    	SELECT t.transpack_id,t.transpack_packid,t.transpack_from,st.store_name AS sourcestore,sf.store_name AS receivedstore , t.transpack_to , t.transpack_status,t.transpack_deliverby,t.transpack_receiveby,t.transpack_receiveon,c.courier_name ,u.user_staffname FROM transfer_packets t 
        LEFT JOIN  stores_tbl st ON st.store_id=t.transpack_from
        LEFT JOIN couriers_tbl c ON c.courier_id=t.transpack_deliverby
        LEFT JOIN stores_tbl sf ON sf.store_id=t.transpack_to
        LEFT JOIN users_tbl u ON u.user_id=t.transpack_receiveby
        WHERE t.transpack_to=storeid AND t.transpack_status >1 AND t.transpack_status <10;
     END IF;  
   ELSE
   
    IF opnval=1 THEN
    	SELECT t.transpack_id,t.transpack_packid,t.transpack_from,st.store_name AS sourcestore,sf.store_name AS receivedstore ,t.transpack_to ,t.transpack_status,t.transpack_deliverby,t.transpack_receiveby,t.transpack_receiveon,c.courier_name ,u.user_staffname FROM transfer_packets t 
            LEFT JOIN  stores_tbl st ON st.store_id=t.transpack_from
            LEFT JOIN stores_tbl sf ON sf.store_id=t.transpack_to
            LEFT JOIN couriers_tbl c ON c.courier_id=t.transpack_deliverby
           LEFT JOIN users_tbl u ON u.user_id=t.transpack_receiveby
            WHERE t.transpack_status =10 ORDER BY t.transpack_receiveon DESC;
     ELSE       
    	 SELECT t.transpack_id,t.transpack_packid,t.transpack_from,st.store_name AS sourcestore,sf.store_name AS receivedstore ,t.transpack_to ,t.transpack_status,t.transpack_deliverby,t.transpack_receiveby,t.transpack_receiveon,c.courier_name ,u.user_staffname FROM transfer_packets t 
            LEFT JOIN  stores_tbl st ON st.store_id=t.transpack_from
            LEFT JOIN stores_tbl sf ON sf.store_id=t.transpack_to
            LEFT JOIN couriers_tbl c ON c.courier_id=t.transpack_deliverby
            LEFT JOIN users_tbl u ON u.user_id=t.transpack_receiveby
            WHERE t.transpack_status >1 AND t.transpack_status <10;
	END IF;
    END IF;
END$$

CREATE  PROCEDURE `listStores` ()   BEGIN
	SELECT x.store_id, x.store_type, x.store_location, x.store_code, s.storetype_name, x.store_name, x.store_contact, x.store_contactno, x.store_contactcell, x.store_contactwapp, x.store_status  
    FROM stores_tbl x 
    LEFT JOIN store_types s ON s.storetype_id = x.store_type 
    /*GROUP BY x.store_type*/
    ORDER BY x.store_crtdon ASC;
END$$

CREATE  PROCEDURE `listVendorSupplies` (IN `stype` INT, IN `supplier` INT)   BEGIN
	IF stype = 1 THEN   /* Stockists */ 
     
    	SELECT x.stockistprod_product AS pid, p.product_name, p.product_display, 'Stockist' AS suppliertype 
        FROM stockist_products x 
        LEFT JOIN products_tbl p ON p.product_id = x.stockistprod_product 
        WHERE x.stockistprod_stockist = supplier AND x.stockistprod_status = 1 
        ORDER BY p.product_display;
    ELSEIF stype = 2 THEN  /* Distributors */
   
    	SELECT d.distriprod_product AS pid, p.product_name, p.product_display, 'Distributor' AS suppliertype 
        FROM distributor_products d 
        LEFT JOIN products_tbl p ON p.product_id = d.distriprod_product 
        WHERE d.distriprod_distributor = supplier AND d.distriprod_status = 1
        ORDER BY p.product_display;
    ELSE
    
    	SELECT q.dealerprod_product AS pid, p.product_name, p.product_display, 'Dealer' AS suppliertype 
        FROM dealer_products q 
        LEFT JOIN products_tbl p ON p.product_id = q.dealerprod_product 
        WHERE q.dealerprod_dealer = supplier AND q.dealerprod_status = 1
        ORDER BY p.product_display;
    END IF;
    
    SELECT v.vendsup_id, v.vendsup_product, p.product_name, p.product_display, 
    v.vendsup_packing, u.packing_type, v.vendsup_price, v.vendsup_minqty, v.vendsup_maxqty, v.vendsup_eoq, v.vendsup_deliver, 
    v.vendsup_notes, v.vendsup_status, fnGetProductFromPack(v.vendsup_packing, 0) AS package, CONCAT(u.packing_type, ' ', k.prodpack_quantity, ' ', m.measunit_shortname) AS boxunit,k.prodpack_quantity 
    FROM vendor_supplies v
    LEFT JOIN products_tbl p ON p.product_id = v.vendsup_product 
    LEFT JOIN product_packing k ON k.prodpack_id = v.vendsup_packing
    LEFT JOIN packing_tbl u ON u.packing_id = k.prodpack_package  
    LEFT JOIN measure_units m ON m.measunit_id = k.prodpack_unit 
    WHERE v.vendsup_vendor = supplier AND v.vendsup_type = stype AND v.vendsup_status = 1 
    ORDER BY product_display;
END$$

CREATE  PROCEDURE `loadtoken` (IN `user_id` INT)   BEGIN
DECLARE counts int;
SELECT COUNT(*) into counts FROM customers_tbl c WHERE c.customer_id=user_id;
IF(counts=1)THEN
SELECT c.customer_type  as type,c.customer_phone as cusphone FROM customers_tbl c WHERE c.customer_id=user_id;
ELSE 
SELECT "" as type;
END IF;
END$$

CREATE  PROCEDURE `nonMovingItemsByStores` (IN `storeid` INT, IN `fdate` DATE, IN `todate` DATE)   BEGIN

SELECT s.store_id,s.store_code,s.store_name FROM stores_tbl s WHERE s.store_status=1;

 SELECT  s.storestock_item,MAX(bl.bill_date)AS last_date,fnGetProductFromPack(s.storestock_item, 0) AS item,i.invdet_item,i.invdet_ptr,it.invoice_number,it.invoice_dated,(s.storestock_available-s.storestock_reserved)AS stock,s.storestock_store,st.store_name,st.store_code,pt.product_name,m.manuf_code,m.manuf_name FROM storestock_master s JOIN bill_items bb on bb.billit_item=s.storestock_item
 JOIN bills_table bl on bl.bill_id=bb.billit_id JOIN stores_tbl st ON st.store_id=s.storestock_store
 JOIN product_packing p ON p.prodpack_id=s.storestock_item
 JOIN products_tbl pt ON pt.product_id=p.prodpack_product
 JOIN manufacturers_tbl m ON m.manuf_id=pt.product_manufacturer
 JOIN invoice_details i ON i.invdet_batch=bb.billit_batch
 JOIN invoices_tbl it ON it.invoice_id=i.invdet_invoice
 WHERE s.storestock_item NOT IN (SELECT bs.billit_item FROM bill_items bs JOIN bills_table b ON b.bill_id=bs.billit_id JOIN storestock_master ss ON ss.storestock_store=b.bill_store
 WHERE date(b.bill_date) BETWEEN fdate and todate ) AND date(bl.bill_date)<=todate and  bl.bill_store=s.storestock_store GROUP by s.storestock_item ORDER BY bl.bill_date DESC;
 

END$$

CREATE  PROCEDURE `purchaseBillReportBystores` ()   BEGIN
/*SELECT i.invoice_id,i.invoice_dated,CONCAT(DATE_FORMAT(i.invoice_crtdon, '%H.%i'), ' to ', DATE_FORMAT(DATE_ADD(i.invoice_crtdon, INTERVAL 1 HOUR), '%H.%i')) AS hour_interval,
     i.invoice_number,i.invoice_delstore,s.store_name,i.invoice_crtdon ,date(i.invoice_crtdon)as dates ,time(i.invoice_crtdon)as times FROM invoices_tbl i
LEFT JOIN stores_tbl s ON s.store_id=i.invoice_delstore
WHERE i.invoice_status>0 ORDER BY hour_interval,s.store_name ;*/
SELECT 
    DATE_FORMAT(i.invoice_crtdon, '%d-%m') AS date,
    CONCAT(DATE_FORMAT(i.invoice_crtdon, '%H'), '.00 to ', DATE_FORMAT(DATE_ADD(i.invoice_crtdon, INTERVAL 1 HOUR), '%H'), '.00') AS hour_interval,
    COUNT(i.invoice_id) AS invoice_count, SUM(i.invoice_amount) AS invoice_amount , i.invoice_delstore,GROUP_CONCAT(i.invoice_id), s.store_name,s.store_code
FROM 
    invoices_tbl i
LEFT JOIN 
    stores_tbl s ON s.store_id = i.invoice_delstore
WHERE 
    i.invoice_status > 0 
GROUP BY 
    s.store_name,DATE_FORMAT(i.invoice_crtdon, '%d-%m'),
    DATE_FORMAT(i.invoice_crtdon, '%H')
ORDER BY 
   /* s.store_name,DATE_FORMAT(i.invoice_crtdon, '%d-%m'),
    DATE_FORMAT(i.invoice_crtdon, '%H');*/
     STR_TO_DATE(DATE_FORMAT(i.invoice_crtdon, '%d-%m'), '%d-%m') ASC,
        DATE_FORMAT(i.invoice_crtdon, '%H') ASC;
END$$

CREATE  PROCEDURE `purchasePerformanceReport` (IN `storeid` INT, IN `fdate` DATE, IN `todate` DATE)   BEGIN

SELECT s.store_id,s.store_code,s.store_name  FROM stores_tbl s WHERE s.store_status=1;

IF storeid > 1 THEN
	IF fdate IS NOT NULL AND todate IS NOT NULL THEN
        SELECT i.invdet_id,i.invdet_item,fnGetProductFromPack(i.invdet_item, 0) AS item ,fnGetVendorName(v.invoice_vendertype, v.invoice_vendor) AS vendor,v.invoice_number,v.invoice_dated,i.invdet_qty, v.invoice_amount,i.invdet_mrp,i.invdet_ptr ,s.store_id,s.store_code,s.store_name  FROM invoice_details i
        LEFT JOIN invoices_tbl v ON v.invoice_id=i.invdet_invoice
        LEFT JOIN stores_tbl s ON s.store_id=i.invdet_delivered  WHERE i.invdet_delivered=storeid AND v.invoice_dated BETWEEN fdate AND todate ORDER BY v.invoice_dated DESC ;
   /* ELSE 
     SELECT i.invdet_id,i.invdet_item,fnGetProductFromPack(i.invdet_item, 0) AS item ,fnGetVendorName(v.invoice_vendertype, v.invoice_vendor) AS vendor,v.invoice_number,v.invoice_dated,i.invdet_qty, v.invoice_amount,i.invdet_mrp,i.invdet_ptr ,s.store_id,s.store_code,s.store_name  FROM invoice_details i
        LEFT JOIN invoices_tbl v ON v.invoice_id=i.invdet_invoice
        LEFT JOIN stores_tbl s ON s.store_id=i.invdet_delivered  WHERE i.invdet_delivered=storeid ORDER BY v.invoice_dated DESC ;*/
  END IF;

/*ELSE
SELECT i.invdet_id,i.invdet_item,fnGetProductFromPack(i.invdet_item, 0) AS item ,fnGetVendorName(v.invoice_vendertype, v.invoice_vendor) AS vendor,v.invoice_number,v.invoice_dated,v.invoice_amount,i.invdet_qty, i.invdet_mrp,i.invdet_ptr ,s.store_id,s.store_code,s.store_name  FROM invoice_details i
LEFT JOIN invoices_tbl v ON v.invoice_id=i.invdet_invoice
LEFT JOIN stores_tbl s ON s.store_id=i.invdet_delivered ;*/
END IF ;
END$$

CREATE  PROCEDURE `purchaseReturnbillReports` (IN `storeid` INT, IN `fdate` DATE, IN `todate` DATE)   BEGIN
SELECT store_id,store_type,store_code,store_name FROM stores_tbl  WHERE store_status=1;
IF storeid>1 THEN
	IF fdate!="" AND todate!="" THEN
 SELECT p.returnbill_id,p.returnbill_number,p.returnbill_dated,fnGetVendorName(p.returnbill_vendertype,p.returnbill_vendor) AS vendor,fnGetProductFromPack(pd.return_item, 0) AS item ,s.store_id,s.store_code,s.store_name,i.invoice_number,pd.returnitem_subtotal ,pd.return_remark,u.user_staffname FROM purchasereturn_tbl p
 LEFT JOIN purchasereturn_details pd ON pd.return_billnum=p.returnbill_id
 LEFT JOIN stores_tbl s ON s.store_id=pd.return_store
 LEFT JOIN invoices_tbl i ON i.invoice_id=pd.return_invoice
 LEFT JOIN users_tbl u ON u.user_id=pd.return_crtdby
 WHERE pd.return_store=storeid AND pd.returncltn_status=5 AND pd.return_billdate BETWEEN fdate AND todate;
 END IF;
 END IF;

END$$

CREATE  PROCEDURE `purchaseReturnItems` (IN `billno` VARCHAR(255), IN `billdate` DATE, IN `ventype` INT, IN `venid` INT, IN `toatlamt` DECIMAL(10,2), IN `subtotal` DECIMAL(10,2), IN `diffnce` DECIMAL(10,2), IN `returndetails` TEXT, IN `adminid` INT)   BEGIN
DECLARE reids, resp ,sknrd_id,checkid,stk_dm INT DEFAULT 0;
SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid;
IF( SELECT COUNT(*) FROM purchasereturn_tbl WHERE returnbill_number = trim(billno) ) = 0 THEN
		INSERT INTO purchasereturn_tbl(returnbill_number, returnbill_dated,returnbill_vendertype, returnbill_vendor,returnbill_amt,returnbill_subamt ,returnbill_difnce,returnbill_crtdby,returnbill_crtdon)
    	VALUES(billno,billdate,ventype,venid,toatlamt,subtotal,diffnce,checkid,CURRENT_TIMESTAMP());
    	SET reids = LAST_INSERT_ID();
    	SET resp = reids;
    	IF reids > 0 THEN
    		SET @text := TRIM(BOTH '##' FROM returndetails);
  			SET @strLen := 0;
  			SET @i := 1;
  			WHILE @strLen < LENGTH(@text) DO
    			SET @str := SUBSTRING_INDEX(@text, '##', @i);
    			SET @strLen := LENGTH(@str);
    			SET @i := @i + 1;
     			SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        		SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 			SET @strGLen := 0;
     			SET @Gi := 1;
     			SET @icols := 1;
     			WHILE @strGLen < LENGTH(@GRAPE) DO
		        	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                	SET @strGLen := LENGTH(@Gstr);
                	SET @Gi := @Gi + 1;
                	IF @icols = 1 THEN
                   		SET @billno := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 2 THEN
                    	SET @billdate := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 3 THEN
                    	SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 4 THEN
                    	SET @invid := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 5 THEN
                    	SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                	ELSEIF @icols = 6 THEN
                    	SET @vendtype := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 7 THEN
                    	SET @vendor := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 8 THEN
                    	SET @storeid := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 9 THEN
                    	SET @orgqty := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 10 THEN
                    	SET @retunqty := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 11 THEN
                    	SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 12 THEN
                    	SET @subtotal := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSEIF @icols = 13 THEN
                    	SET @strstkid := SUBSTRING_INDEX(@Gstr, '|', -1);
                    ELSE
                    	SET @reason := SUBSTRING_INDEX(@Gstr, '|', -1);
                	END IF;
        			SET @icols := @icols + 1;
     			END WHILE;
     			INSERT INTO purchasereturn_details(return_stcknid,return_billnum,return_billdate,return_invoice,return_item,returnitem_batch,	item_qty,returnitem_qty,returnitem_expiry,returnitem_subtotal,return_remark,return_store,return_crtdby, return_crtdon)
            	VALUES(@strstkid,reids, @billdate, @invid, @item, @batch, @orgqty, @retunqty, @expiry,@subtotal, @reason, @storeid,checkid,CURRENT_TIMESTAMP());
                SELECT strstk_refer INTO sknrd_id FROM storestock_pricing WHERE strstk_id = @strstkid;
                SELECT stockin_damaged  INTO stk_dm FROM stock_inwards WHERE stockin_id = sknrd_id;

           IF @reason='damage' THEN
                SET @rm:=@retunqty-stk_dm;
                	UPDATE stock_inwards SET stockin_damaged=@retunqty-(stk_dm+@rm) , stockin_reserved=(stockin_reserved+ @retunqty) WHERE stockin_id=sknrd_id;
                END IF;
                UPDATE storestock_pricing SET strstk_reserved=(strstk_reserved+ @retunqty) WHERE strstk_id=@strstkid ;
                UPDATE storestock_master SET storestock_reserved=(storestock_reserved+ @retunqty) WHERE storestock_item=@item AND storestock_store=@storeid;
  			END WHILE;
            END IF;
    END IF;
END$$

CREATE  PROCEDURE `purchaseReturnPreviousData` (IN `branchid` INT, IN `item` INT, IN `storeid` INT, IN `vendortype` INT, IN `vendor` INT, IN `fromdate` DATE, IN `todate` DATE)   BEGIN
IF branchid>1 THEN
IF item>0 THEN
SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store,pp.returnbill_id ,s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
JOIN stores_tbl s ON s.store_id=p.return_store
JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
WHERE p.return_item=item AND p.returncltn_status=5 AND p.return_store=branchid AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
ELSEIF storeid>1 THEN
    SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store,pp.returnbill_id , s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
    JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    JOIN stores_tbl s ON s.store_id=p.return_store
    JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
    WHERE p.return_store=storeid AND p.returncltn_status=5 AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
ELSEIF vendortype>0 AND vendor>0 THEN
SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store, pp.returnbill_id ,s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
    JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    JOIN stores_tbl s ON s.store_id=p.return_store
    JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
    WHERE pp.returnbill_vendertype=vendortype AND pp.returnbill_vendor=vendor AND p.returncltn_status=5 AND p.return_store=branchid AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
    ELSE
    SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store, pp.returnbill_id ,s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
    JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    JOIN stores_tbl s ON s.store_id=p.return_store
    JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
    WHERE p.return_store=branchid AND p.returncltn_status=5 AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
END IF;
ELSE
IF item>0 THEN
SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store, pp.returnbill_id ,s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
JOIN stores_tbl s ON s.store_id=p.return_store
JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
WHERE p.return_item=item AND p.returncltn_status=5 AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
ELSEIF storeid>1 THEN
    SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store, pp.returnbill_id ,s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
    JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    JOIN stores_tbl s ON s.store_id=p.return_store
    JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
    WHERE p.return_store=storeid AND p.returncltn_status=5 AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
ELSEIF vendortype>0 AND vendor>0 THEN
SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store, pp.returnbill_id ,s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
    JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    JOIN stores_tbl s ON s.store_id=p.return_store
    JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
    WHERE pp.returnbill_vendertype=vendortype AND pp.returnbill_vendor=vendor AND p.returncltn_status=5 AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
    ELSE
    SELECT p.return_item ,fnGetProductFromPack(p.return_item, 0) AS invitem ,p.returnitem_batch,p.returnitem_qty,p.returnitem_expiry,pp.returnbill_number,pp.returnbill_dated, p.return_store, pp.returnbill_id ,s.store_code,s.store_name,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,u.user_staffname,p.return_remark FROM purchasereturn_details p
    JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    JOIN stores_tbl s ON s.store_id=p.return_store
    JOIN users_tbl u ON u.user_id=pp.returnbill_crtdby
    WHERE   p.returncltn_status=5 AND p.return_billdate BETWEEN fromdate AND todate ORDER BY pp.returnbill_dated DESC;
END IF;
END IF;
END$$

CREATE  PROCEDURE `quickAddBrand` (IN `brand` VARCHAR(200), IN `manufacturer` INT, IN `admin` INT)   BEGIN
	DECLARE brid INT DEFAULT 0;
	if TRIM(brand) <> '' AND manufacturer > 0 THEN
    	INSERT INTO `brands_tbl`(`brand_name`, `brand_owner`, `brand_crtdby` ) 
    	VALUES (brand, manufacturer, admin);
        SET brid = LAST_INSERT_ID();
    END IF;
    SELECT brid;
END$$

CREATE  PROCEDURE `quickAddBrandNew` (IN `brand` VARCHAR(200), IN `manufacturer` INT, IN `admin` INT)   BEGIN
	DECLARE brid INT DEFAULT 0;
	if TRIM(brand) <> '' AND manufacturer > 0 THEN
    if EXISTS (SELECT 1 FROM brands_tbl b WHERE b.brand_name=brand)THEN 
    SELECT  MIN(brand_id) INTO brid FROM brands_tbl WHERE brand_name=brand GROUP BY brand_name HAVING COUNT(*) >= 1;	
        INSERT IGNORE INTO `brand_manufacturer_tbl`( `brnd_id`, `brndmanu_id`) VALUES (brid,manufacturer);
        ELSE
        INSERT INTO `brands_tbl`(`brand_name`, `brand_owner`, `brand_crtdby` ) 
    	VALUES (brand, manufacturer, admin);
        SET brid = LAST_INSERT_ID();
        
        INSERT IGNORE INTO `brand_manufacturer_tbl`( `brnd_id`, `brndmanu_id`) VALUES (brid,manufacturer);
        END IF;
    END IF;
    SELECT brid;
END$$

CREATE  PROCEDURE `quickAddDrugClass` (IN `drgclass` VARCHAR(150), IN `parent` INT, IN `subclass` INT, IN `adminid` INT)   BEGIN
	DECLARE did, sclass INT DEFAULT 0;
	
    IF subclass > 0 THEN
    	SET sclass = subclass;
    ELSEIF parent > 0 THEN
    	SET sclass = parent;
    ELSE
    	SET sclass = 0;
    END IF;
    
    INSERT INTO drug_classifications 
    ( drugclass_name, drugclass_parent, drugclass_crtdby) 
    VALUES(drgclass, sclass, adminid);
    
    SET did = LAST_INSERT_ID();
    
    SELECT did;
END$$

CREATE  PROCEDURE `quickAddIngredient` (IN `ingred` VARCHAR(200), IN `itype` INT, IN `admin` INT)   BEGIN
	DECLARE brid INT DEFAULT 0;
	if TRIM(ingred) <> '' THEN
    	INSERT INTO ingredients_tbl (ingred_name, ingred_type, ingred_crtdby ) 
    	VALUES (ingred, itype, admin);
        SET brid = LAST_INSERT_ID();
    END IF; 
    SELECT brid;
END$$

CREATE  PROCEDURE `quickAddLocation` (IN `location` VARCHAR(100), IN `pin` VARCHAR(10), IN `adminid` INT)   BEGIN
	DECLARE lid INT DEFAULT 0;
	if TRIM(location) <> '' AND TRIM(pin) <> '' THEN
    	INSERT INTO delivery_areas( delarea_location, delarea_pincode, delarea_crtdby ) 
        VALUES( location, pin, adminid);
        SET lid = LAST_INSERT_ID();
    END IF;
    SELECT lid;
END$$

CREATE  PROCEDURE `quickAddManufacturer` (IN `manfname` VARCHAR(100), IN `admin` INT)   BEGIN
	INSERT INTO manufacturers_tbl (manuf_name, manuf_crtdby) 
    VALUES(manfname, admin);
    SELECT last_insert_id() as id;
END$$

CREATE  PROCEDURE `quickAddMedicine` (IN `medicine` VARCHAR(255), IN `adminid` INT)   BEGIN
	DECLARE medid INT DEFAULT 0;
	if TRIM(medicine) <> '' THEN
    	INSERT INTO generic_medicines( genmed_name, genmed_crtdby )
        VALUES( medicine, adminid);
        
        SET medid = LAST_INSERT_ID();
    END IF;
    SELECT medid;
END$$

CREATE  PROCEDURE `removeAdvice` (IN `adviceid` INT)   BEGIN
	DELETE FROM advices_table WHERE advice_id = adviceid;
    ALTER TABLE advices_table AUTO_INCREMENT = 1;
END$$

CREATE  PROCEDURE `removeCourierDelievry` (IN `courierid` INT, IN `flag` INT, IN `item` INT)   BEGIN
	select 1;
END$$

CREATE  PROCEDURE `removeDealerProduct` (IN `dealerid` INT, IN `product` INT, IN `adminid` INT)   BEGIN
	UPDATE dealer_products    
    SET dealerprod_status = 0, dealerprod_updby = adminid 
    WHERE dealerprod_dealer = dealerid AND dealerprod_product = product;
END$$

CREATE  PROCEDURE `removeDealerSubdealer` (IN `dealerid` INT, IN `parentid` INT, IN `admin` INT)   BEGIN
	UPDATE subdealers_tbl s
    SET s.subdealer_status = 0, s.subdealer_updby = admin 
    WHERE s.subdealer_dealer = dealerid AND s.subdealer_parent = parentid;
END$$

CREATE  PROCEDURE `removeDeliveryArea` (IN `storeid` INT, IN `delarea` INT, IN `adminid` INT)   BEGIN
	UPDATE store_delivery 
    SET strdelv_status = 0, strdelv_updby = adminid 
    WHERE strdelv_store = storeid AND strdelv_area = delarea;
END$$

CREATE  PROCEDURE `removeDistributorManufacturer` (IN `distrid` INT, IN `manufid` INT, IN `adminid` INT)   BEGIN
UPDATE distributor_products p INNER JOIN products_tbl q on p.distriprod_product=q.product_id INNER JOIN  distributor_manufacturers m on m.distrimanu_company=q.product_manufacturer SET p.distriprod_status = 0, p.distriprod_updby = adminid WHERE p.distriprod_distributor=distrid and m.distrimanu_company=manufid and q.product_manufacturer=manufid;
 

	UPDATE distributor_manufacturers d
    SET d.distrimanu_status = 0, d.distrimanu_updby = adminid
    WHERE d.distrimanu_distributor = distrid AND d.distrimanu_company = manufid;
END$$

CREATE  PROCEDURE `removeDistributorProduct` (IN `distrid` INT, IN `product` INT, IN `adminid` INT)   BEGIN
	UPDATE distributor_products   
    SET distriprod_status = 0, distriprod_updby = adminid 
    WHERE distriprod_distributor = distrid AND distriprod_product = product;
END$$

CREATE  PROCEDURE `removeFaq` (IN `faqid` INT)   BEGIN
	DELETE FROM faq_table WHERE faq_id = faqid;
    ALTER TABLE faq_table AUTO_INCREMENT = 1;
END$$

CREATE  PROCEDURE `removeInvoiceItem` (IN `invitem` INT)   BEGIN
	DECLARE respcode, invid INT DEFAULT 0;
    DECLARE EXIT HANDLER FOR SQLEXCEPTION
    BEGIN
    	ROLLBACK;
        SET respcode = 0;
    END;
    
    SELECT x.invdet_invoice INTO invid FROM invoice_details x 
    WHERE x.invdet_id = invitem;
    
    IF (SELECT COUNT(*) FROM invoices_tbl y 
        WHERE y.invoice_id = invid AND y.invoice_status = 1 AND y.invoice_delstatus = 0 AND y.invoice_paystatus = 0) = 1 THEN
        START TRANSACTION;
        	UPDATE invoice_details SET invdet_status = 0 WHERE invdet_id = invitem;
            SET respcode = 1;
        COMMIT;
    END IF;
    SELECT respcode;
END$$

CREATE  PROCEDURE `removeStockistManufacturer` (IN `stkid` INT, IN `manufid` INT, IN `adminid` INT)   BEGIN
 UPDATE stockist_products p INNER JOIN products_tbl q on p.stockistprod_product=q.product_id INNER JOIN stockist_manufacturers m on m.stockmanu_company=q.product_manufacturer SET p.stockistprod_status = 0, p.stockistprod_updby = adminid WHERE p.stockistprod_stockist=stkid and m.stockmanu_company=manufid and q.product_manufacturer=manufid;
 
	UPDATE stockist_manufacturers s
    SET s.stockmanu_status = 0, s.stockmanu_updby = adminid
    WHERE s.stockmanu_stockist = stkid AND s.stockmanu_company = manufid;
    
   
END$$

CREATE  PROCEDURE `removeStockistProduct` (IN `stkid` INT, IN `product` INT, IN `adminid` INT)   BEGIN
	UPDATE stockist_products  
    SET stockistprod_status = 0, stockistprod_updby = adminid 
    WHERE stockistprod_stockist = stkid AND stockistprod_product = product;
END$$

CREATE  PROCEDURE `removeSubdistribution` (IN `distrbid` INT, IN `parent` INT, IN `adminid` INT)   BEGIN
	UPDATE subdistributors_tbl 
    SET subdistri_status = 0, subdistri_updby = adminid 
    WHERE subdistri_distributor = distrbid AND subdistri_parent = parent;
END$$

CREATE  PROCEDURE `returnBillItemsDetailsByStore` (IN `billno` INT, IN `storeid` INT)   BEGIN

SELECT c.courier_id,c.courier_type,c.courier_name,c.courier_mobile,c.courier_contact FROM couriers_tbl c WHERE c.courier_status =1;

SELECT p.returnbill_id,p.returnbill_number,p.returnbill_dated,p.returnbill_vendertype,p.returnbill_vendor,p.returnbill_status,fnGetVendorName(p.returnbill_vendertype,p.returnbill_vendor) AS vendor FROM purchasereturn_tbl p WHERE p.returnbill_id=billno;

SELECT pp.return_id,pp.return_item,fnGetProductFromPack(pp.return_item,0) AS invitem,pp.returnitem_batch,pp.returnitem_qty,pp.returnitem_expiry,pp.return_remark,pp.returnitem_subtotal,pp.return_store,pp.return_courier,pp.courier_cltdon,  pp.returncltn_status,s.store_code,s.store_name,i.invoice_id,i.invoice_number
FROM purchasereturn_details pp
LEFT JOIN stores_tbl s ON s.store_id=pp.return_store
LEFT JOIN invoices_tbl i ON i.invoice_id=pp.return_invoice 
WHERE pp.return_billnum=billno AND pp.return_store=storeid;
END$$

CREATE  PROCEDURE `returnDeliveredItems` (IN `flag` INT, IN `return_ids` TEXT)   BEGIN
    DECLARE front, TempValue, alltracks, billid ,remark TEXT DEFAULT NULL;
    DECLARE frontlen INT DEFAULT NULL;
    DECLARE rids,count_5,count_1,count_0 INT DEFAULT NULL;
    IF flag = 1 THEN
        SET billid = return_ids;
        iterator: LOOP
            IF LENGTH(TRIM(return_ids)) = 0 OR return_ids IS NULL THEN
                LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(return_ids,',',1);
            SET frontlen = LENGTH(front);
            SET TempValue = TRIM(front);
            #update purchasereturn_details
            UPDATE purchasereturn_details SET returncltn_status=5 , return_delon=CURRENT_TIMESTAMP() WHERE return_id=TempValue;
            #update purchasereturn_tbl
            SELECT 	return_billnum INTO rids FROM purchasereturn_details WHERE 	return_id=TempValue;
            SELECT  COUNT(CASE WHEN returncltn_status = 5 THEN 1 END), COUNT(CASE WHEN returncltn_status = 1 THEN 1 END),COUNT(CASE WHEN returncltn_status = 0 THEN 1 END) INTO count_5, count_1,count_0 FROM purchasereturn_details WHERE return_billnum=rids;
            IF count_5 > 0 AND count_1=0 AND COUNT_0=0 THEN
            	UPDATE purchasereturn_tbl SET returnbill_status=10 WHERE returnbill_id=rids;
            /*ELSEIF count_5 > 0 AND (count_1>0 or count_0>0) THEN
            	UPDATE purchasereturn_tbl SET returnbill_status=5 WHERE returnbill_id=rids;
           */
            END IF;
            SET return_ids = INSERT(return_ids, 1, frontlen + 1, '');
        END LOOP;
    END IF;
END$$

CREATE  PROCEDURE `returnItemsCollections` (IN `storeid` INT)   BEGIN
IF storeid>1 THEN
   SELECT p.return_id ,pp.returnbill_id,pp.returnbill_number,pp.returnbill_dated,pp.returnbill_vendertype,pp.returnbill_vendor,pp.returnbill_amt,pp.returnbill_subamt,pp.returnbill_difnce,s.store_name,s.store_id
    ,pp.returnbill_status,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,c.courier_name, p.courier_cltdon,p.returncltn_status, SUM(CASE WHEN p.returncltn_status = 1 THEN 1 ELSE 0 END) AS returncltn_status_1_count,
            SUM(CASE WHEN p.returncltn_status = 0 THEN 1 ELSE 0 END) AS returncltn_status_0_count ,SUM(CASE WHEN p.returncltn_status = 5 THEN 1 ELSE 0 END) AS returncltn_status_5_count ,COUNT(p.return_item)AS itemcount FROM purchasereturn_details p
    LEFT JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    LEFT JOIN stores_tbl s ON s.store_id=p.return_store
    LEFT JOIN couriers_tbl c ON c.courier_id=p.return_courier
    WHERE pp.returnbill_status>0 AND p.return_store=storeid GROUP BY p.return_billnum,p.return_store  ORDER BY pp.returnbill_dated DESC ;
    ELSE
    SELECT p.return_id ,pp.returnbill_id,pp.returnbill_number,pp.returnbill_dated,pp.returnbill_vendertype,pp.returnbill_vendor,pp.returnbill_amt,pp.returnbill_subamt,pp.returnbill_difnce,s.store_name,s.store_id
    ,pp.returnbill_status,fnGetVendorName(pp.returnbill_vendertype,pp.returnbill_vendor) AS vendor ,c.courier_name, p.courier_cltdon,p.returncltn_status, SUM(CASE WHEN p.returncltn_status = 1 THEN 1 ELSE 0 END) AS returncltn_status_1_count,
            SUM(CASE WHEN p.returncltn_status = 0 THEN 1 ELSE 0 END) AS returncltn_status_0_count ,SUM(CASE WHEN p.returncltn_status = 5 THEN 1 ELSE 0 END) AS returncltn_status_5_count ,COUNT(p.return_item)AS itemcount FROM purchasereturn_details p
    LEFT JOIN purchasereturn_tbl pp ON pp.returnbill_id=p.return_billnum
    LEFT JOIN stores_tbl s ON s.store_id=p.return_store
    LEFT JOIN couriers_tbl c ON c.courier_id=p.return_courier
    WHERE pp.returnbill_status>0 GROUP BY p.return_billnum,p.return_store  ORDER BY pp.returnbill_dated DESC ;
    END IF;
END$$

CREATE  PROCEDURE `ReturnOrderbyOrderID` (IN `orderId` VARCHAR(255), IN `userid` INT, IN `reason` TEXT)   BEGIN
DECLARE ordid INT DEFAULT 0;
SELECT o.order_id INTO ordid  FROM orders_tbl o JOIN customers_tbl c ON c.customer_id=o.order_customer WHERE o.order_orderid=orderId and o.order_customer=userid;
 UPDATE orders_tbl o SET o.order_status=2  WHERE o.order_orderid=orderId and o.order_customer=userid;
 
 UPDATE order_details o set o.ordet_status=2 WHERE o.ordet_order=ordid;


INSERT INTO `order_return_status_history`( `order_id`, `return_status`, `return_reason`, `status_date`) VALUES (ordid,1,reason,CURRENT_TIMESTAMP);
END$$

CREATE  PROCEDURE `reworkDrugSequence` (IN `drugclass` INT)   BEGIN
	DECLARE parentdrugs, subdrugs TEXT DEFAULT '';
    DECLARE theparent, superparent INT DEFAULT 0;

    IF drugclass > 0 THEN
    	SELECT q.drugclass_parent, z.drugclass_parent INTO theparent, superparent 
        FROM drug_classifications q 
        LEFT JOIN drug_classifications z ON z.drugclass_id = q.drugclass_parent 
        WHERE q.drugclass_id = drugclass;
        #SELECT theparent, superparent;
        IF theparent = 0 THEN
        	UPDATE drug_classifications SET drugclass_counter = 0, drugclass_seq = drugclass_id
    		WHERE drugclass_id = drugclass;
        ELSEIF superparent > 0 THEN
        	UPDATE drug_classifications SET drugclass_counter = 2, 
    		drugclass_seq = CONCAT(superparent, '_', superparent, '_', theparent) 
    		WHERE drugclass_id = drugclass;
        ELSE
        	UPDATE drug_classifications SET drugclass_counter = 1, 
    		drugclass_seq = CONCAT(theparent, '_', theparent) 
    		WHERE drugclass_id = drugclass;
        END IF;
    ELSE
    	UPDATE drug_classifications SET drugclass_counter = 0, drugclass_seq = drugclass_id
    	WHERE drugclass_parent = 0;
		
        SELECT GROUP_CONCAT(x.drugclass_id) INTO parentdrugs 
    	FROM drug_classifications x WHERE x.drugclass_parent = 0;
    
    	UPDATE drug_classifications SET drugclass_counter = 1, 
    	drugclass_seq = CONCAT(drugclass_parent, '_', drugclass_parent) 
    	WHERE FIND_IN_SET(drugclass_parent, parentdrugs);
    
    	SELECT GROUP_CONCAT(z.drugclass_id) INTO subdrugs 
    	FROM drug_classifications z WHERE z.drugclass_counter = 1;
        
    	UPDATE drug_classifications SET drugclass_counter = 2, 
    	drugclass_seq = CONCAT(fnGetDrugclassParent(drugclass_id), '_', fnGetDrugclassParent(drugclass_id), '_', drugclass_parent) 
    	WHERE FIND_IN_SET(drugclass_parent, subdrugs);
    END IF;
END$$

CREATE  PROCEDURE `reworkMenuSequence` (IN `menuid` INT)   BEGIN
	DECLARE mainmenu TEXT DEFAULT '';
    
    UPDATE programs_table_seq SET progr_seq = progr_id
    WHERE progr_parent = 0;
    
    SELECT GROUP_CONCAT(q.progr_id) INTO mainmenu 
    FROM programs_table_seq q WHERE q.progr_parent = 0;
    
    UPDATE programs_table_seq SET 
    progr_seq = CONCAT(progr_parent, '_', progr_id) 
    WHERE FIND_IN_SET(progr_parent, mainmenu);

	SELECT * FROM programs_table_seq;
    
END$$

CREATE  PROCEDURE `reworkProductClassSequence` (IN `prodclass` INT)   BEGIN
	DECLARE parents, subs TEXT DEFAULT '';
    DECLARE theparent, superparent INT DEFAULT 0;
    
    IF prodclass > 0 THEN
    	SELECT q.prodclass_parent, z.prodclass_parent INTO theparent, superparent 
        FROM product_classes q 
        LEFT JOIN product_classes z ON z.prodclass_id = q.prodclass_parent 
        WHERE q.prodclass_id = prodclass;
   		IF theparent = 0 THEN
        	UPDATE product_classes SET prodclass_counter = 0, prodclass_seq = prodclass_id
    		WHERE prodclass_id = prodclass;
        ELSEIF superparent > 0 THEN
        	UPDATE product_classes SET prodclass_counter = 2, 
    		prodclass_seq = CONCAT(superparent, '_', superparent, '_', theparent)
            WHERE prodclass_id = prodclass;
        ELSE
        	UPDATE product_classes SET prodclass_counter = 1, 
    		prodclass_seq = CONCAT(theparent, '_', theparent) 
            WHERE prodclass_id = prodclass;
        END IF;
    ELSE
    	UPDATE product_classes SET prodclass_counter = 0, prodclass_seq = prodclass_id
    	WHERE prodclass_parent = 0;
    
    	SELECT GROUP_CONCAT(x.prodclass_id) INTO parents 
    	FROM product_classes x WHERE x.prodclass_parent = 0;
    
    	UPDATE product_classes SET prodclass_counter = 1, 
    	prodclass_seq = CONCAT(prodclass_parent, '_', prodclass_parent) 
    	WHERE FIND_IN_SET(prodclass_parent, parents);
    
    	SELECT GROUP_CONCAT(z.prodclass_id) INTO subs 
    	FROM product_classes z WHERE z.prodclass_counter = 1;

    	UPDATE product_classes SET prodclass_counter = 2, 
    	prodclass_seq = CONCAT(fnGetProductclassParent(prodclass_id), '_', fnGetProductclassParent(prodclass_id), '_', prodclass_parent) 
    	WHERE FIND_IN_SET(prodclass_parent, subs);
    END IF;
END$$

CREATE  PROCEDURE `SalesReturnItems` (IN `billNo` VARCHAR(100), IN `returndetails` TEXT, IN `taxamt` DECIMAL(10,2), IN `cgst` DECIMAL(10,2), IN `sgst` DECIMAL(10,2), IN `netpay` DECIMAL(10,2), IN `adminid` INT)   BEGIN
DECLARE billid, strids,stkTotal INT DEFAULT 0;
DECLARE lqty DECIMAL(10,2) DEFAULT 0;
DECLARE sqty DECIMAL(10,2) DEFAULT 0;
DECLARE minvalue,stockval DECIMAL(10,0) DEFAULT 0;
DECLARE strstkstore INT DEFAULT 0;

SET FOREIGN_KEY_CHECKS = 0;

INSERT INTO salesreturn_tbl(salesret_billnum, salesret_Taxamt, salesret_cgst, salesret_sgst, salesret_netpay, salesret_crtdby) VALUES (billNo, taxamt,cgst, sgst, netpay, adminid);

/* Return item details */
  
  SET billid = LAST_INSERT_ID();
    IF billid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM returndetails);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     SET @icols := 1;
     WHILE @strGLen < LENGTH(@GRAPE) DO
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
        IF @icols=1 THEN
        SET @billno := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols =2 THEN
        SET @itemid := SUBSTRING_INDEX(@Gstr, '|', -1);
       ELSEIF @icols = 3 THEN
        	SET @itemname := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 4 THEN
            SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 5 THEN
            SET @mfr := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 6 THEN
            SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 7 THEN
            SET @exp := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 8 THEN
            SET @sch := SUBSTRING_INDEX(@Gstr, '|', -1);
              ELSEIF @icols = 9 THEN
            SET @mrp := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 10 THEN
            SET @discper := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 11 THEN
            SET @rate := SUBSTRING_INDEX(@Gstr, '|', -1);
              ELSEIF @icols = 12 THEN
            SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 13 THEN
            SET @amt := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 14 THEN
            SET @cgst := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 15 THEN
            SET @strstkid := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 16 THEN
            SET @sgst := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 17 THEN
            SET @rtype := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @mode := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        SET @icols := @icols + 1;
     END WHILE;
     INSERT INTO salesretitem_tbl(ret_billnum,ret_itemid, ret_item, ret_hsn, ret_mfr, ret_batch, ret_expiry, ret_sch, ret_mrp, ret_discount, ret_rate, ret_qty, ret_amount, ret_cgst,  ret_sgst)  VALUES (@billno, @itemid, @itemname, @hsn, @mfr, @batch, @exp, @sch, @mrp, @discper, @rate, @qty, @amt, @cgst, @sgst);
     
     # only for loosereturn tbl --
     select strstk_store into strstkstore from storestock_pricing WHERE strstk_id=@strstkid AND strstk_item=@itemid;
     # --->
     SELECT ss.strstk_refer,ss.strstk_stock INTO strids,stkTotal FROM storestock_pricing ss WHERE ss.strstk_id= @strstkid;
    
    IF @mode='Strip' THEN
    
    SELECT LsQty_lqty, LsQty_sqty INTO lqty, sqty FROM looseitemqty_tbl WHERE LsQty_refer = strids AND LsQty_batch=@batch;
       
       
       if @rtype=1  THEN
       
       set stockval=stkTotal + FLOOR(@qty / lqty);
       set minvalue= @qty-((stockval-stkTotal)*lqty);
        
        UPDATE storestock_pricing SET strstk_stock=stockval WHERE strstk_id=@strstkid AND strstk_item=@itemid;
    UPDATE storestock_master SET storestock_available=stockval WHERE storestock_item=@itemid AND storestock_store=strstkstore;
            UPDATE bills_table b SET b.bill_status=0 WHERE b.bill_no=@billno;

            UPDATE looseitreturn_tbl SET LsQty_sqty = LsQty_sqty + minvalue WHERE LsQty_refer = strids AND LsQty_batch=@batch;

       ELSE
     UPDATE looseitreturn_tbl SET LsQty_sqty = LsQty_sqty + @qty WHERE LsQty_refer = strids AND LsQty_batch=@batch;

       END IF;
     
    ELSE
    
    UPDATE storestock_pricing SET strstk_stock=(strstk_stock+@qty) WHERE strstk_id=@strstkid AND strstk_item=@itemid;
    UPDATE storestock_master SET storestock_available=(storestock_available+@qty) WHERE storestock_item=@itemid AND storestock_store=strstkstore;
    
            UPDATE bills_table b SET b.bill_status=0 WHERE b.bill_no=@billno;

    END IF;
    
    # COMMIT;
	
  END WHILE;
  END IF;
  
SELECT sa.salesret_id, sa.salesret_billnum,sa.salesret_Taxamt, sa.salesret_cgst, sa.salesret_sgst, sa.salesret_netpay, st.* FROM salesreturn_tbl sa left JOIN salesretitem_tbl st ON st.ret_billnum = sa.salesret_billnum WHERE sa.salesret_billnum=billNo;
   

SELECT * FROM bills_table b WHERE b.bill_no = billNo; 
SET FOREIGN_KEY_CHECKS = 1;


END$$

CREATE  PROCEDURE `SalesReturnItemsold` (IN `billNo` VARCHAR(100), IN `returndetails` TEXT, IN `taxamt` DECIMAL(10,2), IN `cgst` DECIMAL(10,2), IN `sgst` DECIMAL(10,2), IN `netpay` DECIMAL(10,2), IN `adminid` INT)   BEGIN
DECLARE billid INT DEFAULT 0;
INSERT INTO salesreturn_tbl(salesret_billnum, salesret_Taxamt, salesret_cgst, salesret_sgst, salesret_netpay, salesret_crtdby) VALUES (billNo, taxamt,cgst, sgst, netpay, adminid);
   /* Return item details */
  SET billid = LAST_INSERT_ID();
    IF billid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM returndetails);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     SET @icols := 1;
     WHILE @strGLen < LENGTH(@GRAPE) DO
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
        IF @icols=1 THEN
        SET @billno := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols =2 THEN
        SET @itemid := SUBSTRING_INDEX(@Gstr, '|', -1);
       ELSEIF @icols = 3 THEN
        	SET @itemname := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 4 THEN
            SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 5 THEN
            SET @mfr := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 6 THEN
            SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 7 THEN
            SET @exp := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 8 THEN
            SET @sch := SUBSTRING_INDEX(@Gstr, '|', -1);
              ELSEIF @icols = 9 THEN
            SET @mrp := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 10 THEN
            SET @discper := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 11 THEN
            SET @rate := SUBSTRING_INDEX(@Gstr, '|', -1);
              ELSEIF @icols = 12 THEN
            SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSEIF @icols = 13 THEN
            SET @amt := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 14 THEN
            SET @cgst := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 15 THEN
            SET @strstkid := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @sgst := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        SET @icols := @icols + 1;
     END WHILE;
     INSERT INTO salesretitem_tbl(ret_billnum,ret_itemid, ret_item, ret_hsn, ret_mfr, ret_batch, ret_expiry, ret_sch, ret_mrp, ret_discount, ret_rate, ret_qty, ret_amount, ret_cgst,  ret_sgst)  VALUES (@billno, @itemid, @itemname, @hsn, @mfr, @batch, @exp, @sch, @mrp, @discper, @rate, @qty, @amt, @cgst, @sgst);
	UPDATE storestock_pricing SET strstk_stock= strstk_stock+@qty WHERE strstk_id=@strstkid AND strstk_item=@itemid;
    /*SELECT xx.strstk_store as storeid FROM storestock_pricing xx WHERE xx.strstk_id= @strstkid;*/
    UPDATE storestock_master m SET m.storestock_available = m.storestock_available + @qty WHERE m.storestock_item=@itemid;
    UPDATE bills_table b SET b.bill_status=0 WHERE b.bill_no=@billno;
  END WHILE;
  END IF;
SELECT sa.salesret_id, sa.salesret_billnum, sa.salesret_Taxamt, sa.salesret_cgst, sa.salesret_sgst, sa.salesret_netpay, st.* FROM salesreturn_tbl sa JOIN salesretitem_tbl st ON st.ret_billnum = sa.salesret_billnum WHERE sa.salesret_billnum=billNo;
SELECT * FROM bills_table b WHERE b.bill_no = billNo;
END$$

CREATE  PROCEDURE `SalesReturnItemsTest` (IN `billNo` VARCHAR(100), IN `returndetails` TEXT, IN `taxamt` DECIMAL(10,2), IN `cgst` DECIMAL(10,2), IN `sgst` DECIMAL(10,2), IN `netpay` DECIMAL(10,2), IN `adminid` INT)   BEGIN
    -- ========================
    -- DECLARE VARIABLES
    -- ========================
    DECLARE billid INT DEFAULT 0;
    DECLARE lqty, sqty INT DEFAULT 0;
    DECLARE minvalue DECIMAL(10,2) DEFAULT 0;

    DECLARE str TEXT;
    DECLARE strLen INT DEFAULT 0;
    DECLARE i INT DEFAULT 1;

    DECLARE GRPS TEXT;
    DECLARE GRAPE TEXT;
    DECLARE strGLen INT DEFAULT 0;
    DECLARE Gi INT DEFAULT 1;
    DECLARE icols INT DEFAULT 1;

    DECLARE billnum_local VARCHAR(100);
    DECLARE itemid INT;
    DECLARE itemname VARCHAR(255);
    DECLARE hsn VARCHAR(50);
    DECLARE mfr VARCHAR(50);
    DECLARE batch VARCHAR(50);
    DECLARE exp DATE;
    DECLARE sch VARCHAR(50);
    DECLARE mrp DECIMAL(10,2);
    DECLARE discper DECIMAL(10,2);
    DECLARE rate DECIMAL(10,2);
    DECLARE qty DECIMAL(10,2);
    DECLARE amt DECIMAL(10,2);
    DECLARE cgst_local DECIMAL(10,2);
    DECLARE sgst_local DECIMAL(10,2);
    DECLARE strstkid INT;
    DECLARE Gstr TEXT;

    -- ========================
    -- Disable foreign key checks temporarily
    -- ========================
    SET FOREIGN_KEY_CHECKS = 0;

    -- ========================
    -- Insert into salesreturn_tbl
    -- ========================
    INSERT INTO salesreturn_tbl(
        salesret_billnum, salesret_Taxamt, salesret_cgst, 
        salesret_sgst, salesret_netpay, salesret_crtdby
    ) VALUES (billNo, taxamt, cgst, sgst, netpay, adminid);

    SET billid = LAST_INSERT_ID();

    IF billid > 0 THEN
        -- Clean input
        SET str = TRIM(BOTH '##' FROM returndetails);
        SET strLen = 0;
        SET i = 1;

        -- ========================
        -- Outer loop over 'str'
        -- ========================
        WHILE strLen < LENGTH(str) DO
            SET GRPS = SUBSTRING_INDEX(str, '##', i);
            SET strLen = LENGTH(GRPS);
            SET i = i + 1;

            SET GRAPE = TRIM(BOTH '|' FROM GRPS);
            SET strGLen = 0;
            SET Gi = 1;
            SET icols = 1;

            -- Reset item variables each iteration
            SET billnum_local = NULL;
            SET itemid = NULL;
            SET itemname = NULL;
            SET hsn = NULL;
            SET mfr = NULL;
            SET batch = NULL;
            SET exp = NULL;
            SET sch = NULL;
            SET mrp = NULL;
            SET discper = NULL;
            SET rate = NULL;
            SET qty = NULL;
            SET amt = NULL;
            SET cgst_local = NULL;
            SET sgst_local = NULL;
            SET strstkid = NULL;

            -- ========================
            -- Inner loop over GRAPE columns
            -- ========================
            WHILE strGLen < LENGTH(GRAPE) DO
                SET Gstr = SUBSTRING_INDEX(GRAPE, '|', Gi);
                SET strGLen = LENGTH(Gstr);
                SET Gi = Gi + 1;

                IF icols = 1 THEN
                    SET billnum_local = TRIM(Gstr);
                ELSEIF icols = 2 THEN
                    SET itemid = TRIM(Gstr);
                ELSEIF icols = 3 THEN
                    SET itemname = TRIM(Gstr);
                ELSEIF icols = 4 THEN
                    SET hsn = TRIM(Gstr);
                ELSEIF icols = 5 THEN
                    SET mfr = TRIM(Gstr);
                ELSEIF icols = 6 THEN
                    SET batch = TRIM(Gstr);
                ELSEIF icols = 7 THEN
                    SET exp = TRIM(Gstr);
                ELSEIF icols = 8 THEN
                    SET sch = TRIM(Gstr);
                ELSEIF icols = 9 THEN
                    SET mrp = TRIM(Gstr);
                ELSEIF icols = 10 THEN
                    SET discper = TRIM(Gstr);
                ELSEIF icols = 11 THEN
                    SET rate = TRIM(Gstr);
                ELSEIF icols = 12 THEN
                    SET qty = TRIM(Gstr);
                ELSEIF icols = 13 THEN
                    SET amt = TRIM(Gstr);
                ELSEIF icols = 14 THEN
                    SET cgst_local = TRIM(Gstr);
                ELSEIF icols = 15 THEN
                    SET strstkid = TRIM(Gstr);
                ELSE
                    SET sgst_local = TRIM(Gstr);
                END IF;

                SET icols = icols + 1;
            END WHILE;  -- End inner GRAPE loop

            -- ========================
            -- Insert into salesretitem_tbl
            -- ========================
            INSERT INTO salesretitem_tbl(
                ret_billnum, ret_itemid, ret_item, ret_hsn, ret_mfr, 
                ret_batch, ret_expiry, ret_sch, ret_mrp, ret_discount, 
                ret_rate, ret_qty, ret_amount, ret_cgst, ret_sgst
            ) VALUES (
                billnum_local, itemid, itemname, hsn, mfr,
                batch, exp, sch, mrp, discper,
                rate, qty, amt, cgst_local, sgst_local
            );

            -- ========================
            -- Update loosereturn_tbl
            -- ========================
            UPDATE loosereturn_tbl
            SET loosereturn_qty = loosereturn_qty + qty
            WHERE loosereturn_refer = strstkid AND loosereturn_batch = batch;

            -- Fetch lqty and sqty safely
            SET lqty = (SELECT loosereturn_qty FROM loosereturn_tbl 
                        WHERE loosereturn_refer = strstkid AND loosereturn_batch = batch LIMIT 1);

            SET sqty = (SELECT loosereturn_sqty FROM loosereturn_tbl 
                        WHERE loosereturn_refer = strstkid AND loosereturn_batch = batch LIMIT 1);

            IF lqty <= sqty AND lqty > 0 THEN
                SET minvalue = sqty / lqty;

                UPDATE storestock_pricing
                SET strstk_stock = strstk_stock + qty
                WHERE strstk_id = strstkid AND strstk_item = itemid;

                UPDATE storestock_master
                SET storestock_available = storestock_available + qty
                WHERE storestock_item = itemid;

                UPDATE bills_table
                SET bill_status = 0
                WHERE bill_no = billnum_local;

                UPDATE loosereturn_tbl
                SET loosereturn_sqty = loosereturn_sqty - (lqty * minvalue)
                WHERE loosereturn_refer = strstkid AND loosereturn_batch = batch;
            END IF;

        END WHILE;  -- End outer str loop
    END IF;  -- End billid check

    -- ========================
    -- Re-enable foreign key checks
    -- ========================
    SET FOREIGN_KEY_CHECKS = 1;

    -- ========================
    -- Single SELECT at the end
    -- ========================
    SELECT 
        sa.salesret_id,
        sa.salesret_billnum,
        sa.salesret_Taxamt,
        sa.salesret_cgst,
        sa.salesret_sgst,
        sa.salesret_netpay,
        st.*
    FROM salesreturn_tbl sa
    LEFT JOIN salesretitem_tbl st ON st.ret_billnum = sa.salesret_billnum
    WHERE sa.salesret_billnum = billNo;
    
    SELECT * FROM bills_table b WHERE b.bill_no = billNo; 

END$$

CREATE  PROCEDURE `saveHomedeliveryDatas` (IN `billid` INT, IN `billnumber` VARCHAR(50), IN `storeid` INT, IN `customer` VARCHAR(50), IN `mobile` VARCHAR(50), IN `item` INT, IN `amount` DECIMAL(10,2), IN `adminid` INT)   BEGIN

INSERT INTO homedelivery_tbl(bill_id,bill_no,store_id,customer_name,customer_mob,items,amount,cretaed_by) VALUES(billid,billnumber,storeid,customer,mobile,item,amount,adminid);

END$$

CREATE  PROCEDURE `saveOnlinedeliveryDatas` (IN `oder_id` INT)   BEGIN

UPDATE orders_tbl  SET order_delivery=1,orders_delivered=CURRENT_TIMESTAMP() WHERE order_id=oder_id;


END$$

CREATE  PROCEDURE `saveTheNotices` (IN `notice_id` INT, IN `notice` TEXT, IN `noticeoffer` INT)   BEGIN

UPDATE tbl_notice SET notice_text=notice,notice_offer=noticeoffer WHERE notice_id =notice_id;
 

END$$

CREATE  PROCEDURE `searchProductByName` (IN `search_term` VARCHAR(200))   BEGIN
if search_term!='' then
select x.product_name,x.product_id,x.prodpack_id,x.packing_type,
x.measunit_shortname,x.strstk_mrp,x.strstk_msp,x.stockin_batch,x.strstk_id, x.product_imageurl from (SELECT ( @row_number := @row_number + 1) AS virtual_id,p.product_name,p.product_id,r.prodpack_id,t.packing_type,
m.measunit_shortname,e.strstk_mrp,e.strstk_msp,s.stockin_batch,e.strstk_id,(select g.prodgal_url  from product_gallery g where g.prodgal_prodpack = r.prodpack_id and  g.prodgal_placedat = 1 and g.prodgal_medium = 1 and g.prodgal_publish = 1 and g.prodgal_status = 1 order by g.prodgal_serial asc limit 1) as product_imageurl from products_tbl p join product_packing r on r.prodpack_product = p.product_id join packing_tbl t on t.packing_id = r.prodpack_package join measure_units m on m.measunit_id = r.prodpack_unit  join  stock_inwards s on s.stockin_item = r.prodpack_id join storestock_pricing e on e.strstk_item = r.prodpack_id
       LEFT JOIN brands_tbl b ON p.product_brand = b.brand_id
    LEFT JOIN product_classes pp ON p.product_maincategory = pp.prodclass_id
    LEFT JOIN pharmacologicalcontent_tbl pc ON p.product_pcontent = pc.pharma_id                                                           
WHERE p.product_name like concat(search_term,'%') OR pc.pharma_name LIKE CONCAT('%', search_term, '%') OR
        b.brand_name LIKE CONCAT('%', search_term, '%') OR
        pp.prodclass_name LIKE CONCAT('%', search_term, '%') and p.product_status = 1 and p.product_online = 1 and p.product_publish=1 and s.stockin_expiry >= CURRENT_DATE() and (e.strstk_stock-e.strstk_reserved) > 0 order by s.stockin_expiry asc, e.strstk_discount desc, (e.strstk_stock-e.strstk_reserved) desc) as x group by x.product_id ;
END IF;
END$$

CREATE  PROCEDURE `searchStockPricing` (IN `storeid` INT, IN `prodclass` INT)   BEGIN
	IF storeid > 0 THEN
		SET @storecondn = CONCAT( ' AND x.strstk_store = ', storeid );
    	SET @itemcount = CONCAT( ', (SELECT COUNT(z.strstk_item) FROM storestock_pricing z WHERE z.strstk_item = x.strstk_item AND z.strstk_stock > 0 AND z.strstk_store = ', storeid, ') AS items' );
    ELSE
    	SET @storecondn = '';
        SET @itemcount = CONCAT( ', (SELECT COUNT(z.strstk_item) FROM storestock_pricing z WHERE z.strstk_item = x.strstk_item AND z.strstk_stock > 0 ) AS items' );
    END IF;
    
    IF prodclass > 0 THEN
		SET @prodcondn = CONCAT( ' AND c.prodclass_id = ', prodclass );
    ELSE
    	SET @prodcondn = '';
    END IF;
	
    SET @query1 = 'SELECT DISTINCT p.product_id, p.product_name, p.product_display, p.product_maincategory, c.prodclass_name, 
    x.strstk_item, 1 AS storecount';
    SET @query2 = ', p.product_sale, p.product_online, p.product_featured, 0 AS priced  
    FROM storestock_pricing x 
    LEFT JOIN products_tbl p ON p.product_id = x.strstk_product 
    LEFT JOIN product_classes c ON c.prodclass_id = p.product_maincategory
    WHERE x.strstk_stock > 0 AND x.strstk_status = 1 ';
    
    SET @query3 = ' UNION SELECT 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 
    ORDER BY strstk_item ' ;
    SET @query = CONCAT(@query1, @itemcount, @query2, @storecondn, @prodcondn, @query3);
    PREPARE statement FROM @query;
    EXECUTE statement;
    
    SELECT prodclass_id, prodclass_name
    FROM product_classes x WHERE prodclass_parent = 0 AND prodclass_status = 1 
    ORDER BY prodclass_serial;
    
    SELECT store_id, store_name 
    FROM stores_tbl WHERE store_status = 1 
    ORDER BY store_name;
END$$

CREATE  PROCEDURE `search_products` (IN `search_term` VARCHAR(255))   BEGIN
  SELECT 
    p.*, 
    b.brand_name,
    pp.prodclass_name,
    pc.pharma_name,m.manuf_name
  FROM products_tbl p
  LEFT JOIN brands_tbl b 
    ON p.product_brand = b.brand_id
  LEFT JOIN product_classes pp
    ON p.product_maincategory = pp.prodclass_id
  LEFT JOIN pharmacologicalcontent_tbl pc 
    ON p.product_pcontent = pc.pharma_id
    LEFT JOIN manufacturers_tbl m on m.manuf_id=p.product_manufacturer
  WHERE p.product_name LIKE CONCAT('%', search_term, '%')
     OR p.product_display LIKE CONCAT('%', search_term, '%')
     OR pc.pharma_name LIKE CONCAT('%', search_term, '%')
     OR b.brand_name LIKE CONCAT('%', search_term, '%')
     OR pp.prodclass_name LIKE CONCAT('%', search_term, '%');
       END$$

CREATE  PROCEDURE `staffNameListOfStore` (IN `storeid` INT)   BEGIN
IF storeid>1 THEN
SELECT s.staff_id,s.staff_name,s.staff_branch,u.user_id,u.user_checkid FROM staff_tbl s
LEFT JOIN users_tbl u ON u.user_staffid=s.staff_id
WHERE storeid=s.staff_branch;
ELSE
 SELECT s.staff_id,s.staff_name,s.staff_branch,u.user_id,u.user_checkid FROM staff_tbl s
LEFT JOIN users_tbl u ON u.user_staffid=s.staff_id;
END IF;
END$$

CREATE  PROCEDURE `startQuickOrderwithPrescription` (IN `custmrid` INT, IN `orderno` VARCHAR(20))   BEGIN
DECLARE ordid ,delvid INT DEFAULT 0;

SELECT d.delivery_id into delvid FROM delivery_address d WHERE d.delivery_user=custmrid AND  d.delivery_status=1 AND d.delivery_active=1;
 /* insert into order table Table */
  INSERT INTO orders_tbl(order_customer,order_deliverId,order_orderid,order_prescription,order_quick,order_updby, order_updon) VALUES(custmrid,delvid,orderno,1,1,1,CURRENT_TIMESTAMP);
     SET ordid = LAST_INSERT_ID();    
    SELECT ordid, c.customer_phone as phone FROM customers_tbl c WHERE c.customer_id=custmrid;
END$$

CREATE  PROCEDURE `SupplierWiseItemPurc` (IN `storeid` INT, IN `fromdate` DATE, IN `todate` DATE)   BEGIN
SELECT i.invoice_id, i.invoice_number, i.invoice_vendertype, i.invoice_vendor, i.invoice_vendorgst, i.invoice_delstore, s.store_name, i.invoice_delgst, i.invoice_dated, i.invoice_amount, i.invoice_cgst, i.invoice_sgst, id.invdet_porder, po.purchord_ref, 'Registered' AS gst_type,pp.prodpack_hsn,pp.prodpack_taxgroup, id.invdet_item,fnGetProductFromPack(id.invdet_item, 1) AS item, p.product_manufacturer, m.manuf_name, id.invdet_batch, id.invdet_expiry, id.invdet_qty, id.invdet_mrp, id.invdet_ptr, id.invdet_crtdby, u.user_staffname, 'Non-DC Purchase' as purchase_type FROM invoices_tbl i LEFT JOIN invoice_details id ON id.invdet_invoice=i.invoice_id LEFT JOIN stores_tbl s ON s.store_id= i.invoice_delstore LEFT JOIN purchase_orders po ON po.purchord_id=id.invdet_porder LEFT JOIN product_packing pp ON pp.prodpack_id = id.invdet_item LEFT JOIN products_tbl p ON p.product_id = pp.prodpack_product LEFT JOIN manufacturers_tbl m ON m.manuf_id=p.product_manufacturer LEFT JOIN users_tbl u ON u.user_id=i.invoice_crtdby
WHERE i.invoice_delstore=storeid AND i.invoice_dated BETWEEN fromdate AND todate;
END$$

CREATE  PROCEDURE `testsubdis` (IN `distrbs` VARCHAR(255))   BEGIN
	DECLARE distid INT DEFAULT 0;
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
        /* add as sub-distributor if not empty */
        subiterator:
        LOOP
        	IF LENGTH(TRIM(distrbs)) = 0 OR distrbs IS NULL THEN
            	LEAVE subiterator;
            END IF;
            SET front = SUBSTRING_INDEX(distrbs, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO subdistributors_tbl ( 
                subdistri_distributor, subdistri_parent, subdistri_crtdby ) 
            VALUES (105, tempVal, 19);
            SET distrbs = INSERT(distrbs, 1, frontlen + 1, '');
        END LOOP;
       
END$$

CREATE  PROCEDURE `truncatebulktables` ()   BEGIN
SET FOREIGN_KEY_CHECKS = 0;
truncate TABLE addoninvoice;
TRUNCATE TABLE brands_tbl;
truncate TABLE intends_tbl;
truncate TABLE intend_allocations;
truncate TABLE intend_allocation_items;
truncate TABLE intend_details;
truncate TABLE invoices_tbl;
truncate TABLE invoice_details;
truncate TABLE invoice_files;
truncate TABLE purchasereturnfiles_tbl;
truncate TABLE purchasereturn_details;
truncate TABLE purchasereturn_tbl;
truncate TABLE purchase_details;
truncate TABLE purchase_orders;
truncate TABLE stocktransfer_details;
truncate TABLE stock_inwards;
truncate TABLE stock_master;
truncate TABLE stock_transfers;
truncate TABLE storestock_master;
truncate TABLE storestock_pricing;
truncate TABLE stockists_tbl;
truncate TABLE stockist_products;
truncate TABLE stockin_expenses;
truncate TABLE transferpack_items;
truncate TABLE transfer_packets;
truncate TABLE salesreturn_tbl;
truncate TABLE salesretitem_tbl;
truncate TABLE bill_items;
truncate TABLE bills_table;
truncate TABLE bills_setup;
truncate TABLE billstock_tbl;
truncate TABLE distributor_products;
truncate TABLE distributor_manufacturers;
truncate TABLE distributors_tbl;
truncate TABLE dealer_products;
truncate TABLE dealers_tbl;
truncate TABLE stockin_expenses;
truncate TABLE vendor_supplies;
truncate TABLE product_packing;
truncate TABLE product_ingredients;
truncate TABLE product_gallery;
            SET FOREIGN_KEY_CHECKS = 1;
END$$

CREATE  PROCEDURE `updateAdvertisments` (IN `advtid` INT, IN `adtype` INT, IN `adtitle` VARCHAR(255), IN `adowner` VARCHAR(255), IN `admaincat` INT, IN `adsubcat` INT, IN `adcat` INT, IN `adprdct` INT, IN `adimage` VARCHAR(255), IN `adurl` TEXT, IN `fromdate` DATE, IN `todate` DATE, IN `adstatus` INT, IN `adpublish` INT, IN `adoffers` INT, IN `adnote` TEXT, IN `homepagestat` INT, IN `maincatstat` INT, IN `subcatstat` INT, IN `catstat` INT, IN `adminid` INT, IN `adbrand` INT)   BEGIN
	
    UPDATE advertisements_tbl SET advt_type=adtype,advt_title=adtitle,advt_owner=adowner,advt_brand=adbrand,advt_datefrom=fromdate,advt_dateto=todate,advt_products=adprdct,advt_maincategories=admaincat,advt_subcategories=adsubcat,advt_catgory=adcat,advt_content=adnote,advt_image=adimage,advt_linkedurl=adurl,advt_publish=adpublish,advt_status=adstatus,advt_offer=adoffers,
   advt_hompagestatus=homepagestat,advt_maincatstatus=maincatstat,advt_subcatstatus=subcatstat,advt_catstatus=catstat, advt_uptdby=adminid,advt_updton=CURRENT_TIMESTAMP()  WHERE advt_id=advtid;
END$$

CREATE  PROCEDURE `updateBrand` (IN `brandid` INT, IN `brand` VARCHAR(100), IN `logo` VARCHAR(255), IN `owner` TEXT, IN `remarks` TEXT, IN `bstatus` INT, IN `publish` INT, IN `adminid` INT)   BEGIN
	IF TRIM(logo) = '' THEN
    	UPDATE brands_tbl 
    	SET brand_name = brand,  
    	brand_remarks = remarks, brand_status = bstatus, 
    	brand_publish = publish, brand_updby = adminid 
    	WHERE brand_id = brandid;
    ELSE
		UPDATE brands_tbl 
    	SET brand_name = brand, brand_logo = logo, 
    	brand_remarks = remarks, brand_status = bstatus, 
    	brand_publish = publish, brand_updby = adminid 
    	WHERE brand_id = brandid;
   	END IF;
  
DELETE FROM `brand_manufacturer_tbl` WHERE `brnd_id`=brandid;

INSERT IGNORE INTO brand_manufacturer_tbl (brnd_id, brndmanu_id)
SELECT brandid, b.manuf_id
FROM manufacturers_tbl b
WHERE FIND_IN_SET(b.manuf_id, owner);
END$$

CREATE  PROCEDURE `updateBrandDuplicate` (IN `brandName` VARCHAR(225), IN `setval` INT)   BEGIN
UPDATE products_tbl p
JOIN brands_tbl b
    ON p.product_brand = b.brand_id
SET p.product_brand = setval
WHERE b.brand_name = brandName
  AND b.brand_id != setval;

UPDATE brands_tbl b SET b.brand_status=0 WHERE b.brand_name = brandName
  AND b.brand_id != setval;

SELECT MIN(brand_id) AS brand_id, brand_name FROM brands_tbl WHERE brand_status = 1 GROUP BY brand_name HAVING COUNT(*) > 1 LIMIT 1;

END$$

CREATE  PROCEDURE `updateBrandDuplicatebyLimit` ()   BEGIN
INSERT IGNORE INTO brand_manufacturer_tbl (brnd_id, brndmanu_id)
SELECT brand_id, brand_owner
FROM brands_tbl
WHERE brand_duplicate = 0
AND brand_name IN (
    SELECT brand_name
    FROM (
        SELECT brand_name
        FROM brands_tbl
        WHERE brand_duplicate = 0
        GROUP BY brand_name
        HAVING COUNT(*) = 1
        ORDER BY brand_name
        LIMIT 10
    ) t
);

UPDATE brands_tbl
SET brand_duplicate = 1
WHERE brand_duplicate = 0
AND brand_name IN (
    SELECT brand_name
    FROM (
        SELECT brand_name
        FROM brands_tbl
        WHERE brand_duplicate = 0
        GROUP BY brand_name
        HAVING COUNT(*) = 1
        ORDER BY brand_name
        LIMIT 10
    ) t
);
END$$

CREATE  PROCEDURE `updateBrandManufactureDuplicate` (IN `brandName` VARCHAR(225), IN `setval` INT)   BEGIN
UPDATE products_tbl p
JOIN brands_tbl b
    ON p.product_brand = b.brand_id
SET p.product_brand = setval
WHERE b.brand_name = brandName
  AND b.brand_id != setval;

UPDATE brands_tbl b SET b.brand_status=0 WHERE b.brand_name = brandName
  AND b.brand_id != setval;
  
  UPDATE brands_tbl b SET b.brand_duplicate=1 WHERE b.brand_name = brandName;
  
INSERT IGNORE INTO brand_manufacturer_tbl (brnd_id, brndmanu_id)
SELECT setval, b.brand_owner
FROM brands_tbl b
WHERE b.brand_name = brandName;

SELECT MIN(brand_id) AS brand_id, brand_name FROM brands_tbl WHERE  brand_duplicate=0 GROUP BY brand_name HAVING COUNT(*) > 1 LIMIT 1;

END$$

CREATE  PROCEDURE `updateBrandofEntryTable` ()   BEGIN
UPDATE products_entry_tbl t1 JOIN products_tbl t2 ON t1.product_id = t2.product_id SET t1.product_brand = t2.product_brand WHERE t1.product_brand <> t2.product_brand AND t1.product_brand!=0 AND t2.product_brand!=0;

SELECT t1.product_id,t1.product_brand,t1.product_name FROM products_entry_tbl t1 WHERE NOT EXISTS ( SELECT 1 FROM products_tbl t2 WHERE t1.product_id = t2.product_id AND t1.product_brand = t2.product_brand AND t2.product_brand!=0 ) and t1.product_brand!=0;
END$$

CREATE  PROCEDURE `updateCourier` (IN `courid` INT, IN `cname` VARCHAR(100), IN `ctype` INT, IN `staffid` INT, IN `mobile` VARCHAR(20), IN `vehicle` VARCHAR(20), IN `regno` VARCHAR(20), IN `contact` VARCHAR(50), IN `address` VARCHAR(255), IN `phones` VARCHAR(50), IN `whatsapp` VARCHAR(20), IN `email` VARCHAR(100), IN `url` VARCHAR(100), IN `gst` VARCHAR(30), IN `tin` VARCHAR(30), IN `notes` TEXT, IN `rates` LONGTEXT, IN `areas` TEXT, IN `collect` TEXT, IN `status` INT, IN `adminid` INT)   BEGIN
	DECLARE success INT DEFAULT 0;

	IF( SELECT COUNT(*) FROM couriers_tbl x 
       	WHERE (x.courier_name = trim(cname) OR x.courier_mobile = trim(mobile)) AND x.courier_id <> courid ) = 0 THEN
    		UPDATE couriers_tbl 
            SET courier_type = ctype, courier_staffid = staffid, courier_name = cname, courier_mobile = mobile, courier_vehicle = vehicle, courier_vehregn = regno, courier_contact = contact, courier_address = address, courier_gst = gst, courier_tin = tin, courier_phones = phones, courier_whatsapp = whatsapp, courier_email = email, courier_url = url, courier_rates = rates, courier_areas = areas, courier_collect = collect, courier_notes = notes, courier_status = status, courier_updby = adminid 
            WHERE courier_id = courid;
            SET success = 1;
	ELSE
    	UPDATE couriers_tbl 
            SET courier_type = ctype, courier_staffid = staffid, courier_vehicle = vehicle, courier_vehregn = regno, courier_contact = contact, courier_address = address, courier_gst = gst, courier_tin = tin, courier_phones = phones, courier_whatsapp = whatsapp, courier_email = email, courier_url = url, courier_rates = rates, courier_areas = areas, courier_collect = collect, courier_notes = notes, courier_status = status, courier_updby = adminid 
            WHERE courier_id = courid;
            SET success = 2;
   	END IF;
    
    SELECT success;
END$$

CREATE  PROCEDURE `updateCourierMovement` (IN `packids` TEXT, IN `flag` INT, IN `courier` INT, IN `notes` TEXT, IN `trnsdata` TEXT)   BEGIN
	DECLARE trackid VARCHAR(20) DEFAULT '';
    DECLARE front, TempValue, alltracks, packets TEXT DEFAULT NULL;
   	DECLARE frontlen INT DEFAULT NULL;
    DECLARE gdnstore INT DEFAULT 0;
	IF flag = 1 THEN   /* Packet collected form the source */
    SET @text := TRIM(BOTH '##' FROM trnsdata);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
            SET @str := SUBSTRING_INDEX(@text, '##', @i);
            SET @strLen := LENGTH(@str);
            SET @i := @i + 1;
            SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
            SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
            SET @strGLen := 0;
            SET @Gi := 1;
            SET @icols := 1;
    		WHILE @strGLen < LENGTH(@GRAPE) DO
                SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                    SET @strids := SUBSTRING_INDEX(@Gstr, '|', -1); /* store_stock_pricing_id */
                ELSEIF @icols = 2 THEN
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 3 THEN
                    SET @storeid := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @trnsitems := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
                SET @icols := @icols + 1;
      		END WHILE;
            #update storestock_pricing and storestock_master
            	#update stock at source store
        	UPDATE storestock_pricing
        	SET strstk_transfer = (strstk_transfer + @qty), strstk_reserved = (strstk_reserved - @qty),
            strstk_stock = (strstk_stock - @qty)
        	WHERE strstk_id = @strids;
               #update stock at source store in stockmaster
          UPDATE storestock_master SET storestock_available=(storestock_available- @qty) ,storestock_reserved=(storestock_reserved - @qty) WHERE storestock_store =@storeid AND storestock_item =@trnsitems;
            END WHILE;
    	SET packets = packids;
    	iterator:
			LOOP
				IF LENGTH(TRIM(packids)) = 0 OR packids IS NULL THEN
					LEAVE iterator;
				END IF;
				SET front = SUBSTRING_INDEX(packids,',',1);
				SET frontlen = LENGTH(front);
				SET TempValue = TRIM(front);
    			SELECT CONCAT(sf.store_code, LEFT(MD5(RAND()), 8), st.store_code) INTO trackid
    			FROM transfer_packets p
    			LEFT JOIN stores_tbl sf ON sf.store_id = p.transpack_from
    			LEFT JOIN stores_tbl st ON st.store_id = p.transpack_to
    			WHERE p.transpack_id = TempValue;
    			SELECT transpack_from INTO gdnstore  FROM transfer_packets WHERE  transpack_id = TempValue;
    			UPDATE transfer_packets
        		SET transpack_status = 5, transpack_collectby = courier, transpack_collecton=CURRENT_TIMESTAMP(), transpack_notes = CONCAT(transpack_notes, '<COURNOTES>', notes, '</COURNOTES>'), transpack_trackid = trackid,transpack_gdn=fnCreateGDNnumber(gdnstore)
        		WHERE transpack_id = TempValue;
        		
                SET packids = INSERT(packids, 1, frontlen + 1, '');
                #SET alltracks = CONCAT(alltracks, ',', trackid);
			END LOOP;
        UPDATE transferpack_items
        SET transferpack_status = 5
        WHERE FIND_IN_SET(transferpack_packet, packets); /*IN(packets);*/
        #SELECT alltracks as TRACK;
        SELECT GROUP_CONCAT(tp.transpack_trackid) AS TRACK
        FROM transfer_packets tp WHERE FIND_IN_SET(tp.transpack_id, packets);
    ELSEIF flag = 2 THEN
    	UPDATE transfer_packets
        SET transpack_status = 10, transpack_deliverby = courier, transpack_deliveron = CURRENT_TIMESTAMP(), transpack_notes = CONCAT(transpack_notes, '<DELNOTES>', notes, '</DELNOTES>')
        WHERE FIND_IN_SET(transpack_id, packids);
        UPDATE transferpack_items
        SET transferpack_status = 10
        WHERE FIND_IN_SET(transferpack_packet, packids);
    END IF;
END$$

CREATE  PROCEDURE `updateDealer` (IN `dealerid` INT, IN `dname` VARCHAR(200), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(50), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT, IN `dealers` VARCHAR(255), IN `products` VARCHAR(255))   BEGIN
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	UPDATE dealers_tbl 
    SET dealer_name = dname, dealer_address = address, dealer_phones = phones, dealer_email = email, dealer_website = website, dealer_contact = contact, dealer_contactno = contactno, dealer_contactemail = conemail, dealer_contactcell = concell, dealer_whatsapp = whatsapp, dealer_contactat = contactat, dealer_regn = regn, dealer_GST = gstnum, dealer_TIN = tin, dealer_remarks = remarks, dealer_status = mstatus, dealer_updby = adminid
	WHERE dealer_id = dealerid;
    
    IF dealerid > 0 THEN
        /* add as sub-dealer if not empty */
        subiterator:
        LOOP
        	IF LENGTH(TRIM(dealers)) = 0 OR dealers IS NULL THEN
            	LEAVE subiterator;
            END IF;
            SET front = SUBSTRING_INDEX(dealers, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO subdealers_tbl ( 
               	subdealer_dealer, subdealer_parent, subdealer_crtdby ) 
            VALUES (dealerid, tempVal, adminid)
			ON DUPLICATE KEY UPDATE subdealer_status = 1, subdealer_updby = adminid;
            SET dealers = INSERT(dealers, 1, frontlen + 1, '');
        END LOOP;
        
        /* add products if not empty */
        proditerator:
        LOOP
        	IF LENGTH(TRIM(products)) = 0 OR products IS NULL THEN
            	LEAVE proditerator;
            END IF;
            SET front = SUBSTRING_INDEX(products, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO dealer_products ( 
                dealerprod_dealer, dealerprod_product, dealerprod_crtdby ) 
            VALUES (dealerid, tempVal, adminid)
			ON DUPLICATE KEY UPDATE dealerprod_status = 1, dealerprod_updby = adminid;
            SET products = INSERT(products, 1, frontlen + 1, '');
        END LOOP;
        
    END IF;
END$$

CREATE  PROCEDURE `updateDistributor` (IN `distrid` INT, IN `dname` VARCHAR(200), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(200), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT, IN `manufs` VARCHAR(255), IN `distrbs` VARCHAR(255), IN `products` VARCHAR(255))   BEGIN
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	UPDATE distributors_tbl  SET
    distri_name = dname, distri_address = address, distri_phones = phones, distri_email = email, distri_website = website, distri_contact = contact, distri_contactno = contactno, distri_contactemail = conemail, distri_contactcell = concell, distri_whatsapp = whatsapp, distri_contactat = contactat, distri_regn = regn, distri_GST = gstnum, distri_TIN = tin, distri_remarks = remarks, distri_status = mstatus, distri_updby = adminid
    WHERE distri_id = distrid;
    
    IF distrid > 0 THEN
    	/* add manufacturers if given */
        iterator:
        LOOP
        	IF LENGTH(TRIM(manufs)) = 0 OR manufs IS NULL THEN
            	LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(manufs, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO distributor_manufacturers( 			 						distrimanu_distributor, distrimanu_company, distrimanu_crtdby) 
            VALUES (distrid, tempVal, adminid)
            ON DUPLICATE KEY UPDATE distrimanu_status = 1, distrimanu_updby = adminid;
            SET manufs = INSERT(manufs, 1, frontlen + 1, '');
        END LOOP;
        
        /* add as sub-distributor if not empty */
        subiterator:
        LOOP
        	IF LENGTH(TRIM(distrbs)) = 0 OR distrbs IS NULL THEN
            	LEAVE subiterator;
            END IF;
            SET front = SUBSTRING_INDEX(distrbs, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO subdistributors_tbl ( 
                subdistri_distributor, subdistri_parent, subdistri_crtdby ) 
            VALUES (distrid, tempVal, adminid)
            ON DUPLICATE KEY UPDATE subdistri_status = 1, subdistri_updby = adminid;
            SET distrbs = INSERT(distrbs, 1, frontlen + 1, '');
        END LOOP;
        
        /* add products if not empty */
        proditerator:
        LOOP
        	IF LENGTH(TRIM(products)) = 0 OR products IS NULL THEN
            	LEAVE proditerator;
            END IF;
            SET front = SUBSTRING_INDEX(products, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO distributor_products ( 
                distriprod_distributor, distriprod_product, distriprod_crtdby ) 
            VALUES (distrid, tempVal, adminid)
            ON DUPLICATE KEY UPDATE distriprod_status = 1, distriprod_updby = adminid;
            SET products = INSERT(products, 1, frontlen + 1, '');
        END LOOP;
        
    END IF;
END$$

CREATE  PROCEDURE `updateDoctor` (IN `docid` INT, IN `dtype` INT, IN `dname` VARCHAR(100), IN `dregno` VARCHAR(50), IN `dmobile` VARCHAR(50), IN `demail` VARCHAR(50), IN `ddegrees` VARCHAR(255), IN `dhospital` VARCHAR(255), IN `dremarks` VARCHAR(255), IN `dphoto` VARCHAR(100), IN `dsignature` VARCHAR(100), IN `ddatefrom` DATE, IN `davailfrom` TIME, IN `ddateto` DATE, IN `davailto` TIME, IN `docstatus` INT, IN `adminid` INT)   BEGIN
UPDATE doctors_tbl SET doctor_type=dtype, doctor_name=dname, doctor_regno=dregno, doctor_mobile=dmobile, doctor_email=demail, doctor_degrees = ddegrees, doctor_hospital = dhospital, doctor_remarks = dremarks, doctor_photo=dphoto, doctor_signature=	dsignature, doctor_datefrom=ddatefrom, doctor_availfrom=davailfrom, doctor_dateto=ddateto, doctor_availto=davailto, doctor_status=docstatus, doctor_updby=adminid, doctor_updon=CURRENT_TIMESTAMP() WHERE doctor_id = docid;

  
END$$

CREATE  PROCEDURE `updateDrugClassification` (IN `drgclsid` INT, IN `drgclass` VARCHAR(150), IN `parent` INT, IN `uses` TEXT, IN `warning` TEXT, IN `precautions` TEXT, IN `howto` TEXT, IN `dosage` TEXT, IN `misdose` TEXT, IN `overdose` TEXT, IN `avoids` TEXT, IN `sideffects` TEXT, IN `interactions` TEXT, IN `remarks` TEXT, IN `dstatus` INT, IN `adminid` INT)   BEGIN
	DECLARE isStatus INT DEFAULT 1;
    DECLARE pcount INT DEFAULT 0;
    
    IF dstatus = 0 THEN
    	SELECT COUNT(drugclass_id) INTO pcount 
        FROM drug_classifications k 
        WHERE k.drugclass_parent = drgclsid;
        IF pcount = 0 THEN
        	SET isStatus = 0;
        END IF;
    END IF;
    
	UPDATE drug_classifications SET
    drugclass_name = drgclass, drugclass_parent = parent, drugclass_details = remarks, drugclass_uses = uses, drugclass_warnings = warning, drugclass_precautions = precautions, drugclass_procedure = howto, drugclass_dosage = dosage, drugclass_missdose = misdose, drugclass_overdose = overdose, drugclass_avoids = avoids, drugclass_sideffects = sideffects, drugclass_interactions = interactions, drugclass_status = isStatus, drugclass_updby = adminid 
    WHERE drugclass_id = drgclsid;
    
    CALL reworkDrugSequence(drgclsid);
END$$

CREATE  PROCEDURE `updateGalleryItem` (IN `galid` INT, IN `placedat` INT, IN `url` VARCHAR(100), IN `medm` INT, IN `heading` VARCHAR(255), IN `title` VARCHAR(255), IN `alt` VARCHAR(255), IN `descr` VARCHAR(255), IN `serial` INT, IN `publish` INT, IN `gstatus` INT, IN `adminid` INT)   BEGIN
	update product_gallery set prodgal_url = url, prodgal_placedat = placedat, prodgal_medium = medm, prodgal_heading = heading, prodgal_descr = descr, prodgal_title = title, prodgal_alt = alt, prodgal_serial = serial, prodgal_publish = publish, prodgal_status = gstatus, prodgal_updby = adminid WHERE prodgal_id = galid;
END$$

CREATE  PROCEDURE `updateGallerySerial` (IN `series` VARCHAR(255))   BEGIN
	DECLARE _next TEXT DEFAULT NULL;
	DECLARE _nextlen INT DEFAULT NULL;
	DECLARE _value TEXT DEFAULT NULL;
    DECLARE cntr INT DEFAULT 1;
    
    iterator:
	LOOP
    	IF CHAR_LENGTH(TRIM(series)) = 0 OR series IS NULL THEN
    		LEAVE iterator;
  		END IF;
        SET _next = SUBSTRING_INDEX(series, ',', 1);
        SET _nextlen = CHAR_LENGTH(_next);
        SET _value = TRIM(_next);
        UPDATE product_gallery SET prodgal_serial = cntr 
        WHERE prodgal_id = _value;
        SET cntr = cntr + 1;
        SET series = INSERT(series, 1, _nextlen + 1, '');
    END LOOP;
END$$

CREATE  PROCEDURE `updateGenericMedicine` (IN `medid` INT, IN `medicine` VARCHAR(255), IN `uses` TEXT, IN `working` TEXT, IN `sideffects` TEXT, IN `notes` TEXT, IN `mstatus` INT, IN `adminid` INT)   BEGIN
	IF TRIM(medicine) <> '' THEN
    	UPDATE generic_medicines 
        SET genmed_name = medicine, genmed_uses = uses, genmed_working = working, genmed_sideffects = sideffects, genmed_remarks = notes, genmed_status = mstatus, genmed_updby = adminid 
        WHERE genmed_id = medid;
    END IF;
END$$

CREATE  PROCEDURE `updateHomeDelioveryData` (IN `iconval` INT, IN `billid` INT)   BEGIN
IF iconval=1 THEN
UPDATE homedelivery_tbl t SET t.payment_status=1 where t.bill_id =billid;

ELSEIF iconval=2 THEN
UPDATE homedelivery_tbl t SET t.status=1 where t.bill_id =billid ;

END IF ;
END$$

CREATE  PROCEDURE `updateIngredient` (IN `ingrid` INT, IN `ingred` VARCHAR(200), IN `itype` INT, IN `formula` VARCHAR(100), IN `bankid` VARCHAR(20), IN `atccode` VARCHAR(100), IN `isactive` INT, IN `drclass` VARCHAR(100), IN `notes` TEXT, IN `istatus` INT, IN `admin` INT)   BEGIN
	UPDATE ingredients_tbl SET
    ingred_name = ingred, ingred_type = itype, ingred_formula = formula, ingred_drugbankid = bankid, ingred_codes = atccode, ingred_isactive = isactive, ingred_drugclasses = drclass, ingred_notes = notes, ingred_status = istatus, ingred_updby = admin 
    WHERE ingred_id = ingrid;
END$$

CREATE  PROCEDURE `updateInvoice` (IN `invid` INT, IN `invno` VARCHAR(50), IN `invdated` DATE, IN `ventype` INT, IN `venid` INT, IN `total` DECIMAL(10,2), IN `cst` DECIMAL(8,2), IN `gst` DECIMAL(8,2), IN `invdetails` TEXT, IN `notes` TEXT, IN `adminid` INT)   BEGIN
    DECLARE EXIT HANDLER FOR SQLEXCEPTION
    BEGIN
    	ROLLBACK;
    END; 
    
    START TRANSACTION;
	UPDATE invoices_tbl SET invoice_number = invno, invoice_dated = invdated, invoice_vendertype = ventype, invoice_vendor = venid, invoice_amount = total, invoice_cgst = cst, invoice_sgst = gst, invoice_notes = notes, invoice_updby = adminid WHERE invoice_id = invid;

	DELETE FROM invoice_details WHERE invdet_invoice = invid;

	SET @text := TRIM(BOTH '##' FROM invdetails);
	SET @strLen := 0;
	SET @i := 1;
    
	WHILE @strLen < LENGTH(@text) DO
		SET @str := SUBSTRING_INDEX(@text, '##', @i);
		SET @strLen := LENGTH(@str);
		SET @i := @i + 1;
		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
		SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
		SET @strGLen := 0;
		SET @Gi := 1;
		SET @icols := 1;

		WHILE @strGLen < LENGTH(@GRAPE) DO
			SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
			SET @strGLen := LENGTH(@Gstr);
			SET @Gi := @Gi + 1;
			IF @icols = 1 THEN
				SET @pord := SUBSTRING_INDEX(@Gstr, '|', -1);
			ELSEIF @icols = 2 THEN
				SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
			ELSEIF @icols = 3 THEN
				SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
			ELSEIF @icols = 4 THEN
				SET @price := SUBSTRING_INDEX(@Gstr, '|', -1);
			ELSEIF @icols = 5 THEN
               	SET @cstpc := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 6 THEN
               	SET @cst := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 7 THEN
               	SET @sstpc := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 8 THEN
               	SET @sst := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 9 THEN
               	SET @delat := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 10 THEN    
              	SET @mrp := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 11 THEN    
               	SET @free := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 12 THEN    
               	SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 13 THEN    
               	SET @ptr := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 14 THEN    
              	SET @taxamt := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 15 THEN    
               	SET @discpc := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 16 THEN    
               	SET @disct := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 17 THEN    
               	SET @batch := SUBSTRING_INDEX(@Gstr, '|', -1);
            ELSEIF @icols = 18 THEN 
               	SET @expiry := SUBSTRING_INDEX(@Gstr, '|', -1);
             ELSE
               	SET @schdisc := SUBSTRING_INDEX(@Gstr, '|', -1);
            END IF;
			SET @icols := @icols + 1;
		END WHILE;
		INSERT INTO invoice_details( invdet_invoice, invdet_porder, invdet_item, invdet_qty, invdet_price, invdet_cstpc, invdet_cst, invdet_sstpc, invdet_sst, invdet_delivered, invdet_mrp, invdet_free,invdet_schdisc, invdet_hsn, invdet_ptr, invdet_taxamt, invdet_discpc, invdet_discount, invdet_batch, invdet_expiry ) 
        VALUES( invid, @pord, @item, @qty, @price, @cstpc, @cst, @sstpc, @sst, @delat, @mrp, @free,@schdisc, @hsn, @ptr, @taxamt, @discpc, @disct, @batch, @expiry );
	END WHILE;
 	COMMIT;
END$$

CREATE  PROCEDURE `updateInvoiceItem` (IN `invdetid` INT, IN `invitem` INT, IN `qty` INT, IN `price` DECIMAL(9,2), IN `schdisc` DECIMAL(5,2), IN `cstpc` DECIMAL(5,2), IN `cst` DECIMAL(8,2), IN `sstpc` DECIMAL(5,2), IN `sst` DECIMAL(8,2), IN `delat` INT, IN `mrp` DECIMAL(9,2), IN `frees` INT, IN `hsn` BIGINT, IN `ptr` DECIMAL(9,2), IN `taxamt` DECIMAL(9,2), IN `discpc` DECIMAL(5,2), IN `disct` DECIMAL(9,2), IN `batch` VARCHAR(20), IN `expiry` DATE, IN `adminid` INT)   BEGIN
	UPDATE invoice_details SET invdet_qty = qty, invdet_price = price, invdet_schdisc=schdisc, invdet_cstpc = cstpc, invdet_cst = cst, invdet_sstpc = sstpc, invdet_sst = sst, invdet_delivered = delat, invdet_mrp = mrp, invdet_free = frees, invdet_hsn = hsn, invdet_ptr = ptr, invdet_taxamt = taxamt, invdet_discpc = discpc, invdet_discount = disct, invdet_batch = batch, invdet_expiry = expiry, invdet_updby = adminid
    WHERE invdet_id = invdetid;
END$$

CREATE  PROCEDURE `updateLocation` (IN `locid` INT, IN `location` VARCHAR(100), IN `pin` VARCHAR(10), IN `country` VARCHAR(3), IN `state` VARCHAR(20), IN `district` INT, IN `remarks` TEXT, IN `dstatus` INT, IN `adminid` INT)   BEGIN

	/* IF( SELECT COUNT(*) FROM delivery_areas WHERE TRIM(delarea_location) = TRIM(location) ) = 0 THEN */
		UPDATE delivery_areas SET delarea_location = location, delarea_pincode = pin, delarea_country = country, delarea_province = state, delarea_district = district, delarea_remarks = remarks, delarea_status = dstatus, delarea_updby = adminid WHERE delarea_id = locid;
    /* END IF; */
    
END$$

CREATE  PROCEDURE `updateManufacturer` (IN `manufid` INT, IN `mname` VARCHAR(200), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(50), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT, IN `mcodes` VARCHAR(20))   BEGIN
	UPDATE manufacturers_tbl 
    SET manuf_name = mname, manuf_address = address, manuf_phones = phones, manuf_email = email, manuf_website = website, manuf_contact = contact, manuf_contactno = contactno, manuf_contactemail = conemail, manuf_contactcell = concell, manuf_whatsapp = whatsapp, manuf_contactat = contactat, manuf_regn = regn, manuf_remarks = remarks, manuf_status = mstatus, manuf_updby = adminid,manuf_code=mcodes
    WHERE manuf_id = manufid;
END$$

CREATE  PROCEDURE `updateOfOrderDatas` (IN `ord_id` INT, IN `track_id` VARCHAR(30), IN `del_status` INT, IN `finalship` INT, IN `shipped_date` DATETIME, IN `remarks` TEXT, IN `secretid` INT, IN `del_date` DATETIME)   BEGIN
DECLARE adminid int DEFAULT 0;
SELECT u.user_id INTO adminid FROM users_tbl u WHERE u.user_checkid=secretid;
UPDATE orders_tbl SET order_trackid=track_id ,order_delivery=del_status,order_finalshipby=finalship ,orders_shipped=shipped_date ,orders_delivered=del_date,order_remarks=remarks,order_updby=adminid,order_updon=CURRENT_TIMESTAMP() WHERE order_id =ord_id;
END$$

CREATE  PROCEDURE `updateOrderDetailsperItems` (IN `orderid` INT, IN `strstkid` INT, IN `itemsid` INT, IN `delstatus` INT)   BEGIN
UPDATE order_details SET ordet_active=delstatus WHERE ordet_order=orderid AND ordet_producpackid=itemsid AND order_batchid=strstkid ;
IF delstatus=2 THEN
UPDATE order_details SET order_prdate=CURRENT_TIMESTAMP() WHERE ordet_order=orderid AND ordet_producpackid=itemsid AND order_batchid=strstkid ;
ELSEIF delstatus=3 THEN
UPDATE order_details SET order_shipped=CURRENT_TIMESTAMP() WHERE ordet_order=orderid AND ordet_producpackid=itemsid AND order_batchid=strstkid ;
ELSEIF delstatus=4 THEN
UPDATE order_details SET order_delivered=CURRENT_TIMESTAMP() WHERE ordet_order=orderid AND ordet_producpackid=itemsid AND order_batchid=strstkid ;
ELSEIF delstatus=5 THEN
UPDATE order_details SET order_cancelled=CURRENT_TIMESTAMP() WHERE ordet_order=orderid AND ordet_producpackid=itemsid AND order_batchid=strstkid ;
ELSEIF delstatus=6 THEN
UPDATE order_details SET order_refund=CURRENT_TIMESTAMP() WHERE ordet_order=orderid AND ordet_producpackid=itemsid AND order_batchid=strstkid ;
END IF;
END$$

CREATE  PROCEDURE `updatePackingForDataEntry` (IN `ids` INT, IN `type` INT, IN `qty` DECIMAL(10,2), IN `unit` INT, IN `maxqty` INT, IN `minqty` INT, IN `roq` INT, IN `hsn` VARCHAR(10), IN `taxgrp` DECIMAL(5,2))   BEGIN

UPDATE product_packing SET prodpack_package=type,prodpack_quantity=qty,prodpack_unit=unit,prodpack_maxstock=maxqty,prodpack_minstock=minqty,prodpack_roq=roq,prodpack_hsn=hsn, prodpack_taxgroup=taxgrp WHERE prodpack_id=ids;

END$$

CREATE  PROCEDURE `updatePackingSale` (IN `sale` INT, IN `packid` INT, IN `adminid` INT)   BEGIN
UPDATE packing_tbl  SET packing_sale=sale , packing_updby=adminid WHERE packing_id=packid;
END$$

CREATE  PROCEDURE `updateProduct` (IN `pid` INT, IN `pname` VARCHAR(255), IN `display` VARCHAR(255), IN `generic` INT, IN `maincat` INT, IN `subcat` INT, IN `categ` INT, IN `manuf` INT, IN `brand` INT, IN `drugmain` INT, IN `drugsub` INT, IN `drugclass` INT, IN `clasfd` INT, IN `prescrp` INT, IN `highlights` TEXT, IN `inform` TEXT, IN `working` TEXT, IN `howto` TEXT, IN `benefits` TEXT, IN `specs` TEXT, IN `features` TEXT, IN `usge` TEXT, IN `caution` TEXT, IN `warns` TEXT, IN `effects` TEXT, IN `antidot` TEXT, IN `interact` TEXT, IN `publish` INT, IN `sale` INT, IN `onlne` INT, IN `featured` INT, IN `popular` INT, IN `ingreds` TEXT, IN `dossage` VARCHAR(255), IN `taxgrp` INT, IN `schedule_id` INT, IN `pstatus` INT, IN `approved` VARCHAR(200), IN `pcontent` INT, IN `adminid` INT)   BEGIN
   UPDATE products_tbl SET product_name = pname, product_display = display,product_generic = generic, product_maincategory = maincat, product_subcategory = subcat, product_category = categ, product_manufacturer = manuf, product_brand = brand, product_drugmainclass = drugmain, product_drugsubclass = drugsub, product_drugclass = drugclass, product_classified = clasfd, product_prescrption = prescrp, product_highlights = highlights, product_information = inform, product_working = working, product_howto = howto, product_benefits = benefits, product_specifications = specs, product_features = features, product_usage = usge, product_precautions = caution, product_warnings = warns, product_sideffects = effects, product_antidot = antidot, product_interactions = interact, product_publish = publish, product_sale = sale, product_online = onlne, product_featured = featured, product_popular = popular, product_taxgroup = taxgrp, product_updby = adminid, product_status = CASE WHEN approved='45,13,34' THEN 1 ELSE 0 END , product_schedule = schedule_id, product_approve=approved, product_pcontent=pcontent WHERE product_id = pid;
   
   IF pid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM ingreds);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
  
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
    
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     
     SET @icols := 1;
     
     WHILE @strGLen < LENGTH(@GRAPE) DO
     
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
     
        IF @icols = 1 THEN
        	SET @ingrd := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 2 THEN
            SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @unt := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        
        SET @icols := @icols + 1;
        
     END WHILE;

	 INSERT INTO product_ingredients( prodingred_product, prodingred_ingredient, prodingred_quantity, prodingred_unit, prodingred_crtdby ) 
     VALUES( pid, @ingrd, @qty, @unt, adminid )
     ON DUPLICATE KEY UPDATE prodingred_status = 1, prodingred_updby = adminid;
  END WHILE;
  
    /* packaging details */
    SET @text := TRIM(BOTH '##' FROM dossage);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
  
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
    
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     
     SET @icols := 1;
     
     WHILE @strGLen < LENGTH(@GRAPE) DO
     
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
     
        IF @icols = 1 THEN
        	SET @packid := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 2 THEN
            SET @pqty := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 3 THEN
            SET @punit := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 4 THEN
            SET @stkmin := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 5 THEN
            SET @stkmax := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 6 THEN
            SET @roq := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 7 THEN
            SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @tax := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        
        SET @icols := @icols + 1;
        
     END WHILE;

	 INSERT INTO product_packing( prodpack_product, prodpack_package, prodpack_quantity, prodpack_unit, prodpack_maxstock, prodpack_minstock, prodpack_roq, prodpack_hsn, prodpack_taxgroup, prodpack_crtdby ) 
     VALUES( pid, @packid, @pqty, @punit, @stkmax, @stkmin, @roq, @hsn, @tax, adminid )
     ON DUPLICATE KEY UPDATE prodpack_status = 1, prodpack_updby = adminid;
  END WHILE;
    
    END IF;
END$$

CREATE  PROCEDURE `updateProductClassDetails` (IN `prclsid` INT, IN `parent` INT, IN `serial` INT, IN `pstatus` INT, IN `adminid` INT, IN `thumb` VARCHAR(100))   BEGIN
	IF trim(thumb) = '' THEN
		UPDATE product_classes 
    	SET prodclass_parent = parent, prodclass_serial = serial, prodclass_status = pstatus, prodclass_updby = adminid 
    	WHERE prodclass_id = prclsid;
   	ELSE
    	UPDATE product_classes 
    	SET prodclass_parent = parent, prodclass_serial = serial, prodclass_status = pstatus, prodclass_updby = adminid, prodclass_thumb = thumb
    	WHERE prodclass_id = prclsid;
    END IF;
    CALL reworkProductClassSequence(prclsid);
END$$

CREATE  PROCEDURE `updateProductClassThumb` (IN `prclsid` INT, IN `adminid` INT, IN `thumb` VARCHAR(100))   BEGIN
	IF trim(thumb) <> '' THEN
		UPDATE product_classes p
    	SET p.prodclass_updby = adminid, p.prodclass_thumb = thumb
    	WHERE p.prodclass_id = prclsid;
    END IF;
END$$

CREATE  PROCEDURE `updateProductEntryDatas` (IN `pid` INT, IN `pname` VARCHAR(255), IN `generic` INT, IN `maincat` INT, IN `subcat` INT, IN `categ` INT, IN `manuf` INT, IN `brand` INT, IN `drugmain` INT, IN `drugsub` INT, IN `drugclass` INT, IN `clasfd` INT, IN `prescrp` INT, IN `highlights` TEXT, IN `inform` TEXT, IN `working` TEXT, IN `howto` TEXT, IN `benefits` TEXT, IN `specs` TEXT, IN `features` TEXT, IN `usge` TEXT, IN `caution` TEXT, IN `warns` TEXT, IN `effects` TEXT, IN `antidot` TEXT, IN `interact` TEXT, IN `ingreds` TEXT, IN `dossage` VARCHAR(255), IN `taxgrp` INT, IN `pcontent` INT, IN `adminid` INT)   BEGIN
   UPDATE products_entry_tbl SET product_name = pname,product_generic = generic, product_maincategory = maincat, product_subcategory = subcat, product_category = categ, product_manufacturer = manuf, product_brand = brand, product_drugmainclass = drugmain, product_drugsubclass = drugsub, product_drugclass = drugclass, product_classified = clasfd, product_prescrption = prescrp, product_highlights = highlights, product_information = inform, product_working = working, product_howto = howto, product_benefits = benefits, product_specifications = specs, product_features = features, product_usage = usge, product_precautions = caution, product_warnings = warns, product_sideffects = effects, product_antidot = antidot, product_interactions = interact, product_taxgroup = taxgrp, product_updby = adminid, product_pcontent=pcontent,product_entry_status=1 WHERE product_id = pid;
   
   INSERT IGNORE INTO `brand_manufacturer_tbl`( `brnd_id`, `brndmanu_id`) VALUES (brand,manuf);
   
   IF pid > 0 THEN
    	SET @text := TRIM(BOTH '##' FROM ingreds);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
  
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
    
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     
     SET @icols := 1;
     
     WHILE @strGLen < LENGTH(@GRAPE) DO
     
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
     
        IF @icols = 1 THEN
        	SET @ingrd := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 2 THEN
            SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @unt := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        
        SET @icols := @icols + 1;
        
     END WHILE;

	 INSERT INTO product_ingredients( prodingred_product, prodingred_ingredient, prodingred_quantity, prodingred_unit, prodingred_crtdby ) 
     VALUES( pid, @ingrd, @qty, @unt, adminid )
     ON DUPLICATE KEY UPDATE prodingred_status = 1, prodingred_updby = adminid;
  END WHILE;
  
    /* packaging details */
    SET @text := TRIM(BOTH '##' FROM dossage);
  SET @strLen := 0;
  SET @i := 1;
  WHILE @strLen < LENGTH(@text) DO
  
    SET @str := SUBSTRING_INDEX(@text, '##', @i);
    SET @strLen := LENGTH(@str);
    SET @i := @i + 1;
    
    SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
    
     SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 SET @strGLen := 0;
     SET @Gi := 1;
     
     SET @icols := 1;
     
     WHILE @strGLen < LENGTH(@GRAPE) DO
     
        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        SET @strGLen := LENGTH(@Gstr);
        SET @Gi := @Gi + 1;
     
        IF @icols = 1 THEN
        	SET @packid := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 2 THEN
            SET @pqty := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 3 THEN
            SET @punit := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 4 THEN
            SET @stkmin := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 5 THEN
            SET @stkmax := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 6 THEN
            SET @roq := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSEIF @icols = 7 THEN
            SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
        ELSE
            SET @tax := SUBSTRING_INDEX(@Gstr, '|', -1);
        END IF;
        
        SET @icols := @icols + 1;
        
     END WHILE;

	 INSERT INTO product_packing( prodpack_product, prodpack_package, prodpack_quantity, prodpack_unit, prodpack_maxstock, prodpack_minstock, prodpack_roq, prodpack_hsn, prodpack_taxgroup, prodpack_crtdby ) 
     VALUES( pid, @packid, @pqty, @punit, @stkmax, @stkmin, @roq, @hsn, @tax, adminid )
     ON DUPLICATE KEY UPDATE prodpack_status = 1, prodpack_updby = adminid;
  END WHILE;
    
    END IF;
END$$

CREATE  PROCEDURE `updateProgramMenus` (IN `id` INT, IN `menuname` VARCHAR(50), IN `url` VARCHAR(100), IN `icon` VARCHAR(100), IN `serialno` INT, IN `parentid` INT, IN `statusid` INT)   begin

update programs_table p set p.progr_menu = menuname,p.progr_url = url,p.progr_icon = icon, p.progr_serial = serialno,p.progr_parent = parentid,p.progr_status = statusid where p.progr_id = id;

END$$

CREATE  PROCEDURE `updatePromotionDatas` (IN `promoid` INT, IN `promotype` INT, IN `promotitle` VARCHAR(255), IN `promacnt` INT, IN `promodicamnt` DECIMAL(10,0), IN `promodiscper` DECIMAL(10,0), IN `promomax` DECIMAL(10,0), IN `promocount` INT, IN `datefrom` DATE, IN `dateto` DATE, IN `promostatus` INT, IN `publishstatus` INT, IN `promohighlights` INT, IN `adminid` INT)   BEGIN
    UPDATE promotions_tbl SET promo_id=promoid, promo_type=promotype, promo_title=promotitle, promo_account=promacnt, promo_discountamt=promodicamnt,promo_discountpc=promodiscper, promo_max=promomax, promo_count=promocount, promo_datefrom=datefrom, promo_dateto=dateto, promo_status=promostatus, promo_publish=publishstatus, promo_highlights=promohighlights, promo_uptdby=adminid, promo_uptdon=CURRENT_TIMESTAMP() WHERE promo_id=promoid;
END$$

CREATE  PROCEDURE `updatePurchaseOrder` (IN `poid` INT, IN `orderef` VARCHAR(20), IN `ordate` DATE, IN `license` VARCHAR(50), IN `amount` DECIMAL(11,2), IN `ordetails` TEXT, IN `notes` TEXT, IN `approved` INT, IN `issued` INT, IN `pstatus` INT, IN `deliverat` INT, IN `deliverby` DATE, IN `adminid` INT)   BEGIN
	DECLARE aprvd, isud, pitid ,checkid INT DEFAULT 0;
    DECLARE preprdon, aprvdon, issuedon DATE DEFAULT '0000-00-00';
    DECLARE approveddby, issuedby INT DEFAULT 0;
    SELECT x.purchord_aprvdby, x.purchord_issuedby INTO aprvd, isud
    FROM purchase_orders x WHERE x.purchord_id = poid;
    SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid;
    IF approved = 0 AND issued = 0 THEN
    	SET preprdon = CURDATE();
    ELSE
    	IF approved = 1 THEN
    		SET approveddby = checkid;
        	SET aprvdon = CURDATE();
   	 	END IF;
    	IF issued = 1 THEN
    		SET issuedby = checkid;
        	SET issuedon = CURDATE();
    	END IF;
    END IF;
    IF aprvd = 0 AND approved = 0 THEN /* allow edit order */
    	UPDATE purchase_orders SET purchord_ref = orderef, purchord_date = ordate, purchord_amount = amount, purchord_notes = notes, purchord_preprdby = checkid, purchord_updby = checkid, purchord_preprdon = preprdon, purchord_amount = amount, purchord_status = pstatus, purchord_deliverat = deliverat, purchord_deliverby = deliverby, purchord_license = license
    	WHERE purchord_id = poid;
    ELSEIF aprvd = 0 THEN
    	UPDATE purchase_orders SET purchord_aprvdby = approveddby, purchord_aprvdon = aprvdon, purchord_notes = notes, purchord_updby = checkid
        WHERE purchord_id = poid;
    ELSEIF isud = 0 THEN
    	UPDATE purchase_orders SET purchord_notes = notes, purchord_issuedby = issuedby, purchord_issuedon = issuedon, purchord_updby = adminid, purchord_pdfurl = CONCAT(purchord_ref, '.pdf')
    	WHERE purchord_id = poid;
    ELSE
    	UPDATE purchase_orders SET purchord_notes = notes, purchord_updby = checkid
    	WHERE purchord_id = poid;
    END IF;
    IF aprvd = 0 THEN
    	SET @text := TRIM(BOTH '##' FROM ordetails);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                    SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @price := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
            IF (SELECT COUNT(*) FROM purchase_details WHERE podetail_order = poid AND podetail_item = @item) = 0 THEN
     			INSERT INTO purchase_details( podetail_order, podetail_item, podetail_qty, podetail_price )
            	VALUES( poid, @item, @qty, @price );
            ELSE
            	UPDATE purchase_details SET podetail_qty = @qty, podetail_price = @price
                WHERE podetail_order = poid AND podetail_item = @item;
            END IF;
  		END WHILE;
    END IF;
END$$

CREATE  PROCEDURE `updateReturnBillNo` (IN `bill_id` INT, IN `billvalue` VARCHAR(255))   BEGIN
UPDATE purchasereturn_tbl SET returnbill_number=billvalue WHERE returnbill_id =bill_id;

END$$

CREATE  PROCEDURE `updateReturnItemClcollection` (IN `bill_ids` TEXT, IN `flag` INT, IN `courier` INT, IN `notes` TEXT)   BEGIN
    DECLARE front, TempValue, alltracks, billid ,remark TEXT DEFAULT NULL;
    DECLARE frontlen INT DEFAULT NULL;
    DECLARE done BOOLEAN DEFAULT FALSE;
    DECLARE rtid ,stkid, qty ,store,items ,sknrd_id ,count_1,count_0 INT DEFAULT 0;
    DECLARE returnbillnum INT DEFAULT 0;
    DECLARE emp_cursor CURSOR FOR
        SELECT  return_id, return_stcknid, returnitem_qty, return_billnum, return_item, return_store,return_remark
        FROM purchasereturn_details
        WHERE FIND_IN_SET(return_id, bill_ids);
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
    IF flag = 1 THEN
        SET billid = bill_ids;
        iterator: LOOP
            IF LENGTH(TRIM(bill_ids)) = 0 OR bill_ids IS NULL THEN
                LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(bill_ids,',',1);
            SET frontlen = LENGTH(front);
            SET TempValue = TRIM(front);
            OPEN emp_cursor;
            read_loop: LOOP
                FETCH emp_cursor INTO rtid, stkid, qty, returnbillnum, items, store,remark;
                IF done THEN
                    LEAVE read_loop;
                END IF;
                IF rtid = TempValue THEN
                   /* SELECT rtid, stkid, qty, returnbillnum, items, store;*/
                    -- Update storestock_pricing table
                     UPDATE storestock_pricing SET strstk_reserved = (strstk_reserved - qty), strstk_stock = (strstk_stock - qty), strstk_return = (strstk_return + qty) WHERE strstk_id = stkid;
                       -- Update storestock_master table
                    UPDATE storestock_master SET storestock_available = (storestock_available - qty), storestock_reserved = (storestock_reserved - qty) WHERE storestock_item = items AND storestock_store = store;
                    -- Update purchasereturn_details
                    UPDATE purchasereturn_details SET return_courier = courier, returncltn_status = 1, courier_cltdon = CURRENT_TIMESTAMP() WHERE return_id = rtid;
                         SELECT strstk_refer INTO sknrd_id FROM storestock_pricing WHERE strstk_id = stkid;
                IF remark='damage' THEN
                	UPDATE stock_inwards SET  stockin_reserved=(stockin_reserved - qty) WHERE stockin_id=sknrd_id;
                END IF;
                SELECT  COUNT(CASE WHEN returncltn_status = 1 THEN 1 END) , COUNT(CASE WHEN returncltn_status = 0 THEN 1 END)INTO count_1 ,count_0						FROM purchasereturn_details WHERE return_billnum=returnbillnum;
                    -- Update purchasereturn_tbl
                    IF count_1>0 AND count_0=0 THEN
               UPDATE purchasereturn_tbl SET returnbill_status = 5 WHERE returnbill_id = returnbillnum;
               END IF;
                END IF;
            END LOOP;
            CLOSE emp_cursor;
            SET bill_ids = INSERT(bill_ids, 1, frontlen + 1, '');
            SET done = FALSE;
        END LOOP;
    END IF;
END$$

CREATE  PROCEDURE `updateScheduledDiscountDatas` (IN `discid` INT, IN `dated` DATE, IN `storeid` INT, IN `mainitem` TEXT, IN `freeitem` TEXT, IN `notes` TEXT, IN `disstatus` INT, IN `appvdby` INT, IN `secretid` INT)   BEGIN
DECLARE adminid INT DEFAULT 0;
SELECT user_id INTO adminid FROM users_tbl WHERE user_checkid=secretid ;
IF appvdby=0 THEN
UPDATE schedulediscount_tbl  SET dis_date=dated,dis_store=storeid,dis_mainitem=mainitem,dis_freeitem=freeitem,dis_note=notes,dis_status=disstatus,dis_approvedby=0 WHERE dis_id =discid;
ELSE
UPDATE schedulediscount_tbl  SET dis_date=dated,dis_store=storeid,dis_mainitem=mainitem,dis_freeitem=freeitem,dis_note=notes,dis_status=disstatus,dis_approvedby=adminid,dis_approvedon=CURRENT_TIMESTAMP() WHERE dis_id =discid;
END IF;
END$$

CREATE  PROCEDURE `updateStaff` (IN `id` INT, IN `staffname` VARCHAR(100), IN `staffcode` VARCHAR(100), IN `staffbranch` INT, IN `staffdob` DATE, IN `staffgender` TINYINT, IN `staffmobile` VARCHAR(100), IN `staffemail` VARCHAR(100), IN `staffaddress` TEXT, IN `staffstatus` INT, IN `staffimg` VARCHAR(100), IN `staffsign` VARCHAR(100), IN `adminid` INT, IN `username` VARCHAR(100), IN `passwords` VARCHAR(100), IN `programid` INT, IN `programcontains` TEXT, IN `checkid` VARCHAR(100), IN `usertblid` INT)   begin
UPDATE  staff_tbl s set s.staff_name =staffname, s.staff_code = staffcode, s.staff_branch=staffbranch, s.staff_dob = staffdob, s.staff_gender = staffgender,s.staff_mobile = staffmobile, s.staff_email = staffemail, s.staff_address = staffaddress, s.staff_status = staffstatus, s.staff_image= staffimg, s.staff_signature=staffsign, s.staff_updby = adminid WHERE s.staff_id = id;
if(usertblid = 0)THEN
insert into users_tbl(user_login,user_password,user_staffid,user_staffname,user_programid,user_programcontains,user_checkid,user_crtdby) values(username,passwords,id,staffname,programid,programcontains,checkid,adminid);
ELSE
UPDATE users_tbl u set u.user_login = username, u.user_password = passwords, u.user_programid = programid, u.user_programcontains =  programcontains, u.user_checkid=checkid ,u.user_staffname=staffname WHERE u.user_id = usertblid and u.user_staffid = id;
END IF;
END$$

CREATE  PROCEDURE `updateStockist` (IN `stkid` INT, IN `sname` VARCHAR(200), IN `address` VARCHAR(255), IN `phones` VARCHAR(200), IN `email` VARCHAR(50), IN `website` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `remarks` TEXT, IN `mstatus` INT, IN `adminid` INT, IN `manufs` VARCHAR(255), IN `products` VARCHAR(255))   BEGIN
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	UPDATE stockists_tbl SET
    stockist_name = sname, stockist_address = address, stockist_phones = phones, stockist_email = email, stockist_website = website, stockist_contact = contact, stockist_contactno = contactno, stockist_contactemail = conemail, stockist_contactcell = concell, stockist_whatsapp = whatsapp, stockist_contactat = contactat,   stockist_regn = regn, stockist_gst = gstnum, stockist_tin = tin, stockist_remarks = remarks, stockist_status = mstatus, stockist_updby = adminid 
    WHERE stockist_id = stkid;
    
    IF TRIM(manufs) <> '' THEN
    /* add manufacturers if given */
        iterator:
        LOOP
        	IF LENGTH(TRIM(manufs)) = 0 OR manufs IS NULL THEN
            	LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(manufs, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO stockist_manufacturers  (stockmanu_stockist, stockmanu_company , stockmanu_status, stockmanu_crtdby) 
            VALUES (stkid, tempVal,1, adminid)
            ON DUPLICATE KEY UPDATE stockmanu_status = 1, stockmanu_updby = adminid;
            SET manufs = INSERT(manufs, 1, frontlen + 1, '');
        END LOOP;
        /* add products if not empty */
        proditerator:
        LOOP
        	IF LENGTH(TRIM(products)) = 0 OR products IS NULL THEN
            	LEAVE proditerator;
            END IF;
            SET front = SUBSTRING_INDEX(products, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            /*SELECT stkid, tempVal, 1, adminid;*/
            INSERT INTO stockist_products (stockistprod_stockist, stockistprod_product ,stockistprod_status,stockistprod_crtdby) 
            VALUES (stkid, tempVal,1,adminid)
            ON DUPLICATE KEY UPDATE stockistprod_status = 1, stockistprod_updby = adminid;
            SET products = INSERT(products, 1, frontlen + 1, '');
        END LOOP;
    END IF;
END$$

CREATE  PROCEDURE `updateStorage` (IN `strgid` INT, IN `label` VARCHAR(50), IN `type` INT, IN `temp` VARCHAR(50), IN `humidity` VARCHAR(50), IN `secu` VARCHAR(50), IN `volume` INT, IN `size` VARCHAR(50), IN `sload` VARCHAR(50), IN `remarks` TEXT, IN `ststatus` INT, IN `adminid` INT)   BEGIN
UPDATE storage_tbl  SET storage_label = label,storage_type = type, storage_temperature=temp,storage_humidity=humidity,
storage_security=secu, storage_volume=volume, storage_size=size, storage_load=sload, storage_remarks=remarks,storage_status = ststatus,storage_updby=adminid,
storage_updon=CURRENT_TIMESTAMP() WHERE storage_id = strgid;
  END$$

CREATE  PROCEDURE `updateStore` (IN `storeid` INT, IN `stype` INT, IN `sname` VARCHAR(200), IN `address` VARCHAR(255), IN `coords` TEXT, IN `phones` VARCHAR(200), IN `mobile` VARCHAR(50), IN `email` VARCHAR(50), IN `whatsapp` VARCHAR(50), IN `contact` VARCHAR(200), IN `contactno` VARCHAR(200), IN `conemail` VARCHAR(50), IN `concell` VARCHAR(50), IN `conwapp` VARCHAR(50), IN `contactat` VARCHAR(255), IN `regn` VARCHAR(255), IN `gstnum` VARCHAR(50), IN `tin` VARCHAR(50), IN `power` INT, IN `water` INT, IN `remarks` TEXT, IN `dstatus` INT, IN `adminid` INT, IN `delareas` VARCHAR(255), IN `timings` TEXT, IN `scode` VARCHAR(6), IN `license` VARCHAR(50), IN `gstate` INT, IN `pan` VARCHAR(10))   BEGIN
	DECLARE distid INT DEFAULT 0;
    DECLARE front TEXT DEFAULT '';
    DECLARE frontlen INT DEFAULT 0;
    DECLARE tempVal TEXT DEFAULT '';
    
	UPDATE stores_tbl SET 
    store_type = stype, store_name = sname, store_address = address, store_phones = phones, store_mobile = mobile, store_email = email, store_whatsapp = whatsapp, store_contact = contact, store_contactno = contactno, store_contactemail = conemail, store_contactcell = concell, store_contactwapp = conwapp, store_contactat = contactat, store_regn = regn, store_GST = gstnum, store_TIN = tin, store_power = power, store_water = water, store_location = coords, store_remarks = remarks,store_UPDby = adminid, store_status = dstatus, store_code = scode, store_license = license, store_pan = pan, store_taxstate = gstate
    WHERE store_id = storeid;
    	
        /* add/edit delivery areas if not empty */
        iterator:
        LOOP
        	IF LENGTH(TRIM(delareas)) = 0 OR delareas IS NULL THEN
            	LEAVE iterator;
            END IF;
            SET front = SUBSTRING_INDEX(delareas, ',', 1);
            SET frontlen = LENGTH(front);
            SET tempVal = TRIM(front);
            INSERT INTO store_delivery ( 
                strdelv_store, strdelv_area, strdelv_crtdby ) 
            VALUES (storeid, tempVal, adminid)
            ON DUPLICATE KEY UPDATE strdelv_status = 1, strdelv_updby = adminid;
            SET delareas = INSERT(delareas, 1, frontlen + 1, '');
        END LOOP;

		/* remove and update timimgs */
        DELETE FROM store_timings WHERE strtme_store = storeid;
        SET @text := TRIM(BOTH '##' FROM timings);
        SET @strLen := 0;
        SET @i := 1;
        WHILE @strLen < LENGTH(@text) DO
  
            SET @str := SUBSTRING_INDEX(@text, '##', @i);
            SET @strLen := LENGTH(@str);
            SET @i := @i + 1;

            SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);

            SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
            SET @strGLen := 0;
            SET @Gi := 1;
     		SET @icols := 1;
     
     		WHILE @strGLen < LENGTH(@GRAPE) DO
                SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
     
       			IF @icols = 1 THEN
        			SET @day := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
        			SET @sesn := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 3 THEN
        			SET @tfrom := SUBSTRING_INDEX(@Gstr, '|', -1);
        		ELSE
            		SET @tto := SUBSTRING_INDEX(@Gstr, '|', -1);
        		END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
     		
            INSERT INTO store_timings(strtme_store, strtme_day, strtme_session, strtme_from, strtme_to, strtme_crtdby) 
            VALUES( storeid, @day, @sesn,  @tfrom, @tto, adminid );
  		END WHILE;
        
END$$

CREATE  PROCEDURE `updateStoreIntend` (IN `intendid` INT, IN `intend` VARCHAR(50), IN `dated` DATE, IN `tostore` INT, IN `notes` TEXT, IN `ordetails` TEXT, IN `status` INT, IN `adminid` INT)   BEGIN
	DECLARE indstat, apprvd ,checkid INT DEFAULT 0;
    SELECT user_id INTO checkid FROM users_tbl WHERE user_checkid=adminid ;
	SELECT intend_status, intend_apprvedby INTO indstat, apprvd
    FROM intends_tbl WHERE intend_id = intendid;
    IF (indstat = 1 AND apprvd = 0) THEN
      IF status = 0 THEN
      	UPDATE intends_tbl SET intend_updby = checkid, intend_status = 0
        WHERE intend_id = intendid;
      ELSE
		SET @text := TRIM(BOTH '##' FROM ordetails);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
                SET @strGLen := LENGTH(@Gstr);
                SET @Gi := @Gi + 1;
                IF @icols = 1 THEN
                    SET @product := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 2 THEN
                    SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 3 THEN
                    SET @hsn := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSEIF @icols = 4 THEN
                    SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
                ELSE
                    SET @stock := SUBSTRING_INDEX(@Gstr, '|', -1);
                END IF;
        		SET @icols := @icols + 1;
     		END WHILE;
     		INSERT INTO intend_details( intdet_id, intdet_item, intdet_product, intdet_hsn, intdet_quantity, intdet_stock )
            VALUES( intendid, @item, @product, @hsn, @qty, @stock )
            ON DUPLICATE KEY UPDATE intdet_quantity = @qty, intdet_hsn = @hsn, intdet_stock = @stock, intdet_updby = checkid;
  		END WHILE;
        UPDATE intends_tbl SET intend_number = intend, intend_date = dated, intend_notes = notes, intend_updby = checkid, intend_status = 1, intend_to = tostore, intend_items = (SELECT COUNT(*) FROM intend_details WHERE intdet_id = intendid)
        WHERE intend_id = intendid;
      END IF;
	END IF;
END$$

CREATE  PROCEDURE `updateStorePricing` (IN `stockid` INT, IN `msp` DECIMAL(9,2), IN `deal` INT, IN `offer` INT, IN `adminid` INT)   BEGIN
	UPDATE storestock_pricing 
    SET strstk_msp = msp, strstk_dealofday = deal, strstk_offer = offer, strstk_updby = adminid 
    WHERE strstk_id = stockid;
END$$

CREATE  PROCEDURE `updateTempIntendOrders` (IN `retid` INT, IN `oids` TEXT)   BEGIN
	UPDATE temp_intendorders SET ordrefer = retid, 
    ordqty = (SELECT SUM(x.stockorder_quantity) 
              FROM stocktransfer_details x 
              LEFT JOIN stock_inwards y ON y.stockin_id = x.stockorder_item 
              WHERE y.stockin_item = item AND x.stockorder_refer = retid) 
    WHERE FIND_IN_SET(id, oids);
END$$

CREATE  PROCEDURE `updateTempIntendPurchaseOrders` (IN `retid` INT, IN `oids` TEXT)   BEGIN
	UPDATE temp_intendorderss SET ordrefer = retid WHERE FIND_IN_SET(id, oids);
END$$

CREATE  PROCEDURE `updateTransferPacket` (IN `packid` INT, IN `items` TEXT, IN `notes` TEXT, IN `adminid` INT)   BEGIN
	/*DECLARE crstatus INT DEFAULT 0;
    SELECT COUNT(*) INTO crstatus FROM transfer_packets x
    WHERE x.transpack_id = packid AND x.transpack_status > 1;
    IF crstatus = 0 THEN
		DELETE FROM transferpack_items WHERE transferpack_packet = packid;
    	SET @text := TRIM(BOTH '##' FROM items);
  		SET @strLen := 0;
  		SET @i := 1;
  		WHILE @strLen < LENGTH(@text) DO
    		SET @str := SUBSTRING_INDEX(@text, '##', @i);
    		SET @strLen := LENGTH(@str);
    		SET @i := @i + 1;
     		SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
        	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 		SET @strGLen := 0;
     		SET @Gi := 1;
     		SET @icols := 1;
     		WHILE @strGLen < LENGTH(@GRAPE) DO
		        SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
               	SET @strGLen := LENGTH(@Gstr);
               	SET @Gi := @Gi + 1;
               	IF @icols = 1 THEN
               		SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
               	ELSE
                   	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
               	END IF;
       			SET @icols := @icols + 1;
    		END WHILE;
    		INSERT INTO transferpack_items( transferpack_packet, transferpack_item, transferpack_qty, transferpack_packby )
           	VALUES( packid, @item, @qty, adminid )
            ON DUPLICATE KEY UPDATE  transferpack_qty = (transferpack_qty + @qty) ;
  		END WHILE;*/
        UPDATE transfer_packets SET transpack_updby = adminid, transpack_notes = notes,
        transpack_items = (SELECT COUNT(*) FROM transferpack_items WHERE transferpack_packet = packid)
        WHERE transpack_id = packid;
   /* ELSE
    	select 'outside';
    END IF;*/
END$$

CREATE  PROCEDURE `updateUser` (IN `id` INT, IN `login` VARCHAR(100), IN `passwords` VARCHAR(100), IN `staffid` INT, IN `staffname` VARCHAR(100), IN `programid` INT, IN `programcontains` TEXT, IN `statuss` INT, IN `adminid` INT)   begin
update users_tbl u set u.user_login = login, u.user_password = passwords, u.user_staffid = staffid, u.user_staffname = staffname,u.user_programid = programid , u.user_programcontains = programcontains, u.user_status = statuss , u.user_updby = adminid where u.user_id = id;

END$$

CREATE  PROCEDURE `updateUserDetailsbyId` (IN `customer_id` INT, IN `customer_name` VARCHAR(255), IN `customer_email` VARCHAR(255), IN `customer_gender` INT, IN `customer_age` INT)   BEGIN
UPDATE customers_tbl c SET c.customer_name=customer_name, c.customer_email=customer_email, c.customer_gender=customer_gender, c.customer_age=customer_age, c.customer_updby=customer_id WHERE c.customer_id=customer_id AND c.customer_type=1;
END$$

CREATE  PROCEDURE `updateUserProgramRoles` (IN `id` INT, IN `rolename` VARCHAR(50), IN `roleprograms` MEDIUMTEXT, IN `adminid` INT)   begin

UPDATE user_program u  set u.usrprog_name = rolename , u.usrprog_programs = roleprograms , u.usrprog_updby = adminid WHERE u.usrprog_id = id;
update users_tbl ut set ut.user_programcontains = roleprograms WHERE ut.user_programid = id;
END$$

CREATE  PROCEDURE `updateVendorSupply` (IN `vensupid` INT, IN `price` DECIMAL(9,2), IN `minq` INT, IN `maxq` INT, IN `eoq` INT, IN `deldays` INT, IN `notes` VARCHAR(255), IN `vstatus` INT, IN `adminid` INT)   BEGIN
	UPDATE vendor_supplies SET vendsup_price = price, vendsup_minqty = minq, vendsup_maxqty = maxq, vendsup_eoq = eoq, vendsup_deliver = deldays, vendsup_notes = notes, vendsup_status = vstatus, vendsup_updby = adminid 
    WHERE vendsup_id = vensupid;
END$$

CREATE  PROCEDURE `updateViewcart` (IN `qty` INT, IN `packid` INT, IN `stockid` INT, IN `prdid` INT)   BEGIN

    DECLARE qtys, strk,TotalStock INT DEFAULT 0;
    DECLARE mrp, msp, disc DOUBLE DEFAULT 0;
    DECLARE strArray TEXT; 
    SELECT e1.strstk_mrp, e1.strstk_msp, e1.strstk_discount, 
           (e1.strstk_stock - e1.strstk_reserved), e1.strstk_id 
    INTO mrp, msp, disc, qtys, strk 
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = prdid  
      AND e1.strstk_item = packid 
      AND e1.strstk_id = stockid;
      
      /*SELECT GROUP_CONCAT(x.strstk_id) INTO strArray FROM ( SELECT e1.strstk_item, s1.stockin_expiry, e1.strstk_discount AS max_discount, (e1.strstk_stock - e1.strstk_reserved) AS stock_available, e1.strstk_mrp, e1.strstk_msp, e1.strstk_id, e1.strstk_product FROM storestock_pricing e1 JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer WHERE e1.strstk_product = prdid AND (e1.strstk_stock - e1.strstk_reserved) > 0 AND s1.stockin_expiry >= CURRENT_DATE() AND e1.strstk_item = packid ) AS x WHERE x.stock_available > 0 AND x.stockin_expiry >= CURRENT_DATE() AND x.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) AND x.strstk_msp = CAST(msp AS DECIMAL(10,2)) AND x.max_discount = CAST(disc AS DECIMAL(10,2)) GROUP BY x.strstk_item ORDER BY x.stockin_expiry ASC, x.max_discount DESC, x.stock_available DESC;
   */
   SELECT 
    GROUP_CONCAT(
        e1.strstk_id 
        ORDER BY 
            s1.stockin_expiry ASC,
            e1.strstk_discount DESC,
            (e1.strstk_stock - e1.strstk_reserved) ASC
        SEPARATOR ','
    ) INTO strArray
FROM storestock_pricing e1
JOIN stock_inwards s1 
    ON s1.stockin_id = e1.strstk_refer
WHERE e1.strstk_product = prdid
  AND (e1.strstk_stock - e1.strstk_reserved) > 0
  AND s1.stockin_expiry >= CURRENT_DATE()
  AND e1.strstk_item = packid
  AND e1.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) AND e1.strstk_msp = CAST(msp AS DECIMAL(10,2)) AND e1.strstk_discount = CAST(disc AS DECIMAL(10,2));
     
     /* SELECT SUM(x.stock_available) INTO TotalStock
FROM (
    SELECT e1.strstk_item, 
           s1.stockin_expiry, 
           e1.strstk_discount AS max_discount, 
           (e1.strstk_stock - e1.strstk_reserved) AS stock_available, 
           e1.strstk_mrp, 
           e1.strstk_msp, 
           e1.strstk_id, 
           e1.strstk_product 
    FROM storestock_pricing e1 
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer 
    WHERE e1.strstk_product = prdid 
      AND (e1.strstk_stock - e1.strstk_reserved) > 0 
      AND s1.stockin_expiry >= CURRENT_DATE() 
      AND e1.strstk_item = packid
) AS x
WHERE x.stock_available > 0 
  AND x.stockin_expiry >= CURRENT_DATE() 
   AND x.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) 
  AND x.strstk_msp = CAST(msp AS DECIMAL(10,2)) 
  AND x.max_discount = CAST(disc AS DECIMAL(10,2))
 GROUP BY x.strstk_product
ORDER BY x.stockin_expiry ASC, x.max_discount DESC, x.stock_available DESC;*/
SELECT 
    SUM(
        (e1.strstk_stock - e1.strstk_reserved)
    ) INTO TotalStock
FROM storestock_pricing e1
JOIN stock_inwards s1 
    ON s1.stockin_id = e1.strstk_refer
WHERE e1.strstk_product = prdid
  AND (e1.strstk_stock - e1.strstk_reserved) > 0
  AND s1.stockin_expiry >= CURRENT_DATE()
  AND e1.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) AND e1.strstk_msp = CAST(msp AS DECIMAL(10,2)) AND e1.strstk_discount = CAST(disc AS DECIMAL(10,2))
  AND e1.strstk_item = packid ORDER BY 
            s1.stockin_expiry ASC,
            e1.strstk_discount DESC,
            (e1.strstk_stock - e1.strstk_reserved) ASC;
      

    IF qty <= TotalStock THEN
        SELECT 0 AS type, totalStock AS TotalStock;
    ELSE
      SELECT 1 AS type, totalStock AS TotalStock;
   SELECT
    product_id,
    product_name,
    product_display,
    prodpack_id,
    prodpack_quantity,
    packing_type,
    measunit_shortname,
    strstk_mrp,
    strstk_msp,
    stockin_batch,
    product_imageurl,
    strstk_discount,
    strstk_id,
    strstk_item,
    Totlval
FROM (
    SELECT
        p.product_id,
        p.product_name,
        p.product_display,
        r.prodpack_id,
        r.prodpack_quantity,
        t.packing_type,
        m.measunit_shortname,
        e.strstk_mrp,
        e.strstk_msp,
        s.stockin_batch,
        (
            SELECT g.prodgal_url
            FROM product_gallery g
            WHERE g.prodgal_prodpack = r.prodpack_id
              AND g.prodgal_placedat = 1
              AND g.prodgal_medium = 1
              AND g.prodgal_publish = 1
              AND g.prodgal_status = 1
            ORDER BY g.prodgal_serial ASC
            LIMIT 1
        ) AS product_imageurl,
        e.strstk_discount,
        e.strstk_id,
        e.strstk_item,
        GetProductTotalQuantity(prdid, e.strstk_item, e.strstk_id) AS Totlval,

        ROW_NUMBER() OVER (
            PARTITION BY e.strstk_item
            ORDER BY
                s.stockin_expiry ASC,
                e.strstk_discount DESC,
                (e.strstk_stock - e.strstk_reserved) DESC
        ) AS rn

    FROM products_tbl p
    JOIN product_packing r 
        ON r.prodpack_product = p.product_id
    JOIN packing_tbl t 
        ON t.packing_id = r.prodpack_package
    JOIN measure_units m 
        ON m.measunit_id = r.prodpack_unit
    JOIN stock_inwards s 
        ON s.stockin_item = r.prodpack_id
    JOIN storestock_pricing e 
        ON e.strstk_item = r.prodpack_id
       AND s.stockin_id = e.strstk_refer

    WHERE p.product_status = 1
      AND p.product_online = 1
      AND p.product_publish = 1
      AND e.strstk_item = packid
      AND (e.strstk_stock - e.strstk_reserved) > 0
      AND s.stockin_expiry >= CURRENT_DATE()
      AND e.strstk_product = prdid
      AND FIND_IN_SET(e.strstk_id, strArray) = 0
) ranked
WHERE rn = 1;
    END IF;
   
END$$

CREATE  PROCEDURE `updateViewcart1` (IN `qty` INT, IN `packid` INT, IN `stockid` INT, IN `prdid` INT)   BEGIN
  DECLARE qtys, strk, balance, stck INT DEFAULT 0;
    DECLARE mrp, msp, disc DOUBLE DEFAULT 0;
    DECLARE strarray, totalstock TEXT DEFAULT ''; -- Initialize empty string

    -- Assign stockid to strarray (Ensure it's a string)
    SET strarray = CAST(stockid AS CHAR);

    -- Fetch initial values
    SELECT e1.strstk_mrp, e1.strstk_msp, e1.strstk_discount, 
           (e1.strstk_stock - e1.strstk_reserved), e1.strstk_id 
    INTO mrp, msp, disc, qtys, strk 
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = prdid  
      AND e1.strstk_item = packid 
      AND e1.strstk_id = stockid;
     SET totalstock = concat(strk,"|",if (qty>=qtys , qtys, qty ),'#'); 
       -- Calculate initial balance
    SET balance = if(qty>=qtys, ABS(qty - qtys),0);  -- Assuming qty is not declared
-- Process while balance is greater than zero
    while(balance > 0) do

    if EXISTS(SELECT COALESCE(strstk_id, 0), COALESCE(stock_available, 0) 
        /*INTO strk, stck*/
        FROM (
            SELECT e1.strstk_item, 
                   s1.stockin_expiry, 
                   e1.strstk_discount AS max_discount, 
                   (e1.strstk_stock - e1.strstk_reserved) AS stock_available, 
                   e1.strstk_mrp, 
                   e1.strstk_msp, 
                   e1.strstk_id, 
                   e1.strstk_product 
            FROM storestock_pricing e1 
            JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer 
            WHERE e1.strstk_product = prdid 
              AND (e1.strstk_stock - e1.strstk_reserved) > 0 
              AND s1.stockin_expiry >= CURRENT_DATE() 
              AND e1.strstk_item = packid
        ) AS x
        WHERE x.stock_available > 0 
          AND x.stockin_expiry >= CURRENT_DATE() 
          AND x.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) 
          AND x.strstk_msp = CAST(msp AS DECIMAL(10,2)) 
          AND x.max_discount = CAST(disc AS DECIMAL(10,2)) 
          AND FIND_IN_SET(x.strstk_id, strarray) = 0  -- Fix NOT IN issue
        ORDER BY x.stockin_expiry ASC, x.max_discount DESC, x.stock_available DESC 
        LIMIT 1)THEN
         SELECT COALESCE(strstk_id, 0), COALESCE(stock_available, 0) 
         INTO strk, stck 
        FROM (
            SELECT e1.strstk_item, 
                   s1.stockin_expiry, 
                   e1.strstk_discount AS max_discount, 
                   (e1.strstk_stock - e1.strstk_reserved) AS stock_available, 
                   e1.strstk_mrp, 
                   e1.strstk_msp, 
                   e1.strstk_id, 
                   e1.strstk_product 
            FROM storestock_pricing e1 
            JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer 
            WHERE e1.strstk_product = prdid 
              AND (e1.strstk_stock - e1.strstk_reserved) > 0 
              AND s1.stockin_expiry >= CURRENT_DATE() 
              AND e1.strstk_item = packid
        ) AS x
        WHERE x.stock_available > 0 
          AND x.stockin_expiry >= CURRENT_DATE() 
          AND x.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) 
          AND x.strstk_msp = CAST(msp AS DECIMAL(10,2)) 
          AND x.max_discount = CAST(disc AS DECIMAL(10,2)) 
          AND FIND_IN_SET(x.strstk_id, strarray) = 0  -- Fix NOT IN issue
        ORDER BY x.stockin_expiry ASC, x.max_discount DESC, x.stock_available DESC 
        LIMIT 1;
        else 
           SET strk = 0, stck = 0;
    
        end if;
        
        -- Append strk to strarray
      
        if(stck = 0)THEN
         set balance = 0;
        else
            SET strarray = CONCAT(strarray, ',', strk);
            SET totalstock = concat(totalstock,"",strk,"|",if (balance>=stck, stck, ABS(balance) ),"#");
            -- Reduce balance
            SET balance = balance - IFNULL(stck, 0);
        end IF;
    -- Append strk to strarray
     -- Initialize variables
	#SET strk = 0, stck = 0;
    END while;  
    SELECT totalstock;
    
END$$

CREATE  PROCEDURE `uploadInvoiceFile` (IN `invid` INT, IN `invurl` VARCHAR(100), IN `adminid` INT)   BEGIN
	INSERT INTO invoice_files( invfile_invoice, invfile_url, invfile_crtdby )
    VALUES( invid, invurl, adminid);
END$$

CREATE  PROCEDURE `userChangePasswordbyId` (IN `customer_id` INT, IN `old_password` VARCHAR(255), IN `new_password` VARCHAR(255))   BEGIN
IF EXISTS(SELECT 1 FROM customers_tbl c WHERE c.customer_password=old_password and c.customer_id=customer_id AND c.customer_type=1) THEN

UPDATE customers_tbl c SET c.customer_password=new_password, c.customer_updby=customer_id WHERE c.customer_id=customer_id AND c.customer_type=1;
SELECT 1 as statuss;
ELSE
SELECT 0 as statuss;
END IF;
END$$

CREATE  PROCEDURE `verifyuserByTrackID` (IN `orderId` VARCHAR(255), IN `phone` VARCHAR(255))   BEGIN
DECLARE userid,types INT DEFAULT 0;
IF EXISTS(SELECT o.order_orderid FROM delivery_address d JOIN  orders_tbl o ON o.order_deliverId=d.delivery_id AND d.delivery_user=o.order_customer JOIN customers_tbl c ON c.customer_id=o.order_customer WHERE (d.delivery_phone=phone  OR c.customer_phone=phone) AND o.order_orderid=orderId) THEN
SELECT c.customer_type INTO types from customers_tbl c JOIN orders_tbl o ON o.order_customer=c.customer_id WHERE o.order_orderid=orderId;
SELECT c.customer_id INTO userid from customers_tbl c JOIN orders_tbl o ON o.order_customer=c.customer_id WHERE o.order_orderid=orderId;

SELECT userid as userId, types as type ;
ELSE
SELECT null;
END IF;
END$$

--
-- Functions
--
CREATE  FUNCTION `fnCreateGDNnumber` (`storeid` INT) RETURNS VARCHAR(50) CHARSET utf8mb4  BEGIN
	DECLARE nextorder VARCHAR(50) DEFAULT '';
         SELECT CONCAT(
    COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ''),
    '/',
    'GDN',
    '/',
    (SELECT COUNT(*) +1
     FROM transfer_packets x
     WHERE x.transpack_from = storeid AND x.transpack_gdn != '')
) INTO nextorder;
    	RETURN nextorder;
END$$

CREATE  FUNCTION `fnCreateGRNnumber` (`storeid` INT) RETURNS VARCHAR(50) CHARSET utf8mb4  BEGIN
	DECLARE nextorder VARCHAR(50) DEFAULT '';
         SELECT CONCAT(
    COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ''),
    '/',
    'GRN',
    '/',
    (SELECT COUNT(*) +1
     FROM transfer_packets x
     WHERE x.transpack_to = storeid AND x.transpack_grn != '')
) INTO nextorder;
    	RETURN nextorder;
END$$

CREATE  FUNCTION `fnCreateIntendNumber` (`storeid` INT) RETURNS VARCHAR(50) CHARSET utf8mb4  BEGIN
	DECLARE nextorder VARCHAR(50) DEFAULT '';
    
        SELECT CONCAT('INTD-', COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ' '), COUNT(*)+1) 		INTO nextorder 
        FROM  intends_tbl x 
        WHERE x.intend_from = storeid; 
   
    	RETURN nextorder;
END$$

CREATE  FUNCTION `fnCreatePurchaseOrder` (`supplier` INT, `suppliertype` INT, `storeto` INT, `strorder` TEXT, `odrmode` INT, `adminid` INT) RETURNS INT  BEGIN
	DECLARE insid, ordid, ordtotal, orditem INT DEFAULT 0;
    DECLARE strtrans, stritems,notes TEXT DEFAULT '';
    DECLARE stkid, stkitem INT DEFAULT 0;
    DECLARE license,amount,deliverby INT DEFAULT 0;

    SET @text := TRIM(BOTH '##' FROM strorder);
  	SET @strLen := 0;
  	SET @i := 1;
      WHILE @strLen < LENGTH(@text) DO
    	SET @str := SUBSTRING_INDEX(@text, '##', @i);
    	SET @strLen := LENGTH(@str);
    	SET @i := @i + 1;
    	SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
     	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 	SET @strGLen := 0;
     	SET @Gi := 1;
     
     	SET @icols := 1;
     	WHILE @strGLen < LENGTH(@GRAPE) DO
        	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        	SET @strGLen := LENGTH(@Gstr);
        	SET @Gi := @Gi + 1;
        	IF @icols = 1 THEN
        		SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                SET stritems = IF(stritems = '', @item, CONCAT_WS(',', stritems, @item));
            ELSEIF @icols=2 THEN
            	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
        	ELSE
            	SET @price := SUBSTRING_INDEX(@Gstr, '|', -1);
        	END IF;
        	SET @icols := @icols + 1;
     	END WHILE;
        IF strtrans = '' THEN
        	SET strtrans = CONCAT( @item, '|',@qty , '|', @price);
        ELSE            
        	SET strtrans = CONCAT(strtrans, '##', @item, '|',@qty , '|', @price);	                
        END IF;
        
      END WHILE;
     
       IF TRIM(strtrans) <> '' THEN
     		CALL addPurchaseOrder(fnGeneratePurchaseOrderNumber(odrmode,storeto), CURRENT_DATE(),license,suppliertype,supplier,amount,strtrans,notes,storeto,deliverby,adminid);
     	SET insid = LAST_INSERT_ID();     
        SELECT x.podetail_order INTO ordid FROM purchase_details x WHERE x.podetail_id = insid;
  	END IF;
    RETURN ordid;
END$$

CREATE  FUNCTION `fnCreateTransferOrder` (`storefrom` INT, `storeto` INT, `strorder` TEXT, `adminid` INT) RETURNS INT  BEGIN
	DECLARE finish, ordcount, ordqty, insid, ordid, ordtotal, orditem INT DEFAULT 0;
    DECLARE batch VARCHAR(50) DEFAULT '';
    DECLARE expiry DATE DEFAULT NULL;
    DECLARE strtrans, stritems, test TEXT DEFAULT '';
    DECLARE stkid, stkitem, store, stock, minstk INT DEFAULT 0;
      
	SET @text := TRIM(BOTH '##' FROM strorder);
  	SET @strLen := 0;
  	SET @i := 1;
  	WHILE @strLen < LENGTH(@text) DO
    	SET @str := SUBSTRING_INDEX(@text, '##', @i);
    	SET @strLen := LENGTH(@str);
    	SET @i := @i + 1;
    	SET @GRPS := SUBSTRING_INDEX(@str, '##', -1);
     	SET @GRAPE := TRIM(BOTH '|' FROM @GRPS);
  	 	SET @strGLen := 0;
     	SET @Gi := 1;
     
     	SET @icols := 1;
     	WHILE @strGLen < LENGTH(@GRAPE) DO
        	SET @Gstr := SUBSTRING_INDEX(@GRAPE, '|', @Gi);
        	SET @strGLen := LENGTH(@Gstr);
        	SET @Gi := @Gi + 1;
        	IF @icols = 1 THEN
        		SET @item := SUBSTRING_INDEX(@Gstr, '|', -1);
                SET stritems = IF(stritems = '', @item, CONCAT_WS(',', stritems, @item));
        	ELSE
            	SET @qty := SUBSTRING_INDEX(@Gstr, '|', -1);
        	END IF;
        	SET @icols := @icols + 1;
     	END WHILE;
        
        BLOCK2:BEGIN
        	DECLARE stcurs CURSOR FOR SELECT sp.strstk_id, si.stockin_batch, si.stockin_expiry, sp.strstk_item, sp.strstk_store, (sp.strstk_stock - sp.strstk_reserved) AS stock, sm.storestock_min, @qty 
        	FROM storestock_pricing sp 
        	LEFT JOIN stock_inwards si ON si.stockin_id = sp.strstk_refer
            LEFT JOIN storestock_master sm ON sm.storestock_item = sp.strstk_item AND sm.storestock_store = sp.strstk_store
        	WHERE sp.strstk_item = @item AND sp.strstk_store = storefrom AND (sp.strstk_stock - sp.strstk_reserved)>0
        	ORDER BY si.stockin_expiry ASC, stock;
    		DECLARE CONTINUE HANDLER FOR NOT FOUND SET finish = 1;
	        SET ordtotal = 0;
            SET ordqty = 0;
            SET ordcount = 0;
            OPEN stcurs;
        	runorder:LOOP
        		FETCH stcurs INTO stkid, batch, expiry, stkitem, store, stock, minstk, ordcount;
        		IF finish = 1 THEN
            		SET finish = 0;
                    LEAVE runorder;
            	END IF;
            	#SELECT CONCAT(stkid,'|', batch,'|', expiry,'|', stkitem,'|',  store,'|',  stock,'|',  minstk,'|',  @qty) INTO test;
                
                
               /* IF stock > minstk AND ordcount > 0 THEN
                	IF strtrans = '' THEN
                		SET ordqty = IF(stock >= ordcount, ordcount, stock);
                		SET strtrans = CONCAT(stkid, '|', @item, '|', ordqty, '|', batch, '|', expiry);
                     	SET ordtotal = ordqty;
                    ELSE
                    	IF ordtotal < ordcount THEN
                        	SET ordqty = IF(stock >= (ordcount - ordqty), (ordcount - ordqty), stock);
                    		SET strtrans = CONCAT(strtrans, '##', stkid, '|', @item, '|', ordqty, '|', batch, '|', expiry);
                    		SET ordtotal = ordtotal + (ordcount - ordqty);
                        ELSE
                        	SET ordtotal = ordcount;
                        END IF;
                    END IF;
                END IF;*/
                
                IF stock > minstk AND ordcount > 0 THEN

                    SET @remaining = ordcount - ordtotal;

                    IF @remaining > 0 THEN

                        SET ordqty = IF(stock >= @remaining, @remaining, stock);

                        -- Prevent zero quantity
                        IF ordqty > 0 THEN

                            IF strtrans = '' THEN
                                SET strtrans = CONCAT(
                                    stkid, '|', @item, '|', ordqty, '|', batch, '|', IFNULL(expiry, '')
                                );
                            ELSE
                                SET strtrans = CONCAT(
                                    strtrans, '##',
                                    stkid, '|', @item, '|', ordqty, '|', batch, '|', IFNULL(expiry, '')
                                );
                            END IF;

                            SET ordtotal = ordtotal + ordqty;

                        END IF;

                    END IF;

                END IF;
            END LOOP runorder;
            SET finish = 0;
	        CLOSE stcurs;
        END BLOCK2;
    END WHILE;  
    IF TRIM(strtrans) <> '' THEN
        CALL addStockTransferOrderNew(fnGenerateTransferOrderNumber(storefrom), CURRENT_DATE(), storefrom, storeto, strtrans, adminid, '');
        SET insid = LAST_INSERT_ID();
        SELECT x.stockorder_refer INTO ordid FROM stocktransfer_details x WHERE x.stockorder_id = insid;
  	END IF;
    RETURN ordid;

END$$

CREATE  FUNCTION `fnGenerateBillNumber` (`storeid` INT) RETURNS VARCHAR(50) CHARSET utf8mb4  BEGIN
    DECLARE nextorder VARCHAR(50) DEFAULT '';
    
 SELECT CONCAT('bill_', 
              COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ' '),' - ',
              COUNT(*) + 1) INTO nextorder 
FROM bills_table x 
WHERE x.bill_store = storeid;
        RETURN nextorder;
END$$

CREATE  FUNCTION `fnGeneratePurchaseOrderNumber` (`ordmode` INT, `storeid` INT) RETURNS VARCHAR(50) CHARSET utf8mb4  BEGIN
	DECLARE nextorder VARCHAR(50) DEFAULT '';
    IF (ordmode = 1) THEN
        SELECT CONCAT('POID-', COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ' '), 					COUNT(*)+1) 		INTO nextorder 
        FROM purchase_orders x 
        WHERE x.purchord_deliverat = storeid; 
    ELSE
      	SELECT CONCAT('PO_TEL-', COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ' '), 				COUNT(*)+1) 			INTO nextorder 
        FROM purchase_orders x 
        WHERE x.purchord_deliverat = storeid; 
        
    END IF;
    	RETURN nextorder;
END$$

CREATE  FUNCTION `fnGenerateTransferOrderNumber` (`storeid` INT) RETURNS VARCHAR(50) CHARSET utf8mb4  BEGIN
	DECLARE nextorder VARCHAR(50) DEFAULT '';
    
    SELECT CONCAT('IDTR', COALESCE((SELECT y.store_code FROM stores_tbl y WHERE y.store_id = storeid), ' '), COUNT(*)+1) INTO nextorder 
    FROM stock_transfers x 
    WHERE x.stocktrans_strfrom = storeid; 
    RETURN nextorder;
END$$

CREATE  FUNCTION `fnGetDrugclassParent` (`drgclsid` INT) RETURNS INT  BEGIN
	DECLARE cpid, spid INT DEFAULT 0;
    
	SELECT x.drugclass_parent INTO cpid 
    FROM drug_classifications x 
    WHERE x.drugclass_id = drgclsid;
    
    IF cpid > 0 THEN
    	SELECT y.drugclass_parent INTO spid
    	FROM drug_classifications y
   	 	WHERE y.drugclass_id = cpid;
    END IF;
    
    RETURN spid;
END$$

CREATE  FUNCTION `fnGetProductclassParent` (`prdclsid` INT) RETURNS INT  BEGIN
	DECLARE cpid, spid INT DEFAULT 0;
    
	SELECT x.prodclass_parent INTO cpid 
    FROM product_classes_seq x 
    WHERE x.prodclass_id = prdclsid;
    
    IF cpid > 0 THEN
    	SELECT y.prodclass_parent INTO spid
    	FROM product_classes_seq y
   	 	WHERE y.prodclass_id = cpid;
    END IF;
    
    RETURN spid;
END$$

CREATE  FUNCTION `fnGetProductFromPack` (`packid` INT, `flag` INT) RETURNS VARCHAR(200) CHARSET utf8mb4  BEGIN
	DECLARE prodkt INT DEFAULT 0;
    DECLARE packfull, packshort, product VARCHAR(200) DEFAULT NULL;
    DECLARE resp VARCHAR(200) DEFAULT NULL;
	
    SELECT x.prodpack_product, 
    	CONCAT(p.product_name, ' ', k.packing_type, ':', x.prodpack_quantity, ' ', m.measunit_name), 
        CONCAT(p.product_name, ' ', k.packing_type, ':', x.prodpack_quantity, ' ', m.measunit_shortname) 
        INTO prodkt, packfull, packshort 
    FROM product_packing x 
    LEFT JOIN products_tbl p ON p.product_id = x.prodpack_product 
    LEFT JOIN packing_tbl k ON k.packing_id = x.prodpack_package 
    LEFT JOIN measure_units m ON m.measunit_id = x.prodpack_unit 
    WHERE x.prodpack_id = packid;
    
    IF flag = '0' THEN
    	RETURN packshort;
    ELSEIF flag = 1 THEN
    	RETURN packfull;
    ELSE
    	RETURN prodkt;
    END IF;
END$$

CREATE  FUNCTION `fnGetPurchaseOrderStatus` (`poid` INT) RETURNS INT  BEGIN
	DECLARE pstatus, aproved, issued, retval INT DEFAULT 0;
	
    SELECT x.purchord_status, x.purchord_aprvdby, x.purchord_issuedby INTO pstatus, aproved, issued 
    FROM purchase_orders x WHERE x.purchord_id = poid;
    
    IF pstatus = 0 THEN
    	SET retval = 0;
    ELSEIF pstatus = 1 THEN
    	IF aproved > 0 THEN
        	SET retval = 2;
        ELSEIF issued > 0 THEN
        	SET retval = 3;
        ELSE
        	SET retval = 1;
        END IF;
    ELSEIF pstatus = 5 THEN
    	SET retval = 5;
    ELSE	
    	SET retval = 10;
    END IF;
    
    RETURN retval;
END$$

CREATE  FUNCTION `fnGetStoreStock` (`storeid` INT, `stockid` INT) RETURNS INT  BEGIN
	DECLARE stocks INT DEFAULT 0;
    IF storeid > 0 THEN
		SELECT (x.storestock_available - x.storestock_reserved) INTO stocks 
        FROM storestock_master x 
    	WHERE x.storestock_item = stockid AND x.storestock_store = storeid;
	ELSE
    	SELECT SUM(x.storestock_available - x.storestock_reserved) INTO stocks 
        FROM storestock_master x 
    	WHERE x.storestock_item = stockid;
    END IF;

    RETURN IFNULL(stocks, 0);
END$$

CREATE  FUNCTION `fnGetSupplierCountForItem` (`prodid` INT) RETURNS INT  BEGIN
	DECLARE dcount, dlcount, stkcount INT DEFAULT 0;
	
    SELECT COUNT(*) into stkcount FROM stockist_products st 
    WHERE st.stockistprod_product = prodid AND st.stockistprod_status = 1;
    SELECT COUNT(*) INTO dcount FROM distributor_products dp 
    WHERE dp.distriprod_product = prodid AND dp.distriprod_status = 1;
    SELECT COUNT(*) into dlcount FROM dealer_products dl 
    WHERE dl.dealerprod_product = prodid AND dl.dealerprod_status = 1;
    
    RETURN (dcount + dlcount + stkcount);
    
END$$

CREATE  FUNCTION `fnGetVendorContacts` (`vtype` INT, `vendid` INT) RETURNS VARCHAR(200) CHARSET utf8mb4  BEGIN
	DECLARE vendor VARCHAR(200) DEFAULT '';
	IF vtype = 1 THEN
    	SELECT CONCAT(stockist_name, '|', stockist_email, '|', stockist_whatsapp, '|', stockist_phones) INTO vendor 
        FROM stockists_tbl WHERE stockist_id = vendid;
    ELSEIF VTYPE = 2 THEN
    	SELECT CONCAT(distri_name, '|', distri_email, '|', distri_whatsapp, '|', distri_phones) INTO vendor 
        FROM distributors_tbl WHERE distri_id = vendid;
    ELSE
    	SELECT CONCAT(dealer_name, '|', dealer_email, '|', dealer_whatsapp, '|', dealer_phones) INTO vendor 
        FROM dealers_tbl WHERE dealer_id = vendid;
    END IF;
    
    RETURN vendor;
END$$

CREATE  FUNCTION `fnGetVendorLicense` (`vtype` INT, `vendid` INT) RETURNS VARCHAR(200) CHARSET utf8mb4  BEGIN
	DECLARE license VARCHAR(200) DEFAULT '';
	IF vtype = 1 THEN
    	SELECT stockist_regn INTO license 
        FROM stockists_tbl WHERE stockist_id = vendid;
    ELSEIF VTYPE = 2 THEN
    	SELECT distri_regn INTO license 
        FROM distributors_tbl WHERE distri_id = vendid;
    ELSE
    	SELECT dealer_regn INTO license 
        FROM dealers_tbl WHERE dealer_id = vendid;
    END IF;
    
    RETURN license;
END$$

CREATE  FUNCTION `fnGetVendorName` (`vtype` INT, `vendid` INT) RETURNS VARCHAR(200) CHARSET utf8mb4  BEGIN
	DECLARE vendor VARCHAR(200) DEFAULT '';
	IF vtype = 1 THEN
    	SELECT stockist_name INTO vendor 
        FROM stockists_tbl WHERE stockist_id = vendid;
    ELSEIF VTYPE = 2 THEN
    	SELECT distri_name INTO vendor 
        FROM distributors_tbl WHERE distri_id = vendid;
    ELSE
    	SELECT dealer_name INTO vendor 
        FROM dealers_tbl WHERE dealer_id = vendid;
    END IF;
    
    RETURN vendor;
END$$

CREATE  FUNCTION `GetProductTotalQuantity` (`prdid` INT, `packid` INT, `stockid` INT) RETURNS INT  BEGIN
    DECLARE qtys, strk,TotalStock INT DEFAULT 0;
    DECLARE mrp, msp, disc DOUBLE DEFAULT 0;
    DECLARE strArray TEXT; 
    
    SELECT e1.strstk_mrp, e1.strstk_msp, e1.strstk_discount, 
           (e1.strstk_stock - e1.strstk_reserved), e1.strstk_id 
    INTO mrp, msp, disc, qtys, strk 
    FROM storestock_pricing e1
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer
    WHERE e1.strstk_product = prdid  
      AND e1.strstk_item = packid 
      AND e1.strstk_id = stockid;
     
     SELECT SUM(x.stock_available) INTO TotalStock
FROM (
    SELECT e1.strstk_item, 
           s1.stockin_expiry, 
           e1.strstk_discount AS max_discount, 
           (e1.strstk_stock - e1.strstk_reserved) AS stock_available, 
           e1.strstk_mrp, 
           e1.strstk_msp, 
           e1.strstk_id, 
           e1.strstk_product 
    FROM storestock_pricing e1 
    JOIN stock_inwards s1 ON s1.stockin_id = e1.strstk_refer 
    WHERE e1.strstk_product = prdid 
      AND (e1.strstk_stock - e1.strstk_reserved) > 0 
      AND s1.stockin_expiry >= CURRENT_DATE() 
      AND e1.strstk_item = packid
) AS x
WHERE x.stock_available > 0 
  AND x.stockin_expiry >= CURRENT_DATE() 
   AND x.strstk_mrp = CAST(mrp AS DECIMAL(10,2)) 
  AND x.strstk_msp = CAST(msp AS DECIMAL(10,2)) 
  AND x.max_discount = CAST(disc AS DECIMAL(10,2))
 GROUP BY x.strstk_product
ORDER BY x.stockin_expiry ASC, x.max_discount DESC, x.stock_available DESC;
      
RETURN TotalStock;
    
END$$

DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `abuse_filter`
--

CREATE TABLE `abuse_filter` (
  `af_id` int UNSIGNED NOT NULL,
  `af_pattern` blob NOT NULL,
  `af_timestamp` binary(14) NOT NULL,
  `af_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `af_comments` blob NOT NULL,
  `af_public_comments` blob NOT NULL,
  `af_hidden` tinyint(1) NOT NULL DEFAULT '0',
  `af_hit_count` int UNSIGNED NOT NULL DEFAULT '0',
  `af_throttled` tinyint(1) NOT NULL DEFAULT '0',
  `af_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `af_actions` blob NOT NULL,
  `af_global` tinyint(1) NOT NULL DEFAULT '0',
  `af_group` varbinary(255) NOT NULL DEFAULT 'default',
  `af_actor` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `adddummyfaq`
--

CREATE TABLE `adddummyfaq` (
  `id` int NOT NULL,
  `name` text NOT NULL,
  `manuf` text NOT NULL,
  `new_name` text NOT NULL,
  `qtn` text NOT NULL,
  `ans` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `adddummyfaq`
--

INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1, 'Levoj 500mg Tablet', 'J.K Biotech', 'Levoj 500mg Tablet', 'Is Levoj 500mg Tablet safe?', 'Levoj 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2, 'Levoj 500mg Tablet', 'J.K Biotech', 'Levoj 500mg Tablet', 'What if I forget to take a dose of Levoj 500mg Tablet?', 'If you forget a dose of Levoj 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3, 'Levoj 500mg Tablet', 'J.K Biotech', 'Levoj 500mg Tablet', 'Can the use of Levoj 500mg Tablet cause diarrhea?', 'Yes, the use of Levoj 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4, 'Levoj 500mg Tablet', 'J.K Biotech', 'Levoj 500mg Tablet', 'Can I stop taking Levoj 500mg Tablet when I feel better?', 'No, do not stop taking Levoj 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoj 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoj 500mg Tablet in the dose and duration advised by the doctor.'),
(5, 'Levoj 500mg Tablet', 'J.K Biotech', 'Levoj 500mg Tablet', 'Can the use of Levoj 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoj 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoj 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6, 'Levojak 10mg Tablet', 'Jakstar Pharma', 'Levojak 10mg Tablet', 'Is Levojak 10mg Tablet a steroid? What is it used for?', 'No, Levojak 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7, 'Levojak 10mg Tablet', 'Jakstar Pharma', 'Levojak 10mg Tablet', 'Does Levojak 10mg Tablet make you tired and drowsy?', 'Yes, Levojak 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(8, 'Levojak 10mg Tablet', 'Jakstar Pharma', 'Levojak 10mg Tablet', 'How long does it take for Levojak 10mg Tablet to work?', 'Levojak 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9, 'Levojak 10mg Tablet', 'Jakstar Pharma', 'Levojak 10mg Tablet', 'Can I take Levojak 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojak 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10, 'Levojak 10mg Tablet', 'Jakstar Pharma', 'Levojak 10mg Tablet', 'Is it safe to take Levojak 10mg Tablet for a long time?', 'Levojak 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojak 10mg Tablet for only as long as you need it.'),
(11, 'Levojak 10mg Tablet', 'Jakstar Pharma', 'Levojak 10mg Tablet', 'For how long should I continue Levojak 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojak 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levojak 10mg Tablet'),
(12, 'Levojak 5mg Tablet', 'Jakstar Pharma', 'Levojak 5mg Tablet', 'Is Levojak 5mg Tablet a steroid? What is it used for?', 'No, Levojak 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(13, 'Levojak 5mg Tablet', 'Jakstar Pharma', 'Levojak 5mg Tablet', 'Does Levojak 5mg Tablet make you tired and drowsy?', 'Yes, Levojak 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(14, 'Levojak 5mg Tablet', 'Jakstar Pharma', 'Levojak 5mg Tablet', 'How long does it take for Levojak 5mg Tablet to work?', 'Levojak 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(15, 'Levojak 5mg Tablet', 'Jakstar Pharma', 'Levojak 5mg Tablet', 'Can I take Levojak 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojak 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(16, 'Levojak 5mg Tablet', 'Jakstar Pharma', 'Levojak 5mg Tablet', 'Is it safe to take Levojak 5mg Tablet for a long time?', 'Levojak 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojak 5mg Tablet for only as long as you need it.'),
(17, 'Levojak 5mg Tablet', 'Jakstar Pharma', 'Levojak 5mg Tablet', 'For how long should I continue Levojak 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojak 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levojak 5mg Tablet'),
(18, 'Levojas 5mg Tablet', 'Kiama Lifesciences', 'Levojas 5mg Tablet', 'Is Levojas 5mg Tablet a steroid? What is it used for?', 'No, Levojas 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(19, 'Levojas 5mg Tablet', 'Kiama Lifesciences', 'Levojas 5mg Tablet', 'Does Levojas 5mg Tablet make you tired and drowsy?', 'Yes, Levojas 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(20, 'Levojas 5mg Tablet', 'Kiama Lifesciences', 'Levojas 5mg Tablet', 'How long does it take for Levojas 5mg Tablet to work?', 'Levojas 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(21, 'Levojas 5mg Tablet', 'Kiama Lifesciences', 'Levojas 5mg Tablet', 'Can I take Levojas 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojas 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(22, 'Levojas 5mg Tablet', 'Kiama Lifesciences', 'Levojas 5mg Tablet', 'Is it safe to take Levojas 5mg Tablet for a long time?', 'Levojas 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojas 5mg Tablet for only as long as you need it.'),
(23, 'Levojas 5mg Tablet', 'Kiama Lifesciences', 'Levojas 5mg Tablet', 'For how long should I continue Levojas 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojas 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levojas 5mg Tablet'),
(24, 'Levojas M 5mg/10mg Tablet', 'Kiama Lifesciences', 'Levojas M 5mg/10mg Tablet', 'What is Levojas M 5mg/10mg Tablet?', 'Levojas M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25, 'Levojas M 5mg/10mg Tablet', 'Kiama Lifesciences', 'Levojas M 5mg/10mg Tablet', 'Can the use of Levojas M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levojas M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26, 'Levojas M 5mg/10mg Tablet', 'Kiama Lifesciences', 'Levojas M 5mg/10mg Tablet', 'Can Levojas M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levojas M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27, 'Levojas M 5mg/10mg Tablet', 'Kiama Lifesciences', 'Levojas M 5mg/10mg Tablet', 'Can the use of Levojas M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levojas M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(28, 'Levojas M 5mg/10mg Tablet', 'Kiama Lifesciences', 'Levojas M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levojas M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levojas M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levojas M 5mg/10mg Tablet.'),
(29, 'Levojas M 5mg/10mg Tablet', 'Kiama Lifesciences', 'Levojas M 5mg/10mg Tablet', 'Will Levojas M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levojas M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(30, 'Levojas M 5mg/10mg Tablet', 'Kiama Lifesciences', 'Levojas M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levojas M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31, 'Levojay 5 Tablet', 'H.b. Lifecare Private Limited', 'Levojay 5 Tablet', 'Is Levojay 5 Tablet a steroid? What is it used for?', 'No, Levojay 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(32, 'Levojay 5 Tablet', 'H.b. Lifecare Private Limited', 'Levojay 5 Tablet', 'Does Levojay 5 Tablet make you tired and drowsy?', 'Yes, Levojay 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(33, 'Levojay 5 Tablet', 'H.b. Lifecare Private Limited', 'Levojay 5 Tablet', 'How long does it take for Levojay 5 Tablet to work?', 'Levojay 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(34, 'Levojay 5 Tablet', 'H.b. Lifecare Private Limited', 'Levojay 5 Tablet', 'Can I take Levojay 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojay 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(35, 'Levojay 5 Tablet', 'H.b. Lifecare Private Limited', 'Levojay 5 Tablet', 'Is it safe to take Levojay 5 Tablet for a long time?', 'Levojay 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojay 5 Tablet for only as long as you need it.'),
(36, 'Levojay 5 Tablet', 'H.b. Lifecare Private Limited', 'Levojay 5 Tablet', 'For how long should I continue Levojay 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojay 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levojay 5 Tablet'),
(37, 'Levojay-M Tablet', 'H.b. Lifecare Private Limited', 'Levojay-M Tablet', 'What is Levojay-M Tablet?', 'Levojay-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(38, 'Levojay-M Tablet', 'H.b. Lifecare Private Limited', 'Levojay-M Tablet', 'Can the use of Levojay-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levojay-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(39, 'Levojay-M Tablet', 'H.b. Lifecare Private Limited', 'Levojay-M Tablet', 'Can Levojay-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levojay-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(40, 'Levojay-M Tablet', 'H.b. Lifecare Private Limited', 'Levojay-M Tablet', 'Can the use of Levojay-M Tablet cause dry mouth?', 'Yes, the use of Levojay-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(41, 'Levojay-M Tablet', 'H.b. Lifecare Private Limited', 'Levojay-M Tablet', 'Can I drink alcohol while taking Levojay-M Tablet?', 'No, do not take alcohol while taking Levojay-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levojay-M Tablet.'),
(42, 'Levojay-M Tablet', 'H.b. Lifecare Private Limited', 'Levojay-M Tablet', 'Will Levojay-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levojay-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(43, 'Levojay-M Tablet', 'H.b. Lifecare Private Limited', 'Levojay-M Tablet', 'What are the instructions for storage and disposal of Levojay-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(44, 'Levoject 500mg Tablet', 'Mac Millon Pharmaceuticals Pvt Ltd', 'Levoject 500mg Tablet', 'Is Levoject 500mg Tablet safe?', 'Levoject 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(45, 'Levoject 500mg Tablet', 'Mac Millon Pharmaceuticals Pvt Ltd', 'Levoject 500mg Tablet', 'What if I forget to take a dose of Levoject 500mg Tablet?', 'If you forget a dose of Levoject 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(46, 'Levoject 500mg Tablet', 'Mac Millon Pharmaceuticals Pvt Ltd', 'Levoject 500mg Tablet', 'Can the use of Levoject 500mg Tablet cause diarrhea?', 'Yes, the use of Levoject 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(47, 'Levoject 500mg Tablet', 'Mac Millon Pharmaceuticals Pvt Ltd', 'Levoject 500mg Tablet', 'Can I stop taking Levoject 500mg Tablet when I feel better?', 'No, do not stop taking Levoject 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoject 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoject 500mg Tablet in the dose and duration advised by the doctor.'),
(48, 'Levoject 500mg Tablet', 'Mac Millon Pharmaceuticals Pvt Ltd', 'Levoject 500mg Tablet', 'Can the use of Levoject 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoject 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoject 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(49, 'Levojeez 5 Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez 5 Tablet', 'Is Levojeez 5 Tablet a steroid? What is it used for?', 'No, Levojeez 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(50, 'Levojeez 5 Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez 5 Tablet', 'Does Levojeez 5 Tablet make you tired and drowsy?', 'Yes, Levojeez 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(51, 'Levojeez 5 Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez 5 Tablet', 'How long does it take for Levojeez 5 Tablet to work?', 'Levojeez 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(52, 'Levojeez 5 Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez 5 Tablet', 'Can I take Levojeez 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojeez 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(53, 'Levojeez 5 Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez 5 Tablet', 'Is it safe to take Levojeez 5 Tablet for a long time?', 'Levojeez 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojeez 5 Tablet for only as long as you need it.'),
(54, 'Levojeez 5 Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez 5 Tablet', 'For how long should I continue Levojeez 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojeez 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levojeez 5 Tablet'),
(55, 'Levojeez-M Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez-M Tablet', 'What is Levojeez-M Tablet?', 'Levojeez-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(56, 'Levojeez-M Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez-M Tablet', 'Can the use of Levojeez-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levojeez-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(57, 'Levojeez-M Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez-M Tablet', 'Can Levojeez-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levojeez-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(58, 'Levojeez-M Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez-M Tablet', 'Can the use of Levojeez-M Tablet cause dry mouth?', 'Yes, the use of Levojeez-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(59, 'Levojeez-M Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez-M Tablet', 'Can I drink alcohol while taking Levojeez-M Tablet?', 'No, do not take alcohol while taking Levojeez-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levojeez-M Tablet.'),
(60, 'Levojeez-M Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez-M Tablet', 'Will Levojeez-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levojeez-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(61, 'Levojeez-M Tablet', 'Kaansla Pharmaceuticals Private Limited', 'Levojeez-M Tablet', 'What are the instructions for storage and disposal of Levojeez-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(62, 'Levojest 500mg Tablet', 'Pidolma Healthcare Pvt Ltd', 'Levojest 500mg Tablet', 'Is Levojest 500mg Tablet safe?', 'Levojest 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(63, 'Levojest 500mg Tablet', 'Pidolma Healthcare Pvt Ltd', 'Levojest 500mg Tablet', 'What if I forget to take a dose of Levojest 500mg Tablet?', 'If you forget a dose of Levojest 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(64, 'Levojest 500mg Tablet', 'Pidolma Healthcare Pvt Ltd', 'Levojest 500mg Tablet', 'Can the use of Levojest 500mg Tablet cause diarrhea?', 'Yes, the use of Levojest 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(65, 'Levojest 500mg Tablet', 'Pidolma Healthcare Pvt Ltd', 'Levojest 500mg Tablet', 'Can I stop taking Levojest 500mg Tablet when I feel better?', 'No, do not stop taking Levojest 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levojest 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levojest 500mg Tablet in the dose and duration advised by the doctor.'),
(66, 'Levojest 500mg Tablet', 'Pidolma Healthcare Pvt Ltd', 'Levojest 500mg Tablet', 'Can the use of Levojest 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levojest 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levojest 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(67, 'Levojet 5mg Syrup', 'Zoic Lifesciences', 'Levojet 5mg Syrup', 'Is Levojet 5mg Syrup a steroid? What is it used for?', 'No, Levojet 5mg Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(68, 'Levojet 5mg Syrup', 'Zoic Lifesciences', 'Levojet 5mg Syrup', 'Does Levojet 5mg Syrup make you tired and drowsy?', 'Yes, Levojet 5mg Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(69, 'Levojet 5mg Syrup', 'Zoic Lifesciences', 'Levojet 5mg Syrup', 'How long does it take for Levojet 5mg Syrup to work?', 'Levojet 5mg Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(70, 'Levojet 5mg Syrup', 'Zoic Lifesciences', 'Levojet 5mg Syrup', 'Can I take Levojet 5mg Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojet 5mg Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(71, 'Levojet 5mg Syrup', 'Zoic Lifesciences', 'Levojet 5mg Syrup', 'Is it safe to take Levojet 5mg Syrup for a long time?', 'Levojet 5mg Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojet 5mg Syrup for only as long as you need it.'),
(72, 'Levojet 5mg Syrup', 'Zoic Lifesciences', 'Levojet 5mg Syrup', 'For how long should I continue Levojet 5mg Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojet 5mg Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Levojet 5mg Syrup'),
(73, 'Levojet Tablet', 'Zoic Lifesciences', 'Levojet Tablet', 'Is Levojet Tablet a steroid? What is it used for?', 'No, Levojet Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(74, 'Levojet Tablet', 'Zoic Lifesciences', 'Levojet Tablet', 'Does Levojet Tablet make you tired and drowsy?', 'Yes, Levojet Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(75, 'Levojet Tablet', 'Zoic Lifesciences', 'Levojet Tablet', 'How long does it take for Levojet Tablet to work?', 'Levojet Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(76, 'Levojet Tablet', 'Zoic Lifesciences', 'Levojet Tablet', 'Can I take Levojet Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojet Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(77, 'Levojet Tablet', 'Zoic Lifesciences', 'Levojet Tablet', 'Is it safe to take Levojet Tablet for a long time?', 'Levojet Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojet Tablet for only as long as you need it.'),
(78, 'Levojet Tablet', 'Zoic Lifesciences', 'Levojet Tablet', 'For how long should I continue Levojet Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojet Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levojet Tablet'),
(79, 'Levojna 5 Tablet', 'Ojana Pharmaceutical Pvt Ltd', 'Levojna 5 Tablet', 'Is Levojna 5 Tablet a steroid? What is it used for?', 'No, Levojna 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(80, 'Levojna 5 Tablet', 'Ojana Pharmaceutical Pvt Ltd', 'Levojna 5 Tablet', 'Does Levojna 5 Tablet make you tired and drowsy?', 'Yes, Levojna 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(81, 'Levojna 5 Tablet', 'Ojana Pharmaceutical Pvt Ltd', 'Levojna 5 Tablet', 'How long does it take for Levojna 5 Tablet to work?', 'Levojna 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(82, 'Levojna 5 Tablet', 'Ojana Pharmaceutical Pvt Ltd', 'Levojna 5 Tablet', 'Can I take Levojna 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levojna 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(83, 'Levojna 5 Tablet', 'Ojana Pharmaceutical Pvt Ltd', 'Levojna 5 Tablet', 'Is it safe to take Levojna 5 Tablet for a long time?', 'Levojna 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levojna 5 Tablet for only as long as you need it.'),
(84, 'Levojna 5 Tablet', 'Ojana Pharmaceutical Pvt Ltd', 'Levojna 5 Tablet', 'For how long should I continue Levojna 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levojna 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levojna 5 Tablet'),
(85, 'Levoka 5mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka 5mg Tablet', 'Is Levoka 5mg Tablet a steroid? What is it used for?', 'No, Levoka 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(86, 'Levoka 5mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka 5mg Tablet', 'Does Levoka 5mg Tablet make you tired and drowsy?', 'Yes, Levoka 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(87, 'Levoka 5mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka 5mg Tablet', 'How long does it take for Levoka 5mg Tablet to work?', 'Levoka 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(88, 'Levoka 5mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka 5mg Tablet', 'Can I take Levoka 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoka 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(89, 'Levoka 5mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka 5mg Tablet', 'Is it safe to take Levoka 5mg Tablet for a long time?', 'Levoka 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoka 5mg Tablet for only as long as you need it.'),
(90, 'Levoka 5mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka 5mg Tablet', 'For how long should I continue Levoka 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoka 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoka 5mg Tablet'),
(91, 'Levoka L 5mg/10mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L 5mg/10mg Tablet', 'What is Levoka L 5mg/10mg Tablet?', 'Levoka L 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(92, 'Levoka L 5mg/10mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L 5mg/10mg Tablet', 'Can the use of Levoka L 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoka L 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(93, 'Levoka L 5mg/10mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L 5mg/10mg Tablet', 'Can Levoka L 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoka L 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(94, 'Levoka L 5mg/10mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L 5mg/10mg Tablet', 'Can the use of Levoka L 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoka L 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(95, 'Levoka L 5mg/10mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoka L 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoka L 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoka L 5mg/10mg Tablet.'),
(96, 'Levoka L 5mg/10mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L 5mg/10mg Tablet', 'Will Levoka L 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoka L 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(97, 'Levoka L 5mg/10mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoka L 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(98, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(99, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levoka L Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(100, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'How should Levoka L Kid 2.5mg/4mg Tablet be stored?', 'Levoka L Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(101, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'Can Levoka L Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levoka L Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(102, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoka L Kid 2.5mg/4mg Tablet?', 'No, don’t start Levoka L Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levoka L Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(103, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoka L Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(104, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levoka L Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levoka L Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(105, 'Levoka L Kid 2.5mg/4mg Tablet', 'Naroviya Biotech Private Limited', 'Levoka L Kid 2.5mg/4mg Tablet', 'Can I use Levoka L Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levoka L Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(106, 'Levokab 500mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 500mg Tablet', 'Q. Is Levokab 500mg Tablet safe?', 'Levokab 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(107, 'Levokab 500mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 500mg Tablet', 'Q. What if I forget to take a dose of Levokab 500mg Tablet?', 'If you forget a dose of Levokab 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(108, 'Levokab 500mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 500mg Tablet', 'Q. Can the use of Levokab 500mg Tablet cause diarrhea?', 'Yes, the use of Levokab 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(109, 'Levokab 500mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 500mg Tablet', 'Q. Can I stop taking Levokab 500mg Tablet when I feel better?', 'No, do not stop taking Levokab 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokab 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levokab 500mg Tablet in the dose and duration advised by the doctor.'),
(110, 'Levokab 500mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 500mg Tablet', 'Q. Can the use of Levokab 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokab 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokab 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(111, 'Levokab 750mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 750mg Tablet', 'Is Levokab 750mg Tablet safe?', 'Levokab 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(112, 'Levokab 750mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 750mg Tablet', 'What if I forget to take a dose of Levokab 750mg Tablet?', 'If you forget a dose of Levokab 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(113, 'Levokab 750mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 750mg Tablet', 'Can the use of Levokab 750mg Tablet cause diarrhea?', 'Yes, the use of Levokab 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(114, 'Levokab 750mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 750mg Tablet', 'Can I stop taking Levokab 750mg Tablet when I feel better?', 'No, do not stop taking Levokab 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokab 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levokab 750mg Tablet in the dose and duration advised by the doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(115, 'Levokab 750mg Tablet', 'Lancer Health Care Pvt Ltd', 'Levokab 750mg Tablet', 'Can the use of Levokab 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokab 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokab 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(116, 'Levokair 5mg Tablet', 'PDC Healthcare', 'Levokair 5mg Tablet', 'Is Levokair 5mg Tablet a steroid? What is it used for?', 'No, Levokair 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(117, 'Levokair 5mg Tablet', 'PDC Healthcare', 'Levokair 5mg Tablet', 'Does Levokair 5mg Tablet make you tired and drowsy?', 'Yes, Levokair 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(118, 'Levokair 5mg Tablet', 'PDC Healthcare', 'Levokair 5mg Tablet', 'How long does it take for Levokair 5mg Tablet to work?', 'Levokair 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(119, 'Levokair 5mg Tablet', 'PDC Healthcare', 'Levokair 5mg Tablet', 'Can I take Levokair 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levokair 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(120, 'Levokair 5mg Tablet', 'PDC Healthcare', 'Levokair 5mg Tablet', 'Is it safe to take Levokair 5mg Tablet for a long time?', 'Levokair 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levokair 5mg Tablet for only as long as you need it.'),
(121, 'Levokair 5mg Tablet', 'PDC Healthcare', 'Levokair 5mg Tablet', 'For how long should I continue Levokair 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levokair 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levokair 5mg Tablet'),
(122, 'Levokam 250mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Levokam 250mg Tablet', 'Is Levokam 250mg Tablet safe?', 'Levokam 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(123, 'Levokam 250mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Levokam 250mg Tablet', 'What if I forget to take a dose of Levokam 250mg Tablet?', 'If you forget a dose of Levokam 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(124, 'Levokam 250mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Levokam 250mg Tablet', 'Can the use of Levokam 250mg Tablet cause diarrhea?', 'Yes, the use of Levokam 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(125, 'Levokam 250mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Levokam 250mg Tablet', 'Can I stop taking Levokam 250mg Tablet when I feel better?', 'No, do not stop taking Levokam 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokam 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levokam 250mg Tablet in the dose and duration advised by the doctor.'),
(126, 'Levokam 250mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Levokam 250mg Tablet', 'Can the use of Levokam 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokam 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokam 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(127, 'Levokare M 5mg/10mg Tablet', 'Anvik Biotech', 'Levokare M 5mg/10mg Tablet', 'What is Levokare M 5mg/10mg Tablet?', 'Levokare M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(128, 'Levokare M 5mg/10mg Tablet', 'Anvik Biotech', 'Levokare M 5mg/10mg Tablet', 'Can the use of Levokare M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokare M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(129, 'Levokare M 5mg/10mg Tablet', 'Anvik Biotech', 'Levokare M 5mg/10mg Tablet', 'Can Levokare M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levokare M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(130, 'Levokare M 5mg/10mg Tablet', 'Anvik Biotech', 'Levokare M 5mg/10mg Tablet', 'Can the use of Levokare M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levokare M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(131, 'Levokare M 5mg/10mg Tablet', 'Anvik Biotech', 'Levokare M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levokare M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levokare M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokare M 5mg/10mg Tablet.'),
(132, 'Levokare M 5mg/10mg Tablet', 'Anvik Biotech', 'Levokare M 5mg/10mg Tablet', 'Will Levokare M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokare M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(133, 'Levokare M 5mg/10mg Tablet', 'Anvik Biotech', 'Levokare M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levokare M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(134, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(135, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'Can I decrease the dose of Levokast Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(136, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'How should Levokast Kid Tablet be stored?', 'Levokast Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(137, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'Can Levokast Kid Tablet make my child sleepy?', 'Levokast Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(138, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levokast Kid Tablet?', 'No, don’t start Levokast Kid Tablet without speaking to your child’s doctor. Moreover, Levokast Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(139, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levokast Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(140, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levokast Kid Tablet to my child?', 'Some studies show that Levokast Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(141, 'Levokast Kid Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Kid Tablet', 'Can I use Levokast Kid Tablet for treating acute asthma attacks in my child?', 'Levokast Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(142, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(143, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'Can I decrease the dose of Levokast Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(144, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'How should Levokast Oral Suspension be stored?', 'Levokast Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(145, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'Can Levokast Oral Suspension make my child sleepy?', 'Levokast Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(146, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levokast Oral Suspension?', 'No, don’t start Levokast Oral Suspension without speaking to your child’s doctor. Moreover, Levokast Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(147, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levokast Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(148, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levokast Oral Suspension to my child?', 'Some studies show that Levokast Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(149, 'Levokast Oral Suspension', 'Bharat Serums & Vaccines Ltd', 'Levokast Oral Suspension', 'Can I use Levokast Oral Suspension for treating acute asthma attacks in my child?', 'Levokast Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(150, 'Levokast Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Tablet', 'What is Levokast Tablet?', 'Levokast Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(151, 'Levokast Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Tablet', 'Can the use of Levokast Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokast Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(152, 'Levokast Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Tablet', 'Can Levokast Tablet be stopped when allergy symptoms are relieved?', 'No, Levokast Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(153, 'Levokast Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Tablet', 'Can the use of Levokast Tablet cause dry mouth?', 'Yes, the use of Levokast Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(154, 'Levokast Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Tablet', 'Can I drink alcohol while taking Levokast Tablet?', 'No, do not take alcohol while taking Levokast Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokast Tablet.'),
(155, 'Levokast Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Tablet', 'Will Levokast Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokast Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(156, 'Levokast Tablet', 'Bharat Serums & Vaccines Ltd', 'Levokast Tablet', 'What are the instructions for storage and disposal of Levokast Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(157, 'Levokav 500 Tablet', 'Kav Laboratories', 'Levokav 500 Tablet', 'Is Levokav 500 Tablet safe?', 'Levokav 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(158, 'Levokav 500 Tablet', 'Kav Laboratories', 'Levokav 500 Tablet', 'What if I forget to take a dose of Levokav 500 Tablet?', 'If you forget a dose of Levokav 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(159, 'Levokav 500 Tablet', 'Kav Laboratories', 'Levokav 500 Tablet', 'Can the use of Levokav 500 Tablet cause diarrhea?', 'Yes, the use of Levokav 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(160, 'Levokav 500 Tablet', 'Kav Laboratories', 'Levokav 500 Tablet', 'Can I stop taking Levokav 500 Tablet when I feel better?', 'No, do not stop taking Levokav 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokav 500 Tablet too early, the symptoms may return or worsen. Continue taking Levokav 500 Tablet in the dose and duration advised by the doctor.'),
(161, 'Levokav 500 Tablet', 'Kav Laboratories', 'Levokav 500 Tablet', 'Can the use of Levokav 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levokav 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokav 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(162, 'Levoke 500mg Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke 500mg Tablet', 'Is Levoke 500mg Tablet safe?', 'Levoke 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(163, 'Levoke 500mg Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke 500mg Tablet', 'What if I forget to take a dose of Levoke 500mg Tablet?', 'If you forget a dose of Levoke 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(164, 'Levoke 500mg Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke 500mg Tablet', 'Can the use of Levoke 500mg Tablet cause diarrhea?', 'Yes, the use of Levoke 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(165, 'Levoke 500mg Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke 500mg Tablet', 'Can I stop taking Levoke 500mg Tablet when I feel better?', 'No, do not stop taking Levoke 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoke 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoke 500mg Tablet in the dose and duration advised by the doctor.'),
(166, 'Levoke 500mg Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke 500mg Tablet', 'Can the use of Levoke 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoke 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoke 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(167, 'Levoke Oral Suspension', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke Oral Suspension', 'Is Levoke Oral Suspension safe?', 'Levoke Oral Suspension is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(168, 'Levoke Oral Suspension', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke Oral Suspension', 'What if I forget to take a dose of Levoke Oral Suspension?', 'If you forget a dose of Levoke Oral Suspension, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(169, 'Levoke Oral Suspension', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke Oral Suspension', 'Can the use of Levoke Oral Suspension cause diarrhea?', 'Yes, the use of Levoke Oral Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(170, 'Levoke Oral Suspension', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke Oral Suspension', 'Can I stop taking Levoke Oral Suspension when I feel better?', 'No, do not stop taking Levoke Oral Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoke Oral Suspension too early, the symptoms may return or worsen. Continue taking Levoke Oral Suspension in the dose and duration advised by the doctor.'),
(171, 'Levoke Oral Suspension', 'Lewis Bioserch Pharma Pvt Ltd', 'Levoke Oral Suspension', 'Can the use of Levoke Oral Suspension increase the risk of muscle damage?', 'Yes, the use of Levoke Oral Suspension is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoke Oral Suspension but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(172, 'Levokem 500mg Infusion', 'Alkem Laboratories Ltd', 'Levokem 500mg Infusion', 'Is Levokem 500mg Infusion safe?', 'Levokem 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(173, 'Levokem 500mg Infusion', 'Alkem Laboratories Ltd', 'Levokem 500mg Infusion', 'Can the use of Levokem 500mg Infusion cause diarrhea?', 'Yes, the use of Levokem 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(174, 'Levokem 500mg Infusion', 'Alkem Laboratories Ltd', 'Levokem 500mg Infusion', 'Can the use of Levokem 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levokem 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokem 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(175, 'Levokem 500mg Infusion', 'Alkem Laboratories Ltd', 'Levokem 500mg Infusion', 'How is Levokem 500mg Infusion administered?', 'Levokem 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levokem 500mg Infusion.'),
(176, 'Levokem 500mg Infusion', 'Alkem Laboratories Ltd', 'Levokem 500mg Infusion', 'Is Levokem 500mg Infusion effective?', 'Levokem 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levokem 500mg Infusion too early, the symptoms may return or worsen.'),
(177, 'Levokem 500mg Tablet', 'Alkem Laboratories Ltd', 'Levokem 500mg Tablet', 'Is Levokem 500mg Tablet safe?', 'Levokem 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(178, 'Levokem 500mg Tablet', 'Alkem Laboratories Ltd', 'Levokem 500mg Tablet', 'What if I forget to take a dose of Levokem 500mg Tablet?', 'If you forget a dose of Levokem 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(179, 'Levokem 500mg Tablet', 'Alkem Laboratories Ltd', 'Levokem 500mg Tablet', 'Can the use of Levokem 500mg Tablet cause diarrhea?', 'Yes, the use of Levokem 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(180, 'Levokem 500mg Tablet', 'Alkem Laboratories Ltd', 'Levokem 500mg Tablet', 'Can I stop taking Levokem 500mg Tablet when I feel better?', 'No, do not stop taking Levokem 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokem 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levokem 500mg Tablet in the dose and duration advised by the doctor.'),
(181, 'Levokem 500mg Tablet', 'Alkem Laboratories Ltd', 'Levokem 500mg Tablet', 'Can the use of Levokem 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokem 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokem 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(182, 'Levokem OZ 250mg/500mg Suspension', 'Shrinivas Gujarat Laboratories Pvt Ltd', 'Levokem OZ 250mg/500mg Suspension', 'What if I don\'t get better after using Levokem OZ 250mg/500mg Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(183, 'Levokem OZ 250mg/500mg Suspension', 'Shrinivas Gujarat Laboratories Pvt Ltd', 'Levokem OZ 250mg/500mg Suspension', 'Can I stop taking Levokem OZ 250mg/500mg Suspension when I feel better?', 'No, do not stop taking Levokem OZ 250mg/500mg Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(184, 'Levokem OZ 250mg/500mg Suspension', 'Shrinivas Gujarat Laboratories Pvt Ltd', 'Levokem OZ 250mg/500mg Suspension', 'What if I miss my dose?', 'Take Levokem OZ 250mg/500mg Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(185, 'Levoken 750mg Tablet', 'Kenn Pharmaceuticals Pvt Ltd', 'Levoken 750mg Tablet', 'Is Levoken 750mg Tablet safe?', 'Levoken 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(186, 'Levoken 750mg Tablet', 'Kenn Pharmaceuticals Pvt Ltd', 'Levoken 750mg Tablet', 'What if I forget to take a dose of Levoken 750mg Tablet?', 'If you forget a dose of Levoken 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(187, 'Levoken 750mg Tablet', 'Kenn Pharmaceuticals Pvt Ltd', 'Levoken 750mg Tablet', 'Can the use of Levoken 750mg Tablet cause diarrhea?', 'Yes, the use of Levoken 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(188, 'Levoken 750mg Tablet', 'Kenn Pharmaceuticals Pvt Ltd', 'Levoken 750mg Tablet', 'Can I stop taking Levoken 750mg Tablet when I feel better?', 'No, do not stop taking Levoken 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoken 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levoken 750mg Tablet in the dose and duration advised by the doctor.'),
(189, 'Levoken 750mg Tablet', 'Kenn Pharmaceuticals Pvt Ltd', 'Levoken 750mg Tablet', 'Can the use of Levoken 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoken 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoken 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(190, 'Levokin 250mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 250mg Tablet', 'Is Levokin 250mg Tablet safe?', 'Levokin 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(191, 'Levokin 250mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 250mg Tablet', 'What if I forget to take a dose of Levokin 250mg Tablet?', 'If you forget a dose of Levokin 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(192, 'Levokin 250mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 250mg Tablet', 'Can the use of Levokin 250mg Tablet cause diarrhea?', 'Yes, the use of Levokin 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(193, 'Levokin 250mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 250mg Tablet', 'Can I stop taking Levokin 250mg Tablet when I feel better?', 'No, do not stop taking Levokin 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokin 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levokin 250mg Tablet in the dose and duration advised by the doctor.'),
(194, 'Levokin 250mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 250mg Tablet', 'Can the use of Levokin 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokin 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokin 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(195, 'Levokin 500mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 500mg Tablet', 'Is Levokin 500mg Tablet safe?', 'Levokin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(196, 'Levokin 500mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 500mg Tablet', 'What if I forget to take a dose of Levokin 500mg Tablet?', 'If you forget a dose of Levokin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(197, 'Levokin 500mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 500mg Tablet', 'Can the use of Levokin 500mg Tablet cause diarrhea?', 'Yes, the use of Levokin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(198, 'Levokin 500mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 500mg Tablet', 'Can I stop taking Levokin 500mg Tablet when I feel better?', 'No, do not stop taking Levokin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levokin 500mg Tablet in the dose and duration advised by the doctor.'),
(199, 'Levokin 500mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Levokin 500mg Tablet', 'Can the use of Levokin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(200, 'Levokin 5mg Tablet', 'Symbiosis Life Sciences Limited', 'Levokin 5mg Tablet', 'Is Levokin 5mg Tablet a steroid? What is it used for?', 'No, Levokin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(201, 'Levokin 5mg Tablet', 'Symbiosis Life Sciences Limited', 'Levokin 5mg Tablet', 'Does Levokin 5mg Tablet make you tired and drowsy?', 'Yes, Levokin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(202, 'Levokin 5mg Tablet', 'Symbiosis Life Sciences Limited', 'Levokin 5mg Tablet', 'How long does it take for Levokin 5mg Tablet to work?', 'Levokin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(203, 'Levokin 5mg Tablet', 'Symbiosis Life Sciences Limited', 'Levokin 5mg Tablet', 'Can I take Levokin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levokin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(204, 'Levokin 5mg Tablet', 'Symbiosis Life Sciences Limited', 'Levokin 5mg Tablet', 'Is it safe to take Levokin 5mg Tablet for a long time?', 'Levokin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levokin 5mg Tablet for only as long as you need it.'),
(205, 'Levokin 5mg Tablet', 'Symbiosis Life Sciences Limited', 'Levokin 5mg Tablet', 'For how long should I continue Levokin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levokin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levokin 5mg Tablet'),
(206, 'Levokin M 5mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levokin M 5mg/10mg Tablet', 'What is Levokin M 5mg/10mg Tablet?', 'Levokin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(207, 'Levokin M 5mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levokin M 5mg/10mg Tablet', 'Can the use of Levokin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(208, 'Levokin M 5mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levokin M 5mg/10mg Tablet', 'Can Levokin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levokin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(209, 'Levokin M 5mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levokin M 5mg/10mg Tablet', 'Can the use of Levokin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levokin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(210, 'Levokin M 5mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levokin M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levokin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levokin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokin M 5mg/10mg Tablet.'),
(211, 'Levokin M 5mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levokin M 5mg/10mg Tablet', 'Will Levokin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(212, 'Levokin M 5mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levokin M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levokin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(213, 'Levokind 250 Tablet', 'Mankind Pharma Ltd', 'Levokind 250 Tablet', 'Q. Is Levokind 250 Tablet safe?', 'Levokind 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(214, 'Levokind 250 Tablet', 'Mankind Pharma Ltd', 'Levokind 250 Tablet', 'Q. What if I forget to take a dose of Levokind 250 Tablet?', 'If you forget a dose of Levokind 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(215, 'Levokind 250 Tablet', 'Mankind Pharma Ltd', 'Levokind 250 Tablet', 'Q. Can the use of Levokind 250 Tablet cause diarrhea?', 'Yes, the use of Levokind 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(216, 'Levokind 250 Tablet', 'Mankind Pharma Ltd', 'Levokind 250 Tablet', 'Q. Can I stop taking Levokind 250 Tablet when I feel better?', 'No, do not stop taking Levokind 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokind 250 Tablet too early, the symptoms may return or worsen. Continue taking Levokind 250 Tablet in the dose and duration advised by the doctor.'),
(217, 'Levokind 250 Tablet', 'Mankind Pharma Ltd', 'Levokind 250 Tablet', 'Q. Can the use of Levokind 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levokind 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokind 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(218, 'Levokind-M Tablet', 'Indigo Pharmatech', 'Levokind-M Tablet', 'What is Levokind-M Tablet?', 'Levokind-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(219, 'Levokind-M Tablet', 'Indigo Pharmatech', 'Levokind-M Tablet', 'Can the use of Levokind-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokind-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(220, 'Levokind-M Tablet', 'Indigo Pharmatech', 'Levokind-M Tablet', 'Can Levokind-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levokind-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(221, 'Levokind-M Tablet', 'Indigo Pharmatech', 'Levokind-M Tablet', 'Can the use of Levokind-M Tablet cause dry mouth?', 'Yes, the use of Levokind-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(222, 'Levokind-M Tablet', 'Indigo Pharmatech', 'Levokind-M Tablet', 'Can I drink alcohol while taking Levokind-M Tablet?', 'No, do not take alcohol while taking Levokind-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokind-M Tablet.'),
(223, 'Levokind-M Tablet', 'Indigo Pharmatech', 'Levokind-M Tablet', 'Will Levokind-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokind-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(224, 'Levokind-M Tablet', 'Indigo Pharmatech', 'Levokind-M Tablet', 'What are the instructions for storage and disposal of Levokind-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(225, 'Levoking 500mg Tablet', 'Renata Limited', 'Levoking 500mg Tablet', 'Is Levoking 500mg Tablet safe?', 'Levoking 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(226, 'Levoking 500mg Tablet', 'Renata Limited', 'Levoking 500mg Tablet', 'What if I forget to take a dose of Levoking 500mg Tablet?', 'If you forget a dose of Levoking 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(227, 'Levoking 500mg Tablet', 'Renata Limited', 'Levoking 500mg Tablet', 'Can the use of Levoking 500mg Tablet cause diarrhea?', 'Yes, the use of Levoking 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(228, 'Levoking 500mg Tablet', 'Renata Limited', 'Levoking 500mg Tablet', 'Can I stop taking Levoking 500mg Tablet when I feel better?', 'No, do not stop taking Levoking 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoking 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoking 500mg Tablet in the dose and duration advised by the doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(229, 'Levoking 500mg Tablet', 'Renata Limited', 'Levoking 500mg Tablet', 'Can the use of Levoking 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoking 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoking 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(230, 'Levokinz 250 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 250 Tablet', 'Is Levokinz 250 Tablet safe?', 'Levokinz 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(231, 'Levokinz 250 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 250 Tablet', 'What if I forget to take a dose of Levokinz 250 Tablet?', 'If you forget a dose of Levokinz 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(232, 'Levokinz 250 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 250 Tablet', 'Can the use of Levokinz 250 Tablet cause diarrhea?', 'Yes, the use of Levokinz 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(233, 'Levokinz 250 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 250 Tablet', 'Can I stop taking Levokinz 250 Tablet when I feel better?', 'No, do not stop taking Levokinz 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokinz 250 Tablet too early, the symptoms may return or worsen. Continue taking Levokinz 250 Tablet in the dose and duration advised by the doctor.'),
(234, 'Levokinz 250 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 250 Tablet', 'Can the use of Levokinz 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levokinz 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokinz 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(235, 'Levokinz 500 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 500 Tablet', 'Is Levokinz 500 Tablet safe?', 'Levokinz 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(236, 'Levokinz 500 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 500 Tablet', 'What if I forget to take a dose of Levokinz 500 Tablet?', 'If you forget a dose of Levokinz 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(237, 'Levokinz 500 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 500 Tablet', 'Can the use of Levokinz 500 Tablet cause diarrhea?', 'Yes, the use of Levokinz 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(238, 'Levokinz 500 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 500 Tablet', 'Can I stop taking Levokinz 500 Tablet when I feel better?', 'No, do not stop taking Levokinz 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokinz 500 Tablet too early, the symptoms may return or worsen. Continue taking Levokinz 500 Tablet in the dose and duration advised by the doctor.'),
(239, 'Levokinz 500 Tablet', 'Henin Lukinz Pvt Ltd', 'Levokinz 500 Tablet', 'Can the use of Levokinz 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levokinz 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokinz 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(240, 'Levokit 5mg Tablet', 'Msb Pharma Private Limited', 'Levokit 5mg Tablet', 'Is Levokit 5mg Tablet a steroid? What is it used for?', 'No, Levokit 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(241, 'Levokit 5mg Tablet', 'Msb Pharma Private Limited', 'Levokit 5mg Tablet', 'Does Levokit 5mg Tablet make you tired and drowsy?', 'Yes, Levokit 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(242, 'Levokit 5mg Tablet', 'Msb Pharma Private Limited', 'Levokit 5mg Tablet', 'How long does it take for Levokit 5mg Tablet to work?', 'Levokit 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(243, 'Levokit 5mg Tablet', 'Msb Pharma Private Limited', 'Levokit 5mg Tablet', 'Can I take Levokit 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levokit 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(244, 'Levokit 5mg Tablet', 'Msb Pharma Private Limited', 'Levokit 5mg Tablet', 'Is it safe to take Levokit 5mg Tablet for a long time?', 'Levokit 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levokit 5mg Tablet for only as long as you need it.'),
(245, 'Levokit 5mg Tablet', 'Msb Pharma Private Limited', 'Levokit 5mg Tablet', 'For how long should I continue Levokit 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levokit 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levokit 5mg Tablet'),
(246, 'Levokit M 5mg/10mg Tablet', 'Msb Pharma Private Limited', 'Levokit M 5mg/10mg Tablet (Msb Pharma Private Limited)', 'What is Levokit M 5mg/10mg Tablet?', 'Levokit M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(247, 'Levokit M 5mg/10mg Tablet', 'Msb Pharma Private Limited', 'Levokit M 5mg/10mg Tablet (Msb Pharma Private Limited)', 'Can the use of Levokit M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokit M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(248, 'Levokit M 5mg/10mg Tablet', 'Msb Pharma Private Limited', 'Levokit M 5mg/10mg Tablet (Msb Pharma Private Limited)', 'Can Levokit M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levokit M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(249, 'Levokit M 5mg/10mg Tablet', 'Msb Pharma Private Limited', 'Levokit M 5mg/10mg Tablet (Msb Pharma Private Limited)', 'Can the use of Levokit M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levokit M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(250, 'Levokit M 5mg/10mg Tablet', 'Msb Pharma Private Limited', 'Levokit M 5mg/10mg Tablet (Msb Pharma Private Limited)', 'Can I drink alcohol while taking Levokit M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levokit M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokit M 5mg/10mg Tablet.'),
(251, 'Levokit M 5mg/10mg Tablet', 'Msb Pharma Private Limited', 'Levokit M 5mg/10mg Tablet (Msb Pharma Private Limited)', 'Will Levokit M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokit M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(252, 'Levokit M 5mg/10mg Tablet', 'Msb Pharma Private Limited', 'Levokit M 5mg/10mg Tablet (Msb Pharma Private Limited)', 'What are the instructions for storage and disposal of Levokit M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(253, 'Levokit M 5mg/10mg Tablet', 'Biovensia Pharmaceutical', 'Levokit M 5mg/10mg Tablet (Biovensia Pharmaceutical)', 'What is Levokit M 5mg/10mg Tablet?', 'Levokit M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(254, 'Levokit M 5mg/10mg Tablet', 'Biovensia Pharmaceutical', 'Levokit M 5mg/10mg Tablet (Biovensia Pharmaceutical)', 'Can the use of Levokit M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokit M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(255, 'Levokit M 5mg/10mg Tablet', 'Biovensia Pharmaceutical', 'Levokit M 5mg/10mg Tablet (Biovensia Pharmaceutical)', 'Can Levokit M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levokit M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(256, 'Levokit M 5mg/10mg Tablet', 'Biovensia Pharmaceutical', 'Levokit M 5mg/10mg Tablet (Biovensia Pharmaceutical)', 'Can the use of Levokit M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levokit M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(257, 'Levokit M 5mg/10mg Tablet', 'Biovensia Pharmaceutical', 'Levokit M 5mg/10mg Tablet (Biovensia Pharmaceutical)', 'Can I drink alcohol while taking Levokit M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levokit M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokit M 5mg/10mg Tablet.'),
(258, 'Levokit M 5mg/10mg Tablet', 'Biovensia Pharmaceutical', 'Levokit M 5mg/10mg Tablet (Biovensia Pharmaceutical)', 'Will Levokit M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokit M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(259, 'Levokit M 5mg/10mg Tablet', 'Biovensia Pharmaceutical', 'Levokit M 5mg/10mg Tablet (Biovensia Pharmaceutical)', 'What are the instructions for storage and disposal of Levokit M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(260, 'Levokit Tablet', 'Biovensia Pharmaceutical', 'Levokit Tablet', 'Is Levokit Tablet a steroid? What is it used for?', 'No, Levokit Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(261, 'Levokit Tablet', 'Biovensia Pharmaceutical', 'Levokit Tablet', 'Does Levokit Tablet make you tired and drowsy?', 'Yes, Levokit Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(262, 'Levokit Tablet', 'Biovensia Pharmaceutical', 'Levokit Tablet', 'How long does it take for Levokit Tablet to work?', 'Levokit Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(263, 'Levokit Tablet', 'Biovensia Pharmaceutical', 'Levokit Tablet', 'Can I take Levokit Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levokit Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(264, 'Levokit Tablet', 'Biovensia Pharmaceutical', 'Levokit Tablet', 'Is it safe to take Levokit Tablet for a long time?', 'Levokit Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levokit Tablet for only as long as you need it.'),
(265, 'Levokit Tablet', 'Biovensia Pharmaceutical', 'Levokit Tablet', 'For how long should I continue Levokit Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levokit Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levokit Tablet'),
(266, 'Levoknot OZ Oral Suspension', 'Pretence Pharmaceutical', 'Levoknot OZ Oral Suspension', 'What if I don\'t get better after using Levoknot OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(267, 'Levoknot OZ Oral Suspension', 'Pretence Pharmaceutical', 'Levoknot OZ Oral Suspension', 'Can I stop taking Levoknot OZ Oral Suspension when I feel better?', 'No, do not stop taking Levoknot OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(268, 'Levoknot OZ Oral Suspension', 'Pretence Pharmaceutical', 'Levoknot OZ Oral Suspension', 'What if I miss my dose?', 'Take Levoknot OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(269, 'Levokof AM Syrup', 'Eracure Healthcare', 'Levokof AM Syrup', 'Will a higher than the recommended dose of Levokof AM Syrup be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Levokof AM Syrup, please consult your doctor.'),
(270, 'Levokof AM Syrup', 'Eracure Healthcare', 'Levokof AM Syrup', 'In which type of cough will the doctor prescribe Levokof AM Syrup?', 'Levokof AM Syrup is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(271, 'Levokof AM Syrup', 'Eracure Healthcare', 'Levokof AM Syrup', 'Are there any contraindications associated with use of Levokof AM Syrup?', 'It is not recommended to use Levokof AM Syrup if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(272, 'Levokof AM Syrup', 'Eracure Healthcare', 'Levokof AM Syrup', 'What are the instructions for the storage and disposal of Levokof AM Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(273, 'Levokof B Syrup', 'Eracure Healthcare', 'Levokof B Syrup', 'Will Levokof B Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(274, 'Levokof B Syrup', 'Eracure Healthcare', 'Levokof B Syrup', 'What are the instructions for storage and disposal of Levokof B Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(275, 'Levokof DM Syrup', 'Eracure Healthcare', 'Levokof DM Syrup', 'Can the use of Levokof DM Syrup cause sleepiness or drowsiness?', 'Yes, Levokof DM Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(276, 'Levokof DM Syrup', 'Eracure Healthcare', 'Levokof DM Syrup', 'Will Levokof DM Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(277, 'Levokof DM Syrup', 'Eracure Healthcare', 'Levokof DM Syrup', 'Can I breastfeed while taking Levokof DM Syrup?', 'No, it is not advisable to breastfeed while using Levokof DM Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(278, 'Levokof DM Syrup', 'Eracure Healthcare', 'Levokof DM Syrup', 'What are the instructions for storage and disposal of Levokof DM Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(279, 'Levokof L Syrup Sugar Free', 'Eracure Healthcare', 'Levokof L Syrup Sugar Free', 'What is Levokof L Syrup Sugar Free?', 'Levokof L Syrup Sugar Free is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(280, 'Levokof L Syrup Sugar Free', 'Eracure Healthcare', 'Levokof L Syrup Sugar Free', 'Is it safe to use Levokof L Syrup Sugar Free?', 'Yes, it is safe to use Levokof L Syrup Sugar Free in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(281, 'Levokof L Syrup Sugar Free', 'Eracure Healthcare', 'Levokof L Syrup Sugar Free', 'Are there any specific contraindications associated with the use of Levokof L Syrup Sugar Free?', 'Use of Levokof L Syrup Sugar Free is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(282, 'Levokof L Syrup Sugar Free', 'Eracure Healthcare', 'Levokof L Syrup Sugar Free', 'Can the use of Levokof L Syrup Sugar Free cause dizziness?', 'Yes, the use of Levokof L Syrup Sugar Free can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(283, 'Levokof L Syrup Sugar Free', 'Eracure Healthcare', 'Levokof L Syrup Sugar Free', 'Can the use of Levokof L Syrup Sugar Free cause diarrhea?', 'Yes, the use of Levokof L Syrup Sugar Free can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(284, 'Levokof L Syrup Sugar Free', 'Eracure Healthcare', 'Levokof L Syrup Sugar Free', 'What are the recommended storage conditions for Levokof L Syrup Sugar Free?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(285, 'Levokof LS Junior Oral Suspension', 'Eracure Healthcare', 'Levokof LS Junior Oral Suspension', 'What is Levokof LS Junior Oral Suspension?', 'Levokof LS Junior Oral Suspension is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(286, 'Levokof LS Junior Oral Suspension', 'Eracure Healthcare', 'Levokof LS Junior Oral Suspension', 'Is it safe to use Levokof LS Junior Oral Suspension?', 'Yes, it is safe to use Levokof LS Junior Oral Suspension in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(287, 'Levokof LS Junior Oral Suspension', 'Eracure Healthcare', 'Levokof LS Junior Oral Suspension', 'Are there any specific contraindications associated with the use of Levokof LS Junior Oral Suspension?', 'Use of Levokof LS Junior Oral Suspension is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(288, 'Levokof LS Junior Oral Suspension', 'Eracure Healthcare', 'Levokof LS Junior Oral Suspension', 'Can the use of Levokof LS Junior Oral Suspension cause dizziness?', 'Yes, the use of Levokof LS Junior Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(289, 'Levokof LS Junior Oral Suspension', 'Eracure Healthcare', 'Levokof LS Junior Oral Suspension', 'Can the use of Levokof LS Junior Oral Suspension cause diarrhea?', 'Yes, the use of Levokof LS Junior Oral Suspension can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(290, 'Levokof LS Junior Oral Suspension', 'Eracure Healthcare', 'Levokof LS Junior Oral Suspension', 'What are the recommended storage conditions for Levokof LS Junior Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(291, 'Levokof LS Oral Drops Sugar Free', 'Matins Pharma', 'Levokof LS Oral Drops Sugar Free', 'What is Levokof LS Oral Drops Sugar Free?', 'Levokof LS Oral Drops Sugar Free is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(292, 'Levokof LS Oral Drops Sugar Free', 'Matins Pharma', 'Levokof LS Oral Drops Sugar Free', 'Is it safe to use Levokof LS Oral Drops Sugar Free?', 'Yes, it is safe to use Levokof LS Oral Drops Sugar Free in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(293, 'Levokof LS Oral Drops Sugar Free', 'Matins Pharma', 'Levokof LS Oral Drops Sugar Free', 'Are there any specific contraindications associated with the use of Levokof LS Oral Drops Sugar Free?', 'Use of Levokof LS Oral Drops Sugar Free is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(294, 'Levokof LS Oral Drops Sugar Free', 'Matins Pharma', 'Levokof LS Oral Drops Sugar Free', 'Can the use of Levokof LS Oral Drops Sugar Free cause dizziness?', 'Yes, the use of Levokof LS Oral Drops Sugar Free can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(295, 'Levokof LS Oral Drops Sugar Free', 'Matins Pharma', 'Levokof LS Oral Drops Sugar Free', 'Can the use of Levokof LS Oral Drops Sugar Free cause diarrhea?', 'Yes, the use of Levokof LS Oral Drops Sugar Free can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(296, 'Levokof LS Oral Drops Sugar Free', 'Matins Pharma', 'Levokof LS Oral Drops Sugar Free', 'What are the recommended storage conditions for Levokof LS Oral Drops Sugar Free?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(297, 'Levokof LS Syrup', 'Matins Pharma', 'Levokof LS Syrup', 'What is Levokof LS Syrup?', 'Levokof LS Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(298, 'Levokof LS Syrup', 'Matins Pharma', 'Levokof LS Syrup', 'Is it safe to use Levokof LS Syrup?', 'Yes, it is safe to use Levokof LS Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(299, 'Levokof LS Syrup', 'Matins Pharma', 'Levokof LS Syrup', 'Are there any specific contraindications associated with the use of Levokof LS Syrup?', 'Use of Levokof LS Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(300, 'Levokof LS Syrup', 'Matins Pharma', 'Levokof LS Syrup', 'Can the use of Levokof LS Syrup cause dizziness?', 'Yes, the use of Levokof LS Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(301, 'Levokof LS Syrup', 'Matins Pharma', 'Levokof LS Syrup', 'Can the use of Levokof LS Syrup cause diarrhea?', 'Yes, the use of Levokof LS Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(302, 'Levokof LS Syrup', 'Matins Pharma', 'Levokof LS Syrup', 'What are the recommended storage conditions for Levokof LS Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(303, 'Levokof Oral Drops', 'Beulah Biomedics Ltd', 'Levokof Oral Drops', 'Can I give Levokof Oral Drops to my child who is less than 6 years of age?', 'Yes, Levokof Oral Drops is suitable to be given to the child who is between 2 to 6 years of age. Your child’s doctor may prescribe the dose depending upon your child’s body weight.'),
(304, 'Levokof Oral Drops', 'Beulah Biomedics Ltd', 'Levokof Oral Drops', 'What if my child takes too much Levokof Oral Drops?', 'An overdose or a prolonged intake of Levokof Oral Drops may cause serious side effects like seizures, rapid heart rate, excess salivation. Make sure to give this medicine to your child strictly as per the prescribed dose, time, and way. You must also ensure not to stop the medicine abruptly even if your child starts to feel better. Sudden withdrawal of this medicine may worsen your child’s condition.'),
(305, 'Levokof Oral Drops', 'Beulah Biomedics Ltd', 'Levokof Oral Drops', 'How should Levokof Oral Drops be stored?', 'Levokof Oral Drops should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any mishap.'),
(306, 'Levokof Oral Drops', 'Beulah Biomedics Ltd', 'Levokof Oral Drops', 'My child has a severe cough. Can I give him two cough medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by your child’s doctor. In case of confusion, always consult your child’s doctor before giving any medicine to your child.'),
(307, 'Levokof Oral Drops', 'Beulah Biomedics Ltd', 'Levokof Oral Drops', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines that have been formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before giving it to your child. Follow the prescribed dose strictly.'),
(308, 'Levokof Oral Drops', 'Beulah Biomedics Ltd', 'Levokof Oral Drops', 'My child is having a cough with no mucus. Can I give Levokof Oral Drops to him?', 'No, Levokof Oral Drops is advised for the treatment of wet cough. It aims to expel the mucus from the airway tract, thereby relieving your child from throat irritation, congestion and rendering him a soothing effect. Whereas, for a dry cough, cough suppressants are a better option. So, it will be wise if you ask your child’s doctor before giving any medicine to your child.'),
(309, 'Levokof Syrup', 'Beulah Biomedics Ltd', 'Levokof Syrup', 'What is Levokof Syrup?', 'Levokof Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(310, 'Levokof Syrup', 'Beulah Biomedics Ltd', 'Levokof Syrup', 'Is it safe to use Levokof Syrup?', 'Yes, it is safe to use Levokof Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(311, 'Levokof Syrup', 'Beulah Biomedics Ltd', 'Levokof Syrup', 'Are there any specific contraindications associated with the use of Levokof Syrup?', 'Use of Levokof Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(312, 'Levokof Syrup', 'Beulah Biomedics Ltd', 'Levokof Syrup', 'Can the use of Levokof Syrup cause dizziness?', 'Yes, the use of Levokof Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(313, 'Levokof Syrup', 'Beulah Biomedics Ltd', 'Levokof Syrup', 'Can the use of Levokof Syrup cause diarrhea?', 'Yes, the use of Levokof Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(314, 'Levokof Syrup', 'Beulah Biomedics Ltd', 'Levokof Syrup', 'What are the recommended storage conditions for Levokof Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(315, 'Levokof-LS Junior Syrup', 'Matins Pharma', 'Levokof-LS Junior Syrup', 'What is Levokof-LS Junior Syrup?', 'Levokof-LS Junior Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(316, 'Levokof-LS Junior Syrup', 'Matins Pharma', 'Levokof-LS Junior Syrup', 'Is it safe to use Levokof-LS Junior Syrup?', 'Yes, it is safe to use Levokof-LS Junior Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(317, 'Levokof-LS Junior Syrup', 'Matins Pharma', 'Levokof-LS Junior Syrup', 'Are there any specific contraindications associated with the use of Levokof-LS Junior Syrup?', 'Use of Levokof-LS Junior Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(318, 'Levokof-LS Junior Syrup', 'Matins Pharma', 'Levokof-LS Junior Syrup', 'Can the use of Levokof-LS Junior Syrup cause dizziness?', 'Yes, the use of Levokof-LS Junior Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(319, 'Levokof-LS Junior Syrup', 'Matins Pharma', 'Levokof-LS Junior Syrup', 'Can the use of Levokof-LS Junior Syrup cause diarrhea?', 'Yes, the use of Levokof-LS Junior Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(320, 'Levokof-LS Junior Syrup', 'Matins Pharma', 'Levokof-LS Junior Syrup', 'What are the recommended storage conditions for Levokof-LS Junior Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(321, 'Levokof-LS Syrup', 'Matins Pharma', 'Levokof-LS Syrup', 'What is Levokof-LS Syrup?', 'Levokof-LS Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(322, 'Levokof-LS Syrup', 'Matins Pharma', 'Levokof-LS Syrup', 'Is it safe to use Levokof-LS Syrup?', 'Yes, it is safe to use Levokof-LS Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(323, 'Levokof-LS Syrup', 'Matins Pharma', 'Levokof-LS Syrup', 'Are there any specific contraindications associated with the use of Levokof-LS Syrup?', 'Use of Levokof-LS Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(324, 'Levokof-LS Syrup', 'Matins Pharma', 'Levokof-LS Syrup', 'Can the use of Levokof-LS Syrup cause dizziness?', 'Yes, the use of Levokof-LS Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(325, 'Levokof-LS Syrup', 'Matins Pharma', 'Levokof-LS Syrup', 'Can the use of Levokof-LS Syrup cause diarrhea?', 'Yes, the use of Levokof-LS Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(326, 'Levokof-LS Syrup', 'Matins Pharma', 'Levokof-LS Syrup', 'What are the recommended storage conditions for Levokof-LS Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(327, 'Levokof-LS Syrup Pineapple', 'Matins Pharma', 'Levokof-LS Syrup Pineapple', 'What is Levokof-LS Syrup Pineapple?', 'Levokof-LS Syrup Pineapple is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(328, 'Levokof-LS Syrup Pineapple', 'Matins Pharma', 'Levokof-LS Syrup Pineapple', 'Is it safe to use Levokof-LS Syrup Pineapple?', 'Yes, it is safe to use Levokof-LS Syrup Pineapple in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(329, 'Levokof-LS Syrup Pineapple', 'Matins Pharma', 'Levokof-LS Syrup Pineapple', 'Are there any specific contraindications associated with the use of Levokof-LS Syrup Pineapple?', 'Use of Levokof-LS Syrup Pineapple is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(330, 'Levokof-LS Syrup Pineapple', 'Matins Pharma', 'Levokof-LS Syrup Pineapple', 'Can the use of Levokof-LS Syrup Pineapple cause dizziness?', 'Yes, the use of Levokof-LS Syrup Pineapple can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(331, 'Levokof-LS Syrup Pineapple', 'Matins Pharma', 'Levokof-LS Syrup Pineapple', 'Can the use of Levokof-LS Syrup Pineapple cause diarrhea?', 'Yes, the use of Levokof-LS Syrup Pineapple can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(332, 'Levokof-LS Syrup Pineapple', 'Matins Pharma', 'Levokof-LS Syrup Pineapple', 'What are the recommended storage conditions for Levokof-LS Syrup Pineapple?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(333, 'Levokon Tablet', 'Eskon Pharma', 'Levokon Tablet', 'Is Levokon Tablet a steroid? What is it used for?', 'No, Levokon Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(334, 'Levokon Tablet', 'Eskon Pharma', 'Levokon Tablet', 'Does Levokon Tablet make you tired and drowsy?', 'Yes, Levokon Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(335, 'Levokon Tablet', 'Eskon Pharma', 'Levokon Tablet', 'How long does it take for Levokon Tablet to work?', 'Levokon Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(336, 'Levokon Tablet', 'Eskon Pharma', 'Levokon Tablet', 'Can I take Levokon Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levokon Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(337, 'Levokon Tablet', 'Eskon Pharma', 'Levokon Tablet', 'Is it safe to take Levokon Tablet for a long time?', 'Levokon Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levokon Tablet for only as long as you need it.'),
(338, 'Levokon Tablet', 'Eskon Pharma', 'Levokon Tablet', 'For how long should I continue Levokon Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levokon Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levokon Tablet');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(339, 'Levokon-M Tablet', 'Eskon Pharma', 'Levokon-M Tablet', 'Q. What is Levokon-M Tablet?', 'Levokon-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(340, 'Levokon-M Tablet', 'Eskon Pharma', 'Levokon-M Tablet', 'Q. Can the use of Levokon-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokon-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(341, 'Levokon-M Tablet', 'Eskon Pharma', 'Levokon-M Tablet', 'Q. Can Levokon-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levokon-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(342, 'Levokon-M Tablet', 'Eskon Pharma', 'Levokon-M Tablet', 'Q. Can the use of Levokon-M Tablet cause dry mouth?', 'Yes, the use of Levokon-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(343, 'Levokon-M Tablet', 'Eskon Pharma', 'Levokon-M Tablet', 'Q. Can I drink alcohol while taking Levokon-M Tablet?', 'No, do not take alcohol while taking Levokon-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokon-M Tablet.'),
(344, 'Levokon-M Tablet', 'Eskon Pharma', 'Levokon-M Tablet', 'Q. Will Levokon-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokon-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(345, 'Levokon-M Tablet', 'Eskon Pharma', 'Levokon-M Tablet', 'Q. What are the instructions for storage and disposal of Levokon-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(346, 'Levokos 250mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 250mg Tablet', 'Is Levokos 250mg Tablet safe?', 'Levokos 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(347, 'Levokos 250mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 250mg Tablet', 'What if I forget to take a dose of Levokos 250mg Tablet?', 'If you forget a dose of Levokos 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(348, 'Levokos 250mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 250mg Tablet', 'Can the use of Levokos 250mg Tablet cause diarrhea?', 'Yes, the use of Levokos 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(349, 'Levokos 250mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 250mg Tablet', 'Can I stop taking Levokos 250mg Tablet when I feel better?', 'No, do not stop taking Levokos 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokos 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levokos 250mg Tablet in the dose and duration advised by the doctor.'),
(350, 'Levokos 250mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 250mg Tablet', 'Can the use of Levokos 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokos 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokos 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(351, 'Levokos 500mg Infusion', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Infusion', 'Is Levokos 500mg Infusion safe?', 'Levokos 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(352, 'Levokos 500mg Infusion', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Infusion', 'Can the use of Levokos 500mg Infusion cause diarrhea?', 'Yes, the use of Levokos 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(353, 'Levokos 500mg Infusion', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Infusion', 'Can the use of Levokos 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levokos 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokos 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(354, 'Levokos 500mg Infusion', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Infusion', 'How is Levokos 500mg Infusion administered?', 'Levokos 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levokos 500mg Infusion.'),
(355, 'Levokos 500mg Infusion', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Infusion', 'Is Levokos 500mg Infusion effective?', 'Levokos 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levokos 500mg Infusion too early, the symptoms may return or worsen.'),
(356, 'Levokos 500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Tablet', 'Is Levokos 500mg Tablet safe?', 'Levokos 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(357, 'Levokos 500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Tablet', 'What if I forget to take a dose of Levokos 500mg Tablet?', 'If you forget a dose of Levokos 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(358, 'Levokos 500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Tablet', 'Can the use of Levokos 500mg Tablet cause diarrhea?', 'Yes, the use of Levokos 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(359, 'Levokos 500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Tablet', 'Can I stop taking Levokos 500mg Tablet when I feel better?', 'No, do not stop taking Levokos 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokos 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levokos 500mg Tablet in the dose and duration advised by the doctor.'),
(360, 'Levokos 500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 500mg Tablet', 'Can the use of Levokos 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokos 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokos 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(361, 'Levokos 750mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 750mg Tablet', 'Is Levokos 750mg Tablet safe?', 'Levokos 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(362, 'Levokos 750mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 750mg Tablet', 'What if I forget to take a dose of Levokos 750mg Tablet?', 'If you forget a dose of Levokos 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(363, 'Levokos 750mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 750mg Tablet', 'Can the use of Levokos 750mg Tablet cause diarrhea?', 'Yes, the use of Levokos 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(364, 'Levokos 750mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 750mg Tablet', 'Can I stop taking Levokos 750mg Tablet when I feel better?', 'No, do not stop taking Levokos 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokos 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levokos 750mg Tablet in the dose and duration advised by the doctor.'),
(365, 'Levokos 750mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos 750mg Tablet', 'Can the use of Levokos 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokos 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokos 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(366, 'Levokos OZ 250mg/500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levokos OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(367, 'Levokos OZ 250mg/500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos OZ 250mg/500mg Tablet', 'Can I stop taking Levokos OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levokos OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(368, 'Levokos OZ 250mg/500mg Tablet', 'Elkos Healthcare Pvt Ltd', 'Levokos OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levokos OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(369, 'Levokos OZ Oral Suspension', 'Elkos Healthcare Pvt Ltd', 'Levokos OZ Oral Suspension', 'What if I don\'t get better after using Levokos OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(370, 'Levokos OZ Oral Suspension', 'Elkos Healthcare Pvt Ltd', 'Levokos OZ Oral Suspension', 'Can I stop taking Levokos OZ Oral Suspension when I feel better?', 'No, do not stop taking Levokos OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(371, 'Levokos OZ Oral Suspension', 'Elkos Healthcare Pvt Ltd', 'Levokos OZ Oral Suspension', 'What if I miss my dose?', 'Take Levokos OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(372, 'Levokot 5 Tablet', 'Kotiya Pharma', 'Levokot 5 Tablet', 'Is Levokot 5 Tablet a steroid? What is it used for?', 'No, Levokot 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(373, 'Levokot 5 Tablet', 'Kotiya Pharma', 'Levokot 5 Tablet', 'Does Levokot 5 Tablet make you tired and drowsy?', 'Yes, Levokot 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(374, 'Levokot 5 Tablet', 'Kotiya Pharma', 'Levokot 5 Tablet', 'How long does it take for Levokot 5 Tablet to work?', 'Levokot 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(375, 'Levokot 5 Tablet', 'Kotiya Pharma', 'Levokot 5 Tablet', 'Can I take Levokot 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levokot 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(376, 'Levokot 5 Tablet', 'Kotiya Pharma', 'Levokot 5 Tablet', 'Is it safe to take Levokot 5 Tablet for a long time?', 'Levokot 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levokot 5 Tablet for only as long as you need it.'),
(377, 'Levokot 5 Tablet', 'Kotiya Pharma', 'Levokot 5 Tablet', 'For how long should I continue Levokot 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levokot 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levokot 5 Tablet'),
(378, 'Levokot-M Tablet', 'Kotiya Pharma', 'Levokot-M Tablet', 'What is Levokot-M Tablet?', 'Levokot-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(379, 'Levokot-M Tablet', 'Kotiya Pharma', 'Levokot-M Tablet', 'Can the use of Levokot-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levokot-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(380, 'Levokot-M Tablet', 'Kotiya Pharma', 'Levokot-M Tablet', 'Can Levokot-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levokot-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(381, 'Levokot-M Tablet', 'Kotiya Pharma', 'Levokot-M Tablet', 'Can the use of Levokot-M Tablet cause dry mouth?', 'Yes, the use of Levokot-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(382, 'Levokot-M Tablet', 'Kotiya Pharma', 'Levokot-M Tablet', 'Can I drink alcohol while taking Levokot-M Tablet?', 'No, do not take alcohol while taking Levokot-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levokot-M Tablet.'),
(383, 'Levokot-M Tablet', 'Kotiya Pharma', 'Levokot-M Tablet', 'Will Levokot-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levokot-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(384, 'Levokot-M Tablet', 'Kotiya Pharma', 'Levokot-M Tablet', 'What are the instructions for storage and disposal of Levokot-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(385, 'Levoksh M 5mg/10mg Tablet', 'Taksha Remedies Pvt Ltd', 'Levoksh M 5mg/10mg Tablet', 'What is Levoksh M 5mg/10mg Tablet?', 'Levoksh M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(386, 'Levoksh M 5mg/10mg Tablet', 'Taksha Remedies Pvt Ltd', 'Levoksh M 5mg/10mg Tablet', 'Can the use of Levoksh M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoksh M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(387, 'Levoksh M 5mg/10mg Tablet', 'Taksha Remedies Pvt Ltd', 'Levoksh M 5mg/10mg Tablet', 'Can Levoksh M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoksh M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(388, 'Levoksh M 5mg/10mg Tablet', 'Taksha Remedies Pvt Ltd', 'Levoksh M 5mg/10mg Tablet', 'Can the use of Levoksh M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoksh M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(389, 'Levoksh M 5mg/10mg Tablet', 'Taksha Remedies Pvt Ltd', 'Levoksh M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoksh M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoksh M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoksh M 5mg/10mg Tablet.'),
(390, 'Levoksh M 5mg/10mg Tablet', 'Taksha Remedies Pvt Ltd', 'Levoksh M 5mg/10mg Tablet', 'Will Levoksh M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoksh M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(391, 'Levoksh M 5mg/10mg Tablet', 'Taksha Remedies Pvt Ltd', 'Levoksh M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoksh M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(392, 'Levokwid 500 Tablet', 'Avion Healthcare Pvt Ltd', 'Levokwid 500 Tablet', 'Is Levokwid 500 Tablet safe?', 'Levokwid 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(393, 'Levokwid 500 Tablet', 'Avion Healthcare Pvt Ltd', 'Levokwid 500 Tablet', 'What if I forget to take a dose of Levokwid 500 Tablet?', 'If you forget a dose of Levokwid 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(394, 'Levokwid 500 Tablet', 'Avion Healthcare Pvt Ltd', 'Levokwid 500 Tablet', 'Can the use of Levokwid 500 Tablet cause diarrhea?', 'Yes, the use of Levokwid 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(395, 'Levokwid 500 Tablet', 'Avion Healthcare Pvt Ltd', 'Levokwid 500 Tablet', 'Can I stop taking Levokwid 500 Tablet when I feel better?', 'No, do not stop taking Levokwid 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokwid 500 Tablet too early, the symptoms may return or worsen. Continue taking Levokwid 500 Tablet in the dose and duration advised by the doctor.'),
(396, 'Levokwid 500 Tablet', 'Avion Healthcare Pvt Ltd', 'Levokwid 500 Tablet', 'Can the use of Levokwid 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levokwid 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokwid 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(397, 'Levokwid-OZ Oral Suspension', 'Avion Healthcare Pvt Ltd', 'Levokwid-OZ Oral Suspension', 'What if I don\'t get better after using Levokwid-OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(398, 'Levokwid-OZ Oral Suspension', 'Avion Healthcare Pvt Ltd', 'Levokwid-OZ Oral Suspension', 'Can I stop taking Levokwid-OZ Oral Suspension when I feel better?', 'No, do not stop taking Levokwid-OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(399, 'Levokwid-OZ Oral Suspension', 'Avion Healthcare Pvt Ltd', 'Levokwid-OZ Oral Suspension', 'What if I miss my dose?', 'Take Levokwid-OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(400, 'Levokya 5mg Tablet', 'Kruger Nutra Med Pvt Ltd', 'Levokya 5mg Tablet', 'Is Levokya 5mg Tablet a steroid? What is it used for?', 'No, Levokya 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(401, 'Levokya 5mg Tablet', 'Kruger Nutra Med Pvt Ltd', 'Levokya 5mg Tablet', 'Does Levokya 5mg Tablet make you tired and drowsy?', 'Yes, Levokya 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(402, 'Levokya 5mg Tablet', 'Kruger Nutra Med Pvt Ltd', 'Levokya 5mg Tablet', 'How long does it take for Levokya 5mg Tablet to work?', 'Levokya 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(403, 'Levokya 5mg Tablet', 'Kruger Nutra Med Pvt Ltd', 'Levokya 5mg Tablet', 'Can I take Levokya 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levokya 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(404, 'Levokya 5mg Tablet', 'Kruger Nutra Med Pvt Ltd', 'Levokya 5mg Tablet', 'Is it safe to take Levokya 5mg Tablet for a long time?', 'Levokya 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levokya 5mg Tablet for only as long as you need it.'),
(405, 'Levokya 5mg Tablet', 'Kruger Nutra Med Pvt Ltd', 'Levokya 5mg Tablet', 'For how long should I continue Levokya 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levokya 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levokya 5mg Tablet'),
(406, 'Levokyne 500mg Tablet', 'Kyna Pharmaceuticals', 'Levokyne 500mg Tablet', 'Is Levokyne 500mg Tablet safe?', 'Levokyne 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(407, 'Levokyne 500mg Tablet', 'Kyna Pharmaceuticals', 'Levokyne 500mg Tablet', 'What if I forget to take a dose of Levokyne 500mg Tablet?', 'If you forget a dose of Levokyne 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(408, 'Levokyne 500mg Tablet', 'Kyna Pharmaceuticals', 'Levokyne 500mg Tablet', 'Can the use of Levokyne 500mg Tablet cause diarrhea?', 'Yes, the use of Levokyne 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(409, 'Levokyne 500mg Tablet', 'Kyna Pharmaceuticals', 'Levokyne 500mg Tablet', 'Can I stop taking Levokyne 500mg Tablet when I feel better?', 'No, do not stop taking Levokyne 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levokyne 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levokyne 500mg Tablet in the dose and duration advised by the doctor.'),
(410, 'Levokyne 500mg Tablet', 'Kyna Pharmaceuticals', 'Levokyne 500mg Tablet', 'Can the use of Levokyne 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levokyne 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levokyne 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(411, 'Levokyne OZ Oral Suspension', 'Kyna Pharmaceuticals', 'Levokyne OZ Oral Suspension', 'What if I don\'t get better after using Levokyne OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(412, 'Levokyne OZ Oral Suspension', 'Kyna Pharmaceuticals', 'Levokyne OZ Oral Suspension', 'Can I stop taking Levokyne OZ Oral Suspension when I feel better?', 'No, do not stop taking Levokyne OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(413, 'Levokyne OZ Oral Suspension', 'Kyna Pharmaceuticals', 'Levokyne OZ Oral Suspension', 'What if I miss my dose?', 'Take Levokyne OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(414, 'Levol 500mg Tablet', 'Welbe Life Sciences', 'Levol 500mg Tablet', 'Is Levol 500mg Tablet safe?', 'Levol 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(415, 'Levol 500mg Tablet', 'Welbe Life Sciences', 'Levol 500mg Tablet', 'What if I forget to take a dose of Levol 500mg Tablet?', 'If you forget a dose of Levol 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(416, 'Levol 500mg Tablet', 'Welbe Life Sciences', 'Levol 500mg Tablet', 'Can the use of Levol 500mg Tablet cause diarrhea?', 'Yes, the use of Levol 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(417, 'Levol 500mg Tablet', 'Welbe Life Sciences', 'Levol 500mg Tablet', 'Can I stop taking Levol 500mg Tablet when I feel better?', 'No, do not stop taking Levol 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levol 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levol 500mg Tablet in the dose and duration advised by the doctor.'),
(418, 'Levol 500mg Tablet', 'Welbe Life Sciences', 'Levol 500mg Tablet', 'Can the use of Levol 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levol 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levol 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(419, 'Levol 5mg Tablet MD', 'Talent Healthcare', 'Levol 5mg Tablet MD', 'Is Levol 5mg Tablet MD a steroid? What is it used for?', 'No, Levol 5mg Tablet MD is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(420, 'Levol 5mg Tablet MD', 'Talent Healthcare', 'Levol 5mg Tablet MD', 'Does Levol 5mg Tablet MD make you tired and drowsy?', 'Yes, Levol 5mg Tablet MD can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(421, 'Levol 5mg Tablet MD', 'Talent Healthcare', 'Levol 5mg Tablet MD', 'How long does it take for Levol 5mg Tablet MD to work?', 'Levol 5mg Tablet MD starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(422, 'Levol 5mg Tablet MD', 'Talent Healthcare', 'Levol 5mg Tablet MD', 'Can I take Levol 5mg Tablet MD and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levol 5mg Tablet MD during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(423, 'Levol 5mg Tablet MD', 'Talent Healthcare', 'Levol 5mg Tablet MD', 'Is it safe to take Levol 5mg Tablet MD for a long time?', 'Levol 5mg Tablet MD is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levol 5mg Tablet MD for only as long as you need it.'),
(424, 'Levol 5mg Tablet MD', 'Talent Healthcare', 'Levol 5mg Tablet MD', 'For how long should I continue Levol 5mg Tablet MD?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levol 5mg Tablet MD for a longer time. Talk to your doctor if you are unsure about the duration of using Levol 5mg Tablet MD'),
(425, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Is Levola 500mg Tablet safe?', 'Levola 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(426, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'What if I forget to take a dose of Levola 500mg Tablet?', 'If you forget a dose of Levola 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(427, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Can the use of Levola 500mg Tablet cause diarrhea?', 'Yes, the use of Levola 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(428, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Can I stop taking Levola 500mg Tablet when I feel better?', 'No, do not stop taking Levola 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levola 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levola 500mg Tablet in the dose and duration advised by the doctor.'),
(429, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Can the use of Levola 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levola 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levola 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(430, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Is Levola 500mg Tablet safe?', 'Levola 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(431, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'What if I forget to take a dose of Levola 500mg Tablet?', 'If you forget a dose of Levola 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(432, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Can the use of Levola 500mg Tablet cause diarrhea?', 'Yes, the use of Levola 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(433, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Can I stop taking Levola 500mg Tablet when I feel better?', 'No, do not stop taking Levola 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levola 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levola 500mg Tablet in the dose and duration advised by the doctor.'),
(434, 'Levola 500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 500mg Tablet', 'Can the use of Levola 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levola 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levola 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(435, 'Levola 750mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 750mg Tablet', 'Is Levola 750mg Tablet safe?', 'Levola 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(436, 'Levola 750mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 750mg Tablet', 'What if I forget to take a dose of Levola 750mg Tablet?', 'If you forget a dose of Levola 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(437, 'Levola 750mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 750mg Tablet', 'Can the use of Levola 750mg Tablet cause diarrhea?', 'Yes, the use of Levola 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(438, 'Levola 750mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 750mg Tablet', 'Can I stop taking Levola 750mg Tablet when I feel better?', 'No, do not stop taking Levola 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levola 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levola 750mg Tablet in the dose and duration advised by the doctor.'),
(439, 'Levola 750mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola 750mg Tablet', 'Can the use of Levola 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levola 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levola 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(440, 'Levola OZ 250mg/500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levola OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(441, 'Levola OZ 250mg/500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola OZ 250mg/500mg Tablet', 'Can I stop taking Levola OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levola OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(442, 'Levola OZ 250mg/500mg Tablet', 'Intra Labs India Pvt Ltd', 'Levola OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levola OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(443, 'Levolac 5mg Tablet', 'Duken Pharmaceuticals', 'Levolac 5mg Tablet', 'Is Levolac 5mg Tablet a steroid? What is it used for?', 'No, Levolac 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(444, 'Levolac 5mg Tablet', 'Duken Pharmaceuticals', 'Levolac 5mg Tablet', 'Does Levolac 5mg Tablet make you tired and drowsy?', 'Yes, Levolac 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(445, 'Levolac 5mg Tablet', 'Duken Pharmaceuticals', 'Levolac 5mg Tablet', 'How long does it take for Levolac 5mg Tablet to work?', 'Levolac 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(446, 'Levolac 5mg Tablet', 'Duken Pharmaceuticals', 'Levolac 5mg Tablet', 'Can I take Levolac 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolac 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(447, 'Levolac 5mg Tablet', 'Duken Pharmaceuticals', 'Levolac 5mg Tablet', 'Is it safe to take Levolac 5mg Tablet for a long time?', 'Levolac 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolac 5mg Tablet for only as long as you need it.'),
(448, 'Levolac 5mg Tablet', 'Duken Pharmaceuticals', 'Levolac 5mg Tablet', 'For how long should I continue Levolac 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolac 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolac 5mg Tablet'),
(449, 'Levolac M 5mg/10mg Tablet', 'Duken Pharmaceuticals', 'Levolac M 5mg/10mg Tablet', 'What is Levolac M 5mg/10mg Tablet?', 'Levolac M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(450, 'Levolac M 5mg/10mg Tablet', 'Duken Pharmaceuticals', 'Levolac M 5mg/10mg Tablet', 'Can the use of Levolac M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolac M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(451, 'Levolac M 5mg/10mg Tablet', 'Duken Pharmaceuticals', 'Levolac M 5mg/10mg Tablet', 'Can Levolac M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levolac M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(452, 'Levolac M 5mg/10mg Tablet', 'Duken Pharmaceuticals', 'Levolac M 5mg/10mg Tablet', 'Can the use of Levolac M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levolac M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(453, 'Levolac M 5mg/10mg Tablet', 'Duken Pharmaceuticals', 'Levolac M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levolac M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levolac M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolac M 5mg/10mg Tablet.'),
(454, 'Levolac M 5mg/10mg Tablet', 'Duken Pharmaceuticals', 'Levolac M 5mg/10mg Tablet', 'Will Levolac M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolac M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(455, 'Levolac M 5mg/10mg Tablet', 'Duken Pharmaceuticals', 'Levolac M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levolac M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(456, 'Levolak 500mg Tablet', 'Laksun Lifesciences', 'Levolak 500mg Tablet', 'Is Levolak 500mg Tablet safe?', 'Levolak 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(457, 'Levolak 500mg Tablet', 'Laksun Lifesciences', 'Levolak 500mg Tablet', 'What if I forget to take a dose of Levolak 500mg Tablet?', 'If you forget a dose of Levolak 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(458, 'Levolak 500mg Tablet', 'Laksun Lifesciences', 'Levolak 500mg Tablet', 'Can the use of Levolak 500mg Tablet cause diarrhea?', 'Yes, the use of Levolak 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(459, 'Levolak 500mg Tablet', 'Laksun Lifesciences', 'Levolak 500mg Tablet', 'Can I stop taking Levolak 500mg Tablet when I feel better?', 'No, do not stop taking Levolak 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolak 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolak 500mg Tablet in the dose and duration advised by the doctor.'),
(460, 'Levolak 500mg Tablet', 'Laksun Lifesciences', 'Levolak 500mg Tablet', 'Can the use of Levolak 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolak 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolak 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(461, 'Levolak 750mg Tablet', 'Laksun Lifesciences', 'Levolak 750mg Tablet', 'Is Levolak 750mg Tablet safe?', 'Levolak 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(462, 'Levolak 750mg Tablet', 'Laksun Lifesciences', 'Levolak 750mg Tablet', 'What if I forget to take a dose of Levolak 750mg Tablet?', 'If you forget a dose of Levolak 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(463, 'Levolak 750mg Tablet', 'Laksun Lifesciences', 'Levolak 750mg Tablet', 'Can the use of Levolak 750mg Tablet cause diarrhea?', 'Yes, the use of Levolak 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(464, 'Levolak 750mg Tablet', 'Laksun Lifesciences', 'Levolak 750mg Tablet', 'Can I stop taking Levolak 750mg Tablet when I feel better?', 'No, do not stop taking Levolak 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolak 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levolak 750mg Tablet in the dose and duration advised by the doctor.'),
(465, 'Levolak 750mg Tablet', 'Laksun Lifesciences', 'Levolak 750mg Tablet', 'Can the use of Levolak 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolak 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolak 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(466, 'Levolar 5mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolar 5mg Tablet', 'Is Levolar 5mg Tablet a steroid? What is it used for?', 'No, Levolar 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(467, 'Levolar 5mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolar 5mg Tablet', 'Does Levolar 5mg Tablet make you tired and drowsy?', 'Yes, Levolar 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(468, 'Levolar 5mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolar 5mg Tablet', 'How long does it take for Levolar 5mg Tablet to work?', 'Levolar 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(469, 'Levolar 5mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolar 5mg Tablet', 'Can I take Levolar 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolar 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(470, 'Levolar 5mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolar 5mg Tablet', 'Is it safe to take Levolar 5mg Tablet for a long time?', 'Levolar 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolar 5mg Tablet for only as long as you need it.'),
(471, 'Levolar 5mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolar 5mg Tablet', 'For how long should I continue Levolar 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolar 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolar 5mg Tablet'),
(472, 'Levolarge 250mg Tablet', 'Votary Laboratories  I  Ltd', 'Levolarge 250mg Tablet', 'Is Levolarge 250mg Tablet safe?', 'Levolarge 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(473, 'Levolarge 250mg Tablet', 'Votary Laboratories  I  Ltd', 'Levolarge 250mg Tablet', 'What if I forget to take a dose of Levolarge 250mg Tablet?', 'If you forget a dose of Levolarge 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(474, 'Levolarge 250mg Tablet', 'Votary Laboratories  I  Ltd', 'Levolarge 250mg Tablet', 'Can the use of Levolarge 250mg Tablet cause diarrhea?', 'Yes, the use of Levolarge 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(475, 'Levolarge 250mg Tablet', 'Votary Laboratories  I  Ltd', 'Levolarge 250mg Tablet', 'Can I stop taking Levolarge 250mg Tablet when I feel better?', 'No, do not stop taking Levolarge 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolarge 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levolarge 250mg Tablet in the dose and duration advised by the doctor.'),
(476, 'Levolarge 250mg Tablet', 'Votary Laboratories  I  Ltd', 'Levolarge 250mg Tablet', 'Can the use of Levolarge 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolarge 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolarge 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(477, 'Levolate 500mg Tablet', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate 500mg Tablet', 'Is Levolate 500mg Tablet safe?', 'Levolate 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(478, 'Levolate 500mg Tablet', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate 500mg Tablet', 'What if I forget to take a dose of Levolate 500mg Tablet?', 'If you forget a dose of Levolate 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(479, 'Levolate 500mg Tablet', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate 500mg Tablet', 'Can the use of Levolate 500mg Tablet cause diarrhea?', 'Yes, the use of Levolate 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(480, 'Levolate 500mg Tablet', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate 500mg Tablet', 'Can I stop taking Levolate 500mg Tablet when I feel better?', 'No, do not stop taking Levolate 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolate 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolate 500mg Tablet in the dose and duration advised by the doctor.'),
(481, 'Levolate 500mg Tablet', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate 500mg Tablet', 'Can the use of Levolate 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolate 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolate 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(482, 'Levolate OZ Oral Drops', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate OZ Oral Drops', 'What if I don\'t get better after using Levolate OZ Oral Drops?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(483, 'Levolate OZ Oral Drops', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate OZ Oral Drops', 'Can I stop taking Levolate OZ Oral Drops when I feel better?', 'No, do not stop taking Levolate OZ Oral Drops and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(484, 'Levolate OZ Oral Drops', 'Cubiwell Lifesciences Pvt Ltd', 'Levolate OZ Oral Drops', 'What if I miss my dose?', 'Take Levolate OZ Oral Drops as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(485, 'Levolax 5mg Tablet', 'Laxin Healthcare', 'Levolax 5mg Tablet', 'Is Levolax 5mg Tablet a steroid? What is it used for?', 'No, Levolax 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(486, 'Levolax 5mg Tablet', 'Laxin Healthcare', 'Levolax 5mg Tablet', 'Does Levolax 5mg Tablet make you tired and drowsy?', 'Yes, Levolax 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(487, 'Levolax 5mg Tablet', 'Laxin Healthcare', 'Levolax 5mg Tablet', 'How long does it take for Levolax 5mg Tablet to work?', 'Levolax 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(488, 'Levolax 5mg Tablet', 'Laxin Healthcare', 'Levolax 5mg Tablet', 'Can I take Levolax 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolax 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(489, 'Levolax 5mg Tablet', 'Laxin Healthcare', 'Levolax 5mg Tablet', 'Is it safe to take Levolax 5mg Tablet for a long time?', 'Levolax 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolax 5mg Tablet for only as long as you need it.'),
(490, 'Levolax 5mg Tablet', 'Laxin Healthcare', 'Levolax 5mg Tablet', 'For how long should I continue Levolax 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolax 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolax 5mg Tablet'),
(491, 'Levolax IV 500mg Injection', 'Laxin Healthcare', 'Levolax IV 500mg Injection', 'Is Levolax IV  500mg Injection safe?', 'Levolax IV  500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(492, 'Levolax IV 500mg Injection', 'Laxin Healthcare', 'Levolax IV 500mg Injection', 'Can the use of Levolax IV  500mg Injection cause diarrhea?', 'Yes, the use of Levolax IV  500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(493, 'Levolax IV 500mg Injection', 'Laxin Healthcare', 'Levolax IV 500mg Injection', 'Can the use of Levolax IV  500mg Injection increase the risk of muscle damage?', 'Yes, the use of Levolax IV  500mg Injection is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolax IV  500mg Injection but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(494, 'Levolax IV 500mg Injection', 'Laxin Healthcare', 'Levolax IV 500mg Injection', 'How is Levolax IV  500mg Injection administered?', 'Levolax IV  500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levolax IV  500mg Injection.'),
(495, 'Levolax IV 500mg Injection', 'Laxin Healthcare', 'Levolax IV 500mg Injection', 'Is Levolax IV  500mg Injection effective?', 'Levolax IV  500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levolax IV  500mg Injection too early, the symptoms may return or worsen.'),
(496, 'Levolax M 5mg/10mg Tablet', 'Lexine Technochem Pvt Ltd', 'Levolax M 5mg/10mg Tablet', 'What is Levolax M 5mg/10mg Tablet?', 'Levolax M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(497, 'Levolax M 5mg/10mg Tablet', 'Lexine Technochem Pvt Ltd', 'Levolax M 5mg/10mg Tablet', 'Can the use of Levolax M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolax M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(498, 'Levolax M 5mg/10mg Tablet', 'Lexine Technochem Pvt Ltd', 'Levolax M 5mg/10mg Tablet', 'Can Levolax M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levolax M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(499, 'Levolax M 5mg/10mg Tablet', 'Lexine Technochem Pvt Ltd', 'Levolax M 5mg/10mg Tablet', 'Can the use of Levolax M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levolax M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(500, 'Levolax M 5mg/10mg Tablet', 'Lexine Technochem Pvt Ltd', 'Levolax M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levolax M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levolax M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolax M 5mg/10mg Tablet.'),
(501, 'Levolax M 5mg/10mg Tablet', 'Lexine Technochem Pvt Ltd', 'Levolax M 5mg/10mg Tablet', 'Will Levolax M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolax M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(502, 'Levolax M 5mg/10mg Tablet', 'Lexine Technochem Pvt Ltd', 'Levolax M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levolax M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(503, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(504, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'Can I decrease the dose of Levolax M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(505, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'How should Levolax M Syrup be stored?', 'Levolax M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(506, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'Can Levolax M Syrup make my child sleepy?', 'Levolax M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(507, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levolax M Syrup?', 'No, don’t start Levolax M Syrup without speaking to your child’s doctor. Moreover, Levolax M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(508, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levolax M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(509, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levolax M Syrup to my child?', 'Some studies show that Levolax M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(510, 'Levolax M Syrup', 'Laxin Healthcare', 'Levolax M Syrup', 'Can I use Levolax M Syrup for treating acute asthma attacks in my child?', 'Levolax M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(511, 'Levo-LC Tablet', 'Focaz Pharma', 'Levo-LC Tablet', 'What is Levo-LC Tablet?', 'Levo-LC Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(512, 'Levo-LC Tablet', 'Focaz Pharma', 'Levo-LC Tablet', 'Can the use of Levo-LC Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levo-LC Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(513, 'Levo-LC Tablet', 'Focaz Pharma', 'Levo-LC Tablet', 'Can Levo-LC Tablet be stopped when allergy symptoms are relieved?', 'No, Levo-LC Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(514, 'Levo-LC Tablet', 'Focaz Pharma', 'Levo-LC Tablet', 'Can the use of Levo-LC Tablet cause dry mouth?', 'Yes, the use of Levo-LC Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(515, 'Levo-LC Tablet', 'Focaz Pharma', 'Levo-LC Tablet', 'Can I drink alcohol while taking Levo-LC Tablet?', 'No, do not take alcohol while taking Levo-LC Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levo-LC Tablet.'),
(516, 'Levo-LC Tablet', 'Focaz Pharma', 'Levo-LC Tablet', 'Will Levo-LC Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levo-LC Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(517, 'Levo-LC Tablet', 'Focaz Pharma', 'Levo-LC Tablet', 'What are the instructions for storage and disposal of Levo-LC Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(518, 'Levolday 500mg Tablet', 'Intra Life', 'Levolday 500mg Tablet', 'Is Levolday 500mg Tablet safe?', 'Levolday 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(519, 'Levolday 500mg Tablet', 'Intra Life', 'Levolday 500mg Tablet', 'What if I forget to take a dose of Levolday 500mg Tablet?', 'If you forget a dose of Levolday 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(520, 'Levolday 500mg Tablet', 'Intra Life', 'Levolday 500mg Tablet', 'Can the use of Levolday 500mg Tablet cause diarrhea?', 'Yes, the use of Levolday 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(521, 'Levolday 500mg Tablet', 'Intra Life', 'Levolday 500mg Tablet', 'Can I stop taking Levolday 500mg Tablet when I feel better?', 'No, do not stop taking Levolday 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolday 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolday 500mg Tablet in the dose and duration advised by the doctor.'),
(522, 'Levolday 500mg Tablet', 'Intra Life', 'Levolday 500mg Tablet', 'Can the use of Levolday 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolday 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolday 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(523, 'Levolday DPS 0.5% Eye Drop', 'Intra Life', 'Levolday DPS 0.5% Eye Drop', 'Can I stop taking Levolday DPS 0.5% Eye Drop when I feel better?', 'No, do not stop taking Levolday DPS 0.5% Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolday DPS 0.5% Eye Drop too early, the symptoms may return or worsen. Continue taking Levolday DPS 0.5% Eye Drop in the dose and duration advised by the doctor.'),
(524, 'Levolday Infusion', 'Intra Life', 'Levolday Infusion', 'Is Levolday Infusion safe?', 'Levolday Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(525, 'Levolday Infusion', 'Intra Life', 'Levolday Infusion', 'Can the use of Levolday Infusion cause diarrhea?', 'Yes, the use of Levolday Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(526, 'Levolday Infusion', 'Intra Life', 'Levolday Infusion', 'Can the use of Levolday Infusion increase the risk of muscle damage?', 'Yes, the use of Levolday Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolday Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(527, 'Levolday Infusion', 'Intra Life', 'Levolday Infusion', 'How is Levolday Infusion administered?', 'Levolday Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levolday Infusion.'),
(528, 'Levolday Infusion', 'Intra Life', 'Levolday Infusion', 'Is Levolday Infusion effective?', 'Levolday Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levolday Infusion too early, the symptoms may return or worsen.'),
(529, 'Levolday OZ 250mg/500mg Tablet', 'Intra Life', 'Levolday OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levolday OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(530, 'Levolday OZ 250mg/500mg Tablet', 'Intra Life', 'Levolday OZ 250mg/500mg Tablet', 'Can I stop taking Levolday OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levolday OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(531, 'Levolday OZ 250mg/500mg Tablet', 'Intra Life', 'Levolday OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levolday OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(532, 'Levole 500mg Tablet', 'Eskos Pharma', 'Levole 500mg Tablet', 'Is Levole 500mg Tablet safe?', 'Levole 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(533, 'Levole 500mg Tablet', 'Eskos Pharma', 'Levole 500mg Tablet', 'What if I forget to take a dose of Levole 500mg Tablet?', 'If you forget a dose of Levole 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(534, 'Levole 500mg Tablet', 'Eskos Pharma', 'Levole 500mg Tablet', 'Can the use of Levole 500mg Tablet cause diarrhea?', 'Yes, the use of Levole 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(535, 'Levole 500mg Tablet', 'Eskos Pharma', 'Levole 500mg Tablet', 'Can I stop taking Levole 500mg Tablet when I feel better?', 'No, do not stop taking Levole 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levole 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levole 500mg Tablet in the dose and duration advised by the doctor.'),
(536, 'Levole 500mg Tablet', 'Eskos Pharma', 'Levole 500mg Tablet', 'Can the use of Levole 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levole 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levole 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(537, 'Levolead M 5mg/10mg Tablet', 'Vilead Healthcare', 'Levolead M 5mg/10mg Tablet', 'What is Levolead M 5mg/10mg Tablet?', 'Levolead M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(538, 'Levolead M 5mg/10mg Tablet', 'Vilead Healthcare', 'Levolead M 5mg/10mg Tablet', 'Can the use of Levolead M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolead M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(539, 'Levolead M 5mg/10mg Tablet', 'Vilead Healthcare', 'Levolead M 5mg/10mg Tablet', 'Can Levolead M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levolead M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(540, 'Levolead M 5mg/10mg Tablet', 'Vilead Healthcare', 'Levolead M 5mg/10mg Tablet', 'Can the use of Levolead M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levolead M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(541, 'Levolead M 5mg/10mg Tablet', 'Vilead Healthcare', 'Levolead M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levolead M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levolead M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolead M 5mg/10mg Tablet.'),
(542, 'Levolead M 5mg/10mg Tablet', 'Vilead Healthcare', 'Levolead M 5mg/10mg Tablet', 'Will Levolead M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolead M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(543, 'Levolead M 5mg/10mg Tablet', 'Vilead Healthcare', 'Levolead M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levolead M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(544, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(545, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'Can I decrease the dose of Levo-Lead M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(546, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'How should Levo-Lead M Syrup be stored?', 'Levo-Lead M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(547, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'Can Levo-Lead M Syrup make my child sleepy?', 'Levo-Lead M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(548, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levo-Lead M Syrup?', 'No, don’t start Levo-Lead M Syrup without speaking to your child’s doctor. Moreover, Levo-Lead M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(549, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levo-Lead M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(550, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levo-Lead M Syrup to my child?', 'Some studies show that Levo-Lead M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(551, 'Levo-Lead M Syrup', 'Vilead Healthcare', 'Levo-Lead M Syrup', 'Can I use Levo-Lead M Syrup for treating acute asthma attacks in my child?', 'Levo-Lead M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(552, 'Levolee 500mg Tablet', 'Innokon Laboratories Pvt Ltd', 'Levolee 500mg Tablet', 'Is Levolee 500mg Tablet safe?', 'Levolee 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(553, 'Levolee 500mg Tablet', 'Innokon Laboratories Pvt Ltd', 'Levolee 500mg Tablet', 'What if I forget to take a dose of Levolee 500mg Tablet?', 'If you forget a dose of Levolee 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(554, 'Levolee 500mg Tablet', 'Innokon Laboratories Pvt Ltd', 'Levolee 500mg Tablet', 'Can the use of Levolee 500mg Tablet cause diarrhea?', 'Yes, the use of Levolee 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(555, 'Levolee 500mg Tablet', 'Innokon Laboratories Pvt Ltd', 'Levolee 500mg Tablet', 'Can I stop taking Levolee 500mg Tablet when I feel better?', 'No, do not stop taking Levolee 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolee 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolee 500mg Tablet in the dose and duration advised by the doctor.'),
(556, 'Levolee 500mg Tablet', 'Innokon Laboratories Pvt Ltd', 'Levolee 500mg Tablet', 'Can the use of Levolee 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolee 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolee 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(557, 'Levolek-OZ Oral Suspension Mango', 'Annoxy Healthcare Pvt. Ltd.', 'Levolek-OZ Oral Suspension Mango', 'What if I don\'t get better after using Levolek-OZ Oral Suspension Mango?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(558, 'Levolek-OZ Oral Suspension Mango', 'Annoxy Healthcare Pvt. Ltd.', 'Levolek-OZ Oral Suspension Mango', 'Can I stop taking Levolek-OZ Oral Suspension Mango when I feel better?', 'No, do not stop taking Levolek-OZ Oral Suspension Mango and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(559, 'Levolek-OZ Oral Suspension Mango', 'Annoxy Healthcare Pvt. Ltd.', 'Levolek-OZ Oral Suspension Mango', 'What if I miss my dose?', 'Take Levolek-OZ Oral Suspension Mango as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(560, 'Levolente 500mg Tablet', 'Medilente Pharma Pvt Ltd', 'Levolente 500mg Tablet', 'Is Levolente 500mg Tablet safe?', 'Levolente 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(561, 'Levolente 500mg Tablet', 'Medilente Pharma Pvt Ltd', 'Levolente 500mg Tablet', 'What if I forget to take a dose of Levolente 500mg Tablet?', 'If you forget a dose of Levolente 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(562, 'Levolente 500mg Tablet', 'Medilente Pharma Pvt Ltd', 'Levolente 500mg Tablet', 'Can the use of Levolente 500mg Tablet cause diarrhea?', 'Yes, the use of Levolente 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(563, 'Levolente 500mg Tablet', 'Medilente Pharma Pvt Ltd', 'Levolente 500mg Tablet', 'Can I stop taking Levolente 500mg Tablet when I feel better?', 'No, do not stop taking Levolente 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolente 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolente 500mg Tablet in the dose and duration advised by the doctor.'),
(564, 'Levolente 500mg Tablet', 'Medilente Pharma Pvt Ltd', 'Levolente 500mg Tablet', 'Can the use of Levolente 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolente 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolente 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(565, 'Levoler 2.5mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levoler 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(566, 'Levoler 2.5mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 2.5mg Syrup', 'Can other medicines be given at the same time as Levoler 2.5mg Syrup?', 'Levoler 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levoler 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(567, 'Levoler 2.5mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 2.5mg Syrup', 'How much Levoler 2.5mg Syrup should I give to my child?', 'Levoler 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(568, 'Levoler 2.5mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 2.5mg Syrup', 'What if I give too much of Levoler 2.5mg Syrup by mistake?', 'Although Levoler 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(569, 'Levoler 2.5mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 2.5mg Syrup', 'How should Levoler 2.5mg Syrup be stored?', 'Store Levoler 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(570, 'Levoler 2.5mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(571, 'Levoler 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 5mg Tablet', 'Is Levoler 5mg Tablet a steroid? What is it used for?', 'No, Levoler 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(572, 'Levoler 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 5mg Tablet', 'Does Levoler 5mg Tablet make you tired and drowsy?', 'Yes, Levoler 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(573, 'Levoler 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 5mg Tablet', 'How long does it take for Levoler 5mg Tablet to work?', 'Levoler 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(574, 'Levoler 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 5mg Tablet', 'Can I take Levoler 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoler 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(575, 'Levoler 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 5mg Tablet', 'Is it safe to take Levoler 5mg Tablet for a long time?', 'Levoler 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoler 5mg Tablet for only as long as you need it.'),
(576, 'Levoler 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler 5mg Tablet', 'For how long should I continue Levoler 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoler 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoler 5mg Tablet'),
(577, 'Levoler M 5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M 5mg/10mg Tablet', 'What is Levoler M 5mg/10mg Tablet?', 'Levoler M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(578, 'Levoler M 5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M 5mg/10mg Tablet', 'Can the use of Levoler M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoler M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(579, 'Levoler M 5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M 5mg/10mg Tablet', 'Can Levoler M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoler M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(580, 'Levoler M 5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M 5mg/10mg Tablet', 'Can the use of Levoler M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoler M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(581, 'Levoler M 5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoler M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoler M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoler M 5mg/10mg Tablet.'),
(582, 'Levoler M 5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M 5mg/10mg Tablet', 'Will Levoler M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoler M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(583, 'Levoler M 5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoler M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(584, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(585, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levoler M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(586, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'How should Levoler M Kid 2.5mg/4mg Tablet be stored?', 'Levoler M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(587, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'Can Levoler M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levoler M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(588, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoler M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levoler M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levoler M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(589, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoler M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(590, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levoler M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levoler M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(591, 'Levoler M Kid 2.5mg/4mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Kid 2.5mg/4mg Tablet', 'Can I use Levoler M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levoler M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(592, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(593, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'Can I decrease the dose of Levoler M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(594, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'How should Levoler M Syrup be stored?', 'Levoler M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(595, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'Can Levoler M Syrup make my child sleepy?', 'Levoler M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(596, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoler M Syrup?', 'No, don’t start Levoler M Syrup without speaking to your child’s doctor. Moreover, Levoler M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(597, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoler M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(598, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoler M Syrup to my child?', 'Some studies show that Levoler M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(599, 'Levoler M Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Levoler M Syrup', 'Can I use Levoler M Syrup for treating acute asthma attacks in my child?', 'Levoler M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(600, 'Levolet 250mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 250mg Tablet', 'Is Levolet 250mg Tablet safe?', 'Levolet 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(601, 'Levolet 250mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 250mg Tablet', 'What if I forget to take a dose of Levolet 250mg Tablet?', 'If you forget a dose of Levolet 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(602, 'Levolet 250mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 250mg Tablet', 'Can the use of Levolet 250mg Tablet cause diarrhea?', 'Yes, the use of Levolet 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(603, 'Levolet 250mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 250mg Tablet', 'Can I stop taking Levolet 250mg Tablet when I feel better?', 'No, do not stop taking Levolet 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolet 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levolet 250mg Tablet in the dose and duration advised by the doctor.'),
(604, 'Levolet 250mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 250mg Tablet', 'Can the use of Levolet 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolet 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolet 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(605, 'Levolet 500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 500mg Tablet', 'Is Levolet 500mg Tablet safe?', 'Levolet 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(606, 'Levolet 500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 500mg Tablet', 'What if I forget to take a dose of Levolet 500mg Tablet?', 'If you forget a dose of Levolet 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(607, 'Levolet 500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 500mg Tablet', 'Can the use of Levolet 500mg Tablet cause diarrhea?', 'Yes, the use of Levolet 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(608, 'Levolet 500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 500mg Tablet', 'Can I stop taking Levolet 500mg Tablet when I feel better?', 'No, do not stop taking Levolet 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolet 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolet 500mg Tablet in the dose and duration advised by the doctor.'),
(609, 'Levolet 500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 500mg Tablet', 'Can the use of Levolet 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolet 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolet 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(610, 'Levolet 750mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 750mg Tablet', 'Is Levolet 750mg Tablet safe?', 'Levolet 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(611, 'Levolet 750mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 750mg Tablet', 'What if I forget to take a dose of Levolet 750mg Tablet?', 'If you forget a dose of Levolet 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(612, 'Levolet 750mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 750mg Tablet', 'Can the use of Levolet 750mg Tablet cause diarrhea?', 'Yes, the use of Levolet 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(613, 'Levolet 750mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 750mg Tablet', 'Can I stop taking Levolet 750mg Tablet when I feel better?', 'No, do not stop taking Levolet 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolet 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levolet 750mg Tablet in the dose and duration advised by the doctor.'),
(614, 'Levolet 750mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet 750mg Tablet', 'Can the use of Levolet 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolet 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolet 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(615, 'Levolet AZ 250mg/250mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet AZ 250mg/250mg Tablet', 'What if I don\'t get better after using Levolet AZ 250mg/250mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(616, 'Levolet AZ 250mg/250mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet AZ 250mg/250mg Tablet', 'What if I miss my dose?', 'Take Levolet AZ 250mg/250mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(617, 'Levolet OZ 250mg/500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levolet OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(618, 'Levolet OZ 250mg/500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet OZ 250mg/500mg Tablet', 'Can I stop taking Levolet OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levolet OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(619, 'Levolet OZ 250mg/500mg Tablet', 'Ikon Remedies Pvt Ltd', 'Levolet OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levolet OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(620, 'Levoleukast Tablet', 'Parnasa Mediworld Pvt Ltd', 'Levoleukast Tablet', 'What is Levoleukast Tablet?', 'Levoleukast Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(621, 'Levoleukast Tablet', 'Parnasa Mediworld Pvt Ltd', 'Levoleukast Tablet', 'Can the use of Levoleukast Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoleukast Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(622, 'Levoleukast Tablet', 'Parnasa Mediworld Pvt Ltd', 'Levoleukast Tablet', 'Can Levoleukast Tablet be stopped when allergy symptoms are relieved?', 'No, Levoleukast Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(623, 'Levoleukast Tablet', 'Parnasa Mediworld Pvt Ltd', 'Levoleukast Tablet', 'Can the use of Levoleukast Tablet cause dry mouth?', 'Yes, the use of Levoleukast Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(624, 'Levoleukast Tablet', 'Parnasa Mediworld Pvt Ltd', 'Levoleukast Tablet', 'Can I drink alcohol while taking Levoleukast Tablet?', 'No, do not take alcohol while taking Levoleukast Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoleukast Tablet.'),
(625, 'Levoleukast Tablet', 'Parnasa Mediworld Pvt Ltd', 'Levoleukast Tablet', 'Will Levoleukast Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoleukast Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(626, 'Levoleukast Tablet', 'Parnasa Mediworld Pvt Ltd', 'Levoleukast Tablet', 'What are the instructions for storage and disposal of Levoleukast Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(627, 'Levolex 500mg Tablet', 'Medlex Biotechnics Private Limited', 'Levolex 500mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Is Levolex 500mg Tablet safe?', 'Levolex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(628, 'Levolex 500mg Tablet', 'Medlex Biotechnics Private Limited', 'Levolex 500mg Tablet (Medlex Biotechnics Private Limited)', 'Q. What if I forget to take a dose of Levolex 500mg Tablet?', 'If you forget a dose of Levolex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(629, 'Levolex 500mg Tablet', 'Medlex Biotechnics Private Limited', 'Levolex 500mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can the use of Levolex 500mg Tablet cause diarrhea?', 'Yes, the use of Levolex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(630, 'Levolex 500mg Tablet', 'Medlex Biotechnics Private Limited', 'Levolex 500mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can I stop taking Levolex 500mg Tablet when I feel better?', 'No, do not stop taking Levolex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolex 500mg Tablet in the dose and duration advised by the doctor.'),
(631, 'Levolex 500mg Tablet', 'Medlex Biotechnics Private Limited', 'Levolex 500mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can the use of Levolex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(632, 'Levolex 500mg Tablet', 'Lexicon Biotech India Ltd', 'Levolex 500mg Tablet (Lexicon Biotech India Ltd)', 'Is Levolex 500mg Tablet safe?', 'Levolex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(633, 'Levolex 500mg Tablet', 'Lexicon Biotech India Ltd', 'Levolex 500mg Tablet (Lexicon Biotech India Ltd)', 'What if I forget to take a dose of Levolex 500mg Tablet?', 'If you forget a dose of Levolex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(634, 'Levolex 500mg Tablet', 'Lexicon Biotech India Ltd', 'Levolex 500mg Tablet (Lexicon Biotech India Ltd)', 'Can the use of Levolex 500mg Tablet cause diarrhea?', 'Yes, the use of Levolex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(635, 'Levolex 500mg Tablet', 'Lexicon Biotech India Ltd', 'Levolex 500mg Tablet (Lexicon Biotech India Ltd)', 'Can I stop taking Levolex 500mg Tablet when I feel better?', 'No, do not stop taking Levolex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolex 500mg Tablet in the dose and duration advised by the doctor.'),
(636, 'Levolex 500mg Tablet', 'Lexicon Biotech India Ltd', 'Levolex 500mg Tablet (Lexicon Biotech India Ltd)', 'Can the use of Levolex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(637, 'Levolexi 5mg Tablet', 'Lexiphar Healthcare', 'Levolexi 5mg Tablet', 'Is Levolexi 5mg Tablet a steroid? What is it used for?', 'No, Levolexi 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(638, 'Levolexi 5mg Tablet', 'Lexiphar Healthcare', 'Levolexi 5mg Tablet', 'Does Levolexi 5mg Tablet make you tired and drowsy?', 'Yes, Levolexi 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(639, 'Levolexi 5mg Tablet', 'Lexiphar Healthcare', 'Levolexi 5mg Tablet', 'How long does it take for Levolexi 5mg Tablet to work?', 'Levolexi 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(640, 'Levolexi 5mg Tablet', 'Lexiphar Healthcare', 'Levolexi 5mg Tablet', 'Can I take Levolexi 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolexi 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(641, 'Levolexi 5mg Tablet', 'Lexiphar Healthcare', 'Levolexi 5mg Tablet', 'Is it safe to take Levolexi 5mg Tablet for a long time?', 'Levolexi 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolexi 5mg Tablet for only as long as you need it.'),
(642, 'Levolexi 5mg Tablet', 'Lexiphar Healthcare', 'Levolexi 5mg Tablet', 'For how long should I continue Levolexi 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolexi 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolexi 5mg Tablet'),
(643, 'Levolexi M 5mg/10mg Tablet', 'Lexiphar Healthcare', 'Levolexi M 5mg/10mg Tablet', 'What is Levolexi M 5mg/10mg Tablet?', 'Levolexi M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(644, 'Levolexi M 5mg/10mg Tablet', 'Lexiphar Healthcare', 'Levolexi M 5mg/10mg Tablet', 'Can the use of Levolexi M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolexi M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(645, 'Levolexi M 5mg/10mg Tablet', 'Lexiphar Healthcare', 'Levolexi M 5mg/10mg Tablet', 'Can Levolexi M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levolexi M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(646, 'Levolexi M 5mg/10mg Tablet', 'Lexiphar Healthcare', 'Levolexi M 5mg/10mg Tablet', 'Can the use of Levolexi M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levolexi M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(647, 'Levolexi M 5mg/10mg Tablet', 'Lexiphar Healthcare', 'Levolexi M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levolexi M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levolexi M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolexi M 5mg/10mg Tablet.'),
(648, 'Levolexi M 5mg/10mg Tablet', 'Lexiphar Healthcare', 'Levolexi M 5mg/10mg Tablet', 'Will Levolexi M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolexi M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(649, 'Levolexi M 5mg/10mg Tablet', 'Lexiphar Healthcare', 'Levolexi M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levolexi M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(650, 'Levoliek 5mg Tablet', 'Nuliek Healthcare', 'Levoliek 5mg Tablet', 'Is Levoliek 5mg Tablet a steroid? What is it used for?', 'No, Levoliek 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(651, 'Levoliek 5mg Tablet', 'Nuliek Healthcare', 'Levoliek 5mg Tablet', 'Does Levoliek 5mg Tablet make you tired and drowsy?', 'Yes, Levoliek 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(652, 'Levoliek 5mg Tablet', 'Nuliek Healthcare', 'Levoliek 5mg Tablet', 'How long does it take for Levoliek 5mg Tablet to work?', 'Levoliek 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(653, 'Levoliek 5mg Tablet', 'Nuliek Healthcare', 'Levoliek 5mg Tablet', 'Can I take Levoliek 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoliek 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(654, 'Levoliek 5mg Tablet', 'Nuliek Healthcare', 'Levoliek 5mg Tablet', 'Is it safe to take Levoliek 5mg Tablet for a long time?', 'Levoliek 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoliek 5mg Tablet for only as long as you need it.'),
(655, 'Levoliek 5mg Tablet', 'Nuliek Healthcare', 'Levoliek 5mg Tablet', 'For how long should I continue Levoliek 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoliek 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoliek 5mg Tablet'),
(656, 'Levolife 250mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levolife 250mg Tablet', 'Is Levolife 250mg Tablet safe?', 'Levolife 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(657, 'Levolife 250mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levolife 250mg Tablet', 'What if I forget to take a dose of Levolife 250mg Tablet?', 'If you forget a dose of Levolife 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(658, 'Levolife 250mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levolife 250mg Tablet', 'Can the use of Levolife 250mg Tablet cause diarrhea?', 'Yes, the use of Levolife 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(659, 'Levolife 250mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levolife 250mg Tablet', 'Can I stop taking Levolife 250mg Tablet when I feel better?', 'No, do not stop taking Levolife 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolife 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levolife 250mg Tablet in the dose and duration advised by the doctor.'),
(660, 'Levolife 250mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levolife 250mg Tablet', 'Can the use of Levolife 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolife 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolife 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(661, 'Levolife 500mg Tablet', 'Life Line Biotech Ltd', 'Levolife 500mg Tablet', 'Is Levolife 500mg Tablet safe?', 'Levolife 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(662, 'Levolife 500mg Tablet', 'Life Line Biotech Ltd', 'Levolife 500mg Tablet', 'What if I forget to take a dose of Levolife 500mg Tablet?', 'If you forget a dose of Levolife 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(663, 'Levolife 500mg Tablet', 'Life Line Biotech Ltd', 'Levolife 500mg Tablet', 'Can the use of Levolife 500mg Tablet cause diarrhea?', 'Yes, the use of Levolife 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(664, 'Levolife 500mg Tablet', 'Life Line Biotech Ltd', 'Levolife 500mg Tablet', 'Can I stop taking Levolife 500mg Tablet when I feel better?', 'No, do not stop taking Levolife 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolife 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolife 500mg Tablet in the dose and duration advised by the doctor.'),
(665, 'Levolife 500mg Tablet', 'Life Line Biotech Ltd', 'Levolife 500mg Tablet', 'Can the use of Levolife 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolife 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolife 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(666, 'Levolife 750mg Tablet', 'Life Line Biotech Ltd', 'Levolife 750mg Tablet', 'Is Levolife 750mg Tablet safe?', 'Levolife 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(667, 'Levolife 750mg Tablet', 'Life Line Biotech Ltd', 'Levolife 750mg Tablet', 'What if I forget to take a dose of Levolife 750mg Tablet?', 'If you forget a dose of Levolife 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(668, 'Levolife 750mg Tablet', 'Life Line Biotech Ltd', 'Levolife 750mg Tablet', 'Can the use of Levolife 750mg Tablet cause diarrhea?', 'Yes, the use of Levolife 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(669, 'Levolife 750mg Tablet', 'Life Line Biotech Ltd', 'Levolife 750mg Tablet', 'Can I stop taking Levolife 750mg Tablet when I feel better?', 'No, do not stop taking Levolife 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolife 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levolife 750mg Tablet in the dose and duration advised by the doctor.'),
(670, 'Levolife 750mg Tablet', 'Life Line Biotech Ltd', 'Levolife 750mg Tablet', 'Can the use of Levolife 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolife 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolife 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(671, 'Levolik 4mg Tablet', 'Helik Pharmaceuticals', 'Levolik 4mg Tablet', 'What is Levolik 4mg Tablet used for?', 'Levolik 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(672, 'Levolik 4mg Tablet', 'Helik Pharmaceuticals', 'Levolik 4mg Tablet', 'How does Levolik 4mg Tablet work?', 'Levolik 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(673, 'Levolik 4mg Tablet', 'Helik Pharmaceuticals', 'Levolik 4mg Tablet', 'Is Levolik 4mg Tablet effective?', 'Levolik 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levolik 4mg Tablet too early, the symptoms may return or worsen.'),
(674, 'Levolik 4mg Tablet', 'Helik Pharmaceuticals', 'Levolik 4mg Tablet', 'When will I feel better after taking Levolik 4mg Tablet?', 'Levolik 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Levolik 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Levolik 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(675, 'Levolik 4mg Tablet', 'Helik Pharmaceuticals', 'Levolik 4mg Tablet', 'What if I forget to take a dose of Levolik 4mg Tablet?', 'If you forget a dose of Levolik 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(676, 'Levolik 4mg Tablet', 'Helik Pharmaceuticals', 'Levolik 4mg Tablet', 'Is Levolik 4mg Tablet safe?', 'Levolik 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(677, 'Levolim 5mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim 5mg Tablet', 'Is Levolim 5mg Tablet a steroid? What is it used for?', 'No, Levolim 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(678, 'Levolim 5mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim 5mg Tablet', 'Does Levolim 5mg Tablet make you tired and drowsy?', 'Yes, Levolim 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(679, 'Levolim 5mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim 5mg Tablet', 'How long does it take for Levolim 5mg Tablet to work?', 'Levolim 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(680, 'Levolim 5mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim 5mg Tablet', 'Can I take Levolim 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolim 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(681, 'Levolim 5mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim 5mg Tablet', 'Is it safe to take Levolim 5mg Tablet for a long time?', 'Levolim 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolim 5mg Tablet for only as long as you need it.'),
(682, 'Levolim 5mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim 5mg Tablet', 'For how long should I continue Levolim 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolim 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolim 5mg Tablet'),
(683, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(684, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'Can I decrease the dose of Levolim M 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(685, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'How should Levolim M 2.5mg/4mg Tablet be stored?', 'Levolim M 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(686, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'Can Levolim M 2.5mg/4mg Tablet make my child sleepy?', 'Levolim M 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(687, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levolim M 2.5mg/4mg Tablet?', 'No, don’t start Levolim M 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levolim M 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(688, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levolim M 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(689, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levolim M 2.5mg/4mg Tablet to my child?', 'Some studies show that Levolim M 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(690, 'Levolim M 2.5mg/4mg Tablet', 'Prelims Pharma Pvt. Ltd.', 'Levolim M 2.5mg/4mg Tablet', 'Can I use Levolim M 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levolim M 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(691, 'Levolin 0.31mg Respules', 'Cipla Ltd', 'Levolin 0.31mg Respules', 'Is Levolin 0.31mg Respules better than Albuterol?', 'Both Levolin 0.31mg Respules and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 0.31mg Respules contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 0.31mg Respules, being the active form may have lesser side effects when compared to the inactive form.'),
(692, 'Levolin 0.31mg Respules', 'Cipla Ltd', 'Levolin 0.31mg Respules', 'What would happen if I take higher than the recommended dose of Levolin 0.31mg Respules?', 'Taking a higher than the recommended dose of Levolin 0.31mg Respules may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 0.31mg Respules may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(693, 'Levolin 0.31mg Respules', 'Cipla Ltd', 'Levolin 0.31mg Respules', 'Is it safe to take Levolin 0.31mg Respules if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 0.31mg Respules, seek immediate medical advice.'),
(694, 'Levolin 0.31mg Respules', 'Cipla Ltd', 'Levolin 0.31mg Respules', 'Being a diabetic, what should I remember while taking Levolin 0.31mg Respules?', 'Levolin 0.31mg Respules may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(695, 'Levolin 0.31mg Respules', 'Cipla Ltd', 'Levolin 0.31mg Respules', 'I have started using Levolin 0.31mg Respules and I am experiencing headaches and shakiness. Is this because of Levolin 0.31mg Respules and will these go away?', 'Yes, it could be due to Levolin 0.31mg Respules. Feeling shaky is a common side effect of Levolin 0.31mg Respules which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(696, 'Levolin 0.31mg Respules', 'Cipla Ltd', 'Levolin 0.31mg Respules', 'When should I take Levolin 0.31mg Respules?', 'Use Levolin 0.31mg Respules as and when you need it. Levolin 0.31mg Respules relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(697, 'Levolin 0.31mg Respules', 'Cipla Ltd', 'Levolin 0.31mg Respules', 'Can I smoke if I have been prescribed Levolin 0.31mg Respules?', 'No, you should not smoke while taking Levolin 0.31mg Respules. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(698, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Q. Is Levolin 0.63mg Respules better than Albuterol?', 'Both Levolin 0.63mg Respules and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 0.63mg Respules contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 0.63mg Respules, being the active form may have lesser side effects when compared to the inactive form.'),
(699, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Q. What would happen if I take higher than the recommended dose of Levolin 0.63mg Respules?', 'Taking a higher than the recommended dose of Levolin 0.63mg Respules may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 0.63mg Respules may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(700, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Q. Is it safe to take Levolin 0.63mg Respules if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 0.63mg Respules, seek immediate medical advice.'),
(701, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Q. Being a diabetic, what should I remember while taking Levolin 0.63mg Respules?', 'Levolin 0.63mg Respules may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(702, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Q. I have started using Levolin 0.63mg Respules and I am experiencing headaches and shakiness. Is this because of Levolin 0.63mg Respules and will these go away?', 'Yes, it could be due to Levolin 0.63mg Respules. Feeling shaky is a common side effect of Levolin 0.63mg Respules which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(703, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Q. When should I take Levolin 0.63mg Respules?', 'Use Levolin 0.63mg Respules as and when you need it. Levolin 0.63mg Respules relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(704, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Q. Can I smoke if I have been prescribed Levolin 0.63mg Respules?', 'No, you should not smoke while taking Levolin 0.63mg Respules. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(705, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Is Levolin 0.63mg Respules better than Albuterol?', 'Both Levolin 0.63mg Respules and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 0.63mg Respules contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 0.63mg Respules, being the active form may have lesser side effects when compared to the inactive form.'),
(706, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'What would happen if I take higher than the recommended dose of Levolin 0.63mg Respules?', 'Taking a higher than the recommended dose of Levolin 0.63mg Respules may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 0.63mg Respules may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(707, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Is it safe to take Levolin 0.63mg Respules if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 0.63mg Respules, seek immediate medical advice.'),
(708, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Being a diabetic, what should I remember while taking Levolin 0.63mg Respules?', 'Levolin 0.63mg Respules may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(709, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'I have started using Levolin 0.63mg Respules and I am experiencing headaches and shakiness. Is this because of Levolin 0.63mg Respules and will these go away?', 'Yes, it could be due to Levolin 0.63mg Respules. Feeling shaky is a common side effect of Levolin 0.63mg Respules which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(710, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'When should I take Levolin 0.63mg Respules?', 'Use Levolin 0.63mg Respules as and when you need it. Levolin 0.63mg Respules relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(711, 'Levolin 0.63mg Respules', 'Cipla Ltd', 'Levolin 0.63mg Respules', 'Can I smoke if I have been prescribed Levolin 0.63mg Respules?', 'No, you should not smoke while taking Levolin 0.63mg Respules. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(712, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'How does Levolin 1 Tablet work?', 'Levolin 1 Tablet works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levolin 1 Tablet helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(713, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'How should I take Levolin 1 Tablet?', 'Levolin 1 Tablet should be taken in the dose and duration advised by your doctor. Levolin 1 Tablet can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levolin 1 Tablet just before bedtime with a glass of water.'),
(714, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'What if I forget to take a dose of Levolin 1 Tablet?', 'If you forget a dose of Levolin 1 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(715, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'What would happen if I take higher than the recommended dose of Levolin 1 Tablet?', 'Taking a higher than the recommended dose of Levolin 1 Tablet may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 1 Tablet may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(716, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'Is Levolin 1 Tablet better than Albuterol?', 'Both Levolin 1 Tablet and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 1 Tablet contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 1 Tablet, being the active form may have lesser side effects when compared to the inactive form.'),
(717, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'Is it safe to take Levolin 1 Tablet if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 1 Tablet, seek immediate medical advice.'),
(718, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'Being a diabetic, what should I remember while taking Levolin 1 Tablet?', 'Levolin 1 Tablet may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(719, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'I have started using Levolin 1 Tablet and I am experiencing headaches and shakiness. Is this because of Levolin 1 Tablet and will these go away?', 'Yes, it could be due to Levolin 1 Tablet. Feeling shaky is a common side effect of Levolin 1 Tablet which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(720, 'Levolin 1 Tablet', 'Cipla Ltd', 'Levolin 1 Tablet', 'Can I smoke if I have been prescribed Levolin 1 Tablet?', 'No, you should not smoke while taking Levolin 1 Tablet. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(721, 'Levolin 1.25mg Respules', 'Cipla Ltd', 'Levolin 1.25mg Respules', 'Q. Is Levolin 1.25mg Respules better than Albuterol?', 'Both Levolin 1.25mg Respules and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 1.25mg Respules contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 1.25mg Respules, being the active form may have lesser side effects when compared to the inactive form.'),
(722, 'Levolin 1.25mg Respules', 'Cipla Ltd', 'Levolin 1.25mg Respules', 'Q. What would happen if I take higher than the recommended dose of Levolin 1.25mg Respules?', 'Taking a higher than the recommended dose of Levolin 1.25mg Respules may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 1.25mg Respules may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(723, 'Levolin 1.25mg Respules', 'Cipla Ltd', 'Levolin 1.25mg Respules', 'Q. Is it safe to take Levolin 1.25mg Respules if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 1.25mg Respules, seek immediate medical advice.'),
(724, 'Levolin 1.25mg Respules', 'Cipla Ltd', 'Levolin 1.25mg Respules', 'Q. Being a diabetic, what should I remember while taking Levolin 1.25mg Respules?', 'Levolin 1.25mg Respules may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(725, 'Levolin 1.25mg Respules', 'Cipla Ltd', 'Levolin 1.25mg Respules', 'Q. I have started using Levolin 1.25mg Respules and I am experiencing headaches and shakiness. Is this because of Levolin 1.25mg Respules and will these go away?', 'Yes, it could be due to Levolin 1.25mg Respules. Feeling shaky is a common side effect of Levolin 1.25mg Respules which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(726, 'Levolin 1.25mg Respules', 'Cipla Ltd', 'Levolin 1.25mg Respules', 'Q. When should I take Levolin 1.25mg Respules?', 'Use Levolin 1.25mg Respules as and when you need it. Levolin 1.25mg Respules relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(727, 'Levolin 1.25mg Respules', 'Cipla Ltd', 'Levolin 1.25mg Respules', 'Q. Can I smoke if I have been prescribed Levolin 1.25mg Respules?', 'No, you should not smoke while taking Levolin 1.25mg Respules. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(728, 'Levolin 100mcg Rotacap', 'Cipla Ltd', 'Levolin 100mcg Rotacap', 'Is Levolin 100mcg Rotacap better than Albuterol?', 'Both Levolin 100mcg Rotacap and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 100mcg Rotacap contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 100mcg Rotacap, being the active form may have lesser side effects when compared to the inactive form.'),
(729, 'Levolin 100mcg Rotacap', 'Cipla Ltd', 'Levolin 100mcg Rotacap', 'What would happen if I take higher than the recommended dose of Levolin 100mcg Rotacap?', 'Taking a higher than the recommended dose of Levolin 100mcg Rotacap may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 100mcg Rotacap may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(730, 'Levolin 100mcg Rotacap', 'Cipla Ltd', 'Levolin 100mcg Rotacap', 'Is it safe to take Levolin 100mcg Rotacap if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 100mcg Rotacap, seek immediate medical advice.'),
(731, 'Levolin 100mcg Rotacap', 'Cipla Ltd', 'Levolin 100mcg Rotacap', 'Being a diabetic, what should I remember while taking Levolin 100mcg Rotacap?', 'Levolin 100mcg Rotacap may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(732, 'Levolin 100mcg Rotacap', 'Cipla Ltd', 'Levolin 100mcg Rotacap', 'I have started using Levolin 100mcg Rotacap and I am experiencing headaches and shakiness. Is this because of Levolin 100mcg Rotacap and will these go away?', 'Yes, it could be due to Levolin 100mcg Rotacap. Feeling shaky is a common side effect of Levolin 100mcg Rotacap which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(733, 'Levolin 100mcg Rotacap', 'Cipla Ltd', 'Levolin 100mcg Rotacap', 'When should I take Levolin 100mcg Rotacap?', 'Use Levolin 100mcg Rotacap as and when you need it. Levolin 100mcg Rotacap relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(734, 'Levolin 100mcg Rotacap', 'Cipla Ltd', 'Levolin 100mcg Rotacap', 'Can I smoke if I have been prescribed Levolin 100mcg Rotacap?', 'No, you should not smoke while taking Levolin 100mcg Rotacap. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(735, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'How does Levolin 1mg Syrup Orange work?', 'Levolin 1mg Syrup Orange works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levolin 1mg Syrup Orange helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(736, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'How should I take Levolin 1mg Syrup Orange?', 'Levolin 1mg Syrup Orange should be taken in the dose and duration advised by your doctor. Levolin 1mg Syrup Orange can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levolin 1mg Syrup Orange just before bedtime with a glass of water.'),
(737, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'What if I forget to take a dose of Levolin 1mg Syrup Orange?', 'If you forget a dose of Levolin 1mg Syrup Orange, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(738, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'What would happen if I take higher than the recommended dose of Levolin 1mg Syrup Orange?', 'Taking a higher than the recommended dose of Levolin 1mg Syrup Orange may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 1mg Syrup Orange may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(739, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'Is Levolin 1mg Syrup Orange better than Albuterol?', 'Both Levolin 1mg Syrup Orange and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 1mg Syrup Orange contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 1mg Syrup Orange, being the active form may have lesser side effects when compared to the inactive form.'),
(740, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'Is it safe to take Levolin 1mg Syrup Orange if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 1mg Syrup Orange, seek immediate medical advice.'),
(741, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'Being a diabetic, what should I remember while taking Levolin 1mg Syrup Orange?', 'Levolin 1mg Syrup Orange may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(742, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'I have started using Levolin 1mg Syrup Orange and I am experiencing headaches and shakiness. Is this because of Levolin 1mg Syrup Orange and will these go away?', 'Yes, it could be due to Levolin 1mg Syrup Orange. Feeling shaky is a common side effect of Levolin 1mg Syrup Orange which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(743, 'Levolin 1mg Syrup Orange', 'Cipla Ltd', 'Levolin 1mg Syrup Orange', 'Can I smoke if I have been prescribed Levolin 1mg Syrup Orange?', 'No, you should not smoke while taking Levolin 1mg Syrup Orange. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(744, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'How does Levolin 2 Tablet work?', 'Levolin 2 Tablet works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levolin 2 Tablet helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(745, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'How should I take Levolin 2 Tablet?', 'Levolin 2 Tablet should be taken in the dose and duration advised by your doctor. Levolin 2 Tablet can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levolin 2 Tablet just before bedtime with a glass of water.'),
(746, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'What if I forget to take a dose of Levolin 2 Tablet?', 'If you forget a dose of Levolin 2 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(747, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'What would happen if I take higher than the recommended dose of Levolin 2 Tablet?', 'Taking a higher than the recommended dose of Levolin 2 Tablet may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 2 Tablet may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(748, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'Is Levolin 2 Tablet better than Albuterol?', 'Both Levolin 2 Tablet and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 2 Tablet contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 2 Tablet, being the active form may have lesser side effects when compared to the inactive form.'),
(749, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'Is it safe to take Levolin 2 Tablet if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 2 Tablet, seek immediate medical advice.'),
(750, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'Being a diabetic, what should I remember while taking Levolin 2 Tablet?', 'Levolin 2 Tablet may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(751, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'I have started using Levolin 2 Tablet and I am experiencing headaches and shakiness. Is this because of Levolin 2 Tablet and will these go away?', 'Yes, it could be due to Levolin 2 Tablet. Feeling shaky is a common side effect of Levolin 2 Tablet which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(752, 'Levolin 2 Tablet', 'Cipla Ltd', 'Levolin 2 Tablet', 'Can I smoke if I have been prescribed Levolin 2 Tablet?', 'No, you should not smoke while taking Levolin 2 Tablet. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(753, 'Levolin 5 Tablet', 'Amelio Pharmaceuticals', 'Levolin 5 Tablet', 'Is Levolin 5 Tablet a steroid? What is it used for?', 'No, Levolin 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(754, 'Levolin 5 Tablet', 'Amelio Pharmaceuticals', 'Levolin 5 Tablet', 'Does Levolin 5 Tablet make you tired and drowsy?', 'Yes, Levolin 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(755, 'Levolin 5 Tablet', 'Amelio Pharmaceuticals', 'Levolin 5 Tablet', 'How long does it take for Levolin 5 Tablet to work?', 'Levolin 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(756, 'Levolin 5 Tablet', 'Amelio Pharmaceuticals', 'Levolin 5 Tablet', 'Can I take Levolin 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolin 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(757, 'Levolin 5 Tablet', 'Amelio Pharmaceuticals', 'Levolin 5 Tablet', 'Is it safe to take Levolin 5 Tablet for a long time?', 'Levolin 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolin 5 Tablet for only as long as you need it.'),
(758, 'Levolin 5 Tablet', 'Amelio Pharmaceuticals', 'Levolin 5 Tablet', 'For how long should I continue Levolin 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolin 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolin 5 Tablet'),
(759, 'Levolin 50mcg Autohaler', 'Cipla Ltd', 'Levolin 50mcg Autohaler', 'What would happen if I take higher than the recommended dose of Levolin 50mcg Autohaler?', 'Taking a higher than the recommended dose of Levolin 50mcg Autohaler may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness, tremors, and lack of energy. High doses of Levolin 50mcg Autohaler may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body, and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(760, 'Levolin 50mcg Autohaler', 'Cipla Ltd', 'Levolin 50mcg Autohaler', 'Is it safe to take Levolin 50mcg Autohaler if I have heart disease?', 'Yes, Levolin 50mcg Autohaler is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 50mcg Autohaler, seek immediate medical advice.'),
(761, 'Levolin 50mcg Autohaler', 'Cipla Ltd', 'Levolin 50mcg Autohaler', 'Being a diabetic, what should I remember while taking Levolin 50mcg Autohaler?', 'Levolin 50mcg Autohaler may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any appointments. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(762, 'Levolin 50mcg Autohaler', 'Cipla Ltd', 'Levolin 50mcg Autohaler', 'I have started using Levolin 50mcg Autohaler and I am experiencing headaches and shakiness. Is this because of Levolin 50mcg Autohaler and will these go away?', 'Yes, it could be due to Levolin 50mcg Autohaler. Feeling shaky is a common side effect of Levolin 50mcg Autohaler which goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually headaches go away after a week. If they persist for a long time, contact your doctor.'),
(763, 'Levolin 50mcg Autohaler', 'Cipla Ltd', 'Levolin 50mcg Autohaler', 'When should I take Levolin 50mcg Autohaler?', 'Use Levolin 50mcg Autohaler as and when you need it. Levolin 50mcg Autohaler relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(764, 'Levolin 50mcg Autohaler', 'Cipla Ltd', 'Levolin 50mcg Autohaler', 'Can I smoke if I have been prescribed Levolin 50mcg Autohaler?', 'No, you should not smoke while taking Levolin 50mcg Autohaler. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(765, 'Levolin 50mcg Inhaler', 'Cipla Ltd', 'Levolin 50mcg Inhaler', 'Is Levolin 50mcg Inhaler better than Albuterol?', 'Both Levolin 50mcg Inhaler and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin 50mcg Inhaler contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin 50mcg Inhaler, being the active form may have lesser side effects when compared to the inactive form.'),
(766, 'Levolin 50mcg Inhaler', 'Cipla Ltd', 'Levolin 50mcg Inhaler', 'What would happen if I take higher than the recommended dose of Levolin 50mcg Inhaler?', 'Taking a higher than the recommended dose of Levolin 50mcg Inhaler may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin 50mcg Inhaler may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(767, 'Levolin 50mcg Inhaler', 'Cipla Ltd', 'Levolin 50mcg Inhaler', 'Is it safe to take Levolin 50mcg Inhaler if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin 50mcg Inhaler, seek immediate medical advice.'),
(768, 'Levolin 50mcg Inhaler', 'Cipla Ltd', 'Levolin 50mcg Inhaler', 'Being a diabetic, what should I remember while taking Levolin 50mcg Inhaler?', 'Levolin 50mcg Inhaler may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(769, 'Levolin 50mcg Inhaler', 'Cipla Ltd', 'Levolin 50mcg Inhaler', 'I have started using Levolin 50mcg Inhaler and I am experiencing headaches and shakiness. Is this because of Levolin 50mcg Inhaler and will these go away?', 'Yes, it could be due to Levolin 50mcg Inhaler. Feeling shaky is a common side effect of Levolin 50mcg Inhaler which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(770, 'Levolin 50mcg Inhaler', 'Cipla Ltd', 'Levolin 50mcg Inhaler', 'When should I take Levolin 50mcg Inhaler?', 'Use Levolin 50mcg Inhaler as and when you need it. Levolin 50mcg Inhaler relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(771, 'Levolin 50mcg Inhaler', 'Cipla Ltd', 'Levolin 50mcg Inhaler', 'Can I smoke if I have been prescribed Levolin 50mcg Inhaler?', 'No, you should not smoke while taking Levolin 50mcg Inhaler. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(772, 'Levolin Plus Jr Expectorant', 'Cipla Ltd', 'Levolin Plus Jr Expectorant', 'What is Levolin Plus Jr Expectorant?', 'Levolin Plus Jr Expectorant is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(773, 'Levolin Plus Jr Expectorant', 'Cipla Ltd', 'Levolin Plus Jr Expectorant', 'Is it safe to use Levolin Plus Jr Expectorant?', 'Yes, it is safe to use Levolin Plus Jr Expectorant in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(774, 'Levolin Plus Jr Expectorant', 'Cipla Ltd', 'Levolin Plus Jr Expectorant', 'Are there any specific contraindications associated with the use of Levolin Plus Jr Expectorant?', 'Use of Levolin Plus Jr Expectorant is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(775, 'Levolin Plus Jr Expectorant', 'Cipla Ltd', 'Levolin Plus Jr Expectorant', 'Can the use of Levolin Plus Jr Expectorant cause dizziness?', 'Yes, the use of Levolin Plus Jr Expectorant can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(776, 'Levolin Plus Jr Expectorant', 'Cipla Ltd', 'Levolin Plus Jr Expectorant', 'Can the use of Levolin Plus Jr Expectorant cause diarrhea?', 'Yes, the use of Levolin Plus Jr Expectorant can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(777, 'Levolin Plus Jr Expectorant', 'Cipla Ltd', 'Levolin Plus Jr Expectorant', 'What are the recommended storage conditions for Levolin Plus Jr Expectorant?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(778, 'Levolin Plus Syrup Pineapple & Black currant', 'Cipla Ltd', 'Levolin Plus Syrup Pineapple & Black currant', 'What is Levolin Plus Syrup Pineapple & Black currant?', 'Levolin Plus Syrup Pineapple & Black currant is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(779, 'Levolin Plus Syrup Pineapple & Black currant', 'Cipla Ltd', 'Levolin Plus Syrup Pineapple & Black currant', 'Is it safe to use Levolin Plus Syrup Pineapple & Black currant?', 'Yes, it is safe to use Levolin Plus Syrup Pineapple & Black currant in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(780, 'Levolin Plus Syrup Pineapple & Black currant', 'Cipla Ltd', 'Levolin Plus Syrup Pineapple & Black currant', 'Are there any specific contraindications associated with the use of Levolin Plus Syrup Pineapple & Black currant?', 'Use of Levolin Plus Syrup Pineapple & Black currant is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(781, 'Levolin Plus Syrup Pineapple & Black currant', 'Cipla Ltd', 'Levolin Plus Syrup Pineapple & Black currant', 'Can the use of Levolin Plus Syrup Pineapple & Black currant cause dizziness?', 'Yes, the use of Levolin Plus Syrup Pineapple & Black currant can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(782, 'Levolin Plus Syrup Pineapple & Black currant', 'Cipla Ltd', 'Levolin Plus Syrup Pineapple & Black currant', 'Can the use of Levolin Plus Syrup Pineapple & Black currant cause diarrhea?', 'Yes, the use of Levolin Plus Syrup Pineapple & Black currant can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(783, 'Levolin Plus Syrup Pineapple & Black currant', 'Cipla Ltd', 'Levolin Plus Syrup Pineapple & Black currant', 'What are the recommended storage conditions for Levolin Plus Syrup Pineapple & Black currant?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(784, 'Levolin Plus Syrup Sugar Free Mango', 'Cipla Ltd', 'Levolin Plus Syrup Sugar Free Mango', 'What is Levolin Plus Syrup Sugar Free Mango?', 'Levolin Plus Syrup Sugar Free Mango is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(785, 'Levolin Plus Syrup Sugar Free Mango', 'Cipla Ltd', 'Levolin Plus Syrup Sugar Free Mango', 'Is it safe to use Levolin Plus Syrup Sugar Free Mango?', 'Yes, it is safe to use Levolin Plus Syrup Sugar Free Mango in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(786, 'Levolin Plus Syrup Sugar Free Mango', 'Cipla Ltd', 'Levolin Plus Syrup Sugar Free Mango', 'Are there any specific contraindications associated with the use of Levolin Plus Syrup Sugar Free Mango?', 'Use of Levolin Plus Syrup Sugar Free Mango is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(787, 'Levolin Plus Syrup Sugar Free Mango', 'Cipla Ltd', 'Levolin Plus Syrup Sugar Free Mango', 'Can the use of Levolin Plus Syrup Sugar Free Mango cause dizziness?', 'Yes, the use of Levolin Plus Syrup Sugar Free Mango can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(788, 'Levolin Plus Syrup Sugar Free Mango', 'Cipla Ltd', 'Levolin Plus Syrup Sugar Free Mango', 'Can the use of Levolin Plus Syrup Sugar Free Mango cause diarrhea?', 'Yes, the use of Levolin Plus Syrup Sugar Free Mango can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(789, 'Levolin Plus Syrup Sugar Free Mango', 'Cipla Ltd', 'Levolin Plus Syrup Sugar Free Mango', 'What are the recommended storage conditions for Levolin Plus Syrup Sugar Free Mango?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(790, 'Levolin Respules 0.31mg (2.5ml Each)', 'Cipla Ltd', 'Levolin Respules 0.31mg (2.5ml Each)', 'Is Levolin Respules 0.31mg (2.5ml Each) better than Albuterol?', 'Both Levolin Respules 0.31mg (2.5ml Each) and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin Respules 0.31mg (2.5ml Each) contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin Respules 0.31mg (2.5ml Each), being the active form may have lesser side effects when compared to the inactive form.'),
(791, 'Levolin Respules 0.31mg (2.5ml Each)', 'Cipla Ltd', 'Levolin Respules 0.31mg (2.5ml Each)', 'What would happen if I take higher than the recommended dose of Levolin Respules 0.31mg (2.5ml Each)?', 'Taking a higher than the recommended dose of Levolin Respules 0.31mg (2.5ml Each) may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin Respules 0.31mg (2.5ml Each) may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(792, 'Levolin Respules 0.31mg (2.5ml Each)', 'Cipla Ltd', 'Levolin Respules 0.31mg (2.5ml Each)', 'Is it safe to take Levolin Respules 0.31mg (2.5ml Each) if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin Respules 0.31mg (2.5ml Each), seek immediate medical advice.'),
(793, 'Levolin Respules 0.31mg (2.5ml Each)', 'Cipla Ltd', 'Levolin Respules 0.31mg (2.5ml Each)', 'Being a diabetic, what should I remember while taking Levolin Respules 0.31mg (2.5ml Each)?', 'Levolin Respules 0.31mg (2.5ml Each) may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(794, 'Levolin Respules 0.31mg (2.5ml Each)', 'Cipla Ltd', 'Levolin Respules 0.31mg (2.5ml Each)', 'I have started using Levolin Respules 0.31mg (2.5ml Each) and I am experiencing headaches and shakiness. Is this because of Levolin Respules 0.31mg (2.5ml Each) and will these go away?', 'Yes, it could be due to Levolin Respules 0.31mg (2.5ml Each). Feeling shaky is a common side effect of Levolin Respules 0.31mg (2.5ml Each) which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(795, 'Levolin Respules 0.31mg (2.5ml Each)', 'Cipla Ltd', 'Levolin Respules 0.31mg (2.5ml Each)', 'When should I take Levolin Respules 0.31mg (2.5ml Each)?', 'Use Levolin Respules 0.31mg (2.5ml Each) as and when you need it. Levolin Respules 0.31mg (2.5ml Each) relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(796, 'Levolin Respules 0.31mg (2.5ml Each)', 'Cipla Ltd', 'Levolin Respules 0.31mg (2.5ml Each)', 'Can I smoke if I have been prescribed Levolin Respules 0.31mg (2.5ml Each)?', 'No, you should not smoke while taking Levolin Respules 0.31mg (2.5ml Each). Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(797, 'Levolin Synchrobreathe Inhaler', 'Cipla Ltd', 'Levolin Synchrobreathe Inhaler', 'Is Levolin Synchrobreathe Inhaler better than Albuterol?', 'Both Levolin Synchrobreathe Inhaler and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levolin Synchrobreathe Inhaler contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levolin Synchrobreathe Inhaler, being the active form may have lesser side effects when compared to the inactive form.'),
(798, 'Levolin Synchrobreathe Inhaler', 'Cipla Ltd', 'Levolin Synchrobreathe Inhaler', 'What would happen if I take higher than the recommended dose of Levolin Synchrobreathe Inhaler?', 'Taking a higher than the recommended dose of Levolin Synchrobreathe Inhaler may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levolin Synchrobreathe Inhaler may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(799, 'Levolin Synchrobreathe Inhaler', 'Cipla Ltd', 'Levolin Synchrobreathe Inhaler', 'Is it safe to take Levolin Synchrobreathe Inhaler if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levolin Synchrobreathe Inhaler, seek immediate medical advice.'),
(800, 'Levolin Synchrobreathe Inhaler', 'Cipla Ltd', 'Levolin Synchrobreathe Inhaler', 'Being a diabetic, what should I remember while taking Levolin Synchrobreathe Inhaler?', 'Levolin Synchrobreathe Inhaler may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(801, 'Levolin Synchrobreathe Inhaler', 'Cipla Ltd', 'Levolin Synchrobreathe Inhaler', 'I have started using Levolin Synchrobreathe Inhaler and I am experiencing headaches and shakiness. Is this because of Levolin Synchrobreathe Inhaler and will these go away?', 'Yes, it could be due to Levolin Synchrobreathe Inhaler. Feeling shaky is a common side effect of Levolin Synchrobreathe Inhaler which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(802, 'Levolin Synchrobreathe Inhaler', 'Cipla Ltd', 'Levolin Synchrobreathe Inhaler', 'When should I take Levolin Synchrobreathe Inhaler?', 'Use Levolin Synchrobreathe Inhaler as and when you need it. Levolin Synchrobreathe Inhaler relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(803, 'Levolin Synchrobreathe Inhaler', 'Cipla Ltd', 'Levolin Synchrobreathe Inhaler', 'Can I smoke if I have been prescribed Levolin Synchrobreathe Inhaler?', 'No, you should not smoke while taking Levolin Synchrobreathe Inhaler. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(804, 'Levolina 5mg Tablet', 'Adelina Lifesciences', 'Levolina 5mg Tablet', 'Is Levolina 5mg Tablet a steroid? What is it used for?', 'No, Levolina 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(805, 'Levolina 5mg Tablet', 'Adelina Lifesciences', 'Levolina 5mg Tablet', 'Does Levolina 5mg Tablet make you tired and drowsy?', 'Yes, Levolina 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(806, 'Levolina 5mg Tablet', 'Adelina Lifesciences', 'Levolina 5mg Tablet', 'How long does it take for Levolina 5mg Tablet to work?', 'Levolina 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(807, 'Levolina 5mg Tablet', 'Adelina Lifesciences', 'Levolina 5mg Tablet', 'Can I take Levolina 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolina 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(808, 'Levolina 5mg Tablet', 'Adelina Lifesciences', 'Levolina 5mg Tablet', 'Is it safe to take Levolina 5mg Tablet for a long time?', 'Levolina 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolina 5mg Tablet for only as long as you need it.'),
(809, 'Levolina 5mg Tablet', 'Adelina Lifesciences', 'Levolina 5mg Tablet', 'For how long should I continue Levolina 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolina 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolina 5mg Tablet'),
(810, 'Levoline OZ Tablet', 'Shrinivas Gujarat Laboratories Pvt Ltd', 'Levoline OZ Tablet', 'What if I don\'t get better after using Levoline OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(811, 'Levoline OZ Tablet', 'Shrinivas Gujarat Laboratories Pvt Ltd', 'Levoline OZ Tablet', 'Can I stop taking Levoline OZ Tablet when I feel better?', 'No, do not stop taking Levoline OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(812, 'Levoline OZ Tablet', 'Shrinivas Gujarat Laboratories Pvt Ltd', 'Levoline OZ Tablet', 'What if I miss my dose?', 'Take Levoline OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(813, 'Levolink Oral Suspension', 'SAG Pharma Pvt Ltd', 'Levolink Oral Suspension', 'Is Levolink Oral Suspension safe?', 'Levolink Oral Suspension is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(814, 'Levolink Oral Suspension', 'SAG Pharma Pvt Ltd', 'Levolink Oral Suspension', 'What if I forget to take a dose of Levolink Oral Suspension?', 'If you forget a dose of Levolink Oral Suspension, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(815, 'Levolink Oral Suspension', 'SAG Pharma Pvt Ltd', 'Levolink Oral Suspension', 'Can the use of Levolink Oral Suspension cause diarrhea?', 'Yes, the use of Levolink Oral Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(816, 'Levolink Oral Suspension', 'SAG Pharma Pvt Ltd', 'Levolink Oral Suspension', 'Can I stop taking Levolink Oral Suspension when I feel better?', 'No, do not stop taking Levolink Oral Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolink Oral Suspension too early, the symptoms may return or worsen. Continue taking Levolink Oral Suspension in the dose and duration advised by the doctor.'),
(817, 'Levolink Oral Suspension', 'SAG Pharma Pvt Ltd', 'Levolink Oral Suspension', 'Can the use of Levolink Oral Suspension increase the risk of muscle damage?', 'Yes, the use of Levolink Oral Suspension is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolink Oral Suspension but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(818, 'Levolist 500mg Tablet', 'Biophar Lifesciences Pvt Ltd', 'Levolist 500mg Tablet', 'Is Levolist 500mg Tablet safe?', 'Levolist 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(819, 'Levolist 500mg Tablet', 'Biophar Lifesciences Pvt Ltd', 'Levolist 500mg Tablet', 'What if I forget to take a dose of Levolist 500mg Tablet?', 'If you forget a dose of Levolist 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(820, 'Levolist 500mg Tablet', 'Biophar Lifesciences Pvt Ltd', 'Levolist 500mg Tablet', 'Can the use of Levolist 500mg Tablet cause diarrhea?', 'Yes, the use of Levolist 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(821, 'Levolist 500mg Tablet', 'Biophar Lifesciences Pvt Ltd', 'Levolist 500mg Tablet', 'Can I stop taking Levolist 500mg Tablet when I feel better?', 'No, do not stop taking Levolist 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolist 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolist 500mg Tablet in the dose and duration advised by the doctor.'),
(822, 'Levolist 500mg Tablet', 'Biophar Lifesciences Pvt Ltd', 'Levolist 500mg Tablet', 'Can the use of Levolist 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolist 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolist 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(823, 'Levolist OZ 250mg/500mg Tablet', 'Rech Elist Pharma', 'Levolist OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levolist OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(824, 'Levolist OZ 250mg/500mg Tablet', 'Rech Elist Pharma', 'Levolist OZ 250mg/500mg Tablet', 'Can I stop taking Levolist OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levolist OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(825, 'Levolist OZ 250mg/500mg Tablet', 'Rech Elist Pharma', 'Levolist OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levolist OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(826, 'Levolist OZ Oral Suspension', 'Rech Elist Pharma', 'Levolist OZ Oral Suspension', 'What if I don\'t get better after using Levolist OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(827, 'Levolist OZ Oral Suspension', 'Rech Elist Pharma', 'Levolist OZ Oral Suspension', 'Can I stop taking Levolist OZ Oral Suspension when I feel better?', 'No, do not stop taking Levolist OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(828, 'Levolist OZ Oral Suspension', 'Rech Elist Pharma', 'Levolist OZ Oral Suspension', 'What if I miss my dose?', 'Take Levolist OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(829, 'Levolite M 5mg/10mg Tablet', 'Isis Healthcare Pvt Ltd', 'Levolite M 5mg/10mg Tablet', 'What is Levolite M 5mg/10mg Tablet?', 'Levolite M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(830, 'Levolite M 5mg/10mg Tablet', 'Isis Healthcare Pvt Ltd', 'Levolite M 5mg/10mg Tablet', 'Can the use of Levolite M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolite M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(831, 'Levolite M 5mg/10mg Tablet', 'Isis Healthcare Pvt Ltd', 'Levolite M 5mg/10mg Tablet', 'Can Levolite M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levolite M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(832, 'Levolite M 5mg/10mg Tablet', 'Isis Healthcare Pvt Ltd', 'Levolite M 5mg/10mg Tablet', 'Can the use of Levolite M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levolite M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(833, 'Levolite M 5mg/10mg Tablet', 'Isis Healthcare Pvt Ltd', 'Levolite M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levolite M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levolite M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolite M 5mg/10mg Tablet.'),
(834, 'Levolite M 5mg/10mg Tablet', 'Isis Healthcare Pvt Ltd', 'Levolite M 5mg/10mg Tablet', 'Will Levolite M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolite M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(835, 'Levolite M 5mg/10mg Tablet', 'Isis Healthcare Pvt Ltd', 'Levolite M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levolite M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(836, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(837, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Can I decrease the dose of Levolite M Kid 2.5mg/4mg Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(838, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'How should Levolite M Kid 2.5mg/4mg Tablet DT be stored?', 'Levolite M Kid 2.5mg/4mg Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(839, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Can Levolite M Kid 2.5mg/4mg Tablet DT make my child sleepy?', 'Levolite M Kid 2.5mg/4mg Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(840, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levolite M Kid 2.5mg/4mg Tablet DT?', 'No, don’t start Levolite M Kid 2.5mg/4mg Tablet DT without speaking to your child’s doctor. Moreover, Levolite M Kid 2.5mg/4mg Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(841, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levolite M Kid 2.5mg/4mg Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(842, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'My child is suffering from a mood disorder. Is it safe to give Levolite M Kid 2.5mg/4mg Tablet DT to my child?', 'Some studies show that Levolite M Kid 2.5mg/4mg Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(843, 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Isis Healthcare Pvt Ltd', 'Levolite M Kid 2.5mg/4mg Tablet DT', 'Can I use Levolite M Kid 2.5mg/4mg Tablet DT for treating acute asthma attacks in my child?', 'Levolite M Kid 2.5mg/4mg Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(844, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(845, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'Can I decrease the dose of Levolite M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(846, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'How should Levolite M Syrup be stored?', 'Levolite M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(847, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'Can Levolite M Syrup make my child sleepy?', 'Levolite M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(848, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levolite M Syrup?', 'No, don’t start Levolite M Syrup without speaking to your child’s doctor. Moreover, Levolite M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(849, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levolite M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(850, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levolite M Syrup to my child?', 'Some studies show that Levolite M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(851, 'Levolite M Syrup', 'Eysys Pharmaceutical', 'Levolite M Syrup', 'Can I use Levolite M Syrup for treating acute asthma attacks in my child?', 'Levolite M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(852, 'Levolive 5mg Tablet', 'Alive Healthcare', 'Levolive 5mg Tablet', 'Is Levolive 5mg Tablet a steroid? What is it used for?', 'No, Levolive 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(853, 'Levolive 5mg Tablet', 'Alive Healthcare', 'Levolive 5mg Tablet', 'Does Levolive 5mg Tablet make you tired and drowsy?', 'Yes, Levolive 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(854, 'Levolive 5mg Tablet', 'Alive Healthcare', 'Levolive 5mg Tablet', 'How long does it take for Levolive 5mg Tablet to work?', 'Levolive 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(855, 'Levolive 5mg Tablet', 'Alive Healthcare', 'Levolive 5mg Tablet', 'Can I take Levolive 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolive 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(856, 'Levolive 5mg Tablet', 'Alive Healthcare', 'Levolive 5mg Tablet', 'Is it safe to take Levolive 5mg Tablet for a long time?', 'Levolive 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolive 5mg Tablet for only as long as you need it.'),
(857, 'Levolive 5mg Tablet', 'Alive Healthcare', 'Levolive 5mg Tablet', 'For how long should I continue Levolive 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolive 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolive 5mg Tablet'),
(858, 'Levolix-M Tablet', 'Aelix Healthcare', 'Levolix-M Tablet', 'What is Levolix-M Tablet?', 'Levolix-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(859, 'Levolix-M Tablet', 'Aelix Healthcare', 'Levolix-M Tablet', 'Can the use of Levolix-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolix-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(860, 'Levolix-M Tablet', 'Aelix Healthcare', 'Levolix-M Tablet', 'Can Levolix-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levolix-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(861, 'Levolix-M Tablet', 'Aelix Healthcare', 'Levolix-M Tablet', 'Can the use of Levolix-M Tablet cause dry mouth?', 'Yes, the use of Levolix-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(862, 'Levolix-M Tablet', 'Aelix Healthcare', 'Levolix-M Tablet', 'Can I drink alcohol while taking Levolix-M Tablet?', 'No, do not take alcohol while taking Levolix-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolix-M Tablet.'),
(863, 'Levolix-M Tablet', 'Aelix Healthcare', 'Levolix-M Tablet', 'Will Levolix-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolix-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(864, 'Levolix-M Tablet', 'Aelix Healthcare', 'Levolix-M Tablet', 'What are the instructions for storage and disposal of Levolix-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(865, 'Levolla Tablet', 'Skylla Pharmaceuticals', 'Levolla Tablet', 'Is Levolla Tablet safe?', 'Levolla Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(866, 'Levolla Tablet', 'Skylla Pharmaceuticals', 'Levolla Tablet', 'What if I forget to take a dose of Levolla Tablet?', 'If you forget a dose of Levolla Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(867, 'Levolla Tablet', 'Skylla Pharmaceuticals', 'Levolla Tablet', 'Can the use of Levolla Tablet cause diarrhea?', 'Yes, the use of Levolla Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(868, 'Levolla Tablet', 'Skylla Pharmaceuticals', 'Levolla Tablet', 'Can I stop taking Levolla Tablet when I feel better?', 'No, do not stop taking Levolla Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolla Tablet too early, the symptoms may return or worsen. Continue taking Levolla Tablet in the dose and duration advised by the doctor.'),
(869, 'Levolla Tablet', 'Skylla Pharmaceuticals', 'Levolla Tablet', 'Can the use of Levolla Tablet increase the risk of muscle damage?', 'Yes, the use of Levolla Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolla Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(870, 'Levollect 250 Tablet', 'Intellect Lifescience', 'Levollect 250 Tablet', 'Is Levollect 250 Tablet safe?', 'Levollect 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(871, 'Levollect 250 Tablet', 'Intellect Lifescience', 'Levollect 250 Tablet', 'What if I forget to take a dose of Levollect 250 Tablet?', 'If you forget a dose of Levollect 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(872, 'Levollect 250 Tablet', 'Intellect Lifescience', 'Levollect 250 Tablet', 'Can the use of Levollect 250 Tablet cause diarrhea?', 'Yes, the use of Levollect 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(873, 'Levollect 250 Tablet', 'Intellect Lifescience', 'Levollect 250 Tablet', 'Can I stop taking Levollect 250 Tablet when I feel better?', 'No, do not stop taking Levollect 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levollect 250 Tablet too early, the symptoms may return or worsen. Continue taking Levollect 250 Tablet in the dose and duration advised by the doctor.'),
(874, 'Levollect 250 Tablet', 'Intellect Lifescience', 'Levollect 250 Tablet', 'Can the use of Levollect 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levollect 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levollect 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(875, 'Levollect 500 Tablet', 'Intellect Lifescience', 'Levollect 500 Tablet', 'Is Levollect 500 Tablet safe?', 'Levollect 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(876, 'Levollect 500 Tablet', 'Intellect Lifescience', 'Levollect 500 Tablet', 'What if I forget to take a dose of Levollect 500 Tablet?', 'If you forget a dose of Levollect 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(877, 'Levollect 500 Tablet', 'Intellect Lifescience', 'Levollect 500 Tablet', 'Can the use of Levollect 500 Tablet cause diarrhea?', 'Yes, the use of Levollect 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(878, 'Levollect 500 Tablet', 'Intellect Lifescience', 'Levollect 500 Tablet', 'Can I stop taking Levollect 500 Tablet when I feel better?', 'No, do not stop taking Levollect 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levollect 500 Tablet too early, the symptoms may return or worsen. Continue taking Levollect 500 Tablet in the dose and duration advised by the doctor.'),
(879, 'Levollect 500 Tablet', 'Intellect Lifescience', 'Levollect 500 Tablet', 'Can the use of Levollect 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levollect 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levollect 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(880, 'Levollergy Syrup', 'Igniva Marketing Pvt Ltd', 'Levollergy Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levollergy Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(881, 'Levollergy Syrup', 'Igniva Marketing Pvt Ltd', 'Levollergy Syrup', 'Can other medicines be given at the same time as Levollergy Syrup?', 'Levollergy Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levollergy Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(882, 'Levollergy Syrup', 'Igniva Marketing Pvt Ltd', 'Levollergy Syrup', 'How much Levollergy Syrup should I give to my child?', 'Levollergy Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(883, 'Levollergy Syrup', 'Igniva Marketing Pvt Ltd', 'Levollergy Syrup', 'What if I give too much of Levollergy Syrup by mistake?', 'Although Levollergy Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(884, 'Levollergy Syrup', 'Igniva Marketing Pvt Ltd', 'Levollergy Syrup', 'How should Levollergy Syrup be stored?', 'Store Levollergy Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(885, 'Levollergy Syrup', 'Igniva Marketing Pvt Ltd', 'Levollergy Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(886, 'Levolock 500mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Levolock 500mg Tablet', 'Is Levolock 500mg Tablet safe?', 'Levolock 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(887, 'Levolock 500mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Levolock 500mg Tablet', 'What if I forget to take a dose of Levolock 500mg Tablet?', 'If you forget a dose of Levolock 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(888, 'Levolock 500mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Levolock 500mg Tablet', 'Can the use of Levolock 500mg Tablet cause diarrhea?', 'Yes, the use of Levolock 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(889, 'Levolock 500mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Levolock 500mg Tablet', 'Can I stop taking Levolock 500mg Tablet when I feel better?', 'No, do not stop taking Levolock 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolock 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolock 500mg Tablet in the dose and duration advised by the doctor.'),
(890, 'Levolock 500mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Levolock 500mg Tablet', 'Can the use of Levolock 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolock 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolock 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(891, 'Levolog 250mg Tablet', 'Logos Pharma', 'Levolog 250mg Tablet', 'Is Levolog 250mg Tablet safe?', 'Levolog 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(892, 'Levolog 250mg Tablet', 'Logos Pharma', 'Levolog 250mg Tablet', 'What if I forget to take a dose of Levolog 250mg Tablet?', 'If you forget a dose of Levolog 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(893, 'Levolog 250mg Tablet', 'Logos Pharma', 'Levolog 250mg Tablet', 'Can the use of Levolog 250mg Tablet cause diarrhea?', 'Yes, the use of Levolog 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(894, 'Levolog 250mg Tablet', 'Logos Pharma', 'Levolog 250mg Tablet', 'Can I stop taking Levolog 250mg Tablet when I feel better?', 'No, do not stop taking Levolog 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolog 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levolog 250mg Tablet in the dose and duration advised by the doctor.'),
(895, 'Levolog 250mg Tablet', 'Logos Pharma', 'Levolog 250mg Tablet', 'Can the use of Levolog 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolog 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolog 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(896, 'Levolog 500mg Tablet', 'Logos Pharma', 'Levolog 500mg Tablet', 'Is Levolog 500mg Tablet safe?', 'Levolog 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(897, 'Levolog 500mg Tablet', 'Logos Pharma', 'Levolog 500mg Tablet', 'What if I forget to take a dose of Levolog 500mg Tablet?', 'If you forget a dose of Levolog 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(898, 'Levolog 500mg Tablet', 'Logos Pharma', 'Levolog 500mg Tablet', 'Can the use of Levolog 500mg Tablet cause diarrhea?', 'Yes, the use of Levolog 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(899, 'Levolog 500mg Tablet', 'Logos Pharma', 'Levolog 500mg Tablet', 'Can I stop taking Levolog 500mg Tablet when I feel better?', 'No, do not stop taking Levolog 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolog 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolog 500mg Tablet in the dose and duration advised by the doctor.'),
(900, 'Levolog 500mg Tablet', 'Logos Pharma', 'Levolog 500mg Tablet', 'Can the use of Levolog 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolog 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolog 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(901, 'Levolon 500mg Tablet', 'PDC Healthcare', 'Levolon 500mg Tablet', 'Is Levolon 500mg Tablet safe?', 'Levolon 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(902, 'Levolon 500mg Tablet', 'PDC Healthcare', 'Levolon 500mg Tablet', 'What if I forget to take a dose of Levolon 500mg Tablet?', 'If you forget a dose of Levolon 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(903, 'Levolon 500mg Tablet', 'PDC Healthcare', 'Levolon 500mg Tablet', 'Can the use of Levolon 500mg Tablet cause diarrhea?', 'Yes, the use of Levolon 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(904, 'Levolon 500mg Tablet', 'PDC Healthcare', 'Levolon 500mg Tablet', 'Can I stop taking Levolon 500mg Tablet when I feel better?', 'No, do not stop taking Levolon 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolon 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolon 500mg Tablet in the dose and duration advised by the doctor.'),
(905, 'Levolon 500mg Tablet', 'PDC Healthcare', 'Levolon 500mg Tablet', 'Can the use of Levolon 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolon 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolon 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(906, 'Levolong 500mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolong 500mg Tablet', 'Is Levolong 500mg Tablet safe?', 'Levolong 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(907, 'Levolong 500mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolong 500mg Tablet', 'What if I forget to take a dose of Levolong 500mg Tablet?', 'If you forget a dose of Levolong 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(908, 'Levolong 500mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolong 500mg Tablet', 'Can the use of Levolong 500mg Tablet cause diarrhea?', 'Yes, the use of Levolong 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(909, 'Levolong 500mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolong 500mg Tablet', 'Can I stop taking Levolong 500mg Tablet when I feel better?', 'No, do not stop taking Levolong 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolong 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolong 500mg Tablet in the dose and duration advised by the doctor.'),
(910, 'Levolong 500mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Levolong 500mg Tablet', 'Can the use of Levolong 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolong 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolong 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(911, 'Levolong 5mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong 5mg Tablet', 'Is Levolong 5mg Tablet a steroid? What is it used for?', 'No, Levolong 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(912, 'Levolong 5mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong 5mg Tablet', 'Does Levolong 5mg Tablet make you tired and drowsy?', 'Yes, Levolong 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(913, 'Levolong 5mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong 5mg Tablet', 'How long does it take for Levolong 5mg Tablet to work?', 'Levolong 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(914, 'Levolong 5mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong 5mg Tablet', 'Can I take Levolong 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolong 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(915, 'Levolong 5mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong 5mg Tablet', 'Is it safe to take Levolong 5mg Tablet for a long time?', 'Levolong 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolong 5mg Tablet for only as long as you need it.'),
(916, 'Levolong 5mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong 5mg Tablet', 'For how long should I continue Levolong 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolong 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolong 5mg Tablet'),
(917, 'Levolong M 5mg/10mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong M 5mg/10mg Tablet', 'What is Levolong M 5mg/10mg Tablet?', 'Levolong M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(918, 'Levolong M 5mg/10mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong M 5mg/10mg Tablet', 'Can the use of Levolong M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolong M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(919, 'Levolong M 5mg/10mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong M 5mg/10mg Tablet', 'Can Levolong M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levolong M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(920, 'Levolong M 5mg/10mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong M 5mg/10mg Tablet', 'Can the use of Levolong M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levolong M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(921, 'Levolong M 5mg/10mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levolong M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levolong M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolong M 5mg/10mg Tablet.'),
(922, 'Levolong M 5mg/10mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong M 5mg/10mg Tablet', 'Will Levolong M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolong M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(923, 'Levolong M 5mg/10mg Tablet', 'Oxford Pharmaceuticals Pvt Ltd', 'Levolong M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levolong M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(924, 'Levolong Tablet', 'Oxpro Pharma Private Limited', 'Levolong Tablet', 'Is Levolong Tablet a steroid? What is it used for?', 'No, Levolong Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(925, 'Levolong Tablet', 'Oxpro Pharma Private Limited', 'Levolong Tablet', 'Does Levolong Tablet make you tired and drowsy?', 'Yes, Levolong Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(926, 'Levolong Tablet', 'Oxpro Pharma Private Limited', 'Levolong Tablet', 'How long does it take for Levolong Tablet to work?', 'Levolong Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(927, 'Levolong Tablet', 'Oxpro Pharma Private Limited', 'Levolong Tablet', 'Can I take Levolong Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolong Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(928, 'Levolong Tablet', 'Oxpro Pharma Private Limited', 'Levolong Tablet', 'Is it safe to take Levolong Tablet for a long time?', 'Levolong Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolong Tablet for only as long as you need it.'),
(929, 'Levolong Tablet', 'Oxpro Pharma Private Limited', 'Levolong Tablet', 'For how long should I continue Levolong Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolong Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolong Tablet'),
(930, 'Levolong-M Tablet', 'Oxpro Pharma Private Limited', 'Levolong-M Tablet', 'What is Levolong-M Tablet?', 'Levolong-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(931, 'Levolong-M Tablet', 'Oxpro Pharma Private Limited', 'Levolong-M Tablet', 'Can the use of Levolong-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolong-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(932, 'Levolong-M Tablet', 'Oxpro Pharma Private Limited', 'Levolong-M Tablet', 'Can Levolong-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levolong-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(933, 'Levolong-M Tablet', 'Oxpro Pharma Private Limited', 'Levolong-M Tablet', 'Can the use of Levolong-M Tablet cause dry mouth?', 'Yes, the use of Levolong-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(934, 'Levolong-M Tablet', 'Oxpro Pharma Private Limited', 'Levolong-M Tablet', 'Can I drink alcohol while taking Levolong-M Tablet?', 'No, do not take alcohol while taking Levolong-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolong-M Tablet.'),
(935, 'Levolong-M Tablet', 'Oxpro Pharma Private Limited', 'Levolong-M Tablet', 'Will Levolong-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolong-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(936, 'Levolong-M Tablet', 'Oxpro Pharma Private Limited', 'Levolong-M Tablet', 'What are the instructions for storage and disposal of Levolong-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(937, 'Levolot M Tablet', 'Lotus Life Sciences', 'Levolot M Tablet', 'What is Levolot M Tablet?', 'Levolot M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(938, 'Levolot M Tablet', 'Lotus Life Sciences', 'Levolot M Tablet', 'Can the use of Levolot M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levolot M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(939, 'Levolot M Tablet', 'Lotus Life Sciences', 'Levolot M Tablet', 'Can Levolot M Tablet be stopped when allergy symptoms are relieved?', 'No, Levolot M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(940, 'Levolot M Tablet', 'Lotus Life Sciences', 'Levolot M Tablet', 'Can the use of Levolot M Tablet cause dry mouth?', 'Yes, the use of Levolot M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(941, 'Levolot M Tablet', 'Lotus Life Sciences', 'Levolot M Tablet', 'Can I drink alcohol while taking Levolot M Tablet?', 'No, do not take alcohol while taking Levolot M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolot M Tablet.'),
(942, 'Levolot M Tablet', 'Lotus Life Sciences', 'Levolot M Tablet', 'Will Levolot M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levolot M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(943, 'Levolot M Tablet', 'Lotus Life Sciences', 'Levolot M Tablet', 'What are the instructions for storage and disposal of Levolot M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(944, 'Levoltra Tablet', 'Sherwyn Pharmaceuticals Pvt Ltd', 'Levoltra Tablet', 'What is Levoltra Tablet?', 'Levoltra Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(945, 'Levoltra Tablet', 'Sherwyn Pharmaceuticals Pvt Ltd', 'Levoltra Tablet', 'Can the use of Levoltra Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoltra Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(946, 'Levoltra Tablet', 'Sherwyn Pharmaceuticals Pvt Ltd', 'Levoltra Tablet', 'Can Levoltra Tablet be stopped when allergy symptoms are relieved?', 'No, Levoltra Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(947, 'Levoltra Tablet', 'Sherwyn Pharmaceuticals Pvt Ltd', 'Levoltra Tablet', 'Can the use of Levoltra Tablet cause dry mouth?', 'Yes, the use of Levoltra Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(948, 'Levoltra Tablet', 'Sherwyn Pharmaceuticals Pvt Ltd', 'Levoltra Tablet', 'Can I drink alcohol while taking Levoltra Tablet?', 'No, do not take alcohol while taking Levoltra Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoltra Tablet.'),
(949, 'Levoltra Tablet', 'Sherwyn Pharmaceuticals Pvt Ltd', 'Levoltra Tablet', 'Will Levoltra Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoltra Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(950, 'Levoltra Tablet', 'Sherwyn Pharmaceuticals Pvt Ltd', 'Levoltra Tablet', 'What are the instructions for storage and disposal of Levoltra Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(951, 'Levolux 500mg Tablet', 'Globus Remedies Ltd', 'Levolux 500mg Tablet', 'Is Levolux 500mg Tablet safe?', 'Levolux 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(952, 'Levolux 500mg Tablet', 'Globus Remedies Ltd', 'Levolux 500mg Tablet', 'What if I forget to take a dose of Levolux 500mg Tablet?', 'If you forget a dose of Levolux 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(953, 'Levolux 500mg Tablet', 'Globus Remedies Ltd', 'Levolux 500mg Tablet', 'Can the use of Levolux 500mg Tablet cause diarrhea?', 'Yes, the use of Levolux 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(954, 'Levolux 500mg Tablet', 'Globus Remedies Ltd', 'Levolux 500mg Tablet', 'Can I stop taking Levolux 500mg Tablet when I feel better?', 'No, do not stop taking Levolux 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolux 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolux 500mg Tablet in the dose and duration advised by the doctor.'),
(955, 'Levolux 500mg Tablet', 'Globus Remedies Ltd', 'Levolux 500mg Tablet', 'Can the use of Levolux 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolux 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolux 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(956, 'Levolve 500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 500mg Tablet', 'Is Levolve 500mg Tablet safe?', 'Levolve 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(957, 'Levolve 500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 500mg Tablet', 'What if I forget to take a dose of Levolve 500mg Tablet?', 'If you forget a dose of Levolve 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(958, 'Levolve 500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 500mg Tablet', 'Can the use of Levolve 500mg Tablet cause diarrhea?', 'Yes, the use of Levolve 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(959, 'Levolve 500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 500mg Tablet', 'Can I stop taking Levolve 500mg Tablet when I feel better?', 'No, do not stop taking Levolve 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolve 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolve 500mg Tablet in the dose and duration advised by the doctor.'),
(960, 'Levolve 500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 500mg Tablet', 'Can the use of Levolve 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolve 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolve 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(961, 'Levolve 750mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 750mg Tablet', 'Is Levolve 750mg Tablet safe?', 'Levolve 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(962, 'Levolve 750mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 750mg Tablet', 'What if I forget to take a dose of Levolve 750mg Tablet?', 'If you forget a dose of Levolve 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(963, 'Levolve 750mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 750mg Tablet', 'Can the use of Levolve 750mg Tablet cause diarrhea?', 'Yes, the use of Levolve 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(964, 'Levolve 750mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 750mg Tablet', 'Can I stop taking Levolve 750mg Tablet when I feel better?', 'No, do not stop taking Levolve 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolve 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levolve 750mg Tablet in the dose and duration advised by the doctor.'),
(965, 'Levolve 750mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve 750mg Tablet', 'Can the use of Levolve 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolve 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolve 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(966, 'Levolve OZ 250mg/500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levolve OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(967, 'Levolve OZ 250mg/500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve OZ 250mg/500mg Tablet', 'Can I stop taking Levolve OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levolve OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(968, 'Levolve OZ 250mg/500mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levolve OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(969, 'Levolve Z 250 mg/250 mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve Z 250 mg/250 mg Tablet', 'What if I don\'t get better after using Levolve Z 250 mg/250 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(970, 'Levolve Z 250 mg/250 mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve Z 250 mg/250 mg Tablet', 'What if I miss my dose?', 'Take Levolve Z 250 mg/250 mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(971, 'Levolve Z 500 mg/500 mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve Z 500 mg/500 mg Tablet', 'What if I don\'t get better after using Levolve Z 500 mg/500 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(972, 'Levolve Z 500 mg/500 mg Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Levolve Z 500 mg/500 mg Tablet', 'What if I miss my dose?', 'Take Levolve Z 500 mg/500 mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(973, 'Levolxa 500mg Infusion', 'Nectar Biopharma Pvt Limited', 'Levolxa 500mg Infusion', 'Is Levolxa 500mg Infusion safe?', 'Levolxa 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(974, 'Levolxa 500mg Infusion', 'Nectar Biopharma Pvt Limited', 'Levolxa 500mg Infusion', 'Can the use of Levolxa 500mg Infusion cause diarrhea?', 'Yes, the use of Levolxa 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(975, 'Levolxa 500mg Infusion', 'Nectar Biopharma Pvt Limited', 'Levolxa 500mg Infusion', 'Can the use of Levolxa 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levolxa 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolxa 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(976, 'Levolxa 500mg Infusion', 'Nectar Biopharma Pvt Limited', 'Levolxa 500mg Infusion', 'How is Levolxa 500mg Infusion administered?', 'Levolxa 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levolxa 500mg Infusion.'),
(977, 'Levolxa 500mg Infusion', 'Nectar Biopharma Pvt Limited', 'Levolxa 500mg Infusion', 'Is Levolxa 500mg Infusion effective?', 'Levolxa 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levolxa 500mg Infusion too early, the symptoms may return or worsen.'),
(978, 'Levolyn 500mg Tablet', 'Madlyn Biotech', 'Levolyn 500mg Tablet', 'Is Levolyn 500mg Tablet safe?', 'Levolyn 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(979, 'Levolyn 500mg Tablet', 'Madlyn Biotech', 'Levolyn 500mg Tablet', 'What if I forget to take a dose of Levolyn 500mg Tablet?', 'If you forget a dose of Levolyn 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(980, 'Levolyn 500mg Tablet', 'Madlyn Biotech', 'Levolyn 500mg Tablet', 'Can the use of Levolyn 500mg Tablet cause diarrhea?', 'Yes, the use of Levolyn 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(981, 'Levolyn 500mg Tablet', 'Madlyn Biotech', 'Levolyn 500mg Tablet', 'Can I stop taking Levolyn 500mg Tablet when I feel better?', 'No, do not stop taking Levolyn 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levolyn 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levolyn 500mg Tablet in the dose and duration advised by the doctor.'),
(982, 'Levolyn 500mg Tablet', 'Madlyn Biotech', 'Levolyn 500mg Tablet', 'Can the use of Levolyn 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levolyn 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levolyn 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(983, 'Levolyte 5mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte 5mg Tablet', 'Is Levolyte 5mg Tablet a steroid? What is it used for?', 'No, Levolyte 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(984, 'Levolyte 5mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte 5mg Tablet', 'Does Levolyte 5mg Tablet make you tired and drowsy?', 'Yes, Levolyte 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(985, 'Levolyte 5mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte 5mg Tablet', 'How long does it take for Levolyte 5mg Tablet to work?', 'Levolyte 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(986, 'Levolyte 5mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte 5mg Tablet', 'Can I take Levolyte 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levolyte 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(987, 'Levolyte 5mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte 5mg Tablet', 'Is it safe to take Levolyte 5mg Tablet for a long time?', 'Levolyte 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levolyte 5mg Tablet for only as long as you need it.'),
(988, 'Levolyte 5mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte 5mg Tablet', 'For how long should I continue Levolyte 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levolyte 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levolyte 5mg Tablet'),
(989, 'Levolyte A 5mg/60mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte A 5mg/60mg Tablet', 'Can I drink alcohol while taking Levolyte A 5mg/60mg Tablet?', 'No, avoid drinking alcohol while taking Levolyte A 5mg/60mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levolyte A 5mg/60mg Tablet.'),
(990, 'Levolyte A 5mg/60mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte A 5mg/60mg Tablet', 'Can I breastfeed while taking Levolyte A 5mg/60mg Tablet?', 'No, it is not advisable to breastfeed while using Levolyte A 5mg/60mg Tablet. This medicine contains Cetirizine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(991, 'Levolyte A 5mg/60mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte A 5mg/60mg Tablet', 'Can the use of Levolyte A 5mg/60mg Tablet cause sleepiness or drowsiness?', 'Yes, Levolyte A 5mg/60mg Tablet may make you feel drowsy or sleepy. Do not drive car, operate machinery, work at heights or participate in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(992, 'Levolyte A 5mg/60mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte A 5mg/60mg Tablet', 'Will Levolyte A 5mg/60mg Tablet be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(993, 'Levolyte A 5mg/60mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levolyte A 5mg/60mg Tablet', 'Can the use of Levolyte A 5mg/60mg Tablet cause dry mouth?', 'Yes, the use of Levolyte A 5mg/60mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(994, 'Levom 500mg Tablet', 'Norwest Pharmaceuticals Inc', 'Levom 500mg Tablet', 'Is Levom 500mg Tablet safe?', 'Levom 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(995, 'Levom 500mg Tablet', 'Norwest Pharmaceuticals Inc', 'Levom 500mg Tablet', 'What if I forget to take a dose of Levom 500mg Tablet?', 'If you forget a dose of Levom 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(996, 'Levom 500mg Tablet', 'Norwest Pharmaceuticals Inc', 'Levom 500mg Tablet', 'Can the use of Levom 500mg Tablet cause diarrhea?', 'Yes, the use of Levom 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(997, 'Levom 500mg Tablet', 'Norwest Pharmaceuticals Inc', 'Levom 500mg Tablet', 'Can I stop taking Levom 500mg Tablet when I feel better?', 'No, do not stop taking Levom 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levom 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levom 500mg Tablet in the dose and duration advised by the doctor.'),
(998, 'Levom 500mg Tablet', 'Norwest Pharmaceuticals Inc', 'Levom 500mg Tablet', 'Can the use of Levom 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levom 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levom 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(999, 'Levo-M 500mg Tablet', 'Bonsai Pharma', 'Levo-M 500mg Tablet', 'Is Levo-M 500mg Tablet safe?', 'Levo-M 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1000, 'Levo-M 500mg Tablet', 'Bonsai Pharma', 'Levo-M 500mg Tablet', 'What if I forget to take a dose of Levo-M 500mg Tablet?', 'If you forget a dose of Levo-M 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1001, 'Levo-M 500mg Tablet', 'Bonsai Pharma', 'Levo-M 500mg Tablet', 'Can the use of Levo-M 500mg Tablet cause diarrhea?', 'Yes, the use of Levo-M 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1002, 'Levo-M 500mg Tablet', 'Bonsai Pharma', 'Levo-M 500mg Tablet', 'Can I stop taking Levo-M 500mg Tablet when I feel better?', 'No, do not stop taking Levo-M 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levo-M 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levo-M 500mg Tablet in the dose and duration advised by the doctor.'),
(1003, 'Levo-M 500mg Tablet', 'Bonsai Pharma', 'Levo-M 500mg Tablet', 'Can the use of Levo-M 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levo-M 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levo-M 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1004, 'Levom 5mg Tablet', 'Gonan Pharma', 'Levom 5mg Tablet', 'Is Levom 5mg Tablet a steroid? What is it used for?', 'No, Levom 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1005, 'Levom 5mg Tablet', 'Gonan Pharma', 'Levom 5mg Tablet', 'Does Levom 5mg Tablet make you tired and drowsy?', 'Yes, Levom 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1006, 'Levom 5mg Tablet', 'Gonan Pharma', 'Levom 5mg Tablet', 'How long does it take for Levom 5mg Tablet to work?', 'Levom 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1007, 'Levom 5mg Tablet', 'Gonan Pharma', 'Levom 5mg Tablet', 'Can I take Levom 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levom 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1008, 'Levom 5mg Tablet', 'Gonan Pharma', 'Levom 5mg Tablet', 'Is it safe to take Levom 5mg Tablet for a long time?', 'Levom 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levom 5mg Tablet for only as long as you need it.'),
(1009, 'Levom 5mg Tablet', 'Gonan Pharma', 'Levom 5mg Tablet', 'For how long should I continue Levom 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levom 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levom 5mg Tablet'),
(1010, 'Levo-M 5mg/10mg Tablet', 'Miraj Biotech', 'Levo-M 5mg/10mg Tablet (Miraj Biotech)', 'What is Levo-M 5mg/10mg Tablet?', 'Levo-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1011, 'Levo-M 5mg/10mg Tablet', 'Miraj Biotech', 'Levo-M 5mg/10mg Tablet (Miraj Biotech)', 'Can the use of Levo-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levo-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1012, 'Levo-M 5mg/10mg Tablet', 'Miraj Biotech', 'Levo-M 5mg/10mg Tablet (Miraj Biotech)', 'Can Levo-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levo-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1013, 'Levo-M 5mg/10mg Tablet', 'Miraj Biotech', 'Levo-M 5mg/10mg Tablet (Miraj Biotech)', 'Can the use of Levo-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levo-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1014, 'Levo-M 5mg/10mg Tablet', 'Miraj Biotech', 'Levo-M 5mg/10mg Tablet (Miraj Biotech)', 'Can I drink alcohol while taking Levo-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levo-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levo-M 5mg/10mg Tablet.'),
(1015, 'Levo-M 5mg/10mg Tablet', 'Miraj Biotech', 'Levo-M 5mg/10mg Tablet (Miraj Biotech)', 'Will Levo-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levo-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1016, 'Levo-M 5mg/10mg Tablet', 'Miraj Biotech', 'Levo-M 5mg/10mg Tablet (Miraj Biotech)', 'What are the instructions for storage and disposal of Levo-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1017, 'Levo-M 5mg/10mg Tablet', 'Polard Healthcare', 'Levo-M 5mg/10mg Tablet (Polard Healthcare)', 'What is Levo-M 5mg/10mg Tablet?', 'Levo-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1018, 'Levo-M 5mg/10mg Tablet', 'Polard Healthcare', 'Levo-M 5mg/10mg Tablet (Polard Healthcare)', 'Can the use of Levo-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levo-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1019, 'Levo-M 5mg/10mg Tablet', 'Polard Healthcare', 'Levo-M 5mg/10mg Tablet (Polard Healthcare)', 'Can Levo-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levo-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1020, 'Levo-M 5mg/10mg Tablet', 'Polard Healthcare', 'Levo-M 5mg/10mg Tablet (Polard Healthcare)', 'Can the use of Levo-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levo-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1021, 'Levo-M 5mg/10mg Tablet', 'Polard Healthcare', 'Levo-M 5mg/10mg Tablet (Polard Healthcare)', 'Can I drink alcohol while taking Levo-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levo-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levo-M 5mg/10mg Tablet.'),
(1022, 'Levo-M 5mg/10mg Tablet', 'Polard Healthcare', 'Levo-M 5mg/10mg Tablet (Polard Healthcare)', 'Will Levo-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levo-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1023, 'Levo-M 5mg/10mg Tablet', 'Polard Healthcare', 'Levo-M 5mg/10mg Tablet (Polard Healthcare)', 'What are the instructions for storage and disposal of Levo-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1024, 'Levo-M 750mg Tablet', 'Bonsai Pharma', 'Levo-M 750mg Tablet', 'Is Levo-M 750mg Tablet safe?', 'Levo-M 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1025, 'Levo-M 750mg Tablet', 'Bonsai Pharma', 'Levo-M 750mg Tablet', 'What if I forget to take a dose of Levo-M 750mg Tablet?', 'If you forget a dose of Levo-M 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1026, 'Levo-M 750mg Tablet', 'Bonsai Pharma', 'Levo-M 750mg Tablet', 'Can the use of Levo-M 750mg Tablet cause diarrhea?', 'Yes, the use of Levo-M 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1027, 'Levo-M 750mg Tablet', 'Bonsai Pharma', 'Levo-M 750mg Tablet', 'Can I stop taking Levo-M 750mg Tablet when I feel better?', 'No, do not stop taking Levo-M 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levo-M 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levo-M 750mg Tablet in the dose and duration advised by the doctor.'),
(1028, 'Levo-M 750mg Tablet', 'Bonsai Pharma', 'Levo-M 750mg Tablet', 'Can the use of Levo-M 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levo-M 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levo-M 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1029, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1030, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'Can I decrease the dose of Levo-M KID 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1031, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'How should Levo-M KID 2.5mg/4mg Tablet be stored?', 'Levo-M KID 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1032, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'Can Levo-M KID 2.5mg/4mg Tablet make my child sleepy?', 'Levo-M KID 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1033, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levo-M KID 2.5mg/4mg Tablet?', 'No, don’t start Levo-M KID 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levo-M KID 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1034, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levo-M KID 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1035, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levo-M KID 2.5mg/4mg Tablet to my child?', 'Some studies show that Levo-M KID 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1036, 'Levo-M KID 2.5mg/4mg Tablet', 'Polard Healthcare', 'Levo-M KID 2.5mg/4mg Tablet', 'Can I use Levo-M KID 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levo-M KID 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1037, 'Levom M 5mg/10mg Tablet', 'Progressive Life Care', 'Levom M 5mg/10mg Tablet', 'What is Levom M 5mg/10mg Tablet?', 'Levom M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1038, 'Levom M 5mg/10mg Tablet', 'Progressive Life Care', 'Levom M 5mg/10mg Tablet', 'Can the use of Levom M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levom M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1039, 'Levom M 5mg/10mg Tablet', 'Progressive Life Care', 'Levom M 5mg/10mg Tablet', 'Can Levom M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levom M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1040, 'Levom M 5mg/10mg Tablet', 'Progressive Life Care', 'Levom M 5mg/10mg Tablet', 'Can the use of Levom M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levom M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1041, 'Levom M 5mg/10mg Tablet', 'Progressive Life Care', 'Levom M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levom M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levom M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levom M 5mg/10mg Tablet.'),
(1042, 'Levom M 5mg/10mg Tablet', 'Progressive Life Care', 'Levom M 5mg/10mg Tablet', 'Will Levom M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levom M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1043, 'Levom M 5mg/10mg Tablet', 'Progressive Life Care', 'Levom M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levom M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1044, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1045, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'Can I decrease the dose of Levom M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1046, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'How should Levom M Syrup be stored?', 'Levom M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1047, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'Can Levom M Syrup make my child sleepy?', 'Levom M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1048, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levom M Syrup?', 'No, don’t start Levom M Syrup without speaking to your child’s doctor. Moreover, Levom M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1049, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levom M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1050, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levom M Syrup to my child?', 'Some studies show that Levom M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1051, 'Levom M Syrup', 'Progressive Life Care', 'Levom M Syrup', 'Can I use Levom M Syrup for treating acute asthma attacks in my child?', 'Levom M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1052, 'Levom Plus 75mg/5mg/10mg Tablet', 'Progressive Life Care', 'Levom Plus 75mg/5mg/10mg Tablet', 'Can the use of Levom Plus 75mg/5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levom Plus 75mg/5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(1053, 'Levom Plus 75mg/5mg/10mg Tablet', 'Progressive Life Care', 'Levom Plus 75mg/5mg/10mg Tablet', 'Can I use Levom Plus 75mg/5mg/10mg Tablet while breastfeeding?', 'No, Levom Plus 75mg/5mg/10mg Tablet should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(1054, 'Levom Plus 75mg/5mg/10mg Tablet', 'Progressive Life Care', 'Levom Plus 75mg/5mg/10mg Tablet', 'Can I drink alcohol while taking Levom Plus 75mg/5mg/10mg Tablet?', 'No, avoid drinking alcohol while taking Levom Plus 75mg/5mg/10mg Tablet. Drinking alcohol will increase the risk of serious side effects caused by Levom Plus 75mg/5mg/10mg Tablet.'),
(1055, 'Levom Plus 75mg/5mg/10mg Tablet', 'Progressive Life Care', 'Levom Plus 75mg/5mg/10mg Tablet', 'What are the instructions for the storage and disposal of Levom Plus 75mg/5mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1056, 'Levo-M Tablet', 'Tricorn Healthcare', 'Levo-M Tablet', 'What is Levo-M Tablet?', 'Levo-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1057, 'Levo-M Tablet', 'Tricorn Healthcare', 'Levo-M Tablet', 'Can the use of Levo-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levo-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1058, 'Levo-M Tablet', 'Tricorn Healthcare', 'Levo-M Tablet', 'Can Levo-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levo-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1059, 'Levo-M Tablet', 'Tricorn Healthcare', 'Levo-M Tablet', 'Can the use of Levo-M Tablet cause dry mouth?', 'Yes, the use of Levo-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1060, 'Levo-M Tablet', 'Tricorn Healthcare', 'Levo-M Tablet', 'Can I drink alcohol while taking Levo-M Tablet?', 'No, do not take alcohol while taking Levo-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levo-M Tablet.'),
(1061, 'Levo-M Tablet', 'Tricorn Healthcare', 'Levo-M Tablet', 'Will Levo-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levo-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1062, 'Levo-M Tablet', 'Tricorn Healthcare', 'Levo-M Tablet', 'What are the instructions for storage and disposal of Levo-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1063, 'Levoma 5 Tablet', 'Thelma Lifesciences', 'Levoma 5 Tablet', 'Is Levoma 5 Tablet a steroid? What is it used for?', 'No, Levoma 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1064, 'Levoma 5 Tablet', 'Thelma Lifesciences', 'Levoma 5 Tablet', 'Does Levoma 5 Tablet make you tired and drowsy?', 'Yes, Levoma 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1065, 'Levoma 5 Tablet', 'Thelma Lifesciences', 'Levoma 5 Tablet', 'How long does it take for Levoma 5 Tablet to work?', 'Levoma 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1066, 'Levoma 5 Tablet', 'Thelma Lifesciences', 'Levoma 5 Tablet', 'Can I take Levoma 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoma 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1067, 'Levoma 5 Tablet', 'Thelma Lifesciences', 'Levoma 5 Tablet', 'Is it safe to take Levoma 5 Tablet for a long time?', 'Levoma 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoma 5 Tablet for only as long as you need it.'),
(1068, 'Levoma 5 Tablet', 'Thelma Lifesciences', 'Levoma 5 Tablet', 'For how long should I continue Levoma 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoma 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoma 5 Tablet'),
(1069, 'Levomac 250 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 250 Tablet', 'Is Levomac 250 Tablet safe?', 'Levomac 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1070, 'Levomac 250 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 250 Tablet', 'What if I forget to take a dose of Levomac 250 Tablet?', 'If you forget a dose of Levomac 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1071, 'Levomac 250 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 250 Tablet', 'Can the use of Levomac 250 Tablet cause diarrhea?', 'Yes, the use of Levomac 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1072, 'Levomac 250 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 250 Tablet', 'Can I stop taking Levomac 250 Tablet when I feel better?', 'No, do not stop taking Levomac 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomac 250 Tablet too early, the symptoms may return or worsen. Continue taking Levomac 250 Tablet in the dose and duration advised by the doctor.'),
(1073, 'Levomac 250 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 250 Tablet', 'Can the use of Levomac 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levomac 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomac 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1074, 'Levomac 500 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500 Tablet', 'Is Levomac 500 Tablet safe?', 'Levomac 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1075, 'Levomac 500 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500 Tablet', 'What if I forget to take a dose of Levomac 500 Tablet?', 'If you forget a dose of Levomac 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1076, 'Levomac 500 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500 Tablet', 'Can the use of Levomac 500 Tablet cause diarrhea?', 'Yes, the use of Levomac 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1077, 'Levomac 500 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500 Tablet', 'Can I stop taking Levomac 500 Tablet when I feel better?', 'No, do not stop taking Levomac 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomac 500 Tablet too early, the symptoms may return or worsen. Continue taking Levomac 500 Tablet in the dose and duration advised by the doctor.'),
(1078, 'Levomac 500 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500 Tablet', 'Can the use of Levomac 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levomac 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomac 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1079, 'Levomac 500mg Infusion', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500mg Infusion', 'Is Levomac 500mg Infusion safe?', 'Levomac 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1080, 'Levomac 500mg Infusion', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500mg Infusion', 'Can the use of Levomac 500mg Infusion cause diarrhea?', 'Yes, the use of Levomac 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1081, 'Levomac 500mg Infusion', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500mg Infusion', 'Can the use of Levomac 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levomac 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomac 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1082, 'Levomac 500mg Infusion', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500mg Infusion', 'How is Levomac 500mg Infusion administered?', 'Levomac 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levomac 500mg Infusion.'),
(1083, 'Levomac 500mg Infusion', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 500mg Infusion', 'Is Levomac 500mg Infusion effective?', 'Levomac 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levomac 500mg Infusion too early, the symptoms may return or worsen.'),
(1084, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Q. Is Levomac 750 Tablet safe?', 'Levomac 750 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1085, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Q. What if I forget to take a dose of Levomac 750 Tablet?', 'If you forget a dose of Levomac 750 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1086, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Q. Can the use of Levomac 750 Tablet cause diarrhea?', 'Yes, the use of Levomac 750 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1087, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Q. Can I stop taking Levomac 750 Tablet when I feel better?', 'No, do not stop taking Levomac 750 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomac 750 Tablet too early, the symptoms may return or worsen. Continue taking Levomac 750 Tablet in the dose and duration advised by the doctor.'),
(1088, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Q. Can the use of Levomac 750 Tablet increase the risk of muscle damage?', 'Yes, the use of Levomac 750 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomac 750 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1089, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Is Levomac 750 Tablet safe?', 'Levomac 750 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1090, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'What if I forget to take a dose of Levomac 750 Tablet?', 'If you forget a dose of Levomac 750 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1091, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Can the use of Levomac 750 Tablet cause diarrhea?', 'Yes, the use of Levomac 750 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1092, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Can I stop taking Levomac 750 Tablet when I feel better?', 'No, do not stop taking Levomac 750 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomac 750 Tablet too early, the symptoms may return or worsen. Continue taking Levomac 750 Tablet in the dose and duration advised by the doctor.'),
(1093, 'Levomac 750 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac 750 Tablet', 'Can the use of Levomac 750 Tablet increase the risk of muscle damage?', 'Yes, the use of Levomac 750 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomac 750 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1094, 'Levomac AZ 250 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac AZ 250 Tablet', 'What if I don\'t get better after using Levomac AZ 250 Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1095, 'Levomac AZ 250 Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac AZ 250 Tablet', 'What if I miss my dose?', 'Take Levomac AZ 250 Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1096, 'Levomac AZ Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac AZ Syrup', 'What if I don\'t get better after using Levomac AZ Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1097, 'Levomac AZ Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac AZ Syrup', 'What if I miss my dose?', 'Take Levomac AZ Syrup as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1098, 'Levomac AZ Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac AZ Tablet', 'What if I don\'t get better after using Levomac AZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1099, 'Levomac AZ Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac AZ Tablet', 'What if I miss my dose?', 'Take Levomac AZ Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1100, 'Levomac Oral Solution', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac Oral Solution', 'Is Levomac Oral Solution safe?', 'Levomac Oral Solution is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1101, 'Levomac Oral Solution', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac Oral Solution', 'What if I forget to take a dose of Levomac Oral Solution?', 'If you forget a dose of Levomac Oral Solution, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1102, 'Levomac Oral Solution', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac Oral Solution', 'Can the use of Levomac Oral Solution cause diarrhea?', 'Yes, the use of Levomac Oral Solution can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1103, 'Levomac Oral Solution', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac Oral Solution', 'Can I stop taking Levomac Oral Solution when I feel better?', 'No, do not stop taking Levomac Oral Solution and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomac Oral Solution too early, the symptoms may return or worsen. Continue taking Levomac Oral Solution in the dose and duration advised by the doctor.'),
(1104, 'Levomac Oral Solution', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac Oral Solution', 'Can the use of Levomac Oral Solution increase the risk of muscle damage?', 'Yes, the use of Levomac Oral Solution is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomac Oral Solution but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1105, 'Levomac OZ 250mg/500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levomac OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levomac OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1106, 'Levomac OZ 250mg/500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levomac OZ 250mg/500mg Tablet', 'Can I stop taking Levomac OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levomac OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(1107, 'Levomac OZ 250mg/500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levomac OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levomac OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1108, 'Levomac OZ Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac OZ Tablet', 'What if I don\'t get better after using Levomac OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1109, 'Levomac OZ Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac OZ Tablet', 'Can I stop taking Levomac OZ Tablet when I feel better?', 'No, do not stop taking Levomac OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(1110, 'Levomac OZ Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Levomac OZ Tablet', 'What if I miss my dose?', 'Take Levomac OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1111, 'Levomag 500mg Tablet', 'Magnus Biotech Pvt Ltd', 'Levomag 500mg Tablet (Magnus Biotech Pvt Ltd)', 'Is Levomag 500mg Tablet safe?', 'Levomag 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1112, 'Levomag 500mg Tablet', 'Magnus Biotech Pvt Ltd', 'Levomag 500mg Tablet (Magnus Biotech Pvt Ltd)', 'What if I forget to take a dose of Levomag 500mg Tablet?', 'If you forget a dose of Levomag 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1113, 'Levomag 500mg Tablet', 'Magnus Biotech Pvt Ltd', 'Levomag 500mg Tablet (Magnus Biotech Pvt Ltd)', 'Can the use of Levomag 500mg Tablet cause diarrhea?', 'Yes, the use of Levomag 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1114, 'Levomag 500mg Tablet', 'Magnus Biotech Pvt Ltd', 'Levomag 500mg Tablet (Magnus Biotech Pvt Ltd)', 'Can I stop taking Levomag 500mg Tablet when I feel better?', 'No, do not stop taking Levomag 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomag 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomag 500mg Tablet in the dose and duration advised by the doctor.'),
(1115, 'Levomag 500mg Tablet', 'Magnus Biotech Pvt Ltd', 'Levomag 500mg Tablet (Magnus Biotech Pvt Ltd)', 'Can the use of Levomag 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomag 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomag 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1116, 'Levomag 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levomag 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Is Levomag 500mg Tablet safe?', 'Levomag 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1117, 'Levomag 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levomag 500mg Tablet (Magma Allianz Laboratories Ltd)', 'What if I forget to take a dose of Levomag 500mg Tablet?', 'If you forget a dose of Levomag 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1118, 'Levomag 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levomag 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Can the use of Levomag 500mg Tablet cause diarrhea?', 'Yes, the use of Levomag 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1119, 'Levomag 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levomag 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Can I stop taking Levomag 500mg Tablet when I feel better?', 'No, do not stop taking Levomag 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomag 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomag 500mg Tablet in the dose and duration advised by the doctor.'),
(1120, 'Levomag 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levomag 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Can the use of Levomag 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomag 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomag 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1121, 'Levomag 5mg Tablet', 'Inimag Laboratories', 'Levomag 5mg Tablet', 'Is Levomag 5mg Tablet a steroid? What is it used for?', 'No, Levomag 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1122, 'Levomag 5mg Tablet', 'Inimag Laboratories', 'Levomag 5mg Tablet', 'Does Levomag 5mg Tablet make you tired and drowsy?', 'Yes, Levomag 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1123, 'Levomag 5mg Tablet', 'Inimag Laboratories', 'Levomag 5mg Tablet', 'How long does it take for Levomag 5mg Tablet to work?', 'Levomag 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1124, 'Levomag 5mg Tablet', 'Inimag Laboratories', 'Levomag 5mg Tablet', 'Can I take Levomag 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomag 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1125, 'Levomag 5mg Tablet', 'Inimag Laboratories', 'Levomag 5mg Tablet', 'Is it safe to take Levomag 5mg Tablet for a long time?', 'Levomag 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomag 5mg Tablet for only as long as you need it.'),
(1126, 'Levomag 5mg Tablet', 'Inimag Laboratories', 'Levomag 5mg Tablet', 'For how long should I continue Levomag 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomag 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomag 5mg Tablet'),
(1127, 'Levomak 500mg Tablet', 'Trimak Lifesciences', 'Levomak 500mg Tablet', 'Is Levomak 500mg Tablet safe?', 'Levomak 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1128, 'Levomak 500mg Tablet', 'Trimak Lifesciences', 'Levomak 500mg Tablet', 'What if I forget to take a dose of Levomak 500mg Tablet?', 'If you forget a dose of Levomak 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1129, 'Levomak 500mg Tablet', 'Trimak Lifesciences', 'Levomak 500mg Tablet', 'Can the use of Levomak 500mg Tablet cause diarrhea?', 'Yes, the use of Levomak 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1130, 'Levomak 500mg Tablet', 'Trimak Lifesciences', 'Levomak 500mg Tablet', 'Can I stop taking Levomak 500mg Tablet when I feel better?', 'No, do not stop taking Levomak 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomak 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomak 500mg Tablet in the dose and duration advised by the doctor.'),
(1131, 'Levomak 500mg Tablet', 'Trimak Lifesciences', 'Levomak 500mg Tablet', 'Can the use of Levomak 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomak 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomak 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1132, 'Levomak 5mg Tablet', 'DH Kritical Care', 'Levomak 5mg Tablet', 'Is Levomak 5mg Tablet a steroid? What is it used for?', 'No, Levomak 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1133, 'Levomak 5mg Tablet', 'DH Kritical Care', 'Levomak 5mg Tablet', 'Does Levomak 5mg Tablet make you tired and drowsy?', 'Yes, Levomak 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1134, 'Levomak 5mg Tablet', 'DH Kritical Care', 'Levomak 5mg Tablet', 'How long does it take for Levomak 5mg Tablet to work?', 'Levomak 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1135, 'Levomak 5mg Tablet', 'DH Kritical Care', 'Levomak 5mg Tablet', 'Can I take Levomak 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomak 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1136, 'Levomak 5mg Tablet', 'DH Kritical Care', 'Levomak 5mg Tablet', 'Is it safe to take Levomak 5mg Tablet for a long time?', 'Levomak 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomak 5mg Tablet for only as long as you need it.'),
(1137, 'Levomak 5mg Tablet', 'DH Kritical Care', 'Levomak 5mg Tablet', 'For how long should I continue Levomak 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomak 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomak 5mg Tablet'),
(1138, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'How does Levomal 0.63mg Injection work?', 'Levomal 0.63mg Injection works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levomal 0.63mg Injection helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(1139, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'How should I take Levomal 0.63mg Injection?', 'Levomal 0.63mg Injection should be taken in the dose and duration advised by your doctor. Levomal 0.63mg Injection can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levomal 0.63mg Injection just before bedtime with a glass of water.'),
(1140, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'What if I forget to take a dose of Levomal 0.63mg Injection?', 'If you forget a dose of Levomal 0.63mg Injection, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1141, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'What would happen if I take higher than the recommended dose of Levomal 0.63mg Injection?', 'Taking a higher than the recommended dose of Levomal 0.63mg Injection may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levomal 0.63mg Injection may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(1142, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'Is Levomal 0.63mg Injection better than Albuterol?', 'Both Levomal 0.63mg Injection and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levomal 0.63mg Injection contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levomal 0.63mg Injection, being the active form may have lesser side effects when compared to the inactive form.'),
(1143, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'Is it safe to take Levomal 0.63mg Injection if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levomal 0.63mg Injection, seek immediate medical advice.'),
(1144, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'Being a diabetic, what should I remember while taking Levomal 0.63mg Injection?', 'Levomal 0.63mg Injection may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(1145, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'I have started using Levomal 0.63mg Injection and I am experiencing headaches and shakiness. Is this because of Levomal 0.63mg Injection and will these go away?', 'Yes, it could be due to Levomal 0.63mg Injection. Feeling shaky is a common side effect of Levomal 0.63mg Injection which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(1146, 'Levomal 0.63mg Injection', 'AXA Parenterals Ltd', 'Levomal 0.63mg Injection', 'Can I smoke if I have been prescribed Levomal 0.63mg Injection?', 'No, you should not smoke while taking Levomal 0.63mg Injection. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(1147, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'How does Levomal 1.25mg Injection work?', 'Levomal 1.25mg Injection works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levomal 1.25mg Injection helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(1148, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'How should I take Levomal 1.25mg Injection?', 'Levomal 1.25mg Injection should be taken in the dose and duration advised by your doctor. Levomal 1.25mg Injection can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levomal 1.25mg Injection just before bedtime with a glass of water.'),
(1149, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'What if I forget to take a dose of Levomal 1.25mg Injection?', 'If you forget a dose of Levomal 1.25mg Injection, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1150, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'What would happen if I take higher than the recommended dose of Levomal 1.25mg Injection?', 'Taking a higher than the recommended dose of Levomal 1.25mg Injection may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levomal 1.25mg Injection may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(1151, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'Is Levomal 1.25mg Injection better than Albuterol?', 'Both Levomal 1.25mg Injection and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levomal 1.25mg Injection contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levomal 1.25mg Injection, being the active form may have lesser side effects when compared to the inactive form.'),
(1152, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'Is it safe to take Levomal 1.25mg Injection if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levomal 1.25mg Injection, seek immediate medical advice.'),
(1153, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'Being a diabetic, what should I remember while taking Levomal 1.25mg Injection?', 'Levomal 1.25mg Injection may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(1154, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'I have started using Levomal 1.25mg Injection and I am experiencing headaches and shakiness. Is this because of Levomal 1.25mg Injection and will these go away?', 'Yes, it could be due to Levomal 1.25mg Injection. Feeling shaky is a common side effect of Levomal 1.25mg Injection which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(1155, 'Levomal 1.25mg Injection', 'AXA Parenterals Ltd', 'Levomal 1.25mg Injection', 'Can I smoke if I have been prescribed Levomal 1.25mg Injection?', 'No, you should not smoke while taking Levomal 1.25mg Injection. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(1156, 'Levoma-M Tablet', 'Thelma Lifesciences', 'Levoma-M Tablet', 'What is Levoma-M Tablet?', 'Levoma-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1157, 'Levoma-M Tablet', 'Thelma Lifesciences', 'Levoma-M Tablet', 'Can the use of Levoma-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoma-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1158, 'Levoma-M Tablet', 'Thelma Lifesciences', 'Levoma-M Tablet', 'Can Levoma-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoma-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1159, 'Levoma-M Tablet', 'Thelma Lifesciences', 'Levoma-M Tablet', 'Can the use of Levoma-M Tablet cause dry mouth?', 'Yes, the use of Levoma-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1160, 'Levoma-M Tablet', 'Thelma Lifesciences', 'Levoma-M Tablet', 'Can I drink alcohol while taking Levoma-M Tablet?', 'No, do not take alcohol while taking Levoma-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoma-M Tablet.'),
(1161, 'Levoma-M Tablet', 'Thelma Lifesciences', 'Levoma-M Tablet', 'Will Levoma-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoma-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1162, 'Levoma-M Tablet', 'Thelma Lifesciences', 'Levoma-M Tablet', 'What are the instructions for storage and disposal of Levoma-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1163, 'Levoman 250mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 250mg Tablet', 'Is Levoman 250mg Tablet safe?', 'Levoman 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1164, 'Levoman 250mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 250mg Tablet', 'What if I forget to take a dose of Levoman 250mg Tablet?', 'If you forget a dose of Levoman 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1165, 'Levoman 250mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 250mg Tablet', 'Can the use of Levoman 250mg Tablet cause diarrhea?', 'Yes, the use of Levoman 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1166, 'Levoman 250mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 250mg Tablet', 'Can I stop taking Levoman 250mg Tablet when I feel better?', 'No, do not stop taking Levoman 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoman 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoman 250mg Tablet in the dose and duration advised by the doctor.'),
(1167, 'Levoman 250mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 250mg Tablet', 'Can the use of Levoman 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoman 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoman 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1168, 'Levoman 500mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 500mg Tablet', 'Is Levoman 500mg Tablet safe?', 'Levoman 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1169, 'Levoman 500mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 500mg Tablet', 'What if I forget to take a dose of Levoman 500mg Tablet?', 'If you forget a dose of Levoman 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1170, 'Levoman 500mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 500mg Tablet', 'Can the use of Levoman 500mg Tablet cause diarrhea?', 'Yes, the use of Levoman 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1171, 'Levoman 500mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 500mg Tablet', 'Can I stop taking Levoman 500mg Tablet when I feel better?', 'No, do not stop taking Levoman 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoman 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoman 500mg Tablet in the dose and duration advised by the doctor.'),
(1172, 'Levoman 500mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levoman 500mg Tablet', 'Can the use of Levoman 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoman 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoman 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1173, 'Levomart Tablet', 'Martand Life Care Pvt. Ltd.', 'Levomart Tablet', 'What is Levomart Tablet?', 'Levomart Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1174, 'Levomart Tablet', 'Martand Life Care Pvt. Ltd.', 'Levomart Tablet', 'Can the use of Levomart Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomart Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1175, 'Levomart Tablet', 'Martand Life Care Pvt. Ltd.', 'Levomart Tablet', 'Can Levomart Tablet be stopped when allergy symptoms are relieved?', 'No, Levomart Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1176, 'Levomart Tablet', 'Martand Life Care Pvt. Ltd.', 'Levomart Tablet', 'Can the use of Levomart Tablet cause dry mouth?', 'Yes, the use of Levomart Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1177, 'Levomart Tablet', 'Martand Life Care Pvt. Ltd.', 'Levomart Tablet', 'Can I drink alcohol while taking Levomart Tablet?', 'No, do not take alcohol while taking Levomart Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomart Tablet.'),
(1178, 'Levomart Tablet', 'Martand Life Care Pvt. Ltd.', 'Levomart Tablet', 'Will Levomart Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomart Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1179, 'Levomart Tablet', 'Martand Life Care Pvt. Ltd.', 'Levomart Tablet', 'What are the instructions for storage and disposal of Levomart Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1180, 'Levomast 2.5mg/5ml Syrup', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 2.5mg/5ml Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levomast 2.5mg/5ml Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(1181, 'Levomast 2.5mg/5ml Syrup', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 2.5mg/5ml Syrup', 'Can other medicines be given at the same time as Levomast 2.5mg/5ml Syrup?', 'Levomast 2.5mg/5ml Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levomast 2.5mg/5ml Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(1182, 'Levomast 2.5mg/5ml Syrup', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 2.5mg/5ml Syrup', 'How much Levomast 2.5mg/5ml Syrup should I give to my child?', 'Levomast 2.5mg/5ml Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(1183, 'Levomast 2.5mg/5ml Syrup', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 2.5mg/5ml Syrup', 'What if I give too much of Levomast 2.5mg/5ml Syrup by mistake?', 'Although Levomast 2.5mg/5ml Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(1184, 'Levomast 2.5mg/5ml Syrup', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 2.5mg/5ml Syrup', 'How should Levomast 2.5mg/5ml Syrup be stored?', 'Store Levomast 2.5mg/5ml Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1185, 'Levomast 2.5mg/5ml Syrup', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 2.5mg/5ml Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(1186, 'Levomast 5mg Tablet', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 5mg Tablet', 'Is Levomast 5mg Tablet a steroid? What is it used for?', 'No, Levomast 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1187, 'Levomast 5mg Tablet', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 5mg Tablet', 'Does Levomast 5mg Tablet make you tired and drowsy?', 'Yes, Levomast 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1188, 'Levomast 5mg Tablet', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 5mg Tablet', 'How long does it take for Levomast 5mg Tablet to work?', 'Levomast 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1189, 'Levomast 5mg Tablet', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 5mg Tablet', 'Can I take Levomast 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomast 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1190, 'Levomast 5mg Tablet', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 5mg Tablet', 'Is it safe to take Levomast 5mg Tablet for a long time?', 'Levomast 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomast 5mg Tablet for only as long as you need it.'),
(1191, 'Levomast 5mg Tablet', 'Iatros Pharmaceuticals Pvt  Ltd', 'Levomast 5mg Tablet', 'For how long should I continue Levomast 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomast 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomast 5mg Tablet'),
(1192, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'How long does it take for Levomax 10gm Syrup to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Levomax 10gm Syrup.'),
(1193, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'What is Levomax 10gm Syrup used for?', 'Levomax 10gm Syrup is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(1194, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'Is Levomax 10gm Syrup a laxative?', 'Yes, Levomax 10gm Syrup is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(1195, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'What are the side effects of taking Levomax 10gm Syrup?', 'Levomax 10gm Syrup very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(1196, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'Is it okay to take Levomax 10gm Syrup every day?', 'You should take Levomax 10gm Syrup for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(1197, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'Who should not be given Levomax 10gm Syrup?', 'Levomax 10gm Syrup should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(1198, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'Can I take other laxatives along with Levomax 10gm Syrup?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Levomax 10gm Syrup. The risk of side effects is more with two laxatives.'),
(1199, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'What if I take more than the recommended dose of Levomax 10gm Syrup?', 'Taking more than the recommended dose of Levomax 10gm Syrup may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(1200, 'Levomax 10gm Syrup', 'Haustus Biotech Pvt Ltd', 'Levomax 10gm Syrup', 'How should Levomax 10gm Syrup be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(1201, 'Levomax 2.5mg Syrup', 'Max pharma', 'Levomax 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levomax 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(1202, 'Levomax 2.5mg Syrup', 'Max pharma', 'Levomax 2.5mg Syrup', 'Can other medicines be given at the same time as Levomax 2.5mg Syrup?', 'Levomax 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levomax 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(1203, 'Levomax 2.5mg Syrup', 'Max pharma', 'Levomax 2.5mg Syrup', 'How much Levomax 2.5mg Syrup should I give to my child?', 'Levomax 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(1204, 'Levomax 2.5mg Syrup', 'Max pharma', 'Levomax 2.5mg Syrup', 'What if I give too much of Levomax 2.5mg Syrup by mistake?', 'Although Levomax 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(1205, 'Levomax 2.5mg Syrup', 'Max pharma', 'Levomax 2.5mg Syrup', 'How should Levomax 2.5mg Syrup be stored?', 'Store Levomax 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1206, 'Levomax 2.5mg Syrup', 'Max pharma', 'Levomax 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(1207, 'Levomax 500mg Tablet', 'CE-Biotec Pvt Ltd', 'Levomax 500mg Tablet', 'Is Levomax 500mg Tablet safe?', 'Levomax 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1208, 'Levomax 500mg Tablet', 'CE-Biotec Pvt Ltd', 'Levomax 500mg Tablet', 'What if I forget to take a dose of Levomax 500mg Tablet?', 'If you forget a dose of Levomax 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1209, 'Levomax 500mg Tablet', 'CE-Biotec Pvt Ltd', 'Levomax 500mg Tablet', 'Can the use of Levomax 500mg Tablet cause diarrhea?', 'Yes, the use of Levomax 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1210, 'Levomax 500mg Tablet', 'CE-Biotec Pvt Ltd', 'Levomax 500mg Tablet', 'Can I stop taking Levomax 500mg Tablet when I feel better?', 'No, do not stop taking Levomax 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomax 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomax 500mg Tablet in the dose and duration advised by the doctor.'),
(1211, 'Levomax 500mg Tablet', 'CE-Biotec Pvt Ltd', 'Levomax 500mg Tablet', 'Can the use of Levomax 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomax 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomax 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1212, 'Levomax 5mg Tablet', 'Max pharma', 'Levomax 5mg Tablet', 'Is Levomax 5mg Tablet a steroid? What is it used for?', 'No, Levomax 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1213, 'Levomax 5mg Tablet', 'Max pharma', 'Levomax 5mg Tablet', 'Does Levomax 5mg Tablet make you tired and drowsy?', 'Yes, Levomax 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1214, 'Levomax 5mg Tablet', 'Max pharma', 'Levomax 5mg Tablet', 'How long does it take for Levomax 5mg Tablet to work?', 'Levomax 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1215, 'Levomax 5mg Tablet', 'Max pharma', 'Levomax 5mg Tablet', 'Can I take Levomax 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomax 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1216, 'Levomax 5mg Tablet', 'Max pharma', 'Levomax 5mg Tablet', 'Is it safe to take Levomax 5mg Tablet for a long time?', 'Levomax 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomax 5mg Tablet for only as long as you need it.'),
(1217, 'Levomax 5mg Tablet', 'Max pharma', 'Levomax 5mg Tablet', 'For how long should I continue Levomax 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomax 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomax 5mg Tablet'),
(1218, 'Levomax M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levomax M 5mg/10mg Tablet (Widcure Healthcare)', 'What is Levomax M 5mg/10mg Tablet?', 'Levomax M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1219, 'Levomax M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levomax M 5mg/10mg Tablet (Widcure Healthcare)', 'Can the use of Levomax M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomax M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1220, 'Levomax M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levomax M 5mg/10mg Tablet (Widcure Healthcare)', 'Can Levomax M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomax M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1221, 'Levomax M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levomax M 5mg/10mg Tablet (Widcure Healthcare)', 'Can the use of Levomax M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomax M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1222, 'Levomax M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levomax M 5mg/10mg Tablet (Widcure Healthcare)', 'Can I drink alcohol while taking Levomax M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomax M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomax M 5mg/10mg Tablet.'),
(1223, 'Levomax M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levomax M 5mg/10mg Tablet (Widcure Healthcare)', 'Will Levomax M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomax M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1224, 'Levomax M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levomax M 5mg/10mg Tablet (Widcure Healthcare)', 'What are the instructions for storage and disposal of Levomax M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1225, 'Levomax M 5mg/10mg Tablet', 'Max pharma', 'Levomax M 5mg/10mg Tablet (Max pharma)', 'What is Levomax M 5mg/10mg Tablet?', 'Levomax M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1226, 'Levomax M 5mg/10mg Tablet', 'Max pharma', 'Levomax M 5mg/10mg Tablet (Max pharma)', 'Can the use of Levomax M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomax M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1227, 'Levomax M 5mg/10mg Tablet', 'Max pharma', 'Levomax M 5mg/10mg Tablet (Max pharma)', 'Can Levomax M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomax M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1228, 'Levomax M 5mg/10mg Tablet', 'Max pharma', 'Levomax M 5mg/10mg Tablet (Max pharma)', 'Can the use of Levomax M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomax M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1229, 'Levomax M 5mg/10mg Tablet', 'Max pharma', 'Levomax M 5mg/10mg Tablet (Max pharma)', 'Can I drink alcohol while taking Levomax M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomax M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomax M 5mg/10mg Tablet.'),
(1230, 'Levomax M 5mg/10mg Tablet', 'Max pharma', 'Levomax M 5mg/10mg Tablet (Max pharma)', 'Will Levomax M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomax M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1231, 'Levomax M 5mg/10mg Tablet', 'Max pharma', 'Levomax M 5mg/10mg Tablet (Max pharma)', 'What are the instructions for storage and disposal of Levomax M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1232, 'Levomax M Syrup', 'Max pharma', 'Levomax M Syrup', 'What is Levomax M Syrup?', 'Levomax M Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1233, 'Levomax M Syrup', 'Max pharma', 'Levomax M Syrup', 'Can the use of Levomax M Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomax M Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1234, 'Levomax M Syrup', 'Max pharma', 'Levomax M Syrup', 'Can Levomax M Syrup be stopped when allergy symptoms are relieved?', 'No, Levomax M Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1235, 'Levomax M Syrup', 'Max pharma', 'Levomax M Syrup', 'Can the use of Levomax M Syrup cause dry mouth?', 'Yes, the use of Levomax M Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1236, 'Levomax M Syrup', 'Max pharma', 'Levomax M Syrup', 'Can I drink alcohol while taking Levomax M Syrup?', 'No, do not take alcohol while taking Levomax M Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomax M Syrup.'),
(1237, 'Levomax M Syrup', 'Max pharma', 'Levomax M Syrup', 'Will Levomax M Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomax M Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1238, 'Levomax M Syrup', 'Max pharma', 'Levomax M Syrup', 'What are the instructions for storage and disposal of Levomax M Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1239, 'Levomaz-M Tablet', 'Mediganza Healthcare', 'Levomaz-M Tablet', 'What is Levomaz-M Tablet?', 'Levomaz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1240, 'Levomaz-M Tablet', 'Mediganza Healthcare', 'Levomaz-M Tablet', 'Can the use of Levomaz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomaz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1241, 'Levomaz-M Tablet', 'Mediganza Healthcare', 'Levomaz-M Tablet', 'Can Levomaz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levomaz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1242, 'Levomaz-M Tablet', 'Mediganza Healthcare', 'Levomaz-M Tablet', 'Can the use of Levomaz-M Tablet cause dry mouth?', 'Yes, the use of Levomaz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1243, 'Levomaz-M Tablet', 'Mediganza Healthcare', 'Levomaz-M Tablet', 'Can I drink alcohol while taking Levomaz-M Tablet?', 'No, do not take alcohol while taking Levomaz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomaz-M Tablet.'),
(1244, 'Levomaz-M Tablet', 'Mediganza Healthcare', 'Levomaz-M Tablet', 'Will Levomaz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomaz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1245, 'Levomaz-M Tablet', 'Mediganza Healthcare', 'Levomaz-M Tablet', 'What are the instructions for storage and disposal of Levomaz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1246, 'Levomb 500 Tablet', 'Aplomb Pharma Pvt. Ltd.', 'Levomb 500 Tablet', 'Is Levomb 500 Tablet safe?', 'Levomb 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1247, 'Levomb 500 Tablet', 'Aplomb Pharma Pvt. Ltd.', 'Levomb 500 Tablet', 'What if I forget to take a dose of Levomb 500 Tablet?', 'If you forget a dose of Levomb 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1248, 'Levomb 500 Tablet', 'Aplomb Pharma Pvt. Ltd.', 'Levomb 500 Tablet', 'Can the use of Levomb 500 Tablet cause diarrhea?', 'Yes, the use of Levomb 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1249, 'Levomb 500 Tablet', 'Aplomb Pharma Pvt. Ltd.', 'Levomb 500 Tablet', 'Can I stop taking Levomb 500 Tablet when I feel better?', 'No, do not stop taking Levomb 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomb 500 Tablet too early, the symptoms may return or worsen. Continue taking Levomb 500 Tablet in the dose and duration advised by the doctor.'),
(1250, 'Levomb 500 Tablet', 'Aplomb Pharma Pvt. Ltd.', 'Levomb 500 Tablet', 'Can the use of Levomb 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levomb 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomb 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1251, 'Levome 5mg Tablet MD', 'Medifaith Biotech', 'Levome 5mg Tablet MD', 'Is Levome 5mg Tablet MD a steroid? What is it used for?', 'No, Levome 5mg Tablet MD is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1252, 'Levome 5mg Tablet MD', 'Medifaith Biotech', 'Levome 5mg Tablet MD', 'Does Levome 5mg Tablet MD make you tired and drowsy?', 'Yes, Levome 5mg Tablet MD can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1253, 'Levome 5mg Tablet MD', 'Medifaith Biotech', 'Levome 5mg Tablet MD', 'How long does it take for Levome 5mg Tablet MD to work?', 'Levome 5mg Tablet MD starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1254, 'Levome 5mg Tablet MD', 'Medifaith Biotech', 'Levome 5mg Tablet MD', 'Can I take Levome 5mg Tablet MD and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levome 5mg Tablet MD during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1255, 'Levome 5mg Tablet MD', 'Medifaith Biotech', 'Levome 5mg Tablet MD', 'Is it safe to take Levome 5mg Tablet MD for a long time?', 'Levome 5mg Tablet MD is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levome 5mg Tablet MD for only as long as you need it.'),
(1256, 'Levome 5mg Tablet MD', 'Medifaith Biotech', 'Levome 5mg Tablet MD', 'For how long should I continue Levome 5mg Tablet MD?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levome 5mg Tablet MD for a longer time. Talk to your doctor if you are unsure about the duration of using Levome 5mg Tablet MD'),
(1257, 'Levome 5mg/10mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome 5mg/10mg Tablet', 'What is Levome 5mg/10mg Tablet?', 'Levome 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1258, 'Levome 5mg/10mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome 5mg/10mg Tablet', 'Can the use of Levome 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levome 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1259, 'Levome 5mg/10mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome 5mg/10mg Tablet', 'Can Levome 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levome 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1260, 'Levome 5mg/10mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome 5mg/10mg Tablet', 'Can the use of Levome 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levome 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1261, 'Levome 5mg/10mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome 5mg/10mg Tablet', 'Can I drink alcohol while taking Levome 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levome 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levome 5mg/10mg Tablet.'),
(1262, 'Levome 5mg/10mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome 5mg/10mg Tablet', 'Will Levome 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levome 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1263, 'Levome 5mg/10mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levome 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1264, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1265, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levome Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1266, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'How should Levome Kid 2.5mg/4mg Tablet be stored?', 'Levome Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1267, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'Can Levome Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levome Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1268, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levome Kid 2.5mg/4mg Tablet?', 'No, don’t start Levome Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levome Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1269, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levome Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1270, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levome Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levome Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1271, 'Levome Kid 2.5mg/4mg Tablet', 'Almed Drugs Pvt Ltd', 'Levome Kid 2.5mg/4mg Tablet', 'Can I use Levome Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levome Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1272, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1273, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'Can I decrease the dose of Levome M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1274, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'How should Levome M Syrup be stored?', 'Levome M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1275, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'Can Levome M Syrup make my child sleepy?', 'Levome M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1276, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levome M Syrup?', 'No, don’t start Levome M Syrup without speaking to your child’s doctor. Moreover, Levome M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1277, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levome M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1278, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levome M Syrup to my child?', 'Some studies show that Levome M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1279, 'Levome M Syrup', 'Medifaith Biotech', 'Levome M Syrup', 'Can I use Levome M Syrup for treating acute asthma attacks in my child?', 'Levome M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1280, 'Levomeb 250mg Tablet', 'Meb Pharma', 'Levomeb 250mg Tablet', 'Is Levomeb 250mg Tablet safe?', 'Levomeb 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1281, 'Levomeb 250mg Tablet', 'Meb Pharma', 'Levomeb 250mg Tablet', 'What if I forget to take a dose of Levomeb 250mg Tablet?', 'If you forget a dose of Levomeb 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1282, 'Levomeb 250mg Tablet', 'Meb Pharma', 'Levomeb 250mg Tablet', 'Can the use of Levomeb 250mg Tablet cause diarrhea?', 'Yes, the use of Levomeb 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1283, 'Levomeb 250mg Tablet', 'Meb Pharma', 'Levomeb 250mg Tablet', 'Can I stop taking Levomeb 250mg Tablet when I feel better?', 'No, do not stop taking Levomeb 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomeb 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levomeb 250mg Tablet in the dose and duration advised by the doctor.'),
(1284, 'Levomeb 250mg Tablet', 'Meb Pharma', 'Levomeb 250mg Tablet', 'Can the use of Levomeb 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomeb 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomeb 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1285, 'Levomeb 500mg Tablet', 'Meb Pharma', 'Levomeb 500mg Tablet', 'Is Levomeb 500mg Tablet safe?', 'Levomeb 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1286, 'Levomeb 500mg Tablet', 'Meb Pharma', 'Levomeb 500mg Tablet', 'What if I forget to take a dose of Levomeb 500mg Tablet?', 'If you forget a dose of Levomeb 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1287, 'Levomeb 500mg Tablet', 'Meb Pharma', 'Levomeb 500mg Tablet', 'Can the use of Levomeb 500mg Tablet cause diarrhea?', 'Yes, the use of Levomeb 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1288, 'Levomeb 500mg Tablet', 'Meb Pharma', 'Levomeb 500mg Tablet', 'Can I stop taking Levomeb 500mg Tablet when I feel better?', 'No, do not stop taking Levomeb 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomeb 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomeb 500mg Tablet in the dose and duration advised by the doctor.'),
(1289, 'Levomeb 500mg Tablet', 'Meb Pharma', 'Levomeb 500mg Tablet', 'Can the use of Levomeb 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomeb 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomeb 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1290, 'Levomed 250mg Tablet', 'Zydus Cadila', 'Levomed 250mg Tablet', 'Is Levomed 250mg Tablet safe?', 'Levomed 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1291, 'Levomed 250mg Tablet', 'Zydus Cadila', 'Levomed 250mg Tablet', 'What if I forget to take a dose of Levomed 250mg Tablet?', 'If you forget a dose of Levomed 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1292, 'Levomed 250mg Tablet', 'Zydus Cadila', 'Levomed 250mg Tablet', 'Can the use of Levomed 250mg Tablet cause diarrhea?', 'Yes, the use of Levomed 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1293, 'Levomed 250mg Tablet', 'Zydus Cadila', 'Levomed 250mg Tablet', 'Can I stop taking Levomed 250mg Tablet when I feel better?', 'No, do not stop taking Levomed 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomed 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levomed 250mg Tablet in the dose and duration advised by the doctor.'),
(1294, 'Levomed 250mg Tablet', 'Zydus Cadila', 'Levomed 250mg Tablet', 'Can the use of Levomed 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomed 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomed 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1295, 'Levomed 500mg Tablet', 'Zydus Cadila', 'Levomed 500mg Tablet', 'Is Levomed 500mg Tablet safe?', 'Levomed 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1296, 'Levomed 500mg Tablet', 'Zydus Cadila', 'Levomed 500mg Tablet', 'What if I forget to take a dose of Levomed 500mg Tablet?', 'If you forget a dose of Levomed 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1297, 'Levomed 500mg Tablet', 'Zydus Cadila', 'Levomed 500mg Tablet', 'Can the use of Levomed 500mg Tablet cause diarrhea?', 'Yes, the use of Levomed 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1298, 'Levomed 500mg Tablet', 'Zydus Cadila', 'Levomed 500mg Tablet', 'Can I stop taking Levomed 500mg Tablet when I feel better?', 'No, do not stop taking Levomed 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomed 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomed 500mg Tablet in the dose and duration advised by the doctor.'),
(1299, 'Levomed 500mg Tablet', 'Zydus Cadila', 'Levomed 500mg Tablet', 'Can the use of Levomed 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomed 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomed 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1300, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'What is Levomed-E Tablet and what is it used for?', 'Levomed-E Tablet is a combined oral contraceptive medicine that contains two hormones estrogen and progesterone. It is used to prevent pregnancy.'),
(1301, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'What if I forget to take Levomed-E Tablet?', 'If you forget to take one tablet, take it as soon as you remember, even if it means taking two tablets at same time and then follow the usual dosing schedule. However, if you forget to take two or more doses, you may not be totally protected against pregnancy. In this case, start taking the tablet as soon as you remember and use a non-hormonal method of contraception such as condoms for at least next 7 days to prevent pregnancy. Frequent missing of doses may lead to unexpected vaginal bleeding or spotting (blood stain). Consult your doctor if this persists.'),
(1302, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'How and in what dose should I take Levomed-E Tablet?', 'Take this medicine as per the advice of your doctor. However, take it at the same time each day, to ensure consistent levels of medicine in your body.'),
(1303, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'Are there any specific contraindications associated with the use of Levomed-E Tablet?', 'The use of Levomed-E Tablet is not recommended to patients with known allergy to any of its components or excipients. It is not advised to be used by patients with a history of high blood pressure, heart disease, diabetes mellitus, migraine headache, liver disease or tumors, uterine bleeding, breast cancer, deep vein thrombosis and pulmonary embolism (blood clot).'),
(1304, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'Can Levomed-E Tablet be taken by a patient who smokes?', 'Levomed-E Tablet should not be taken by a person who smokes. Smoking increases the risk of serious side effects like death from heart attack, blood clots or stroke. The risk increases in patients who are obese or over 35 years of age and people who are heavy smokers. Inform your doctor if you smoke, before taking Levomed-E Tablet.'),
(1305, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'What if I miss my regular menstrual periods while taking Levomed-E Tablet?', 'If you miss your menstrual periods while taking Levomed-E Tablet, you may be pregnant. Some women may miss periods or have light periods while taking Levomed-E Tablet even if they are not pregnant. Contact your doctor if you think you are pregnant or have missed one or two periods. This may happen in case you are not taking Levomed-E Tablet at the same time every day.'),
(1306, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'Can Levomed-E Tablet cause bleeding or spotting between the regular menstrual periods?', 'Yes, Levomed-E Tablet can cause some unexpected bleeding or spotting, especially during the first three months. Do not stop taking Levomed-E Tablet because of this. This bleeding or spotting decreases with time. You may have unexpected bleeding if you do not take the pills regularly. Consult your doctor if the spotting continues for more than seven days or if the bleeding is heavy.'),
(1307, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'What if I vomit after taking Levomed-E Tablet?', 'If you vomit within 3-4 hours after taking Levomed-E Tablet tablet, then it is considered as a missed dose. So, you should take an another dose as soon as you feel well enough.'),
(1308, 'Levomed-E Tablet', 'Medwise Overseas Pvt Ltd', 'Levomed-E Tablet', 'What are the common side effects of taking Levomed-E Tablet?', 'You may experience irregular vaginal bleeding while taking Levomed-E Tablet. Other common side effects include headache, nausea (feeling sick), acne, depression (sad mood), and breast pain. Most of them are temporary. If these persist, consult with your doctor.'),
(1309, 'Levome-FD 10mg/120mg Tablet', 'Dallas Pharmaceuticals and Formulations Pvt Ltd', 'Levome-FD 10mg/120mg Tablet', 'What is Levome-FD 10mg/120mg Tablet ?', 'Levome-FD 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(1310, 'Levome-FD 10mg/120mg Tablet', 'Dallas Pharmaceuticals and Formulations Pvt Ltd', 'Levome-FD 10mg/120mg Tablet', 'Can Levome-FD 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levome-FD 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Levome-FD 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(1311, 'Levome-FD 10mg/120mg Tablet', 'Dallas Pharmaceuticals and Formulations Pvt Ltd', 'Levome-FD 10mg/120mg Tablet', 'Can the use of Levome-FD 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Levome-FD 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(1312, 'Levome-FD 10mg/120mg Tablet', 'Dallas Pharmaceuticals and Formulations Pvt Ltd', 'Levome-FD 10mg/120mg Tablet', 'What should be avoided in food while taking Levome-FD 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levome-FD 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Levome-FD 10mg/120mg Tablet.'),
(1313, 'Levome-FD 10mg/120mg Tablet', 'Dallas Pharmaceuticals and Formulations Pvt Ltd', 'Levome-FD 10mg/120mg Tablet', 'Will Levome-FD 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1314, 'Levome-FD 10mg/120mg Tablet', 'Dallas Pharmaceuticals and Formulations Pvt Ltd', 'Levome-FD 10mg/120mg Tablet', 'What is the recommended storage condition for Levome-FD 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1315, 'Levomek-FX Tablet', 'Sunmeck Pharma Pvt Ltd', 'Levomek-FX Tablet', 'What is Levomek-FX Tablet ?', 'Levomek-FX Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(1316, 'Levomek-FX Tablet', 'Sunmeck Pharma Pvt Ltd', 'Levomek-FX Tablet', 'Can Levomek-FX Tablet be stopped when allergy symptoms are relieved?', 'No, Levomek-FX Tablet should be continued as advised by the doctor. If any problems are experienced due to Levomek-FX Tablet, consult the doctor for re-evaluation.'),
(1317, 'Levomek-FX Tablet', 'Sunmeck Pharma Pvt Ltd', 'Levomek-FX Tablet', 'Can the use of Levomek-FX Tablet cause dizziness?', 'Yes, the use of Levomek-FX Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(1318, 'Levomek-FX Tablet', 'Sunmeck Pharma Pvt Ltd', 'Levomek-FX Tablet', 'What should be avoided in food while taking Levomek-FX Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levomek-FX Tablet as it might increase the severity of drowsiness or sleepiness caused by Levomek-FX Tablet.'),
(1319, 'Levomek-FX Tablet', 'Sunmeck Pharma Pvt Ltd', 'Levomek-FX Tablet', 'Will Levomek-FX Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1320, 'Levomek-FX Tablet', 'Sunmeck Pharma Pvt Ltd', 'Levomek-FX Tablet', 'What is the recommended storage condition for Levomek-FX Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1321, 'Levomelt 5mg Tablet', 'Kaptab Pharmaceuticals', 'Levomelt 5mg Tablet', 'Is Levomelt 5mg Tablet a steroid? What is it used for?', 'No, Levomelt 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1322, 'Levomelt 5mg Tablet', 'Kaptab Pharmaceuticals', 'Levomelt 5mg Tablet', 'Does Levomelt 5mg Tablet make you tired and drowsy?', 'Yes, Levomelt 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1323, 'Levomelt 5mg Tablet', 'Kaptab Pharmaceuticals', 'Levomelt 5mg Tablet', 'How long does it take for Levomelt 5mg Tablet to work?', 'Levomelt 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1324, 'Levomelt 5mg Tablet', 'Kaptab Pharmaceuticals', 'Levomelt 5mg Tablet', 'Can I take Levomelt 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomelt 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1325, 'Levomelt 5mg Tablet', 'Kaptab Pharmaceuticals', 'Levomelt 5mg Tablet', 'Is it safe to take Levomelt 5mg Tablet for a long time?', 'Levomelt 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomelt 5mg Tablet for only as long as you need it.'),
(1326, 'Levomelt 5mg Tablet', 'Kaptab Pharmaceuticals', 'Levomelt 5mg Tablet', 'For how long should I continue Levomelt 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomelt 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomelt 5mg Tablet'),
(1327, 'Levome-M Tablet', 'Medifaith Biotech', 'Levome-M Tablet', 'What is Levome-M Tablet?', 'Levome-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1328, 'Levome-M Tablet', 'Medifaith Biotech', 'Levome-M Tablet', 'Can the use of Levome-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levome-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1329, 'Levome-M Tablet', 'Medifaith Biotech', 'Levome-M Tablet', 'Can Levome-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levome-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1330, 'Levome-M Tablet', 'Medifaith Biotech', 'Levome-M Tablet', 'Can the use of Levome-M Tablet cause dry mouth?', 'Yes, the use of Levome-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1331, 'Levome-M Tablet', 'Medifaith Biotech', 'Levome-M Tablet', 'Can I drink alcohol while taking Levome-M Tablet?', 'No, do not take alcohol while taking Levome-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levome-M Tablet.'),
(1332, 'Levome-M Tablet', 'Medifaith Biotech', 'Levome-M Tablet', 'Will Levome-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levome-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1333, 'Levome-M Tablet', 'Medifaith Biotech', 'Levome-M Tablet', 'What are the instructions for storage and disposal of Levome-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1334, 'Levomer 500mg Infusion', 'Stermed India', 'Levomer 500mg Infusion', 'Is Levomer 500mg Infusion safe?', 'Levomer 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1335, 'Levomer 500mg Infusion', 'Stermed India', 'Levomer 500mg Infusion', 'Can the use of Levomer 500mg Infusion cause diarrhea?', 'Yes, the use of Levomer 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1336, 'Levomer 500mg Infusion', 'Stermed India', 'Levomer 500mg Infusion', 'Can the use of Levomer 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levomer 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomer 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1337, 'Levomer 500mg Infusion', 'Stermed India', 'Levomer 500mg Infusion', 'How is Levomer 500mg Infusion administered?', 'Levomer 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levomer 500mg Infusion.'),
(1338, 'Levomer 500mg Infusion', 'Stermed India', 'Levomer 500mg Infusion', 'Is Levomer 500mg Infusion effective?', 'Levomer 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levomer 500mg Infusion too early, the symptoms may return or worsen.'),
(1339, 'Levomer 5mg Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer 5mg Tablet', 'Is Levomer 5mg Tablet a steroid? What is it used for?', 'No, Levomer 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1340, 'Levomer 5mg Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer 5mg Tablet', 'Does Levomer 5mg Tablet make you tired and drowsy?', 'Yes, Levomer 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1341, 'Levomer 5mg Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer 5mg Tablet', 'How long does it take for Levomer 5mg Tablet to work?', 'Levomer 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1342, 'Levomer 5mg Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer 5mg Tablet', 'Can I take Levomer 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomer 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1343, 'Levomer 5mg Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer 5mg Tablet', 'Is it safe to take Levomer 5mg Tablet for a long time?', 'Levomer 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomer 5mg Tablet for only as long as you need it.'),
(1344, 'Levomer 5mg Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer 5mg Tablet', 'For how long should I continue Levomer 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomer 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomer 5mg Tablet'),
(1345, 'Levomeri 5mg Tablet', 'Merion Care', 'Levomeri 5mg Tablet', 'Is Levomeri 5mg Tablet a steroid? What is it used for?', 'No, Levomeri 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1346, 'Levomeri 5mg Tablet', 'Merion Care', 'Levomeri 5mg Tablet', 'Does Levomeri 5mg Tablet make you tired and drowsy?', 'Yes, Levomeri 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1347, 'Levomeri 5mg Tablet', 'Merion Care', 'Levomeri 5mg Tablet', 'How long does it take for Levomeri 5mg Tablet to work?', 'Levomeri 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1348, 'Levomeri 5mg Tablet', 'Merion Care', 'Levomeri 5mg Tablet', 'Can I take Levomeri 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomeri 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1349, 'Levomeri 5mg Tablet', 'Merion Care', 'Levomeri 5mg Tablet', 'Is it safe to take Levomeri 5mg Tablet for a long time?', 'Levomeri 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomeri 5mg Tablet for only as long as you need it.'),
(1350, 'Levomeri 5mg Tablet', 'Merion Care', 'Levomeri 5mg Tablet', 'For how long should I continue Levomeri 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomeri 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomeri 5mg Tablet'),
(1351, 'Levomer-M Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer-M Tablet', 'What is Levomer-M Tablet?', 'Levomer-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1352, 'Levomer-M Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer-M Tablet', 'Can the use of Levomer-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomer-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1353, 'Levomer-M Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer-M Tablet', 'Can Levomer-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levomer-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1354, 'Levomer-M Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer-M Tablet', 'Can the use of Levomer-M Tablet cause dry mouth?', 'Yes, the use of Levomer-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1355, 'Levomer-M Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer-M Tablet', 'Can I drink alcohol while taking Levomer-M Tablet?', 'No, do not take alcohol while taking Levomer-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomer-M Tablet.'),
(1356, 'Levomer-M Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer-M Tablet', 'Will Levomer-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomer-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1357, 'Levomer-M Tablet', 'Larion Life Sciences Pvt Ltd', 'Levomer-M Tablet', 'What are the instructions for storage and disposal of Levomer-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1358, 'Levomerz 5mg Injection', 'Mak Pharmaceuticals', 'Levomerz 5mg Injection', 'Is it ok to take alcohol when taking Levomerz 5mg Injection?', 'No, it is not recommended to take alcohol when on Levomerz 5mg Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(1359, 'Levomerz 5mg Injection', 'Mak Pharmaceuticals', 'Levomerz 5mg Injection', 'What is Levomerz 5mg Injection?', 'Levomerz 5mg Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(1360, 'Levomerz 5mg Injection', 'Mak Pharmaceuticals', 'Levomerz 5mg Injection', 'What is the use of Levomerz 5mg Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Levomerz 5mg Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(1361, 'Levomerz 5mg Injection', 'Mak Pharmaceuticals', 'Levomerz 5mg Injection', 'How is Levomerz 5mg Injection given?', 'Levomerz 5mg Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(1362, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1363, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'Can I decrease the dose of Levomerz-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1364, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'How should Levomerz-M Syrup be stored?', 'Levomerz-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1365, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'Can Levomerz-M Syrup make my child sleepy?', 'Levomerz-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1366, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomerz-M Syrup?', 'No, don’t start Levomerz-M Syrup without speaking to your child’s doctor. Moreover, Levomerz-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1367, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomerz-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1368, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levomerz-M Syrup to my child?', 'Some studies show that Levomerz-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1369, 'Levomerz-M Syrup', 'CV Pharma Ltd', 'Levomerz-M Syrup', 'Can I use Levomerz-M Syrup for treating acute asthma attacks in my child?', 'Levomerz-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1370, 'Levomerz-M Tablet', 'CV Pharma Ltd', 'Levomerz-M Tablet', 'What is Levomerz-M Tablet?', 'Levomerz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1371, 'Levomerz-M Tablet', 'CV Pharma Ltd', 'Levomerz-M Tablet', 'Can the use of Levomerz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomerz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1372, 'Levomerz-M Tablet', 'CV Pharma Ltd', 'Levomerz-M Tablet', 'Can Levomerz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levomerz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1373, 'Levomerz-M Tablet', 'CV Pharma Ltd', 'Levomerz-M Tablet', 'Can the use of Levomerz-M Tablet cause dry mouth?', 'Yes, the use of Levomerz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1374, 'Levomerz-M Tablet', 'CV Pharma Ltd', 'Levomerz-M Tablet', 'Can I drink alcohol while taking Levomerz-M Tablet?', 'No, do not take alcohol while taking Levomerz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomerz-M Tablet.'),
(1375, 'Levomerz-M Tablet', 'CV Pharma Ltd', 'Levomerz-M Tablet', 'Will Levomerz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomerz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1376, 'Levomerz-M Tablet', 'CV Pharma Ltd', 'Levomerz-M Tablet', 'What are the instructions for storage and disposal of Levomerz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1377, 'Levomet 250 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 250 Tablet', 'Is Levomet 250 Tablet safe?', 'Levomet 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1378, 'Levomet 250 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 250 Tablet', 'What if I forget to take a dose of Levomet 250 Tablet?', 'If you forget a dose of Levomet 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1379, 'Levomet 250 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 250 Tablet', 'Can the use of Levomet 250 Tablet cause diarrhea?', 'Yes, the use of Levomet 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1380, 'Levomet 250 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 250 Tablet', 'Can I stop taking Levomet 250 Tablet when I feel better?', 'No, do not stop taking Levomet 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomet 250 Tablet too early, the symptoms may return or worsen. Continue taking Levomet 250 Tablet in the dose and duration advised by the doctor.'),
(1381, 'Levomet 250 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 250 Tablet', 'Can the use of Levomet 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levomet 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomet 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1382, 'Levomet 500 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 500 Tablet', 'Is Levomet 500 Tablet safe?', 'Levomet 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1383, 'Levomet 500 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 500 Tablet', 'What if I forget to take a dose of Levomet 500 Tablet?', 'If you forget a dose of Levomet 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1384, 'Levomet 500 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 500 Tablet', 'Can the use of Levomet 500 Tablet cause diarrhea?', 'Yes, the use of Levomet 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1385, 'Levomet 500 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 500 Tablet', 'Can I stop taking Levomet 500 Tablet when I feel better?', 'No, do not stop taking Levomet 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomet 500 Tablet too early, the symptoms may return or worsen. Continue taking Levomet 500 Tablet in the dose and duration advised by the doctor.'),
(1386, 'Levomet 500 Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet 500 Tablet', 'Can the use of Levomet 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levomet 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomet 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1387, 'Levomet 750mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet 750mg Tablet', 'Is Levomet 750mg Tablet safe?', 'Levomet 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1388, 'Levomet 750mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet 750mg Tablet', 'What if I forget to take a dose of Levomet 750mg Tablet?', 'If you forget a dose of Levomet 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1389, 'Levomet 750mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet 750mg Tablet', 'Can the use of Levomet 750mg Tablet cause diarrhea?', 'Yes, the use of Levomet 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1390, 'Levomet 750mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet 750mg Tablet', 'Can I stop taking Levomet 750mg Tablet when I feel better?', 'No, do not stop taking Levomet 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomet 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levomet 750mg Tablet in the dose and duration advised by the doctor.'),
(1391, 'Levomet 750mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet 750mg Tablet', 'Can the use of Levomet 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomet 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomet 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1392, 'Levomet C 5mg Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet C 5mg Tablet', 'Is Levomet C 5mg Tablet a steroid? What is it used for?', 'No, Levomet C 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1393, 'Levomet C 5mg Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet C 5mg Tablet', 'Does Levomet C 5mg Tablet make you tired and drowsy?', 'Yes, Levomet C 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1394, 'Levomet C 5mg Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet C 5mg Tablet', 'How long does it take for Levomet C 5mg Tablet to work?', 'Levomet C 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1395, 'Levomet C 5mg Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet C 5mg Tablet', 'Can I take Levomet C 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomet C 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1396, 'Levomet C 5mg Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet C 5mg Tablet', 'Is it safe to take Levomet C 5mg Tablet for a long time?', 'Levomet C 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomet C 5mg Tablet for only as long as you need it.'),
(1397, 'Levomet C 5mg Tablet', 'Metrix Healthcare Pvt Ltd', 'Levomet C 5mg Tablet', 'For how long should I continue Levomet C 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomet C 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomet C 5mg Tablet'),
(1398, 'Levomet OZ 250mg/500mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levomet OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1399, 'Levomet OZ 250mg/500mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet OZ 250mg/500mg Tablet', 'Can I stop taking Levomet OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levomet OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(1400, 'Levomet OZ 250mg/500mg Tablet', 'Nova Indus Pharmaceuticals', 'Levomet OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levomet OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1401, 'Levomexa 5mg Tablet', 'Medhexa Pharma', 'Levomexa 5mg Tablet', 'Is Levomexa 5mg Tablet a steroid? What is it used for?', 'No, Levomexa 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1402, 'Levomexa 5mg Tablet', 'Medhexa Pharma', 'Levomexa 5mg Tablet', 'Does Levomexa 5mg Tablet make you tired and drowsy?', 'Yes, Levomexa 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1403, 'Levomexa 5mg Tablet', 'Medhexa Pharma', 'Levomexa 5mg Tablet', 'How long does it take for Levomexa 5mg Tablet to work?', 'Levomexa 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1404, 'Levomexa 5mg Tablet', 'Medhexa Pharma', 'Levomexa 5mg Tablet', 'Can I take Levomexa 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomexa 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1405, 'Levomexa 5mg Tablet', 'Medhexa Pharma', 'Levomexa 5mg Tablet', 'Is it safe to take Levomexa 5mg Tablet for a long time?', 'Levomexa 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomexa 5mg Tablet for only as long as you need it.'),
(1406, 'Levomexa 5mg Tablet', 'Medhexa Pharma', 'Levomexa 5mg Tablet', 'For how long should I continue Levomexa 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomexa 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomexa 5mg Tablet'),
(1407, 'Levomexa F 10mg/120mg Tablet', 'Medhexa Pharma', 'Levomexa F 10mg/120mg Tablet', 'What is Levomexa F 10mg/120mg Tablet ?', 'Levomexa F 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(1408, 'Levomexa F 10mg/120mg Tablet', 'Medhexa Pharma', 'Levomexa F 10mg/120mg Tablet', 'Can Levomexa F 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomexa F 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Levomexa F 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(1409, 'Levomexa F 10mg/120mg Tablet', 'Medhexa Pharma', 'Levomexa F 10mg/120mg Tablet', 'Can the use of Levomexa F 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Levomexa F 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(1410, 'Levomexa F 10mg/120mg Tablet', 'Medhexa Pharma', 'Levomexa F 10mg/120mg Tablet', 'What should be avoided in food while taking Levomexa F 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levomexa F 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Levomexa F 10mg/120mg Tablet.'),
(1411, 'Levomexa F 10mg/120mg Tablet', 'Medhexa Pharma', 'Levomexa F 10mg/120mg Tablet', 'Will Levomexa F 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1412, 'Levomexa F 10mg/120mg Tablet', 'Medhexa Pharma', 'Levomexa F 10mg/120mg Tablet', 'What is the recommended storage condition for Levomexa F 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1413, 'Levomexa M 5mg/10mg Tablet', 'Medhexa Pharma', 'Levomexa M 5mg/10mg Tablet', 'What is Levomexa M 5mg/10mg Tablet?', 'Levomexa M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1414, 'Levomexa M 5mg/10mg Tablet', 'Medhexa Pharma', 'Levomexa M 5mg/10mg Tablet', 'Can the use of Levomexa M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomexa M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1415, 'Levomexa M 5mg/10mg Tablet', 'Medhexa Pharma', 'Levomexa M 5mg/10mg Tablet', 'Can Levomexa M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomexa M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1416, 'Levomexa M 5mg/10mg Tablet', 'Medhexa Pharma', 'Levomexa M 5mg/10mg Tablet', 'Can the use of Levomexa M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomexa M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1417, 'Levomexa M 5mg/10mg Tablet', 'Medhexa Pharma', 'Levomexa M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levomexa M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomexa M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomexa M 5mg/10mg Tablet.'),
(1418, 'Levomexa M 5mg/10mg Tablet', 'Medhexa Pharma', 'Levomexa M 5mg/10mg Tablet', 'Will Levomexa M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomexa M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1419, 'Levomexa M 5mg/10mg Tablet', 'Medhexa Pharma', 'Levomexa M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomexa M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1420, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1421, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'Can I decrease the dose of Levomexa M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1422, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'How should Levomexa M Syrup be stored?', 'Levomexa M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1423, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'Can Levomexa M Syrup make my child sleepy?', 'Levomexa M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1424, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomexa M Syrup?', 'No, don’t start Levomexa M Syrup without speaking to your child’s doctor. Moreover, Levomexa M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1425, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomexa M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1426, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levomexa M Syrup to my child?', 'Some studies show that Levomexa M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1427, 'Levomexa M Syrup', 'Medhexa Pharma', 'Levomexa M Syrup', 'Can I use Levomexa M Syrup for treating acute asthma attacks in my child?', 'Levomexa M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1428, 'Levomez M 500mg/10mg Tablet', 'Mediganza Healthcare', 'Levomez M 500mg/10mg Tablet', 'What is Levomez M 500mg/10mg Tablet?', 'Levomez M 500mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1429, 'Levomez M 500mg/10mg Tablet', 'Mediganza Healthcare', 'Levomez M 500mg/10mg Tablet', 'Can the use of Levomez M 500mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomez M 500mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1430, 'Levomez M 500mg/10mg Tablet', 'Mediganza Healthcare', 'Levomez M 500mg/10mg Tablet', 'Can Levomez M 500mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomez M 500mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1431, 'Levomez M 500mg/10mg Tablet', 'Mediganza Healthcare', 'Levomez M 500mg/10mg Tablet', 'Can the use of Levomez M 500mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomez M 500mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1432, 'Levomez M 500mg/10mg Tablet', 'Mediganza Healthcare', 'Levomez M 500mg/10mg Tablet', 'Can I drink alcohol while taking Levomez M 500mg/10mg Tablet?', 'No, do not take alcohol while taking Levomez M 500mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomez M 500mg/10mg Tablet.'),
(1433, 'Levomez M 500mg/10mg Tablet', 'Mediganza Healthcare', 'Levomez M 500mg/10mg Tablet', 'Will Levomez M 500mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomez M 500mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1434, 'Levomez M 500mg/10mg Tablet', 'Mediganza Healthcare', 'Levomez M 500mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomez M 500mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1435, 'Levomic 10mg Tablet', 'Curious Biotech', 'Levomic 10mg Tablet', 'Is Levomic 10mg Tablet a steroid? What is it used for?', 'No, Levomic 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1436, 'Levomic 10mg Tablet', 'Curious Biotech', 'Levomic 10mg Tablet', 'Does Levomic 10mg Tablet make you tired and drowsy?', 'Yes, Levomic 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1437, 'Levomic 10mg Tablet', 'Curious Biotech', 'Levomic 10mg Tablet', 'How long does it take for Levomic 10mg Tablet to work?', 'Levomic 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1438, 'Levomic 10mg Tablet', 'Curious Biotech', 'Levomic 10mg Tablet', 'Can I take Levomic 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomic 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1439, 'Levomic 10mg Tablet', 'Curious Biotech', 'Levomic 10mg Tablet', 'Is it safe to take Levomic 10mg Tablet for a long time?', 'Levomic 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomic 10mg Tablet for only as long as you need it.'),
(1440, 'Levomic 10mg Tablet', 'Curious Biotech', 'Levomic 10mg Tablet', 'For how long should I continue Levomic 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomic 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomic 10mg Tablet'),
(1441, 'Levomic 5mg Tablet', 'Curious Biotech', 'Levomic 5mg Tablet', 'Is Levomic 5mg Tablet a steroid? What is it used for?', 'No, Levomic 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1442, 'Levomic 5mg Tablet', 'Curious Biotech', 'Levomic 5mg Tablet', 'Does Levomic 5mg Tablet make you tired and drowsy?', 'Yes, Levomic 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1443, 'Levomic 5mg Tablet', 'Curious Biotech', 'Levomic 5mg Tablet', 'How long does it take for Levomic 5mg Tablet to work?', 'Levomic 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1444, 'Levomic 5mg Tablet', 'Curious Biotech', 'Levomic 5mg Tablet', 'Can I take Levomic 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomic 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1445, 'Levomic 5mg Tablet', 'Curious Biotech', 'Levomic 5mg Tablet', 'Is it safe to take Levomic 5mg Tablet for a long time?', 'Levomic 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomic 5mg Tablet for only as long as you need it.'),
(1446, 'Levomic 5mg Tablet', 'Curious Biotech', 'Levomic 5mg Tablet', 'For how long should I continue Levomic 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomic 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomic 5mg Tablet'),
(1447, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1448, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'Can I decrease the dose of Levomic M 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1449, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'How should Levomic M 2.5mg/4mg Tablet be stored?', 'Levomic M 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1450, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'Can Levomic M 2.5mg/4mg Tablet make my child sleepy?', 'Levomic M 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1451, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomic M 2.5mg/4mg Tablet?', 'No, don’t start Levomic M 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levomic M 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1452, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomic M 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1453, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levomic M 2.5mg/4mg Tablet to my child?', 'Some studies show that Levomic M 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1454, 'Levomic M 2.5mg/4mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 2.5mg/4mg Tablet', 'Can I use Levomic M 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levomic M 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1455, 'Levomic M 5mg/10mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 5mg/10mg Tablet', 'What is Levomic M 5mg/10mg Tablet?', 'Levomic M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1456, 'Levomic M 5mg/10mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 5mg/10mg Tablet', 'Can the use of Levomic M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomic M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1457, 'Levomic M 5mg/10mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 5mg/10mg Tablet', 'Can Levomic M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomic M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1458, 'Levomic M 5mg/10mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 5mg/10mg Tablet', 'Can the use of Levomic M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomic M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1459, 'Levomic M 5mg/10mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levomic M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomic M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomic M 5mg/10mg Tablet.'),
(1460, 'Levomic M 5mg/10mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 5mg/10mg Tablet', 'Will Levomic M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomic M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1461, 'Levomic M 5mg/10mg Tablet', 'Olamic Pharma Pvt. Ltd.', 'Levomic M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomic M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1462, 'Levomide 5mg Tablet', 'Invent Biotech', 'Levomide 5mg Tablet', 'Is Levomide 5mg Tablet a steroid? What is it used for?', 'No, Levomide 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1463, 'Levomide 5mg Tablet', 'Invent Biotech', 'Levomide 5mg Tablet', 'Does Levomide 5mg Tablet make you tired and drowsy?', 'Yes, Levomide 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1464, 'Levomide 5mg Tablet', 'Invent Biotech', 'Levomide 5mg Tablet', 'How long does it take for Levomide 5mg Tablet to work?', 'Levomide 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1465, 'Levomide 5mg Tablet', 'Invent Biotech', 'Levomide 5mg Tablet', 'Can I take Levomide 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomide 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1466, 'Levomide 5mg Tablet', 'Invent Biotech', 'Levomide 5mg Tablet', 'Is it safe to take Levomide 5mg Tablet for a long time?', 'Levomide 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomide 5mg Tablet for only as long as you need it.'),
(1467, 'Levomide 5mg Tablet', 'Invent Biotech', 'Levomide 5mg Tablet', 'For how long should I continue Levomide 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomide 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomide 5mg Tablet'),
(1468, 'Levomide M 5mg/10mg Tablet', 'Invent Biotech', 'Levomide M 5mg/10mg Tablet', 'What is Levomide M 5mg/10mg Tablet?', 'Levomide M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1469, 'Levomide M 5mg/10mg Tablet', 'Invent Biotech', 'Levomide M 5mg/10mg Tablet', 'Can the use of Levomide M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomide M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1470, 'Levomide M 5mg/10mg Tablet', 'Invent Biotech', 'Levomide M 5mg/10mg Tablet', 'Can Levomide M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomide M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1471, 'Levomide M 5mg/10mg Tablet', 'Invent Biotech', 'Levomide M 5mg/10mg Tablet', 'Can the use of Levomide M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomide M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1472, 'Levomide M 5mg/10mg Tablet', 'Invent Biotech', 'Levomide M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levomide M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomide M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomide M 5mg/10mg Tablet.'),
(1473, 'Levomide M 5mg/10mg Tablet', 'Invent Biotech', 'Levomide M 5mg/10mg Tablet', 'Will Levomide M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomide M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1474, 'Levomide M 5mg/10mg Tablet', 'Invent Biotech', 'Levomide M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomide M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1475, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1476, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levomide M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1477, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'How should Levomide M Kid 2.5mg/4mg Tablet be stored?', 'Levomide M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1478, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'Can Levomide M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levomide M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1479, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomide M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levomide M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levomide M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1480, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomide M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1481, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levomide M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levomide M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1482, 'Levomide M Kid 2.5mg/4mg Tablet', 'Invent Biotech', 'Levomide M Kid 2.5mg/4mg Tablet', 'Can I use Levomide M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levomide M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1483, 'Levomik 5mg Tablet', 'Mikayla Life Sciences Pvt. Ltd.', 'Levomik 5mg Tablet', 'Is Levomik 5mg Tablet a steroid? What is it used for?', 'No, Levomik 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1484, 'Levomik 5mg Tablet', 'Mikayla Life Sciences Pvt. Ltd.', 'Levomik 5mg Tablet', 'Does Levomik 5mg Tablet make you tired and drowsy?', 'Yes, Levomik 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1485, 'Levomik 5mg Tablet', 'Mikayla Life Sciences Pvt. Ltd.', 'Levomik 5mg Tablet', 'How long does it take for Levomik 5mg Tablet to work?', 'Levomik 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1486, 'Levomik 5mg Tablet', 'Mikayla Life Sciences Pvt. Ltd.', 'Levomik 5mg Tablet', 'Can I take Levomik 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomik 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1487, 'Levomik 5mg Tablet', 'Mikayla Life Sciences Pvt. Ltd.', 'Levomik 5mg Tablet', 'Is it safe to take Levomik 5mg Tablet for a long time?', 'Levomik 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomik 5mg Tablet for only as long as you need it.'),
(1488, 'Levomik 5mg Tablet', 'Mikayla Life Sciences Pvt. Ltd.', 'Levomik 5mg Tablet', 'For how long should I continue Levomik 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomik 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomik 5mg Tablet'),
(1489, 'Levomil 500mg Tablet', 'Indian Drug Distributors Private Limited', 'Levomil 500mg Tablet', 'Is Levomil 500mg Tablet safe?', 'Levomil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1490, 'Levomil 500mg Tablet', 'Indian Drug Distributors Private Limited', 'Levomil 500mg Tablet', 'What if I forget to take a dose of Levomil 500mg Tablet?', 'If you forget a dose of Levomil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1491, 'Levomil 500mg Tablet', 'Indian Drug Distributors Private Limited', 'Levomil 500mg Tablet', 'Can the use of Levomil 500mg Tablet cause diarrhea?', 'Yes, the use of Levomil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1492, 'Levomil 500mg Tablet', 'Indian Drug Distributors Private Limited', 'Levomil 500mg Tablet', 'Can I stop taking Levomil 500mg Tablet when I feel better?', 'No, do not stop taking Levomil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomil 500mg Tablet in the dose and duration advised by the doctor.'),
(1493, 'Levomil 500mg Tablet', 'Indian Drug Distributors Private Limited', 'Levomil 500mg Tablet', 'Can the use of Levomil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1494, 'Levomil M 5mg/10mg Tablet', 'Medipha India Laboratories', 'Levomil M 5mg/10mg Tablet', 'What is Levomil M 5mg/10mg Tablet?', 'Levomil M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1495, 'Levomil M 5mg/10mg Tablet', 'Medipha India Laboratories', 'Levomil M 5mg/10mg Tablet', 'Can the use of Levomil M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomil M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1496, 'Levomil M 5mg/10mg Tablet', 'Medipha India Laboratories', 'Levomil M 5mg/10mg Tablet', 'Can Levomil M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomil M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1497, 'Levomil M 5mg/10mg Tablet', 'Medipha India Laboratories', 'Levomil M 5mg/10mg Tablet', 'Can the use of Levomil M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomil M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1498, 'Levomil M 5mg/10mg Tablet', 'Medipha India Laboratories', 'Levomil M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levomil M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomil M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomil M 5mg/10mg Tablet.'),
(1499, 'Levomil M 5mg/10mg Tablet', 'Medipha India Laboratories', 'Levomil M 5mg/10mg Tablet', 'Will Levomil M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomil M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1500, 'Levomil M 5mg/10mg Tablet', 'Medipha India Laboratories', 'Levomil M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomil M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1501, 'Levomin M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levomin M 5mg/10mg Tablet', 'What is Levomin M 5mg/10mg Tablet?', 'Levomin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1502, 'Levomin M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levomin M 5mg/10mg Tablet', 'Can the use of Levomin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1503, 'Levomin M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levomin M 5mg/10mg Tablet', 'Can Levomin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1504, 'Levomin M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levomin M 5mg/10mg Tablet', 'Can the use of Levomin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1505, 'Levomin M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levomin M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levomin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomin M 5mg/10mg Tablet.'),
(1506, 'Levomin M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levomin M 5mg/10mg Tablet', 'Will Levomin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1507, 'Levomin M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levomin M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1508, 'Levomind M 5mg/10mg Tablet', 'Medimind Drugs and Chemicals', 'Levomind M 5mg/10mg Tablet', 'What is Levomind M 5mg/10mg Tablet?', 'Levomind M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1509, 'Levomind M 5mg/10mg Tablet', 'Medimind Drugs and Chemicals', 'Levomind M 5mg/10mg Tablet', 'Can the use of Levomind M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomind M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1510, 'Levomind M 5mg/10mg Tablet', 'Medimind Drugs and Chemicals', 'Levomind M 5mg/10mg Tablet', 'Can Levomind M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomind M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1511, 'Levomind M 5mg/10mg Tablet', 'Medimind Drugs and Chemicals', 'Levomind M 5mg/10mg Tablet', 'Can the use of Levomind M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomind M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1512, 'Levomind M 5mg/10mg Tablet', 'Medimind Drugs and Chemicals', 'Levomind M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levomind M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomind M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomind M 5mg/10mg Tablet.'),
(1513, 'Levomind M 5mg/10mg Tablet', 'Medimind Drugs and Chemicals', 'Levomind M 5mg/10mg Tablet', 'Will Levomind M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomind M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1514, 'Levomind M 5mg/10mg Tablet', 'Medimind Drugs and Chemicals', 'Levomind M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomind M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1515, 'Levomind M Syrup', 'Medimind Drugs and Chemicals', 'Levomind M Syrup', 'What is Levomind M Syrup?', 'Levomind M Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1516, 'Levomind M Syrup', 'Medimind Drugs and Chemicals', 'Levomind M Syrup', 'Can the use of Levomind M Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomind M Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1517, 'Levomind M Syrup', 'Medimind Drugs and Chemicals', 'Levomind M Syrup', 'Can Levomind M Syrup be stopped when allergy symptoms are relieved?', 'No, Levomind M Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1518, 'Levomind M Syrup', 'Medimind Drugs and Chemicals', 'Levomind M Syrup', 'Can the use of Levomind M Syrup cause dry mouth?', 'Yes, the use of Levomind M Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1519, 'Levomind M Syrup', 'Medimind Drugs and Chemicals', 'Levomind M Syrup', 'Can I drink alcohol while taking Levomind M Syrup?', 'No, do not take alcohol while taking Levomind M Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomind M Syrup.'),
(1520, 'Levomind M Syrup', 'Medimind Drugs and Chemicals', 'Levomind M Syrup', 'Will Levomind M Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomind M Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1521, 'Levomind M Syrup', 'Medimind Drugs and Chemicals', 'Levomind M Syrup', 'What are the instructions for storage and disposal of Levomind M Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1522, 'Levomind-AB Tablet SR', 'Medimind Drugs and Chemicals', 'Levomind-AB Tablet SR', 'Can the use of Levomind-AB Tablet SR cause dry mouth?', 'Yes, the use of Levomind-AB Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(1523, 'Levomind-AB Tablet SR', 'Medimind Drugs and Chemicals', 'Levomind-AB Tablet SR', 'Can I use Levomind-AB Tablet SR while breastfeeding?', 'No, Levomind-AB Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(1524, 'Levomind-AB Tablet SR', 'Medimind Drugs and Chemicals', 'Levomind-AB Tablet SR', 'Can I drink alcohol while taking Levomind-AB Tablet SR?', 'No, avoid drinking alcohol while taking Levomind-AB Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Levomind-AB Tablet SR.'),
(1525, 'Levomind-AB Tablet SR', 'Medimind Drugs and Chemicals', 'Levomind-AB Tablet SR', 'What are the instructions for the storage and disposal of Levomind-AB Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1526, 'Levomine-M Tablet', 'Skyway India Pharmaceuticals', 'Levomine-M Tablet', 'What is Levomine-M Tablet?', 'Levomine-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1527, 'Levomine-M Tablet', 'Skyway India Pharmaceuticals', 'Levomine-M Tablet', 'Can the use of Levomine-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomine-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1528, 'Levomine-M Tablet', 'Skyway India Pharmaceuticals', 'Levomine-M Tablet', 'Can Levomine-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levomine-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1529, 'Levomine-M Tablet', 'Skyway India Pharmaceuticals', 'Levomine-M Tablet', 'Can the use of Levomine-M Tablet cause dry mouth?', 'Yes, the use of Levomine-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1530, 'Levomine-M Tablet', 'Skyway India Pharmaceuticals', 'Levomine-M Tablet', 'Can I drink alcohol while taking Levomine-M Tablet?', 'No, do not take alcohol while taking Levomine-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomine-M Tablet.'),
(1531, 'Levomine-M Tablet', 'Skyway India Pharmaceuticals', 'Levomine-M Tablet', 'Will Levomine-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomine-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1532, 'Levomine-M Tablet', 'Skyway India Pharmaceuticals', 'Levomine-M Tablet', 'What are the instructions for storage and disposal of Levomine-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1533, 'Levominn 5mg Tablet', 'Accuminn Labs', 'Levominn 5mg Tablet', 'Is Levominn 5mg Tablet a steroid? What is it used for?', 'No, Levominn 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1534, 'Levominn 5mg Tablet', 'Accuminn Labs', 'Levominn 5mg Tablet', 'Does Levominn 5mg Tablet make you tired and drowsy?', 'Yes, Levominn 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1535, 'Levominn 5mg Tablet', 'Accuminn Labs', 'Levominn 5mg Tablet', 'How long does it take for Levominn 5mg Tablet to work?', 'Levominn 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1536, 'Levominn 5mg Tablet', 'Accuminn Labs', 'Levominn 5mg Tablet', 'Can I take Levominn 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levominn 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1537, 'Levominn 5mg Tablet', 'Accuminn Labs', 'Levominn 5mg Tablet', 'Is it safe to take Levominn 5mg Tablet for a long time?', 'Levominn 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levominn 5mg Tablet for only as long as you need it.'),
(1538, 'Levominn 5mg Tablet', 'Accuminn Labs', 'Levominn 5mg Tablet', 'For how long should I continue Levominn 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levominn 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levominn 5mg Tablet'),
(1539, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1540, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'Can I decrease the dose of Levominn-M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1541, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'How should Levominn-M Kid Tablet be stored?', 'Levominn-M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1542, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'Can Levominn-M Kid Tablet make my child sleepy?', 'Levominn-M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1543, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levominn-M Kid Tablet?', 'No, don’t start Levominn-M Kid Tablet without speaking to your child’s doctor. Moreover, Levominn-M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1544, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levominn-M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1545, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levominn-M Kid Tablet to my child?', 'Some studies show that Levominn-M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1546, 'Levominn-M Kid Tablet', 'Accuminn Labs', 'Levominn-M Kid Tablet', 'Can I use Levominn-M Kid Tablet for treating acute asthma attacks in my child?', 'Levominn-M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1547, 'Levominn-M Tablet', 'Accuminn Labs', 'Levominn-M Tablet', 'What is Levominn-M Tablet?', 'Levominn-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1548, 'Levominn-M Tablet', 'Accuminn Labs', 'Levominn-M Tablet', 'Can the use of Levominn-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levominn-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1549, 'Levominn-M Tablet', 'Accuminn Labs', 'Levominn-M Tablet', 'Can Levominn-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levominn-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1550, 'Levominn-M Tablet', 'Accuminn Labs', 'Levominn-M Tablet', 'Can the use of Levominn-M Tablet cause dry mouth?', 'Yes, the use of Levominn-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1551, 'Levominn-M Tablet', 'Accuminn Labs', 'Levominn-M Tablet', 'Can I drink alcohol while taking Levominn-M Tablet?', 'No, do not take alcohol while taking Levominn-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levominn-M Tablet.'),
(1552, 'Levominn-M Tablet', 'Accuminn Labs', 'Levominn-M Tablet', 'Will Levominn-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levominn-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1553, 'Levominn-M Tablet', 'Accuminn Labs', 'Levominn-M Tablet', 'What are the instructions for storage and disposal of Levominn-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1554, 'Levomis 10mg Tablet', 'Dermacia Healthcare', 'Levomis 10mg Tablet', 'Is Levomis 10mg Tablet a steroid? What is it used for?', 'No, Levomis 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1555, 'Levomis 10mg Tablet', 'Dermacia Healthcare', 'Levomis 10mg Tablet', 'Does Levomis 10mg Tablet make you tired and drowsy?', 'Yes, Levomis 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1556, 'Levomis 10mg Tablet', 'Dermacia Healthcare', 'Levomis 10mg Tablet', 'How long does it take for Levomis 10mg Tablet to work?', 'Levomis 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1557, 'Levomis 10mg Tablet', 'Dermacia Healthcare', 'Levomis 10mg Tablet', 'Can I take Levomis 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomis 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1558, 'Levomis 10mg Tablet', 'Dermacia Healthcare', 'Levomis 10mg Tablet', 'Is it safe to take Levomis 10mg Tablet for a long time?', 'Levomis 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomis 10mg Tablet for only as long as you need it.'),
(1559, 'Levomis 10mg Tablet', 'Dermacia Healthcare', 'Levomis 10mg Tablet', 'For how long should I continue Levomis 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomis 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomis 10mg Tablet'),
(1560, 'Levomis 5mg Tablet', 'Dermacia Healthcare', 'Levomis 5mg Tablet', 'Is Levomis 5mg Tablet a steroid? What is it used for?', 'No, Levomis 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1561, 'Levomis 5mg Tablet', 'Dermacia Healthcare', 'Levomis 5mg Tablet', 'Does Levomis 5mg Tablet make you tired and drowsy?', 'Yes, Levomis 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1562, 'Levomis 5mg Tablet', 'Dermacia Healthcare', 'Levomis 5mg Tablet', 'How long does it take for Levomis 5mg Tablet to work?', 'Levomis 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1563, 'Levomis 5mg Tablet', 'Dermacia Healthcare', 'Levomis 5mg Tablet', 'Can I take Levomis 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomis 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1564, 'Levomis 5mg Tablet', 'Dermacia Healthcare', 'Levomis 5mg Tablet', 'Is it safe to take Levomis 5mg Tablet for a long time?', 'Levomis 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomis 5mg Tablet for only as long as you need it.'),
(1565, 'Levomis 5mg Tablet', 'Dermacia Healthcare', 'Levomis 5mg Tablet', 'For how long should I continue Levomis 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomis 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomis 5mg Tablet'),
(1566, 'Levomit 500mg Tablet', 'Admit Pharmaceuticals Pvt Ltd', 'Levomit 500mg Tablet', 'Is Levomit 500mg Tablet safe?', 'Levomit 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1567, 'Levomit 500mg Tablet', 'Admit Pharmaceuticals Pvt Ltd', 'Levomit 500mg Tablet', 'What if I forget to take a dose of Levomit 500mg Tablet?', 'If you forget a dose of Levomit 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1568, 'Levomit 500mg Tablet', 'Admit Pharmaceuticals Pvt Ltd', 'Levomit 500mg Tablet', 'Can the use of Levomit 500mg Tablet cause diarrhea?', 'Yes, the use of Levomit 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1569, 'Levomit 500mg Tablet', 'Admit Pharmaceuticals Pvt Ltd', 'Levomit 500mg Tablet', 'Can I stop taking Levomit 500mg Tablet when I feel better?', 'No, do not stop taking Levomit 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomit 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomit 500mg Tablet in the dose and duration advised by the doctor.'),
(1570, 'Levomit 500mg Tablet', 'Admit Pharmaceuticals Pvt Ltd', 'Levomit 500mg Tablet', 'Can the use of Levomit 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomit 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomit 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1571, 'Levomite 500mg Tablet', 'Calen Biotech', 'Levomite 500mg Tablet', 'Is Levomite 500mg Tablet safe?', 'Levomite 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1572, 'Levomite 500mg Tablet', 'Calen Biotech', 'Levomite 500mg Tablet', 'What if I forget to take a dose of Levomite 500mg Tablet?', 'If you forget a dose of Levomite 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1573, 'Levomite 500mg Tablet', 'Calen Biotech', 'Levomite 500mg Tablet', 'Can the use of Levomite 500mg Tablet cause diarrhea?', 'Yes, the use of Levomite 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1574, 'Levomite 500mg Tablet', 'Calen Biotech', 'Levomite 500mg Tablet', 'Can I stop taking Levomite 500mg Tablet when I feel better?', 'No, do not stop taking Levomite 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomite 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomite 500mg Tablet in the dose and duration advised by the doctor.'),
(1575, 'Levomite 500mg Tablet', 'Calen Biotech', 'Levomite 500mg Tablet', 'Can the use of Levomite 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomite 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomite 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1576, 'Levomith 250mg Tablet', 'Biosmith Laboratories', 'Levomith 250mg Tablet', 'Is Levomith 250mg Tablet safe?', 'Levomith 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1577, 'Levomith 250mg Tablet', 'Biosmith Laboratories', 'Levomith 250mg Tablet', 'What if I forget to take a dose of Levomith 250mg Tablet?', 'If you forget a dose of Levomith 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1578, 'Levomith 250mg Tablet', 'Biosmith Laboratories', 'Levomith 250mg Tablet', 'Can the use of Levomith 250mg Tablet cause diarrhea?', 'Yes, the use of Levomith 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1579, 'Levomith 250mg Tablet', 'Biosmith Laboratories', 'Levomith 250mg Tablet', 'Can I stop taking Levomith 250mg Tablet when I feel better?', 'No, do not stop taking Levomith 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomith 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levomith 250mg Tablet in the dose and duration advised by the doctor.'),
(1580, 'Levomith 250mg Tablet', 'Biosmith Laboratories', 'Levomith 250mg Tablet', 'Can the use of Levomith 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomith 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomith 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1581, 'Levomits 500mg Infusion', 'Mits Healthcare Pvt Ltd', 'Levomits 500mg Infusion', 'Is Levomits 500mg Infusion safe?', 'Levomits 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1582, 'Levomits 500mg Infusion', 'Mits Healthcare Pvt Ltd', 'Levomits 500mg Infusion', 'Can the use of Levomits 500mg Infusion cause diarrhea?', 'Yes, the use of Levomits 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1583, 'Levomits 500mg Infusion', 'Mits Healthcare Pvt Ltd', 'Levomits 500mg Infusion', 'Can the use of Levomits 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levomits 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomits 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1584, 'Levomits 500mg Infusion', 'Mits Healthcare Pvt Ltd', 'Levomits 500mg Infusion', 'How is Levomits 500mg Infusion administered?', 'Levomits 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levomits 500mg Infusion.'),
(1585, 'Levomits 500mg Infusion', 'Mits Healthcare Pvt Ltd', 'Levomits 500mg Infusion', 'Is Levomits 500mg Infusion effective?', 'Levomits 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levomits 500mg Infusion too early, the symptoms may return or worsen.'),
(1586, 'Levomiz 500mg Tablet', 'Abiz Pharma', 'Levomiz 500mg Tablet', 'Is Levomiz 500mg Tablet safe?', 'Levomiz 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1587, 'Levomiz 500mg Tablet', 'Abiz Pharma', 'Levomiz 500mg Tablet', 'What if I forget to take a dose of Levomiz 500mg Tablet?', 'If you forget a dose of Levomiz 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1588, 'Levomiz 500mg Tablet', 'Abiz Pharma', 'Levomiz 500mg Tablet', 'Can the use of Levomiz 500mg Tablet cause diarrhea?', 'Yes, the use of Levomiz 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1589, 'Levomiz 500mg Tablet', 'Abiz Pharma', 'Levomiz 500mg Tablet', 'Can I stop taking Levomiz 500mg Tablet when I feel better?', 'No, do not stop taking Levomiz 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomiz 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomiz 500mg Tablet in the dose and duration advised by the doctor.'),
(1590, 'Levomiz 500mg Tablet', 'Abiz Pharma', 'Levomiz 500mg Tablet', 'Can the use of Levomiz 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomiz 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomiz 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1591, 'Levomni 500mg Tablet', 'Cipla Ltd', 'Levomni 500mg Tablet', 'Is Levomni 500mg Tablet safe?', 'Levomni 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1592, 'Levomni 500mg Tablet', 'Cipla Ltd', 'Levomni 500mg Tablet', 'What if I forget to take a dose of Levomni 500mg Tablet?', 'If you forget a dose of Levomni 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1593, 'Levomni 500mg Tablet', 'Cipla Ltd', 'Levomni 500mg Tablet', 'Can the use of Levomni 500mg Tablet cause diarrhea?', 'Yes, the use of Levomni 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1594, 'Levomni 500mg Tablet', 'Cipla Ltd', 'Levomni 500mg Tablet', 'Can I stop taking Levomni 500mg Tablet when I feel better?', 'No, do not stop taking Levomni 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomni 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomni 500mg Tablet in the dose and duration advised by the doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1595, 'Levomni 500mg Tablet', 'Cipla Ltd', 'Levomni 500mg Tablet', 'Can the use of Levomni 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomni 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomni 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1596, 'Levomni 750mg Tablet', 'Cipla Ltd', 'Levomni 750mg Tablet', 'Is Levomni 750mg Tablet safe?', 'Levomni 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1597, 'Levomni 750mg Tablet', 'Cipla Ltd', 'Levomni 750mg Tablet', 'What if I forget to take a dose of Levomni 750mg Tablet?', 'If you forget a dose of Levomni 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1598, 'Levomni 750mg Tablet', 'Cipla Ltd', 'Levomni 750mg Tablet', 'Can the use of Levomni 750mg Tablet cause diarrhea?', 'Yes, the use of Levomni 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1599, 'Levomni 750mg Tablet', 'Cipla Ltd', 'Levomni 750mg Tablet', 'Can I stop taking Levomni 750mg Tablet when I feel better?', 'No, do not stop taking Levomni 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomni 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levomni 750mg Tablet in the dose and duration advised by the doctor.'),
(1600, 'Levomni 750mg Tablet', 'Cipla Ltd', 'Levomni 750mg Tablet', 'Can the use of Levomni 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomni 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomni 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1601, 'Levomoc 500mg Tablet', 'Ziotic Life Sciences', 'Levomoc 500mg Tablet', 'Is Levomoc 500mg Tablet safe?', 'Levomoc 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1602, 'Levomoc 500mg Tablet', 'Ziotic Life Sciences', 'Levomoc 500mg Tablet', 'What if I forget to take a dose of Levomoc 500mg Tablet?', 'If you forget a dose of Levomoc 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1603, 'Levomoc 500mg Tablet', 'Ziotic Life Sciences', 'Levomoc 500mg Tablet', 'Can the use of Levomoc 500mg Tablet cause diarrhea?', 'Yes, the use of Levomoc 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1604, 'Levomoc 500mg Tablet', 'Ziotic Life Sciences', 'Levomoc 500mg Tablet', 'Can I stop taking Levomoc 500mg Tablet when I feel better?', 'No, do not stop taking Levomoc 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomoc 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomoc 500mg Tablet in the dose and duration advised by the doctor.'),
(1605, 'Levomoc 500mg Tablet', 'Ziotic Life Sciences', 'Levomoc 500mg Tablet', 'Can the use of Levomoc 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomoc 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomoc 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1606, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'How does Levomol 0.31mg Injection work?', 'Levomol 0.31mg Injection works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levomol 0.31mg Injection helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(1607, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'How should I take Levomol 0.31mg Injection?', 'Levomol 0.31mg Injection should be taken in the dose and duration advised by your doctor. Levomol 0.31mg Injection can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levomol 0.31mg Injection just before bedtime with a glass of water.'),
(1608, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'What if I forget to take a dose of Levomol 0.31mg Injection?', 'If you forget a dose of Levomol 0.31mg Injection, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1609, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'What would happen if I take higher than the recommended dose of Levomol 0.31mg Injection?', 'Taking a higher than the recommended dose of Levomol 0.31mg Injection may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levomol 0.31mg Injection may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(1610, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'Is Levomol 0.31mg Injection better than Albuterol?', 'Both Levomol 0.31mg Injection and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levomol 0.31mg Injection contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levomol 0.31mg Injection, being the active form may have lesser side effects when compared to the inactive form.'),
(1611, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'Is it safe to take Levomol 0.31mg Injection if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levomol 0.31mg Injection, seek immediate medical advice.'),
(1612, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'Being a diabetic, what should I remember while taking Levomol 0.31mg Injection?', 'Levomol 0.31mg Injection may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(1613, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'I have started using Levomol 0.31mg Injection and I am experiencing headaches and shakiness. Is this because of Levomol 0.31mg Injection and will these go away?', 'Yes, it could be due to Levomol 0.31mg Injection. Feeling shaky is a common side effect of Levomol 0.31mg Injection which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(1614, 'Levomol 0.31mg Injection', 'AXA Parenterals Ltd', 'Levomol 0.31mg Injection', 'Can I smoke if I have been prescribed Levomol 0.31mg Injection?', 'No, you should not smoke while taking Levomol 0.31mg Injection. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(1615, 'Levomol 0.63mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 0.63mg Respules 2.5ml', 'Is Levomol 0.63mg Respules 2.5ml better than Albuterol?', 'Both Levomol 0.63mg Respules 2.5ml and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levomol 0.63mg Respules 2.5ml contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levomol 0.63mg Respules 2.5ml, being the active form may have lesser side effects when compared to the inactive form.'),
(1616, 'Levomol 0.63mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 0.63mg Respules 2.5ml', 'What would happen if I take higher than the recommended dose of Levomol 0.63mg Respules 2.5ml?', 'Taking a higher than the recommended dose of Levomol 0.63mg Respules 2.5ml may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levomol 0.63mg Respules 2.5ml may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(1617, 'Levomol 0.63mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 0.63mg Respules 2.5ml', 'Is it safe to take Levomol 0.63mg Respules 2.5ml if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levomol 0.63mg Respules 2.5ml, seek immediate medical advice.'),
(1618, 'Levomol 0.63mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 0.63mg Respules 2.5ml', 'Being a diabetic, what should I remember while taking Levomol 0.63mg Respules 2.5ml?', 'Levomol 0.63mg Respules 2.5ml may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(1619, 'Levomol 0.63mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 0.63mg Respules 2.5ml', 'I have started using Levomol 0.63mg Respules 2.5ml and I am experiencing headaches and shakiness. Is this because of Levomol 0.63mg Respules 2.5ml and will these go away?', 'Yes, it could be due to Levomol 0.63mg Respules 2.5ml. Feeling shaky is a common side effect of Levomol 0.63mg Respules 2.5ml which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(1620, 'Levomol 0.63mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 0.63mg Respules 2.5ml', 'When should I take Levomol 0.63mg Respules 2.5ml?', 'Use Levomol 0.63mg Respules 2.5ml as and when you need it. Levomol 0.63mg Respules 2.5ml relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(1621, 'Levomol 0.63mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 0.63mg Respules 2.5ml', 'Can I smoke if I have been prescribed Levomol 0.63mg Respules 2.5ml?', 'No, you should not smoke while taking Levomol 0.63mg Respules 2.5ml. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(1622, 'Levomol 1.25mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 1.25mg Respules 2.5ml', 'Is Levomol 1.25mg Respules 2.5ml better than Albuterol?', 'Both Levomol 1.25mg Respules 2.5ml and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levomol 1.25mg Respules 2.5ml contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levomol 1.25mg Respules 2.5ml, being the active form may have lesser side effects when compared to the inactive form.'),
(1623, 'Levomol 1.25mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 1.25mg Respules 2.5ml', 'What would happen if I take higher than the recommended dose of Levomol 1.25mg Respules 2.5ml?', 'Taking a higher than the recommended dose of Levomol 1.25mg Respules 2.5ml may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levomol 1.25mg Respules 2.5ml may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(1624, 'Levomol 1.25mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 1.25mg Respules 2.5ml', 'Is it safe to take Levomol 1.25mg Respules 2.5ml if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levomol 1.25mg Respules 2.5ml, seek immediate medical advice.'),
(1625, 'Levomol 1.25mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 1.25mg Respules 2.5ml', 'Being a diabetic, what should I remember while taking Levomol 1.25mg Respules 2.5ml?', 'Levomol 1.25mg Respules 2.5ml may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(1626, 'Levomol 1.25mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 1.25mg Respules 2.5ml', 'I have started using Levomol 1.25mg Respules 2.5ml and I am experiencing headaches and shakiness. Is this because of Levomol 1.25mg Respules 2.5ml and will these go away?', 'Yes, it could be due to Levomol 1.25mg Respules 2.5ml. Feeling shaky is a common side effect of Levomol 1.25mg Respules 2.5ml which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(1627, 'Levomol 1.25mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 1.25mg Respules 2.5ml', 'When should I take Levomol 1.25mg Respules 2.5ml?', 'Use Levomol 1.25mg Respules 2.5ml as and when you need it. Levomol 1.25mg Respules 2.5ml relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(1628, 'Levomol 1.25mg Respules 2.5ml', 'AXA Parenterals Ltd', 'Levomol 1.25mg Respules 2.5ml', 'Can I smoke if I have been prescribed Levomol 1.25mg Respules 2.5ml?', 'No, you should not smoke while taking Levomol 1.25mg Respules 2.5ml. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(1629, 'Levomol 150mg Tablet', 'Cipla Ltd', 'Levomol 150mg Tablet', 'Is Levomol 150mg Tablet effective?', 'Levomol 150mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levomol 150mg Tablet too early, the symptoms may return or worsen.'),
(1630, 'Levomol 150mg Tablet', 'Cipla Ltd', 'Levomol 150mg Tablet', 'Can the use of Levomol 150mg Tablet cause dizziness?', 'Yes, Levomol 150mg Tablet can make you feel dizzy. Avoid driving, operating on machinery, working at heights or participating or participating in potentially dangerous activities, especially during the initial days of your treatment. However, if your condition does not improve, consult your doctor.'),
(1631, 'Levomol 150mg Tablet', 'Cipla Ltd', 'Levomol 150mg Tablet', 'Are there any specific conditions where Levomol 150mg Tablet should be avoided?', 'The use of Levomol 150mg Tablet should be avoided in patients with known allergy to any other ingredients of this medicine. Also, patients who are suffering from asthma should refrain from using Levomol 150mg Tablet. Therefore, inform your doctor if you have or had any medical condition before starting your treatment with Levomol 150mg Tablet.'),
(1632, 'Levomol 150mg Tablet', 'Cipla Ltd', 'Levomol 150mg Tablet', 'What are the instructions for storage and disposal of Levomol 150mg Tablet?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1633, 'Levomol 150mg Tablet', 'Cipla Ltd', 'Levomol 150mg Tablet', 'What if I forget to take a dose of Levomol 150mg Tablet?', 'If you forget a dose of Levomol 150mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1634, 'Levomol 150mg Tablet', 'Cipla Ltd', 'Levomol 150mg Tablet', 'Is Levomol 150mg Tablet safe?', 'Levomol 150mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1635, 'Levomol 50mg Tablet', 'Cipla Ltd', 'Levomol 50mg Tablet', 'How can I know that my child is having a worm infection?', 'In case of worm infestations, your child may complain of an itchy bottom (rectal area), difficulty sitting, fatigue, restless sleep due to anal itching, or persistent stomach pain with loss of appetite or frequent indigestion. Another sign of worm infection is Pica (a habit of eating inedible substances such as mud). Speak to your child’s doctor as soon as you notice any such signs in your child. The doctor may ask for your child’s stool and blood samples for examination. Depending upon the reports, the doctor will decide upon the treatment and prescribe your child some medicine.'),
(1636, 'Levomol 50mg Tablet', 'Cipla Ltd', 'Levomol 50mg Tablet', 'How can my child become infected with intestinal worms?', 'Children typically develop infections very easily due to weak immunity. The infection can be transmitted from the eggs of worms present in human feces which contaminate soil in areas with poor sanitation. These worms and their eggs can get transmitted by drinking contaminated water or by eating contaminated vegetables and fruits without washing or peeling properly. Your child may also get infected by playing in the soil that is contaminated with the eggs of the worms. So, keep a note of these points and take proper care of their hygiene. Ask your child to properly clean hands and legs after returning from outdoor activities.'),
(1637, 'Levomol 50mg Tablet', 'Cipla Ltd', 'Levomol 50mg Tablet', 'What are the serious side effects of Levomol 50mg Tablet?', 'Prolong or excess intake of Levomol 50mg Tablet can cause serious side effects such as seizures and low blood count. Therefore, it is advised not to give Levomol 50mg Tablet if your child is already suffering from a seizure disorder. Also, your child’s doctor may monitor the complete blood cell (CBC) in your child at regular intervals.'),
(1638, 'Levomol 50mg Tablet', 'Cipla Ltd', 'Levomol 50mg Tablet', 'Can other medicines be given at the same time as Levomol 50mg Tablet?', 'You can give your child medicines meant to relieve pain and fever unless your doctor has told you not to. However, some medicines should be avoided while being on medication with Levomol 50mg Tablet. So, to avoid any risk of side effects, talk to your child’s doctor before giving any other medicines to your child.'),
(1639, 'Levomol 50mg Tablet', 'Cipla Ltd', 'Levomol 50mg Tablet', 'What is the best time to give Levomol 50mg Tablet to my child?', 'Levomol 50mg Tablet can be given at any time of the day. Just remember to give it in the dose and way as prescribed by your child’s doctor.'),
(1640, 'Levomol LS Syrup', 'Alphonso Pharmacia', 'Levomol LS Syrup', 'What is Levomol LS Syrup?', 'Levomol LS Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(1641, 'Levomol LS Syrup', 'Alphonso Pharmacia', 'Levomol LS Syrup', 'Is it safe to use Levomol LS Syrup?', 'Yes, it is safe to use Levomol LS Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(1642, 'Levomol LS Syrup', 'Alphonso Pharmacia', 'Levomol LS Syrup', 'Are there any specific contraindications associated with the use of Levomol LS Syrup?', 'Use of Levomol LS Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(1643, 'Levomol LS Syrup', 'Alphonso Pharmacia', 'Levomol LS Syrup', 'Can the use of Levomol LS Syrup cause dizziness?', 'Yes, the use of Levomol LS Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(1644, 'Levomol LS Syrup', 'Alphonso Pharmacia', 'Levomol LS Syrup', 'Can the use of Levomol LS Syrup cause diarrhea?', 'Yes, the use of Levomol LS Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(1645, 'Levomol LS Syrup', 'Alphonso Pharmacia', 'Levomol LS Syrup', 'What are the recommended storage conditions for Levomol LS Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1646, 'Levomon-D Tablet', 'Deeroz Healthcare', 'Levomon-D Tablet', 'What is Levomon-D Tablet?', 'Levomon-D Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1647, 'Levomon-D Tablet', 'Deeroz Healthcare', 'Levomon-D Tablet', 'Can the use of Levomon-D Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomon-D Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1648, 'Levomon-D Tablet', 'Deeroz Healthcare', 'Levomon-D Tablet', 'Can Levomon-D Tablet be stopped when allergy symptoms are relieved?', 'No, Levomon-D Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1649, 'Levomon-D Tablet', 'Deeroz Healthcare', 'Levomon-D Tablet', 'Can the use of Levomon-D Tablet cause dry mouth?', 'Yes, the use of Levomon-D Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1650, 'Levomon-D Tablet', 'Deeroz Healthcare', 'Levomon-D Tablet', 'Can I drink alcohol while taking Levomon-D Tablet?', 'No, do not take alcohol while taking Levomon-D Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomon-D Tablet.'),
(1651, 'Levomon-D Tablet', 'Deeroz Healthcare', 'Levomon-D Tablet', 'Will Levomon-D Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomon-D Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1652, 'Levomon-D Tablet', 'Deeroz Healthcare', 'Levomon-D Tablet', 'What are the instructions for storage and disposal of Levomon-D Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1653, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1654, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'Can I decrease the dose of Levomont P Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1655, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'How should Levomont P Tablet be stored?', 'Levomont P Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1656, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'Can Levomont P Tablet make my child sleepy?', 'Levomont P Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1657, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomont P Tablet?', 'No, don’t start Levomont P Tablet without speaking to your child’s doctor. Moreover, Levomont P Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1658, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomont P Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1659, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levomont P Tablet to my child?', 'Some studies show that Levomont P Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1660, 'Levomont P Tablet', 'Med Manor Organics Pvt Ltd', 'Levomont P Tablet', 'Can I use Levomont P Tablet for treating acute asthma attacks in my child?', 'Levomont P Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1661, 'Levomont Tablet', 'Bharti Life Sciences', 'Levomont Tablet', 'What is Levomont Tablet?', 'Levomont Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1662, 'Levomont Tablet', 'Bharti Life Sciences', 'Levomont Tablet', 'Can the use of Levomont Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomont Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1663, 'Levomont Tablet', 'Bharti Life Sciences', 'Levomont Tablet', 'Can Levomont Tablet be stopped when allergy symptoms are relieved?', 'No, Levomont Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1664, 'Levomont Tablet', 'Bharti Life Sciences', 'Levomont Tablet', 'Can the use of Levomont Tablet cause dry mouth?', 'Yes, the use of Levomont Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1665, 'Levomont Tablet', 'Bharti Life Sciences', 'Levomont Tablet', 'Can I drink alcohol while taking Levomont Tablet?', 'No, do not take alcohol while taking Levomont Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomont Tablet.'),
(1666, 'Levomont Tablet', 'Bharti Life Sciences', 'Levomont Tablet', 'Will Levomont Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomont Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1667, 'Levomont Tablet', 'Bharti Life Sciences', 'Levomont Tablet', 'What are the instructions for storage and disposal of Levomont Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1668, 'Levomonte 5mg/10mg Tablet', 'Raffles Pharmaceuticals', 'Levomonte 5mg/10mg Tablet', 'What is Levomonte 5mg/10mg Tablet?', 'Levomonte 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1669, 'Levomonte 5mg/10mg Tablet', 'Raffles Pharmaceuticals', 'Levomonte 5mg/10mg Tablet', 'Can the use of Levomonte 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomonte 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1670, 'Levomonte 5mg/10mg Tablet', 'Raffles Pharmaceuticals', 'Levomonte 5mg/10mg Tablet', 'Can Levomonte 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomonte 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1671, 'Levomonte 5mg/10mg Tablet', 'Raffles Pharmaceuticals', 'Levomonte 5mg/10mg Tablet', 'Can the use of Levomonte 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomonte 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1672, 'Levomonte 5mg/10mg Tablet', 'Raffles Pharmaceuticals', 'Levomonte 5mg/10mg Tablet', 'Can I drink alcohol while taking Levomonte 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomonte 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomonte 5mg/10mg Tablet.'),
(1673, 'Levomonte 5mg/10mg Tablet', 'Raffles Pharmaceuticals', 'Levomonte 5mg/10mg Tablet', 'Will Levomonte 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomonte 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1674, 'Levomonte 5mg/10mg Tablet', 'Raffles Pharmaceuticals', 'Levomonte 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levomonte 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1675, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1676, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'Can I decrease the dose of Levomonte Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1677, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'How should Levomonte Oral Suspension be stored?', 'Levomonte Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1678, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'Can Levomonte Oral Suspension make my child sleepy?', 'Levomonte Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1679, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomonte Oral Suspension?', 'No, don’t start Levomonte Oral Suspension without speaking to your child’s doctor. Moreover, Levomonte Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1680, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomonte Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1681, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levomonte Oral Suspension to my child?', 'Some studies show that Levomonte Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1682, 'Levomonte Oral Suspension', 'Raffles Pharmaceuticals', 'Levomonte Oral Suspension', 'Can I use Levomonte Oral Suspension for treating acute asthma attacks in my child?', 'Levomonte Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1683, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1684, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'Can I decrease the dose of Levomonte Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1685, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'How should Levomonte Syrup be stored?', 'Levomonte Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1686, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'Can Levomonte Syrup make my child sleepy?', 'Levomonte Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1687, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomonte Syrup?', 'No, don’t start Levomonte Syrup without speaking to your child’s doctor. Moreover, Levomonte Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1688, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomonte Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1689, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levomonte Syrup to my child?', 'Some studies show that Levomonte Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1690, 'Levomonte Syrup', 'Ags Pharmaceuticals Pvt Ltd', 'Levomonte Syrup', 'Can I use Levomonte Syrup for treating acute asthma attacks in my child?', 'Levomonte Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1691, 'Levomonte Tablet', 'Drugmed Pharma', 'Levomonte Tablet', 'What is Levomonte Tablet?', 'Levomonte Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1692, 'Levomonte Tablet', 'Drugmed Pharma', 'Levomonte Tablet', 'Can the use of Levomonte Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomonte Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1693, 'Levomonte Tablet', 'Drugmed Pharma', 'Levomonte Tablet', 'Can Levomonte Tablet be stopped when allergy symptoms are relieved?', 'No, Levomonte Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1694, 'Levomonte Tablet', 'Drugmed Pharma', 'Levomonte Tablet', 'Can the use of Levomonte Tablet cause dry mouth?', 'Yes, the use of Levomonte Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1695, 'Levomonte Tablet', 'Drugmed Pharma', 'Levomonte Tablet', 'Can I drink alcohol while taking Levomonte Tablet?', 'No, do not take alcohol while taking Levomonte Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomonte Tablet.'),
(1696, 'Levomonte Tablet', 'Drugmed Pharma', 'Levomonte Tablet', 'Will Levomonte Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomonte Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1697, 'Levomonte Tablet', 'Drugmed Pharma', 'Levomonte Tablet', 'What are the instructions for storage and disposal of Levomonte Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1698, 'Levomont-FX Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-FX Tablet', 'What is Levomont-FX Tablet ?', 'Levomont-FX Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(1699, 'Levomont-FX Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-FX Tablet', 'Can Levomont-FX Tablet be stopped when allergy symptoms are relieved?', 'No, Levomont-FX Tablet should be continued as advised by the doctor. If any problems are experienced due to Levomont-FX Tablet, consult the doctor for re-evaluation.'),
(1700, 'Levomont-FX Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-FX Tablet', 'Can the use of Levomont-FX Tablet cause dizziness?', 'Yes, the use of Levomont-FX Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(1701, 'Levomont-FX Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-FX Tablet', 'What should be avoided in food while taking Levomont-FX Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levomont-FX Tablet as it might increase the severity of drowsiness or sleepiness caused by Levomont-FX Tablet.'),
(1702, 'Levomont-FX Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-FX Tablet', 'Will Levomont-FX Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1703, 'Levomont-FX Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-FX Tablet', 'What is the recommended storage condition for Levomont-FX Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1704, 'Levomontin AX 75mg/5mg/10mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin AX 75mg/5mg/10mg Tablet', 'Can the use of Levomontin AX 75mg/5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomontin AX 75mg/5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(1705, 'Levomontin AX 75mg/5mg/10mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin AX 75mg/5mg/10mg Tablet', 'Can I use Levomontin AX 75mg/5mg/10mg Tablet while breastfeeding?', 'No, Levomontin AX 75mg/5mg/10mg Tablet should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(1706, 'Levomontin AX 75mg/5mg/10mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin AX 75mg/5mg/10mg Tablet', 'Can I drink alcohol while taking Levomontin AX 75mg/5mg/10mg Tablet?', 'No, avoid drinking alcohol while taking Levomontin AX 75mg/5mg/10mg Tablet. Drinking alcohol will increase the risk of serious side effects caused by Levomontin AX 75mg/5mg/10mg Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1707, 'Levomontin AX 75mg/5mg/10mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin AX 75mg/5mg/10mg Tablet', 'What are the instructions for the storage and disposal of Levomontin AX 75mg/5mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1708, 'Levomontin FX 10mg/120mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin FX 10mg/120mg Tablet', 'What is Levomontin FX 10mg/120mg Tablet ?', 'Levomontin FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(1709, 'Levomontin FX 10mg/120mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin FX 10mg/120mg Tablet', 'Can Levomontin FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomontin FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Levomontin FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(1710, 'Levomontin FX 10mg/120mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin FX 10mg/120mg Tablet', 'Can the use of Levomontin FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Levomontin FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(1711, 'Levomontin FX 10mg/120mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin FX 10mg/120mg Tablet', 'What should be avoided in food while taking Levomontin FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levomontin FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Levomontin FX 10mg/120mg Tablet.'),
(1712, 'Levomontin FX 10mg/120mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin FX 10mg/120mg Tablet', 'Will Levomontin FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1713, 'Levomontin FX 10mg/120mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin FX 10mg/120mg Tablet', 'What is the recommended storage condition for Levomontin FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1714, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1715, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levomontin Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1716, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'How should Levomontin Kid 2.5mg/4mg Tablet be stored?', 'Levomontin Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1717, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'Can Levomontin Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levomontin Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1718, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomontin Kid 2.5mg/4mg Tablet?', 'No, don’t start Levomontin Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levomontin Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1719, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomontin Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1720, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levomontin Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levomontin Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1721, 'Levomontin Kid 2.5mg/4mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid 2.5mg/4mg Tablet', 'Can I use Levomontin Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levomontin Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1722, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1723, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'Can I decrease the dose of Levomontin Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1724, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'How should Levomontin Kid Tablet be stored?', 'Levomontin Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1725, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'Can Levomontin Kid Tablet make my child sleepy?', 'Levomontin Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1726, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomontin Kid Tablet?', 'No, don’t start Levomontin Kid Tablet without speaking to your child’s doctor. Moreover, Levomontin Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1727, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomontin Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1728, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levomontin Kid Tablet to my child?', 'Some studies show that Levomontin Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1729, 'Levomontin Kid Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Kid Tablet', 'Can I use Levomontin Kid Tablet for treating acute asthma attacks in my child?', 'Levomontin Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1730, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1731, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'Can I decrease the dose of Levomontin Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1732, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'How should Levomontin Syrup be stored?', 'Levomontin Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1733, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'Can Levomontin Syrup make my child sleepy?', 'Levomontin Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1734, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomontin Syrup?', 'No, don’t start Levomontin Syrup without speaking to your child’s doctor. Moreover, Levomontin Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1735, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomontin Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1736, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levomontin Syrup to my child?', 'Some studies show that Levomontin Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1737, 'Levomontin Syrup', 'Veecube Healthcare Pvt Ltd', 'Levomontin Syrup', 'Can I use Levomontin Syrup for treating acute asthma attacks in my child?', 'Levomontin Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1738, 'Levomontin Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Tablet', 'What is Levomontin Tablet?', 'Levomontin Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1739, 'Levomontin Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Tablet', 'Can the use of Levomontin Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomontin Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1740, 'Levomontin Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Tablet', 'Can Levomontin Tablet be stopped when allergy symptoms are relieved?', 'No, Levomontin Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1741, 'Levomontin Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Tablet', 'Can the use of Levomontin Tablet cause dry mouth?', 'Yes, the use of Levomontin Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1742, 'Levomontin Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Tablet', 'Can I drink alcohol while taking Levomontin Tablet?', 'No, do not take alcohol while taking Levomontin Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomontin Tablet.'),
(1743, 'Levomontin Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Tablet', 'Will Levomontin Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomontin Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1744, 'Levomontin Tablet', 'Veecube Healthcare Pvt Ltd', 'Levomontin Tablet', 'What are the instructions for storage and disposal of Levomontin Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1745, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1746, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'Can I decrease the dose of Levomont-LC 2.5mg/4mg Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1747, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'How should Levomont-LC 2.5mg/4mg Syrup be stored?', 'Levomont-LC 2.5mg/4mg Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1748, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'Can Levomont-LC 2.5mg/4mg Syrup make my child sleepy?', 'Levomont-LC 2.5mg/4mg Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1749, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomont-LC 2.5mg/4mg Syrup?', 'No, don’t start Levomont-LC 2.5mg/4mg Syrup without speaking to your child’s doctor. Moreover, Levomont-LC 2.5mg/4mg Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1750, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomont-LC 2.5mg/4mg Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1751, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levomont-LC 2.5mg/4mg Syrup to my child?', 'Some studies show that Levomont-LC 2.5mg/4mg Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1752, 'Levomont-LC 2.5mg/4mg Syrup', 'Scott Edil Pharmacia Ltd', 'Levomont-LC 2.5mg/4mg Syrup', 'Can I use Levomont-LC 2.5mg/4mg Syrup for treating acute asthma attacks in my child?', 'Levomont-LC 2.5mg/4mg Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1753, 'Levomont-LC Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-LC Tablet', 'What is Levomont-LC Tablet?', 'Levomont-LC Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1754, 'Levomont-LC Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-LC Tablet', 'Can the use of Levomont-LC Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomont-LC Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1755, 'Levomont-LC Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-LC Tablet', 'Can Levomont-LC Tablet be stopped when allergy symptoms are relieved?', 'No, Levomont-LC Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1756, 'Levomont-LC Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-LC Tablet', 'Can the use of Levomont-LC Tablet cause dry mouth?', 'Yes, the use of Levomont-LC Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1757, 'Levomont-LC Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-LC Tablet', 'Can I drink alcohol while taking Levomont-LC Tablet?', 'No, do not take alcohol while taking Levomont-LC Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomont-LC Tablet.'),
(1758, 'Levomont-LC Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-LC Tablet', 'Will Levomont-LC Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomont-LC Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1759, 'Levomont-LC Tablet', 'Scott Edil Pharmacia Ltd', 'Levomont-LC Tablet', 'What are the instructions for storage and disposal of Levomont-LC Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1760, 'Levomor 500mg Tablet', 'Moral Pharmaceuticals', 'Levomor 500mg Tablet', 'Q. Is Levomor 500mg Tablet safe?', 'Levomor 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1761, 'Levomor 500mg Tablet', 'Moral Pharmaceuticals', 'Levomor 500mg Tablet', 'Q. What if I forget to take a dose of Levomor 500mg Tablet?', 'If you forget a dose of Levomor 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1762, 'Levomor 500mg Tablet', 'Moral Pharmaceuticals', 'Levomor 500mg Tablet', 'Q. Can the use of Levomor 500mg Tablet cause diarrhea?', 'Yes, the use of Levomor 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1763, 'Levomor 500mg Tablet', 'Moral Pharmaceuticals', 'Levomor 500mg Tablet', 'Q. Can I stop taking Levomor 500mg Tablet when I feel better?', 'No, do not stop taking Levomor 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomor 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomor 500mg Tablet in the dose and duration advised by the doctor.'),
(1764, 'Levomor 500mg Tablet', 'Moral Pharmaceuticals', 'Levomor 500mg Tablet', 'Q. Can the use of Levomor 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomor 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomor 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1765, 'Levomor 750mg Tablet', 'Moral Pharmaceuticals', 'Levomor 750mg Tablet', 'Is Levomor 750mg Tablet safe?', 'Levomor 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1766, 'Levomor 750mg Tablet', 'Moral Pharmaceuticals', 'Levomor 750mg Tablet', 'What if I forget to take a dose of Levomor 750mg Tablet?', 'If you forget a dose of Levomor 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1767, 'Levomor 750mg Tablet', 'Moral Pharmaceuticals', 'Levomor 750mg Tablet', 'Can the use of Levomor 750mg Tablet cause diarrhea?', 'Yes, the use of Levomor 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1768, 'Levomor 750mg Tablet', 'Moral Pharmaceuticals', 'Levomor 750mg Tablet', 'Can I stop taking Levomor 750mg Tablet when I feel better?', 'No, do not stop taking Levomor 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomor 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levomor 750mg Tablet in the dose and duration advised by the doctor.'),
(1769, 'Levomor 750mg Tablet', 'Moral Pharmaceuticals', 'Levomor 750mg Tablet', 'Can the use of Levomor 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomor 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomor 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1770, 'Levomore 500mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Levomore 500mg Tablet', 'Is Levomore 500mg Tablet safe?', 'Levomore 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1771, 'Levomore 500mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Levomore 500mg Tablet', 'What if I forget to take a dose of Levomore 500mg Tablet?', 'If you forget a dose of Levomore 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1772, 'Levomore 500mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Levomore 500mg Tablet', 'Can the use of Levomore 500mg Tablet cause diarrhea?', 'Yes, the use of Levomore 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1773, 'Levomore 500mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Levomore 500mg Tablet', 'Can I stop taking Levomore 500mg Tablet when I feel better?', 'No, do not stop taking Levomore 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomore 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomore 500mg Tablet in the dose and duration advised by the doctor.'),
(1774, 'Levomore 500mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Levomore 500mg Tablet', 'Can the use of Levomore 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomore 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomore 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1775, 'Levomoto 500mg Tablet', 'Novalife Healthcare', 'Levomoto 500mg Tablet', 'Is Levomoto 500mg Tablet safe?', 'Levomoto 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1776, 'Levomoto 500mg Tablet', 'Novalife Healthcare', 'Levomoto 500mg Tablet', 'What if I forget to take a dose of Levomoto 500mg Tablet?', 'If you forget a dose of Levomoto 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1777, 'Levomoto 500mg Tablet', 'Novalife Healthcare', 'Levomoto 500mg Tablet', 'Can the use of Levomoto 500mg Tablet cause diarrhea?', 'Yes, the use of Levomoto 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1778, 'Levomoto 500mg Tablet', 'Novalife Healthcare', 'Levomoto 500mg Tablet', 'Can I stop taking Levomoto 500mg Tablet when I feel better?', 'No, do not stop taking Levomoto 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomoto 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomoto 500mg Tablet in the dose and duration advised by the doctor.'),
(1779, 'Levomoto 500mg Tablet', 'Novalife Healthcare', 'Levomoto 500mg Tablet', 'Can the use of Levomoto 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomoto 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomoto 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1780, 'Levomox 5 Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox 5 Tablet', 'Is Levomox 5 Tablet a steroid? What is it used for?', 'No, Levomox 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1781, 'Levomox 5 Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox 5 Tablet', 'Does Levomox 5 Tablet make you tired and drowsy?', 'Yes, Levomox 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1782, 'Levomox 5 Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox 5 Tablet', 'How long does it take for Levomox 5 Tablet to work?', 'Levomox 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1783, 'Levomox 5 Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox 5 Tablet', 'Can I take Levomox 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomox 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1784, 'Levomox 5 Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox 5 Tablet', 'Is it safe to take Levomox 5 Tablet for a long time?', 'Levomox 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomox 5 Tablet for only as long as you need it.'),
(1785, 'Levomox 5 Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox 5 Tablet', 'For how long should I continue Levomox 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomox 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomox 5 Tablet'),
(1786, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1787, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'Can I decrease the dose of Levomox-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1788, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'How should Levomox-M Syrup be stored?', 'Levomox-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1789, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'Can Levomox-M Syrup make my child sleepy?', 'Levomox-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1790, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomox-M Syrup?', 'No, don’t start Levomox-M Syrup without speaking to your child’s doctor. Moreover, Levomox-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1791, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomox-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1792, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levomox-M Syrup to my child?', 'Some studies show that Levomox-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1793, 'Levomox-M Syrup', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Syrup', 'Can I use Levomox-M Syrup for treating acute asthma attacks in my child?', 'Levomox-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1794, 'Levomox-M Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Tablet', 'What is Levomox-M Tablet?', 'Levomox-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1795, 'Levomox-M Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Tablet', 'Can the use of Levomox-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomox-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1796, 'Levomox-M Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Tablet', 'Can Levomox-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levomox-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1797, 'Levomox-M Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Tablet', 'Can the use of Levomox-M Tablet cause dry mouth?', 'Yes, the use of Levomox-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1798, 'Levomox-M Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Tablet', 'Can I drink alcohol while taking Levomox-M Tablet?', 'No, do not take alcohol while taking Levomox-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomox-M Tablet.'),
(1799, 'Levomox-M Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Tablet', 'Will Levomox-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomox-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1800, 'Levomox-M Tablet', 'Meltic Healthcare Pvt Ltd', 'Levomox-M Tablet', 'What are the instructions for storage and disposal of Levomox-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1801, 'Levomoz 250mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 250mg Tablet', 'Is Levomoz 250mg Tablet safe?', 'Levomoz 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1802, 'Levomoz 250mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 250mg Tablet', 'What if I forget to take a dose of Levomoz 250mg Tablet?', 'If you forget a dose of Levomoz 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1803, 'Levomoz 250mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 250mg Tablet', 'Can the use of Levomoz 250mg Tablet cause diarrhea?', 'Yes, the use of Levomoz 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1804, 'Levomoz 250mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 250mg Tablet', 'Can I stop taking Levomoz 250mg Tablet when I feel better?', 'No, do not stop taking Levomoz 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomoz 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levomoz 250mg Tablet in the dose and duration advised by the doctor.'),
(1805, 'Levomoz 250mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 250mg Tablet', 'Can the use of Levomoz 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomoz 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomoz 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1806, 'Levomoz 500mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 500mg Tablet', 'Is Levomoz 500mg Tablet safe?', 'Levomoz 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1807, 'Levomoz 500mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 500mg Tablet', 'What if I forget to take a dose of Levomoz 500mg Tablet?', 'If you forget a dose of Levomoz 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1808, 'Levomoz 500mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 500mg Tablet', 'Can the use of Levomoz 500mg Tablet cause diarrhea?', 'Yes, the use of Levomoz 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1809, 'Levomoz 500mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 500mg Tablet', 'Can I stop taking Levomoz 500mg Tablet when I feel better?', 'No, do not stop taking Levomoz 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomoz 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomoz 500mg Tablet in the dose and duration advised by the doctor.'),
(1810, 'Levomoz 500mg Tablet', 'Zamixo Pharmaceuticals', 'Levomoz 500mg Tablet', 'Can the use of Levomoz 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomoz 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomoz 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1811, 'Levomy 250mg Tablet', 'Icon Life Sciences', 'Levomy 250mg Tablet', 'Is Levomy 250mg Tablet safe?', 'Levomy 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1812, 'Levomy 250mg Tablet', 'Icon Life Sciences', 'Levomy 250mg Tablet', 'What if I forget to take a dose of Levomy 250mg Tablet?', 'If you forget a dose of Levomy 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1813, 'Levomy 250mg Tablet', 'Icon Life Sciences', 'Levomy 250mg Tablet', 'Can the use of Levomy 250mg Tablet cause diarrhea?', 'Yes, the use of Levomy 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1814, 'Levomy 250mg Tablet', 'Icon Life Sciences', 'Levomy 250mg Tablet', 'Can I stop taking Levomy 250mg Tablet when I feel better?', 'No, do not stop taking Levomy 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomy 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levomy 250mg Tablet in the dose and duration advised by the doctor.'),
(1815, 'Levomy 250mg Tablet', 'Icon Life Sciences', 'Levomy 250mg Tablet', 'Can the use of Levomy 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomy 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomy 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1816, 'Levomy 500mg Tablet', 'Icon Life Sciences', 'Levomy 500mg Tablet', 'Is Levomy 500mg Tablet safe?', 'Levomy 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1817, 'Levomy 500mg Tablet', 'Icon Life Sciences', 'Levomy 500mg Tablet', 'What if I forget to take a dose of Levomy 500mg Tablet?', 'If you forget a dose of Levomy 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1818, 'Levomy 500mg Tablet', 'Icon Life Sciences', 'Levomy 500mg Tablet', 'Can the use of Levomy 500mg Tablet cause diarrhea?', 'Yes, the use of Levomy 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1819, 'Levomy 500mg Tablet', 'Icon Life Sciences', 'Levomy 500mg Tablet', 'Can I stop taking Levomy 500mg Tablet when I feel better?', 'No, do not stop taking Levomy 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levomy 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levomy 500mg Tablet in the dose and duration advised by the doctor.'),
(1820, 'Levomy 500mg Tablet', 'Icon Life Sciences', 'Levomy 500mg Tablet', 'Can the use of Levomy 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levomy 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levomy 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1821, 'Levomyto 5mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto 5mg Tablet', 'Q. Is Levomyto 5mg Tablet a steroid? What is it used for?', 'No, Levomyto 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1822, 'Levomyto 5mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto 5mg Tablet', 'Q. Does Levomyto 5mg Tablet make you tired and drowsy?', 'Yes, Levomyto 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1823, 'Levomyto 5mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto 5mg Tablet', 'Q. How long does it take for Levomyto 5mg Tablet to work?', 'Levomyto 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1824, 'Levomyto 5mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto 5mg Tablet', 'Q. Can I take Levomyto 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levomyto 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1825, 'Levomyto 5mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto 5mg Tablet', 'Q. Is it safe to take Levomyto 5mg Tablet for a long time?', 'Levomyto 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levomyto 5mg Tablet for only as long as you need it.'),
(1826, 'Levomyto 5mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto 5mg Tablet', 'Q. For how long should I continue Levomyto 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levomyto 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levomyto 5mg Tablet'),
(1827, 'Levomyto M 5mg/10mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M 5mg/10mg Tablet', 'Q. What is Levomyto M 5mg/10mg Tablet?', 'Levomyto M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1828, 'Levomyto M 5mg/10mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M 5mg/10mg Tablet', 'Q. Can the use of Levomyto M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levomyto M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1829, 'Levomyto M 5mg/10mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M 5mg/10mg Tablet', 'Q. Can Levomyto M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levomyto M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1830, 'Levomyto M 5mg/10mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M 5mg/10mg Tablet', 'Q. Can the use of Levomyto M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levomyto M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1831, 'Levomyto M 5mg/10mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M 5mg/10mg Tablet', 'Q. Can I drink alcohol while taking Levomyto M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levomyto M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levomyto M 5mg/10mg Tablet.'),
(1832, 'Levomyto M 5mg/10mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M 5mg/10mg Tablet', 'Q. Will Levomyto M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levomyto M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1833, 'Levomyto M 5mg/10mg Tablet', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M 5mg/10mg Tablet', 'Q. What are the instructions for storage and disposal of Levomyto M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1834, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1835, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. Can I decrease the dose of Levomyto M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1836, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. How should Levomyto M Syrup be stored?', 'Levomyto M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1837, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. Can Levomyto M Syrup make my child sleepy?', 'Levomyto M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1838, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levomyto M Syrup?', 'No, don’t start Levomyto M Syrup without speaking to your child’s doctor. Moreover, Levomyto M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1839, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levomyto M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1840, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. My child is suffering from a mood disorder. Is it safe to give Levomyto M Syrup to my child?', 'Some studies show that Levomyto M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1841, 'Levomyto M Syrup', 'Preside Pharmaceutical Pvt Ltd', 'Levomyto M Syrup', 'Q. Can I use Levomyto M Syrup for treating acute asthma attacks in my child?', 'Levomyto M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1842, 'Levon 250mg Tablet', 'PLG Pharmaceutical', 'Levon 250mg Tablet (PLG Pharmaceutical)', 'Is Levon 250mg Tablet safe?', 'Levon 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1843, 'Levon 250mg Tablet', 'PLG Pharmaceutical', 'Levon 250mg Tablet (PLG Pharmaceutical)', 'What if I forget to take a dose of Levon 250mg Tablet?', 'If you forget a dose of Levon 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1844, 'Levon 250mg Tablet', 'PLG Pharmaceutical', 'Levon 250mg Tablet (PLG Pharmaceutical)', 'Can the use of Levon 250mg Tablet cause diarrhea?', 'Yes, the use of Levon 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1845, 'Levon 250mg Tablet', 'PLG Pharmaceutical', 'Levon 250mg Tablet (PLG Pharmaceutical)', 'Can I stop taking Levon 250mg Tablet when I feel better?', 'No, do not stop taking Levon 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levon 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levon 250mg Tablet in the dose and duration advised by the doctor.'),
(1846, 'Levon 250mg Tablet', 'PLG Pharmaceutical', 'Levon 250mg Tablet (PLG Pharmaceutical)', 'Can the use of Levon 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levon 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levon 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1847, 'Levon 250mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 250mg Tablet (Azine Healthcare Pvt Ltd)', 'Is Levon 250mg Tablet safe?', 'Levon 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1848, 'Levon 250mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 250mg Tablet (Azine Healthcare Pvt Ltd)', 'What if I forget to take a dose of Levon 250mg Tablet?', 'If you forget a dose of Levon 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1849, 'Levon 250mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 250mg Tablet (Azine Healthcare Pvt Ltd)', 'Can the use of Levon 250mg Tablet cause diarrhea?', 'Yes, the use of Levon 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1850, 'Levon 250mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 250mg Tablet (Azine Healthcare Pvt Ltd)', 'Can I stop taking Levon 250mg Tablet when I feel better?', 'No, do not stop taking Levon 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levon 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levon 250mg Tablet in the dose and duration advised by the doctor.'),
(1851, 'Levon 250mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 250mg Tablet (Azine Healthcare Pvt Ltd)', 'Can the use of Levon 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levon 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levon 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1852, 'Levon 500mg Tablet', 'Enzo Biopharma Ltd', 'Levon 500mg Tablet (Enzo Biopharma Ltd)', 'Is Levon 500mg Tablet safe?', 'Levon 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1853, 'Levon 500mg Tablet', 'Enzo Biopharma Ltd', 'Levon 500mg Tablet (Enzo Biopharma Ltd)', 'What if I forget to take a dose of Levon 500mg Tablet?', 'If you forget a dose of Levon 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1854, 'Levon 500mg Tablet', 'Enzo Biopharma Ltd', 'Levon 500mg Tablet (Enzo Biopharma Ltd)', 'Can the use of Levon 500mg Tablet cause diarrhea?', 'Yes, the use of Levon 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1855, 'Levon 500mg Tablet', 'Enzo Biopharma Ltd', 'Levon 500mg Tablet (Enzo Biopharma Ltd)', 'Can I stop taking Levon 500mg Tablet when I feel better?', 'No, do not stop taking Levon 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levon 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levon 500mg Tablet in the dose and duration advised by the doctor.'),
(1856, 'Levon 500mg Tablet', 'Enzo Biopharma Ltd', 'Levon 500mg Tablet (Enzo Biopharma Ltd)', 'Can the use of Levon 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levon 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levon 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1857, 'Levon 500mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 500mg Tablet (Azine Healthcare Pvt Ltd)', 'Is Levon 500mg Tablet safe?', 'Levon 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1858, 'Levon 500mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 500mg Tablet (Azine Healthcare Pvt Ltd)', 'What if I forget to take a dose of Levon 500mg Tablet?', 'If you forget a dose of Levon 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1859, 'Levon 500mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 500mg Tablet (Azine Healthcare Pvt Ltd)', 'Can the use of Levon 500mg Tablet cause diarrhea?', 'Yes, the use of Levon 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1860, 'Levon 500mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 500mg Tablet (Azine Healthcare Pvt Ltd)', 'Can I stop taking Levon 500mg Tablet when I feel better?', 'No, do not stop taking Levon 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levon 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levon 500mg Tablet in the dose and duration advised by the doctor.'),
(1861, 'Levon 500mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 500mg Tablet (Azine Healthcare Pvt Ltd)', 'Can the use of Levon 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levon 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levon 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1862, 'Levon 750mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 750mg Tablet', 'Q. Is Levon 750mg Tablet safe?', 'Levon 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1863, 'Levon 750mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 750mg Tablet', 'Q. What if I forget to take a dose of Levon 750mg Tablet?', 'If you forget a dose of Levon 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1864, 'Levon 750mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 750mg Tablet', 'Q. Can the use of Levon 750mg Tablet cause diarrhea?', 'Yes, the use of Levon 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1865, 'Levon 750mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 750mg Tablet', 'Q. Can I stop taking Levon 750mg Tablet when I feel better?', 'No, do not stop taking Levon 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levon 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levon 750mg Tablet in the dose and duration advised by the doctor.'),
(1866, 'Levon 750mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levon 750mg Tablet', 'Q. Can the use of Levon 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levon 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levon 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1867, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1868, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'Can I decrease the dose of Levon M Dry Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1869, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'How should Levon M Dry Syrup be stored?', 'Levon M Dry Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1870, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'Can Levon M Dry Syrup make my child sleepy?', 'Levon M Dry Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1871, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levon M Dry Syrup?', 'No, don’t start Levon M Dry Syrup without speaking to your child’s doctor. Moreover, Levon M Dry Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1872, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levon M Dry Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1873, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levon M Dry Syrup to my child?', 'Some studies show that Levon M Dry Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1874, 'Levon M Dry Syrup', 'Addom Pharmaceuticals', 'Levon M Dry Syrup', 'Can I use Levon M Dry Syrup for treating acute asthma attacks in my child?', 'Levon M Dry Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1875, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1876, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'Can I decrease the dose of Levon M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1877, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'How should Levon M Oral Suspension be stored?', 'Levon M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1878, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'Can Levon M Oral Suspension make my child sleepy?', 'Levon M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1879, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levon M Oral Suspension?', 'No, don’t start Levon M Oral Suspension without speaking to your child’s doctor. Moreover, Levon M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1880, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levon M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1881, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levon M Oral Suspension to my child?', 'Some studies show that Levon M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1882, 'Levon M Oral Suspension', 'AAA Pharma Trade Pvt Ltd', 'Levon M Oral Suspension', 'Can I use Levon M Oral Suspension for treating acute asthma attacks in my child?', 'Levon M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1883, 'Levona 500 Tablet', 'Scott Edil Pharmacia Ltd', 'Levona 500 Tablet', 'Q. Is Levona 500 Tablet safe?', 'Levona 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1884, 'Levona 500 Tablet', 'Scott Edil Pharmacia Ltd', 'Levona 500 Tablet', 'Q. What if I forget to take a dose of Levona 500 Tablet?', 'If you forget a dose of Levona 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1885, 'Levona 500 Tablet', 'Scott Edil Pharmacia Ltd', 'Levona 500 Tablet', 'Q. Can the use of Levona 500 Tablet cause diarrhea?', 'Yes, the use of Levona 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1886, 'Levona 500 Tablet', 'Scott Edil Pharmacia Ltd', 'Levona 500 Tablet', 'Q. Can I stop taking Levona 500 Tablet when I feel better?', 'No, do not stop taking Levona 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levona 500 Tablet too early, the symptoms may return or worsen. Continue taking Levona 500 Tablet in the dose and duration advised by the doctor.'),
(1887, 'Levona 500 Tablet', 'Scott Edil Pharmacia Ltd', 'Levona 500 Tablet', 'Q. Can the use of Levona 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levona 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levona 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1888, 'Levona 500mg Tablet', 'Global Care', 'Levona 500mg Tablet', 'Is Levona 500mg Tablet safe?', 'Levona 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1889, 'Levona 500mg Tablet', 'Global Care', 'Levona 500mg Tablet', 'What if I forget to take a dose of Levona 500mg Tablet?', 'If you forget a dose of Levona 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1890, 'Levona 500mg Tablet', 'Global Care', 'Levona 500mg Tablet', 'Can the use of Levona 500mg Tablet cause diarrhea?', 'Yes, the use of Levona 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1891, 'Levona 500mg Tablet', 'Global Care', 'Levona 500mg Tablet', 'Can I stop taking Levona 500mg Tablet when I feel better?', 'No, do not stop taking Levona 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levona 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levona 500mg Tablet in the dose and duration advised by the doctor.'),
(1892, 'Levona 500mg Tablet', 'Global Care', 'Levona 500mg Tablet', 'Can the use of Levona 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levona 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levona 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1893, 'Levonac 500mg Tablet', 'Nectar Remedies Ltd', 'Levonac 500mg Tablet', 'Is Levonac 500mg Tablet safe?', 'Levonac 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1894, 'Levonac 500mg Tablet', 'Nectar Remedies Ltd', 'Levonac 500mg Tablet', 'What if I forget to take a dose of Levonac 500mg Tablet?', 'If you forget a dose of Levonac 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1895, 'Levonac 500mg Tablet', 'Nectar Remedies Ltd', 'Levonac 500mg Tablet', 'Can the use of Levonac 500mg Tablet cause diarrhea?', 'Yes, the use of Levonac 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1896, 'Levonac 500mg Tablet', 'Nectar Remedies Ltd', 'Levonac 500mg Tablet', 'Can I stop taking Levonac 500mg Tablet when I feel better?', 'No, do not stop taking Levonac 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonac 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonac 500mg Tablet in the dose and duration advised by the doctor.'),
(1897, 'Levonac 500mg Tablet', 'Nectar Remedies Ltd', 'Levonac 500mg Tablet', 'Can the use of Levonac 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonac 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonac 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1898, 'Levonac 750mg Tablet', 'Nectar Remedies Ltd', 'Levonac 750mg Tablet', 'Is Levonac 750mg Tablet safe?', 'Levonac 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1899, 'Levonac 750mg Tablet', 'Nectar Remedies Ltd', 'Levonac 750mg Tablet', 'What if I forget to take a dose of Levonac 750mg Tablet?', 'If you forget a dose of Levonac 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1900, 'Levonac 750mg Tablet', 'Nectar Remedies Ltd', 'Levonac 750mg Tablet', 'Can the use of Levonac 750mg Tablet cause diarrhea?', 'Yes, the use of Levonac 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1901, 'Levonac 750mg Tablet', 'Nectar Remedies Ltd', 'Levonac 750mg Tablet', 'Can I stop taking Levonac 750mg Tablet when I feel better?', 'No, do not stop taking Levonac 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonac 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levonac 750mg Tablet in the dose and duration advised by the doctor.'),
(1902, 'Levonac 750mg Tablet', 'Nectar Remedies Ltd', 'Levonac 750mg Tablet', 'Can the use of Levonac 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonac 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonac 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1903, 'Levonair 5mg/10mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levonair 5mg/10mg Tablet', 'What is Levonair 5mg/10mg Tablet?', 'Levonair 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1904, 'Levonair 5mg/10mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levonair 5mg/10mg Tablet', 'Can the use of Levonair 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonair 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1905, 'Levonair 5mg/10mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levonair 5mg/10mg Tablet', 'Can Levonair 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonair 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1906, 'Levonair 5mg/10mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levonair 5mg/10mg Tablet', 'Can the use of Levonair 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonair 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1907, 'Levonair 5mg/10mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levonair 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonair 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonair 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonair 5mg/10mg Tablet.'),
(1908, 'Levonair 5mg/10mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levonair 5mg/10mg Tablet', 'Will Levonair 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonair 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1909, 'Levonair 5mg/10mg Tablet', 'Entod Pharmaceuticals Ltd', 'Levonair 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonair 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1910, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1911, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. Can I decrease the dose of Levonair Kid 2.5mg/4mg Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1912, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. How should Levonair Kid 2.5mg/4mg Tablet DT be stored?', 'Levonair Kid 2.5mg/4mg Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1913, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. Can Levonair Kid 2.5mg/4mg Tablet DT make my child sleepy?', 'Levonair Kid 2.5mg/4mg Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1914, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levonair Kid 2.5mg/4mg Tablet DT?', 'No, don’t start Levonair Kid 2.5mg/4mg Tablet DT without speaking to your child’s doctor. Moreover, Levonair Kid 2.5mg/4mg Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1915, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levonair Kid 2.5mg/4mg Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1916, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. My child is suffering from a mood disorder. Is it safe to give Levonair Kid 2.5mg/4mg Tablet DT to my child?', 'Some studies show that Levonair Kid 2.5mg/4mg Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1917, 'Levonair Kid 2.5mg/4mg Tablet DT', 'Entod Pharmaceuticals Ltd', 'Levonair Kid 2.5mg/4mg Tablet DT', 'Q. Can I use Levonair Kid 2.5mg/4mg Tablet DT for treating acute asthma attacks in my child?', 'Levonair Kid 2.5mg/4mg Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1918, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(1919, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'Can I decrease the dose of Levonair Kid Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(1920, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'How should Levonair Kid Oral Suspension be stored?', 'Levonair Kid Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(1921, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'Can Levonair Kid Oral Suspension make my child sleepy?', 'Levonair Kid Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(1922, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levonair Kid Oral Suspension?', 'No, don’t start Levonair Kid Oral Suspension without speaking to your child’s doctor. Moreover, Levonair Kid Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(1923, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levonair Kid Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(1924, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levonair Kid Oral Suspension to my child?', 'Some studies show that Levonair Kid Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(1925, 'Levonair Kid Oral Suspension', 'Entod Pharmaceuticals Ltd', 'Levonair Kid Oral Suspension', 'Can I use Levonair Kid Oral Suspension for treating acute asthma attacks in my child?', 'Levonair Kid Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(1926, 'Levonak 500mg Tablet', 'Peenak Pharma', 'Levonak 500mg Tablet', 'Is Levonak 500mg Tablet safe?', 'Levonak 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1927, 'Levonak 500mg Tablet', 'Peenak Pharma', 'Levonak 500mg Tablet', 'What if I forget to take a dose of Levonak 500mg Tablet?', 'If you forget a dose of Levonak 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1928, 'Levonak 500mg Tablet', 'Peenak Pharma', 'Levonak 500mg Tablet', 'Can the use of Levonak 500mg Tablet cause diarrhea?', 'Yes, the use of Levonak 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1929, 'Levonak 500mg Tablet', 'Peenak Pharma', 'Levonak 500mg Tablet', 'Can I stop taking Levonak 500mg Tablet when I feel better?', 'No, do not stop taking Levonak 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonak 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonak 500mg Tablet in the dose and duration advised by the doctor.'),
(1930, 'Levonak 500mg Tablet', 'Peenak Pharma', 'Levonak 500mg Tablet', 'Can the use of Levonak 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonak 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonak 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1931, 'Levonak 5mg Tablet', 'Peenak Pharma', 'Levonak 5mg Tablet', 'Is Levonak 5mg Tablet a steroid? What is it used for?', 'No, Levonak 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1932, 'Levonak 5mg Tablet', 'Peenak Pharma', 'Levonak 5mg Tablet', 'Does Levonak 5mg Tablet make you tired and drowsy?', 'Yes, Levonak 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1933, 'Levonak 5mg Tablet', 'Peenak Pharma', 'Levonak 5mg Tablet', 'How long does it take for Levonak 5mg Tablet to work?', 'Levonak 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1934, 'Levonak 5mg Tablet', 'Peenak Pharma', 'Levonak 5mg Tablet', 'Can I take Levonak 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonak 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1935, 'Levonak 5mg Tablet', 'Peenak Pharma', 'Levonak 5mg Tablet', 'Is it safe to take Levonak 5mg Tablet for a long time?', 'Levonak 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonak 5mg Tablet for only as long as you need it.'),
(1936, 'Levonak 5mg Tablet', 'Peenak Pharma', 'Levonak 5mg Tablet', 'For how long should I continue Levonak 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonak 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonak 5mg Tablet');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(1937, 'Levonal 1.25mg/500mcg Respules', 'Slash Lifevision', 'Levonal 1.25mg/500mcg Respules', 'Are there any medicines which I should avoid while taking Levonal 1.25mg/500mcg Respules?', 'It is not recommended to use Levonal 1.25mg/500mcg Respules along with other medicines, such as anticholinergic, beta-adrenergic agents, beta-blockers, diuretics, digoxin, MAO inhibitors or anti-depressants.'),
(1938, 'Levonal 1.25mg/500mcg Respules', 'Slash Lifevision', 'Levonal 1.25mg/500mcg Respules', 'Will Levonal 1.25mg/500mcg Respules be more effective if taken in higher doses?', 'No, taking a higher than the recommended dose of this medicine will not make it more effective, rather can lead to increased side effects. If the symptoms do not get relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(1939, 'Levonal 1.25mg/500mcg Respules', 'Slash Lifevision', 'Levonal 1.25mg/500mcg Respules', 'Can the use of Levonal 1.25mg/500mcg Respules cause sleepiness or drowsiness?', 'Yes, Levonal 1.25mg/500mcg Respules may make you feel drowsy or sleepy. Avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(1940, 'Levonal 1.25mg/500mcg Respules', 'Slash Lifevision', 'Levonal 1.25mg/500mcg Respules', 'Can the use of Levonal 1.25mg/500mcg Respules cause dry mouth?', 'Yes, the use of Levonal 1.25mg/500mcg Respules can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(1941, 'Levonal 1.25mg/500mcg Respules', 'Slash Lifevision', 'Levonal 1.25mg/500mcg Respules', 'What are the instructions for storage and disposal of Levonal 1.25mg/500mcg Respules?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(1942, 'Levonast Tablet', 'Chandra Bhagat Pharma Pvt Ltd', 'Levonast Tablet', 'What is Levonast Tablet?', 'Levonast Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1943, 'Levonast Tablet', 'Chandra Bhagat Pharma Pvt Ltd', 'Levonast Tablet', 'Can the use of Levonast Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonast Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1944, 'Levonast Tablet', 'Chandra Bhagat Pharma Pvt Ltd', 'Levonast Tablet', 'Can Levonast Tablet be stopped when allergy symptoms are relieved?', 'No, Levonast Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1945, 'Levonast Tablet', 'Chandra Bhagat Pharma Pvt Ltd', 'Levonast Tablet', 'Can the use of Levonast Tablet cause dry mouth?', 'Yes, the use of Levonast Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1946, 'Levonast Tablet', 'Chandra Bhagat Pharma Pvt Ltd', 'Levonast Tablet', 'Can I drink alcohol while taking Levonast Tablet?', 'No, do not take alcohol while taking Levonast Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonast Tablet.'),
(1947, 'Levonast Tablet', 'Chandra Bhagat Pharma Pvt Ltd', 'Levonast Tablet', 'Will Levonast Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonast Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1948, 'Levonast Tablet', 'Chandra Bhagat Pharma Pvt Ltd', 'Levonast Tablet', 'What are the instructions for storage and disposal of Levonast Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1949, 'Levonat OZ 500mg/500mg Tablet', 'Nature Biotech', 'Levonat OZ 500mg/500mg Tablet', 'What if I don\'t get better after using Levonat OZ 500mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1950, 'Levonat OZ 500mg/500mg Tablet', 'Nature Biotech', 'Levonat OZ 500mg/500mg Tablet', 'Can I stop taking Levonat OZ 500mg/500mg Tablet when I feel better?', 'No, do not stop taking Levonat OZ 500mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(1951, 'Levonat OZ 500mg/500mg Tablet', 'Nature Biotech', 'Levonat OZ 500mg/500mg Tablet', 'What if I miss my dose?', 'Take Levonat OZ 500mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1952, 'Levonate 250 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Levonate 250 Tablet', 'Is Levonate 250 Tablet safe?', 'Levonate 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1953, 'Levonate 250 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Levonate 250 Tablet', 'What if I forget to take a dose of Levonate 250 Tablet?', 'If you forget a dose of Levonate 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1954, 'Levonate 250 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Levonate 250 Tablet', 'Can the use of Levonate 250 Tablet cause diarrhea?', 'Yes, the use of Levonate 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1955, 'Levonate 250 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Levonate 250 Tablet', 'Can I stop taking Levonate 250 Tablet when I feel better?', 'No, do not stop taking Levonate 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonate 250 Tablet too early, the symptoms may return or worsen. Continue taking Levonate 250 Tablet in the dose and duration advised by the doctor.'),
(1956, 'Levonate 250 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Levonate 250 Tablet', 'Can the use of Levonate 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levonate 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonate 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1957, 'Levonav 5mg Tablet', 'Rayrise Healthcare', 'Levonav 5mg Tablet', 'Is Levonav 5mg Tablet a steroid? What is it used for?', 'No, Levonav 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1958, 'Levonav 5mg Tablet', 'Rayrise Healthcare', 'Levonav 5mg Tablet', 'Does Levonav 5mg Tablet make you tired and drowsy?', 'Yes, Levonav 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1959, 'Levonav 5mg Tablet', 'Rayrise Healthcare', 'Levonav 5mg Tablet', 'How long does it take for Levonav 5mg Tablet to work?', 'Levonav 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1960, 'Levonav 5mg Tablet', 'Rayrise Healthcare', 'Levonav 5mg Tablet', 'Can I take Levonav 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonav 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1961, 'Levonav 5mg Tablet', 'Rayrise Healthcare', 'Levonav 5mg Tablet', 'Is it safe to take Levonav 5mg Tablet for a long time?', 'Levonav 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonav 5mg Tablet for only as long as you need it.'),
(1962, 'Levonav 5mg Tablet', 'Rayrise Healthcare', 'Levonav 5mg Tablet', 'For how long should I continue Levonav 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonav 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonav 5mg Tablet'),
(1963, 'Levonav-M Tablet', 'Rayrise Healthcare', 'Levonav-M Tablet', 'What is Levonav-M Tablet?', 'Levonav-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(1964, 'Levonav-M Tablet', 'Rayrise Healthcare', 'Levonav-M Tablet', 'Can the use of Levonav-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonav-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(1965, 'Levonav-M Tablet', 'Rayrise Healthcare', 'Levonav-M Tablet', 'Can Levonav-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levonav-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(1966, 'Levonav-M Tablet', 'Rayrise Healthcare', 'Levonav-M Tablet', 'Can the use of Levonav-M Tablet cause dry mouth?', 'Yes, the use of Levonav-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(1967, 'Levonav-M Tablet', 'Rayrise Healthcare', 'Levonav-M Tablet', 'Can I drink alcohol while taking Levonav-M Tablet?', 'No, do not take alcohol while taking Levonav-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonav-M Tablet.'),
(1968, 'Levonav-M Tablet', 'Rayrise Healthcare', 'Levonav-M Tablet', 'Will Levonav-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonav-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(1969, 'Levonav-M Tablet', 'Rayrise Healthcare', 'Levonav-M Tablet', 'What are the instructions for storage and disposal of Levonav-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(1970, 'Levon-AZ Tablet', 'Positive Medicare Pvt Ltd', 'Levon-AZ Tablet', 'What if I don\'t get better after using Levon-AZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(1971, 'Levon-AZ Tablet', 'Positive Medicare Pvt Ltd', 'Levon-AZ Tablet', 'What if I miss my dose?', 'Take Levon-AZ Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(1972, 'Levone 5mg Tablet', 'Neolina Pharmaceuticals', 'Levone 5mg Tablet', 'Is Levone 5mg Tablet a steroid? What is it used for?', 'No, Levone 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1973, 'Levone 5mg Tablet', 'Neolina Pharmaceuticals', 'Levone 5mg Tablet', 'Does Levone 5mg Tablet make you tired and drowsy?', 'Yes, Levone 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1974, 'Levone 5mg Tablet', 'Neolina Pharmaceuticals', 'Levone 5mg Tablet', 'How long does it take for Levone 5mg Tablet to work?', 'Levone 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1975, 'Levone 5mg Tablet', 'Neolina Pharmaceuticals', 'Levone 5mg Tablet', 'Can I take Levone 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levone 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1976, 'Levone 5mg Tablet', 'Neolina Pharmaceuticals', 'Levone 5mg Tablet', 'Is it safe to take Levone 5mg Tablet for a long time?', 'Levone 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levone 5mg Tablet for only as long as you need it.'),
(1977, 'Levone 5mg Tablet', 'Neolina Pharmaceuticals', 'Levone 5mg Tablet', 'For how long should I continue Levone 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levone 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levone 5mg Tablet'),
(1978, 'Levonec 500 Tablet', 'Nectar Pharma', 'Levonec 500 Tablet', 'Is Levonec 500 Tablet safe?', 'Levonec 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1979, 'Levonec 500 Tablet', 'Nectar Pharma', 'Levonec 500 Tablet', 'What if I forget to take a dose of Levonec 500 Tablet?', 'If you forget a dose of Levonec 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1980, 'Levonec 500 Tablet', 'Nectar Pharma', 'Levonec 500 Tablet', 'Can the use of Levonec 500 Tablet cause diarrhea?', 'Yes, the use of Levonec 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1981, 'Levonec 500 Tablet', 'Nectar Pharma', 'Levonec 500 Tablet', 'Can I stop taking Levonec 500 Tablet when I feel better?', 'No, do not stop taking Levonec 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonec 500 Tablet too early, the symptoms may return or worsen. Continue taking Levonec 500 Tablet in the dose and duration advised by the doctor.'),
(1982, 'Levonec 500 Tablet', 'Nectar Pharma', 'Levonec 500 Tablet', 'Can the use of Levonec 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levonec 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonec 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1983, 'Levonec 500mg Tablet', 'Nectar Pharma', 'Levonec 500mg Tablet', 'Q. Is Levonec 500mg Tablet safe?', 'Levonec 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1984, 'Levonec 500mg Tablet', 'Nectar Pharma', 'Levonec 500mg Tablet', 'Q. What if I forget to take a dose of Levonec 500mg Tablet?', 'If you forget a dose of Levonec 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1985, 'Levonec 500mg Tablet', 'Nectar Pharma', 'Levonec 500mg Tablet', 'Q. Can the use of Levonec 500mg Tablet cause diarrhea?', 'Yes, the use of Levonec 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1986, 'Levonec 500mg Tablet', 'Nectar Pharma', 'Levonec 500mg Tablet', 'Q. Can I stop taking Levonec 500mg Tablet when I feel better?', 'No, do not stop taking Levonec 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonec 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonec 500mg Tablet in the dose and duration advised by the doctor.'),
(1987, 'Levonec 500mg Tablet', 'Nectar Pharma', 'Levonec 500mg Tablet', 'Q. Can the use of Levonec 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonec 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonec 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1988, 'Levonec 5mg Tablet', 'Dysnec Pharma', 'Levonec 5mg Tablet', 'Is Levonec 5mg Tablet a steroid? What is it used for?', 'No, Levonec 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(1989, 'Levonec 5mg Tablet', 'Dysnec Pharma', 'Levonec 5mg Tablet', 'Does Levonec 5mg Tablet make you tired and drowsy?', 'Yes, Levonec 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(1990, 'Levonec 5mg Tablet', 'Dysnec Pharma', 'Levonec 5mg Tablet', 'How long does it take for Levonec 5mg Tablet to work?', 'Levonec 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(1991, 'Levonec 5mg Tablet', 'Dysnec Pharma', 'Levonec 5mg Tablet', 'Can I take Levonec 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonec 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(1992, 'Levonec 5mg Tablet', 'Dysnec Pharma', 'Levonec 5mg Tablet', 'Is it safe to take Levonec 5mg Tablet for a long time?', 'Levonec 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonec 5mg Tablet for only as long as you need it.'),
(1993, 'Levonec 5mg Tablet', 'Dysnec Pharma', 'Levonec 5mg Tablet', 'For how long should I continue Levonec 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonec 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonec 5mg Tablet'),
(1994, 'Levonec 750 Tablet', 'Nectar Pharma', 'Levonec 750 Tablet', 'Is Levonec 750 Tablet safe?', 'Levonec 750 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(1995, 'Levonec 750 Tablet', 'Nectar Pharma', 'Levonec 750 Tablet', 'What if I forget to take a dose of Levonec 750 Tablet?', 'If you forget a dose of Levonec 750 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(1996, 'Levonec 750 Tablet', 'Nectar Pharma', 'Levonec 750 Tablet', 'Can the use of Levonec 750 Tablet cause diarrhea?', 'Yes, the use of Levonec 750 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(1997, 'Levonec 750 Tablet', 'Nectar Pharma', 'Levonec 750 Tablet', 'Can I stop taking Levonec 750 Tablet when I feel better?', 'No, do not stop taking Levonec 750 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonec 750 Tablet too early, the symptoms may return or worsen. Continue taking Levonec 750 Tablet in the dose and duration advised by the doctor.'),
(1998, 'Levonec 750 Tablet', 'Nectar Pharma', 'Levonec 750 Tablet', 'Can the use of Levonec 750 Tablet increase the risk of muscle damage?', 'Yes, the use of Levonec 750 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonec 750 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(1999, 'Levonec M 5mg/10mg Tablet', 'Dysnec Pharma', 'Levonec M 5mg/10mg Tablet', 'What is Levonec M 5mg/10mg Tablet?', 'Levonec M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2000, 'Levonec M 5mg/10mg Tablet', 'Dysnec Pharma', 'Levonec M 5mg/10mg Tablet', 'Can the use of Levonec M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonec M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2001, 'Levonec M 5mg/10mg Tablet', 'Dysnec Pharma', 'Levonec M 5mg/10mg Tablet', 'Can Levonec M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonec M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2002, 'Levonec M 5mg/10mg Tablet', 'Dysnec Pharma', 'Levonec M 5mg/10mg Tablet', 'Can the use of Levonec M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonec M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2003, 'Levonec M 5mg/10mg Tablet', 'Dysnec Pharma', 'Levonec M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonec M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonec M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonec M 5mg/10mg Tablet.'),
(2004, 'Levonec M 5mg/10mg Tablet', 'Dysnec Pharma', 'Levonec M 5mg/10mg Tablet', 'Will Levonec M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonec M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2005, 'Levonec M 5mg/10mg Tablet', 'Dysnec Pharma', 'Levonec M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonec M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2006, 'Levonee 5mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee 5mg Tablet', 'Is Levonee 5mg Tablet a steroid? What is it used for?', 'No, Levonee 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2007, 'Levonee 5mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee 5mg Tablet', 'Does Levonee 5mg Tablet make you tired and drowsy?', 'Yes, Levonee 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2008, 'Levonee 5mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee 5mg Tablet', 'How long does it take for Levonee 5mg Tablet to work?', 'Levonee 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2009, 'Levonee 5mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee 5mg Tablet', 'Can I take Levonee 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonee 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2010, 'Levonee 5mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee 5mg Tablet', 'Is it safe to take Levonee 5mg Tablet for a long time?', 'Levonee 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonee 5mg Tablet for only as long as you need it.'),
(2011, 'Levonee 5mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee 5mg Tablet', 'For how long should I continue Levonee 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonee 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonee 5mg Tablet'),
(2012, 'Levonee M 5mg/10mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee M 5mg/10mg Tablet', 'What is Levonee M 5mg/10mg Tablet?', 'Levonee M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2013, 'Levonee M 5mg/10mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee M 5mg/10mg Tablet', 'Can the use of Levonee M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonee M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2014, 'Levonee M 5mg/10mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee M 5mg/10mg Tablet', 'Can Levonee M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonee M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2015, 'Levonee M 5mg/10mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee M 5mg/10mg Tablet', 'Can the use of Levonee M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonee M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2016, 'Levonee M 5mg/10mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonee M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonee M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonee M 5mg/10mg Tablet.'),
(2017, 'Levonee M 5mg/10mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee M 5mg/10mg Tablet', 'Will Levonee M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonee M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2018, 'Levonee M 5mg/10mg Tablet', 'Amista Labs Pvt Ltd', 'Levonee M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonee M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2019, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2020, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'Can I decrease the dose of Levonee M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2021, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'How should Levonee M Syrup be stored?', 'Levonee M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2022, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'Can Levonee M Syrup make my child sleepy?', 'Levonee M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2023, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levonee M Syrup?', 'No, don’t start Levonee M Syrup without speaking to your child’s doctor. Moreover, Levonee M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2024, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levonee M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2025, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levonee M Syrup to my child?', 'Some studies show that Levonee M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2026, 'Levonee M Syrup', 'Amista Labs Pvt Ltd', 'Levonee M Syrup', 'Can I use Levonee M Syrup for treating acute asthma attacks in my child?', 'Levonee M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2027, 'Levonem 250mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 250mg Tablet', 'Is Levonem 250mg Tablet safe?', 'Levonem 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2028, 'Levonem 250mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 250mg Tablet', 'What if I forget to take a dose of Levonem 250mg Tablet?', 'If you forget a dose of Levonem 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2029, 'Levonem 250mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 250mg Tablet', 'Can the use of Levonem 250mg Tablet cause diarrhea?', 'Yes, the use of Levonem 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2030, 'Levonem 250mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 250mg Tablet', 'Can I stop taking Levonem 250mg Tablet when I feel better?', 'No, do not stop taking Levonem 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonem 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonem 250mg Tablet in the dose and duration advised by the doctor.'),
(2031, 'Levonem 250mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 250mg Tablet', 'Can the use of Levonem 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonem 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonem 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2032, 'Levonem 500mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 500mg Tablet', 'Is Levonem 500mg Tablet safe?', 'Levonem 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2033, 'Levonem 500mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 500mg Tablet', 'What if I forget to take a dose of Levonem 500mg Tablet?', 'If you forget a dose of Levonem 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2034, 'Levonem 500mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 500mg Tablet', 'Can the use of Levonem 500mg Tablet cause diarrhea?', 'Yes, the use of Levonem 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2035, 'Levonem 500mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 500mg Tablet', 'Can I stop taking Levonem 500mg Tablet when I feel better?', 'No, do not stop taking Levonem 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonem 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonem 500mg Tablet in the dose and duration advised by the doctor.'),
(2036, 'Levonem 500mg Tablet', 'Nemi Pharmaceuticles', 'Levonem 500mg Tablet', 'Can the use of Levonem 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonem 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonem 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2037, 'Levonem OR Oral Suspension', 'Nemi Pharmaceuticles', 'Levonem OR Oral Suspension', 'What if I don\'t get better after using Levonem OR Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2038, 'Levonem OR Oral Suspension', 'Nemi Pharmaceuticles', 'Levonem OR Oral Suspension', 'Can I stop taking Levonem OR Oral Suspension when I feel better?', 'No, do not stop taking Levonem OR Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2039, 'Levonem OR Oral Suspension', 'Nemi Pharmaceuticles', 'Levonem OR Oral Suspension', 'What if I miss my dose?', 'Take Levonem OR Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2040, 'Levonen Tablet', 'Nenshi Health Care', 'Levonen Tablet', 'Is Levonen Tablet safe?', 'Levonen Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2041, 'Levonen Tablet', 'Nenshi Health Care', 'Levonen Tablet', 'What if I forget to take a dose of Levonen Tablet?', 'If you forget a dose of Levonen Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2042, 'Levonen Tablet', 'Nenshi Health Care', 'Levonen Tablet', 'Can the use of Levonen Tablet cause diarrhea?', 'Yes, the use of Levonen Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2043, 'Levonen Tablet', 'Nenshi Health Care', 'Levonen Tablet', 'Can I stop taking Levonen Tablet when I feel better?', 'No, do not stop taking Levonen Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonen Tablet too early, the symptoms may return or worsen. Continue taking Levonen Tablet in the dose and duration advised by the doctor.'),
(2044, 'Levonen Tablet', 'Nenshi Health Care', 'Levonen Tablet', 'Can the use of Levonen Tablet increase the risk of muscle damage?', 'Yes, the use of Levonen Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonen Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2045, 'Levones 500mg Tablet', 'Nestor Pharmaceuticals', 'Levones 500mg Tablet', 'Is Levones 500mg Tablet safe?', 'Levones 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2046, 'Levones 500mg Tablet', 'Nestor Pharmaceuticals', 'Levones 500mg Tablet', 'What if I forget to take a dose of Levones 500mg Tablet?', 'If you forget a dose of Levones 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2047, 'Levones 500mg Tablet', 'Nestor Pharmaceuticals', 'Levones 500mg Tablet', 'Can the use of Levones 500mg Tablet cause diarrhea?', 'Yes, the use of Levones 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2048, 'Levones 500mg Tablet', 'Nestor Pharmaceuticals', 'Levones 500mg Tablet', 'Can I stop taking Levones 500mg Tablet when I feel better?', 'No, do not stop taking Levones 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levones 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levones 500mg Tablet in the dose and duration advised by the doctor.'),
(2049, 'Levones 500mg Tablet', 'Nestor Pharmaceuticals', 'Levones 500mg Tablet', 'Can the use of Levones 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levones 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levones 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2050, 'Levonet 500 Tablet', 'Bioworld Pharma', 'Levonet 500 Tablet', 'Is Levonet 500 Tablet safe?', 'Levonet 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2051, 'Levonet 500 Tablet', 'Bioworld Pharma', 'Levonet 500 Tablet', 'What if I forget to take a dose of Levonet 500 Tablet?', 'If you forget a dose of Levonet 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2052, 'Levonet 500 Tablet', 'Bioworld Pharma', 'Levonet 500 Tablet', 'Can the use of Levonet 500 Tablet cause diarrhea?', 'Yes, the use of Levonet 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2053, 'Levonet 500 Tablet', 'Bioworld Pharma', 'Levonet 500 Tablet', 'Can I stop taking Levonet 500 Tablet when I feel better?', 'No, do not stop taking Levonet 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonet 500 Tablet too early, the symptoms may return or worsen. Continue taking Levonet 500 Tablet in the dose and duration advised by the doctor.'),
(2054, 'Levonet 500 Tablet', 'Bioworld Pharma', 'Levonet 500 Tablet', 'Can the use of Levonet 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levonet 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonet 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2055, 'Levonet 5mg Tablet', 'Protech Telelinks', 'Levonet 5mg Tablet', 'Is Levonet 5mg Tablet a steroid? What is it used for?', 'No, Levonet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2056, 'Levonet 5mg Tablet', 'Protech Telelinks', 'Levonet 5mg Tablet', 'Does Levonet 5mg Tablet make you tired and drowsy?', 'Yes, Levonet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2057, 'Levonet 5mg Tablet', 'Protech Telelinks', 'Levonet 5mg Tablet', 'How long does it take for Levonet 5mg Tablet to work?', 'Levonet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2058, 'Levonet 5mg Tablet', 'Protech Telelinks', 'Levonet 5mg Tablet', 'Can I take Levonet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2059, 'Levonet 5mg Tablet', 'Protech Telelinks', 'Levonet 5mg Tablet', 'Is it safe to take Levonet 5mg Tablet for a long time?', 'Levonet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonet 5mg Tablet for only as long as you need it.'),
(2060, 'Levonet 5mg Tablet', 'Protech Telelinks', 'Levonet 5mg Tablet', 'For how long should I continue Levonet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonet 5mg Tablet'),
(2061, 'Levonet M 5mg/10mg Tablet', 'Protech Telelinks', 'Levonet M 5mg/10mg Tablet', 'What is Levonet M 5mg/10mg Tablet?', 'Levonet M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2062, 'Levonet M 5mg/10mg Tablet', 'Protech Telelinks', 'Levonet M 5mg/10mg Tablet', 'Can the use of Levonet M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonet M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2063, 'Levonet M 5mg/10mg Tablet', 'Protech Telelinks', 'Levonet M 5mg/10mg Tablet', 'Can Levonet M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonet M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2064, 'Levonet M 5mg/10mg Tablet', 'Protech Telelinks', 'Levonet M 5mg/10mg Tablet', 'Can the use of Levonet M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonet M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2065, 'Levonet M 5mg/10mg Tablet', 'Protech Telelinks', 'Levonet M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonet M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonet M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonet M 5mg/10mg Tablet.'),
(2066, 'Levonet M 5mg/10mg Tablet', 'Protech Telelinks', 'Levonet M 5mg/10mg Tablet', 'Will Levonet M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonet M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2067, 'Levonet M 5mg/10mg Tablet', 'Protech Telelinks', 'Levonet M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonet M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2068, 'Levoneta 250 Tablet', 'Aneta Pharmaceuticals Pvt. Ltd', 'Levoneta 250 Tablet', 'Is Levoneta 250 Tablet safe?', 'Levoneta 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2069, 'Levoneta 250 Tablet', 'Aneta Pharmaceuticals Pvt. Ltd', 'Levoneta 250 Tablet', 'What if I forget to take a dose of Levoneta 250 Tablet?', 'If you forget a dose of Levoneta 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2070, 'Levoneta 250 Tablet', 'Aneta Pharmaceuticals Pvt. Ltd', 'Levoneta 250 Tablet', 'Can the use of Levoneta 250 Tablet cause diarrhea?', 'Yes, the use of Levoneta 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2071, 'Levoneta 250 Tablet', 'Aneta Pharmaceuticals Pvt. Ltd', 'Levoneta 250 Tablet', 'Can I stop taking Levoneta 250 Tablet when I feel better?', 'No, do not stop taking Levoneta 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoneta 250 Tablet too early, the symptoms may return or worsen. Continue taking Levoneta 250 Tablet in the dose and duration advised by the doctor.'),
(2072, 'Levoneta 250 Tablet', 'Aneta Pharmaceuticals Pvt. Ltd', 'Levoneta 250 Tablet', 'Can the use of Levoneta 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoneta 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoneta 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2073, 'Levonett 500mg Tablet', 'GeoNettle Pharma Pvt Ltd', 'Levonett 500mg Tablet', 'Is Levonett 500mg Tablet safe?', 'Levonett 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2074, 'Levonett 500mg Tablet', 'GeoNettle Pharma Pvt Ltd', 'Levonett 500mg Tablet', 'What if I forget to take a dose of Levonett 500mg Tablet?', 'If you forget a dose of Levonett 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2075, 'Levonett 500mg Tablet', 'GeoNettle Pharma Pvt Ltd', 'Levonett 500mg Tablet', 'Can the use of Levonett 500mg Tablet cause diarrhea?', 'Yes, the use of Levonett 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2076, 'Levonett 500mg Tablet', 'GeoNettle Pharma Pvt Ltd', 'Levonett 500mg Tablet', 'Can I stop taking Levonett 500mg Tablet when I feel better?', 'No, do not stop taking Levonett 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonett 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonett 500mg Tablet in the dose and duration advised by the doctor.'),
(2077, 'Levonett 500mg Tablet', 'GeoNettle Pharma Pvt Ltd', 'Levonett 500mg Tablet', 'Can the use of Levonett 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonett 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonett 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2078, 'Levonew 250mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew 250mg Tablet', 'Is Levonew 250mg Tablet safe?', 'Levonew 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2079, 'Levonew 250mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew 250mg Tablet', 'What if I forget to take a dose of Levonew 250mg Tablet?', 'If you forget a dose of Levonew 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2080, 'Levonew 250mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew 250mg Tablet', 'Can the use of Levonew 250mg Tablet cause diarrhea?', 'Yes, the use of Levonew 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2081, 'Levonew 250mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew 250mg Tablet', 'Can I stop taking Levonew 250mg Tablet when I feel better?', 'No, do not stop taking Levonew 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonew 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonew 250mg Tablet in the dose and duration advised by the doctor.'),
(2082, 'Levonew 250mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew 250mg Tablet', 'Can the use of Levonew 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonew 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonew 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2083, 'Levonew OZ 250mg/500mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levonew OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2084, 'Levonew OZ 250mg/500mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew OZ 250mg/500mg Tablet', 'Can I stop taking Levonew OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levonew OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2085, 'Levonew OZ 250mg/500mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Levonew OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levonew OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2086, 'Levonex 250mg Tablet', 'Nexus India', 'Levonex 250mg Tablet', 'Is Levonex 250mg Tablet safe?', 'Levonex 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2087, 'Levonex 250mg Tablet', 'Nexus India', 'Levonex 250mg Tablet', 'What if I forget to take a dose of Levonex 250mg Tablet?', 'If you forget a dose of Levonex 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2088, 'Levonex 250mg Tablet', 'Nexus India', 'Levonex 250mg Tablet', 'Can the use of Levonex 250mg Tablet cause diarrhea?', 'Yes, the use of Levonex 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2089, 'Levonex 250mg Tablet', 'Nexus India', 'Levonex 250mg Tablet', 'Can I stop taking Levonex 250mg Tablet when I feel better?', 'No, do not stop taking Levonex 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonex 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonex 250mg Tablet in the dose and duration advised by the doctor.'),
(2090, 'Levonex 250mg Tablet', 'Nexus India', 'Levonex 250mg Tablet', 'Can the use of Levonex 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonex 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonex 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2091, 'Levonex 500mg Tablet', 'Nexus India', 'Levonex 500mg Tablet (Nexus India)', 'Is Levonex 500mg Tablet safe?', 'Levonex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2092, 'Levonex 500mg Tablet', 'Nexus India', 'Levonex 500mg Tablet (Nexus India)', 'What if I forget to take a dose of Levonex 500mg Tablet?', 'If you forget a dose of Levonex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2093, 'Levonex 500mg Tablet', 'Nexus India', 'Levonex 500mg Tablet (Nexus India)', 'Can the use of Levonex 500mg Tablet cause diarrhea?', 'Yes, the use of Levonex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2094, 'Levonex 500mg Tablet', 'Nexus India', 'Levonex 500mg Tablet (Nexus India)', 'Can I stop taking Levonex 500mg Tablet when I feel better?', 'No, do not stop taking Levonex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonex 500mg Tablet in the dose and duration advised by the doctor.'),
(2095, 'Levonex 500mg Tablet', 'Nexus India', 'Levonex 500mg Tablet (Nexus India)', 'Can the use of Levonex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2096, 'Levonex 500mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levonex 500mg Tablet (Nexkem Pharmaceuticals Pvt Ltd)', 'Is Levonex 500mg Tablet safe?', 'Levonex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2097, 'Levonex 500mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levonex 500mg Tablet (Nexkem Pharmaceuticals Pvt Ltd)', 'What if I forget to take a dose of Levonex 500mg Tablet?', 'If you forget a dose of Levonex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2098, 'Levonex 500mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levonex 500mg Tablet (Nexkem Pharmaceuticals Pvt Ltd)', 'Can the use of Levonex 500mg Tablet cause diarrhea?', 'Yes, the use of Levonex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2099, 'Levonex 500mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levonex 500mg Tablet (Nexkem Pharmaceuticals Pvt Ltd)', 'Can I stop taking Levonex 500mg Tablet when I feel better?', 'No, do not stop taking Levonex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonex 500mg Tablet in the dose and duration advised by the doctor.'),
(2100, 'Levonex 500mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levonex 500mg Tablet (Nexkem Pharmaceuticals Pvt Ltd)', 'Can the use of Levonex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2101, 'Levonez 500mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 500mg Tablet', 'Is Levonez 500mg Tablet safe?', 'Levonez 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2102, 'Levonez 500mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 500mg Tablet', 'What if I forget to take a dose of Levonez 500mg Tablet?', 'If you forget a dose of Levonez 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2103, 'Levonez 500mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 500mg Tablet', 'Can the use of Levonez 500mg Tablet cause diarrhea?', 'Yes, the use of Levonez 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2104, 'Levonez 500mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 500mg Tablet', 'Can I stop taking Levonez 500mg Tablet when I feel better?', 'No, do not stop taking Levonez 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonez 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonez 500mg Tablet in the dose and duration advised by the doctor.'),
(2105, 'Levonez 500mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 500mg Tablet', 'Can the use of Levonez 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonez 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonez 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2106, 'Levonez 750mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 750mg Tablet', 'Is Levonez 750mg Tablet safe?', 'Levonez 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2107, 'Levonez 750mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 750mg Tablet', 'What if I forget to take a dose of Levonez 750mg Tablet?', 'If you forget a dose of Levonez 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2108, 'Levonez 750mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 750mg Tablet', 'Can the use of Levonez 750mg Tablet cause diarrhea?', 'Yes, the use of Levonez 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2109, 'Levonez 750mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 750mg Tablet', 'Can I stop taking Levonez 750mg Tablet when I feel better?', 'No, do not stop taking Levonez 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonez 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levonez 750mg Tablet in the dose and duration advised by the doctor.'),
(2110, 'Levonez 750mg Tablet', 'Wintech Pharmaceuticals', 'Levonez 750mg Tablet', 'Can the use of Levonez 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonez 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonez 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2111, 'Levoni 250mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 250mg Tablet', 'Is Levoni 250mg Tablet safe?', 'Levoni 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2112, 'Levoni 250mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 250mg Tablet', 'What if I forget to take a dose of Levoni 250mg Tablet?', 'If you forget a dose of Levoni 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2113, 'Levoni 250mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 250mg Tablet', 'Can the use of Levoni 250mg Tablet cause diarrhea?', 'Yes, the use of Levoni 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2114, 'Levoni 250mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 250mg Tablet', 'Can I stop taking Levoni 250mg Tablet when I feel better?', 'No, do not stop taking Levoni 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoni 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoni 250mg Tablet in the dose and duration advised by the doctor.'),
(2115, 'Levoni 250mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 250mg Tablet', 'Can the use of Levoni 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoni 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoni 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2116, 'Levoni 500mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 500mg Tablet', 'Is Levoni 500mg Tablet safe?', 'Levoni 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2117, 'Levoni 500mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 500mg Tablet', 'What if I forget to take a dose of Levoni 500mg Tablet?', 'If you forget a dose of Levoni 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2118, 'Levoni 500mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 500mg Tablet', 'Can the use of Levoni 500mg Tablet cause diarrhea?', 'Yes, the use of Levoni 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2119, 'Levoni 500mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 500mg Tablet', 'Can I stop taking Levoni 500mg Tablet when I feel better?', 'No, do not stop taking Levoni 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoni 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoni 500mg Tablet in the dose and duration advised by the doctor.'),
(2120, 'Levoni 500mg Tablet', 'Tesni Pharmaceuticals', 'Levoni 500mg Tablet', 'Can the use of Levoni 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoni 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoni 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2121, 'Levonic-OZ Tablet', 'Bionics Remedies', 'Levonic-OZ Tablet', 'What if I don\'t get better after using Levonic-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2122, 'Levonic-OZ Tablet', 'Bionics Remedies', 'Levonic-OZ Tablet', 'Can I stop taking Levonic-OZ Tablet when I feel better?', 'No, do not stop taking Levonic-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2123, 'Levonic-OZ Tablet', 'Bionics Remedies', 'Levonic-OZ Tablet', 'What if I miss my dose?', 'Take Levonic-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2124, 'Levonid 500mg Tablet', 'Medil Healthcare', 'Levonid 500mg Tablet (Medil Healthcare)', 'Is Levonid 500mg Tablet safe?', 'Levonid 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2125, 'Levonid 500mg Tablet', 'Medil Healthcare', 'Levonid 500mg Tablet (Medil Healthcare)', 'What if I forget to take a dose of Levonid 500mg Tablet?', 'If you forget a dose of Levonid 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2126, 'Levonid 500mg Tablet', 'Medil Healthcare', 'Levonid 500mg Tablet (Medil Healthcare)', 'Can the use of Levonid 500mg Tablet cause diarrhea?', 'Yes, the use of Levonid 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2127, 'Levonid 500mg Tablet', 'Medil Healthcare', 'Levonid 500mg Tablet (Medil Healthcare)', 'Can I stop taking Levonid 500mg Tablet when I feel better?', 'No, do not stop taking Levonid 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonid 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonid 500mg Tablet in the dose and duration advised by the doctor.'),
(2128, 'Levonid 500mg Tablet', 'Medil Healthcare', 'Levonid 500mg Tablet (Medil Healthcare)', 'Can the use of Levonid 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonid 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonid 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2129, 'Levonid 500mg Tablet', 'Nidhi Pharmaceutical', 'Levonid 500mg Tablet (Nidhi Pharmaceutical)', 'Is Levonid 500mg Tablet safe?', 'Levonid 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2130, 'Levonid 500mg Tablet', 'Nidhi Pharmaceutical', 'Levonid 500mg Tablet (Nidhi Pharmaceutical)', 'What if I forget to take a dose of Levonid 500mg Tablet?', 'If you forget a dose of Levonid 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2131, 'Levonid 500mg Tablet', 'Nidhi Pharmaceutical', 'Levonid 500mg Tablet (Nidhi Pharmaceutical)', 'Can the use of Levonid 500mg Tablet cause diarrhea?', 'Yes, the use of Levonid 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2132, 'Levonid 500mg Tablet', 'Nidhi Pharmaceutical', 'Levonid 500mg Tablet (Nidhi Pharmaceutical)', 'Can I stop taking Levonid 500mg Tablet when I feel better?', 'No, do not stop taking Levonid 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonid 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonid 500mg Tablet in the dose and duration advised by the doctor.'),
(2133, 'Levonid 500mg Tablet', 'Nidhi Pharmaceutical', 'Levonid 500mg Tablet (Nidhi Pharmaceutical)', 'Can the use of Levonid 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonid 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonid 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2134, 'Levonift 5mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift 5mg Tablet', 'Is Levonift 5mg Tablet a steroid? What is it used for?', 'No, Levonift 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2135, 'Levonift 5mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift 5mg Tablet', 'Does Levonift 5mg Tablet make you tired and drowsy?', 'Yes, Levonift 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2136, 'Levonift 5mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift 5mg Tablet', 'How long does it take for Levonift 5mg Tablet to work?', 'Levonift 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2137, 'Levonift 5mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift 5mg Tablet', 'Can I take Levonift 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonift 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2138, 'Levonift 5mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift 5mg Tablet', 'Is it safe to take Levonift 5mg Tablet for a long time?', 'Levonift 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonift 5mg Tablet for only as long as you need it.'),
(2139, 'Levonift 5mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift 5mg Tablet', 'For how long should I continue Levonift 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonift 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonift 5mg Tablet'),
(2140, 'Levonift M 5mg/10mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift M 5mg/10mg Tablet', 'What is Levonift M 5mg/10mg Tablet?', 'Levonift M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2141, 'Levonift M 5mg/10mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift M 5mg/10mg Tablet', 'Can the use of Levonift M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonift M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2142, 'Levonift M 5mg/10mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift M 5mg/10mg Tablet', 'Can Levonift M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonift M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2143, 'Levonift M 5mg/10mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift M 5mg/10mg Tablet', 'Can the use of Levonift M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonift M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2144, 'Levonift M 5mg/10mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonift M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonift M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonift M 5mg/10mg Tablet.'),
(2145, 'Levonift M 5mg/10mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift M 5mg/10mg Tablet', 'Will Levonift M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonift M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2146, 'Levonift M 5mg/10mg Tablet', 'Curavax Pharmaceuticals Private Limited', 'Levonift M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonift M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2147, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2148, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'Can I decrease the dose of Levonift M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2149, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'How should Levonift M Syrup be stored?', 'Levonift M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2150, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'Can Levonift M Syrup make my child sleepy?', 'Levonift M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2151, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levonift M Syrup?', 'No, don’t start Levonift M Syrup without speaking to your child’s doctor. Moreover, Levonift M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2152, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levonift M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2153, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levonift M Syrup to my child?', 'Some studies show that Levonift M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2154, 'Levonift M Syrup', 'Curavax Pharmaceuticals Private Limited', 'Levonift M Syrup', 'Can I use Levonift M Syrup for treating acute asthma attacks in my child?', 'Levonift M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2155, 'Levonij 250mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 250mg Tablet', 'Is Levonij 250mg Tablet safe?', 'Levonij 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2156, 'Levonij 250mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 250mg Tablet', 'What if I forget to take a dose of Levonij 250mg Tablet?', 'If you forget a dose of Levonij 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2157, 'Levonij 250mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 250mg Tablet', 'Can the use of Levonij 250mg Tablet cause diarrhea?', 'Yes, the use of Levonij 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2158, 'Levonij 250mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 250mg Tablet', 'Can I stop taking Levonij 250mg Tablet when I feel better?', 'No, do not stop taking Levonij 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonij 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonij 250mg Tablet in the dose and duration advised by the doctor.'),
(2159, 'Levonij 250mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 250mg Tablet', 'Can the use of Levonij 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonij 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonij 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2160, 'Levonij 500mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 500mg Tablet', 'Is Levonij 500mg Tablet safe?', 'Levonij 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2161, 'Levonij 500mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 500mg Tablet', 'What if I forget to take a dose of Levonij 500mg Tablet?', 'If you forget a dose of Levonij 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2162, 'Levonij 500mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 500mg Tablet', 'Can the use of Levonij 500mg Tablet cause diarrhea?', 'Yes, the use of Levonij 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2163, 'Levonij 500mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 500mg Tablet', 'Can I stop taking Levonij 500mg Tablet when I feel better?', 'No, do not stop taking Levonij 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonij 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonij 500mg Tablet in the dose and duration advised by the doctor.'),
(2164, 'Levonij 500mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 500mg Tablet', 'Can the use of Levonij 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonij 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonij 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2165, 'Levonij 750mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 750mg Tablet', 'Is Levonij 750mg Tablet safe?', 'Levonij 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2166, 'Levonij 750mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 750mg Tablet', 'What if I forget to take a dose of Levonij 750mg Tablet?', 'If you forget a dose of Levonij 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2167, 'Levonij 750mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 750mg Tablet', 'Can the use of Levonij 750mg Tablet cause diarrhea?', 'Yes, the use of Levonij 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2168, 'Levonij 750mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 750mg Tablet', 'Can I stop taking Levonij 750mg Tablet when I feel better?', 'No, do not stop taking Levonij 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonij 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levonij 750mg Tablet in the dose and duration advised by the doctor.'),
(2169, 'Levonij 750mg Tablet', 'Sunij Pharma Pvt Ltd', 'Levonij 750mg Tablet', 'Can the use of Levonij 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonij 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonij 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2170, 'Levonika Infusion', 'Tara Biosciences Private Limited', 'Levonika Infusion', 'Is Levonika Infusion safe?', 'Levonika Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2171, 'Levonika Infusion', 'Tara Biosciences Private Limited', 'Levonika Infusion', 'Can the use of Levonika Infusion cause diarrhea?', 'Yes, the use of Levonika Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2172, 'Levonika Infusion', 'Tara Biosciences Private Limited', 'Levonika Infusion', 'Can the use of Levonika Infusion increase the risk of muscle damage?', 'Yes, the use of Levonika Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonika Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2173, 'Levonika Infusion', 'Tara Biosciences Private Limited', 'Levonika Infusion', 'How is Levonika Infusion administered?', 'Levonika Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levonika Infusion.'),
(2174, 'Levonika Infusion', 'Tara Biosciences Private Limited', 'Levonika Infusion', 'Is Levonika Infusion effective?', 'Levonika Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levonika Infusion too early, the symptoms may return or worsen.'),
(2175, 'Levonil 250mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 250mg Tablet', 'Is Levonil 250mg Tablet safe?', 'Levonil 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2176, 'Levonil 250mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 250mg Tablet', 'What if I forget to take a dose of Levonil 250mg Tablet?', 'If you forget a dose of Levonil 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2177, 'Levonil 250mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 250mg Tablet', 'Can the use of Levonil 250mg Tablet cause diarrhea?', 'Yes, the use of Levonil 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2178, 'Levonil 250mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 250mg Tablet', 'Can I stop taking Levonil 250mg Tablet when I feel better?', 'No, do not stop taking Levonil 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonil 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonil 250mg Tablet in the dose and duration advised by the doctor.'),
(2179, 'Levonil 250mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 250mg Tablet', 'Can the use of Levonil 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonil 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonil 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2180, 'Levonil 500mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 500mg Tablet', 'Is Levonil 500mg Tablet safe?', 'Levonil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2181, 'Levonil 500mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 500mg Tablet', 'What if I forget to take a dose of Levonil 500mg Tablet?', 'If you forget a dose of Levonil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2182, 'Levonil 500mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 500mg Tablet', 'Can the use of Levonil 500mg Tablet cause diarrhea?', 'Yes, the use of Levonil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2183, 'Levonil 500mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 500mg Tablet', 'Can I stop taking Levonil 500mg Tablet when I feel better?', 'No, do not stop taking Levonil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonil 500mg Tablet in the dose and duration advised by the doctor.'),
(2184, 'Levonil 500mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levonil 500mg Tablet', 'Can the use of Levonil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2185, 'Levonin 500mg Infusion', 'Premedium Pharmaceuticals Pvt Ltd', 'Levonin 500mg Infusion', 'Is Levonin 500mg Infusion safe?', 'Levonin 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2186, 'Levonin 500mg Infusion', 'Premedium Pharmaceuticals Pvt Ltd', 'Levonin 500mg Infusion', 'Can the use of Levonin 500mg Infusion cause diarrhea?', 'Yes, the use of Levonin 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2187, 'Levonin 500mg Infusion', 'Premedium Pharmaceuticals Pvt Ltd', 'Levonin 500mg Infusion', 'Can the use of Levonin 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levonin 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonin 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2188, 'Levonin 500mg Infusion', 'Premedium Pharmaceuticals Pvt Ltd', 'Levonin 500mg Infusion', 'How is Levonin 500mg Infusion administered?', 'Levonin 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levonin 500mg Infusion.'),
(2189, 'Levonin 500mg Infusion', 'Premedium Pharmaceuticals Pvt Ltd', 'Levonin 500mg Infusion', 'Is Levonin 500mg Infusion effective?', 'Levonin 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levonin 500mg Infusion too early, the symptoms may return or worsen.'),
(2190, 'Levonir 500mg Infusion', 'Aishwarya Healthcare', 'Levonir 500mg Infusion', 'Is Levonir 500mg Infusion safe?', 'Levonir 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2191, 'Levonir 500mg Infusion', 'Aishwarya Healthcare', 'Levonir 500mg Infusion', 'Can the use of Levonir 500mg Infusion cause diarrhea?', 'Yes, the use of Levonir 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2192, 'Levonir 500mg Infusion', 'Aishwarya Healthcare', 'Levonir 500mg Infusion', 'Can the use of Levonir 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levonir 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonir 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2193, 'Levonir 500mg Infusion', 'Aishwarya Healthcare', 'Levonir 500mg Infusion', 'How is Levonir 500mg Infusion administered?', 'Levonir 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levonir 500mg Infusion.'),
(2194, 'Levonir 500mg Infusion', 'Aishwarya Healthcare', 'Levonir 500mg Infusion', 'Is Levonir 500mg Infusion effective?', 'Levonir 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levonir 500mg Infusion too early, the symptoms may return or worsen.'),
(2195, 'Levonist 500mg Tablet', 'Venistro Biotech', 'Levonist 500mg Tablet', 'Is Levonist 500mg Tablet safe?', 'Levonist 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2196, 'Levonist 500mg Tablet', 'Venistro Biotech', 'Levonist 500mg Tablet', 'What if I forget to take a dose of Levonist 500mg Tablet?', 'If you forget a dose of Levonist 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2197, 'Levonist 500mg Tablet', 'Venistro Biotech', 'Levonist 500mg Tablet', 'Can the use of Levonist 500mg Tablet cause diarrhea?', 'Yes, the use of Levonist 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2198, 'Levonist 500mg Tablet', 'Venistro Biotech', 'Levonist 500mg Tablet', 'Can I stop taking Levonist 500mg Tablet when I feel better?', 'No, do not stop taking Levonist 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonist 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonist 500mg Tablet in the dose and duration advised by the doctor.'),
(2199, 'Levonist 500mg Tablet', 'Venistro Biotech', 'Levonist 500mg Tablet', 'Can the use of Levonist 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonist 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonist 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2200, 'Levonitrin 5mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levonitrin 5mg Tablet', 'Is Levonitrin 5mg Tablet a steroid? What is it used for?', 'No, Levonitrin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2201, 'Levonitrin 5mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levonitrin 5mg Tablet', 'Does Levonitrin 5mg Tablet make you tired and drowsy?', 'Yes, Levonitrin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2202, 'Levonitrin 5mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levonitrin 5mg Tablet', 'How long does it take for Levonitrin 5mg Tablet to work?', 'Levonitrin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2203, 'Levonitrin 5mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levonitrin 5mg Tablet', 'Can I take Levonitrin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonitrin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2204, 'Levonitrin 5mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levonitrin 5mg Tablet', 'Is it safe to take Levonitrin 5mg Tablet for a long time?', 'Levonitrin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonitrin 5mg Tablet for only as long as you need it.'),
(2205, 'Levonitrin 5mg Tablet', 'Maneesh Pharmaceuticals Ltd', 'Levonitrin 5mg Tablet', 'For how long should I continue Levonitrin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonitrin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonitrin 5mg Tablet'),
(2206, 'Levonity 250mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 250mg Tablet', 'Is Levonity 250mg Tablet safe?', 'Levonity 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2207, 'Levonity 250mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 250mg Tablet', 'What if I forget to take a dose of Levonity 250mg Tablet?', 'If you forget a dose of Levonity 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2208, 'Levonity 250mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 250mg Tablet', 'Can the use of Levonity 250mg Tablet cause diarrhea?', 'Yes, the use of Levonity 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2209, 'Levonity 250mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 250mg Tablet', 'Can I stop taking Levonity 250mg Tablet when I feel better?', 'No, do not stop taking Levonity 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonity 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonity 250mg Tablet in the dose and duration advised by the doctor.'),
(2210, 'Levonity 250mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 250mg Tablet', 'Can the use of Levonity 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonity 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonity 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2211, 'Levonity 500mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 500mg Tablet', 'Is Levonity 500mg Tablet safe?', 'Levonity 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2212, 'Levonity 500mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 500mg Tablet', 'What if I forget to take a dose of Levonity 500mg Tablet?', 'If you forget a dose of Levonity 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2213, 'Levonity 500mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 500mg Tablet', 'Can the use of Levonity 500mg Tablet cause diarrhea?', 'Yes, the use of Levonity 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2214, 'Levonity 500mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 500mg Tablet', 'Can I stop taking Levonity 500mg Tablet when I feel better?', 'No, do not stop taking Levonity 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonity 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonity 500mg Tablet in the dose and duration advised by the doctor.'),
(2215, 'Levonity 500mg Tablet', 'Medifinity Healthcare Private Limited', 'Levonity 500mg Tablet', 'Can the use of Levonity 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonity 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonity 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2216, 'Levonix 250mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 250mg Tablet', 'Is Levonix 250mg Tablet safe?', 'Levonix 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2217, 'Levonix 250mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 250mg Tablet', 'What if I forget to take a dose of Levonix 250mg Tablet?', 'If you forget a dose of Levonix 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2218, 'Levonix 250mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 250mg Tablet', 'Can the use of Levonix 250mg Tablet cause diarrhea?', 'Yes, the use of Levonix 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2219, 'Levonix 250mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 250mg Tablet', 'Can I stop taking Levonix 250mg Tablet when I feel better?', 'No, do not stop taking Levonix 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonix 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonix 250mg Tablet in the dose and duration advised by the doctor.'),
(2220, 'Levonix 250mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 250mg Tablet', 'Can the use of Levonix 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonix 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonix 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2221, 'Levonix 500mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 500mg Tablet', 'Is Levonix 500mg Tablet safe?', 'Levonix 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2222, 'Levonix 500mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 500mg Tablet', 'What if I forget to take a dose of Levonix 500mg Tablet?', 'If you forget a dose of Levonix 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2223, 'Levonix 500mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 500mg Tablet', 'Can the use of Levonix 500mg Tablet cause diarrhea?', 'Yes, the use of Levonix 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2224, 'Levonix 500mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 500mg Tablet', 'Can I stop taking Levonix 500mg Tablet when I feel better?', 'No, do not stop taking Levonix 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonix 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonix 500mg Tablet in the dose and duration advised by the doctor.'),
(2225, 'Levonix 500mg Tablet', 'Alpha Nova Pharmaceuticals', 'Levonix 500mg Tablet', 'Can the use of Levonix 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonix 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonix 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2226, 'Levonob 5 Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob 5 Tablet', 'Q. Is Levonob 5 Tablet a steroid? What is it used for?', 'No, Levonob 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2227, 'Levonob 5 Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob 5 Tablet', 'Q. Does Levonob 5 Tablet make you tired and drowsy?', 'Yes, Levonob 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2228, 'Levonob 5 Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob 5 Tablet', 'Q. How long does it take for Levonob 5 Tablet to work?', 'Levonob 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2229, 'Levonob 5 Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob 5 Tablet', 'Q. Can I take Levonob 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonob 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2230, 'Levonob 5 Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob 5 Tablet', 'Q. Is it safe to take Levonob 5 Tablet for a long time?', 'Levonob 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonob 5 Tablet for only as long as you need it.'),
(2231, 'Levonob 5 Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob 5 Tablet', 'Q. For how long should I continue Levonob 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonob 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonob 5 Tablet'),
(2232, 'Levonob-M Syrup', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Syrup', 'What is Levonob-M Syrup?', 'Levonob-M Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2233, 'Levonob-M Syrup', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Syrup', 'Can the use of Levonob-M Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonob-M Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2234, 'Levonob-M Syrup', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Syrup', 'Can Levonob-M Syrup be stopped when allergy symptoms are relieved?', 'No, Levonob-M Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2235, 'Levonob-M Syrup', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Syrup', 'Can the use of Levonob-M Syrup cause dry mouth?', 'Yes, the use of Levonob-M Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2236, 'Levonob-M Syrup', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Syrup', 'Can I drink alcohol while taking Levonob-M Syrup?', 'No, do not take alcohol while taking Levonob-M Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonob-M Syrup.'),
(2237, 'Levonob-M Syrup', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Syrup', 'Will Levonob-M Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonob-M Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2238, 'Levonob-M Syrup', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Syrup', 'What are the instructions for storage and disposal of Levonob-M Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2239, 'Levonob-M Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Tablet', 'What is Levonob-M Tablet?', 'Levonob-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2240, 'Levonob-M Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Tablet', 'Can the use of Levonob-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonob-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2241, 'Levonob-M Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Tablet', 'Can Levonob-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levonob-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2242, 'Levonob-M Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Tablet', 'Can the use of Levonob-M Tablet cause dry mouth?', 'Yes, the use of Levonob-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2243, 'Levonob-M Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Tablet', 'Can I drink alcohol while taking Levonob-M Tablet?', 'No, do not take alcohol while taking Levonob-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonob-M Tablet.'),
(2244, 'Levonob-M Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Tablet', 'Will Levonob-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonob-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2245, 'Levonob-M Tablet', 'Noble Bio Life Sciences Pvt Ltd', 'Levonob-M Tablet', 'What are the instructions for storage and disposal of Levonob-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2246, 'Levonoid 500 Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid 500 Tablet', 'Is Levonoid 500 Tablet safe?', 'Levonoid 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2247, 'Levonoid 500 Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid 500 Tablet', 'What if I forget to take a dose of Levonoid 500 Tablet?', 'If you forget a dose of Levonoid 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2248, 'Levonoid 500 Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid 500 Tablet', 'Can the use of Levonoid 500 Tablet cause diarrhea?', 'Yes, the use of Levonoid 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2249, 'Levonoid 500 Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid 500 Tablet', 'Can I stop taking Levonoid 500 Tablet when I feel better?', 'No, do not stop taking Levonoid 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonoid 500 Tablet too early, the symptoms may return or worsen. Continue taking Levonoid 500 Tablet in the dose and duration advised by the doctor.'),
(2250, 'Levonoid 500 Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid 500 Tablet', 'Can the use of Levonoid 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levonoid 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonoid 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2251, 'Levonoid-OZ Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid-OZ Tablet', 'What if I don\'t get better after using Levonoid-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2252, 'Levonoid-OZ Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid-OZ Tablet', 'Can I stop taking Levonoid-OZ Tablet when I feel better?', 'No, do not stop taking Levonoid-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2253, 'Levonoid-OZ Tablet', 'Uniark Healthcare Pvt Ltd', 'Levonoid-OZ Tablet', 'What if I miss my dose?', 'Take Levonoid-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2254, 'Levonol IT Respules', 'Knoll Healthcare Pvt Ltd', 'Levonol IT Respules', 'Are there any medicines which I should avoid while taking Levonol IT Respules?', 'It is not recommended to use Levonol IT Respules along with other medicines, such as anticholinergic, beta-adrenergic agents, beta-blockers, diuretics, digoxin, MAO inhibitors or anti-depressants.'),
(2255, 'Levonol IT Respules', 'Knoll Healthcare Pvt Ltd', 'Levonol IT Respules', 'Will Levonol IT Respules be more effective if taken in higher doses?', 'No, taking a higher than the recommended dose of this medicine will not make it more effective, rather can lead to increased side effects. If the symptoms do not get relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(2256, 'Levonol IT Respules', 'Knoll Healthcare Pvt Ltd', 'Levonol IT Respules', 'Can the use of Levonol IT Respules cause sleepiness or drowsiness?', 'Yes, Levonol IT Respules may make you feel drowsy or sleepy. Avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(2257, 'Levonol IT Respules', 'Knoll Healthcare Pvt Ltd', 'Levonol IT Respules', 'Can the use of Levonol IT Respules cause dry mouth?', 'Yes, the use of Levonol IT Respules can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(2258, 'Levonol IT Respules', 'Knoll Healthcare Pvt Ltd', 'Levonol IT Respules', 'What are the instructions for storage and disposal of Levonol IT Respules?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(2259, 'Levonoor M 5mg/10mg Tablet', 'Noor Pharmaceuticals', 'Levonoor M 5mg/10mg Tablet', 'What is Levonoor M 5mg/10mg Tablet?', 'Levonoor M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2260, 'Levonoor M 5mg/10mg Tablet', 'Noor Pharmaceuticals', 'Levonoor M 5mg/10mg Tablet', 'Can the use of Levonoor M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonoor M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2261, 'Levonoor M 5mg/10mg Tablet', 'Noor Pharmaceuticals', 'Levonoor M 5mg/10mg Tablet', 'Can Levonoor M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonoor M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2262, 'Levonoor M 5mg/10mg Tablet', 'Noor Pharmaceuticals', 'Levonoor M 5mg/10mg Tablet', 'Can the use of Levonoor M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonoor M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2263, 'Levonoor M 5mg/10mg Tablet', 'Noor Pharmaceuticals', 'Levonoor M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonoor M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonoor M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonoor M 5mg/10mg Tablet.'),
(2264, 'Levonoor M 5mg/10mg Tablet', 'Noor Pharmaceuticals', 'Levonoor M 5mg/10mg Tablet', 'Will Levonoor M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonoor M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2265, 'Levonoor M 5mg/10mg Tablet', 'Noor Pharmaceuticals', 'Levonoor M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonoor M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2266, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2267, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'Can I decrease the dose of Levonoor M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2268, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'How should Levonoor M Syrup be stored?', 'Levonoor M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2269, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'Can Levonoor M Syrup make my child sleepy?', 'Levonoor M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2270, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levonoor M Syrup?', 'No, don’t start Levonoor M Syrup without speaking to your child’s doctor. Moreover, Levonoor M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2271, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levonoor M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2272, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levonoor M Syrup to my child?', 'Some studies show that Levonoor M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2273, 'Levonoor M Syrup', 'Noor Pharmaceuticals', 'Levonoor M Syrup', 'Can I use Levonoor M Syrup for treating acute asthma attacks in my child?', 'Levonoor M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2274, 'Levonorm 5mg Tablet', 'Enorm Med Pharma', 'Levonorm 5mg Tablet', 'Is Levonorm 5mg Tablet a steroid? What is it used for?', 'No, Levonorm 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2275, 'Levonorm 5mg Tablet', 'Enorm Med Pharma', 'Levonorm 5mg Tablet', 'Does Levonorm 5mg Tablet make you tired and drowsy?', 'Yes, Levonorm 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2276, 'Levonorm 5mg Tablet', 'Enorm Med Pharma', 'Levonorm 5mg Tablet', 'How long does it take for Levonorm 5mg Tablet to work?', 'Levonorm 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2277, 'Levonorm 5mg Tablet', 'Enorm Med Pharma', 'Levonorm 5mg Tablet', 'Can I take Levonorm 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonorm 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2278, 'Levonorm 5mg Tablet', 'Enorm Med Pharma', 'Levonorm 5mg Tablet', 'Is it safe to take Levonorm 5mg Tablet for a long time?', 'Levonorm 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonorm 5mg Tablet for only as long as you need it.'),
(2279, 'Levonorm 5mg Tablet', 'Enorm Med Pharma', 'Levonorm 5mg Tablet', 'For how long should I continue Levonorm 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonorm 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonorm 5mg Tablet'),
(2280, 'Levonorm FX 10mg/120mg Tablet', 'Enorm Med Pharma', 'Levonorm FX 10mg/120mg Tablet', 'What is Levonorm FX 10mg/120mg Tablet ?', 'Levonorm FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(2281, 'Levonorm FX 10mg/120mg Tablet', 'Enorm Med Pharma', 'Levonorm FX 10mg/120mg Tablet', 'Can Levonorm FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonorm FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Levonorm FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(2282, 'Levonorm FX 10mg/120mg Tablet', 'Enorm Med Pharma', 'Levonorm FX 10mg/120mg Tablet', 'Can the use of Levonorm FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Levonorm FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2283, 'Levonorm FX 10mg/120mg Tablet', 'Enorm Med Pharma', 'Levonorm FX 10mg/120mg Tablet', 'What should be avoided in food while taking Levonorm FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levonorm FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Levonorm FX 10mg/120mg Tablet.'),
(2284, 'Levonorm FX 10mg/120mg Tablet', 'Enorm Med Pharma', 'Levonorm FX 10mg/120mg Tablet', 'Will Levonorm FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2285, 'Levonorm FX 10mg/120mg Tablet', 'Enorm Med Pharma', 'Levonorm FX 10mg/120mg Tablet', 'What is the recommended storage condition for Levonorm FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(2286, 'Levonorm M 5mg/10mg Tablet', 'Enorm Med Pharma', 'Levonorm M 5mg/10mg Tablet', 'What is Levonorm M 5mg/10mg Tablet?', 'Levonorm M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2287, 'Levonorm M 5mg/10mg Tablet', 'Enorm Med Pharma', 'Levonorm M 5mg/10mg Tablet', 'Can the use of Levonorm M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonorm M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2288, 'Levonorm M 5mg/10mg Tablet', 'Enorm Med Pharma', 'Levonorm M 5mg/10mg Tablet', 'Can Levonorm M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonorm M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2289, 'Levonorm M 5mg/10mg Tablet', 'Enorm Med Pharma', 'Levonorm M 5mg/10mg Tablet', 'Can the use of Levonorm M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonorm M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2290, 'Levonorm M 5mg/10mg Tablet', 'Enorm Med Pharma', 'Levonorm M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonorm M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonorm M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonorm M 5mg/10mg Tablet.'),
(2291, 'Levonorm M 5mg/10mg Tablet', 'Enorm Med Pharma', 'Levonorm M 5mg/10mg Tablet', 'Will Levonorm M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonorm M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2292, 'Levonorm M 5mg/10mg Tablet', 'Enorm Med Pharma', 'Levonorm M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonorm M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2293, 'Levonor-M Tablet', 'Astranor Healthcare Pvt Ltd', 'Levonor-M Tablet', 'What is Levonor-M Tablet?', 'Levonor-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2294, 'Levonor-M Tablet', 'Astranor Healthcare Pvt Ltd', 'Levonor-M Tablet', 'Can the use of Levonor-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonor-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2295, 'Levonor-M Tablet', 'Astranor Healthcare Pvt Ltd', 'Levonor-M Tablet', 'Can Levonor-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levonor-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2296, 'Levonor-M Tablet', 'Astranor Healthcare Pvt Ltd', 'Levonor-M Tablet', 'Can the use of Levonor-M Tablet cause dry mouth?', 'Yes, the use of Levonor-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2297, 'Levonor-M Tablet', 'Astranor Healthcare Pvt Ltd', 'Levonor-M Tablet', 'Can I drink alcohol while taking Levonor-M Tablet?', 'No, do not take alcohol while taking Levonor-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonor-M Tablet.'),
(2298, 'Levonor-M Tablet', 'Astranor Healthcare Pvt Ltd', 'Levonor-M Tablet', 'Will Levonor-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonor-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2299, 'Levonor-M Tablet', 'Astranor Healthcare Pvt Ltd', 'Levonor-M Tablet', 'What are the instructions for storage and disposal of Levonor-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2300, 'Levonos 10mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 10mg Tablet', 'Is Levonos 10mg Tablet a steroid? What is it used for?', 'No, Levonos 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2301, 'Levonos 10mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 10mg Tablet', 'Does Levonos 10mg Tablet make you tired and drowsy?', 'Yes, Levonos 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2302, 'Levonos 10mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 10mg Tablet', 'How long does it take for Levonos 10mg Tablet to work?', 'Levonos 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2303, 'Levonos 10mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 10mg Tablet', 'Can I take Levonos 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonos 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2304, 'Levonos 10mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 10mg Tablet', 'Is it safe to take Levonos 10mg Tablet for a long time?', 'Levonos 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonos 10mg Tablet for only as long as you need it.'),
(2305, 'Levonos 10mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 10mg Tablet', 'For how long should I continue Levonos 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonos 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonos 10mg Tablet'),
(2306, 'Levonos 5mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 5mg Tablet', 'Is Levonos 5mg Tablet a steroid? What is it used for?', 'No, Levonos 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2307, 'Levonos 5mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 5mg Tablet', 'Does Levonos 5mg Tablet make you tired and drowsy?', 'Yes, Levonos 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2308, 'Levonos 5mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 5mg Tablet', 'How long does it take for Levonos 5mg Tablet to work?', 'Levonos 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2309, 'Levonos 5mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 5mg Tablet', 'Can I take Levonos 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonos 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2310, 'Levonos 5mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 5mg Tablet', 'Is it safe to take Levonos 5mg Tablet for a long time?', 'Levonos 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonos 5mg Tablet for only as long as you need it.'),
(2311, 'Levonos 5mg Tablet', 'Stefanos Pharmaceuticals', 'Levonos 5mg Tablet', 'For how long should I continue Levonos 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonos 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonos 5mg Tablet'),
(2312, 'Levonos CF Oral Suspension', 'Stefanos Pharmaceuticals', 'Levonos CF Oral Suspension', 'What if  I give too much Levonos CF Oral Suspension by mistake?', 'Prolonged or excess intake of Levonos CF Oral Suspension can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects, and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(2313, 'Levonos CF Oral Suspension', 'Stefanos Pharmaceuticals', 'Levonos CF Oral Suspension', 'Can other medicines be given at the same time as Levonos CF Oral Suspension?', 'Levonos CF Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levonos CF Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(2314, 'Levonos CF Oral Suspension', 'Stefanos Pharmaceuticals', 'Levonos CF Oral Suspension', 'In what all conditions should I avoid giving Levonos CF Oral Suspension to my child?', 'If your child is suffering from any Cardiovascular disease (hypertension, heart disease), Diabetes mellitus, GI obstruction, increased intraocular pressure, urinary obstruction, or thyroid dysfunction, avoid giving Levonos CF Oral Suspension. Always inform your doctor about your child’s medical history before giving Levonos CF Oral Suspension.'),
(2315, 'Levonos CF Oral Suspension', 'Stefanos Pharmaceuticals', 'Levonos CF Oral Suspension', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(2316, 'Levonos CF Oral Suspension', 'Stefanos Pharmaceuticals', 'Levonos CF Oral Suspension', 'Can Levonos CF Oral Suspension make my child sleepy?', 'Levonos CF Oral Suspension may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(2317, 'Levonos CF Oral Suspension', 'Stefanos Pharmaceuticals', 'Levonos CF Oral Suspension', 'How can I store Levonos CF Oral Suspension?', 'Levonos CF Oral Suspension should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2318, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2319, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'Can I decrease the dose of Levonos-M Kid Tablet 2.5mg/5mg by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2320, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'How should Levonos-M Kid Tablet 2.5mg/5mg be stored?', 'Levonos-M Kid Tablet 2.5mg/5mg should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2321, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'Can Levonos-M Kid Tablet 2.5mg/5mg make my child sleepy?', 'Levonos-M Kid Tablet 2.5mg/5mg causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2322, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levonos-M Kid Tablet 2.5mg/5mg?', 'No, don’t start Levonos-M Kid Tablet 2.5mg/5mg without speaking to your child’s doctor. Moreover, Levonos-M Kid Tablet 2.5mg/5mg can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2323, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levonos-M Kid Tablet 2.5mg/5mg usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2324, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'My child is suffering from a mood disorder. Is it safe to give Levonos-M Kid Tablet 2.5mg/5mg to my child?', 'Some studies show that Levonos-M Kid Tablet 2.5mg/5mg can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2325, 'Levonos-M Kid Tablet 2.5mg/5mg', 'Stefanos Pharmaceuticals', 'Levonos-M Kid Tablet 2.5mg/5mg', 'Can I use Levonos-M Kid Tablet 2.5mg/5mg for treating acute asthma attacks in my child?', 'Levonos-M Kid Tablet 2.5mg/5mg should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2326, 'Levonos-M Tablet 5mg/10mg', 'Stefanos Pharmaceuticals', 'Levonos-M Tablet 5mg/10mg', 'What is Levonos-M Tablet 5mg/10mg?', 'Levonos-M Tablet 5mg/10mg is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2327, 'Levonos-M Tablet 5mg/10mg', 'Stefanos Pharmaceuticals', 'Levonos-M Tablet 5mg/10mg', 'Can the use of Levonos-M Tablet 5mg/10mg cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonos-M Tablet 5mg/10mg is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2328, 'Levonos-M Tablet 5mg/10mg', 'Stefanos Pharmaceuticals', 'Levonos-M Tablet 5mg/10mg', 'Can Levonos-M Tablet 5mg/10mg be stopped when allergy symptoms are relieved?', 'No, Levonos-M Tablet 5mg/10mg should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2329, 'Levonos-M Tablet 5mg/10mg', 'Stefanos Pharmaceuticals', 'Levonos-M Tablet 5mg/10mg', 'Can the use of Levonos-M Tablet 5mg/10mg cause dry mouth?', 'Yes, the use of Levonos-M Tablet 5mg/10mg can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2330, 'Levonos-M Tablet 5mg/10mg', 'Stefanos Pharmaceuticals', 'Levonos-M Tablet 5mg/10mg', 'Can I drink alcohol while taking Levonos-M Tablet 5mg/10mg?', 'No, do not take alcohol while taking Levonos-M Tablet 5mg/10mg. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonos-M Tablet 5mg/10mg.'),
(2331, 'Levonos-M Tablet 5mg/10mg', 'Stefanos Pharmaceuticals', 'Levonos-M Tablet 5mg/10mg', 'Will Levonos-M Tablet 5mg/10mg be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonos-M Tablet 5mg/10mg can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2332, 'Levonos-M Tablet 5mg/10mg', 'Stefanos Pharmaceuticals', 'Levonos-M Tablet 5mg/10mg', 'What are the instructions for storage and disposal of Levonos-M Tablet 5mg/10mg?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2333, 'Levonov 5 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov 5 Tablet', 'Is Levonov 5 Tablet a steroid? What is it used for?', 'No, Levonov 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2334, 'Levonov 5 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov 5 Tablet', 'Does Levonov 5 Tablet make you tired and drowsy?', 'Yes, Levonov 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2335, 'Levonov 5 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov 5 Tablet', 'How long does it take for Levonov 5 Tablet to work?', 'Levonov 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2336, 'Levonov 5 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov 5 Tablet', 'Can I take Levonov 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonov 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2337, 'Levonov 5 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov 5 Tablet', 'Is it safe to take Levonov 5 Tablet for a long time?', 'Levonov 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonov 5 Tablet for only as long as you need it.'),
(2338, 'Levonov 5 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov 5 Tablet', 'For how long should I continue Levonov 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonov 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonov 5 Tablet'),
(2339, 'Levonov M 5mg/10mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M 5mg/10mg Tablet', 'What is Levonov M 5mg/10mg Tablet?', 'Levonov M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2340, 'Levonov M 5mg/10mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M 5mg/10mg Tablet', 'Can the use of Levonov M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonov M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2341, 'Levonov M 5mg/10mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M 5mg/10mg Tablet', 'Can Levonov M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonov M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2342, 'Levonov M 5mg/10mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M 5mg/10mg Tablet', 'Can the use of Levonov M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonov M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2343, 'Levonov M 5mg/10mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonov M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonov M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonov M 5mg/10mg Tablet.'),
(2344, 'Levonov M 5mg/10mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M 5mg/10mg Tablet', 'Will Levonov M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonov M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2345, 'Levonov M 5mg/10mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonov M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2346, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2347, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'Can I decrease the dose of Levonov M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2348, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'How should Levonov M Oral Suspension be stored?', 'Levonov M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2349, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'Can Levonov M Oral Suspension make my child sleepy?', 'Levonov M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2350, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levonov M Oral Suspension?', 'No, don’t start Levonov M Oral Suspension without speaking to your child’s doctor. Moreover, Levonov M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2351, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levonov M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2352, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levonov M Oral Suspension to my child?', 'Some studies show that Levonov M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2353, 'Levonov M Oral Suspension', 'NovoLilly Pharmaceutical Pvt Ltd', 'Levonov M Oral Suspension', 'Can I use Levonov M Oral Suspension for treating acute asthma attacks in my child?', 'Levonov M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2354, 'Levonox 10mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 10mg Tablet', 'Is Levonox 10mg Tablet a steroid? What is it used for?', 'No, Levonox 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2355, 'Levonox 10mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 10mg Tablet', 'Does Levonox 10mg Tablet make you tired and drowsy?', 'Yes, Levonox 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2356, 'Levonox 10mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 10mg Tablet', 'How long does it take for Levonox 10mg Tablet to work?', 'Levonox 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2357, 'Levonox 10mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 10mg Tablet', 'Can I take Levonox 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonox 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2358, 'Levonox 10mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 10mg Tablet', 'Is it safe to take Levonox 10mg Tablet for a long time?', 'Levonox 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonox 10mg Tablet for only as long as you need it.'),
(2359, 'Levonox 10mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 10mg Tablet', 'For how long should I continue Levonox 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonox 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonox 10mg Tablet'),
(2360, 'Levonox 250mg Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 250mg Tablet', 'Is Levonox 250mg Tablet safe?', 'Levonox 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2361, 'Levonox 250mg Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 250mg Tablet', 'What if I forget to take a dose of Levonox 250mg Tablet?', 'If you forget a dose of Levonox 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2362, 'Levonox 250mg Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 250mg Tablet', 'Can the use of Levonox 250mg Tablet cause diarrhea?', 'Yes, the use of Levonox 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2363, 'Levonox 250mg Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 250mg Tablet', 'Can I stop taking Levonox 250mg Tablet when I feel better?', 'No, do not stop taking Levonox 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonox 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levonox 250mg Tablet in the dose and duration advised by the doctor.'),
(2364, 'Levonox 250mg Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 250mg Tablet', 'Can the use of Levonox 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonox 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonox 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2365, 'Levonox 500 Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 500 Tablet', 'Is Levonox 500 Tablet safe?', 'Levonox 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2366, 'Levonox 500 Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 500 Tablet', 'What if I forget to take a dose of Levonox 500 Tablet?', 'If you forget a dose of Levonox 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2367, 'Levonox 500 Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 500 Tablet', 'Can the use of Levonox 500 Tablet cause diarrhea?', 'Yes, the use of Levonox 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2368, 'Levonox 500 Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 500 Tablet', 'Can I stop taking Levonox 500 Tablet when I feel better?', 'No, do not stop taking Levonox 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonox 500 Tablet too early, the symptoms may return or worsen. Continue taking Levonox 500 Tablet in the dose and duration advised by the doctor.'),
(2369, 'Levonox 500 Tablet', 'Fitwel Pharmaceuticals Private Limited', 'Levonox 500 Tablet', 'Can the use of Levonox 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levonox 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonox 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2370, 'Levonox 500mg Tablet', 'Innovexia Life Sciences Pvt Ltd', 'Levonox 500mg Tablet (Innovexia Life Sciences Pvt Ltd)', 'Is Levonox 500mg Tablet safe?', 'Levonox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2371, 'Levonox 500mg Tablet', 'Innovexia Life Sciences Pvt Ltd', 'Levonox 500mg Tablet (Innovexia Life Sciences Pvt Ltd)', 'What if I forget to take a dose of Levonox 500mg Tablet?', 'If you forget a dose of Levonox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2372, 'Levonox 500mg Tablet', 'Innovexia Life Sciences Pvt Ltd', 'Levonox 500mg Tablet (Innovexia Life Sciences Pvt Ltd)', 'Can the use of Levonox 500mg Tablet cause diarrhea?', 'Yes, the use of Levonox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2373, 'Levonox 500mg Tablet', 'Innovexia Life Sciences Pvt Ltd', 'Levonox 500mg Tablet (Innovexia Life Sciences Pvt Ltd)', 'Can I stop taking Levonox 500mg Tablet when I feel better?', 'No, do not stop taking Levonox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonox 500mg Tablet in the dose and duration advised by the doctor.'),
(2374, 'Levonox 500mg Tablet', 'Innovexia Life Sciences Pvt Ltd', 'Levonox 500mg Tablet (Innovexia Life Sciences Pvt Ltd)', 'Can the use of Levonox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2375, 'Levonox 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levonox 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Is Levonox 500mg Tablet safe?', 'Levonox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2376, 'Levonox 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levonox 500mg Tablet (Magma Allianz Laboratories Ltd)', 'What if I forget to take a dose of Levonox 500mg Tablet?', 'If you forget a dose of Levonox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2377, 'Levonox 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levonox 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Can the use of Levonox 500mg Tablet cause diarrhea?', 'Yes, the use of Levonox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2378, 'Levonox 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levonox 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Can I stop taking Levonox 500mg Tablet when I feel better?', 'No, do not stop taking Levonox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonox 500mg Tablet in the dose and duration advised by the doctor.'),
(2379, 'Levonox 500mg Tablet', 'Magma Allianz Laboratories Ltd', 'Levonox 500mg Tablet (Magma Allianz Laboratories Ltd)', 'Can the use of Levonox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2380, 'Levonox 5mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 5mg Tablet', 'Is Levonox 5mg Tablet a steroid? What is it used for?', 'No, Levonox 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2381, 'Levonox 5mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 5mg Tablet', 'Does Levonox 5mg Tablet make you tired and drowsy?', 'Yes, Levonox 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2382, 'Levonox 5mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 5mg Tablet', 'How long does it take for Levonox 5mg Tablet to work?', 'Levonox 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2383, 'Levonox 5mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 5mg Tablet', 'Can I take Levonox 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonox 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2384, 'Levonox 5mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 5mg Tablet', 'Is it safe to take Levonox 5mg Tablet for a long time?', 'Levonox 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonox 5mg Tablet for only as long as you need it.'),
(2385, 'Levonox 5mg Tablet', 'Wannock Pharmaceuticals', 'Levonox 5mg Tablet', 'For how long should I continue Levonox 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonox 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonox 5mg Tablet'),
(2386, 'Levont 500mg Tablet', 'Anant Pharmaceuticals Pvt Ltd', 'Levont 500mg Tablet (Anant Pharmaceuticals Pvt Ltd)', 'Is Levont 500mg Tablet safe?', 'Levont 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2387, 'Levont 500mg Tablet', 'Anant Pharmaceuticals Pvt Ltd', 'Levont 500mg Tablet (Anant Pharmaceuticals Pvt Ltd)', 'What if I forget to take a dose of Levont 500mg Tablet?', 'If you forget a dose of Levont 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2388, 'Levont 500mg Tablet', 'Anant Pharmaceuticals Pvt Ltd', 'Levont 500mg Tablet (Anant Pharmaceuticals Pvt Ltd)', 'Can the use of Levont 500mg Tablet cause diarrhea?', 'Yes, the use of Levont 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2389, 'Levont 500mg Tablet', 'Anant Pharmaceuticals Pvt Ltd', 'Levont 500mg Tablet (Anant Pharmaceuticals Pvt Ltd)', 'Can I stop taking Levont 500mg Tablet when I feel better?', 'No, do not stop taking Levont 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levont 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levont 500mg Tablet in the dose and duration advised by the doctor.'),
(2390, 'Levont 500mg Tablet', 'Anant Pharmaceuticals Pvt Ltd', 'Levont 500mg Tablet (Anant Pharmaceuticals Pvt Ltd)', 'Can the use of Levont 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levont 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levont 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2391, 'Levont 500mg Tablet', 'Anant Remedies', 'Levont 500mg Tablet (Anant Remedies)', 'Is Levont 500mg Tablet safe?', 'Levont 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2392, 'Levont 500mg Tablet', 'Anant Remedies', 'Levont 500mg Tablet (Anant Remedies)', 'What if I forget to take a dose of Levont 500mg Tablet?', 'If you forget a dose of Levont 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2393, 'Levont 500mg Tablet', 'Anant Remedies', 'Levont 500mg Tablet (Anant Remedies)', 'Can the use of Levont 500mg Tablet cause diarrhea?', 'Yes, the use of Levont 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2394, 'Levont 500mg Tablet', 'Anant Remedies', 'Levont 500mg Tablet (Anant Remedies)', 'Can I stop taking Levont 500mg Tablet when I feel better?', 'No, do not stop taking Levont 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levont 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levont 500mg Tablet in the dose and duration advised by the doctor.'),
(2395, 'Levont 500mg Tablet', 'Anant Remedies', 'Levont 500mg Tablet (Anant Remedies)', 'Can the use of Levont 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levont 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levont 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2396, 'Levonto 500mg Tablet', 'Prevento Remedies Corporation', 'Levonto 500mg Tablet', 'Is Levonto 500mg Tablet safe?', 'Levonto 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2397, 'Levonto 500mg Tablet', 'Prevento Remedies Corporation', 'Levonto 500mg Tablet', 'What if I forget to take a dose of Levonto 500mg Tablet?', 'If you forget a dose of Levonto 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2398, 'Levonto 500mg Tablet', 'Prevento Remedies Corporation', 'Levonto 500mg Tablet', 'Can the use of Levonto 500mg Tablet cause diarrhea?', 'Yes, the use of Levonto 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2399, 'Levonto 500mg Tablet', 'Prevento Remedies Corporation', 'Levonto 500mg Tablet', 'Can I stop taking Levonto 500mg Tablet when I feel better?', 'No, do not stop taking Levonto 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonto 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonto 500mg Tablet in the dose and duration advised by the doctor.'),
(2400, 'Levonto 500mg Tablet', 'Prevento Remedies Corporation', 'Levonto 500mg Tablet', 'Can the use of Levonto 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonto 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonto 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2401, 'Levontus 5mg Tablet', 'Iretus Biotech Private Limited', 'Levontus 5mg Tablet', 'Is Levontus 5mg Tablet a steroid? What is it used for?', 'No, Levontus 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2402, 'Levontus 5mg Tablet', 'Iretus Biotech Private Limited', 'Levontus 5mg Tablet', 'Does Levontus 5mg Tablet make you tired and drowsy?', 'Yes, Levontus 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2403, 'Levontus 5mg Tablet', 'Iretus Biotech Private Limited', 'Levontus 5mg Tablet', 'How long does it take for Levontus 5mg Tablet to work?', 'Levontus 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2404, 'Levontus 5mg Tablet', 'Iretus Biotech Private Limited', 'Levontus 5mg Tablet', 'Can I take Levontus 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levontus 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2405, 'Levontus 5mg Tablet', 'Iretus Biotech Private Limited', 'Levontus 5mg Tablet', 'Is it safe to take Levontus 5mg Tablet for a long time?', 'Levontus 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levontus 5mg Tablet for only as long as you need it.'),
(2406, 'Levontus 5mg Tablet', 'Iretus Biotech Private Limited', 'Levontus 5mg Tablet', 'For how long should I continue Levontus 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levontus 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levontus 5mg Tablet'),
(2407, 'Levontus M 5mg/10mg Tablet', 'Iretus Biotech Private Limited', 'Levontus M 5mg/10mg Tablet', 'What is Levontus M 5mg/10mg Tablet?', 'Levontus M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2408, 'Levontus M 5mg/10mg Tablet', 'Iretus Biotech Private Limited', 'Levontus M 5mg/10mg Tablet', 'Can the use of Levontus M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levontus M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2409, 'Levontus M 5mg/10mg Tablet', 'Iretus Biotech Private Limited', 'Levontus M 5mg/10mg Tablet', 'Can Levontus M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levontus M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2410, 'Levontus M 5mg/10mg Tablet', 'Iretus Biotech Private Limited', 'Levontus M 5mg/10mg Tablet', 'Can the use of Levontus M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levontus M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2411, 'Levontus M 5mg/10mg Tablet', 'Iretus Biotech Private Limited', 'Levontus M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levontus M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levontus M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levontus M 5mg/10mg Tablet.'),
(2412, 'Levontus M 5mg/10mg Tablet', 'Iretus Biotech Private Limited', 'Levontus M 5mg/10mg Tablet', 'Will Levontus M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levontus M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2413, 'Levontus M 5mg/10mg Tablet', 'Iretus Biotech Private Limited', 'Levontus M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levontus M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2414, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2415, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'Can I decrease the dose of Levontus M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2416, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'How should Levontus M Oral Suspension be stored?', 'Levontus M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2417, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'Can Levontus M Oral Suspension make my child sleepy?', 'Levontus M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2418, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levontus M Oral Suspension?', 'No, don’t start Levontus M Oral Suspension without speaking to your child’s doctor. Moreover, Levontus M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2419, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levontus M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2420, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levontus M Oral Suspension to my child?', 'Some studies show that Levontus M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2421, 'Levontus M Oral Suspension', 'Iretus Biotech Private Limited', 'Levontus M Oral Suspension', 'Can I use Levontus M Oral Suspension for treating acute asthma attacks in my child?', 'Levontus M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2422, 'Levonuc 500mg Tablet', 'Cipla Ltd', 'Levonuc 500mg Tablet', 'Is Levonuc 500mg Tablet safe?', 'Levonuc 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2423, 'Levonuc 500mg Tablet', 'Cipla Ltd', 'Levonuc 500mg Tablet', 'What if I forget to take a dose of Levonuc 500mg Tablet?', 'If you forget a dose of Levonuc 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2424, 'Levonuc 500mg Tablet', 'Cipla Ltd', 'Levonuc 500mg Tablet', 'Can the use of Levonuc 500mg Tablet cause diarrhea?', 'Yes, the use of Levonuc 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2425, 'Levonuc 500mg Tablet', 'Cipla Ltd', 'Levonuc 500mg Tablet', 'Can I stop taking Levonuc 500mg Tablet when I feel better?', 'No, do not stop taking Levonuc 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonuc 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonuc 500mg Tablet in the dose and duration advised by the doctor.'),
(2426, 'Levonuc 500mg Tablet', 'Cipla Ltd', 'Levonuc 500mg Tablet', 'Can the use of Levonuc 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonuc 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonuc 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2427, 'Levonux 500mg Tablet', 'Nydux Pharma', 'Levonux 500mg Tablet', 'Is Levonux 500mg Tablet safe?', 'Levonux 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2428, 'Levonux 500mg Tablet', 'Nydux Pharma', 'Levonux 500mg Tablet', 'What if I forget to take a dose of Levonux 500mg Tablet?', 'If you forget a dose of Levonux 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2429, 'Levonux 500mg Tablet', 'Nydux Pharma', 'Levonux 500mg Tablet', 'Can the use of Levonux 500mg Tablet cause diarrhea?', 'Yes, the use of Levonux 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2430, 'Levonux 500mg Tablet', 'Nydux Pharma', 'Levonux 500mg Tablet', 'Can I stop taking Levonux 500mg Tablet when I feel better?', 'No, do not stop taking Levonux 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonux 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonux 500mg Tablet in the dose and duration advised by the doctor.'),
(2431, 'Levonux 500mg Tablet', 'Nydux Pharma', 'Levonux 500mg Tablet', 'Can the use of Levonux 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonux 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonux 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2432, 'Levony 500mg Tablet', '3D Healthcare', 'Levony 500mg Tablet', 'Is Levony 500mg Tablet safe?', 'Levony 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2433, 'Levony 500mg Tablet', '3D Healthcare', 'Levony 500mg Tablet', 'What if I forget to take a dose of Levony 500mg Tablet?', 'If you forget a dose of Levony 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2434, 'Levony 500mg Tablet', '3D Healthcare', 'Levony 500mg Tablet', 'Can the use of Levony 500mg Tablet cause diarrhea?', 'Yes, the use of Levony 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2435, 'Levony 500mg Tablet', '3D Healthcare', 'Levony 500mg Tablet', 'Can I stop taking Levony 500mg Tablet when I feel better?', 'No, do not stop taking Levony 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levony 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levony 500mg Tablet in the dose and duration advised by the doctor.'),
(2436, 'Levony 500mg Tablet', '3D Healthcare', 'Levony 500mg Tablet', 'Can the use of Levony 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levony 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levony 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2437, 'Levony OZ 250mg/500mg Tablet', 'Shiny Pharmaceuticals Pvt Ltd', 'Levony OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levony OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2438, 'Levony OZ 250mg/500mg Tablet', 'Shiny Pharmaceuticals Pvt Ltd', 'Levony OZ 250mg/500mg Tablet', 'Can I stop taking Levony OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levony OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2439, 'Levony OZ 250mg/500mg Tablet', 'Shiny Pharmaceuticals Pvt Ltd', 'Levony OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levony OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2440, 'Levonyl 500mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Levonyl 500mg Tablet', 'Is Levonyl 500mg Tablet safe?', 'Levonyl 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2441, 'Levonyl 500mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Levonyl 500mg Tablet', 'What if I forget to take a dose of Levonyl 500mg Tablet?', 'If you forget a dose of Levonyl 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2442, 'Levonyl 500mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Levonyl 500mg Tablet', 'Can the use of Levonyl 500mg Tablet cause diarrhea?', 'Yes, the use of Levonyl 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2443, 'Levonyl 500mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Levonyl 500mg Tablet', 'Can I stop taking Levonyl 500mg Tablet when I feel better?', 'No, do not stop taking Levonyl 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levonyl 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levonyl 500mg Tablet in the dose and duration advised by the doctor.'),
(2444, 'Levonyl 500mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Levonyl 500mg Tablet', 'Can the use of Levonyl 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levonyl 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levonyl 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2445, 'Levonzi 5mg Tablet', 'Arlig Pharma', 'Levonzi 5mg Tablet', 'Is Levonzi 5mg Tablet a steroid? What is it used for?', 'No, Levonzi 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2446, 'Levonzi 5mg Tablet', 'Arlig Pharma', 'Levonzi 5mg Tablet', 'Does Levonzi 5mg Tablet make you tired and drowsy?', 'Yes, Levonzi 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2447, 'Levonzi 5mg Tablet', 'Arlig Pharma', 'Levonzi 5mg Tablet', 'How long does it take for Levonzi 5mg Tablet to work?', 'Levonzi 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2448, 'Levonzi 5mg Tablet', 'Arlig Pharma', 'Levonzi 5mg Tablet', 'Can I take Levonzi 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levonzi 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2449, 'Levonzi 5mg Tablet', 'Arlig Pharma', 'Levonzi 5mg Tablet', 'Is it safe to take Levonzi 5mg Tablet for a long time?', 'Levonzi 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levonzi 5mg Tablet for only as long as you need it.'),
(2450, 'Levonzi 5mg Tablet', 'Arlig Pharma', 'Levonzi 5mg Tablet', 'For how long should I continue Levonzi 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levonzi 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levonzi 5mg Tablet'),
(2451, 'Levonzi M 5mg/10mg Tablet', 'Arlig Pharma', 'Levonzi M 5mg/10mg Tablet', 'What is Levonzi M 5mg/10mg Tablet?', 'Levonzi M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2452, 'Levonzi M 5mg/10mg Tablet', 'Arlig Pharma', 'Levonzi M 5mg/10mg Tablet', 'Can the use of Levonzi M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levonzi M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2453, 'Levonzi M 5mg/10mg Tablet', 'Arlig Pharma', 'Levonzi M 5mg/10mg Tablet', 'Can Levonzi M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levonzi M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2454, 'Levonzi M 5mg/10mg Tablet', 'Arlig Pharma', 'Levonzi M 5mg/10mg Tablet', 'Can the use of Levonzi M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levonzi M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2455, 'Levonzi M 5mg/10mg Tablet', 'Arlig Pharma', 'Levonzi M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levonzi M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levonzi M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levonzi M 5mg/10mg Tablet.'),
(2456, 'Levonzi M 5mg/10mg Tablet', 'Arlig Pharma', 'Levonzi M 5mg/10mg Tablet', 'Will Levonzi M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levonzi M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2457, 'Levonzi M 5mg/10mg Tablet', 'Arlig Pharma', 'Levonzi M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levonzi M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2458, 'Levoo 1.5% Eye Drop', 'Sunways India Pvt Ltd', 'Levoo 1.5% Eye Drop', 'Can I stop taking Levoo 1.5% Eye Drop when I feel better?', 'No, do not stop taking Levoo 1.5% Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoo 1.5% Eye Drop too early, the symptoms may return or worsen. Continue taking Levoo 1.5% Eye Drop in the dose and duration advised by the doctor.'),
(2459, 'Levop 250mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 250mg Tablet', 'Is Levop 250mg Tablet safe?', 'Levop 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2460, 'Levop 250mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 250mg Tablet', 'What if I forget to take a dose of Levop 250mg Tablet?', 'If you forget a dose of Levop 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2461, 'Levop 250mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 250mg Tablet', 'Can the use of Levop 250mg Tablet cause diarrhea?', 'Yes, the use of Levop 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2462, 'Levop 250mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 250mg Tablet', 'Can I stop taking Levop 250mg Tablet when I feel better?', 'No, do not stop taking Levop 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levop 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levop 250mg Tablet in the dose and duration advised by the doctor.'),
(2463, 'Levop 250mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 250mg Tablet', 'Can the use of Levop 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levop 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levop 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2464, 'Levop 500mg Tablet', 'Power Labs', 'Levop 500mg Tablet (Power Labs)', 'Is Levop 500mg Tablet safe?', 'Levop 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2465, 'Levop 500mg Tablet', 'Power Labs', 'Levop 500mg Tablet (Power Labs)', 'What if I forget to take a dose of Levop 500mg Tablet?', 'If you forget a dose of Levop 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2466, 'Levop 500mg Tablet', 'Power Labs', 'Levop 500mg Tablet (Power Labs)', 'Can the use of Levop 500mg Tablet cause diarrhea?', 'Yes, the use of Levop 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2467, 'Levop 500mg Tablet', 'Power Labs', 'Levop 500mg Tablet (Power Labs)', 'Can I stop taking Levop 500mg Tablet when I feel better?', 'No, do not stop taking Levop 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levop 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levop 500mg Tablet in the dose and duration advised by the doctor.'),
(2468, 'Levop 500mg Tablet', 'Power Labs', 'Levop 500mg Tablet (Power Labs)', 'Can the use of Levop 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levop 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levop 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2469, 'Levop 500mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 500mg Tablet (Pearl Medilife Pvt Ltd)', 'Is Levop 500mg Tablet safe?', 'Levop 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2470, 'Levop 500mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 500mg Tablet (Pearl Medilife Pvt Ltd)', 'What if I forget to take a dose of Levop 500mg Tablet?', 'If you forget a dose of Levop 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2471, 'Levop 500mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 500mg Tablet (Pearl Medilife Pvt Ltd)', 'Can the use of Levop 500mg Tablet cause diarrhea?', 'Yes, the use of Levop 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2472, 'Levop 500mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 500mg Tablet (Pearl Medilife Pvt Ltd)', 'Can I stop taking Levop 500mg Tablet when I feel better?', 'No, do not stop taking Levop 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levop 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levop 500mg Tablet in the dose and duration advised by the doctor.'),
(2473, 'Levop 500mg Tablet', 'Pearl Medilife Pvt Ltd', 'Levop 500mg Tablet (Pearl Medilife Pvt Ltd)', 'Can the use of Levop 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levop 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levop 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2474, 'Levop 5mg Tablet', 'Pax Healthcare', 'Levop 5mg Tablet', 'Is Levop 5mg Tablet a steroid? What is it used for?', 'No, Levop 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2475, 'Levop 5mg Tablet', 'Pax Healthcare', 'Levop 5mg Tablet', 'Does Levop 5mg Tablet make you tired and drowsy?', 'Yes, Levop 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2476, 'Levop 5mg Tablet', 'Pax Healthcare', 'Levop 5mg Tablet', 'How long does it take for Levop 5mg Tablet to work?', 'Levop 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2477, 'Levop 5mg Tablet', 'Pax Healthcare', 'Levop 5mg Tablet', 'Can I take Levop 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levop 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2478, 'Levop 5mg Tablet', 'Pax Healthcare', 'Levop 5mg Tablet', 'Is it safe to take Levop 5mg Tablet for a long time?', 'Levop 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levop 5mg Tablet for only as long as you need it.'),
(2479, 'Levop 5mg Tablet', 'Pax Healthcare', 'Levop 5mg Tablet', 'For how long should I continue Levop 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levop 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levop 5mg Tablet'),
(2480, 'Levopa C 250mg/25mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Levopa C 250mg/25mg Tablet', 'What is Levopa C 250mg/25mg Tablet?', 'Levopa C 250mg/25mg Tablet is a combination of two medicines: Levodopa and Carbidopa. This medication is used to treat the symptoms of Parkinson\'s disease like tremors (shaking), stiffness and slowness of movement. These symptoms are caused due to the lack of dopamine, a natural substance usually found in the brain. Levodopa works by being converted to dopamine in the brain. Carbidopa works by preventing levodopa from being broken down before it reaches the brain. By increasing the amount of dopamine in the brain, Levopa C 250mg/25mg Tablet helps control the symptoms of Parkinson’s disease and helps you to perform daily activities such as dressing, walking, handling utensils, etc.'),
(2481, 'Levopa C 250mg/25mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Levopa C 250mg/25mg Tablet', 'Can I stop taking Levopa C 250mg/25mg Tablet when my symptoms are relieved?', 'No, you should continue to take Levopa C 250mg/25mg Tablet, even if you feel well. Do not stop taking Levopa C 250mg/25mg Tablet without talking to your doctor. If you suddenly stop taking Levopa C 250mg/25mg Tablet, you could develop a serious problem causing fever, rigid muscles, unusual body movements and confusion. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(2482, 'Levopa C 250mg/25mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Levopa C 250mg/25mg Tablet', 'Can the Levopa C 250mg/25mg Tablet cause sleepiness or drowsiness?', 'Levopa C 250mg/25mg Tablet may make you drowsy or may cause you to suddenly fall asleep during your daily activities. You might not feel drowsy or notice any other warning signs before suddenly falling asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. If you suddenly fall asleep while doing something such as watching television, talking, eating, or riding in a car, or if you become very drowsy, especially during the daytime, call your doctor.'),
(2483, 'Levopa C 250mg/25mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Levopa C 250mg/25mg Tablet', 'Can the Levopa C 250mg/25mg Tablet cause dark urine?', 'Yes, it is a rare side effect. Consumption of Levopa C 250mg/25mg Tablet may alter the colour of your saliva, urine or sweat and make it dark colored (red, brown or black). This is harmless but your clothing may become stained.'),
(2484, 'Levopa C 250mg/25mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Levopa C 250mg/25mg Tablet', 'What are the instructions for storage and disposal of Levopa C 250mg/25mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(2485, 'Levopa C 250mg/25mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Levopa C 250mg/25mg Tablet', 'How long does Levopa C 250mg/25mg Tablet take to cure Parkinson’s disease?', 'Levopa C 250mg/25mg Tablet controls Parkinson\'s disease but does not cure it. It may take several months before you feel the full benefit of Levopa C 250mg/25mg Tablet.'),
(2486, 'Levopa C 250mg/25mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Levopa C 250mg/25mg Tablet', 'Can I take a higher than the recommended dose of this medication?', 'No, taking a higher than the recommended dose of Levopa C 250mg/25mg Tablet can lead to increased chances of side effects and toxicity. Talk to your doctor if your symptoms do not improve after a few weeks of treatment. Also let your doctor know if the effects of this medication seem to wear off quickly in between doses.'),
(2487, 'Levopac 500mg Tablet', 'Spackle Biotech', 'Levopac 500mg Tablet', 'Is Levopac 500mg Tablet safe?', 'Levopac 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2488, 'Levopac 500mg Tablet', 'Spackle Biotech', 'Levopac 500mg Tablet', 'What if I forget to take a dose of Levopac 500mg Tablet?', 'If you forget a dose of Levopac 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2489, 'Levopac 500mg Tablet', 'Spackle Biotech', 'Levopac 500mg Tablet', 'Can the use of Levopac 500mg Tablet cause diarrhea?', 'Yes, the use of Levopac 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2490, 'Levopac 500mg Tablet', 'Spackle Biotech', 'Levopac 500mg Tablet', 'Can I stop taking Levopac 500mg Tablet when I feel better?', 'No, do not stop taking Levopac 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopac 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopac 500mg Tablet in the dose and duration advised by the doctor.'),
(2491, 'Levopac 500mg Tablet', 'Spackle Biotech', 'Levopac 500mg Tablet', 'Can the use of Levopac 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopac 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopac 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2492, 'Levopack 10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 10mg Tablet', 'Is Levopack 10mg Tablet a steroid? What is it used for?', 'No, Levopack 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2493, 'Levopack 10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 10mg Tablet', 'Does Levopack 10mg Tablet make you tired and drowsy?', 'Yes, Levopack 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2494, 'Levopack 10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 10mg Tablet', 'How long does it take for Levopack 10mg Tablet to work?', 'Levopack 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2495, 'Levopack 10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 10mg Tablet', 'Can I take Levopack 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopack 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2496, 'Levopack 10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 10mg Tablet', 'Is it safe to take Levopack 10mg Tablet for a long time?', 'Levopack 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopack 10mg Tablet for only as long as you need it.'),
(2497, 'Levopack 10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 10mg Tablet', 'For how long should I continue Levopack 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopack 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopack 10mg Tablet'),
(2498, 'Levopack 5mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 5mg Tablet', 'Is Levopack 5mg Tablet a steroid? What is it used for?', 'No, Levopack 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2499, 'Levopack 5mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 5mg Tablet', 'Does Levopack 5mg Tablet make you tired and drowsy?', 'Yes, Levopack 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2500, 'Levopack 5mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 5mg Tablet', 'How long does it take for Levopack 5mg Tablet to work?', 'Levopack 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2501, 'Levopack 5mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 5mg Tablet', 'Can I take Levopack 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopack 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2502, 'Levopack 5mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 5mg Tablet', 'Is it safe to take Levopack 5mg Tablet for a long time?', 'Levopack 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopack 5mg Tablet for only as long as you need it.'),
(2503, 'Levopack 5mg Tablet', 'Human Discovery Pharma & Research', 'Levopack 5mg Tablet', 'For how long should I continue Levopack 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopack 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopack 5mg Tablet');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2504, 'Levopack M 5mg/10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack M 5mg/10mg Tablet', 'What is Levopack M 5mg/10mg Tablet?', 'Levopack M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2505, 'Levopack M 5mg/10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack M 5mg/10mg Tablet', 'Can the use of Levopack M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levopack M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2506, 'Levopack M 5mg/10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack M 5mg/10mg Tablet', 'Can Levopack M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levopack M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2507, 'Levopack M 5mg/10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack M 5mg/10mg Tablet', 'Can the use of Levopack M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levopack M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2508, 'Levopack M 5mg/10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levopack M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levopack M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levopack M 5mg/10mg Tablet.'),
(2509, 'Levopack M 5mg/10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack M 5mg/10mg Tablet', 'Will Levopack M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levopack M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2510, 'Levopack M 5mg/10mg Tablet', 'Human Discovery Pharma & Research', 'Levopack M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levopack M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2511, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2512, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'Can I decrease the dose of Levopack M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2513, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'How should Levopack M Kid Tablet be stored?', 'Levopack M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2514, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'Can Levopack M Kid Tablet make my child sleepy?', 'Levopack M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2515, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levopack M Kid Tablet?', 'No, don’t start Levopack M Kid Tablet without speaking to your child’s doctor. Moreover, Levopack M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2516, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levopack M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2517, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levopack M Kid Tablet to my child?', 'Some studies show that Levopack M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2518, 'Levopack M Kid Tablet', 'Human Discovery Pharma & Research', 'Levopack M Kid Tablet', 'Can I use Levopack M Kid Tablet for treating acute asthma attacks in my child?', 'Levopack M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2519, 'Levopalm 5 Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm 5 Tablet', 'Is Levopalm 5 Tablet a steroid? What is it used for?', 'No, Levopalm 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2520, 'Levopalm 5 Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm 5 Tablet', 'Does Levopalm 5 Tablet make you tired and drowsy?', 'Yes, Levopalm 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2521, 'Levopalm 5 Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm 5 Tablet', 'How long does it take for Levopalm 5 Tablet to work?', 'Levopalm 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2522, 'Levopalm 5 Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm 5 Tablet', 'Can I take Levopalm 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopalm 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2523, 'Levopalm 5 Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm 5 Tablet', 'Is it safe to take Levopalm 5 Tablet for a long time?', 'Levopalm 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopalm 5 Tablet for only as long as you need it.'),
(2524, 'Levopalm 5 Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm 5 Tablet', 'For how long should I continue Levopalm 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopalm 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopalm 5 Tablet'),
(2525, 'Levopalm Syrup Mango', 'Rekin Pharma Pvt. Ltd.', 'Levopalm Syrup Mango', 'Is Levopalm Syrup Mango a steroid? What is it used for?', 'No, Levopalm Syrup Mango is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2526, 'Levopalm Syrup Mango', 'Rekin Pharma Pvt. Ltd.', 'Levopalm Syrup Mango', 'Does Levopalm Syrup Mango make you tired and drowsy?', 'Yes, Levopalm Syrup Mango can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2527, 'Levopalm Syrup Mango', 'Rekin Pharma Pvt. Ltd.', 'Levopalm Syrup Mango', 'How long does it take for Levopalm Syrup Mango to work?', 'Levopalm Syrup Mango starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2528, 'Levopalm Syrup Mango', 'Rekin Pharma Pvt. Ltd.', 'Levopalm Syrup Mango', 'Can I take Levopalm Syrup Mango and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopalm Syrup Mango during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2529, 'Levopalm Syrup Mango', 'Rekin Pharma Pvt. Ltd.', 'Levopalm Syrup Mango', 'Is it safe to take Levopalm Syrup Mango for a long time?', 'Levopalm Syrup Mango is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopalm Syrup Mango for only as long as you need it.'),
(2530, 'Levopalm Syrup Mango', 'Rekin Pharma Pvt. Ltd.', 'Levopalm Syrup Mango', 'For how long should I continue Levopalm Syrup Mango?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopalm Syrup Mango for a longer time. Talk to your doctor if you are unsure about the duration of using Levopalm Syrup Mango'),
(2531, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2532, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'Can I decrease the dose of Levopalm-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2533, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'How should Levopalm-M Syrup be stored?', 'Levopalm-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2534, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'Can Levopalm-M Syrup make my child sleepy?', 'Levopalm-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2535, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levopalm-M Syrup?', 'No, don’t start Levopalm-M Syrup without speaking to your child’s doctor. Moreover, Levopalm-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2536, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levopalm-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2537, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levopalm-M Syrup to my child?', 'Some studies show that Levopalm-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2538, 'Levopalm-M Syrup', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Syrup', 'Can I use Levopalm-M Syrup for treating acute asthma attacks in my child?', 'Levopalm-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2539, 'Levopalm-M Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Tablet', 'What is Levopalm-M Tablet?', 'Levopalm-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2540, 'Levopalm-M Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Tablet', 'Can the use of Levopalm-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levopalm-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2541, 'Levopalm-M Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Tablet', 'Can Levopalm-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levopalm-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2542, 'Levopalm-M Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Tablet', 'Can the use of Levopalm-M Tablet cause dry mouth?', 'Yes, the use of Levopalm-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2543, 'Levopalm-M Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Tablet', 'Can I drink alcohol while taking Levopalm-M Tablet?', 'No, do not take alcohol while taking Levopalm-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levopalm-M Tablet.'),
(2544, 'Levopalm-M Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Tablet', 'Will Levopalm-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levopalm-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2545, 'Levopalm-M Tablet', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-M Tablet', 'What are the instructions for storage and disposal of Levopalm-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2546, 'Levopalm-MA Tablet SR', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-MA Tablet SR', 'Can the use of Levopalm-MA Tablet SR cause dry mouth?', 'Yes, the use of Levopalm-MA Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(2547, 'Levopalm-MA Tablet SR', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-MA Tablet SR', 'Can I use Levopalm-MA Tablet SR while breastfeeding?', 'No, Levopalm-MA Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(2548, 'Levopalm-MA Tablet SR', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-MA Tablet SR', 'Can I drink alcohol while taking Levopalm-MA Tablet SR?', 'No, avoid drinking alcohol while taking Levopalm-MA Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Levopalm-MA Tablet SR.'),
(2549, 'Levopalm-MA Tablet SR', 'Rekin Pharma Pvt. Ltd.', 'Levopalm-MA Tablet SR', 'What are the instructions for the storage and disposal of Levopalm-MA Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(2550, 'Levopan 500mg Tablet', 'Pancare Pharmaceuticals Pvt Ltd', 'Levopan 500mg Tablet', 'Is Levopan 500mg Tablet safe?', 'Levopan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2551, 'Levopan 500mg Tablet', 'Pancare Pharmaceuticals Pvt Ltd', 'Levopan 500mg Tablet', 'What if I forget to take a dose of Levopan 500mg Tablet?', 'If you forget a dose of Levopan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2552, 'Levopan 500mg Tablet', 'Pancare Pharmaceuticals Pvt Ltd', 'Levopan 500mg Tablet', 'Can the use of Levopan 500mg Tablet cause diarrhea?', 'Yes, the use of Levopan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2553, 'Levopan 500mg Tablet', 'Pancare Pharmaceuticals Pvt Ltd', 'Levopan 500mg Tablet', 'Can I stop taking Levopan 500mg Tablet when I feel better?', 'No, do not stop taking Levopan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopan 500mg Tablet in the dose and duration advised by the doctor.'),
(2554, 'Levopan 500mg Tablet', 'Pancare Pharmaceuticals Pvt Ltd', 'Levopan 500mg Tablet', 'Can the use of Levopan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2555, 'Levopan 5mg Tablet', 'Panzer Pharmaceuticals Pvt Ltd', 'Levopan 5mg Tablet', 'Is Levopan 5mg Tablet a steroid? What is it used for?', 'No, Levopan 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2556, 'Levopan 5mg Tablet', 'Panzer Pharmaceuticals Pvt Ltd', 'Levopan 5mg Tablet', 'Does Levopan 5mg Tablet make you tired and drowsy?', 'Yes, Levopan 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2557, 'Levopan 5mg Tablet', 'Panzer Pharmaceuticals Pvt Ltd', 'Levopan 5mg Tablet', 'How long does it take for Levopan 5mg Tablet to work?', 'Levopan 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2558, 'Levopan 5mg Tablet', 'Panzer Pharmaceuticals Pvt Ltd', 'Levopan 5mg Tablet', 'Can I take Levopan 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopan 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2559, 'Levopan 5mg Tablet', 'Panzer Pharmaceuticals Pvt Ltd', 'Levopan 5mg Tablet', 'Is it safe to take Levopan 5mg Tablet for a long time?', 'Levopan 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopan 5mg Tablet for only as long as you need it.'),
(2560, 'Levopan 5mg Tablet', 'Panzer Pharmaceuticals Pvt Ltd', 'Levopan 5mg Tablet', 'For how long should I continue Levopan 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopan 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopan 5mg Tablet'),
(2561, 'Levopan Capsule SR', 'Sundyota Numandis Probioceuticals Pvt Ltd', 'Levopan Capsule SR', 'What is the best time to take Levopan Capsule SR?', 'Take Levopan Capsule SR exactly as directed by your doctor. It is best to take one capsule on an empty stomach daily.'),
(2562, 'Levopan Capsule SR', 'Sundyota Numandis Probioceuticals Pvt Ltd', 'Levopan Capsule SR', 'What are the contraindications associated with the use of Levopan Capsule SR?', 'The use of Levopan Capsule SR should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(2563, 'Levopan Capsule SR', 'Sundyota Numandis Probioceuticals Pvt Ltd', 'Levopan Capsule SR', 'Can the use of Levopan Capsule SR cause dizziness?', 'Yes, the use of Levopan Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(2564, 'Levopan Capsule SR', 'Sundyota Numandis Probioceuticals Pvt Ltd', 'Levopan Capsule SR', 'Does the use of Levopan Capsule SR lead to increased risk of fractures?', 'Several studies in adults suggest that Levopan Capsule SR may increase the risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was more in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(2565, 'Levopass 500mg Tablet', 'Passim Medica', 'Levopass 500mg Tablet', 'Q. Is Levopass 500mg Tablet safe?', 'Levopass 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2566, 'Levopass 500mg Tablet', 'Passim Medica', 'Levopass 500mg Tablet', 'Q. What if I forget to take a dose of Levopass 500mg Tablet?', 'If you forget a dose of Levopass 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2567, 'Levopass 500mg Tablet', 'Passim Medica', 'Levopass 500mg Tablet', 'Q. Can the use of Levopass 500mg Tablet cause diarrhea?', 'Yes, the use of Levopass 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2568, 'Levopass 500mg Tablet', 'Passim Medica', 'Levopass 500mg Tablet', 'Q. Can I stop taking Levopass 500mg Tablet when I feel better?', 'No, do not stop taking Levopass 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopass 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopass 500mg Tablet in the dose and duration advised by the doctor.'),
(2569, 'Levopass 500mg Tablet', 'Passim Medica', 'Levopass 500mg Tablet', 'Q. Can the use of Levopass 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopass 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopass 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2570, 'Levopath 5mg Tablet', 'Wellpath Healthcare', 'Levopath 5mg Tablet', 'Is Levopath 5mg Tablet a steroid? What is it used for?', 'No, Levopath 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2571, 'Levopath 5mg Tablet', 'Wellpath Healthcare', 'Levopath 5mg Tablet', 'Does Levopath 5mg Tablet make you tired and drowsy?', 'Yes, Levopath 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2572, 'Levopath 5mg Tablet', 'Wellpath Healthcare', 'Levopath 5mg Tablet', 'How long does it take for Levopath 5mg Tablet to work?', 'Levopath 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2573, 'Levopath 5mg Tablet', 'Wellpath Healthcare', 'Levopath 5mg Tablet', 'Can I take Levopath 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopath 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2574, 'Levopath 5mg Tablet', 'Wellpath Healthcare', 'Levopath 5mg Tablet', 'Is it safe to take Levopath 5mg Tablet for a long time?', 'Levopath 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopath 5mg Tablet for only as long as you need it.'),
(2575, 'Levopath 5mg Tablet', 'Wellpath Healthcare', 'Levopath 5mg Tablet', 'For how long should I continue Levopath 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopath 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopath 5mg Tablet'),
(2576, 'Levopath Tablet', 'Superlative Healthcare', 'Levopath Tablet', 'Is Levopath Tablet a steroid? What is it used for?', 'No, Levopath Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2577, 'Levopath Tablet', 'Superlative Healthcare', 'Levopath Tablet', 'Does Levopath Tablet make you tired and drowsy?', 'Yes, Levopath Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2578, 'Levopath Tablet', 'Superlative Healthcare', 'Levopath Tablet', 'How long does it take for Levopath Tablet to work?', 'Levopath Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2579, 'Levopath Tablet', 'Superlative Healthcare', 'Levopath Tablet', 'Can I take Levopath Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopath Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2580, 'Levopath Tablet', 'Superlative Healthcare', 'Levopath Tablet', 'Is it safe to take Levopath Tablet for a long time?', 'Levopath Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopath Tablet for only as long as you need it.'),
(2581, 'Levopath Tablet', 'Superlative Healthcare', 'Levopath Tablet', 'For how long should I continue Levopath Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopath Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopath Tablet'),
(2582, 'Levopath-M Tablet', 'Superlative Healthcare', 'Levopath-M Tablet', 'What is Levopath-M Tablet?', 'Levopath-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2583, 'Levopath-M Tablet', 'Superlative Healthcare', 'Levopath-M Tablet', 'Can the use of Levopath-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levopath-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2584, 'Levopath-M Tablet', 'Superlative Healthcare', 'Levopath-M Tablet', 'Can Levopath-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levopath-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2585, 'Levopath-M Tablet', 'Superlative Healthcare', 'Levopath-M Tablet', 'Can the use of Levopath-M Tablet cause dry mouth?', 'Yes, the use of Levopath-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2586, 'Levopath-M Tablet', 'Superlative Healthcare', 'Levopath-M Tablet', 'Can I drink alcohol while taking Levopath-M Tablet?', 'No, do not take alcohol while taking Levopath-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levopath-M Tablet.'),
(2587, 'Levopath-M Tablet', 'Superlative Healthcare', 'Levopath-M Tablet', 'Will Levopath-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levopath-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2588, 'Levopath-M Tablet', 'Superlative Healthcare', 'Levopath-M Tablet', 'What are the instructions for storage and disposal of Levopath-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2589, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'What is Levopauz 0.05mg/0.25mg Tablet and what is it used for?', 'Levopauz 0.05mg/0.25mg Tablet is a combined oral contraceptive medicine that contains two hormones estrogen and progesterone. It is used to prevent pregnancy.'),
(2590, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'What if I forget to take Levopauz 0.05mg/0.25mg Tablet?', 'If you forget to take one tablet, take it as soon as you remember, even if it means taking two tablets at same time and then follow the usual dosing schedule. However, if you forget to take two or more doses, you may not be totally protected against pregnancy. In this case, start taking the tablet as soon as you remember and use a non-hormonal method of contraception such as condoms for at least next 7 days to prevent pregnancy. Frequent missing of doses may lead to unexpected vaginal bleeding or spotting (blood stain). Consult your doctor if this persists.'),
(2591, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'How and in what dose should I take Levopauz 0.05mg/0.25mg Tablet?', 'Take this medicine as per the advice of your doctor. However, take it at the same time each day, to ensure consistent levels of medicine in your body.'),
(2592, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'Are there any specific contraindications associated with the use of Levopauz 0.05mg/0.25mg Tablet?', 'The use of Levopauz 0.05mg/0.25mg Tablet is not recommended to patients with known allergy to any of its components or excipients. It is not advised to be used by patients with a history of high blood pressure, heart disease, diabetes mellitus, migraine headache, liver disease or tumors, uterine bleeding, breast cancer, deep vein thrombosis and pulmonary embolism (blood clot).'),
(2593, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'Can Levopauz 0.05mg/0.25mg Tablet be taken by a patient who smokes?', 'Levopauz 0.05mg/0.25mg Tablet should not be taken by a person who smokes. Smoking increases the risk of serious side effects like death from heart attack, blood clots or stroke. The risk increases in patients who are obese or over 35 years of age and people who are heavy smokers. Inform your doctor if you smoke, before taking Levopauz 0.05mg/0.25mg Tablet.'),
(2594, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'What if I miss my regular menstrual periods while taking Levopauz 0.05mg/0.25mg Tablet?', 'If you miss your menstrual periods while taking Levopauz 0.05mg/0.25mg Tablet, you may be pregnant. Some women may miss periods or have light periods while taking Levopauz 0.05mg/0.25mg Tablet even if they are not pregnant. Contact your doctor if you think you are pregnant or have missed one or two periods. This may happen in case you are not taking Levopauz 0.05mg/0.25mg Tablet at the same time every day.'),
(2595, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'Can Levopauz 0.05mg/0.25mg Tablet cause bleeding or spotting between the regular menstrual periods?', 'Yes, Levopauz 0.05mg/0.25mg Tablet can cause some unexpected bleeding or spotting, especially during the first three months. Do not stop taking Levopauz 0.05mg/0.25mg Tablet because of this. This bleeding or spotting decreases with time. You may have unexpected bleeding if you do not take the pills regularly. Consult your doctor if the spotting continues for more than seven days or if the bleeding is heavy.'),
(2596, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'What if I vomit after taking Levopauz 0.05mg/0.25mg Tablet?', 'If you vomit within 3-4 hours after taking Levopauz 0.05mg/0.25mg Tablet tablet, then it is considered as a missed dose. So, you should take an another dose as soon as you feel well enough.'),
(2597, 'Levopauz 0.05mg/0.25mg Tablet', 'Precia Pharma', 'Levopauz 0.05mg/0.25mg Tablet', 'What are the common side effects of taking Levopauz 0.05mg/0.25mg Tablet?', 'You may experience irregular vaginal bleeding while taking Levopauz 0.05mg/0.25mg Tablet. Other common side effects include headache, nausea (feeling sick), acne, depression (sad mood), and breast pain. Most of them are temporary. If these persist, consult with your doctor.'),
(2598, 'Levopax 500mg Tablet', 'Radico Remedies', 'Levopax 500mg Tablet', 'Is Levopax 500mg Tablet safe?', 'Levopax 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2599, 'Levopax 500mg Tablet', 'Radico Remedies', 'Levopax 500mg Tablet', 'What if I forget to take a dose of Levopax 500mg Tablet?', 'If you forget a dose of Levopax 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2600, 'Levopax 500mg Tablet', 'Radico Remedies', 'Levopax 500mg Tablet', 'Can the use of Levopax 500mg Tablet cause diarrhea?', 'Yes, the use of Levopax 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2601, 'Levopax 500mg Tablet', 'Radico Remedies', 'Levopax 500mg Tablet', 'Can I stop taking Levopax 500mg Tablet when I feel better?', 'No, do not stop taking Levopax 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopax 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopax 500mg Tablet in the dose and duration advised by the doctor.'),
(2602, 'Levopax 500mg Tablet', 'Radico Remedies', 'Levopax 500mg Tablet', 'Can the use of Levopax 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopax 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopax 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2603, 'Levopen 250mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 250mg Tablet', 'Is Levopen 250mg Tablet safe?', 'Levopen 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2604, 'Levopen 250mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 250mg Tablet', 'What if I forget to take a dose of Levopen 250mg Tablet?', 'If you forget a dose of Levopen 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2605, 'Levopen 250mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 250mg Tablet', 'Can the use of Levopen 250mg Tablet cause diarrhea?', 'Yes, the use of Levopen 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2606, 'Levopen 250mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 250mg Tablet', 'Can I stop taking Levopen 250mg Tablet when I feel better?', 'No, do not stop taking Levopen 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopen 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levopen 250mg Tablet in the dose and duration advised by the doctor.'),
(2607, 'Levopen 250mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 250mg Tablet', 'Can the use of Levopen 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopen 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopen 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2608, 'Levopen 500mg Infusion', 'Morepen Laboratories Ltd', 'Levopen 500mg Infusion', 'Is Levopen 500mg Infusion safe?', 'Levopen 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2609, 'Levopen 500mg Infusion', 'Morepen Laboratories Ltd', 'Levopen 500mg Infusion', 'Can the use of Levopen 500mg Infusion cause diarrhea?', 'Yes, the use of Levopen 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2610, 'Levopen 500mg Infusion', 'Morepen Laboratories Ltd', 'Levopen 500mg Infusion', 'Can the use of Levopen 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levopen 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopen 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2611, 'Levopen 500mg Infusion', 'Morepen Laboratories Ltd', 'Levopen 500mg Infusion', 'How is Levopen 500mg Infusion administered?', 'Levopen 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levopen 500mg Infusion.'),
(2612, 'Levopen 500mg Infusion', 'Morepen Laboratories Ltd', 'Levopen 500mg Infusion', 'Is Levopen 500mg Infusion effective?', 'Levopen 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levopen 500mg Infusion too early, the symptoms may return or worsen.'),
(2613, 'Levopen 500mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 500mg Tablet', 'Is Levopen 500mg Tablet safe?', 'Levopen 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2614, 'Levopen 500mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 500mg Tablet', 'What if I forget to take a dose of Levopen 500mg Tablet?', 'If you forget a dose of Levopen 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2615, 'Levopen 500mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 500mg Tablet', 'Can the use of Levopen 500mg Tablet cause diarrhea?', 'Yes, the use of Levopen 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2616, 'Levopen 500mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 500mg Tablet', 'Can I stop taking Levopen 500mg Tablet when I feel better?', 'No, do not stop taking Levopen 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopen 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopen 500mg Tablet in the dose and duration advised by the doctor.'),
(2617, 'Levopen 500mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 500mg Tablet', 'Can the use of Levopen 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopen 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopen 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2618, 'Levopen 750mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 750mg Tablet', 'Is Levopen 750mg Tablet safe?', 'Levopen 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2619, 'Levopen 750mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 750mg Tablet', 'What if I forget to take a dose of Levopen 750mg Tablet?', 'If you forget a dose of Levopen 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2620, 'Levopen 750mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 750mg Tablet', 'Can the use of Levopen 750mg Tablet cause diarrhea?', 'Yes, the use of Levopen 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2621, 'Levopen 750mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 750mg Tablet', 'Can I stop taking Levopen 750mg Tablet when I feel better?', 'No, do not stop taking Levopen 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopen 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levopen 750mg Tablet in the dose and duration advised by the doctor.'),
(2622, 'Levopen 750mg Tablet', 'Morepen Laboratories Ltd', 'Levopen 750mg Tablet', 'Can the use of Levopen 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopen 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopen 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2623, 'Levopet 500mg Tablet', 'Petal Lifesciences', 'Levopet 500mg Tablet (Petal Lifesciences)', 'Is Levopet 500mg Tablet safe?', 'Levopet 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2624, 'Levopet 500mg Tablet', 'Petal Lifesciences', 'Levopet 500mg Tablet (Petal Lifesciences)', 'What if I forget to take a dose of Levopet 500mg Tablet?', 'If you forget a dose of Levopet 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2625, 'Levopet 500mg Tablet', 'Petal Lifesciences', 'Levopet 500mg Tablet (Petal Lifesciences)', 'Can the use of Levopet 500mg Tablet cause diarrhea?', 'Yes, the use of Levopet 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2626, 'Levopet 500mg Tablet', 'Petal Lifesciences', 'Levopet 500mg Tablet (Petal Lifesciences)', 'Can I stop taking Levopet 500mg Tablet when I feel better?', 'No, do not stop taking Levopet 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopet 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopet 500mg Tablet in the dose and duration advised by the doctor.'),
(2627, 'Levopet 500mg Tablet', 'Petal Lifesciences', 'Levopet 500mg Tablet (Petal Lifesciences)', 'Can the use of Levopet 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopet 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopet 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2628, 'Levopet 500mg Tablet', 'Vista Health Care', 'Levopet 500mg Tablet (Vista Health Care)', 'Is Levopet 500mg Tablet safe?', 'Levopet 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2629, 'Levopet 500mg Tablet', 'Vista Health Care', 'Levopet 500mg Tablet (Vista Health Care)', 'What if I forget to take a dose of Levopet 500mg Tablet?', 'If you forget a dose of Levopet 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2630, 'Levopet 500mg Tablet', 'Vista Health Care', 'Levopet 500mg Tablet (Vista Health Care)', 'Can the use of Levopet 500mg Tablet cause diarrhea?', 'Yes, the use of Levopet 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2631, 'Levopet 500mg Tablet', 'Vista Health Care', 'Levopet 500mg Tablet (Vista Health Care)', 'Can I stop taking Levopet 500mg Tablet when I feel better?', 'No, do not stop taking Levopet 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopet 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopet 500mg Tablet in the dose and duration advised by the doctor.'),
(2632, 'Levopet 500mg Tablet', 'Vista Health Care', 'Levopet 500mg Tablet (Vista Health Care)', 'Can the use of Levopet 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopet 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopet 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2633, 'Levophar 500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar 500mg Tablet', 'Is Levophar 500mg Tablet safe?', 'Levophar 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2634, 'Levophar 500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar 500mg Tablet', 'What if I forget to take a dose of Levophar 500mg Tablet?', 'If you forget a dose of Levophar 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2635, 'Levophar 500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar 500mg Tablet', 'Can the use of Levophar 500mg Tablet cause diarrhea?', 'Yes, the use of Levophar 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2636, 'Levophar 500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar 500mg Tablet', 'Can I stop taking Levophar 500mg Tablet when I feel better?', 'No, do not stop taking Levophar 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levophar 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levophar 500mg Tablet in the dose and duration advised by the doctor.'),
(2637, 'Levophar 500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar 500mg Tablet', 'Can the use of Levophar 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levophar 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levophar 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2638, 'Levophar OZ 250mg/500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levophar OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2639, 'Levophar OZ 250mg/500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar OZ 250mg/500mg Tablet', 'Can I stop taking Levophar OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levophar OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2640, 'Levophar OZ 250mg/500mg Tablet', 'Uniphar Biotech Private Limited', 'Levophar OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levophar OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2641, 'Levophase-M Tablet', 'Griffins Life Sciences Pvt. Ltd', 'Levophase-M Tablet', 'What is Levophase-M Tablet?', 'Levophase-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2642, 'Levophase-M Tablet', 'Griffins Life Sciences Pvt. Ltd', 'Levophase-M Tablet', 'Can the use of Levophase-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levophase-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2643, 'Levophase-M Tablet', 'Griffins Life Sciences Pvt. Ltd', 'Levophase-M Tablet', 'Can Levophase-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levophase-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2644, 'Levophase-M Tablet', 'Griffins Life Sciences Pvt. Ltd', 'Levophase-M Tablet', 'Can the use of Levophase-M Tablet cause dry mouth?', 'Yes, the use of Levophase-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2645, 'Levophase-M Tablet', 'Griffins Life Sciences Pvt. Ltd', 'Levophase-M Tablet', 'Can I drink alcohol while taking Levophase-M Tablet?', 'No, do not take alcohol while taking Levophase-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levophase-M Tablet.'),
(2646, 'Levophase-M Tablet', 'Griffins Life Sciences Pvt. Ltd', 'Levophase-M Tablet', 'Will Levophase-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levophase-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2647, 'Levophase-M Tablet', 'Griffins Life Sciences Pvt. Ltd', 'Levophase-M Tablet', 'What are the instructions for storage and disposal of Levophase-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2648, 'Levopic 250mg Tablet', 'Astopic Lifescience', 'Levopic 250mg Tablet', 'Is Levopic 250mg Tablet safe?', 'Levopic 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2649, 'Levopic 250mg Tablet', 'Astopic Lifescience', 'Levopic 250mg Tablet', 'What if I forget to take a dose of Levopic 250mg Tablet?', 'If you forget a dose of Levopic 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2650, 'Levopic 250mg Tablet', 'Astopic Lifescience', 'Levopic 250mg Tablet', 'Can the use of Levopic 250mg Tablet cause diarrhea?', 'Yes, the use of Levopic 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2651, 'Levopic 250mg Tablet', 'Astopic Lifescience', 'Levopic 250mg Tablet', 'Can I stop taking Levopic 250mg Tablet when I feel better?', 'No, do not stop taking Levopic 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopic 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levopic 250mg Tablet in the dose and duration advised by the doctor.'),
(2652, 'Levopic 250mg Tablet', 'Astopic Lifescience', 'Levopic 250mg Tablet', 'Can the use of Levopic 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopic 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopic 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2653, 'Levopic 500mg Tablet', 'Astopic Lifescience', 'Levopic 500mg Tablet', 'Is Levopic 500mg Tablet safe?', 'Levopic 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2654, 'Levopic 500mg Tablet', 'Astopic Lifescience', 'Levopic 500mg Tablet', 'What if I forget to take a dose of Levopic 500mg Tablet?', 'If you forget a dose of Levopic 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2655, 'Levopic 500mg Tablet', 'Astopic Lifescience', 'Levopic 500mg Tablet', 'Can the use of Levopic 500mg Tablet cause diarrhea?', 'Yes, the use of Levopic 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2656, 'Levopic 500mg Tablet', 'Astopic Lifescience', 'Levopic 500mg Tablet', 'Can I stop taking Levopic 500mg Tablet when I feel better?', 'No, do not stop taking Levopic 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopic 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopic 500mg Tablet in the dose and duration advised by the doctor.'),
(2657, 'Levopic 500mg Tablet', 'Astopic Lifescience', 'Levopic 500mg Tablet', 'Can the use of Levopic 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopic 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopic 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2658, 'Levopic OZ 250mg/500mg Tablet', 'Astopic Lifescience', 'Levopic OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levopic OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2659, 'Levopic OZ 250mg/500mg Tablet', 'Astopic Lifescience', 'Levopic OZ 250mg/500mg Tablet', 'Can I stop taking Levopic OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levopic OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2660, 'Levopic OZ 250mg/500mg Tablet', 'Astopic Lifescience', 'Levopic OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levopic OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2661, 'Levopich-M Tablet SR', 'Pich Pharma', 'Levopich-M Tablet SR', 'What is Levopich-M Tablet SR?', 'Levopich-M Tablet SR is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2662, 'Levopich-M Tablet SR', 'Pich Pharma', 'Levopich-M Tablet SR', 'Can the use of Levopich-M Tablet SR cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levopich-M Tablet SR is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2663, 'Levopich-M Tablet SR', 'Pich Pharma', 'Levopich-M Tablet SR', 'Can Levopich-M Tablet SR be stopped when allergy symptoms are relieved?', 'No, Levopich-M Tablet SR should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2664, 'Levopich-M Tablet SR', 'Pich Pharma', 'Levopich-M Tablet SR', 'Can the use of Levopich-M Tablet SR cause dry mouth?', 'Yes, the use of Levopich-M Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2665, 'Levopich-M Tablet SR', 'Pich Pharma', 'Levopich-M Tablet SR', 'Can I drink alcohol while taking Levopich-M Tablet SR?', 'No, do not take alcohol while taking Levopich-M Tablet SR. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levopich-M Tablet SR.'),
(2666, 'Levopich-M Tablet SR', 'Pich Pharma', 'Levopich-M Tablet SR', 'Will Levopich-M Tablet SR be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levopich-M Tablet SR can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2667, 'Levopich-M Tablet SR', 'Pich Pharma', 'Levopich-M Tablet SR', 'What are the instructions for storage and disposal of Levopich-M Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2668, 'Levopie M 5mg/10mg Tablet', 'S.P Pharmaceuticals', 'Levopie M 5mg/10mg Tablet', 'What is Levopie M 5mg/10mg Tablet?', 'Levopie M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2669, 'Levopie M 5mg/10mg Tablet', 'S.P Pharmaceuticals', 'Levopie M 5mg/10mg Tablet', 'Can the use of Levopie M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levopie M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2670, 'Levopie M 5mg/10mg Tablet', 'S.P Pharmaceuticals', 'Levopie M 5mg/10mg Tablet', 'Can Levopie M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levopie M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2671, 'Levopie M 5mg/10mg Tablet', 'S.P Pharmaceuticals', 'Levopie M 5mg/10mg Tablet', 'Can the use of Levopie M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levopie M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2672, 'Levopie M 5mg/10mg Tablet', 'S.P Pharmaceuticals', 'Levopie M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levopie M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levopie M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levopie M 5mg/10mg Tablet.'),
(2673, 'Levopie M 5mg/10mg Tablet', 'S.P Pharmaceuticals', 'Levopie M 5mg/10mg Tablet', 'Will Levopie M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levopie M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2674, 'Levopie M 5mg/10mg Tablet', 'S.P Pharmaceuticals', 'Levopie M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levopie M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2675, 'Levopil 500mg Syrup', 'Psychotropics India Ltd', 'Levopil 500mg Syrup', 'Is Levopil 500mg Syrup safe?', 'Levopil 500mg Syrup is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2676, 'Levopil 500mg Syrup', 'Psychotropics India Ltd', 'Levopil 500mg Syrup', 'What if I forget to take a dose of Levopil 500mg Syrup?', 'If you forget a dose of Levopil 500mg Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2677, 'Levopil 500mg Syrup', 'Psychotropics India Ltd', 'Levopil 500mg Syrup', 'Can the use of Levopil 500mg Syrup cause diarrhea?', 'Yes, the use of Levopil 500mg Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2678, 'Levopil 500mg Syrup', 'Psychotropics India Ltd', 'Levopil 500mg Syrup', 'Can I stop taking Levopil 500mg Syrup when I feel better?', 'No, do not stop taking Levopil 500mg Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopil 500mg Syrup too early, the symptoms may return or worsen. Continue taking Levopil 500mg Syrup in the dose and duration advised by the doctor.'),
(2679, 'Levopil 500mg Syrup', 'Psychotropics India Ltd', 'Levopil 500mg Syrup', 'Can the use of Levopil 500mg Syrup increase the risk of muscle damage?', 'Yes, the use of Levopil 500mg Syrup is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopil 500mg Syrup but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2680, 'Levopil 500mg Tablet', 'Psychotropics India Ltd', 'Levopil 500mg Tablet', 'Is Levopil 500mg Tablet safe?', 'Levopil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2681, 'Levopil 500mg Tablet', 'Psychotropics India Ltd', 'Levopil 500mg Tablet', 'What if I forget to take a dose of Levopil 500mg Tablet?', 'If you forget a dose of Levopil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2682, 'Levopil 500mg Tablet', 'Psychotropics India Ltd', 'Levopil 500mg Tablet', 'Can the use of Levopil 500mg Tablet cause diarrhea?', 'Yes, the use of Levopil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2683, 'Levopil 500mg Tablet', 'Psychotropics India Ltd', 'Levopil 500mg Tablet', 'Can I stop taking Levopil 500mg Tablet when I feel better?', 'No, do not stop taking Levopil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopil 500mg Tablet in the dose and duration advised by the doctor.'),
(2684, 'Levopil 500mg Tablet', 'Psychotropics India Ltd', 'Levopil 500mg Tablet', 'Can the use of Levopil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2685, 'Levopin 5mg Tablet', 'Pinamed Drugs Pvt Ltd', 'Levopin 5mg Tablet', 'Is Levopin 5mg Tablet a steroid? What is it used for?', 'No, Levopin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2686, 'Levopin 5mg Tablet', 'Pinamed Drugs Pvt Ltd', 'Levopin 5mg Tablet', 'Does Levopin 5mg Tablet make you tired and drowsy?', 'Yes, Levopin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2687, 'Levopin 5mg Tablet', 'Pinamed Drugs Pvt Ltd', 'Levopin 5mg Tablet', 'How long does it take for Levopin 5mg Tablet to work?', 'Levopin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2688, 'Levopin 5mg Tablet', 'Pinamed Drugs Pvt Ltd', 'Levopin 5mg Tablet', 'Can I take Levopin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2689, 'Levopin 5mg Tablet', 'Pinamed Drugs Pvt Ltd', 'Levopin 5mg Tablet', 'Is it safe to take Levopin 5mg Tablet for a long time?', 'Levopin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopin 5mg Tablet for only as long as you need it.'),
(2690, 'Levopin 5mg Tablet', 'Pinamed Drugs Pvt Ltd', 'Levopin 5mg Tablet', 'For how long should I continue Levopin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopin 5mg Tablet'),
(2691, 'Levoplan 5mg Tablet', 'Parenteral Drugs India Ltd', 'Levoplan 5mg Tablet', 'Is Levoplan 5mg Tablet a steroid? What is it used for?', 'No, Levoplan 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2692, 'Levoplan 5mg Tablet', 'Parenteral Drugs India Ltd', 'Levoplan 5mg Tablet', 'Does Levoplan 5mg Tablet make you tired and drowsy?', 'Yes, Levoplan 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2693, 'Levoplan 5mg Tablet', 'Parenteral Drugs India Ltd', 'Levoplan 5mg Tablet', 'How long does it take for Levoplan 5mg Tablet to work?', 'Levoplan 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2694, 'Levoplan 5mg Tablet', 'Parenteral Drugs India Ltd', 'Levoplan 5mg Tablet', 'Can I take Levoplan 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoplan 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2695, 'Levoplan 5mg Tablet', 'Parenteral Drugs India Ltd', 'Levoplan 5mg Tablet', 'Is it safe to take Levoplan 5mg Tablet for a long time?', 'Levoplan 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoplan 5mg Tablet for only as long as you need it.'),
(2696, 'Levoplan 5mg Tablet', 'Parenteral Drugs India Ltd', 'Levoplan 5mg Tablet', 'For how long should I continue Levoplan 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoplan 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoplan 5mg Tablet'),
(2697, 'Levoplanet-D Syrup', 'Saphnix Life Sciences', 'Levoplanet-D Syrup', 'Can the use of Levoplanet-D Syrup cause sleepiness or drowsiness?', 'Yes, Levoplanet-D Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(2698, 'Levoplanet-D Syrup', 'Saphnix Life Sciences', 'Levoplanet-D Syrup', 'Will Levoplanet-D Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(2699, 'Levoplanet-D Syrup', 'Saphnix Life Sciences', 'Levoplanet-D Syrup', 'Can I breastfeed while taking Levoplanet-D Syrup?', 'No, it is not advisable to breastfeed while using Levoplanet-D Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(2700, 'Levoplanet-D Syrup', 'Saphnix Life Sciences', 'Levoplanet-D Syrup', 'What are the instructions for storage and disposal of Levoplanet-D Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(2701, 'Levoplas 500mg Tablet', 'Plasmid Healthcare Pvt Ltd', 'Levoplas 500mg Tablet', 'Is Levoplas 500mg Tablet safe?', 'Levoplas 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2702, 'Levoplas 500mg Tablet', 'Plasmid Healthcare Pvt Ltd', 'Levoplas 500mg Tablet', 'What if I forget to take a dose of Levoplas 500mg Tablet?', 'If you forget a dose of Levoplas 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2703, 'Levoplas 500mg Tablet', 'Plasmid Healthcare Pvt Ltd', 'Levoplas 500mg Tablet', 'Can the use of Levoplas 500mg Tablet cause diarrhea?', 'Yes, the use of Levoplas 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2704, 'Levoplas 500mg Tablet', 'Plasmid Healthcare Pvt Ltd', 'Levoplas 500mg Tablet', 'Can I stop taking Levoplas 500mg Tablet when I feel better?', 'No, do not stop taking Levoplas 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoplas 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoplas 500mg Tablet in the dose and duration advised by the doctor.'),
(2705, 'Levoplas 500mg Tablet', 'Plasmid Healthcare Pvt Ltd', 'Levoplas 500mg Tablet', 'Can the use of Levoplas 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoplas 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoplas 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2706, 'Levoplex OZ Oral Suspension', 'Biolex Pharmaceutical Private Limited', 'Levoplex OZ Oral Suspension', 'What if I don\'t get better after using Levoplex OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2707, 'Levoplex OZ Oral Suspension', 'Biolex Pharmaceutical Private Limited', 'Levoplex OZ Oral Suspension', 'Can I stop taking Levoplex OZ Oral Suspension when I feel better?', 'No, do not stop taking Levoplex OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2708, 'Levoplex OZ Oral Suspension', 'Biolex Pharmaceutical Private Limited', 'Levoplex OZ Oral Suspension', 'What if I miss my dose?', 'Take Levoplex OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2709, 'Levoplug-OZ Tablet', 'Pharvax Biosciences', 'Levoplug-OZ Tablet', 'What if I don\'t get better after using Levoplug-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2710, 'Levoplug-OZ Tablet', 'Pharvax Biosciences', 'Levoplug-OZ Tablet', 'Can I stop taking Levoplug-OZ Tablet when I feel better?', 'No, do not stop taking Levoplug-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2711, 'Levoplug-OZ Tablet', 'Pharvax Biosciences', 'Levoplug-OZ Tablet', 'What if I miss my dose?', 'Take Levoplug-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2712, 'Levop-M 5mg/10mg Tablet', 'Pax Healthcare', 'Levop-M 5mg/10mg Tablet', 'What is Levop-M 5mg/10mg Tablet?', 'Levop-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2713, 'Levop-M 5mg/10mg Tablet', 'Pax Healthcare', 'Levop-M 5mg/10mg Tablet', 'Can the use of Levop-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levop-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2714, 'Levop-M 5mg/10mg Tablet', 'Pax Healthcare', 'Levop-M 5mg/10mg Tablet', 'Can Levop-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levop-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2715, 'Levop-M 5mg/10mg Tablet', 'Pax Healthcare', 'Levop-M 5mg/10mg Tablet', 'Can the use of Levop-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levop-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2716, 'Levop-M 5mg/10mg Tablet', 'Pax Healthcare', 'Levop-M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levop-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levop-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levop-M 5mg/10mg Tablet.'),
(2717, 'Levop-M 5mg/10mg Tablet', 'Pax Healthcare', 'Levop-M 5mg/10mg Tablet', 'Will Levop-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levop-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2718, 'Levop-M 5mg/10mg Tablet', 'Pax Healthcare', 'Levop-M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levop-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2719, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2720, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'Can I decrease the dose of Levop-M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2721, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'How should Levop-M Kid Tablet be stored?', 'Levop-M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2722, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'Can Levop-M Kid Tablet make my child sleepy?', 'Levop-M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2723, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levop-M Kid Tablet?', 'No, don’t start Levop-M Kid Tablet without speaking to your child’s doctor. Moreover, Levop-M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2724, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levop-M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2725, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levop-M Kid Tablet to my child?', 'Some studies show that Levop-M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2726, 'Levop-M Kid Tablet', 'Pax Healthcare', 'Levop-M Kid Tablet', 'Can I use Levop-M Kid Tablet for treating acute asthma attacks in my child?', 'Levop-M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2727, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2728, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. Can I decrease the dose of Levop-M Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2729, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. How should Levop-M Suspension be stored?', 'Levop-M Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2730, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. Can Levop-M Suspension make my child sleepy?', 'Levop-M Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2731, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levop-M Suspension?', 'No, don’t start Levop-M Suspension without speaking to your child’s doctor. Moreover, Levop-M Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2732, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levop-M Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2733, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. My child is suffering from a mood disorder. Is it safe to give Levop-M Suspension to my child?', 'Some studies show that Levop-M Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2734, 'Levop-M Suspension', 'Pax Healthcare', 'Levop-M Suspension', 'Q. Can I use Levop-M Suspension for treating acute asthma attacks in my child?', 'Levop-M Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2735, 'Levopod 500mg Tablet', 'Aaspada Enterprises Pvt Ltd', 'Levopod 500mg Tablet', 'Is Levopod 500mg Tablet safe?', 'Levopod 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2736, 'Levopod 500mg Tablet', 'Aaspada Enterprises Pvt Ltd', 'Levopod 500mg Tablet', 'What if I forget to take a dose of Levopod 500mg Tablet?', 'If you forget a dose of Levopod 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2737, 'Levopod 500mg Tablet', 'Aaspada Enterprises Pvt Ltd', 'Levopod 500mg Tablet', 'Can the use of Levopod 500mg Tablet cause diarrhea?', 'Yes, the use of Levopod 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2738, 'Levopod 500mg Tablet', 'Aaspada Enterprises Pvt Ltd', 'Levopod 500mg Tablet', 'Can I stop taking Levopod 500mg Tablet when I feel better?', 'No, do not stop taking Levopod 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopod 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopod 500mg Tablet in the dose and duration advised by the doctor.'),
(2739, 'Levopod 500mg Tablet', 'Aaspada Enterprises Pvt Ltd', 'Levopod 500mg Tablet', 'Can the use of Levopod 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopod 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopod 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2740, 'Levopoint M 5mg/10mg Tablet', 'Larizona Pharmaceutical Private Limited', 'Levopoint M 5mg/10mg Tablet', 'What is Levopoint M 5mg/10mg Tablet?', 'Levopoint M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2741, 'Levopoint M 5mg/10mg Tablet', 'Larizona Pharmaceutical Private Limited', 'Levopoint M 5mg/10mg Tablet', 'Can the use of Levopoint M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levopoint M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2742, 'Levopoint M 5mg/10mg Tablet', 'Larizona Pharmaceutical Private Limited', 'Levopoint M 5mg/10mg Tablet', 'Can Levopoint M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levopoint M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2743, 'Levopoint M 5mg/10mg Tablet', 'Larizona Pharmaceutical Private Limited', 'Levopoint M 5mg/10mg Tablet', 'Can the use of Levopoint M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levopoint M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2744, 'Levopoint M 5mg/10mg Tablet', 'Larizona Pharmaceutical Private Limited', 'Levopoint M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levopoint M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levopoint M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levopoint M 5mg/10mg Tablet.'),
(2745, 'Levopoint M 5mg/10mg Tablet', 'Larizona Pharmaceutical Private Limited', 'Levopoint M 5mg/10mg Tablet', 'Will Levopoint M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levopoint M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2746, 'Levopoint M 5mg/10mg Tablet', 'Larizona Pharmaceutical Private Limited', 'Levopoint M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levopoint M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2747, 'Levoport Syrup', 'Global Care', 'Levoport Syrup', 'What is Levoport Syrup?', 'Levoport Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(2748, 'Levoport Syrup', 'Global Care', 'Levoport Syrup', 'Is it safe to use Levoport Syrup?', 'Yes, it is safe to use Levoport Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(2749, 'Levoport Syrup', 'Global Care', 'Levoport Syrup', 'Are there any specific contraindications associated with the use of Levoport Syrup?', 'Use of Levoport Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(2750, 'Levoport Syrup', 'Global Care', 'Levoport Syrup', 'Can the use of Levoport Syrup cause dizziness?', 'Yes, the use of Levoport Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(2751, 'Levoport Syrup', 'Global Care', 'Levoport Syrup', 'Can the use of Levoport Syrup cause diarrhea?', 'Yes, the use of Levoport Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(2752, 'Levoport Syrup', 'Global Care', 'Levoport Syrup', 'What are the recommended storage conditions for Levoport Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(2753, 'Levopower 10mg Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 10mg Tablet', 'Is Levopower 10mg Tablet a steroid? What is it used for?', 'No, Levopower 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2754, 'Levopower 10mg Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 10mg Tablet', 'Does Levopower 10mg Tablet make you tired and drowsy?', 'Yes, Levopower 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2755, 'Levopower 10mg Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 10mg Tablet', 'How long does it take for Levopower 10mg Tablet to work?', 'Levopower 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2756, 'Levopower 10mg Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 10mg Tablet', 'Can I take Levopower 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopower 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2757, 'Levopower 10mg Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 10mg Tablet', 'Is it safe to take Levopower 10mg Tablet for a long time?', 'Levopower 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopower 10mg Tablet for only as long as you need it.'),
(2758, 'Levopower 10mg Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 10mg Tablet', 'For how long should I continue Levopower 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopower 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopower 10mg Tablet'),
(2759, 'Levopower 5 Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 5 Tablet', 'Is Levopower 5 Tablet a steroid? What is it used for?', 'No, Levopower 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2760, 'Levopower 5 Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 5 Tablet', 'Does Levopower 5 Tablet make you tired and drowsy?', 'Yes, Levopower 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2761, 'Levopower 5 Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 5 Tablet', 'How long does it take for Levopower 5 Tablet to work?', 'Levopower 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2762, 'Levopower 5 Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 5 Tablet', 'Can I take Levopower 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopower 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2763, 'Levopower 5 Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 5 Tablet', 'Is it safe to take Levopower 5 Tablet for a long time?', 'Levopower 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopower 5 Tablet for only as long as you need it.'),
(2764, 'Levopower 5 Tablet', 'Dermakare Pharmaceuticals Pvt Ltd', 'Levopower 5 Tablet', 'For how long should I continue Levopower 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopower 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopower 5 Tablet'),
(2765, 'Levopride 500mg Tablet', 'Innovative Pharmaceuticals', 'Levopride 500mg Tablet', 'Is Levopride 500mg Tablet safe?', 'Levopride 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2766, 'Levopride 500mg Tablet', 'Innovative Pharmaceuticals', 'Levopride 500mg Tablet', 'What if I forget to take a dose of Levopride 500mg Tablet?', 'If you forget a dose of Levopride 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2767, 'Levopride 500mg Tablet', 'Innovative Pharmaceuticals', 'Levopride 500mg Tablet', 'Can the use of Levopride 500mg Tablet cause diarrhea?', 'Yes, the use of Levopride 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2768, 'Levopride 500mg Tablet', 'Innovative Pharmaceuticals', 'Levopride 500mg Tablet', 'Can I stop taking Levopride 500mg Tablet when I feel better?', 'No, do not stop taking Levopride 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopride 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopride 500mg Tablet in the dose and duration advised by the doctor.'),
(2769, 'Levopride 500mg Tablet', 'Innovative Pharmaceuticals', 'Levopride 500mg Tablet', 'Can the use of Levopride 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopride 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopride 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2770, 'Levoprig 5 Tablet', 'Prigonex Healthcare', 'Levoprig 5 Tablet', 'Is Levoprig 5 Tablet a steroid? What is it used for?', 'No, Levoprig 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2771, 'Levoprig 5 Tablet', 'Prigonex Healthcare', 'Levoprig 5 Tablet', 'Does Levoprig 5 Tablet make you tired and drowsy?', 'Yes, Levoprig 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2772, 'Levoprig 5 Tablet', 'Prigonex Healthcare', 'Levoprig 5 Tablet', 'How long does it take for Levoprig 5 Tablet to work?', 'Levoprig 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2773, 'Levoprig 5 Tablet', 'Prigonex Healthcare', 'Levoprig 5 Tablet', 'Can I take Levoprig 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoprig 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2774, 'Levoprig 5 Tablet', 'Prigonex Healthcare', 'Levoprig 5 Tablet', 'Is it safe to take Levoprig 5 Tablet for a long time?', 'Levoprig 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoprig 5 Tablet for only as long as you need it.'),
(2775, 'Levoprig 5 Tablet', 'Prigonex Healthcare', 'Levoprig 5 Tablet', 'For how long should I continue Levoprig 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoprig 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoprig 5 Tablet'),
(2776, 'Levoprig M 5mg/10mg Tablet', 'Prigonex Healthcare', 'Levoprig M 5mg/10mg Tablet', 'What is Levoprig M 5mg/10mg Tablet?', 'Levoprig M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2777, 'Levoprig M 5mg/10mg Tablet', 'Prigonex Healthcare', 'Levoprig M 5mg/10mg Tablet', 'Can the use of Levoprig M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoprig M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2778, 'Levoprig M 5mg/10mg Tablet', 'Prigonex Healthcare', 'Levoprig M 5mg/10mg Tablet', 'Can Levoprig M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoprig M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2779, 'Levoprig M 5mg/10mg Tablet', 'Prigonex Healthcare', 'Levoprig M 5mg/10mg Tablet', 'Can the use of Levoprig M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoprig M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2780, 'Levoprig M 5mg/10mg Tablet', 'Prigonex Healthcare', 'Levoprig M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoprig M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoprig M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoprig M 5mg/10mg Tablet.'),
(2781, 'Levoprig M 5mg/10mg Tablet', 'Prigonex Healthcare', 'Levoprig M 5mg/10mg Tablet', 'Will Levoprig M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoprig M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2782, 'Levoprig M 5mg/10mg Tablet', 'Prigonex Healthcare', 'Levoprig M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoprig M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2783, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2784, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levoprig M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2785, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'How should Levoprig M Kid 2.5mg/4mg Tablet be stored?', 'Levoprig M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2786, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'Can Levoprig M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levoprig M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2787, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoprig M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levoprig M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levoprig M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2788, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoprig M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2789, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levoprig M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levoprig M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2790, 'Levoprig M Kid 2.5mg/4mg Tablet', 'Prigonex Healthcare', 'Levoprig M Kid 2.5mg/4mg Tablet', 'Can I use Levoprig M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levoprig M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2791, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2792, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'Can I decrease the dose of Levoprig M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2793, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'How should Levoprig M Syrup be stored?', 'Levoprig M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2794, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'Can Levoprig M Syrup make my child sleepy?', 'Levoprig M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2795, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoprig M Syrup?', 'No, don’t start Levoprig M Syrup without speaking to your child’s doctor. Moreover, Levoprig M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2796, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoprig M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2797, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoprig M Syrup to my child?', 'Some studies show that Levoprig M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2798, 'Levoprig M Syrup', 'Prigonex Healthcare', 'Levoprig M Syrup', 'Can I use Levoprig M Syrup for treating acute asthma attacks in my child?', 'Levoprig M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2799, 'Levoprim M 5mg/10mg Tablet', 'Primus Remedies Pvt Ltd', 'Levoprim M 5mg/10mg Tablet', 'What is Levoprim M 5mg/10mg Tablet?', 'Levoprim M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2800, 'Levoprim M 5mg/10mg Tablet', 'Primus Remedies Pvt Ltd', 'Levoprim M 5mg/10mg Tablet', 'Can the use of Levoprim M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoprim M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2801, 'Levoprim M 5mg/10mg Tablet', 'Primus Remedies Pvt Ltd', 'Levoprim M 5mg/10mg Tablet', 'Can Levoprim M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoprim M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2802, 'Levoprim M 5mg/10mg Tablet', 'Primus Remedies Pvt Ltd', 'Levoprim M 5mg/10mg Tablet', 'Can the use of Levoprim M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoprim M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2803, 'Levoprim M 5mg/10mg Tablet', 'Primus Remedies Pvt Ltd', 'Levoprim M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoprim M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoprim M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoprim M 5mg/10mg Tablet.'),
(2804, 'Levoprim M 5mg/10mg Tablet', 'Primus Remedies Pvt Ltd', 'Levoprim M 5mg/10mg Tablet', 'Will Levoprim M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoprim M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2805, 'Levoprim M 5mg/10mg Tablet', 'Primus Remedies Pvt Ltd', 'Levoprim M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoprim M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2806, 'Levoprin 500 Tablet', 'Cubic Lifesciences Private Limited', 'Levoprin 500 Tablet', 'Is Levoprin 500 Tablet safe?', 'Levoprin 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2807, 'Levoprin 500 Tablet', 'Cubic Lifesciences Private Limited', 'Levoprin 500 Tablet', 'What if I forget to take a dose of Levoprin 500 Tablet?', 'If you forget a dose of Levoprin 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2808, 'Levoprin 500 Tablet', 'Cubic Lifesciences Private Limited', 'Levoprin 500 Tablet', 'Can the use of Levoprin 500 Tablet cause diarrhea?', 'Yes, the use of Levoprin 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2809, 'Levoprin 500 Tablet', 'Cubic Lifesciences Private Limited', 'Levoprin 500 Tablet', 'Can I stop taking Levoprin 500 Tablet when I feel better?', 'No, do not stop taking Levoprin 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoprin 500 Tablet too early, the symptoms may return or worsen. Continue taking Levoprin 500 Tablet in the dose and duration advised by the doctor.'),
(2810, 'Levoprin 500 Tablet', 'Cubic Lifesciences Private Limited', 'Levoprin 500 Tablet', 'Can the use of Levoprin 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoprin 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoprin 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2811, 'Levopro 5mg Tablet', 'Avecia Healthcare', 'Levopro 5mg Tablet', 'Is Levopro 5mg Tablet a steroid? What is it used for?', 'No, Levopro 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2812, 'Levopro 5mg Tablet', 'Avecia Healthcare', 'Levopro 5mg Tablet', 'Does Levopro 5mg Tablet make you tired and drowsy?', 'Yes, Levopro 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2813, 'Levopro 5mg Tablet', 'Avecia Healthcare', 'Levopro 5mg Tablet', 'How long does it take for Levopro 5mg Tablet to work?', 'Levopro 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2814, 'Levopro 5mg Tablet', 'Avecia Healthcare', 'Levopro 5mg Tablet', 'Can I take Levopro 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levopro 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2815, 'Levopro 5mg Tablet', 'Avecia Healthcare', 'Levopro 5mg Tablet', 'Is it safe to take Levopro 5mg Tablet for a long time?', 'Levopro 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levopro 5mg Tablet for only as long as you need it.'),
(2816, 'Levopro 5mg Tablet', 'Avecia Healthcare', 'Levopro 5mg Tablet', 'For how long should I continue Levopro 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levopro 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levopro 5mg Tablet'),
(2817, 'Levopure 250mg Tablet', 'Pure Drugs & Life Science', 'Levopure 250mg Tablet', 'Is Levopure 250mg Tablet safe?', 'Levopure 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2818, 'Levopure 250mg Tablet', 'Pure Drugs & Life Science', 'Levopure 250mg Tablet', 'What if I forget to take a dose of Levopure 250mg Tablet?', 'If you forget a dose of Levopure 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2819, 'Levopure 250mg Tablet', 'Pure Drugs & Life Science', 'Levopure 250mg Tablet', 'Can the use of Levopure 250mg Tablet cause diarrhea?', 'Yes, the use of Levopure 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2820, 'Levopure 250mg Tablet', 'Pure Drugs & Life Science', 'Levopure 250mg Tablet', 'Can I stop taking Levopure 250mg Tablet when I feel better?', 'No, do not stop taking Levopure 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopure 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levopure 250mg Tablet in the dose and duration advised by the doctor.'),
(2821, 'Levopure 250mg Tablet', 'Pure Drugs & Life Science', 'Levopure 250mg Tablet', 'Can the use of Levopure 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopure 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopure 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2822, 'Levopure 500mg Tablet', 'Arovea Lifesciences Pvt Ltd', 'Levopure 500mg Tablet (Arovea Lifesciences Pvt Ltd)', 'Is Levopure 500mg Tablet safe?', 'Levopure 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2823, 'Levopure 500mg Tablet', 'Arovea Lifesciences Pvt Ltd', 'Levopure 500mg Tablet (Arovea Lifesciences Pvt Ltd)', 'What if I forget to take a dose of Levopure 500mg Tablet?', 'If you forget a dose of Levopure 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2824, 'Levopure 500mg Tablet', 'Arovea Lifesciences Pvt Ltd', 'Levopure 500mg Tablet (Arovea Lifesciences Pvt Ltd)', 'Can the use of Levopure 500mg Tablet cause diarrhea?', 'Yes, the use of Levopure 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2825, 'Levopure 500mg Tablet', 'Arovea Lifesciences Pvt Ltd', 'Levopure 500mg Tablet (Arovea Lifesciences Pvt Ltd)', 'Can I stop taking Levopure 500mg Tablet when I feel better?', 'No, do not stop taking Levopure 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopure 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopure 500mg Tablet in the dose and duration advised by the doctor.'),
(2826, 'Levopure 500mg Tablet', 'Arovea Lifesciences Pvt Ltd', 'Levopure 500mg Tablet (Arovea Lifesciences Pvt Ltd)', 'Can the use of Levopure 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopure 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopure 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2827, 'Levopure 500mg Tablet', 'Pure Drugs & Life Science', 'Levopure 500mg Tablet (Pure Drugs & Life Science)', 'Is Levopure 500mg Tablet safe?', 'Levopure 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2828, 'Levopure 500mg Tablet', 'Pure Drugs & Life Science', 'Levopure 500mg Tablet (Pure Drugs & Life Science)', 'What if I forget to take a dose of Levopure 500mg Tablet?', 'If you forget a dose of Levopure 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2829, 'Levopure 500mg Tablet', 'Pure Drugs & Life Science', 'Levopure 500mg Tablet (Pure Drugs & Life Science)', 'Can the use of Levopure 500mg Tablet cause diarrhea?', 'Yes, the use of Levopure 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2830, 'Levopure 500mg Tablet', 'Pure Drugs & Life Science', 'Levopure 500mg Tablet (Pure Drugs & Life Science)', 'Can I stop taking Levopure 500mg Tablet when I feel better?', 'No, do not stop taking Levopure 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levopure 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levopure 500mg Tablet in the dose and duration advised by the doctor.'),
(2831, 'Levopure 500mg Tablet', 'Pure Drugs & Life Science', 'Levopure 500mg Tablet (Pure Drugs & Life Science)', 'Can the use of Levopure 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levopure 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levopure 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2832, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2833, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'Can I decrease the dose of Levopure-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2834, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'How should Levopure-M Syrup be stored?', 'Levopure-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2835, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'Can Levopure-M Syrup make my child sleepy?', 'Levopure-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2836, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levopure-M Syrup?', 'No, don’t start Levopure-M Syrup without speaking to your child’s doctor. Moreover, Levopure-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2837, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levopure-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2838, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levopure-M Syrup to my child?', 'Some studies show that Levopure-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2839, 'Levopure-M Syrup', 'Ampure Pharmaceutical LLP', 'Levopure-M Syrup', 'Can I use Levopure-M Syrup for treating acute asthma attacks in my child?', 'Levopure-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2840, 'Levopure-M Tablet', 'Unigrow Pharmaceuticals', 'Levopure-M Tablet', 'What is Levopure-M Tablet?', 'Levopure-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2841, 'Levopure-M Tablet', 'Unigrow Pharmaceuticals', 'Levopure-M Tablet', 'Can the use of Levopure-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levopure-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2842, 'Levopure-M Tablet', 'Unigrow Pharmaceuticals', 'Levopure-M Tablet', 'Can Levopure-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levopure-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2843, 'Levopure-M Tablet', 'Unigrow Pharmaceuticals', 'Levopure-M Tablet', 'Can the use of Levopure-M Tablet cause dry mouth?', 'Yes, the use of Levopure-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2844, 'Levopure-M Tablet', 'Unigrow Pharmaceuticals', 'Levopure-M Tablet', 'Can I drink alcohol while taking Levopure-M Tablet?', 'No, do not take alcohol while taking Levopure-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levopure-M Tablet.'),
(2845, 'Levopure-M Tablet', 'Unigrow Pharmaceuticals', 'Levopure-M Tablet', 'Will Levopure-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levopure-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2846, 'Levopure-M Tablet', 'Unigrow Pharmaceuticals', 'Levopure-M Tablet', 'What are the instructions for storage and disposal of Levopure-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2847, 'Levoq 500mg Tablet', 'Frank Medilink', 'Levoq 500mg Tablet', 'Is Levoq 500mg Tablet safe?', 'Levoq 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2848, 'Levoq 500mg Tablet', 'Frank Medilink', 'Levoq 500mg Tablet', 'What if I forget to take a dose of Levoq 500mg Tablet?', 'If you forget a dose of Levoq 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2849, 'Levoq 500mg Tablet', 'Frank Medilink', 'Levoq 500mg Tablet', 'Can the use of Levoq 500mg Tablet cause diarrhea?', 'Yes, the use of Levoq 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2850, 'Levoq 500mg Tablet', 'Frank Medilink', 'Levoq 500mg Tablet', 'Can I stop taking Levoq 500mg Tablet when I feel better?', 'No, do not stop taking Levoq 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoq 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoq 500mg Tablet in the dose and duration advised by the doctor.'),
(2851, 'Levoq 500mg Tablet', 'Frank Medilink', 'Levoq 500mg Tablet', 'Can the use of Levoq 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoq 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoq 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2852, 'Levoquin 250mg Tablet', 'Cipla Ltd', 'Levoquin 250mg Tablet', 'Is Levoquin 250mg Tablet safe?', 'Levoquin 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2853, 'Levoquin 250mg Tablet', 'Cipla Ltd', 'Levoquin 250mg Tablet', 'What if I forget to take a dose of Levoquin 250mg Tablet?', 'If you forget a dose of Levoquin 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2854, 'Levoquin 250mg Tablet', 'Cipla Ltd', 'Levoquin 250mg Tablet', 'Can the use of Levoquin 250mg Tablet cause diarrhea?', 'Yes, the use of Levoquin 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2855, 'Levoquin 250mg Tablet', 'Cipla Ltd', 'Levoquin 250mg Tablet', 'Can I stop taking Levoquin 250mg Tablet when I feel better?', 'No, do not stop taking Levoquin 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoquin 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoquin 250mg Tablet in the dose and duration advised by the doctor.'),
(2856, 'Levoquin 250mg Tablet', 'Cipla Ltd', 'Levoquin 250mg Tablet', 'Can the use of Levoquin 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoquin 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoquin 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2857, 'Levoquin 500mg Infusion', 'Cipla Ltd', 'Levoquin 500mg Infusion', 'Is Levoquin 500mg Infusion safe?', 'Levoquin 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2858, 'Levoquin 500mg Infusion', 'Cipla Ltd', 'Levoquin 500mg Infusion', 'Can the use of Levoquin 500mg Infusion cause diarrhea?', 'Yes, the use of Levoquin 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2859, 'Levoquin 500mg Infusion', 'Cipla Ltd', 'Levoquin 500mg Infusion', 'Can the use of Levoquin 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levoquin 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoquin 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2860, 'Levoquin 500mg Infusion', 'Cipla Ltd', 'Levoquin 500mg Infusion', 'How is Levoquin 500mg Infusion administered?', 'Levoquin 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levoquin 500mg Infusion.'),
(2861, 'Levoquin 500mg Infusion', 'Cipla Ltd', 'Levoquin 500mg Infusion', 'Is Levoquin 500mg Infusion effective?', 'Levoquin 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levoquin 500mg Infusion too early, the symptoms may return or worsen.'),
(2862, 'Levoquin 500mg Tablet', 'Cipla Ltd', 'Levoquin 500mg Tablet', 'Is Levoquin 500mg Tablet safe?', 'Levoquin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2863, 'Levoquin 500mg Tablet', 'Cipla Ltd', 'Levoquin 500mg Tablet', 'What if I forget to take a dose of Levoquin 500mg Tablet?', 'If you forget a dose of Levoquin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2864, 'Levoquin 500mg Tablet', 'Cipla Ltd', 'Levoquin 500mg Tablet', 'Can the use of Levoquin 500mg Tablet cause diarrhea?', 'Yes, the use of Levoquin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2865, 'Levoquin 500mg Tablet', 'Cipla Ltd', 'Levoquin 500mg Tablet', 'Can I stop taking Levoquin 500mg Tablet when I feel better?', 'No, do not stop taking Levoquin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoquin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoquin 500mg Tablet in the dose and duration advised by the doctor.'),
(2866, 'Levoquin 500mg Tablet', 'Cipla Ltd', 'Levoquin 500mg Tablet', 'Can the use of Levoquin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoquin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoquin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2867, 'Levoquin OZ Tablet', 'Cipla Ltd', 'Levoquin OZ Tablet', 'What if I don\'t get better after using Levoquin OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2868, 'Levoquin OZ Tablet', 'Cipla Ltd', 'Levoquin OZ Tablet', 'Can I stop taking Levoquin OZ Tablet when I feel better?', 'No, do not stop taking Levoquin OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2869, 'Levoquin OZ Tablet', 'Cipla Ltd', 'Levoquin OZ Tablet', 'What if I miss my dose?', 'Take Levoquin OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2870, 'Levor M 5mg/10mg Tablet', 'Adesan Pharma', 'Levor M 5mg/10mg Tablet', 'What is Levor M 5mg/10mg Tablet?', 'Levor M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2871, 'Levor M 5mg/10mg Tablet', 'Adesan Pharma', 'Levor M 5mg/10mg Tablet', 'Can the use of Levor M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levor M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2872, 'Levor M 5mg/10mg Tablet', 'Adesan Pharma', 'Levor M 5mg/10mg Tablet', 'Can Levor M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levor M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2873, 'Levor M 5mg/10mg Tablet', 'Adesan Pharma', 'Levor M 5mg/10mg Tablet', 'Can the use of Levor M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levor M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2874, 'Levor M 5mg/10mg Tablet', 'Adesan Pharma', 'Levor M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levor M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levor M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levor M 5mg/10mg Tablet.'),
(2875, 'Levor M 5mg/10mg Tablet', 'Adesan Pharma', 'Levor M 5mg/10mg Tablet', 'Will Levor M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levor M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2876, 'Levor M 5mg/10mg Tablet', 'Adesan Pharma', 'Levor M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levor M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2877, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(2878, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'Can I decrease the dose of Levor M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(2879, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'How should Levor M Syrup be stored?', 'Levor M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(2880, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'Can Levor M Syrup make my child sleepy?', 'Levor M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(2881, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levor M Syrup?', 'No, don’t start Levor M Syrup without speaking to your child’s doctor. Moreover, Levor M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(2882, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levor M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(2883, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levor M Syrup to my child?', 'Some studies show that Levor M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(2884, 'Levor M Syrup', 'Yester Pharma Pvt Ltd', 'Levor M Syrup', 'Can I use Levor M Syrup for treating acute asthma attacks in my child?', 'Levor M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(2885, 'Levora 250mg Tablet', 'Nemi Pharmaceuticles', 'Levora 250mg Tablet', 'Is Levora 250mg Tablet safe?', 'Levora 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2886, 'Levora 250mg Tablet', 'Nemi Pharmaceuticles', 'Levora 250mg Tablet', 'What if I forget to take a dose of Levora 250mg Tablet?', 'If you forget a dose of Levora 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2887, 'Levora 250mg Tablet', 'Nemi Pharmaceuticles', 'Levora 250mg Tablet', 'Can the use of Levora 250mg Tablet cause diarrhea?', 'Yes, the use of Levora 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2888, 'Levora 250mg Tablet', 'Nemi Pharmaceuticles', 'Levora 250mg Tablet', 'Can I stop taking Levora 250mg Tablet when I feel better?', 'No, do not stop taking Levora 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levora 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levora 250mg Tablet in the dose and duration advised by the doctor.'),
(2889, 'Levora 250mg Tablet', 'Nemi Pharmaceuticles', 'Levora 250mg Tablet', 'Can the use of Levora 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levora 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levora 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2890, 'Levora 5mg Tablet', 'Sulzderma Pharmaceuticals Pvt Ltd', 'Levora 5mg Tablet', 'Is Levora 5mg Tablet a steroid? What is it used for?', 'No, Levora 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2891, 'Levora 5mg Tablet', 'Sulzderma Pharmaceuticals Pvt Ltd', 'Levora 5mg Tablet', 'Does Levora 5mg Tablet make you tired and drowsy?', 'Yes, Levora 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2892, 'Levora 5mg Tablet', 'Sulzderma Pharmaceuticals Pvt Ltd', 'Levora 5mg Tablet', 'How long does it take for Levora 5mg Tablet to work?', 'Levora 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2893, 'Levora 5mg Tablet', 'Sulzderma Pharmaceuticals Pvt Ltd', 'Levora 5mg Tablet', 'Can I take Levora 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levora 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(2894, 'Levora 5mg Tablet', 'Sulzderma Pharmaceuticals Pvt Ltd', 'Levora 5mg Tablet', 'Is it safe to take Levora 5mg Tablet for a long time?', 'Levora 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levora 5mg Tablet for only as long as you need it.'),
(2895, 'Levora 5mg Tablet', 'Sulzderma Pharmaceuticals Pvt Ltd', 'Levora 5mg Tablet', 'For how long should I continue Levora 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levora 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levora 5mg Tablet'),
(2896, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'What is Levora Tablet and what is it used for?', 'Levora Tablet is a combined oral contraceptive medicine that contains two hormones estrogen and progesterone. It is used to prevent pregnancy.'),
(2897, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'What if I forget to take Levora Tablet?', 'If you forget to take one tablet, take it as soon as you remember, even if it means taking two tablets at same time and then follow the usual dosing schedule. However, if you forget to take two or more doses, you may not be totally protected against pregnancy. In this case, start taking the tablet as soon as you remember and use a non-hormonal method of contraception such as condoms for at least next 7 days to prevent pregnancy. Frequent missing of doses may lead to unexpected vaginal bleeding or spotting (blood stain). Consult your doctor if this persists.'),
(2898, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'How and in what dose should I take Levora Tablet?', 'Take this medicine as per the advice of your doctor. However, take it at the same time each day, to ensure consistent levels of medicine in your body.'),
(2899, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'Are there any specific contraindications associated with the use of Levora Tablet?', 'The use of Levora Tablet is not recommended to patients with known allergy to any of its components or excipients. It is not advised to be used by patients with a history of high blood pressure, heart disease, diabetes mellitus, migraine headache, liver disease or tumors, uterine bleeding, breast cancer, deep vein thrombosis and pulmonary embolism (blood clot).'),
(2900, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'Can Levora Tablet be taken by a patient who smokes?', 'Levora Tablet should not be taken by a person who smokes. Smoking increases the risk of serious side effects like death from heart attack, blood clots or stroke. The risk increases in patients who are obese or over 35 years of age and people who are heavy smokers. Inform your doctor if you smoke, before taking Levora Tablet.'),
(2901, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'What if I miss my regular menstrual periods while taking Levora Tablet?', 'If you miss your menstrual periods while taking Levora Tablet, you may be pregnant. Some women may miss periods or have light periods while taking Levora Tablet even if they are not pregnant. Contact your doctor if you think you are pregnant or have missed one or two periods. This may happen in case you are not taking Levora Tablet at the same time every day.'),
(2902, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'Can Levora Tablet cause bleeding or spotting between the regular menstrual periods?', 'Yes, Levora Tablet can cause some unexpected bleeding or spotting, especially during the first three months. Do not stop taking Levora Tablet because of this. This bleeding or spotting decreases with time. You may have unexpected bleeding if you do not take the pills regularly. Consult your doctor if the spotting continues for more than seven days or if the bleeding is heavy.'),
(2903, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'What if I vomit after taking Levora Tablet?', 'If you vomit within 3-4 hours after taking Levora Tablet tablet, then it is considered as a missed dose. So, you should take an another dose as soon as you feel well enough.'),
(2904, 'Levora Tablet', 'Relax Pharma', 'Levora Tablet', 'What are the common side effects of taking Levora Tablet?', 'You may experience irregular vaginal bleeding while taking Levora Tablet. Other common side effects include headache, nausea (feeling sick), acne, depression (sad mood), and breast pain. Most of them are temporary. If these persist, consult with your doctor.'),
(2905, 'Levorab 75mg/20mg Capsule SR', 'Lafiya Biotech', 'Levorab 75mg/20mg Capsule SR', 'Which is the best time to take Levorab 75mg/20mg Capsule SR?', 'Take the Levorab 75mg/20mg Capsule SR exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(2906, 'Levorab 75mg/20mg Capsule SR', 'Lafiya Biotech', 'Levorab 75mg/20mg Capsule SR', 'What are the contraindications associated with the use of Levorab 75mg/20mg Capsule SR?', 'Use of Levorab 75mg/20mg Capsule SR should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(2907, 'Levorab 75mg/20mg Capsule SR', 'Lafiya Biotech', 'Levorab 75mg/20mg Capsule SR', 'Can the use of Levorab 75mg/20mg Capsule SR cause dizziness?', 'Yes, the use of Levorab 75mg/20mg Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(2908, 'Levorab 75mg/20mg Capsule SR', 'Lafiya Biotech', 'Levorab 75mg/20mg Capsule SR', 'Does the use of Levorab 75mg/20mg Capsule SR lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Levorab 75mg/20mg Capsule SR may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(2909, 'Levorab 75mg/20mg Capsule SR', 'Lafiya Biotech', 'Levorab 75mg/20mg Capsule SR', 'Can I drive while taking Levorab 75mg/20mg Capsule SR?', 'No, taking Levorab 75mg/20mg Capsule SR may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(2910, 'Levorab 75mg/20mg Capsule SR', 'Lafiya Biotech', 'Levorab 75mg/20mg Capsule SR', 'What are the instructions for the storage and disposal of Levorab 75mg/20mg Capsule SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(2911, 'Levorac 250mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 250mg Tablet', 'Is Levorac 250mg Tablet safe?', 'Levorac 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2912, 'Levorac 250mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 250mg Tablet', 'What if I forget to take a dose of Levorac 250mg Tablet?', 'If you forget a dose of Levorac 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2913, 'Levorac 250mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 250mg Tablet', 'Can the use of Levorac 250mg Tablet cause diarrhea?', 'Yes, the use of Levorac 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2914, 'Levorac 250mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 250mg Tablet', 'Can I stop taking Levorac 250mg Tablet when I feel better?', 'No, do not stop taking Levorac 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorac 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levorac 250mg Tablet in the dose and duration advised by the doctor.'),
(2915, 'Levorac 250mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 250mg Tablet', 'Can the use of Levorac 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorac 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorac 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2916, 'Levorac 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 500mg Tablet', 'Is Levorac 500mg Tablet safe?', 'Levorac 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2917, 'Levorac 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 500mg Tablet', 'What if I forget to take a dose of Levorac 500mg Tablet?', 'If you forget a dose of Levorac 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2918, 'Levorac 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 500mg Tablet', 'Can the use of Levorac 500mg Tablet cause diarrhea?', 'Yes, the use of Levorac 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2919, 'Levorac 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 500mg Tablet', 'Can I stop taking Levorac 500mg Tablet when I feel better?', 'No, do not stop taking Levorac 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorac 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorac 500mg Tablet in the dose and duration advised by the doctor.'),
(2920, 'Levorac 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 500mg Tablet', 'Can the use of Levorac 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorac 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorac 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2921, 'Levorac 750mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 750mg Tablet', 'Is Levorac 750mg Tablet safe?', 'Levorac 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2922, 'Levorac 750mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 750mg Tablet', 'What if I forget to take a dose of Levorac 750mg Tablet?', 'If you forget a dose of Levorac 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2923, 'Levorac 750mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 750mg Tablet', 'Can the use of Levorac 750mg Tablet cause diarrhea?', 'Yes, the use of Levorac 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2924, 'Levorac 750mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 750mg Tablet', 'Can I stop taking Levorac 750mg Tablet when I feel better?', 'No, do not stop taking Levorac 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorac 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levorac 750mg Tablet in the dose and duration advised by the doctor.'),
(2925, 'Levorac 750mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levorac 750mg Tablet', 'Can the use of Levorac 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorac 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorac 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2926, 'Levorace 250mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 250mg Tablet', 'Is Levorace 250mg Tablet safe?', 'Levorace 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2927, 'Levorace 250mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 250mg Tablet', 'What if I forget to take a dose of Levorace 250mg Tablet?', 'If you forget a dose of Levorace 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2928, 'Levorace 250mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 250mg Tablet', 'Can the use of Levorace 250mg Tablet cause diarrhea?', 'Yes, the use of Levorace 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2929, 'Levorace 250mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 250mg Tablet', 'Can I stop taking Levorace 250mg Tablet when I feel better?', 'No, do not stop taking Levorace 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorace 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levorace 250mg Tablet in the dose and duration advised by the doctor.'),
(2930, 'Levorace 250mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 250mg Tablet', 'Can the use of Levorace 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorace 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorace 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2931, 'Levorace 500mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 500mg Tablet', 'Is Levorace 500mg Tablet safe?', 'Levorace 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2932, 'Levorace 500mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 500mg Tablet', 'What if I forget to take a dose of Levorace 500mg Tablet?', 'If you forget a dose of Levorace 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2933, 'Levorace 500mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 500mg Tablet', 'Can the use of Levorace 500mg Tablet cause diarrhea?', 'Yes, the use of Levorace 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2934, 'Levorace 500mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 500mg Tablet', 'Can I stop taking Levorace 500mg Tablet when I feel better?', 'No, do not stop taking Levorace 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorace 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorace 500mg Tablet in the dose and duration advised by the doctor.'),
(2935, 'Levorace 500mg Tablet', 'Moxy Laboratories Pvt Ltd', 'Levorace 500mg Tablet', 'Can the use of Levorace 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorace 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorace 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2936, 'Levoraise 500mg Tablet', 'Megnesia Neurocare', 'Levoraise 500mg Tablet', 'Is Levoraise 500mg Tablet safe?', 'Levoraise 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2937, 'Levoraise 500mg Tablet', 'Megnesia Neurocare', 'Levoraise 500mg Tablet', 'What if I forget to take a dose of Levoraise 500mg Tablet?', 'If you forget a dose of Levoraise 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2938, 'Levoraise 500mg Tablet', 'Megnesia Neurocare', 'Levoraise 500mg Tablet', 'Can the use of Levoraise 500mg Tablet cause diarrhea?', 'Yes, the use of Levoraise 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2939, 'Levoraise 500mg Tablet', 'Megnesia Neurocare', 'Levoraise 500mg Tablet', 'Can I stop taking Levoraise 500mg Tablet when I feel better?', 'No, do not stop taking Levoraise 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoraise 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoraise 500mg Tablet in the dose and duration advised by the doctor.'),
(2940, 'Levoraise 500mg Tablet', 'Megnesia Neurocare', 'Levoraise 500mg Tablet', 'Can the use of Levoraise 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoraise 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoraise 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2941, 'Levoraise OZ Oral Suspension', 'Megnesia Neurocare', 'Levoraise OZ Oral Suspension', 'What if I don\'t get better after using Levoraise OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2942, 'Levoraise OZ Oral Suspension', 'Megnesia Neurocare', 'Levoraise OZ Oral Suspension', 'Can I stop taking Levoraise OZ Oral Suspension when I feel better?', 'No, do not stop taking Levoraise OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2943, 'Levoraise OZ Oral Suspension', 'Megnesia Neurocare', 'Levoraise OZ Oral Suspension', 'What if I miss my dose?', 'Take Levoraise OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2944, 'Levoraj 250mg Tablet', 'Zenstar Life Sciences', 'Levoraj 250mg Tablet', 'Is Levoraj 250mg Tablet safe?', 'Levoraj 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2945, 'Levoraj 250mg Tablet', 'Zenstar Life Sciences', 'Levoraj 250mg Tablet', 'What if I forget to take a dose of Levoraj 250mg Tablet?', 'If you forget a dose of Levoraj 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2946, 'Levoraj 250mg Tablet', 'Zenstar Life Sciences', 'Levoraj 250mg Tablet', 'Can the use of Levoraj 250mg Tablet cause diarrhea?', 'Yes, the use of Levoraj 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2947, 'Levoraj 250mg Tablet', 'Zenstar Life Sciences', 'Levoraj 250mg Tablet', 'Can I stop taking Levoraj 250mg Tablet when I feel better?', 'No, do not stop taking Levoraj 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoraj 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoraj 250mg Tablet in the dose and duration advised by the doctor.'),
(2948, 'Levoraj 250mg Tablet', 'Zenstar Life Sciences', 'Levoraj 250mg Tablet', 'Can the use of Levoraj 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoraj 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoraj 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2949, 'Levoraj 500mg Tablet', 'Zenstar Life Sciences', 'Levoraj 500mg Tablet', 'Is Levoraj 500mg Tablet safe?', 'Levoraj 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2950, 'Levoraj 500mg Tablet', 'Zenstar Life Sciences', 'Levoraj 500mg Tablet', 'What if I forget to take a dose of Levoraj 500mg Tablet?', 'If you forget a dose of Levoraj 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2951, 'Levoraj 500mg Tablet', 'Zenstar Life Sciences', 'Levoraj 500mg Tablet', 'Can the use of Levoraj 500mg Tablet cause diarrhea?', 'Yes, the use of Levoraj 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2952, 'Levoraj 500mg Tablet', 'Zenstar Life Sciences', 'Levoraj 500mg Tablet', 'Can I stop taking Levoraj 500mg Tablet when I feel better?', 'No, do not stop taking Levoraj 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoraj 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoraj 500mg Tablet in the dose and duration advised by the doctor.'),
(2953, 'Levoraj 500mg Tablet', 'Zenstar Life Sciences', 'Levoraj 500mg Tablet', 'Can the use of Levoraj 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoraj 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoraj 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2954, 'Levoraj 750mg Tablet', 'Zenstar Life Sciences', 'Levoraj 750mg Tablet', 'Is Levoraj 750mg Tablet safe?', 'Levoraj 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2955, 'Levoraj 750mg Tablet', 'Zenstar Life Sciences', 'Levoraj 750mg Tablet', 'What if I forget to take a dose of Levoraj 750mg Tablet?', 'If you forget a dose of Levoraj 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2956, 'Levoraj 750mg Tablet', 'Zenstar Life Sciences', 'Levoraj 750mg Tablet', 'Can the use of Levoraj 750mg Tablet cause diarrhea?', 'Yes, the use of Levoraj 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2957, 'Levoraj 750mg Tablet', 'Zenstar Life Sciences', 'Levoraj 750mg Tablet', 'Can I stop taking Levoraj 750mg Tablet when I feel better?', 'No, do not stop taking Levoraj 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoraj 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levoraj 750mg Tablet in the dose and duration advised by the doctor.'),
(2958, 'Levoraj 750mg Tablet', 'Zenstar Life Sciences', 'Levoraj 750mg Tablet', 'Can the use of Levoraj 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoraj 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoraj 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2959, 'Levoraj OZ 250mg/500mg Tablet', 'Zenstar Life Sciences', 'Levoraj OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levoraj OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2960, 'Levoraj OZ 250mg/500mg Tablet', 'Zenstar Life Sciences', 'Levoraj OZ 250mg/500mg Tablet', 'Can I stop taking Levoraj OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoraj OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2961, 'Levoraj OZ 250mg/500mg Tablet', 'Zenstar Life Sciences', 'Levoraj OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levoraj OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2962, 'Levoraj OZ Oral Suspension', 'Zenstar Life Sciences', 'Levoraj OZ Oral Suspension', 'What if I don\'t get better after using Levoraj OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2963, 'Levoraj OZ Oral Suspension', 'Zenstar Life Sciences', 'Levoraj OZ Oral Suspension', 'Can I stop taking Levoraj OZ Oral Suspension when I feel better?', 'No, do not stop taking Levoraj OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2964, 'Levoraj OZ Oral Suspension', 'Zenstar Life Sciences', 'Levoraj OZ Oral Suspension', 'What if I miss my dose?', 'Take Levoraj OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(2965, 'Levora-M Tablet', 'Rayon Pharmaceutical', 'Levora-M Tablet', 'What is Levora-M Tablet?', 'Levora-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(2966, 'Levora-M Tablet', 'Rayon Pharmaceutical', 'Levora-M Tablet', 'Can the use of Levora-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levora-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(2967, 'Levora-M Tablet', 'Rayon Pharmaceutical', 'Levora-M Tablet', 'Can Levora-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levora-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(2968, 'Levora-M Tablet', 'Rayon Pharmaceutical', 'Levora-M Tablet', 'Can the use of Levora-M Tablet cause dry mouth?', 'Yes, the use of Levora-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(2969, 'Levora-M Tablet', 'Rayon Pharmaceutical', 'Levora-M Tablet', 'Can I drink alcohol while taking Levora-M Tablet?', 'No, do not take alcohol while taking Levora-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levora-M Tablet.'),
(2970, 'Levora-M Tablet', 'Rayon Pharmaceutical', 'Levora-M Tablet', 'Will Levora-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levora-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(2971, 'Levora-M Tablet', 'Rayon Pharmaceutical', 'Levora-M Tablet', 'What are the instructions for storage and disposal of Levora-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(2972, 'Levorange 500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange 500mg Tablet', 'Is Levorange 500mg Tablet safe?', 'Levorange 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2973, 'Levorange 500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange 500mg Tablet', 'What if I forget to take a dose of Levorange 500mg Tablet?', 'If you forget a dose of Levorange 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2974, 'Levorange 500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange 500mg Tablet', 'Can the use of Levorange 500mg Tablet cause diarrhea?', 'Yes, the use of Levorange 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2975, 'Levorange 500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange 500mg Tablet', 'Can I stop taking Levorange 500mg Tablet when I feel better?', 'No, do not stop taking Levorange 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorange 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorange 500mg Tablet in the dose and duration advised by the doctor.'),
(2976, 'Levorange 500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange 500mg Tablet', 'Can the use of Levorange 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorange 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorange 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2977, 'Levorange OZ 250mg/500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levorange OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2978, 'Levorange OZ 250mg/500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange OZ 250mg/500mg Tablet', 'Can I stop taking Levorange OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levorange OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2979, 'Levorange OZ 250mg/500mg Tablet', 'Neorangic Healthcare Private Limited', 'Levorange OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levorange OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2980, 'Levorange OZ Dry Syrup', 'Neorangic Healthcare Private Limited', 'Levorange OZ Dry Syrup', 'What if I don\'t get better after using Levorange OZ Dry Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2981, 'Levorange OZ Dry Syrup', 'Neorangic Healthcare Private Limited', 'Levorange OZ Dry Syrup', 'Can I stop taking Levorange OZ Dry Syrup when I feel better?', 'No, do not stop taking Levorange OZ Dry Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2982, 'Levorange OZ Dry Syrup', 'Neorangic Healthcare Private Limited', 'Levorange OZ Dry Syrup', 'What if I miss my dose?', 'Take Levorange OZ Dry Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2983, 'Levorar 500 Tablet', 'Azius Pharma Private Limited', 'Levorar 500 Tablet', 'Is Levorar 500 Tablet safe?', 'Levorar 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2984, 'Levorar 500 Tablet', 'Azius Pharma Private Limited', 'Levorar 500 Tablet', 'What if I forget to take a dose of Levorar 500 Tablet?', 'If you forget a dose of Levorar 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2985, 'Levorar 500 Tablet', 'Azius Pharma Private Limited', 'Levorar 500 Tablet', 'Can the use of Levorar 500 Tablet cause diarrhea?', 'Yes, the use of Levorar 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2986, 'Levorar 500 Tablet', 'Azius Pharma Private Limited', 'Levorar 500 Tablet', 'Can I stop taking Levorar 500 Tablet when I feel better?', 'No, do not stop taking Levorar 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorar 500 Tablet too early, the symptoms may return or worsen. Continue taking Levorar 500 Tablet in the dose and duration advised by the doctor.'),
(2987, 'Levorar 500 Tablet', 'Azius Pharma Private Limited', 'Levorar 500 Tablet', 'Can the use of Levorar 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorar 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorar 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2988, 'Levorave 500 Tablet', 'Getron Pharmaceuticals', 'Levorave 500 Tablet', 'Is Levorave 500 Tablet safe?', 'Levorave 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(2989, 'Levorave 500 Tablet', 'Getron Pharmaceuticals', 'Levorave 500 Tablet', 'What if I forget to take a dose of Levorave 500 Tablet?', 'If you forget a dose of Levorave 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(2990, 'Levorave 500 Tablet', 'Getron Pharmaceuticals', 'Levorave 500 Tablet', 'Can the use of Levorave 500 Tablet cause diarrhea?', 'Yes, the use of Levorave 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(2991, 'Levorave 500 Tablet', 'Getron Pharmaceuticals', 'Levorave 500 Tablet', 'Can I stop taking Levorave 500 Tablet when I feel better?', 'No, do not stop taking Levorave 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorave 500 Tablet too early, the symptoms may return or worsen. Continue taking Levorave 500 Tablet in the dose and duration advised by the doctor.'),
(2992, 'Levorave 500 Tablet', 'Getron Pharmaceuticals', 'Levorave 500 Tablet', 'Can the use of Levorave 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorave 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorave 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(2993, 'Levorave-OZ Tablet', 'Getron Pharmaceuticals', 'Levorave-OZ Tablet', 'What if I don\'t get better after using Levorave-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(2994, 'Levorave-OZ Tablet', 'Getron Pharmaceuticals', 'Levorave-OZ Tablet', 'Can I stop taking Levorave-OZ Tablet when I feel better?', 'No, do not stop taking Levorave-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(2995, 'Levorave-OZ Tablet', 'Getron Pharmaceuticals', 'Levorave-OZ Tablet', 'What if I miss my dose?', 'Take Levorave-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(2996, 'Levorax 10mg Tablet', 'Lanchestor Biotech', 'Levorax 10mg Tablet (Lanchestor Biotech)', 'Is Levorax 10mg Tablet a steroid? What is it used for?', 'No, Levorax 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(2997, 'Levorax 10mg Tablet', 'Lanchestor Biotech', 'Levorax 10mg Tablet (Lanchestor Biotech)', 'Does Levorax 10mg Tablet make you tired and drowsy?', 'Yes, Levorax 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(2998, 'Levorax 10mg Tablet', 'Lanchestor Biotech', 'Levorax 10mg Tablet (Lanchestor Biotech)', 'How long does it take for Levorax 10mg Tablet to work?', 'Levorax 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(2999, 'Levorax 10mg Tablet', 'Lanchestor Biotech', 'Levorax 10mg Tablet (Lanchestor Biotech)', 'Can I take Levorax 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorax 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3000, 'Levorax 10mg Tablet', 'Lanchestor Biotech', 'Levorax 10mg Tablet (Lanchestor Biotech)', 'Is it safe to take Levorax 10mg Tablet for a long time?', 'Levorax 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorax 10mg Tablet for only as long as you need it.'),
(3001, 'Levorax 10mg Tablet', 'Lanchestor Biotech', 'Levorax 10mg Tablet (Lanchestor Biotech)', 'For how long should I continue Levorax 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorax 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorax 10mg Tablet'),
(3002, 'Levorax 10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 10mg Tablet (Spancer Pharmaceuticals)', 'Is Levorax 10mg Tablet a steroid? What is it used for?', 'No, Levorax 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3003, 'Levorax 10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 10mg Tablet (Spancer Pharmaceuticals)', 'Does Levorax 10mg Tablet make you tired and drowsy?', 'Yes, Levorax 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3004, 'Levorax 10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 10mg Tablet (Spancer Pharmaceuticals)', 'How long does it take for Levorax 10mg Tablet to work?', 'Levorax 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3005, 'Levorax 10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 10mg Tablet (Spancer Pharmaceuticals)', 'Can I take Levorax 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorax 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3006, 'Levorax 10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 10mg Tablet (Spancer Pharmaceuticals)', 'Is it safe to take Levorax 10mg Tablet for a long time?', 'Levorax 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorax 10mg Tablet for only as long as you need it.'),
(3007, 'Levorax 10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 10mg Tablet (Spancer Pharmaceuticals)', 'For how long should I continue Levorax 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorax 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorax 10mg Tablet'),
(3008, 'Levorax 500 Tablet', 'Rax Health Care Pvt Ltd', 'Levorax 500 Tablet', 'Is Levorax 500 Tablet safe?', 'Levorax 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3009, 'Levorax 500 Tablet', 'Rax Health Care Pvt Ltd', 'Levorax 500 Tablet', 'What if I forget to take a dose of Levorax 500 Tablet?', 'If you forget a dose of Levorax 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3010, 'Levorax 500 Tablet', 'Rax Health Care Pvt Ltd', 'Levorax 500 Tablet', 'Can the use of Levorax 500 Tablet cause diarrhea?', 'Yes, the use of Levorax 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3011, 'Levorax 500 Tablet', 'Rax Health Care Pvt Ltd', 'Levorax 500 Tablet', 'Can I stop taking Levorax 500 Tablet when I feel better?', 'No, do not stop taking Levorax 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorax 500 Tablet too early, the symptoms may return or worsen. Continue taking Levorax 500 Tablet in the dose and duration advised by the doctor.'),
(3012, 'Levorax 500 Tablet', 'Rax Health Care Pvt Ltd', 'Levorax 500 Tablet', 'Can the use of Levorax 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorax 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorax 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3013, 'Levorax 500mg Tablet', 'Ankom Laboratories', 'Levorax 500mg Tablet', 'Is Levorax 500mg Tablet safe?', 'Levorax 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3014, 'Levorax 500mg Tablet', 'Ankom Laboratories', 'Levorax 500mg Tablet', 'What if I forget to take a dose of Levorax 500mg Tablet?', 'If you forget a dose of Levorax 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3015, 'Levorax 500mg Tablet', 'Ankom Laboratories', 'Levorax 500mg Tablet', 'Can the use of Levorax 500mg Tablet cause diarrhea?', 'Yes, the use of Levorax 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3016, 'Levorax 500mg Tablet', 'Ankom Laboratories', 'Levorax 500mg Tablet', 'Can I stop taking Levorax 500mg Tablet when I feel better?', 'No, do not stop taking Levorax 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorax 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorax 500mg Tablet in the dose and duration advised by the doctor.'),
(3017, 'Levorax 500mg Tablet', 'Ankom Laboratories', 'Levorax 500mg Tablet', 'Can the use of Levorax 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorax 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorax 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3018, 'Levorax 5mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 5mg Tablet', 'Is Levorax 5mg Tablet a steroid? What is it used for?', 'No, Levorax 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3019, 'Levorax 5mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 5mg Tablet', 'Does Levorax 5mg Tablet make you tired and drowsy?', 'Yes, Levorax 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3020, 'Levorax 5mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 5mg Tablet', 'How long does it take for Levorax 5mg Tablet to work?', 'Levorax 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3021, 'Levorax 5mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 5mg Tablet', 'Can I take Levorax 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorax 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3022, 'Levorax 5mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 5mg Tablet', 'Is it safe to take Levorax 5mg Tablet for a long time?', 'Levorax 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorax 5mg Tablet for only as long as you need it.'),
(3023, 'Levorax 5mg Tablet', 'Spancer Pharmaceuticals', 'Levorax 5mg Tablet', 'For how long should I continue Levorax 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorax 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorax 5mg Tablet'),
(3024, 'Levorax 5mg Tablet MD', 'Lanchestor Biotech', 'Levorax 5mg Tablet MD', 'Is Levorax 5mg Tablet MD a steroid? What is it used for?', 'No, Levorax 5mg Tablet MD is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3025, 'Levorax 5mg Tablet MD', 'Lanchestor Biotech', 'Levorax 5mg Tablet MD', 'Does Levorax 5mg Tablet MD make you tired and drowsy?', 'Yes, Levorax 5mg Tablet MD can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3026, 'Levorax 5mg Tablet MD', 'Lanchestor Biotech', 'Levorax 5mg Tablet MD', 'How long does it take for Levorax 5mg Tablet MD to work?', 'Levorax 5mg Tablet MD starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3027, 'Levorax 5mg Tablet MD', 'Lanchestor Biotech', 'Levorax 5mg Tablet MD', 'Can I take Levorax 5mg Tablet MD and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorax 5mg Tablet MD during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3028, 'Levorax 5mg Tablet MD', 'Lanchestor Biotech', 'Levorax 5mg Tablet MD', 'Is it safe to take Levorax 5mg Tablet MD for a long time?', 'Levorax 5mg Tablet MD is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorax 5mg Tablet MD for only as long as you need it.'),
(3029, 'Levorax 5mg Tablet MD', 'Lanchestor Biotech', 'Levorax 5mg Tablet MD', 'For how long should I continue Levorax 5mg Tablet MD?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorax 5mg Tablet MD for a longer time. Talk to your doctor if you are unsure about the duration of using Levorax 5mg Tablet MD'),
(3030, 'Levorax M 5mg/10mg Tablet', 'Lanchestor Biotech', 'Levorax M 5mg/10mg Tablet (Lanchestor Biotech)', 'What is Levorax M 5mg/10mg Tablet?', 'Levorax M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3031, 'Levorax M 5mg/10mg Tablet', 'Lanchestor Biotech', 'Levorax M 5mg/10mg Tablet (Lanchestor Biotech)', 'Can the use of Levorax M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorax M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3032, 'Levorax M 5mg/10mg Tablet', 'Lanchestor Biotech', 'Levorax M 5mg/10mg Tablet (Lanchestor Biotech)', 'Can Levorax M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorax M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3033, 'Levorax M 5mg/10mg Tablet', 'Lanchestor Biotech', 'Levorax M 5mg/10mg Tablet (Lanchestor Biotech)', 'Can the use of Levorax M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorax M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3034, 'Levorax M 5mg/10mg Tablet', 'Lanchestor Biotech', 'Levorax M 5mg/10mg Tablet (Lanchestor Biotech)', 'Can I drink alcohol while taking Levorax M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorax M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorax M 5mg/10mg Tablet.'),
(3035, 'Levorax M 5mg/10mg Tablet', 'Lanchestor Biotech', 'Levorax M 5mg/10mg Tablet (Lanchestor Biotech)', 'Will Levorax M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorax M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3036, 'Levorax M 5mg/10mg Tablet', 'Lanchestor Biotech', 'Levorax M 5mg/10mg Tablet (Lanchestor Biotech)', 'What are the instructions for storage and disposal of Levorax M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3037, 'Levorax M 5mg/10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax M 5mg/10mg Tablet (Spancer Pharmaceuticals)', 'What is Levorax M 5mg/10mg Tablet?', 'Levorax M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3038, 'Levorax M 5mg/10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax M 5mg/10mg Tablet (Spancer Pharmaceuticals)', 'Can the use of Levorax M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorax M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3039, 'Levorax M 5mg/10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax M 5mg/10mg Tablet (Spancer Pharmaceuticals)', 'Can Levorax M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorax M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3040, 'Levorax M 5mg/10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax M 5mg/10mg Tablet (Spancer Pharmaceuticals)', 'Can the use of Levorax M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorax M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3041, 'Levorax M 5mg/10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax M 5mg/10mg Tablet (Spancer Pharmaceuticals)', 'Can I drink alcohol while taking Levorax M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorax M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorax M 5mg/10mg Tablet.'),
(3042, 'Levorax M 5mg/10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax M 5mg/10mg Tablet (Spancer Pharmaceuticals)', 'Will Levorax M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorax M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3043, 'Levorax M 5mg/10mg Tablet', 'Spancer Pharmaceuticals', 'Levorax M 5mg/10mg Tablet (Spancer Pharmaceuticals)', 'What are the instructions for storage and disposal of Levorax M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3044, 'Levorax OZ 250mg/500mg Tablet', 'Rax Health Care Pvt Ltd', 'Levorax OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levorax OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3045, 'Levorax OZ 250mg/500mg Tablet', 'Rax Health Care Pvt Ltd', 'Levorax OZ 250mg/500mg Tablet', 'Can I stop taking Levorax OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levorax OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3046, 'Levorax OZ 250mg/500mg Tablet', 'Rax Health Care Pvt Ltd', 'Levorax OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levorax OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3047, 'Levorax OZ Suspension', 'Rax Health Care Pvt Ltd', 'Levorax OZ Suspension', 'What if I don\'t get better after using Levorax OZ Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3048, 'Levorax OZ Suspension', 'Rax Health Care Pvt Ltd', 'Levorax OZ Suspension', 'Can I stop taking Levorax OZ Suspension when I feel better?', 'No, do not stop taking Levorax OZ Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3049, 'Levorax OZ Suspension', 'Rax Health Care Pvt Ltd', 'Levorax OZ Suspension', 'What if I miss my dose?', 'Take Levorax OZ Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3050, 'Levoray 500mg Tablet', 'Impact Healthcare Pvt Ltd', 'Levoray 500mg Tablet', 'Is Levoray 500mg Tablet safe?', 'Levoray 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3051, 'Levoray 500mg Tablet', 'Impact Healthcare Pvt Ltd', 'Levoray 500mg Tablet', 'What if I forget to take a dose of Levoray 500mg Tablet?', 'If you forget a dose of Levoray 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3052, 'Levoray 500mg Tablet', 'Impact Healthcare Pvt Ltd', 'Levoray 500mg Tablet', 'Can the use of Levoray 500mg Tablet cause diarrhea?', 'Yes, the use of Levoray 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3053, 'Levoray 500mg Tablet', 'Impact Healthcare Pvt Ltd', 'Levoray 500mg Tablet', 'Can I stop taking Levoray 500mg Tablet when I feel better?', 'No, do not stop taking Levoray 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoray 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoray 500mg Tablet in the dose and duration advised by the doctor.'),
(3054, 'Levoray 500mg Tablet', 'Impact Healthcare Pvt Ltd', 'Levoray 500mg Tablet', 'Can the use of Levoray 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoray 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoray 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3055, 'Levoreen 500mg Tablet', 'Homogreen Pharmaceutical', 'Levoreen 500mg Tablet', 'Is Levoreen 500mg Tablet safe?', 'Levoreen 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3056, 'Levoreen 500mg Tablet', 'Homogreen Pharmaceutical', 'Levoreen 500mg Tablet', 'What if I forget to take a dose of Levoreen 500mg Tablet?', 'If you forget a dose of Levoreen 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3057, 'Levoreen 500mg Tablet', 'Homogreen Pharmaceutical', 'Levoreen 500mg Tablet', 'Can the use of Levoreen 500mg Tablet cause diarrhea?', 'Yes, the use of Levoreen 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3058, 'Levoreen 500mg Tablet', 'Homogreen Pharmaceutical', 'Levoreen 500mg Tablet', 'Can I stop taking Levoreen 500mg Tablet when I feel better?', 'No, do not stop taking Levoreen 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoreen 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoreen 500mg Tablet in the dose and duration advised by the doctor.'),
(3059, 'Levoreen 500mg Tablet', 'Homogreen Pharmaceutical', 'Levoreen 500mg Tablet', 'Can the use of Levoreen 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoreen 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoreen 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3060, 'Levorek 500mg Tablet', 'Titan Bioscience Pvt Ltd', 'Levorek 500mg Tablet', 'Is Levorek 500mg Tablet safe?', 'Levorek 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3061, 'Levorek 500mg Tablet', 'Titan Bioscience Pvt Ltd', 'Levorek 500mg Tablet', 'What if I forget to take a dose of Levorek 500mg Tablet?', 'If you forget a dose of Levorek 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3062, 'Levorek 500mg Tablet', 'Titan Bioscience Pvt Ltd', 'Levorek 500mg Tablet', 'Can the use of Levorek 500mg Tablet cause diarrhea?', 'Yes, the use of Levorek 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3063, 'Levorek 500mg Tablet', 'Titan Bioscience Pvt Ltd', 'Levorek 500mg Tablet', 'Can I stop taking Levorek 500mg Tablet when I feel better?', 'No, do not stop taking Levorek 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorek 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorek 500mg Tablet in the dose and duration advised by the doctor.'),
(3064, 'Levorek 500mg Tablet', 'Titan Bioscience Pvt Ltd', 'Levorek 500mg Tablet', 'Can the use of Levorek 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorek 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorek 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3065, 'Levoreq 5 Tablet', 'Reqwell Pharma', 'Levoreq 5 Tablet', 'Is Levoreq 5 Tablet a steroid? What is it used for?', 'No, Levoreq 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3066, 'Levoreq 5 Tablet', 'Reqwell Pharma', 'Levoreq 5 Tablet', 'Does Levoreq 5 Tablet make you tired and drowsy?', 'Yes, Levoreq 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3067, 'Levoreq 5 Tablet', 'Reqwell Pharma', 'Levoreq 5 Tablet', 'How long does it take for Levoreq 5 Tablet to work?', 'Levoreq 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3068, 'Levoreq 5 Tablet', 'Reqwell Pharma', 'Levoreq 5 Tablet', 'Can I take Levoreq 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoreq 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3069, 'Levoreq 5 Tablet', 'Reqwell Pharma', 'Levoreq 5 Tablet', 'Is it safe to take Levoreq 5 Tablet for a long time?', 'Levoreq 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoreq 5 Tablet for only as long as you need it.'),
(3070, 'Levoreq 5 Tablet', 'Reqwell Pharma', 'Levoreq 5 Tablet', 'For how long should I continue Levoreq 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoreq 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoreq 5 Tablet'),
(3071, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3072, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'Can I decrease the dose of Levoreq M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3073, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'How should Levoreq M Syrup be stored?', 'Levoreq M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3074, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'Can Levoreq M Syrup make my child sleepy?', 'Levoreq M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3075, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoreq M Syrup?', 'No, don’t start Levoreq M Syrup without speaking to your child’s doctor. Moreover, Levoreq M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3076, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoreq M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3077, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoreq M Syrup to my child?', 'Some studies show that Levoreq M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3078, 'Levoreq M Syrup', 'Reqwell Pharma', 'Levoreq M Syrup', 'Can I use Levoreq M Syrup for treating acute asthma attacks in my child?', 'Levoreq M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3079, 'Levoreq-M Tablet', 'Reqwell Pharma', 'Levoreq-M Tablet', 'What is Levoreq-M Tablet?', 'Levoreq-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3080, 'Levoreq-M Tablet', 'Reqwell Pharma', 'Levoreq-M Tablet', 'Can the use of Levoreq-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoreq-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3081, 'Levoreq-M Tablet', 'Reqwell Pharma', 'Levoreq-M Tablet', 'Can Levoreq-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoreq-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3082, 'Levoreq-M Tablet', 'Reqwell Pharma', 'Levoreq-M Tablet', 'Can the use of Levoreq-M Tablet cause dry mouth?', 'Yes, the use of Levoreq-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3083, 'Levoreq-M Tablet', 'Reqwell Pharma', 'Levoreq-M Tablet', 'Can I drink alcohol while taking Levoreq-M Tablet?', 'No, do not take alcohol while taking Levoreq-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoreq-M Tablet.'),
(3084, 'Levoreq-M Tablet', 'Reqwell Pharma', 'Levoreq-M Tablet', 'Will Levoreq-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoreq-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3085, 'Levoreq-M Tablet', 'Reqwell Pharma', 'Levoreq-M Tablet', 'What are the instructions for storage and disposal of Levoreq-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3086, 'Levorest 250mg Tablet', 'Sunrest Life Science', 'Levorest 250mg Tablet', 'Is Levorest 250mg Tablet safe?', 'Levorest 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3087, 'Levorest 250mg Tablet', 'Sunrest Life Science', 'Levorest 250mg Tablet', 'What if I forget to take a dose of Levorest 250mg Tablet?', 'If you forget a dose of Levorest 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3088, 'Levorest 250mg Tablet', 'Sunrest Life Science', 'Levorest 250mg Tablet', 'Can the use of Levorest 250mg Tablet cause diarrhea?', 'Yes, the use of Levorest 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3089, 'Levorest 250mg Tablet', 'Sunrest Life Science', 'Levorest 250mg Tablet', 'Can I stop taking Levorest 250mg Tablet when I feel better?', 'No, do not stop taking Levorest 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorest 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levorest 250mg Tablet in the dose and duration advised by the doctor.'),
(3090, 'Levorest 250mg Tablet', 'Sunrest Life Science', 'Levorest 250mg Tablet', 'Can the use of Levorest 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorest 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorest 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3091, 'Levorest 500 Tablet', 'Sunrest Life Science', 'Levorest 500 Tablet', 'Is Levorest 500 Tablet safe?', 'Levorest 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3092, 'Levorest 500 Tablet', 'Sunrest Life Science', 'Levorest 500 Tablet', 'What if I forget to take a dose of Levorest 500 Tablet?', 'If you forget a dose of Levorest 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3093, 'Levorest 500 Tablet', 'Sunrest Life Science', 'Levorest 500 Tablet', 'Can the use of Levorest 500 Tablet cause diarrhea?', 'Yes, the use of Levorest 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3094, 'Levorest 500 Tablet', 'Sunrest Life Science', 'Levorest 500 Tablet', 'Can I stop taking Levorest 500 Tablet when I feel better?', 'No, do not stop taking Levorest 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorest 500 Tablet too early, the symptoms may return or worsen. Continue taking Levorest 500 Tablet in the dose and duration advised by the doctor.'),
(3095, 'Levorest 500 Tablet', 'Sunrest Life Science', 'Levorest 500 Tablet', 'Can the use of Levorest 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorest 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorest 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3096, 'Levorest 5mg Tablet', 'Life Pharma', 'Levorest 5mg Tablet (Life Pharma)', 'Is Levorest 5mg Tablet a steroid? What is it used for?', 'No, Levorest 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3097, 'Levorest 5mg Tablet', 'Life Pharma', 'Levorest 5mg Tablet (Life Pharma)', 'Does Levorest 5mg Tablet make you tired and drowsy?', 'Yes, Levorest 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3098, 'Levorest 5mg Tablet', 'Life Pharma', 'Levorest 5mg Tablet (Life Pharma)', 'How long does it take for Levorest 5mg Tablet to work?', 'Levorest 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3099, 'Levorest 5mg Tablet', 'Life Pharma', 'Levorest 5mg Tablet (Life Pharma)', 'Can I take Levorest 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorest 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3100, 'Levorest 5mg Tablet', 'Life Pharma', 'Levorest 5mg Tablet (Life Pharma)', 'Is it safe to take Levorest 5mg Tablet for a long time?', 'Levorest 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorest 5mg Tablet for only as long as you need it.'),
(3101, 'Levorest 5mg Tablet', 'Life Pharma', 'Levorest 5mg Tablet (Life Pharma)', 'For how long should I continue Levorest 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorest 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorest 5mg Tablet'),
(3102, 'Levorest 5mg Tablet', 'Cooper Pharma Limited', 'Levorest 5mg Tablet (Cooper Pharma Limited)', 'Is Levorest 5mg Tablet a steroid? What is it used for?', 'No, Levorest 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3103, 'Levorest 5mg Tablet', 'Cooper Pharma Limited', 'Levorest 5mg Tablet (Cooper Pharma Limited)', 'Does Levorest 5mg Tablet make you tired and drowsy?', 'Yes, Levorest 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3104, 'Levorest 5mg Tablet', 'Cooper Pharma Limited', 'Levorest 5mg Tablet (Cooper Pharma Limited)', 'How long does it take for Levorest 5mg Tablet to work?', 'Levorest 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3105, 'Levorest 5mg Tablet', 'Cooper Pharma Limited', 'Levorest 5mg Tablet (Cooper Pharma Limited)', 'Can I take Levorest 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorest 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3106, 'Levorest 5mg Tablet', 'Cooper Pharma Limited', 'Levorest 5mg Tablet (Cooper Pharma Limited)', 'Is it safe to take Levorest 5mg Tablet for a long time?', 'Levorest 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorest 5mg Tablet for only as long as you need it.'),
(3107, 'Levorest 5mg Tablet', 'Cooper Pharma Limited', 'Levorest 5mg Tablet (Cooper Pharma Limited)', 'For how long should I continue Levorest 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorest 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorest 5mg Tablet'),
(3108, 'Levorest M 5mg/10mg Tablet', 'Chem Biotech Healthcare', 'Levorest M 5mg/10mg Tablet (Chem Biotech Healthcare)', 'What is Levorest M 5mg/10mg Tablet?', 'Levorest M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3109, 'Levorest M 5mg/10mg Tablet', 'Chem Biotech Healthcare', 'Levorest M 5mg/10mg Tablet (Chem Biotech Healthcare)', 'Can the use of Levorest M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorest M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3110, 'Levorest M 5mg/10mg Tablet', 'Chem Biotech Healthcare', 'Levorest M 5mg/10mg Tablet (Chem Biotech Healthcare)', 'Can Levorest M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorest M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3111, 'Levorest M 5mg/10mg Tablet', 'Chem Biotech Healthcare', 'Levorest M 5mg/10mg Tablet (Chem Biotech Healthcare)', 'Can the use of Levorest M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorest M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3112, 'Levorest M 5mg/10mg Tablet', 'Chem Biotech Healthcare', 'Levorest M 5mg/10mg Tablet (Chem Biotech Healthcare)', 'Can I drink alcohol while taking Levorest M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorest M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorest M 5mg/10mg Tablet.'),
(3113, 'Levorest M 5mg/10mg Tablet', 'Chem Biotech Healthcare', 'Levorest M 5mg/10mg Tablet (Chem Biotech Healthcare)', 'Will Levorest M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorest M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3114, 'Levorest M 5mg/10mg Tablet', 'Chem Biotech Healthcare', 'Levorest M 5mg/10mg Tablet (Chem Biotech Healthcare)', 'What are the instructions for storage and disposal of Levorest M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3115, 'Levorest M 5mg/10mg Tablet', 'Cooper Pharma Limited', 'Levorest M 5mg/10mg Tablet (Cooper Pharma Limited)', 'What is Levorest M 5mg/10mg Tablet?', 'Levorest M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3116, 'Levorest M 5mg/10mg Tablet', 'Cooper Pharma Limited', 'Levorest M 5mg/10mg Tablet (Cooper Pharma Limited)', 'Can the use of Levorest M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorest M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3117, 'Levorest M 5mg/10mg Tablet', 'Cooper Pharma Limited', 'Levorest M 5mg/10mg Tablet (Cooper Pharma Limited)', 'Can Levorest M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorest M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3118, 'Levorest M 5mg/10mg Tablet', 'Cooper Pharma Limited', 'Levorest M 5mg/10mg Tablet (Cooper Pharma Limited)', 'Can the use of Levorest M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorest M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3119, 'Levorest M 5mg/10mg Tablet', 'Cooper Pharma Limited', 'Levorest M 5mg/10mg Tablet (Cooper Pharma Limited)', 'Can I drink alcohol while taking Levorest M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorest M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorest M 5mg/10mg Tablet.'),
(3120, 'Levorest M 5mg/10mg Tablet', 'Cooper Pharma Limited', 'Levorest M 5mg/10mg Tablet (Cooper Pharma Limited)', 'Will Levorest M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorest M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3121, 'Levorest M 5mg/10mg Tablet', 'Cooper Pharma Limited', 'Levorest M 5mg/10mg Tablet (Cooper Pharma Limited)', 'What are the instructions for storage and disposal of Levorest M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3122, 'Levorest M Kid 5mg/4mg Tablet', 'Cooper Pharma Limited', 'Levorest M Kid 5mg/4mg Tablet', 'What is Levorest M Kid 5mg/4mg Tablet?', 'Levorest M Kid 5mg/4mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3123, 'Levorest M Kid 5mg/4mg Tablet', 'Cooper Pharma Limited', 'Levorest M Kid 5mg/4mg Tablet', 'Can the use of Levorest M Kid 5mg/4mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorest M Kid 5mg/4mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3124, 'Levorest M Kid 5mg/4mg Tablet', 'Cooper Pharma Limited', 'Levorest M Kid 5mg/4mg Tablet', 'Can Levorest M Kid 5mg/4mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorest M Kid 5mg/4mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3125, 'Levorest M Kid 5mg/4mg Tablet', 'Cooper Pharma Limited', 'Levorest M Kid 5mg/4mg Tablet', 'Can the use of Levorest M Kid 5mg/4mg Tablet cause dry mouth?', 'Yes, the use of Levorest M Kid 5mg/4mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3126, 'Levorest M Kid 5mg/4mg Tablet', 'Cooper Pharma Limited', 'Levorest M Kid 5mg/4mg Tablet', 'Can I drink alcohol while taking Levorest M Kid 5mg/4mg Tablet?', 'No, do not take alcohol while taking Levorest M Kid 5mg/4mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorest M Kid 5mg/4mg Tablet.'),
(3127, 'Levorest M Kid 5mg/4mg Tablet', 'Cooper Pharma Limited', 'Levorest M Kid 5mg/4mg Tablet', 'Will Levorest M Kid 5mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorest M Kid 5mg/4mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3128, 'Levorest M Kid 5mg/4mg Tablet', 'Cooper Pharma Limited', 'Levorest M Kid 5mg/4mg Tablet', 'What are the instructions for storage and disposal of Levorest M Kid 5mg/4mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3129, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3130, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'Can I decrease the dose of Levorest M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3131, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'How should Levorest M Syrup be stored?', 'Levorest M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3132, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'Can Levorest M Syrup make my child sleepy?', 'Levorest M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3133, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levorest M Syrup?', 'No, don’t start Levorest M Syrup without speaking to your child’s doctor. Moreover, Levorest M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3134, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levorest M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3135, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levorest M Syrup to my child?', 'Some studies show that Levorest M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3136, 'Levorest M Syrup', 'Cooper Pharma Limited', 'Levorest M Syrup', 'Can I use Levorest M Syrup for treating acute asthma attacks in my child?', 'Levorest M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3137, 'Levorev 5mg Tablet', 'Aarvi Drugs', 'Levorev 5mg Tablet', 'Is Levorev 5mg Tablet a steroid? What is it used for?', 'No, Levorev 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3138, 'Levorev 5mg Tablet', 'Aarvi Drugs', 'Levorev 5mg Tablet', 'Does Levorev 5mg Tablet make you tired and drowsy?', 'Yes, Levorev 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3139, 'Levorev 5mg Tablet', 'Aarvi Drugs', 'Levorev 5mg Tablet', 'How long does it take for Levorev 5mg Tablet to work?', 'Levorev 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3140, 'Levorev 5mg Tablet', 'Aarvi Drugs', 'Levorev 5mg Tablet', 'Can I take Levorev 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorev 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3141, 'Levorev 5mg Tablet', 'Aarvi Drugs', 'Levorev 5mg Tablet', 'Is it safe to take Levorev 5mg Tablet for a long time?', 'Levorev 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorev 5mg Tablet for only as long as you need it.'),
(3142, 'Levorev 5mg Tablet', 'Aarvi Drugs', 'Levorev 5mg Tablet', 'For how long should I continue Levorev 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorev 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorev 5mg Tablet'),
(3143, 'Levorev M 5mg/10mg Tablet', 'Aarvi Drugs', 'Levorev M 5mg/10mg Tablet', 'What is Levorev M 5mg/10mg Tablet?', 'Levorev M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3144, 'Levorev M 5mg/10mg Tablet', 'Aarvi Drugs', 'Levorev M 5mg/10mg Tablet', 'Can the use of Levorev M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorev M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3145, 'Levorev M 5mg/10mg Tablet', 'Aarvi Drugs', 'Levorev M 5mg/10mg Tablet', 'Can Levorev M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorev M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3146, 'Levorev M 5mg/10mg Tablet', 'Aarvi Drugs', 'Levorev M 5mg/10mg Tablet', 'Can the use of Levorev M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorev M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3147, 'Levorev M 5mg/10mg Tablet', 'Aarvi Drugs', 'Levorev M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorev M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorev M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorev M 5mg/10mg Tablet.'),
(3148, 'Levorev M 5mg/10mg Tablet', 'Aarvi Drugs', 'Levorev M 5mg/10mg Tablet', 'Will Levorev M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorev M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3149, 'Levorev M 5mg/10mg Tablet', 'Aarvi Drugs', 'Levorev M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorev M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3150, 'Levorex 500mg Tablet', 'Marion Biotech', 'Levorex 500mg Tablet', 'Is Levorex 500mg Tablet safe?', 'Levorex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3151, 'Levorex 500mg Tablet', 'Marion Biotech', 'Levorex 500mg Tablet', 'What if I forget to take a dose of Levorex 500mg Tablet?', 'If you forget a dose of Levorex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3152, 'Levorex 500mg Tablet', 'Marion Biotech', 'Levorex 500mg Tablet', 'Can the use of Levorex 500mg Tablet cause diarrhea?', 'Yes, the use of Levorex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3153, 'Levorex 500mg Tablet', 'Marion Biotech', 'Levorex 500mg Tablet', 'Can I stop taking Levorex 500mg Tablet when I feel better?', 'No, do not stop taking Levorex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorex 500mg Tablet in the dose and duration advised by the doctor.'),
(3154, 'Levorex 500mg Tablet', 'Marion Biotech', 'Levorex 500mg Tablet', 'Can the use of Levorex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3155, 'Levorex 750mg Tablet', 'Marion Biotech', 'Levorex 750mg Tablet', 'Is Levorex 750mg Tablet safe?', 'Levorex 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3156, 'Levorex 750mg Tablet', 'Marion Biotech', 'Levorex 750mg Tablet', 'What if I forget to take a dose of Levorex 750mg Tablet?', 'If you forget a dose of Levorex 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3157, 'Levorex 750mg Tablet', 'Marion Biotech', 'Levorex 750mg Tablet', 'Can the use of Levorex 750mg Tablet cause diarrhea?', 'Yes, the use of Levorex 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3158, 'Levorex 750mg Tablet', 'Marion Biotech', 'Levorex 750mg Tablet', 'Can I stop taking Levorex 750mg Tablet when I feel better?', 'No, do not stop taking Levorex 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorex 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levorex 750mg Tablet in the dose and duration advised by the doctor.'),
(3159, 'Levorex 750mg Tablet', 'Marion Biotech', 'Levorex 750mg Tablet', 'Can the use of Levorex 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorex 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorex 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3160, 'Levorez 500mg Tablet', 'Pureza Pharmaceuticals', 'Levorez 500mg Tablet', 'Is Levorez 500mg Tablet safe?', 'Levorez 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3161, 'Levorez 500mg Tablet', 'Pureza Pharmaceuticals', 'Levorez 500mg Tablet', 'What if I forget to take a dose of Levorez 500mg Tablet?', 'If you forget a dose of Levorez 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3162, 'Levorez 500mg Tablet', 'Pureza Pharmaceuticals', 'Levorez 500mg Tablet', 'Can the use of Levorez 500mg Tablet cause diarrhea?', 'Yes, the use of Levorez 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3163, 'Levorez 500mg Tablet', 'Pureza Pharmaceuticals', 'Levorez 500mg Tablet', 'Can I stop taking Levorez 500mg Tablet when I feel better?', 'No, do not stop taking Levorez 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorez 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorez 500mg Tablet in the dose and duration advised by the doctor.'),
(3164, 'Levorez 500mg Tablet', 'Pureza Pharmaceuticals', 'Levorez 500mg Tablet', 'Can the use of Levorez 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorez 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorez 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3165, 'Levorgy-P DS Oral Suspension', 'Praxis Health Care', 'Levorgy-P DS Oral Suspension', 'What is Levorgy-P DS Oral Suspension?', 'Levorgy-P DS Oral Suspension is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(3166, 'Levorgy-P DS Oral Suspension', 'Praxis Health Care', 'Levorgy-P DS Oral Suspension', 'Is it safe to use Levorgy-P DS Oral Suspension?', 'Yes, Levorgy-P DS Oral Suspension is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(3167, 'Levorgy-P DS Oral Suspension', 'Praxis Health Care', 'Levorgy-P DS Oral Suspension', 'Can I stop taking Levorgy-P DS Oral Suspension when I am relieved of my symptoms?', 'Levorgy-P DS Oral Suspension is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(3168, 'Levorgy-P DS Oral Suspension', 'Praxis Health Care', 'Levorgy-P DS Oral Suspension', 'Can the use of Levorgy-P DS Oral Suspension cause dizziness?', 'Yes, the use of Levorgy-P DS Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(3169, 'Levorgy-P DS Oral Suspension', 'Praxis Health Care', 'Levorgy-P DS Oral Suspension', 'Can the use of Levorgy-P DS Oral Suspension cause damage to liver?', 'Levorgy-P DS Oral Suspension is usually safe when taken according to the recommended dose. However, an overdose of Levorgy-P DS Oral Suspension can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(3170, 'Levorgy-P DS Oral Suspension', 'Praxis Health Care', 'Levorgy-P DS Oral Suspension', 'What is the recommended storage condition for the Levorgy-P DS Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3171, 'Levorgy-P Tablet', 'Praxis Health Care', 'Levorgy-P Tablet', 'Q. Can the use of Levorgy-P Tablet cause sleepiness or drowsiness?', 'Yes, Levorgy-P Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(3172, 'Levorgy-P Tablet', 'Praxis Health Care', 'Levorgy-P Tablet', 'Q. What are the instructions for the storage and disposal of Levorgy-P Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3173, 'Levorgy-P Tablet', 'Praxis Health Care', 'Levorgy-P Tablet', 'Q. Are there any serious side effects associated with the use of Levorgy-P Tablet?', 'Serious side effects with Levorgy-P Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat. These side effects are uncommon but may be serious and may need urgent medical attention.'),
(3174, 'Levorgy-P Tablet', 'Praxis Health Care', 'Levorgy-P Tablet', 'Q. Will a higher than the recommended dose of Levorgy-P Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(3175, 'Levorgy-P Tablet', 'Praxis Health Care', 'Levorgy-P Tablet', 'Q. Are there any contraindications associated with use of Levorgy-P Tablet?', 'It is not recommended to use Levorgy-P Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers, overactive thyroid (hyperthyroidism). However, it can be taken if your doctor is aware of your conditions and advises you to take it. The use of Levorgy-P Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(3176, 'Levorgy-P Tablet', 'Praxis Health Care', 'Levorgy-P Tablet', 'Q. Can I breastfeed while taking Levorgy-P Tablet?', 'No, you should not breastfeed while using Levorgy-P Tablet. This medicine can pass into your breast milk and may harm your baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(3177, 'Levorhine 10mg Tablet DT', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 10mg Tablet DT', 'Is Levorhine 10mg Tablet DT a steroid? What is it used for?', 'No, Levorhine 10mg Tablet DT is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3178, 'Levorhine 10mg Tablet DT', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 10mg Tablet DT', 'Does Levorhine 10mg Tablet DT make you tired and drowsy?', 'Yes, Levorhine 10mg Tablet DT can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3179, 'Levorhine 10mg Tablet DT', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 10mg Tablet DT', 'How long does it take for Levorhine 10mg Tablet DT to work?', 'Levorhine 10mg Tablet DT starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3180, 'Levorhine 10mg Tablet DT', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 10mg Tablet DT', 'Can I take Levorhine 10mg Tablet DT and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorhine 10mg Tablet DT during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3181, 'Levorhine 10mg Tablet DT', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 10mg Tablet DT', 'Is it safe to take Levorhine 10mg Tablet DT for a long time?', 'Levorhine 10mg Tablet DT is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorhine 10mg Tablet DT for only as long as you need it.'),
(3182, 'Levorhine 10mg Tablet DT', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 10mg Tablet DT', 'For how long should I continue Levorhine 10mg Tablet DT?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorhine 10mg Tablet DT for a longer time. Talk to your doctor if you are unsure about the duration of using Levorhine 10mg Tablet DT'),
(3183, 'Levorhine 5mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 5mg Tablet', 'Is Levorhine 5mg Tablet a steroid? What is it used for?', 'No, Levorhine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3184, 'Levorhine 5mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 5mg Tablet', 'Does Levorhine 5mg Tablet make you tired and drowsy?', 'Yes, Levorhine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3185, 'Levorhine 5mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 5mg Tablet', 'How long does it take for Levorhine 5mg Tablet to work?', 'Levorhine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3186, 'Levorhine 5mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 5mg Tablet', 'Can I take Levorhine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorhine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3187, 'Levorhine 5mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 5mg Tablet', 'Is it safe to take Levorhine 5mg Tablet for a long time?', 'Levorhine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorhine 5mg Tablet for only as long as you need it.'),
(3188, 'Levorhine 5mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine 5mg Tablet', 'For how long should I continue Levorhine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorhine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorhine 5mg Tablet'),
(3189, 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Q. Can the use of Levorhine Cold 5mg/10mg/500mg Tablet cause sleepiness or drowsiness?', 'Yes, Levorhine Cold 5mg/10mg/500mg Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3190, 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Q. What are the instructions for the storage and disposal of Levorhine Cold 5mg/10mg/500mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3191, 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Q. Are there any serious side effects associated with the use of Levorhine Cold 5mg/10mg/500mg Tablet?', 'Serious side effects with Levorhine Cold 5mg/10mg/500mg Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat. These side effects are uncommon but may be serious and may need urgent medical attention.'),
(3192, 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Q. Will a higher than the recommended dose of Levorhine Cold 5mg/10mg/500mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(3193, 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Q. Are there any contraindications associated with use of Levorhine Cold 5mg/10mg/500mg Tablet?', 'It is not recommended to use Levorhine Cold 5mg/10mg/500mg Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers, overactive thyroid (hyperthyroidism). However, it can be taken if your doctor is aware of your conditions and advises you to take it. The use of Levorhine Cold 5mg/10mg/500mg Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(3194, 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine Cold 5mg/10mg/500mg Tablet', 'Q. Can I breastfeed while taking Levorhine Cold 5mg/10mg/500mg Tablet?', 'No, you should not breastfeed while using Levorhine Cold 5mg/10mg/500mg Tablet. This medicine can pass into your breast milk and may harm your baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(3195, 'Levorhine M 5mg/10mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M 5mg/10mg Tablet', 'What is Levorhine M 5mg/10mg Tablet?', 'Levorhine M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3196, 'Levorhine M 5mg/10mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M 5mg/10mg Tablet', 'Can the use of Levorhine M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorhine M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3197, 'Levorhine M 5mg/10mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M 5mg/10mg Tablet', 'Can Levorhine M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorhine M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3198, 'Levorhine M 5mg/10mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M 5mg/10mg Tablet', 'Can the use of Levorhine M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorhine M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3199, 'Levorhine M 5mg/10mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorhine M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorhine M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorhine M 5mg/10mg Tablet.'),
(3200, 'Levorhine M 5mg/10mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M 5mg/10mg Tablet', 'Will Levorhine M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorhine M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3201, 'Levorhine M 5mg/10mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorhine M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3202, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3203, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levorhine M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3204, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'How should Levorhine M Kid 2.5mg/4mg Tablet be stored?', 'Levorhine M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3205, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'Can Levorhine M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levorhine M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3206, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levorhine M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levorhine M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levorhine M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3207, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levorhine M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3208, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levorhine M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levorhine M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3209, 'Levorhine M Kid 2.5mg/4mg Tablet', 'Topmed Pharmaceuticals Pvt Ltd', 'Levorhine M Kid 2.5mg/4mg Tablet', 'Can I use Levorhine M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levorhine M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3210, 'Levori 5mg Tablet', 'Gnova Biotech', 'Levori 5mg Tablet', 'Is Levori 5mg Tablet a steroid? What is it used for?', 'No, Levori 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3211, 'Levori 5mg Tablet', 'Gnova Biotech', 'Levori 5mg Tablet', 'Does Levori 5mg Tablet make you tired and drowsy?', 'Yes, Levori 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3212, 'Levori 5mg Tablet', 'Gnova Biotech', 'Levori 5mg Tablet', 'How long does it take for Levori 5mg Tablet to work?', 'Levori 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3213, 'Levori 5mg Tablet', 'Gnova Biotech', 'Levori 5mg Tablet', 'Can I take Levori 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levori 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3214, 'Levori 5mg Tablet', 'Gnova Biotech', 'Levori 5mg Tablet', 'Is it safe to take Levori 5mg Tablet for a long time?', 'Levori 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levori 5mg Tablet for only as long as you need it.'),
(3215, 'Levori 5mg Tablet', 'Gnova Biotech', 'Levori 5mg Tablet', 'For how long should I continue Levori 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levori 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levori 5mg Tablet'),
(3216, 'Levoric 500mg Tablet', 'Ravic Healthcare', 'Levoric 500mg Tablet', 'Is Levoric 500mg Tablet safe?', 'Levoric 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3217, 'Levoric 500mg Tablet', 'Ravic Healthcare', 'Levoric 500mg Tablet', 'What if I forget to take a dose of Levoric 500mg Tablet?', 'If you forget a dose of Levoric 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3218, 'Levoric 500mg Tablet', 'Ravic Healthcare', 'Levoric 500mg Tablet', 'Can the use of Levoric 500mg Tablet cause diarrhea?', 'Yes, the use of Levoric 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3219, 'Levoric 500mg Tablet', 'Ravic Healthcare', 'Levoric 500mg Tablet', 'Can I stop taking Levoric 500mg Tablet when I feel better?', 'No, do not stop taking Levoric 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoric 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoric 500mg Tablet in the dose and duration advised by the doctor.'),
(3220, 'Levoric 500mg Tablet', 'Ravic Healthcare', 'Levoric 500mg Tablet', 'Can the use of Levoric 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoric 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoric 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3221, 'Levorich 500mg Tablet', 'Pharma Drugs & Chemicals', 'Levorich 500mg Tablet', 'Is Levorich 500mg Tablet safe?', 'Levorich 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3222, 'Levorich 500mg Tablet', 'Pharma Drugs & Chemicals', 'Levorich 500mg Tablet', 'What if I forget to take a dose of Levorich 500mg Tablet?', 'If you forget a dose of Levorich 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3223, 'Levorich 500mg Tablet', 'Pharma Drugs & Chemicals', 'Levorich 500mg Tablet', 'Can the use of Levorich 500mg Tablet cause diarrhea?', 'Yes, the use of Levorich 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3224, 'Levorich 500mg Tablet', 'Pharma Drugs & Chemicals', 'Levorich 500mg Tablet', 'Can I stop taking Levorich 500mg Tablet when I feel better?', 'No, do not stop taking Levorich 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorich 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorich 500mg Tablet in the dose and duration advised by the doctor.'),
(3225, 'Levorich 500mg Tablet', 'Pharma Drugs & Chemicals', 'Levorich 500mg Tablet', 'Can the use of Levorich 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorich 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorich 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3226, 'Levorich 5mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich 5mg Tablet', 'Is Levorich 5mg Tablet a steroid? What is it used for?', 'No, Levorich 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3227, 'Levorich 5mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich 5mg Tablet', 'Does Levorich 5mg Tablet make you tired and drowsy?', 'Yes, Levorich 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3228, 'Levorich 5mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich 5mg Tablet', 'How long does it take for Levorich 5mg Tablet to work?', 'Levorich 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3229, 'Levorich 5mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich 5mg Tablet', 'Can I take Levorich 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorich 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3230, 'Levorich 5mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich 5mg Tablet', 'Is it safe to take Levorich 5mg Tablet for a long time?', 'Levorich 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorich 5mg Tablet for only as long as you need it.'),
(3231, 'Levorich 5mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich 5mg Tablet', 'For how long should I continue Levorich 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorich 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorich 5mg Tablet'),
(3232, 'Levorich M 5mg/10mg Tablet', 'R B Pharmaceuticals', 'Levorich M 5mg/10mg Tablet', 'What is Levorich M 5mg/10mg Tablet?', 'Levorich M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3233, 'Levorich M 5mg/10mg Tablet', 'R B Pharmaceuticals', 'Levorich M 5mg/10mg Tablet', 'Can the use of Levorich M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorich M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3234, 'Levorich M 5mg/10mg Tablet', 'R B Pharmaceuticals', 'Levorich M 5mg/10mg Tablet', 'Can Levorich M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorich M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3235, 'Levorich M 5mg/10mg Tablet', 'R B Pharmaceuticals', 'Levorich M 5mg/10mg Tablet', 'Can the use of Levorich M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorich M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3236, 'Levorich M 5mg/10mg Tablet', 'R B Pharmaceuticals', 'Levorich M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorich M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorich M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorich M 5mg/10mg Tablet.'),
(3237, 'Levorich M 5mg/10mg Tablet', 'R B Pharmaceuticals', 'Levorich M 5mg/10mg Tablet', 'Will Levorich M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorich M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3238, 'Levorich M 5mg/10mg Tablet', 'R B Pharmaceuticals', 'Levorich M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorich M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3239, 'Levorich-MT 5mg/10mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich-MT 5mg/10mg Tablet', 'What is Levorich-MT 5mg/10mg Tablet?', 'Levorich-MT 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3240, 'Levorich-MT 5mg/10mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich-MT 5mg/10mg Tablet', 'Can the use of Levorich-MT 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorich-MT 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3241, 'Levorich-MT 5mg/10mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich-MT 5mg/10mg Tablet', 'Can Levorich-MT 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorich-MT 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3242, 'Levorich-MT 5mg/10mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich-MT 5mg/10mg Tablet', 'Can the use of Levorich-MT 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorich-MT 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3243, 'Levorich-MT 5mg/10mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich-MT 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorich-MT 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorich-MT 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorich-MT 5mg/10mg Tablet.'),
(3244, 'Levorich-MT 5mg/10mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich-MT 5mg/10mg Tablet', 'Will Levorich-MT 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorich-MT 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3245, 'Levorich-MT 5mg/10mg Tablet', 'Axis Life Science Pvt Ltd', 'Levorich-MT 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorich-MT 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3246, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3247, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'Can I decrease the dose of Levorich-MT Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3248, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'How should Levorich-MT Syrup be stored?', 'Levorich-MT Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3249, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'Can Levorich-MT Syrup make my child sleepy?', 'Levorich-MT Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3250, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levorich-MT Syrup?', 'No, don’t start Levorich-MT Syrup without speaking to your child’s doctor. Moreover, Levorich-MT Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3251, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levorich-MT Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3252, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levorich-MT Syrup to my child?', 'Some studies show that Levorich-MT Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3253, 'Levorich-MT Syrup', 'Axis Life Science Pvt Ltd', 'Levorich-MT Syrup', 'Can I use Levorich-MT Syrup for treating acute asthma attacks in my child?', 'Levorich-MT Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3254, 'Levorid D 5mg/10mg Tablet', 'Cipla Ltd', 'Levorid D 5mg/10mg Tablet', 'Q. Can the use of Levorid D 5mg/10mg Tablet cause sleepiness or drowsiness?', 'Yes, Levorid D 5mg/10mg Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(3255, 'Levorid D 5mg/10mg Tablet', 'Cipla Ltd', 'Levorid D 5mg/10mg Tablet', 'Q. Would a higher than the recommended dose of Levorid D 5mg/10mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(3256, 'Levorid D 5mg/10mg Tablet', 'Cipla Ltd', 'Levorid D 5mg/10mg Tablet', 'Q. Can I breastfeed while taking Levorid D 5mg/10mg Tablet?', 'No, you should not breastfeed while using Levorid D 5mg/10mg Tablet. This medicine can pass into your breast milk and may harm your baby. Inform your doctor that you are breastfeeding a baby if the doctor prescribes this medicine.'),
(3257, 'Levorid D 5mg/10mg Tablet', 'Cipla Ltd', 'Levorid D 5mg/10mg Tablet', 'Q. Can I take Levorid D 5mg/10mg Tablet with high blood pressure?', 'Levorid D 5mg/10mg Tablet can raise blood pressure or stimulate fast heart rate.  Anyone with heart conditions or high blood pressure, before taking this medicine, should consult their doctor to see if they can safely take such medicines.'),
(3258, 'Levorid D 5mg/10mg Tablet', 'Cipla Ltd', 'Levorid D 5mg/10mg Tablet', 'Q. Can the use of Levorid D 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorid D 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(3259, 'Levorid D 5mg/10mg Tablet', 'Cipla Ltd', 'Levorid D 5mg/10mg Tablet', 'Q. What are the instructions for the storage and disposal of Levorid D 5mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3260, 'Levorid D Tablet', 'Cipla Ltd', 'Levorid D Tablet', 'Can the use of Levorid D Tablet cause sleepiness or drowsiness?', 'Yes, Levorid D Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(3261, 'Levorid D Tablet', 'Cipla Ltd', 'Levorid D Tablet', 'Would a higher than the recommended dose of Levorid D Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(3262, 'Levorid D Tablet', 'Cipla Ltd', 'Levorid D Tablet', 'Can I breastfeed while taking Levorid D Tablet?', 'No, you should not breastfeed while using Levorid D Tablet. This medicine can pass into your breast milk and may harm your baby. Inform your doctor that you are breastfeeding a baby if the doctor prescribes this medicine.'),
(3263, 'Levorid D Tablet', 'Cipla Ltd', 'Levorid D Tablet', 'Can I take Levorid D Tablet with high blood pressure?', 'Levorid D Tablet can raise blood pressure or stimulate fast heart rate.  Anyone with heart conditions or high blood pressure, before taking this medicine, should consult their doctor to see if they can safely take such medicines.'),
(3264, 'Levorid D Tablet', 'Cipla Ltd', 'Levorid D Tablet', 'Can the use of Levorid D Tablet cause dry mouth?', 'Yes, the use of Levorid D Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(3265, 'Levorid D Tablet', 'Cipla Ltd', 'Levorid D Tablet', 'What are the instructions for the storage and disposal of Levorid D Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3266, 'Levorid Tablet', 'Cipla Ltd', 'Levorid Tablet', 'Is Levorid Tablet a steroid? What is it used for?', 'No, Levorid Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3267, 'Levorid Tablet', 'Cipla Ltd', 'Levorid Tablet', 'Does Levorid Tablet make you tired and drowsy?', 'Yes, Levorid Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3268, 'Levorid Tablet', 'Cipla Ltd', 'Levorid Tablet', 'How long does it take for Levorid Tablet to work?', 'Levorid Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3269, 'Levorid Tablet', 'Cipla Ltd', 'Levorid Tablet', 'Can I take Levorid Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorid Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3270, 'Levorid Tablet', 'Cipla Ltd', 'Levorid Tablet', 'Is it safe to take Levorid Tablet for a long time?', 'Levorid Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorid Tablet for only as long as you need it.'),
(3271, 'Levorid Tablet', 'Cipla Ltd', 'Levorid Tablet', 'For how long should I continue Levorid Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorid Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorid Tablet'),
(3272, 'Levoril 5mg Tablet', 'Acto Pharma Pvt Ltd', 'Levoril 5mg Tablet', 'Is Levoril 5mg Tablet a steroid? What is it used for?', 'No, Levoril 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3273, 'Levoril 5mg Tablet', 'Acto Pharma Pvt Ltd', 'Levoril 5mg Tablet', 'Does Levoril 5mg Tablet make you tired and drowsy?', 'Yes, Levoril 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3274, 'Levoril 5mg Tablet', 'Acto Pharma Pvt Ltd', 'Levoril 5mg Tablet', 'How long does it take for Levoril 5mg Tablet to work?', 'Levoril 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3275, 'Levoril 5mg Tablet', 'Acto Pharma Pvt Ltd', 'Levoril 5mg Tablet', 'Can I take Levoril 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoril 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3276, 'Levoril 5mg Tablet', 'Acto Pharma Pvt Ltd', 'Levoril 5mg Tablet', 'Is it safe to take Levoril 5mg Tablet for a long time?', 'Levoril 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoril 5mg Tablet for only as long as you need it.'),
(3277, 'Levoril 5mg Tablet', 'Acto Pharma Pvt Ltd', 'Levoril 5mg Tablet', 'For how long should I continue Levoril 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoril 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoril 5mg Tablet'),
(3278, 'Levorim 500mg Tablet', 'Ridham Medicare', 'Levorim 500mg Tablet', 'Is Levorim 500mg Tablet safe?', 'Levorim 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3279, 'Levorim 500mg Tablet', 'Ridham Medicare', 'Levorim 500mg Tablet', 'What if I forget to take a dose of Levorim 500mg Tablet?', 'If you forget a dose of Levorim 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3280, 'Levorim 500mg Tablet', 'Ridham Medicare', 'Levorim 500mg Tablet', 'Can the use of Levorim 500mg Tablet cause diarrhea?', 'Yes, the use of Levorim 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3281, 'Levorim 500mg Tablet', 'Ridham Medicare', 'Levorim 500mg Tablet', 'Can I stop taking Levorim 500mg Tablet when I feel better?', 'No, do not stop taking Levorim 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorim 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorim 500mg Tablet in the dose and duration advised by the doctor.'),
(3282, 'Levorim 500mg Tablet', 'Ridham Medicare', 'Levorim 500mg Tablet', 'Can the use of Levorim 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorim 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorim 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3283, 'Levorio 500mg Tablet', 'Penardo Biotech', 'Levorio 500mg Tablet', 'Is Levorio 500mg Tablet safe?', 'Levorio 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3284, 'Levorio 500mg Tablet', 'Penardo Biotech', 'Levorio 500mg Tablet', 'What if I forget to take a dose of Levorio 500mg Tablet?', 'If you forget a dose of Levorio 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3285, 'Levorio 500mg Tablet', 'Penardo Biotech', 'Levorio 500mg Tablet', 'Can the use of Levorio 500mg Tablet cause diarrhea?', 'Yes, the use of Levorio 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3286, 'Levorio 500mg Tablet', 'Penardo Biotech', 'Levorio 500mg Tablet', 'Can I stop taking Levorio 500mg Tablet when I feel better?', 'No, do not stop taking Levorio 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorio 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorio 500mg Tablet in the dose and duration advised by the doctor.'),
(3287, 'Levorio 500mg Tablet', 'Penardo Biotech', 'Levorio 500mg Tablet', 'Can the use of Levorio 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorio 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorio 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3288, 'Levoript 5mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Levoript 5mg Tablet', 'Is Levoript 5mg Tablet a steroid? What is it used for?', 'No, Levoript 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3289, 'Levoript 5mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Levoript 5mg Tablet', 'Does Levoript 5mg Tablet make you tired and drowsy?', 'Yes, Levoript 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3290, 'Levoript 5mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Levoript 5mg Tablet', 'How long does it take for Levoript 5mg Tablet to work?', 'Levoript 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3291, 'Levoript 5mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Levoript 5mg Tablet', 'Can I take Levoript 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoript 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3292, 'Levoript 5mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Levoript 5mg Tablet', 'Is it safe to take Levoript 5mg Tablet for a long time?', 'Levoript 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoript 5mg Tablet for only as long as you need it.'),
(3293, 'Levoript 5mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Levoript 5mg Tablet', 'For how long should I continue Levoript 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoript 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoript 5mg Tablet'),
(3294, 'Levorist M 5mg/10mg Tablet', 'Arist Health Care', 'Levorist M 5mg/10mg Tablet', 'What is Levorist M 5mg/10mg Tablet?', 'Levorist M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3295, 'Levorist M 5mg/10mg Tablet', 'Arist Health Care', 'Levorist M 5mg/10mg Tablet', 'Can the use of Levorist M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorist M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3296, 'Levorist M 5mg/10mg Tablet', 'Arist Health Care', 'Levorist M 5mg/10mg Tablet', 'Can Levorist M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorist M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3297, 'Levorist M 5mg/10mg Tablet', 'Arist Health Care', 'Levorist M 5mg/10mg Tablet', 'Can the use of Levorist M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorist M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3298, 'Levorist M 5mg/10mg Tablet', 'Arist Health Care', 'Levorist M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorist M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorist M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorist M 5mg/10mg Tablet.'),
(3299, 'Levorist M 5mg/10mg Tablet', 'Arist Health Care', 'Levorist M 5mg/10mg Tablet', 'Will Levorist M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorist M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3300, 'Levorist M 5mg/10mg Tablet', 'Arist Health Care', 'Levorist M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorist M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3301, 'Levorit 500mg Infusion', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levorit 500mg Infusion', 'Is Levorit 500mg Infusion safe?', 'Levorit 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3302, 'Levorit 500mg Infusion', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levorit 500mg Infusion', 'Can the use of Levorit 500mg Infusion cause diarrhea?', 'Yes, the use of Levorit 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3303, 'Levorit 500mg Infusion', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levorit 500mg Infusion', 'Can the use of Levorit 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levorit 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorit 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3304, 'Levorit 500mg Infusion', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levorit 500mg Infusion', 'How is Levorit 500mg Infusion administered?', 'Levorit 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levorit 500mg Infusion.'),
(3305, 'Levorit 500mg Infusion', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levorit 500mg Infusion', 'Is Levorit 500mg Infusion effective?', 'Levorit 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levorit 500mg Infusion too early, the symptoms may return or worsen.'),
(3306, 'Levorit 500mg Tablet', 'Medford Pharmaceuticals', 'Levorit 500mg Tablet', 'Is Levorit 500mg Tablet safe?', 'Levorit 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3307, 'Levorit 500mg Tablet', 'Medford Pharmaceuticals', 'Levorit 500mg Tablet', 'What if I forget to take a dose of Levorit 500mg Tablet?', 'If you forget a dose of Levorit 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3308, 'Levorit 500mg Tablet', 'Medford Pharmaceuticals', 'Levorit 500mg Tablet', 'Can the use of Levorit 500mg Tablet cause diarrhea?', 'Yes, the use of Levorit 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3309, 'Levorit 500mg Tablet', 'Medford Pharmaceuticals', 'Levorit 500mg Tablet', 'Can I stop taking Levorit 500mg Tablet when I feel better?', 'No, do not stop taking Levorit 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorit 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorit 500mg Tablet in the dose and duration advised by the doctor.'),
(3310, 'Levorit 500mg Tablet', 'Medford Pharmaceuticals', 'Levorit 500mg Tablet', 'Can the use of Levorit 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorit 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorit 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3311, 'Levorite 500mg Tablet', 'Hetero Healthcare Limited', 'Levorite 500mg Tablet', 'Is Levorite 500mg Tablet safe?', 'Levorite 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3312, 'Levorite 500mg Tablet', 'Hetero Healthcare Limited', 'Levorite 500mg Tablet', 'What if I forget to take a dose of Levorite 500mg Tablet?', 'If you forget a dose of Levorite 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3313, 'Levorite 500mg Tablet', 'Hetero Healthcare Limited', 'Levorite 500mg Tablet', 'Can the use of Levorite 500mg Tablet cause diarrhea?', 'Yes, the use of Levorite 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3314, 'Levorite 500mg Tablet', 'Hetero Healthcare Limited', 'Levorite 500mg Tablet', 'Can I stop taking Levorite 500mg Tablet when I feel better?', 'No, do not stop taking Levorite 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorite 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorite 500mg Tablet in the dose and duration advised by the doctor.'),
(3315, 'Levorite 500mg Tablet', 'Hetero Healthcare Limited', 'Levorite 500mg Tablet', 'Can the use of Levorite 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorite 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorite 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3316, 'Levoriv 500 Tablet', 'Fedley Healthcare Private Limited', 'Levoriv 500 Tablet', 'Is Levoriv 500 Tablet safe?', 'Levoriv 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3317, 'Levoriv 500 Tablet', 'Fedley Healthcare Private Limited', 'Levoriv 500 Tablet', 'What if I forget to take a dose of Levoriv 500 Tablet?', 'If you forget a dose of Levoriv 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3318, 'Levoriv 500 Tablet', 'Fedley Healthcare Private Limited', 'Levoriv 500 Tablet', 'Can the use of Levoriv 500 Tablet cause diarrhea?', 'Yes, the use of Levoriv 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3319, 'Levoriv 500 Tablet', 'Fedley Healthcare Private Limited', 'Levoriv 500 Tablet', 'Can I stop taking Levoriv 500 Tablet when I feel better?', 'No, do not stop taking Levoriv 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoriv 500 Tablet too early, the symptoms may return or worsen. Continue taking Levoriv 500 Tablet in the dose and duration advised by the doctor.'),
(3320, 'Levoriv 500 Tablet', 'Fedley Healthcare Private Limited', 'Levoriv 500 Tablet', 'Can the use of Levoriv 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoriv 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoriv 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3321, 'Levoriv OZ 250mg/500mg Tablet', 'Fedley Healthcare Private Limited', 'Levoriv OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levoriv OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3322, 'Levoriv OZ 250mg/500mg Tablet', 'Fedley Healthcare Private Limited', 'Levoriv OZ 250mg/500mg Tablet', 'Can I stop taking Levoriv OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoriv OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3323, 'Levoriv OZ 250mg/500mg Tablet', 'Fedley Healthcare Private Limited', 'Levoriv OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levoriv OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3324, 'Levoriv-OZ Oral Suspension', 'Fedley Healthcare Private Limited', 'Levoriv-OZ Oral Suspension', 'What if I don\'t get better after using Levoriv-OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3325, 'Levoriv-OZ Oral Suspension', 'Fedley Healthcare Private Limited', 'Levoriv-OZ Oral Suspension', 'Can I stop taking Levoriv-OZ Oral Suspension when I feel better?', 'No, do not stop taking Levoriv-OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3326, 'Levoriv-OZ Oral Suspension', 'Fedley Healthcare Private Limited', 'Levoriv-OZ Oral Suspension', 'What if I miss my dose?', 'Take Levoriv-OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3327, 'Levoriz 5mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levoriz 5mg Tablet', 'Is Levoriz 5mg Tablet a steroid? What is it used for?', 'No, Levoriz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3328, 'Levoriz 5mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levoriz 5mg Tablet', 'Does Levoriz 5mg Tablet make you tired and drowsy?', 'Yes, Levoriz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3329, 'Levoriz 5mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levoriz 5mg Tablet', 'How long does it take for Levoriz 5mg Tablet to work?', 'Levoriz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3330, 'Levoriz 5mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levoriz 5mg Tablet', 'Can I take Levoriz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoriz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3331, 'Levoriz 5mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levoriz 5mg Tablet', 'Is it safe to take Levoriz 5mg Tablet for a long time?', 'Levoriz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoriz 5mg Tablet for only as long as you need it.'),
(3332, 'Levoriz 5mg Tablet', 'Nexkem Pharmaceuticals Pvt Ltd', 'Levoriz 5mg Tablet', 'For how long should I continue Levoriz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoriz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoriz 5mg Tablet'),
(3333, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3334, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'Can I decrease the dose of Levorize M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3335, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'How should Levorize M Kid Syrup be stored?', 'Levorize M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3336, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'Can Levorize M Kid Syrup make my child sleepy?', 'Levorize M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3337, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levorize M Kid Syrup?', 'No, don’t start Levorize M Kid Syrup without speaking to your child’s doctor. Moreover, Levorize M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3338, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levorize M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3339, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levorize M Kid Syrup to my child?', 'Some studies show that Levorize M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3340, 'Levorize M Kid Syrup', 'Jarun Pharmaceuticals', 'Levorize M Kid Syrup', 'Can I use Levorize M Kid Syrup for treating acute asthma attacks in my child?', 'Levorize M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3341, 'Levorize M Kid Tablet', 'Jarun Pharmaceuticals', 'Levorize M Kid Tablet', 'What is Levorize M Kid Tablet?', 'Levorize M Kid Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3342, 'Levorize M Kid Tablet', 'Jarun Pharmaceuticals', 'Levorize M Kid Tablet', 'Can the use of Levorize M Kid Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorize M Kid Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3343, 'Levorize M Kid Tablet', 'Jarun Pharmaceuticals', 'Levorize M Kid Tablet', 'Can Levorize M Kid Tablet be stopped when allergy symptoms are relieved?', 'No, Levorize M Kid Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3344, 'Levorize M Kid Tablet', 'Jarun Pharmaceuticals', 'Levorize M Kid Tablet', 'Can the use of Levorize M Kid Tablet cause dry mouth?', 'Yes, the use of Levorize M Kid Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3345, 'Levorize M Kid Tablet', 'Jarun Pharmaceuticals', 'Levorize M Kid Tablet', 'Can I drink alcohol while taking Levorize M Kid Tablet?', 'No, do not take alcohol while taking Levorize M Kid Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorize M Kid Tablet.'),
(3346, 'Levorize M Kid Tablet', 'Jarun Pharmaceuticals', 'Levorize M Kid Tablet', 'Will Levorize M Kid Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorize M Kid Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3347, 'Levorize M Kid Tablet', 'Jarun Pharmaceuticals', 'Levorize M Kid Tablet', 'What are the instructions for storage and disposal of Levorize M Kid Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3348, 'Levorize Tablet', 'Jarun Pharmaceuticals', 'Levorize Tablet', 'Is Levorize Tablet a steroid? What is it used for?', 'No, Levorize Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3349, 'Levorize Tablet', 'Jarun Pharmaceuticals', 'Levorize Tablet', 'Does Levorize Tablet make you tired and drowsy?', 'Yes, Levorize Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3350, 'Levorize Tablet', 'Jarun Pharmaceuticals', 'Levorize Tablet', 'How long does it take for Levorize Tablet to work?', 'Levorize Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3351, 'Levorize Tablet', 'Jarun Pharmaceuticals', 'Levorize Tablet', 'Can I take Levorize Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorize Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3352, 'Levorize Tablet', 'Jarun Pharmaceuticals', 'Levorize Tablet', 'Is it safe to take Levorize Tablet for a long time?', 'Levorize Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorize Tablet for only as long as you need it.'),
(3353, 'Levorize Tablet', 'Jarun Pharmaceuticals', 'Levorize Tablet', 'For how long should I continue Levorize Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorize Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorize Tablet'),
(3354, 'Levoriz-MK 5mg/10mg Tablet', 'Ritz Pharma', 'Levoriz-MK 5mg/10mg Tablet', 'What is Levoriz-MK 5mg/10mg Tablet?', 'Levoriz-MK 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3355, 'Levoriz-MK 5mg/10mg Tablet', 'Ritz Pharma', 'Levoriz-MK 5mg/10mg Tablet', 'Can the use of Levoriz-MK 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoriz-MK 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3356, 'Levoriz-MK 5mg/10mg Tablet', 'Ritz Pharma', 'Levoriz-MK 5mg/10mg Tablet', 'Can Levoriz-MK 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoriz-MK 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3357, 'Levoriz-MK 5mg/10mg Tablet', 'Ritz Pharma', 'Levoriz-MK 5mg/10mg Tablet', 'Can the use of Levoriz-MK 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoriz-MK 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3358, 'Levoriz-MK 5mg/10mg Tablet', 'Ritz Pharma', 'Levoriz-MK 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoriz-MK 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoriz-MK 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoriz-MK 5mg/10mg Tablet.'),
(3359, 'Levoriz-MK 5mg/10mg Tablet', 'Ritz Pharma', 'Levoriz-MK 5mg/10mg Tablet', 'Will Levoriz-MK 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoriz-MK 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3360, 'Levoriz-MK 5mg/10mg Tablet', 'Ritz Pharma', 'Levoriz-MK 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoriz-MK 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3361, 'Levorock 250mg Tablet', 'Athens Wellness', 'Levorock 250mg Tablet', 'Is Levorock 250mg Tablet safe?', 'Levorock 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3362, 'Levorock 250mg Tablet', 'Athens Wellness', 'Levorock 250mg Tablet', 'What if I forget to take a dose of Levorock 250mg Tablet?', 'If you forget a dose of Levorock 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3363, 'Levorock 250mg Tablet', 'Athens Wellness', 'Levorock 250mg Tablet', 'Can the use of Levorock 250mg Tablet cause diarrhea?', 'Yes, the use of Levorock 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3364, 'Levorock 250mg Tablet', 'Athens Wellness', 'Levorock 250mg Tablet', 'Can I stop taking Levorock 250mg Tablet when I feel better?', 'No, do not stop taking Levorock 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorock 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levorock 250mg Tablet in the dose and duration advised by the doctor.'),
(3365, 'Levorock 250mg Tablet', 'Athens Wellness', 'Levorock 250mg Tablet', 'Can the use of Levorock 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorock 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorock 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3366, 'Levorock 500mg Tablet', 'Athens Wellness', 'Levorock 500mg Tablet', 'Is Levorock 500mg Tablet safe?', 'Levorock 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3367, 'Levorock 500mg Tablet', 'Athens Wellness', 'Levorock 500mg Tablet', 'What if I forget to take a dose of Levorock 500mg Tablet?', 'If you forget a dose of Levorock 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3368, 'Levorock 500mg Tablet', 'Athens Wellness', 'Levorock 500mg Tablet', 'Can the use of Levorock 500mg Tablet cause diarrhea?', 'Yes, the use of Levorock 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3369, 'Levorock 500mg Tablet', 'Athens Wellness', 'Levorock 500mg Tablet', 'Can I stop taking Levorock 500mg Tablet when I feel better?', 'No, do not stop taking Levorock 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorock 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorock 500mg Tablet in the dose and duration advised by the doctor.'),
(3370, 'Levorock 500mg Tablet', 'Athens Wellness', 'Levorock 500mg Tablet', 'Can the use of Levorock 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorock 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorock 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3371, 'Levorokk 5mg Tablet', 'Rokkwinn Healthcare', 'Levorokk 5mg Tablet', 'Is Levorokk 5mg Tablet a steroid? What is it used for?', 'No, Levorokk 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3372, 'Levorokk 5mg Tablet', 'Rokkwinn Healthcare', 'Levorokk 5mg Tablet', 'Does Levorokk 5mg Tablet make you tired and drowsy?', 'Yes, Levorokk 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3373, 'Levorokk 5mg Tablet', 'Rokkwinn Healthcare', 'Levorokk 5mg Tablet', 'How long does it take for Levorokk 5mg Tablet to work?', 'Levorokk 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3374, 'Levorokk 5mg Tablet', 'Rokkwinn Healthcare', 'Levorokk 5mg Tablet', 'Can I take Levorokk 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorokk 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3375, 'Levorokk 5mg Tablet', 'Rokkwinn Healthcare', 'Levorokk 5mg Tablet', 'Is it safe to take Levorokk 5mg Tablet for a long time?', 'Levorokk 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorokk 5mg Tablet for only as long as you need it.'),
(3376, 'Levorokk 5mg Tablet', 'Rokkwinn Healthcare', 'Levorokk 5mg Tablet', 'For how long should I continue Levorokk 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorokk 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorokk 5mg Tablet'),
(3377, 'Levorokk MN 5mg/10mg Tablet', 'Rokkwinn Healthcare', 'Levorokk MN 5mg/10mg Tablet', 'What is Levorokk MN 5mg/10mg Tablet?', 'Levorokk MN 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3378, 'Levorokk MN 5mg/10mg Tablet', 'Rokkwinn Healthcare', 'Levorokk MN 5mg/10mg Tablet', 'Can the use of Levorokk MN 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorokk MN 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3379, 'Levorokk MN 5mg/10mg Tablet', 'Rokkwinn Healthcare', 'Levorokk MN 5mg/10mg Tablet', 'Can Levorokk MN 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorokk MN 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3380, 'Levorokk MN 5mg/10mg Tablet', 'Rokkwinn Healthcare', 'Levorokk MN 5mg/10mg Tablet', 'Can the use of Levorokk MN 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorokk MN 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3381, 'Levorokk MN 5mg/10mg Tablet', 'Rokkwinn Healthcare', 'Levorokk MN 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorokk MN 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorokk MN 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorokk MN 5mg/10mg Tablet.'),
(3382, 'Levorokk MN 5mg/10mg Tablet', 'Rokkwinn Healthcare', 'Levorokk MN 5mg/10mg Tablet', 'Will Levorokk MN 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorokk MN 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3383, 'Levorokk MN 5mg/10mg Tablet', 'Rokkwinn Healthcare', 'Levorokk MN 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorokk MN 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3384, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3385, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'Can I decrease the dose of Levorokk MN Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3386, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'How should Levorokk MN Syrup be stored?', 'Levorokk MN Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3387, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'Can Levorokk MN Syrup make my child sleepy?', 'Levorokk MN Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3388, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levorokk MN Syrup?', 'No, don’t start Levorokk MN Syrup without speaking to your child’s doctor. Moreover, Levorokk MN Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3389, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levorokk MN Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3390, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levorokk MN Syrup to my child?', 'Some studies show that Levorokk MN Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3391, 'Levorokk MN Syrup', 'Rokkwinn Healthcare', 'Levorokk MN Syrup', 'Can I use Levorokk MN Syrup for treating acute asthma attacks in my child?', 'Levorokk MN Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3392, 'Levorols 500mg Tablet', 'Rolsmed Pharma', 'Levorols 500mg Tablet', 'Q. Is Levorols 500mg Tablet safe?', 'Levorols 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3393, 'Levorols 500mg Tablet', 'Rolsmed Pharma', 'Levorols 500mg Tablet', 'Q. What if I forget to take a dose of Levorols 500mg Tablet?', 'If you forget a dose of Levorols 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3394, 'Levorols 500mg Tablet', 'Rolsmed Pharma', 'Levorols 500mg Tablet', 'Q. Can the use of Levorols 500mg Tablet cause diarrhea?', 'Yes, the use of Levorols 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3395, 'Levorols 500mg Tablet', 'Rolsmed Pharma', 'Levorols 500mg Tablet', 'Q. Can I stop taking Levorols 500mg Tablet when I feel better?', 'No, do not stop taking Levorols 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorols 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorols 500mg Tablet in the dose and duration advised by the doctor.'),
(3396, 'Levorols 500mg Tablet', 'Rolsmed Pharma', 'Levorols 500mg Tablet', 'Q. Can the use of Levorols 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorols 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorols 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3397, 'Levoron 500mg Tablet', 'Agron Remedies Pvt Ltd', 'Levoron 500mg Tablet (Agron Remedies Pvt Ltd)', 'Is Levoron 500mg Tablet safe?', 'Levoron 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3398, 'Levoron 500mg Tablet', 'Agron Remedies Pvt Ltd', 'Levoron 500mg Tablet (Agron Remedies Pvt Ltd)', 'What if I forget to take a dose of Levoron 500mg Tablet?', 'If you forget a dose of Levoron 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3399, 'Levoron 500mg Tablet', 'Agron Remedies Pvt Ltd', 'Levoron 500mg Tablet (Agron Remedies Pvt Ltd)', 'Can the use of Levoron 500mg Tablet cause diarrhea?', 'Yes, the use of Levoron 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3400, 'Levoron 500mg Tablet', 'Agron Remedies Pvt Ltd', 'Levoron 500mg Tablet (Agron Remedies Pvt Ltd)', 'Can I stop taking Levoron 500mg Tablet when I feel better?', 'No, do not stop taking Levoron 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoron 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoron 500mg Tablet in the dose and duration advised by the doctor.'),
(3401, 'Levoron 500mg Tablet', 'Agron Remedies Pvt Ltd', 'Levoron 500mg Tablet (Agron Remedies Pvt Ltd)', 'Can the use of Levoron 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoron 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoron 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3402, 'Levoron 500mg Tablet', 'Proceed Formulations', 'Levoron 500mg Tablet (Proceed Formulations)', 'Is Levoron 500mg Tablet safe?', 'Levoron 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3403, 'Levoron 500mg Tablet', 'Proceed Formulations', 'Levoron 500mg Tablet (Proceed Formulations)', 'What if I forget to take a dose of Levoron 500mg Tablet?', 'If you forget a dose of Levoron 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3404, 'Levoron 500mg Tablet', 'Proceed Formulations', 'Levoron 500mg Tablet (Proceed Formulations)', 'Can the use of Levoron 500mg Tablet cause diarrhea?', 'Yes, the use of Levoron 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3405, 'Levoron 500mg Tablet', 'Proceed Formulations', 'Levoron 500mg Tablet (Proceed Formulations)', 'Can I stop taking Levoron 500mg Tablet when I feel better?', 'No, do not stop taking Levoron 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoron 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoron 500mg Tablet in the dose and duration advised by the doctor.'),
(3406, 'Levoron 500mg Tablet', 'Proceed Formulations', 'Levoron 500mg Tablet (Proceed Formulations)', 'Can the use of Levoron 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoron 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoron 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3407, 'Levoroot 5mg Tablet', 'Elgoog Health Series', 'Levoroot 5mg Tablet', 'Is Levoroot 5mg Tablet a steroid? What is it used for?', 'No, Levoroot 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3408, 'Levoroot 5mg Tablet', 'Elgoog Health Series', 'Levoroot 5mg Tablet', 'Does Levoroot 5mg Tablet make you tired and drowsy?', 'Yes, Levoroot 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3409, 'Levoroot 5mg Tablet', 'Elgoog Health Series', 'Levoroot 5mg Tablet', 'How long does it take for Levoroot 5mg Tablet to work?', 'Levoroot 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3410, 'Levoroot 5mg Tablet', 'Elgoog Health Series', 'Levoroot 5mg Tablet', 'Can I take Levoroot 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoroot 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3411, 'Levoroot 5mg Tablet', 'Elgoog Health Series', 'Levoroot 5mg Tablet', 'Is it safe to take Levoroot 5mg Tablet for a long time?', 'Levoroot 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoroot 5mg Tablet for only as long as you need it.'),
(3412, 'Levoroot 5mg Tablet', 'Elgoog Health Series', 'Levoroot 5mg Tablet', 'For how long should I continue Levoroot 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoroot 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoroot 5mg Tablet'),
(3413, 'Levoroot FA 10mg/120mg/200mg Tablet', 'Elgoog Health Series', 'Levoroot FA 10mg/120mg/200mg Tablet', 'What should be avoided while taking Levoroot FA 10mg/120mg/200mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levoroot FA 10mg/120mg/200mg Tablet. Drinking alcohol will increase the severity of drowsiness or sleepiness caused by Levoroot FA 10mg/120mg/200mg Tablet.'),
(3414, 'Levoroot FA 10mg/120mg/200mg Tablet', 'Elgoog Health Series', 'Levoroot FA 10mg/120mg/200mg Tablet', 'Can I stop Levoroot FA 10mg/120mg/200mg Tablet when my symptoms are relieved?', 'No, Levoroot FA 10mg/120mg/200mg Tablet should be continued as advised by the doctor. If you experience any problem due to the use of Levoroot FA 10mg/120mg/200mg Tablet, inform your doctor.'),
(3415, 'Levoroot FA 10mg/120mg/200mg Tablet', 'Elgoog Health Series', 'Levoroot FA 10mg/120mg/200mg Tablet', 'Can the use of Levoroot FA 10mg/120mg/200mg Tablet cause dizziness?', 'Yes, the use of Levoroot FA 10mg/120mg/200mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(3416, 'Levoroot FA 10mg/120mg/200mg Tablet', 'Elgoog Health Series', 'Levoroot FA 10mg/120mg/200mg Tablet', 'Will a higher than the recommended dose of Levoroot FA 10mg/120mg/200mg Tablet be more effective?', 'No, taking a higher than the recommended dose of Levoroot FA 10mg/120mg/200mg Tablet will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting worse, please consult the doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3417, 'Levoroot FA 10mg/120mg/200mg Tablet', 'Elgoog Health Series', 'Levoroot FA 10mg/120mg/200mg Tablet', 'What are the instructions for the storage and disposal of Levoroot FA 10mg/120mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3418, 'Levoroot M 5mg/10mg Tablet', 'Elgoog Health Series', 'Levoroot M 5mg/10mg Tablet', 'What is Levoroot M 5mg/10mg Tablet?', 'Levoroot M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3419, 'Levoroot M 5mg/10mg Tablet', 'Elgoog Health Series', 'Levoroot M 5mg/10mg Tablet', 'Can the use of Levoroot M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoroot M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3420, 'Levoroot M 5mg/10mg Tablet', 'Elgoog Health Series', 'Levoroot M 5mg/10mg Tablet', 'Can Levoroot M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoroot M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3421, 'Levoroot M 5mg/10mg Tablet', 'Elgoog Health Series', 'Levoroot M 5mg/10mg Tablet', 'Can the use of Levoroot M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoroot M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3422, 'Levoroot M 5mg/10mg Tablet', 'Elgoog Health Series', 'Levoroot M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoroot M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoroot M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoroot M 5mg/10mg Tablet.'),
(3423, 'Levoroot M 5mg/10mg Tablet', 'Elgoog Health Series', 'Levoroot M 5mg/10mg Tablet', 'Will Levoroot M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoroot M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3424, 'Levoroot M 5mg/10mg Tablet', 'Elgoog Health Series', 'Levoroot M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoroot M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3425, 'Levoros 5mg Tablet', 'Rosch Elmer Pharmaceuticals Private Limited', 'Levoros 5mg Tablet', 'Is Levoros 5mg Tablet a steroid? What is it used for?', 'No, Levoros 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3426, 'Levoros 5mg Tablet', 'Rosch Elmer Pharmaceuticals Private Limited', 'Levoros 5mg Tablet', 'Does Levoros 5mg Tablet make you tired and drowsy?', 'Yes, Levoros 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3427, 'Levoros 5mg Tablet', 'Rosch Elmer Pharmaceuticals Private Limited', 'Levoros 5mg Tablet', 'How long does it take for Levoros 5mg Tablet to work?', 'Levoros 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3428, 'Levoros 5mg Tablet', 'Rosch Elmer Pharmaceuticals Private Limited', 'Levoros 5mg Tablet', 'Can I take Levoros 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoros 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3429, 'Levoros 5mg Tablet', 'Rosch Elmer Pharmaceuticals Private Limited', 'Levoros 5mg Tablet', 'Is it safe to take Levoros 5mg Tablet for a long time?', 'Levoros 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoros 5mg Tablet for only as long as you need it.'),
(3430, 'Levoros 5mg Tablet', 'Rosch Elmer Pharmaceuticals Private Limited', 'Levoros 5mg Tablet', 'For how long should I continue Levoros 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoros 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoros 5mg Tablet'),
(3431, 'Levoros M 5mg/10mg Tablet', 'Amross Lifescience', 'Levoros M 5mg/10mg Tablet', 'What is Levoros M 5mg/10mg Tablet?', 'Levoros M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3432, 'Levoros M 5mg/10mg Tablet', 'Amross Lifescience', 'Levoros M 5mg/10mg Tablet', 'Can the use of Levoros M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoros M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3433, 'Levoros M 5mg/10mg Tablet', 'Amross Lifescience', 'Levoros M 5mg/10mg Tablet', 'Can Levoros M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoros M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3434, 'Levoros M 5mg/10mg Tablet', 'Amross Lifescience', 'Levoros M 5mg/10mg Tablet', 'Can the use of Levoros M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoros M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3435, 'Levoros M 5mg/10mg Tablet', 'Amross Lifescience', 'Levoros M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoros M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoros M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoros M 5mg/10mg Tablet.'),
(3436, 'Levoros M 5mg/10mg Tablet', 'Amross Lifescience', 'Levoros M 5mg/10mg Tablet', 'Will Levoros M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoros M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3437, 'Levoros M 5mg/10mg Tablet', 'Amross Lifescience', 'Levoros M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoros M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3438, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3439, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'Can I decrease the dose of Levoros M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3440, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'How should Levoros M Syrup be stored?', 'Levoros M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3441, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'Can Levoros M Syrup make my child sleepy?', 'Levoros M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3442, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoros M Syrup?', 'No, don’t start Levoros M Syrup without speaking to your child’s doctor. Moreover, Levoros M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3443, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoros M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3444, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoros M Syrup to my child?', 'Some studies show that Levoros M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3445, 'Levoros M Syrup', 'Amross Lifescience', 'Levoros M Syrup', 'Can I use Levoros M Syrup for treating acute asthma attacks in my child?', 'Levoros M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3446, 'Levorow AZ 250mg/250mg Tablet', 'Rowlinges Life Science', 'Levorow AZ 250mg/250mg Tablet', 'What if I don\'t get better after using Levorow AZ 250mg/250mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3447, 'Levorow AZ 250mg/250mg Tablet', 'Rowlinges Life Science', 'Levorow AZ 250mg/250mg Tablet', 'What if I miss my dose?', 'Take Levorow AZ 250mg/250mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3448, 'Levorox 250mg Tablet', 'Wonder Healthcare', 'Levorox 250mg Tablet', 'Is Levorox 250mg Tablet safe?', 'Levorox 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3449, 'Levorox 250mg Tablet', 'Wonder Healthcare', 'Levorox 250mg Tablet', 'What if I forget to take a dose of Levorox 250mg Tablet?', 'If you forget a dose of Levorox 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3450, 'Levorox 250mg Tablet', 'Wonder Healthcare', 'Levorox 250mg Tablet', 'Can the use of Levorox 250mg Tablet cause diarrhea?', 'Yes, the use of Levorox 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3451, 'Levorox 250mg Tablet', 'Wonder Healthcare', 'Levorox 250mg Tablet', 'Can I stop taking Levorox 250mg Tablet when I feel better?', 'No, do not stop taking Levorox 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorox 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levorox 250mg Tablet in the dose and duration advised by the doctor.'),
(3452, 'Levorox 250mg Tablet', 'Wonder Healthcare', 'Levorox 250mg Tablet', 'Can the use of Levorox 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorox 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorox 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3453, 'Levorox 500mg Tablet', 'Wonder Healthcare', 'Levorox 500mg Tablet', 'Is Levorox 500mg Tablet safe?', 'Levorox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3454, 'Levorox 500mg Tablet', 'Wonder Healthcare', 'Levorox 500mg Tablet', 'What if I forget to take a dose of Levorox 500mg Tablet?', 'If you forget a dose of Levorox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3455, 'Levorox 500mg Tablet', 'Wonder Healthcare', 'Levorox 500mg Tablet', 'Can the use of Levorox 500mg Tablet cause diarrhea?', 'Yes, the use of Levorox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3456, 'Levorox 500mg Tablet', 'Wonder Healthcare', 'Levorox 500mg Tablet', 'Can I stop taking Levorox 500mg Tablet when I feel better?', 'No, do not stop taking Levorox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorox 500mg Tablet in the dose and duration advised by the doctor.'),
(3457, 'Levorox 500mg Tablet', 'Wonder Healthcare', 'Levorox 500mg Tablet', 'Can the use of Levorox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3458, 'Levoroy 10 Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy 10 Tablet', 'Is Levoroy 10 Tablet a steroid? What is it used for?', 'No, Levoroy 10 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3459, 'Levoroy 10 Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy 10 Tablet', 'Does Levoroy 10 Tablet make you tired and drowsy?', 'Yes, Levoroy 10 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3460, 'Levoroy 10 Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy 10 Tablet', 'How long does it take for Levoroy 10 Tablet to work?', 'Levoroy 10 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3461, 'Levoroy 10 Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy 10 Tablet', 'Can I take Levoroy 10 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoroy 10 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3462, 'Levoroy 10 Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy 10 Tablet', 'Is it safe to take Levoroy 10 Tablet for a long time?', 'Levoroy 10 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoroy 10 Tablet for only as long as you need it.'),
(3463, 'Levoroy 10 Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy 10 Tablet', 'For how long should I continue Levoroy 10 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoroy 10 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoroy 10 Tablet'),
(3464, 'Levoroy M Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy M Tablet', 'What is Levoroy M Tablet?', 'Levoroy M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3465, 'Levoroy M Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy M Tablet', 'Can the use of Levoroy M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoroy M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3466, 'Levoroy M Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy M Tablet', 'Can Levoroy M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoroy M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3467, 'Levoroy M Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy M Tablet', 'Can the use of Levoroy M Tablet cause dry mouth?', 'Yes, the use of Levoroy M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3468, 'Levoroy M Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy M Tablet', 'Can I drink alcohol while taking Levoroy M Tablet?', 'No, do not take alcohol while taking Levoroy M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoroy M Tablet.'),
(3469, 'Levoroy M Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy M Tablet', 'Will Levoroy M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoroy M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3470, 'Levoroy M Tablet', 'BCR Life Scicenses Pvt Ltd', 'Levoroy M Tablet', 'What are the instructions for storage and disposal of Levoroy M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3471, 'Levoroz 250mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 250mg Tablet', 'Is Levoroz 250mg Tablet safe?', 'Levoroz 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3472, 'Levoroz 250mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 250mg Tablet', 'What if I forget to take a dose of Levoroz 250mg Tablet?', 'If you forget a dose of Levoroz 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3473, 'Levoroz 250mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 250mg Tablet', 'Can the use of Levoroz 250mg Tablet cause diarrhea?', 'Yes, the use of Levoroz 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3474, 'Levoroz 250mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 250mg Tablet', 'Can I stop taking Levoroz 250mg Tablet when I feel better?', 'No, do not stop taking Levoroz 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoroz 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoroz 250mg Tablet in the dose and duration advised by the doctor.'),
(3475, 'Levoroz 250mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 250mg Tablet', 'Can the use of Levoroz 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoroz 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoroz 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3476, 'Levoroz 500 Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 500 Tablet', 'Is Levoroz 500 Tablet safe?', 'Levoroz 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3477, 'Levoroz 500 Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 500 Tablet', 'What if I forget to take a dose of Levoroz 500 Tablet?', 'If you forget a dose of Levoroz 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3478, 'Levoroz 500 Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 500 Tablet', 'Can the use of Levoroz 500 Tablet cause diarrhea?', 'Yes, the use of Levoroz 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3479, 'Levoroz 500 Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 500 Tablet', 'Can I stop taking Levoroz 500 Tablet when I feel better?', 'No, do not stop taking Levoroz 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoroz 500 Tablet too early, the symptoms may return or worsen. Continue taking Levoroz 500 Tablet in the dose and duration advised by the doctor.'),
(3480, 'Levoroz 500 Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 500 Tablet', 'Can the use of Levoroz 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoroz 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoroz 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3481, 'Levoroz 500mg IV Infusion', 'Maksun Biotech Pvt Ltd', 'Levoroz 500mg IV Infusion', 'Is Levoroz 500mg IV Infusion safe?', 'Levoroz 500mg IV Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3482, 'Levoroz 500mg IV Infusion', 'Maksun Biotech Pvt Ltd', 'Levoroz 500mg IV Infusion', 'Can the use of Levoroz 500mg IV Infusion cause diarrhea?', 'Yes, the use of Levoroz 500mg IV Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3483, 'Levoroz 500mg IV Infusion', 'Maksun Biotech Pvt Ltd', 'Levoroz 500mg IV Infusion', 'Can the use of Levoroz 500mg IV Infusion increase the risk of muscle damage?', 'Yes, the use of Levoroz 500mg IV Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoroz 500mg IV Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3484, 'Levoroz 500mg IV Infusion', 'Maksun Biotech Pvt Ltd', 'Levoroz 500mg IV Infusion', 'How is Levoroz 500mg IV Infusion administered?', 'Levoroz 500mg IV Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levoroz 500mg IV Infusion.'),
(3485, 'Levoroz 500mg IV Infusion', 'Maksun Biotech Pvt Ltd', 'Levoroz 500mg IV Infusion', 'Is Levoroz 500mg IV Infusion effective?', 'Levoroz 500mg IV Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levoroz 500mg IV Infusion too early, the symptoms may return or worsen.'),
(3486, 'Levoroz 750mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 750mg Tablet', 'Is Levoroz 750mg Tablet safe?', 'Levoroz 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3487, 'Levoroz 750mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 750mg Tablet', 'What if I forget to take a dose of Levoroz 750mg Tablet?', 'If you forget a dose of Levoroz 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3488, 'Levoroz 750mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 750mg Tablet', 'Can the use of Levoroz 750mg Tablet cause diarrhea?', 'Yes, the use of Levoroz 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3489, 'Levoroz 750mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 750mg Tablet', 'Can I stop taking Levoroz 750mg Tablet when I feel better?', 'No, do not stop taking Levoroz 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoroz 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levoroz 750mg Tablet in the dose and duration advised by the doctor.'),
(3490, 'Levoroz 750mg Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz 750mg Tablet', 'Can the use of Levoroz 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoroz 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoroz 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3491, 'Levoroz OZ Oral Suspension', 'Maksun Biotech Pvt Ltd', 'Levoroz OZ Oral Suspension', 'What if I don\'t get better after using Levoroz OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3492, 'Levoroz OZ Oral Suspension', 'Maksun Biotech Pvt Ltd', 'Levoroz OZ Oral Suspension', 'Can I stop taking Levoroz OZ Oral Suspension when I feel better?', 'No, do not stop taking Levoroz OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3493, 'Levoroz OZ Oral Suspension', 'Maksun Biotech Pvt Ltd', 'Levoroz OZ Oral Suspension', 'What if I miss my dose?', 'Take Levoroz OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3494, 'Levoroz-AZ Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz-AZ Tablet', 'What if I don\'t get better after using Levoroz-AZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3495, 'Levoroz-AZ Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz-AZ Tablet', 'What if I miss my dose?', 'Take Levoroz-AZ Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3496, 'Levoroze 500mg Tablet', 'Medirose drug & pharma', 'Levoroze 500mg Tablet', 'Is Levoroze 500mg Tablet safe?', 'Levoroze 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3497, 'Levoroze 500mg Tablet', 'Medirose drug & pharma', 'Levoroze 500mg Tablet', 'What if I forget to take a dose of Levoroze 500mg Tablet?', 'If you forget a dose of Levoroze 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3498, 'Levoroze 500mg Tablet', 'Medirose drug & pharma', 'Levoroze 500mg Tablet', 'Can the use of Levoroze 500mg Tablet cause diarrhea?', 'Yes, the use of Levoroze 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3499, 'Levoroze 500mg Tablet', 'Medirose drug & pharma', 'Levoroze 500mg Tablet', 'Can I stop taking Levoroze 500mg Tablet when I feel better?', 'No, do not stop taking Levoroze 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoroze 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoroze 500mg Tablet in the dose and duration advised by the doctor.'),
(3500, 'Levoroze 500mg Tablet', 'Medirose drug & pharma', 'Levoroze 500mg Tablet', 'Can the use of Levoroze 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoroze 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoroze 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3501, 'Levoroz-OZ Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz-OZ Tablet', 'What if I don\'t get better after using Levoroz-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3502, 'Levoroz-OZ Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz-OZ Tablet', 'Can I stop taking Levoroz-OZ Tablet when I feel better?', 'No, do not stop taking Levoroz-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3503, 'Levoroz-OZ Tablet', 'Maksun Biotech Pvt Ltd', 'Levoroz-OZ Tablet', 'What if I miss my dose?', 'Take Levoroz-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3504, 'Levorrac M Tablet', 'RRAC Healthcare Pvt Ltd', 'Levorrac M Tablet', 'What is Levorrac M Tablet?', 'Levorrac M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3505, 'Levorrac M Tablet', 'RRAC Healthcare Pvt Ltd', 'Levorrac M Tablet', 'Can the use of Levorrac M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorrac M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3506, 'Levorrac M Tablet', 'RRAC Healthcare Pvt Ltd', 'Levorrac M Tablet', 'Can Levorrac M Tablet be stopped when allergy symptoms are relieved?', 'No, Levorrac M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3507, 'Levorrac M Tablet', 'RRAC Healthcare Pvt Ltd', 'Levorrac M Tablet', 'Can the use of Levorrac M Tablet cause dry mouth?', 'Yes, the use of Levorrac M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3508, 'Levorrac M Tablet', 'RRAC Healthcare Pvt Ltd', 'Levorrac M Tablet', 'Can I drink alcohol while taking Levorrac M Tablet?', 'No, do not take alcohol while taking Levorrac M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorrac M Tablet.'),
(3509, 'Levorrac M Tablet', 'RRAC Healthcare Pvt Ltd', 'Levorrac M Tablet', 'Will Levorrac M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorrac M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3510, 'Levorrac M Tablet', 'RRAC Healthcare Pvt Ltd', 'Levorrac M Tablet', 'What are the instructions for storage and disposal of Levorrac M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3511, 'Levort 500mg Tablet', 'Coxswain Healthcare', 'Levort 500mg Tablet', 'Is Levort 500mg Tablet safe?', 'Levort 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3512, 'Levort 500mg Tablet', 'Coxswain Healthcare', 'Levort 500mg Tablet', 'What if I forget to take a dose of Levort 500mg Tablet?', 'If you forget a dose of Levort 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3513, 'Levort 500mg Tablet', 'Coxswain Healthcare', 'Levort 500mg Tablet', 'Can the use of Levort 500mg Tablet cause diarrhea?', 'Yes, the use of Levort 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3514, 'Levort 500mg Tablet', 'Coxswain Healthcare', 'Levort 500mg Tablet', 'Can I stop taking Levort 500mg Tablet when I feel better?', 'No, do not stop taking Levort 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levort 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levort 500mg Tablet in the dose and duration advised by the doctor.'),
(3515, 'Levort 500mg Tablet', 'Coxswain Healthcare', 'Levort 500mg Tablet', 'Can the use of Levort 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levort 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levort 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3516, 'Levorub 5mg Tablet', 'Grubheal Care', 'Levorub 5mg Tablet', 'Is Levorub 5mg Tablet a steroid? What is it used for?', 'No, Levorub 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3517, 'Levorub 5mg Tablet', 'Grubheal Care', 'Levorub 5mg Tablet', 'Does Levorub 5mg Tablet make you tired and drowsy?', 'Yes, Levorub 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3518, 'Levorub 5mg Tablet', 'Grubheal Care', 'Levorub 5mg Tablet', 'How long does it take for Levorub 5mg Tablet to work?', 'Levorub 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3519, 'Levorub 5mg Tablet', 'Grubheal Care', 'Levorub 5mg Tablet', 'Can I take Levorub 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorub 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3520, 'Levorub 5mg Tablet', 'Grubheal Care', 'Levorub 5mg Tablet', 'Is it safe to take Levorub 5mg Tablet for a long time?', 'Levorub 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorub 5mg Tablet for only as long as you need it.'),
(3521, 'Levorub 5mg Tablet', 'Grubheal Care', 'Levorub 5mg Tablet', 'For how long should I continue Levorub 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorub 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorub 5mg Tablet'),
(3522, 'Levorub AX Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub AX Tablet', 'Can the use of Levorub AX Tablet cause dry mouth?', 'Yes, the use of Levorub AX Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(3523, 'Levorub AX Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub AX Tablet', 'Can I use Levorub AX Tablet while breastfeeding?', 'No, Levorub AX Tablet should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(3524, 'Levorub AX Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub AX Tablet', 'Can I drink alcohol while taking Levorub AX Tablet?', 'No, avoid drinking alcohol while taking Levorub AX Tablet. Drinking alcohol will increase the risk of serious side effects caused by Levorub AX Tablet.'),
(3525, 'Levorub AX Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub AX Tablet', 'What are the instructions for the storage and disposal of Levorub AX Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3526, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3527, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'Can I decrease the dose of Levorub Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3528, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'How should Levorub Kid Tablet be stored?', 'Levorub Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3529, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'Can Levorub Kid Tablet make my child sleepy?', 'Levorub Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3530, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levorub Kid Tablet?', 'No, don’t start Levorub Kid Tablet without speaking to your child’s doctor. Moreover, Levorub Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3531, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levorub Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3532, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levorub Kid Tablet to my child?', 'Some studies show that Levorub Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3533, 'Levorub Kid Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Kid Tablet', 'Can I use Levorub Kid Tablet for treating acute asthma attacks in my child?', 'Levorub Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3534, 'Levorub M 5mg/10mg Tablet', 'Grubheal Care', 'Levorub M 5mg/10mg Tablet', 'What is Levorub M 5mg/10mg Tablet?', 'Levorub M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3535, 'Levorub M 5mg/10mg Tablet', 'Grubheal Care', 'Levorub M 5mg/10mg Tablet', 'Can the use of Levorub M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorub M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3536, 'Levorub M 5mg/10mg Tablet', 'Grubheal Care', 'Levorub M 5mg/10mg Tablet', 'Can Levorub M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorub M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3537, 'Levorub M 5mg/10mg Tablet', 'Grubheal Care', 'Levorub M 5mg/10mg Tablet', 'Can the use of Levorub M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorub M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3538, 'Levorub M 5mg/10mg Tablet', 'Grubheal Care', 'Levorub M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorub M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorub M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorub M 5mg/10mg Tablet.'),
(3539, 'Levorub M 5mg/10mg Tablet', 'Grubheal Care', 'Levorub M 5mg/10mg Tablet', 'Will Levorub M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorub M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3540, 'Levorub M 5mg/10mg Tablet', 'Grubheal Care', 'Levorub M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorub M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3541, 'Levorub Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Tablet', 'What is Levorub Tablet?', 'Levorub Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3542, 'Levorub Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Tablet', 'Can the use of Levorub Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorub Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3543, 'Levorub Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Tablet', 'Can Levorub Tablet be stopped when allergy symptoms are relieved?', 'No, Levorub Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3544, 'Levorub Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Tablet', 'Can the use of Levorub Tablet cause dry mouth?', 'Yes, the use of Levorub Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3545, 'Levorub Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Tablet', 'Can I drink alcohol while taking Levorub Tablet?', 'No, do not take alcohol while taking Levorub Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorub Tablet.'),
(3546, 'Levorub Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Tablet', 'Will Levorub Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorub Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3547, 'Levorub Tablet', 'Aarushi Healthcare Pvt Ltd', 'Levorub Tablet', 'What are the instructions for storage and disposal of Levorub Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3548, 'Levorum 250 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 250 Tablet', 'Is Levorum 250 Tablet safe?', 'Levorum 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3549, 'Levorum 250 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 250 Tablet', 'What if I forget to take a dose of Levorum 250 Tablet?', 'If you forget a dose of Levorum 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3550, 'Levorum 250 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 250 Tablet', 'Can the use of Levorum 250 Tablet cause diarrhea?', 'Yes, the use of Levorum 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3551, 'Levorum 250 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 250 Tablet', 'Can I stop taking Levorum 250 Tablet when I feel better?', 'No, do not stop taking Levorum 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorum 250 Tablet too early, the symptoms may return or worsen. Continue taking Levorum 250 Tablet in the dose and duration advised by the doctor.'),
(3552, 'Levorum 250 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 250 Tablet', 'Can the use of Levorum 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorum 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorum 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3553, 'Levorum 500 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 500 Tablet', 'Is Levorum 500 Tablet safe?', 'Levorum 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3554, 'Levorum 500 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 500 Tablet', 'What if I forget to take a dose of Levorum 500 Tablet?', 'If you forget a dose of Levorum 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3555, 'Levorum 500 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 500 Tablet', 'Can the use of Levorum 500 Tablet cause diarrhea?', 'Yes, the use of Levorum 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3556, 'Levorum 500 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 500 Tablet', 'Can I stop taking Levorum 500 Tablet when I feel better?', 'No, do not stop taking Levorum 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorum 500 Tablet too early, the symptoms may return or worsen. Continue taking Levorum 500 Tablet in the dose and duration advised by the doctor.'),
(3557, 'Levorum 500 Tablet', 'Rudrum Biotech Private Limited', 'Levorum 500 Tablet', 'Can the use of Levorum 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorum 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorum 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3558, 'Levorun 250mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 250mg Tablet', 'Is Levorun 250mg Tablet safe?', 'Levorun 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3559, 'Levorun 250mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 250mg Tablet', 'What if I forget to take a dose of Levorun 250mg Tablet?', 'If you forget a dose of Levorun 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3560, 'Levorun 250mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 250mg Tablet', 'Can the use of Levorun 250mg Tablet cause diarrhea?', 'Yes, the use of Levorun 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3561, 'Levorun 250mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 250mg Tablet', 'Can I stop taking Levorun 250mg Tablet when I feel better?', 'No, do not stop taking Levorun 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorun 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levorun 250mg Tablet in the dose and duration advised by the doctor.'),
(3562, 'Levorun 250mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 250mg Tablet', 'Can the use of Levorun 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorun 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorun 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3563, 'Levorun 500 Tablet', 'Fern Biotech', 'Levorun 500 Tablet', 'Is Levorun 500 Tablet safe?', 'Levorun 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3564, 'Levorun 500 Tablet', 'Fern Biotech', 'Levorun 500 Tablet', 'What if I forget to take a dose of Levorun 500 Tablet?', 'If you forget a dose of Levorun 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3565, 'Levorun 500 Tablet', 'Fern Biotech', 'Levorun 500 Tablet', 'Can the use of Levorun 500 Tablet cause diarrhea?', 'Yes, the use of Levorun 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3566, 'Levorun 500 Tablet', 'Fern Biotech', 'Levorun 500 Tablet', 'Can I stop taking Levorun 500 Tablet when I feel better?', 'No, do not stop taking Levorun 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorun 500 Tablet too early, the symptoms may return or worsen. Continue taking Levorun 500 Tablet in the dose and duration advised by the doctor.'),
(3567, 'Levorun 500 Tablet', 'Fern Biotech', 'Levorun 500 Tablet', 'Can the use of Levorun 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorun 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorun 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3568, 'Levorun 500mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 500mg Tablet', 'Is Levorun 500mg Tablet safe?', 'Levorun 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3569, 'Levorun 500mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 500mg Tablet', 'What if I forget to take a dose of Levorun 500mg Tablet?', 'If you forget a dose of Levorun 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3570, 'Levorun 500mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 500mg Tablet', 'Can the use of Levorun 500mg Tablet cause diarrhea?', 'Yes, the use of Levorun 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3571, 'Levorun 500mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 500mg Tablet', 'Can I stop taking Levorun 500mg Tablet when I feel better?', 'No, do not stop taking Levorun 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorun 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levorun 500mg Tablet in the dose and duration advised by the doctor.'),
(3572, 'Levorun 500mg Tablet', 'Jarun Pharmaceuticals', 'Levorun 500mg Tablet', 'Can the use of Levorun 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levorun 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorun 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3573, 'Levorute 500 Tablet', 'Osiante Biotech', 'Levorute 500 Tablet', 'Is Levorute 500 Tablet safe?', 'Levorute 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3574, 'Levorute 500 Tablet', 'Osiante Biotech', 'Levorute 500 Tablet', 'What if I forget to take a dose of Levorute 500 Tablet?', 'If you forget a dose of Levorute 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3575, 'Levorute 500 Tablet', 'Osiante Biotech', 'Levorute 500 Tablet', 'Can the use of Levorute 500 Tablet cause diarrhea?', 'Yes, the use of Levorute 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3576, 'Levorute 500 Tablet', 'Osiante Biotech', 'Levorute 500 Tablet', 'Can I stop taking Levorute 500 Tablet when I feel better?', 'No, do not stop taking Levorute 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorute 500 Tablet too early, the symptoms may return or worsen. Continue taking Levorute 500 Tablet in the dose and duration advised by the doctor.'),
(3577, 'Levorute 500 Tablet', 'Osiante Biotech', 'Levorute 500 Tablet', 'Can the use of Levorute 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorute 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorute 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3578, 'Levorute 750 Tablet', 'Osiante Biotech', 'Levorute 750 Tablet', 'Is Levorute 750 Tablet safe?', 'Levorute 750 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3579, 'Levorute 750 Tablet', 'Osiante Biotech', 'Levorute 750 Tablet', 'What if I forget to take a dose of Levorute 750 Tablet?', 'If you forget a dose of Levorute 750 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3580, 'Levorute 750 Tablet', 'Osiante Biotech', 'Levorute 750 Tablet', 'Can the use of Levorute 750 Tablet cause diarrhea?', 'Yes, the use of Levorute 750 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3581, 'Levorute 750 Tablet', 'Osiante Biotech', 'Levorute 750 Tablet', 'Can I stop taking Levorute 750 Tablet when I feel better?', 'No, do not stop taking Levorute 750 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levorute 750 Tablet too early, the symptoms may return or worsen. Continue taking Levorute 750 Tablet in the dose and duration advised by the doctor.'),
(3582, 'Levorute 750 Tablet', 'Osiante Biotech', 'Levorute 750 Tablet', 'Can the use of Levorute 750 Tablet increase the risk of muscle damage?', 'Yes, the use of Levorute 750 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorute 750 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3583, 'Levorute Infusion', 'Osiante Biotech', 'Levorute Infusion', 'Q. Is Levorute Infusion safe?', 'Levorute Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3584, 'Levorute Infusion', 'Osiante Biotech', 'Levorute Infusion', 'Q. Can the use of Levorute Infusion cause diarrhea?', 'Yes, the use of Levorute Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3585, 'Levorute Infusion', 'Osiante Biotech', 'Levorute Infusion', 'Q. Can the use of Levorute Infusion increase the risk of muscle damage?', 'Yes, the use of Levorute Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levorute Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3586, 'Levorute Infusion', 'Osiante Biotech', 'Levorute Infusion', 'Q. How is Levorute Infusion administered?', 'Levorute Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levorute Infusion.'),
(3587, 'Levorute Infusion', 'Osiante Biotech', 'Levorute Infusion', 'Q. Is Levorute Infusion effective?', 'Levorute Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levorute Infusion too early, the symptoms may return or worsen.'),
(3588, 'Levorx 5mg Tablet', 'SBM Pharmaceuticals', 'Levorx 5mg Tablet', 'Is Levorx 5mg Tablet a steroid? What is it used for?', 'No, Levorx 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3589, 'Levorx 5mg Tablet', 'SBM Pharmaceuticals', 'Levorx 5mg Tablet', 'Does Levorx 5mg Tablet make you tired and drowsy?', 'Yes, Levorx 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3590, 'Levorx 5mg Tablet', 'SBM Pharmaceuticals', 'Levorx 5mg Tablet', 'How long does it take for Levorx 5mg Tablet to work?', 'Levorx 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3591, 'Levorx 5mg Tablet', 'SBM Pharmaceuticals', 'Levorx 5mg Tablet', 'Can I take Levorx 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levorx 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3592, 'Levorx 5mg Tablet', 'SBM Pharmaceuticals', 'Levorx 5mg Tablet', 'Is it safe to take Levorx 5mg Tablet for a long time?', 'Levorx 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levorx 5mg Tablet for only as long as you need it.'),
(3593, 'Levorx 5mg Tablet', 'SBM Pharmaceuticals', 'Levorx 5mg Tablet', 'For how long should I continue Levorx 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levorx 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levorx 5mg Tablet'),
(3594, 'Levorx M 5mg/10mg Tablet', 'SBM Pharmaceuticals', 'Levorx M 5mg/10mg Tablet', 'What is Levorx M 5mg/10mg Tablet?', 'Levorx M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3595, 'Levorx M 5mg/10mg Tablet', 'SBM Pharmaceuticals', 'Levorx M 5mg/10mg Tablet', 'Can the use of Levorx M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levorx M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3596, 'Levorx M 5mg/10mg Tablet', 'SBM Pharmaceuticals', 'Levorx M 5mg/10mg Tablet', 'Can Levorx M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levorx M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3597, 'Levorx M 5mg/10mg Tablet', 'SBM Pharmaceuticals', 'Levorx M 5mg/10mg Tablet', 'Can the use of Levorx M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levorx M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3598, 'Levorx M 5mg/10mg Tablet', 'SBM Pharmaceuticals', 'Levorx M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levorx M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levorx M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levorx M 5mg/10mg Tablet.'),
(3599, 'Levorx M 5mg/10mg Tablet', 'SBM Pharmaceuticals', 'Levorx M 5mg/10mg Tablet', 'Will Levorx M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levorx M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3600, 'Levorx M 5mg/10mg Tablet', 'SBM Pharmaceuticals', 'Levorx M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levorx M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3601, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3602, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levorx M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3603, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'How should Levorx M Kid 2.5mg/4mg Tablet be stored?', 'Levorx M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3604, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'Can Levorx M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levorx M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3605, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levorx M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levorx M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levorx M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3606, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levorx M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3607, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levorx M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levorx M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3608, 'Levorx M Kid 2.5mg/4mg Tablet', 'SBM Pharmaceuticals', 'Levorx M Kid 2.5mg/4mg Tablet', 'Can I use Levorx M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levorx M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3609, 'Levoryl 5mg Tablet', 'Apella Healthcare', 'Levoryl 5mg Tablet', 'Is Levoryl 5mg Tablet a steroid? What is it used for?', 'No, Levoryl 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3610, 'Levoryl 5mg Tablet', 'Apella Healthcare', 'Levoryl 5mg Tablet', 'Does Levoryl 5mg Tablet make you tired and drowsy?', 'Yes, Levoryl 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3611, 'Levoryl 5mg Tablet', 'Apella Healthcare', 'Levoryl 5mg Tablet', 'How long does it take for Levoryl 5mg Tablet to work?', 'Levoryl 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3612, 'Levoryl 5mg Tablet', 'Apella Healthcare', 'Levoryl 5mg Tablet', 'Can I take Levoryl 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoryl 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3613, 'Levoryl 5mg Tablet', 'Apella Healthcare', 'Levoryl 5mg Tablet', 'Is it safe to take Levoryl 5mg Tablet for a long time?', 'Levoryl 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoryl 5mg Tablet for only as long as you need it.'),
(3614, 'Levoryl 5mg Tablet', 'Apella Healthcare', 'Levoryl 5mg Tablet', 'For how long should I continue Levoryl 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoryl 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoryl 5mg Tablet'),
(3615, 'Levos 5 Tablet', 'Eumedica Pharmaceuticals', 'Levos 5 Tablet', 'Is Levos 5 Tablet a steroid? What is it used for?', 'No, Levos 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3616, 'Levos 5 Tablet', 'Eumedica Pharmaceuticals', 'Levos 5 Tablet', 'Does Levos 5 Tablet make you tired and drowsy?', 'Yes, Levos 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3617, 'Levos 5 Tablet', 'Eumedica Pharmaceuticals', 'Levos 5 Tablet', 'How long does it take for Levos 5 Tablet to work?', 'Levos 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3618, 'Levos 5 Tablet', 'Eumedica Pharmaceuticals', 'Levos 5 Tablet', 'Can I take Levos 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levos 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3619, 'Levos 5 Tablet', 'Eumedica Pharmaceuticals', 'Levos 5 Tablet', 'Is it safe to take Levos 5 Tablet for a long time?', 'Levos 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levos 5 Tablet for only as long as you need it.'),
(3620, 'Levos 5 Tablet', 'Eumedica Pharmaceuticals', 'Levos 5 Tablet', 'For how long should I continue Levos 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levos 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levos 5 Tablet'),
(3621, 'Levos AM Syrup', 'Gaiety Life', 'Levos AM Syrup', 'What is Levos AM Syrup?', 'Levos AM Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(3622, 'Levos AM Syrup', 'Gaiety Life', 'Levos AM Syrup', 'Is it safe to use Levos AM Syrup?', 'Yes, it is safe to use Levos AM Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(3623, 'Levos AM Syrup', 'Gaiety Life', 'Levos AM Syrup', 'Are there any specific contraindications associated with the use of Levos AM Syrup?', 'Use of Levos AM Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(3624, 'Levos AM Syrup', 'Gaiety Life', 'Levos AM Syrup', 'Can the use of Levos AM Syrup cause dizziness?', 'Yes, the use of Levos AM Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(3625, 'Levos AM Syrup', 'Gaiety Life', 'Levos AM Syrup', 'Can the use of Levos AM Syrup cause diarrhea?', 'Yes, the use of Levos AM Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(3626, 'Levos AM Syrup', 'Gaiety Life', 'Levos AM Syrup', 'What are the recommended storage conditions for Levos AM Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3627, 'Levos M 5mg/10mg Tablet', 'Tms India Pvt Ltd', 'Levos M 5mg/10mg Tablet', 'What is Levos M 5mg/10mg Tablet?', 'Levos M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3628, 'Levos M 5mg/10mg Tablet', 'Tms India Pvt Ltd', 'Levos M 5mg/10mg Tablet', 'Can the use of Levos M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levos M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3629, 'Levos M 5mg/10mg Tablet', 'Tms India Pvt Ltd', 'Levos M 5mg/10mg Tablet', 'Can Levos M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levos M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3630, 'Levos M 5mg/10mg Tablet', 'Tms India Pvt Ltd', 'Levos M 5mg/10mg Tablet', 'Can the use of Levos M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levos M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3631, 'Levos M 5mg/10mg Tablet', 'Tms India Pvt Ltd', 'Levos M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levos M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levos M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levos M 5mg/10mg Tablet.'),
(3632, 'Levos M 5mg/10mg Tablet', 'Tms India Pvt Ltd', 'Levos M 5mg/10mg Tablet', 'Will Levos M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levos M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3633, 'Levos M 5mg/10mg Tablet', 'Tms India Pvt Ltd', 'Levos M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levos M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3634, 'Levosa 500mg Tablet', 'Himsagar Laboratories Ltd', 'Levosa 500mg Tablet', 'Is Levosa 500mg Tablet safe?', 'Levosa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3635, 'Levosa 500mg Tablet', 'Himsagar Laboratories Ltd', 'Levosa 500mg Tablet', 'What if I forget to take a dose of Levosa 500mg Tablet?', 'If you forget a dose of Levosa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3636, 'Levosa 500mg Tablet', 'Himsagar Laboratories Ltd', 'Levosa 500mg Tablet', 'Can the use of Levosa 500mg Tablet cause diarrhea?', 'Yes, the use of Levosa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3637, 'Levosa 500mg Tablet', 'Himsagar Laboratories Ltd', 'Levosa 500mg Tablet', 'Can I stop taking Levosa 500mg Tablet when I feel better?', 'No, do not stop taking Levosa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosa 500mg Tablet in the dose and duration advised by the doctor.'),
(3638, 'Levosa 500mg Tablet', 'Himsagar Laboratories Ltd', 'Levosa 500mg Tablet', 'Can the use of Levosa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3639, 'Levosafe 5mg Tablet', 'HiGlance Laboratories', 'Levosafe 5mg Tablet', 'Is Levosafe 5mg Tablet a steroid? What is it used for?', 'No, Levosafe 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3640, 'Levosafe 5mg Tablet', 'HiGlance Laboratories', 'Levosafe 5mg Tablet', 'Does Levosafe 5mg Tablet make you tired and drowsy?', 'Yes, Levosafe 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3641, 'Levosafe 5mg Tablet', 'HiGlance Laboratories', 'Levosafe 5mg Tablet', 'How long does it take for Levosafe 5mg Tablet to work?', 'Levosafe 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3642, 'Levosafe 5mg Tablet', 'HiGlance Laboratories', 'Levosafe 5mg Tablet', 'Can I take Levosafe 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosafe 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3643, 'Levosafe 5mg Tablet', 'HiGlance Laboratories', 'Levosafe 5mg Tablet', 'Is it safe to take Levosafe 5mg Tablet for a long time?', 'Levosafe 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosafe 5mg Tablet for only as long as you need it.'),
(3644, 'Levosafe 5mg Tablet', 'HiGlance Laboratories', 'Levosafe 5mg Tablet', 'For how long should I continue Levosafe 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosafe 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosafe 5mg Tablet'),
(3645, 'Levosal 250mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 250mg Tablet', 'Is Levosal 250mg Tablet safe?', 'Levosal 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3646, 'Levosal 250mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 250mg Tablet', 'What if I forget to take a dose of Levosal 250mg Tablet?', 'If you forget a dose of Levosal 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3647, 'Levosal 250mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 250mg Tablet', 'Can the use of Levosal 250mg Tablet cause diarrhea?', 'Yes, the use of Levosal 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3648, 'Levosal 250mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 250mg Tablet', 'Can I stop taking Levosal 250mg Tablet when I feel better?', 'No, do not stop taking Levosal 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosal 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosal 250mg Tablet in the dose and duration advised by the doctor.'),
(3649, 'Levosal 250mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 250mg Tablet', 'Can the use of Levosal 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosal 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosal 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3650, 'Levosal 500mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 500mg Tablet', 'Is Levosal 500mg Tablet safe?', 'Levosal 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3651, 'Levosal 500mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 500mg Tablet', 'What if I forget to take a dose of Levosal 500mg Tablet?', 'If you forget a dose of Levosal 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3652, 'Levosal 500mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 500mg Tablet', 'Can the use of Levosal 500mg Tablet cause diarrhea?', 'Yes, the use of Levosal 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3653, 'Levosal 500mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 500mg Tablet', 'Can I stop taking Levosal 500mg Tablet when I feel better?', 'No, do not stop taking Levosal 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosal 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosal 500mg Tablet in the dose and duration advised by the doctor.'),
(3654, 'Levosal 500mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 500mg Tablet', 'Can the use of Levosal 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosal 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosal 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3655, 'Levosal 750mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 750mg Tablet', 'Is Levosal 750mg Tablet safe?', 'Levosal 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3656, 'Levosal 750mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 750mg Tablet', 'What if I forget to take a dose of Levosal 750mg Tablet?', 'If you forget a dose of Levosal 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3657, 'Levosal 750mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 750mg Tablet', 'Can the use of Levosal 750mg Tablet cause diarrhea?', 'Yes, the use of Levosal 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3658, 'Levosal 750mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 750mg Tablet', 'Can I stop taking Levosal 750mg Tablet when I feel better?', 'No, do not stop taking Levosal 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosal 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levosal 750mg Tablet in the dose and duration advised by the doctor.'),
(3659, 'Levosal 750mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal 750mg Tablet', 'Can the use of Levosal 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosal 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosal 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3660, 'Levosal OZ 250 mg/500 mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal OZ 250 mg/500 mg Tablet', 'What if I don\'t get better after using Levosal OZ 250 mg/500 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3661, 'Levosal OZ 250 mg/500 mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal OZ 250 mg/500 mg Tablet', 'Can I stop taking Levosal OZ 250 mg/500 mg Tablet when I feel better?', 'No, do not stop taking Levosal OZ 250 mg/500 mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3662, 'Levosal OZ 250 mg/500 mg Tablet', 'Salud Care India Pvt Ltd', 'Levosal OZ 250 mg/500 mg Tablet', 'What if I miss my dose?', 'Take Levosal OZ 250 mg/500 mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3663, 'Levosal OZ Syrup', 'Salud Care India Pvt Ltd', 'Levosal OZ Syrup', 'What if I don\'t get better after using Levosal OZ Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3664, 'Levosal OZ Syrup', 'Salud Care India Pvt Ltd', 'Levosal OZ Syrup', 'Can I stop taking Levosal OZ Syrup when I feel better?', 'No, do not stop taking Levosal OZ Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3665, 'Levosal OZ Syrup', 'Salud Care India Pvt Ltd', 'Levosal OZ Syrup', 'What if I miss my dose?', 'Take Levosal OZ Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3666, 'Levosal Syrup', 'Salud Care India Pvt Ltd', 'Levosal Syrup', 'Is Levosal Syrup safe?', 'Levosal Syrup is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3667, 'Levosal Syrup', 'Salud Care India Pvt Ltd', 'Levosal Syrup', 'What if I forget to take a dose of Levosal Syrup?', 'If you forget a dose of Levosal Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3668, 'Levosal Syrup', 'Salud Care India Pvt Ltd', 'Levosal Syrup', 'Can the use of Levosal Syrup cause diarrhea?', 'Yes, the use of Levosal Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3669, 'Levosal Syrup', 'Salud Care India Pvt Ltd', 'Levosal Syrup', 'Can I stop taking Levosal Syrup when I feel better?', 'No, do not stop taking Levosal Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosal Syrup too early, the symptoms may return or worsen. Continue taking Levosal Syrup in the dose and duration advised by the doctor.'),
(3670, 'Levosal Syrup', 'Salud Care India Pvt Ltd', 'Levosal Syrup', 'Can the use of Levosal Syrup increase the risk of muscle damage?', 'Yes, the use of Levosal Syrup is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosal Syrup but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3671, 'Levosalvac 0.63mg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac 0.63mg Respules', 'Is Levosalvac 0.63mg Respules better than Albuterol?', 'Both Levosalvac 0.63mg Respules and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levosalvac 0.63mg Respules contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levosalvac 0.63mg Respules, being the active form may have lesser side effects when compared to the inactive form.'),
(3672, 'Levosalvac 0.63mg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac 0.63mg Respules', 'What would happen if I take higher than the recommended dose of Levosalvac 0.63mg Respules?', 'Taking a higher than the recommended dose of Levosalvac 0.63mg Respules may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levosalvac 0.63mg Respules may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(3673, 'Levosalvac 0.63mg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac 0.63mg Respules', 'Is it safe to take Levosalvac 0.63mg Respules if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levosalvac 0.63mg Respules, seek immediate medical advice.'),
(3674, 'Levosalvac 0.63mg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac 0.63mg Respules', 'Being a diabetic, what should I remember while taking Levosalvac 0.63mg Respules?', 'Levosalvac 0.63mg Respules may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(3675, 'Levosalvac 0.63mg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac 0.63mg Respules', 'I have started using Levosalvac 0.63mg Respules and I am experiencing headaches and shakiness. Is this because of Levosalvac 0.63mg Respules and will these go away?', 'Yes, it could be due to Levosalvac 0.63mg Respules. Feeling shaky is a common side effect of Levosalvac 0.63mg Respules which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(3676, 'Levosalvac 0.63mg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac 0.63mg Respules', 'When should I take Levosalvac 0.63mg Respules?', 'Use Levosalvac 0.63mg Respules as and when you need it. Levosalvac 0.63mg Respules relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(3677, 'Levosalvac 0.63mg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac 0.63mg Respules', 'Can I smoke if I have been prescribed Levosalvac 0.63mg Respules?', 'No, you should not smoke while taking Levosalvac 0.63mg Respules. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(3678, 'Levosalvac Duo 1.25mg/500mcg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac Duo 1.25mg/500mcg Respules', 'Are there any medicines which I should avoid while taking Levosalvac Duo 1.25mg/500mcg Respules?', 'It is not recommended to use Levosalvac Duo 1.25mg/500mcg Respules along with other medicines, such as anticholinergic, beta-adrenergic agents, beta-blockers, diuretics, digoxin, MAO inhibitors or anti-depressants.'),
(3679, 'Levosalvac Duo 1.25mg/500mcg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac Duo 1.25mg/500mcg Respules', 'Will Levosalvac Duo 1.25mg/500mcg Respules be more effective if taken in higher doses?', 'No, taking a higher than the recommended dose of this medicine will not make it more effective, rather can lead to increased side effects. If the symptoms do not get relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(3680, 'Levosalvac Duo 1.25mg/500mcg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac Duo 1.25mg/500mcg Respules', 'Can the use of Levosalvac Duo 1.25mg/500mcg Respules cause sleepiness or drowsiness?', 'Yes, Levosalvac Duo 1.25mg/500mcg Respules may make you feel drowsy or sleepy. Avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(3681, 'Levosalvac Duo 1.25mg/500mcg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac Duo 1.25mg/500mcg Respules', 'Can the use of Levosalvac Duo 1.25mg/500mcg Respules cause dry mouth?', 'Yes, the use of Levosalvac Duo 1.25mg/500mcg Respules can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(3682, 'Levosalvac Duo 1.25mg/500mcg Respules', 'Prevego Healthcare & Research Private Limited', 'Levosalvac Duo 1.25mg/500mcg Respules', 'What are the instructions for storage and disposal of Levosalvac Duo 1.25mg/500mcg Respules?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3683, 'Levosan 5 Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan 5 Tablet', 'Is Levosan 5 Tablet a steroid? What is it used for?', 'No, Levosan 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3684, 'Levosan 5 Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan 5 Tablet', 'Does Levosan 5 Tablet make you tired and drowsy?', 'Yes, Levosan 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3685, 'Levosan 5 Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan 5 Tablet', 'How long does it take for Levosan 5 Tablet to work?', 'Levosan 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3686, 'Levosan 5 Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan 5 Tablet', 'Can I take Levosan 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosan 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3687, 'Levosan 5 Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan 5 Tablet', 'Is it safe to take Levosan 5 Tablet for a long time?', 'Levosan 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosan 5 Tablet for only as long as you need it.'),
(3688, 'Levosan 5 Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan 5 Tablet', 'For how long should I continue Levosan 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosan 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosan 5 Tablet'),
(3689, 'Levosan M 5mg/10mg Tablet', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M 5mg/10mg Tablet', 'What is Levosan M 5mg/10mg Tablet?', 'Levosan M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3690, 'Levosan M 5mg/10mg Tablet', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M 5mg/10mg Tablet', 'Can the use of Levosan M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosan M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3691, 'Levosan M 5mg/10mg Tablet', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M 5mg/10mg Tablet', 'Can Levosan M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levosan M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3692, 'Levosan M 5mg/10mg Tablet', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M 5mg/10mg Tablet', 'Can the use of Levosan M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levosan M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3693, 'Levosan M 5mg/10mg Tablet', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levosan M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levosan M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosan M 5mg/10mg Tablet.'),
(3694, 'Levosan M 5mg/10mg Tablet', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M 5mg/10mg Tablet', 'Will Levosan M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosan M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3695, 'Levosan M 5mg/10mg Tablet', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levosan M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3696, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3697, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'Can I decrease the dose of Levosan M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3698, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'How should Levosan M Syrup be stored?', 'Levosan M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3699, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'Can Levosan M Syrup make my child sleepy?', 'Levosan M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3700, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosan M Syrup?', 'No, don’t start Levosan M Syrup without speaking to your child’s doctor. Moreover, Levosan M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3701, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosan M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3702, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levosan M Syrup to my child?', 'Some studies show that Levosan M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3703, 'Levosan M Syrup', 'Sanatio Pharmaceuticals Private Limited', 'Levosan M Syrup', 'Can I use Levosan M Syrup for treating acute asthma attacks in my child?', 'Levosan M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3704, 'Levosan-M Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan-M Tablet', 'What is Levosan-M Tablet?', 'Levosan-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3705, 'Levosan-M Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan-M Tablet', 'Can the use of Levosan-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosan-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3706, 'Levosan-M Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan-M Tablet', 'Can Levosan-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levosan-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3707, 'Levosan-M Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan-M Tablet', 'Can the use of Levosan-M Tablet cause dry mouth?', 'Yes, the use of Levosan-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3708, 'Levosan-M Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan-M Tablet', 'Can I drink alcohol while taking Levosan-M Tablet?', 'No, do not take alcohol while taking Levosan-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosan-M Tablet.'),
(3709, 'Levosan-M Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan-M Tablet', 'Will Levosan-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosan-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3710, 'Levosan-M Tablet', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Levosan-M Tablet', 'What are the instructions for storage and disposal of Levosan-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3711, 'Levosant 500mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Levosant 500mg Tablet', 'Is Levosant 500mg Tablet safe?', 'Levosant 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3712, 'Levosant 500mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Levosant 500mg Tablet', 'What if I forget to take a dose of Levosant 500mg Tablet?', 'If you forget a dose of Levosant 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3713, 'Levosant 500mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Levosant 500mg Tablet', 'Can the use of Levosant 500mg Tablet cause diarrhea?', 'Yes, the use of Levosant 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3714, 'Levosant 500mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Levosant 500mg Tablet', 'Can I stop taking Levosant 500mg Tablet when I feel better?', 'No, do not stop taking Levosant 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosant 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosant 500mg Tablet in the dose and duration advised by the doctor.'),
(3715, 'Levosant 500mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Levosant 500mg Tablet', 'Can the use of Levosant 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosant 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosant 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3716, 'Levosap Tablet', 'Sapson Pharma', 'Levosap Tablet', 'Is Levosap Tablet a steroid? What is it used for?', 'No, Levosap Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3717, 'Levosap Tablet', 'Sapson Pharma', 'Levosap Tablet', 'Does Levosap Tablet make you tired and drowsy?', 'Yes, Levosap Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3718, 'Levosap Tablet', 'Sapson Pharma', 'Levosap Tablet', 'How long does it take for Levosap Tablet to work?', 'Levosap Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3719, 'Levosap Tablet', 'Sapson Pharma', 'Levosap Tablet', 'Can I take Levosap Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosap Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3720, 'Levosap Tablet', 'Sapson Pharma', 'Levosap Tablet', 'Is it safe to take Levosap Tablet for a long time?', 'Levosap Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosap Tablet for only as long as you need it.'),
(3721, 'Levosap Tablet', 'Sapson Pharma', 'Levosap Tablet', 'For how long should I continue Levosap Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosap Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosap Tablet'),
(3722, 'Levosar 500mg Tablet', 'Ekasar Lifescience', 'Levosar 500mg Tablet', 'Is Levosar 500mg Tablet safe?', 'Levosar 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3723, 'Levosar 500mg Tablet', 'Ekasar Lifescience', 'Levosar 500mg Tablet', 'What if I forget to take a dose of Levosar 500mg Tablet?', 'If you forget a dose of Levosar 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3724, 'Levosar 500mg Tablet', 'Ekasar Lifescience', 'Levosar 500mg Tablet', 'Can the use of Levosar 500mg Tablet cause diarrhea?', 'Yes, the use of Levosar 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3725, 'Levosar 500mg Tablet', 'Ekasar Lifescience', 'Levosar 500mg Tablet', 'Can I stop taking Levosar 500mg Tablet when I feel better?', 'No, do not stop taking Levosar 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosar 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosar 500mg Tablet in the dose and duration advised by the doctor.'),
(3726, 'Levosar 500mg Tablet', 'Ekasar Lifescience', 'Levosar 500mg Tablet', 'Can the use of Levosar 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosar 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosar 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3727, 'Levosave 500mg Tablet', 'Mission Cure Pharma Pvt Ltd', 'Levosave 500mg Tablet', 'Is Levosave 500mg Tablet safe?', 'Levosave 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3728, 'Levosave 500mg Tablet', 'Mission Cure Pharma Pvt Ltd', 'Levosave 500mg Tablet', 'What if I forget to take a dose of Levosave 500mg Tablet?', 'If you forget a dose of Levosave 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3729, 'Levosave 500mg Tablet', 'Mission Cure Pharma Pvt Ltd', 'Levosave 500mg Tablet', 'Can the use of Levosave 500mg Tablet cause diarrhea?', 'Yes, the use of Levosave 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3730, 'Levosave 500mg Tablet', 'Mission Cure Pharma Pvt Ltd', 'Levosave 500mg Tablet', 'Can I stop taking Levosave 500mg Tablet when I feel better?', 'No, do not stop taking Levosave 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosave 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosave 500mg Tablet in the dose and duration advised by the doctor.'),
(3731, 'Levosave 500mg Tablet', 'Mission Cure Pharma Pvt Ltd', 'Levosave 500mg Tablet', 'Can the use of Levosave 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosave 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosave 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3732, 'Levoscan 500mg Tablet', 'Medishri Healthcare', 'Levoscan 500mg Tablet', 'Is Levoscan 500mg Tablet safe?', 'Levoscan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3733, 'Levoscan 500mg Tablet', 'Medishri Healthcare', 'Levoscan 500mg Tablet', 'What if I forget to take a dose of Levoscan 500mg Tablet?', 'If you forget a dose of Levoscan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3734, 'Levoscan 500mg Tablet', 'Medishri Healthcare', 'Levoscan 500mg Tablet', 'Can the use of Levoscan 500mg Tablet cause diarrhea?', 'Yes, the use of Levoscan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3735, 'Levoscan 500mg Tablet', 'Medishri Healthcare', 'Levoscan 500mg Tablet', 'Can I stop taking Levoscan 500mg Tablet when I feel better?', 'No, do not stop taking Levoscan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoscan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoscan 500mg Tablet in the dose and duration advised by the doctor.'),
(3736, 'Levoscan 500mg Tablet', 'Medishri Healthcare', 'Levoscan 500mg Tablet', 'Can the use of Levoscan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoscan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoscan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3737, 'Levoscan-OZ Oral Suspension', 'Medishri Healthcare', 'Levoscan-OZ Oral Suspension', 'What if I don\'t get better after using Levoscan-OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3738, 'Levoscan-OZ Oral Suspension', 'Medishri Healthcare', 'Levoscan-OZ Oral Suspension', 'Can I stop taking Levoscan-OZ Oral Suspension when I feel better?', 'No, do not stop taking Levoscan-OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3739, 'Levoscan-OZ Oral Suspension', 'Medishri Healthcare', 'Levoscan-OZ Oral Suspension', 'What if I miss my dose?', 'Take Levoscan-OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3740, 'Levoscot 5mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levoscot 5mg Tablet (Scott Edil Pharmacia Ltd)', 'Is Levoscot 5mg Tablet a steroid? What is it used for?', 'No, Levoscot 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3741, 'Levoscot 5mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levoscot 5mg Tablet (Scott Edil Pharmacia Ltd)', 'Does Levoscot 5mg Tablet make you tired and drowsy?', 'Yes, Levoscot 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3742, 'Levoscot 5mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levoscot 5mg Tablet (Scott Edil Pharmacia Ltd)', 'How long does it take for Levoscot 5mg Tablet to work?', 'Levoscot 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3743, 'Levoscot 5mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levoscot 5mg Tablet (Scott Edil Pharmacia Ltd)', 'Can I take Levoscot 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoscot 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3744, 'Levoscot 5mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levoscot 5mg Tablet (Scott Edil Pharmacia Ltd)', 'Is it safe to take Levoscot 5mg Tablet for a long time?', 'Levoscot 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoscot 5mg Tablet for only as long as you need it.'),
(3745, 'Levoscot 5mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levoscot 5mg Tablet (Scott Edil Pharmacia Ltd)', 'For how long should I continue Levoscot 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoscot 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoscot 5mg Tablet'),
(3746, 'Levoscot 5mg Tablet', 'Adenscot Healthcare', 'Levoscot 5mg Tablet (Adenscot Healthcare)', 'Is Levoscot 5mg Tablet a steroid? What is it used for?', 'No, Levoscot 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3747, 'Levoscot 5mg Tablet', 'Adenscot Healthcare', 'Levoscot 5mg Tablet (Adenscot Healthcare)', 'Does Levoscot 5mg Tablet make you tired and drowsy?', 'Yes, Levoscot 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3748, 'Levoscot 5mg Tablet', 'Adenscot Healthcare', 'Levoscot 5mg Tablet (Adenscot Healthcare)', 'How long does it take for Levoscot 5mg Tablet to work?', 'Levoscot 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3749, 'Levoscot 5mg Tablet', 'Adenscot Healthcare', 'Levoscot 5mg Tablet (Adenscot Healthcare)', 'Can I take Levoscot 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoscot 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3750, 'Levoscot 5mg Tablet', 'Adenscot Healthcare', 'Levoscot 5mg Tablet (Adenscot Healthcare)', 'Is it safe to take Levoscot 5mg Tablet for a long time?', 'Levoscot 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoscot 5mg Tablet for only as long as you need it.'),
(3751, 'Levoscot 5mg Tablet', 'Adenscot Healthcare', 'Levoscot 5mg Tablet (Adenscot Healthcare)', 'For how long should I continue Levoscot 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoscot 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoscot 5mg Tablet'),
(3752, 'Levoseal R 75 mg/20 mg Capsule', 'Organic Laboratories', 'Levoseal R 75 mg/20 mg Capsule', 'Which is the best time to take Levoseal R   75 mg/20 mg Capsule?', 'Take the Levoseal R   75 mg/20 mg Capsule exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(3753, 'Levoseal R 75 mg/20 mg Capsule', 'Organic Laboratories', 'Levoseal R 75 mg/20 mg Capsule', 'What are the contraindications associated with the use of Levoseal R   75 mg/20 mg Capsule?', 'Use of Levoseal R   75 mg/20 mg Capsule should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(3754, 'Levoseal R 75 mg/20 mg Capsule', 'Organic Laboratories', 'Levoseal R 75 mg/20 mg Capsule', 'Can the use of Levoseal R   75 mg/20 mg Capsule cause dizziness?', 'Yes, the use of Levoseal R   75 mg/20 mg Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(3755, 'Levoseal R 75 mg/20 mg Capsule', 'Organic Laboratories', 'Levoseal R 75 mg/20 mg Capsule', 'Does the use of Levoseal R   75 mg/20 mg Capsule lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Levoseal R   75 mg/20 mg Capsule may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(3756, 'Levoseal R 75 mg/20 mg Capsule', 'Organic Laboratories', 'Levoseal R 75 mg/20 mg Capsule', 'Can I drive while taking Levoseal R   75 mg/20 mg Capsule?', 'No, taking Levoseal R   75 mg/20 mg Capsule may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(3757, 'Levoseal R 75 mg/20 mg Capsule', 'Organic Laboratories', 'Levoseal R 75 mg/20 mg Capsule', 'What are the instructions for the storage and disposal of Levoseal R   75 mg/20 mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(3758, 'Levosed 500mg Tablet', 'Sedulus Remedies', 'Levosed 500mg Tablet', 'Is Levosed 500mg Tablet safe?', 'Levosed 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3759, 'Levosed 500mg Tablet', 'Sedulus Remedies', 'Levosed 500mg Tablet', 'What if I forget to take a dose of Levosed 500mg Tablet?', 'If you forget a dose of Levosed 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3760, 'Levosed 500mg Tablet', 'Sedulus Remedies', 'Levosed 500mg Tablet', 'Can the use of Levosed 500mg Tablet cause diarrhea?', 'Yes, the use of Levosed 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3761, 'Levosed 500mg Tablet', 'Sedulus Remedies', 'Levosed 500mg Tablet', 'Can I stop taking Levosed 500mg Tablet when I feel better?', 'No, do not stop taking Levosed 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosed 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosed 500mg Tablet in the dose and duration advised by the doctor.'),
(3762, 'Levosed 500mg Tablet', 'Sedulus Remedies', 'Levosed 500mg Tablet', 'Can the use of Levosed 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosed 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosed 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3763, 'Levoseed-M Tablet', 'Xseed Pharma Private Limited', 'Levoseed-M Tablet', 'What is Levoseed-M Tablet?', 'Levoseed-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3764, 'Levoseed-M Tablet', 'Xseed Pharma Private Limited', 'Levoseed-M Tablet', 'Can the use of Levoseed-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoseed-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3765, 'Levoseed-M Tablet', 'Xseed Pharma Private Limited', 'Levoseed-M Tablet', 'Can Levoseed-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoseed-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3766, 'Levoseed-M Tablet', 'Xseed Pharma Private Limited', 'Levoseed-M Tablet', 'Can the use of Levoseed-M Tablet cause dry mouth?', 'Yes, the use of Levoseed-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3767, 'Levoseed-M Tablet', 'Xseed Pharma Private Limited', 'Levoseed-M Tablet', 'Can I drink alcohol while taking Levoseed-M Tablet?', 'No, do not take alcohol while taking Levoseed-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoseed-M Tablet.'),
(3768, 'Levoseed-M Tablet', 'Xseed Pharma Private Limited', 'Levoseed-M Tablet', 'Will Levoseed-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoseed-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3769, 'Levoseed-M Tablet', 'Xseed Pharma Private Limited', 'Levoseed-M Tablet', 'What are the instructions for storage and disposal of Levoseed-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3770, 'Levosef 500 Tablet', 'Saphnix Life Sciences', 'Levosef 500 Tablet', 'Is Levosef 500 Tablet safe?', 'Levosef 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3771, 'Levosef 500 Tablet', 'Saphnix Life Sciences', 'Levosef 500 Tablet', 'What if I forget to take a dose of Levosef 500 Tablet?', 'If you forget a dose of Levosef 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3772, 'Levosef 500 Tablet', 'Saphnix Life Sciences', 'Levosef 500 Tablet', 'Can the use of Levosef 500 Tablet cause diarrhea?', 'Yes, the use of Levosef 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3773, 'Levosef 500 Tablet', 'Saphnix Life Sciences', 'Levosef 500 Tablet', 'Can I stop taking Levosef 500 Tablet when I feel better?', 'No, do not stop taking Levosef 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosef 500 Tablet too early, the symptoms may return or worsen. Continue taking Levosef 500 Tablet in the dose and duration advised by the doctor.'),
(3774, 'Levosef 500 Tablet', 'Saphnix Life Sciences', 'Levosef 500 Tablet', 'Can the use of Levosef 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levosef 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosef 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3775, 'Levosef 750mg Tablet', 'Saphnix Life Sciences', 'Levosef 750mg Tablet', 'Is Levosef 750mg Tablet safe?', 'Levosef 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3776, 'Levosef 750mg Tablet', 'Saphnix Life Sciences', 'Levosef 750mg Tablet', 'What if I forget to take a dose of Levosef 750mg Tablet?', 'If you forget a dose of Levosef 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3777, 'Levosef 750mg Tablet', 'Saphnix Life Sciences', 'Levosef 750mg Tablet', 'Can the use of Levosef 750mg Tablet cause diarrhea?', 'Yes, the use of Levosef 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3778, 'Levosef 750mg Tablet', 'Saphnix Life Sciences', 'Levosef 750mg Tablet', 'Can I stop taking Levosef 750mg Tablet when I feel better?', 'No, do not stop taking Levosef 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosef 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levosef 750mg Tablet in the dose and duration advised by the doctor.'),
(3779, 'Levosef 750mg Tablet', 'Saphnix Life Sciences', 'Levosef 750mg Tablet', 'Can the use of Levosef 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosef 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosef 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3780, 'Levosef-OZ Tablet', 'Saphnix Life Sciences', 'Levosef-OZ Tablet', 'What if I don\'t get better after using Levosef-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3781, 'Levosef-OZ Tablet', 'Saphnix Life Sciences', 'Levosef-OZ Tablet', 'Can I stop taking Levosef-OZ Tablet when I feel better?', 'No, do not stop taking Levosef-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3782, 'Levosef-OZ Tablet', 'Saphnix Life Sciences', 'Levosef-OZ Tablet', 'What if I miss my dose?', 'Take Levosef-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3783, 'Levoseg 500mg Tablet', 'Segos Biocare', 'Levoseg 500mg Tablet', 'Is Levoseg 500mg Tablet safe?', 'Levoseg 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3784, 'Levoseg 500mg Tablet', 'Segos Biocare', 'Levoseg 500mg Tablet', 'What if I forget to take a dose of Levoseg 500mg Tablet?', 'If you forget a dose of Levoseg 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3785, 'Levoseg 500mg Tablet', 'Segos Biocare', 'Levoseg 500mg Tablet', 'Can the use of Levoseg 500mg Tablet cause diarrhea?', 'Yes, the use of Levoseg 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3786, 'Levoseg 500mg Tablet', 'Segos Biocare', 'Levoseg 500mg Tablet', 'Can I stop taking Levoseg 500mg Tablet when I feel better?', 'No, do not stop taking Levoseg 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoseg 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoseg 500mg Tablet in the dose and duration advised by the doctor.'),
(3787, 'Levoseg 500mg Tablet', 'Segos Biocare', 'Levoseg 500mg Tablet', 'Can the use of Levoseg 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoseg 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoseg 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3788, 'Levosel LM Tablet', 'Weefsel Pharma', 'Levosel LM Tablet', 'What is Levosel LM Tablet?', 'Levosel LM Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3789, 'Levosel LM Tablet', 'Weefsel Pharma', 'Levosel LM Tablet', 'Can the use of Levosel LM Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosel LM Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3790, 'Levosel LM Tablet', 'Weefsel Pharma', 'Levosel LM Tablet', 'Can Levosel LM Tablet be stopped when allergy symptoms are relieved?', 'No, Levosel LM Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3791, 'Levosel LM Tablet', 'Weefsel Pharma', 'Levosel LM Tablet', 'Can the use of Levosel LM Tablet cause dry mouth?', 'Yes, the use of Levosel LM Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3792, 'Levosel LM Tablet', 'Weefsel Pharma', 'Levosel LM Tablet', 'Can I drink alcohol while taking Levosel LM Tablet?', 'No, do not take alcohol while taking Levosel LM Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosel LM Tablet.'),
(3793, 'Levosel LM Tablet', 'Weefsel Pharma', 'Levosel LM Tablet', 'Will Levosel LM Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosel LM Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3794, 'Levosel LM Tablet', 'Weefsel Pharma', 'Levosel LM Tablet', 'What are the instructions for storage and disposal of Levosel LM Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3795, 'Levosel-L Tablet', 'Weefsel Pharma', 'Levosel-L Tablet', 'Is Levosel-L Tablet a steroid? What is it used for?', 'No, Levosel-L Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3796, 'Levosel-L Tablet', 'Weefsel Pharma', 'Levosel-L Tablet', 'Does Levosel-L Tablet make you tired and drowsy?', 'Yes, Levosel-L Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3797, 'Levosel-L Tablet', 'Weefsel Pharma', 'Levosel-L Tablet', 'How long does it take for Levosel-L Tablet to work?', 'Levosel-L Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3798, 'Levosel-L Tablet', 'Weefsel Pharma', 'Levosel-L Tablet', 'Can I take Levosel-L Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosel-L Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3799, 'Levosel-L Tablet', 'Weefsel Pharma', 'Levosel-L Tablet', 'Is it safe to take Levosel-L Tablet for a long time?', 'Levosel-L Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosel-L Tablet for only as long as you need it.'),
(3800, 'Levosel-L Tablet', 'Weefsel Pharma', 'Levosel-L Tablet', 'For how long should I continue Levosel-L Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosel-L Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosel-L Tablet'),
(3801, 'Levoser M 5mg/10mg Tablet', 'Antigen Healthcare P. Ltd', 'Levoser M 5mg/10mg Tablet', 'What is Levoser M 5mg/10mg Tablet?', 'Levoser M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3802, 'Levoser M 5mg/10mg Tablet', 'Antigen Healthcare P. Ltd', 'Levoser M 5mg/10mg Tablet', 'Can the use of Levoser M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoser M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3803, 'Levoser M 5mg/10mg Tablet', 'Antigen Healthcare P. Ltd', 'Levoser M 5mg/10mg Tablet', 'Can Levoser M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoser M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3804, 'Levoser M 5mg/10mg Tablet', 'Antigen Healthcare P. Ltd', 'Levoser M 5mg/10mg Tablet', 'Can the use of Levoser M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoser M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3805, 'Levoser M 5mg/10mg Tablet', 'Antigen Healthcare P. Ltd', 'Levoser M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoser M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoser M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoser M 5mg/10mg Tablet.'),
(3806, 'Levoser M 5mg/10mg Tablet', 'Antigen Healthcare P. Ltd', 'Levoser M 5mg/10mg Tablet', 'Will Levoser M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoser M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3807, 'Levoser M 5mg/10mg Tablet', 'Antigen Healthcare P. Ltd', 'Levoser M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoser M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3808, 'Levoset 10mg Tablet', 'Mclain Laboratories', 'Levoset 10mg Tablet', 'Is Levoset 10mg Tablet a steroid? What is it used for?', 'No, Levoset 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3809, 'Levoset 10mg Tablet', 'Mclain Laboratories', 'Levoset 10mg Tablet', 'Does Levoset 10mg Tablet make you tired and drowsy?', 'Yes, Levoset 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3810, 'Levoset 10mg Tablet', 'Mclain Laboratories', 'Levoset 10mg Tablet', 'How long does it take for Levoset 10mg Tablet to work?', 'Levoset 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3811, 'Levoset 10mg Tablet', 'Mclain Laboratories', 'Levoset 10mg Tablet', 'Can I take Levoset 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoset 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3812, 'Levoset 10mg Tablet', 'Mclain Laboratories', 'Levoset 10mg Tablet', 'Is it safe to take Levoset 10mg Tablet for a long time?', 'Levoset 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoset 10mg Tablet for only as long as you need it.'),
(3813, 'Levoset 10mg Tablet', 'Mclain Laboratories', 'Levoset 10mg Tablet', 'For how long should I continue Levoset 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoset 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoset 10mg Tablet'),
(3814, 'Levoset 5mg Tablet', 'Mclain Laboratories', 'Levoset 5mg Tablet', 'Is Levoset 5mg Tablet a steroid? What is it used for?', 'No, Levoset 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3815, 'Levoset 5mg Tablet', 'Mclain Laboratories', 'Levoset 5mg Tablet', 'Does Levoset 5mg Tablet make you tired and drowsy?', 'Yes, Levoset 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3816, 'Levoset 5mg Tablet', 'Mclain Laboratories', 'Levoset 5mg Tablet', 'How long does it take for Levoset 5mg Tablet to work?', 'Levoset 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3817, 'Levoset 5mg Tablet', 'Mclain Laboratories', 'Levoset 5mg Tablet', 'Can I take Levoset 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoset 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3818, 'Levoset 5mg Tablet', 'Mclain Laboratories', 'Levoset 5mg Tablet', 'Is it safe to take Levoset 5mg Tablet for a long time?', 'Levoset 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoset 5mg Tablet for only as long as you need it.'),
(3819, 'Levoset 5mg Tablet', 'Mclain Laboratories', 'Levoset 5mg Tablet', 'For how long should I continue Levoset 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoset 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoset 5mg Tablet'),
(3820, 'Levoset Tablet', 'Alcon Laboratories', 'Levoset Tablet', 'Is Levoset Tablet a steroid? What is it used for?', 'No, Levoset Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3821, 'Levoset Tablet', 'Alcon Laboratories', 'Levoset Tablet', 'Does Levoset Tablet make you tired and drowsy?', 'Yes, Levoset Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3822, 'Levoset Tablet', 'Alcon Laboratories', 'Levoset Tablet', 'How long does it take for Levoset Tablet to work?', 'Levoset Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3823, 'Levoset Tablet', 'Alcon Laboratories', 'Levoset Tablet', 'Can I take Levoset Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoset Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3824, 'Levoset Tablet', 'Alcon Laboratories', 'Levoset Tablet', 'Is it safe to take Levoset Tablet for a long time?', 'Levoset Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoset Tablet for only as long as you need it.'),
(3825, 'Levoset Tablet', 'Alcon Laboratories', 'Levoset Tablet', 'For how long should I continue Levoset Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoset Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoset Tablet'),
(3826, 'Levoset-M Tablet', 'Mclain Laboratories', 'Levoset-M Tablet', 'What is Levoset-M Tablet?', 'Levoset-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3827, 'Levoset-M Tablet', 'Mclain Laboratories', 'Levoset-M Tablet', 'Can the use of Levoset-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoset-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3828, 'Levoset-M Tablet', 'Mclain Laboratories', 'Levoset-M Tablet', 'Can Levoset-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoset-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3829, 'Levoset-M Tablet', 'Mclain Laboratories', 'Levoset-M Tablet', 'Can the use of Levoset-M Tablet cause dry mouth?', 'Yes, the use of Levoset-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3830, 'Levoset-M Tablet', 'Mclain Laboratories', 'Levoset-M Tablet', 'Can I drink alcohol while taking Levoset-M Tablet?', 'No, do not take alcohol while taking Levoset-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoset-M Tablet.'),
(3831, 'Levoset-M Tablet', 'Mclain Laboratories', 'Levoset-M Tablet', 'Will Levoset-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoset-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3832, 'Levoset-M Tablet', 'Mclain Laboratories', 'Levoset-M Tablet', 'What are the instructions for storage and disposal of Levoset-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3833, 'Levosetride 2.5mg Syrup', 'Wockhardt Ltd', 'Levosetride 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levosetride 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(3834, 'Levosetride 2.5mg Syrup', 'Wockhardt Ltd', 'Levosetride 2.5mg Syrup', 'Can other medicines be given at the same time as Levosetride 2.5mg Syrup?', 'Levosetride 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levosetride 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(3835, 'Levosetride 2.5mg Syrup', 'Wockhardt Ltd', 'Levosetride 2.5mg Syrup', 'How much Levosetride 2.5mg Syrup should I give to my child?', 'Levosetride 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(3836, 'Levosetride 2.5mg Syrup', 'Wockhardt Ltd', 'Levosetride 2.5mg Syrup', 'What if I give too much of Levosetride 2.5mg Syrup by mistake?', 'Although Levosetride 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(3837, 'Levosetride 2.5mg Syrup', 'Wockhardt Ltd', 'Levosetride 2.5mg Syrup', 'How should Levosetride 2.5mg Syrup be stored?', 'Store Levosetride 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3838, 'Levosetride 2.5mg Syrup', 'Wockhardt Ltd', 'Levosetride 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(3839, 'Levosetride 5 Tablet', 'Wockhardt Ltd', 'Levosetride 5 Tablet', 'Is Levosetride 5 Tablet a steroid? What is it used for?', 'No, Levosetride 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3840, 'Levosetride 5 Tablet', 'Wockhardt Ltd', 'Levosetride 5 Tablet', 'Does Levosetride 5 Tablet make you tired and drowsy?', 'Yes, Levosetride 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3841, 'Levosetride 5 Tablet', 'Wockhardt Ltd', 'Levosetride 5 Tablet', 'How long does it take for Levosetride 5 Tablet to work?', 'Levosetride 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3842, 'Levosetride 5 Tablet', 'Wockhardt Ltd', 'Levosetride 5 Tablet', 'Can I take Levosetride 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosetride 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3843, 'Levosetride 5 Tablet', 'Wockhardt Ltd', 'Levosetride 5 Tablet', 'Is it safe to take Levosetride 5 Tablet for a long time?', 'Levosetride 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosetride 5 Tablet for only as long as you need it.'),
(3844, 'Levosetride 5 Tablet', 'Wockhardt Ltd', 'Levosetride 5 Tablet', 'For how long should I continue Levosetride 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosetride 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosetride 5 Tablet'),
(3845, 'Levosetride D Tablet', 'Wockhardt Ltd', 'Levosetride D Tablet', 'Is Levosetride D Tablet a steroid? What is it used for?', 'No, Levosetride D Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3846, 'Levosetride D Tablet', 'Wockhardt Ltd', 'Levosetride D Tablet', 'Does Levosetride D Tablet make you tired and drowsy?', 'Yes, Levosetride D Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3847, 'Levosetride D Tablet', 'Wockhardt Ltd', 'Levosetride D Tablet', 'How long does it take for Levosetride D Tablet to work?', 'Levosetride D Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3848, 'Levosetride D Tablet', 'Wockhardt Ltd', 'Levosetride D Tablet', 'Can I take Levosetride D Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosetride D Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3849, 'Levosetride D Tablet', 'Wockhardt Ltd', 'Levosetride D Tablet', 'Is it safe to take Levosetride D Tablet for a long time?', 'Levosetride D Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosetride D Tablet for only as long as you need it.'),
(3850, 'Levosetride D Tablet', 'Wockhardt Ltd', 'Levosetride D Tablet', 'For how long should I continue Levosetride D Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosetride D Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosetride D Tablet'),
(3851, 'Levosh 250mg Tablet', 'Keshav Healthcare', 'Levosh 250mg Tablet', 'Is Levosh 250mg Tablet safe?', 'Levosh 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3852, 'Levosh 250mg Tablet', 'Keshav Healthcare', 'Levosh 250mg Tablet', 'What if I forget to take a dose of Levosh 250mg Tablet?', 'If you forget a dose of Levosh 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3853, 'Levosh 250mg Tablet', 'Keshav Healthcare', 'Levosh 250mg Tablet', 'Can the use of Levosh 250mg Tablet cause diarrhea?', 'Yes, the use of Levosh 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3854, 'Levosh 250mg Tablet', 'Keshav Healthcare', 'Levosh 250mg Tablet', 'Can I stop taking Levosh 250mg Tablet when I feel better?', 'No, do not stop taking Levosh 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosh 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosh 250mg Tablet in the dose and duration advised by the doctor.'),
(3855, 'Levosh 250mg Tablet', 'Keshav Healthcare', 'Levosh 250mg Tablet', 'Can the use of Levosh 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosh 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosh 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3856, 'Levosh 500mg Tablet', 'Keshav Healthcare', 'Levosh 500mg Tablet', 'Is Levosh 500mg Tablet safe?', 'Levosh 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3857, 'Levosh 500mg Tablet', 'Keshav Healthcare', 'Levosh 500mg Tablet', 'What if I forget to take a dose of Levosh 500mg Tablet?', 'If you forget a dose of Levosh 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3858, 'Levosh 500mg Tablet', 'Keshav Healthcare', 'Levosh 500mg Tablet', 'Can the use of Levosh 500mg Tablet cause diarrhea?', 'Yes, the use of Levosh 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3859, 'Levosh 500mg Tablet', 'Keshav Healthcare', 'Levosh 500mg Tablet', 'Can I stop taking Levosh 500mg Tablet when I feel better?', 'No, do not stop taking Levosh 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosh 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosh 500mg Tablet in the dose and duration advised by the doctor.'),
(3860, 'Levosh 500mg Tablet', 'Keshav Healthcare', 'Levosh 500mg Tablet', 'Can the use of Levosh 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosh 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosh 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3861, 'Levoshan 250mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 250mg Tablet', 'Is Levoshan 250mg Tablet safe?', 'Levoshan 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3862, 'Levoshan 250mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 250mg Tablet', 'What if I forget to take a dose of Levoshan 250mg Tablet?', 'If you forget a dose of Levoshan 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3863, 'Levoshan 250mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 250mg Tablet', 'Can the use of Levoshan 250mg Tablet cause diarrhea?', 'Yes, the use of Levoshan 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3864, 'Levoshan 250mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 250mg Tablet', 'Can I stop taking Levoshan 250mg Tablet when I feel better?', 'No, do not stop taking Levoshan 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoshan 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoshan 250mg Tablet in the dose and duration advised by the doctor.'),
(3865, 'Levoshan 250mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 250mg Tablet', 'Can the use of Levoshan 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoshan 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoshan 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3866, 'Levoshan 500mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 500mg Tablet', 'Is Levoshan 500mg Tablet safe?', 'Levoshan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3867, 'Levoshan 500mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 500mg Tablet', 'What if I forget to take a dose of Levoshan 500mg Tablet?', 'If you forget a dose of Levoshan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3868, 'Levoshan 500mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 500mg Tablet', 'Can the use of Levoshan 500mg Tablet cause diarrhea?', 'Yes, the use of Levoshan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3869, 'Levoshan 500mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 500mg Tablet', 'Can I stop taking Levoshan 500mg Tablet when I feel better?', 'No, do not stop taking Levoshan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoshan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoshan 500mg Tablet in the dose and duration advised by the doctor.'),
(3870, 'Levoshan 500mg Tablet', 'Shankus Acme Pharma Pvt Ltd', 'Levoshan 500mg Tablet', 'Can the use of Levoshan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoshan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoshan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3871, 'Levoshel 500 Tablet', 'Clancare Lifesciences', 'Levoshel 500 Tablet', 'Is Levoshel 500 Tablet safe?', 'Levoshel 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3872, 'Levoshel 500 Tablet', 'Clancare Lifesciences', 'Levoshel 500 Tablet', 'What if I forget to take a dose of Levoshel 500 Tablet?', 'If you forget a dose of Levoshel 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3873, 'Levoshel 500 Tablet', 'Clancare Lifesciences', 'Levoshel 500 Tablet', 'Can the use of Levoshel 500 Tablet cause diarrhea?', 'Yes, the use of Levoshel 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3874, 'Levoshel 500 Tablet', 'Clancare Lifesciences', 'Levoshel 500 Tablet', 'Can I stop taking Levoshel 500 Tablet when I feel better?', 'No, do not stop taking Levoshel 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoshel 500 Tablet too early, the symptoms may return or worsen. Continue taking Levoshel 500 Tablet in the dose and duration advised by the doctor.'),
(3875, 'Levoshel 500 Tablet', 'Clancare Lifesciences', 'Levoshel 500 Tablet', 'Can the use of Levoshel 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoshel 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoshel 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3876, 'Levoshil 500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil 500mg Tablet', 'Is Levoshil 500mg Tablet safe?', 'Levoshil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3877, 'Levoshil 500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil 500mg Tablet', 'What if I forget to take a dose of Levoshil 500mg Tablet?', 'If you forget a dose of Levoshil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3878, 'Levoshil 500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil 500mg Tablet', 'Can the use of Levoshil 500mg Tablet cause diarrhea?', 'Yes, the use of Levoshil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3879, 'Levoshil 500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil 500mg Tablet', 'Can I stop taking Levoshil 500mg Tablet when I feel better?', 'No, do not stop taking Levoshil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoshil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoshil 500mg Tablet in the dose and duration advised by the doctor.'),
(3880, 'Levoshil 500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil 500mg Tablet', 'Can the use of Levoshil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoshil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoshil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3881, 'Levoshil OZ 250mg/500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levoshil OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(3882, 'Levoshil OZ 250mg/500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil OZ 250mg/500mg Tablet', 'Can I stop taking Levoshil OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoshil OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(3883, 'Levoshil OZ 250mg/500mg Tablet', 'Prashil Life Sciences Pvt Ltd', 'Levoshil OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levoshil OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(3884, 'Levoshine 500mg Tablet', 'Roseate Medicare', 'Levoshine 500mg Tablet', 'Q. Is Levoshine 500mg Tablet safe?', 'Levoshine 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3885, 'Levoshine 500mg Tablet', 'Roseate Medicare', 'Levoshine 500mg Tablet', 'Q. What if I forget to take a dose of Levoshine 500mg Tablet?', 'If you forget a dose of Levoshine 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3886, 'Levoshine 500mg Tablet', 'Roseate Medicare', 'Levoshine 500mg Tablet', 'Q. Can the use of Levoshine 500mg Tablet cause diarrhea?', 'Yes, the use of Levoshine 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3887, 'Levoshine 500mg Tablet', 'Roseate Medicare', 'Levoshine 500mg Tablet', 'Q. Can I stop taking Levoshine 500mg Tablet when I feel better?', 'No, do not stop taking Levoshine 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoshine 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoshine 500mg Tablet in the dose and duration advised by the doctor.'),
(3888, 'Levoshine 500mg Tablet', 'Roseate Medicare', 'Levoshine 500mg Tablet', 'Q. Can the use of Levoshine 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoshine 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoshine 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3889, 'Levoshon 250mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 250mg Tablet', 'Is Levoshon 250mg Tablet safe?', 'Levoshon 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3890, 'Levoshon 250mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 250mg Tablet', 'What if I forget to take a dose of Levoshon 250mg Tablet?', 'If you forget a dose of Levoshon 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3891, 'Levoshon 250mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 250mg Tablet', 'Can the use of Levoshon 250mg Tablet cause diarrhea?', 'Yes, the use of Levoshon 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3892, 'Levoshon 250mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 250mg Tablet', 'Can I stop taking Levoshon 250mg Tablet when I feel better?', 'No, do not stop taking Levoshon 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoshon 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoshon 250mg Tablet in the dose and duration advised by the doctor.'),
(3893, 'Levoshon 250mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 250mg Tablet', 'Can the use of Levoshon 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoshon 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoshon 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3894, 'Levoshon 500mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 500mg Tablet', 'Is Levoshon 500mg Tablet safe?', 'Levoshon 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3895, 'Levoshon 500mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 500mg Tablet', 'What if I forget to take a dose of Levoshon 500mg Tablet?', 'If you forget a dose of Levoshon 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3896, 'Levoshon 500mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 500mg Tablet', 'Can the use of Levoshon 500mg Tablet cause diarrhea?', 'Yes, the use of Levoshon 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3897, 'Levoshon 500mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 500mg Tablet', 'Can I stop taking Levoshon 500mg Tablet when I feel better?', 'No, do not stop taking Levoshon 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoshon 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoshon 500mg Tablet in the dose and duration advised by the doctor.'),
(3898, 'Levoshon 500mg Tablet', 'Schon Pharmaceuticals Ltd', 'Levoshon 500mg Tablet', 'Can the use of Levoshon 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoshon 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoshon 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3899, 'Levoshot Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot Tablet', 'Is Levoshot Tablet a steroid? What is it used for?', 'No, Levoshot Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3900, 'Levoshot Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot Tablet', 'Does Levoshot Tablet make you tired and drowsy?', 'Yes, Levoshot Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3901, 'Levoshot Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot Tablet', 'How long does it take for Levoshot Tablet to work?', 'Levoshot Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3902, 'Levoshot Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot Tablet', 'Can I take Levoshot Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoshot Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3903, 'Levoshot Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot Tablet', 'Is it safe to take Levoshot Tablet for a long time?', 'Levoshot Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoshot Tablet for only as long as you need it.'),
(3904, 'Levoshot Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot Tablet', 'For how long should I continue Levoshot Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoshot Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoshot Tablet'),
(3905, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3906, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'Can I decrease the dose of Levoshot-M Kid Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3907, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'How should Levoshot-M Kid Tablet DT be stored?', 'Levoshot-M Kid Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3908, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'Can Levoshot-M Kid Tablet DT make my child sleepy?', 'Levoshot-M Kid Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3909, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoshot-M Kid Tablet DT?', 'No, don’t start Levoshot-M Kid Tablet DT without speaking to your child’s doctor. Moreover, Levoshot-M Kid Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3910, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoshot-M Kid Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3911, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'My child is suffering from a mood disorder. Is it safe to give Levoshot-M Kid Tablet DT to my child?', 'Some studies show that Levoshot-M Kid Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3912, 'Levoshot-M Kid Tablet DT', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Kid Tablet DT', 'Can I use Levoshot-M Kid Tablet DT for treating acute asthma attacks in my child?', 'Levoshot-M Kid Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3913, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3914, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'Can I decrease the dose of Levoshot-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3915, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'How should Levoshot-M Syrup be stored?', 'Levoshot-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3916, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'Can Levoshot-M Syrup make my child sleepy?', 'Levoshot-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3917, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoshot-M Syrup?', 'No, don’t start Levoshot-M Syrup without speaking to your child’s doctor. Moreover, Levoshot-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3918, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoshot-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3919, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoshot-M Syrup to my child?', 'Some studies show that Levoshot-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(3920, 'Levoshot-M Syrup', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Syrup', 'Can I use Levoshot-M Syrup for treating acute asthma attacks in my child?', 'Levoshot-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(3921, 'Levoshot-M Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Tablet', 'What is Levoshot-M Tablet?', 'Levoshot-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3922, 'Levoshot-M Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Tablet', 'Can the use of Levoshot-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoshot-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3923, 'Levoshot-M Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Tablet', 'Can Levoshot-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoshot-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3924, 'Levoshot-M Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Tablet', 'Can the use of Levoshot-M Tablet cause dry mouth?', 'Yes, the use of Levoshot-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3925, 'Levoshot-M Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Tablet', 'Can I drink alcohol while taking Levoshot-M Tablet?', 'No, do not take alcohol while taking Levoshot-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoshot-M Tablet.'),
(3926, 'Levoshot-M Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Tablet', 'Will Levoshot-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoshot-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3927, 'Levoshot-M Tablet', 'Biodiscovery Lifesciences Pvt Ltd', 'Levoshot-M Tablet', 'What are the instructions for storage and disposal of Levoshot-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3928, 'Levoshri M 5mg/10mg Tablet', 'Anuveda Life Sciences Pvt Ltd', 'Levoshri M 5mg/10mg Tablet', 'What is Levoshri M 5mg/10mg Tablet?', 'Levoshri M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3929, 'Levoshri M 5mg/10mg Tablet', 'Anuveda Life Sciences Pvt Ltd', 'Levoshri M 5mg/10mg Tablet', 'Can the use of Levoshri M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoshri M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3930, 'Levoshri M 5mg/10mg Tablet', 'Anuveda Life Sciences Pvt Ltd', 'Levoshri M 5mg/10mg Tablet', 'Can Levoshri M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoshri M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3931, 'Levoshri M 5mg/10mg Tablet', 'Anuveda Life Sciences Pvt Ltd', 'Levoshri M 5mg/10mg Tablet', 'Can the use of Levoshri M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoshri M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3932, 'Levoshri M 5mg/10mg Tablet', 'Anuveda Life Sciences Pvt Ltd', 'Levoshri M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoshri M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoshri M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoshri M 5mg/10mg Tablet.'),
(3933, 'Levoshri M 5mg/10mg Tablet', 'Anuveda Life Sciences Pvt Ltd', 'Levoshri M 5mg/10mg Tablet', 'Will Levoshri M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoshri M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3934, 'Levoshri M 5mg/10mg Tablet', 'Anuveda Life Sciences Pvt Ltd', 'Levoshri M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoshri M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3935, 'Levosi 10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 10mg Tablet', 'Is Levosi 10mg Tablet a steroid? What is it used for?', 'No, Levosi 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3936, 'Levosi 10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 10mg Tablet', 'Does Levosi 10mg Tablet make you tired and drowsy?', 'Yes, Levosi 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3937, 'Levosi 10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 10mg Tablet', 'How long does it take for Levosi 10mg Tablet to work?', 'Levosi 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3938, 'Levosi 10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 10mg Tablet', 'Can I take Levosi 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosi 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3939, 'Levosi 10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 10mg Tablet', 'Is it safe to take Levosi 10mg Tablet for a long time?', 'Levosi 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosi 10mg Tablet for only as long as you need it.'),
(3940, 'Levosi 10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 10mg Tablet', 'For how long should I continue Levosi 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosi 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosi 10mg Tablet'),
(3941, 'Levosi 5mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 5mg Tablet', 'Is Levosi 5mg Tablet a steroid? What is it used for?', 'No, Levosi 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3942, 'Levosi 5mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 5mg Tablet', 'Does Levosi 5mg Tablet make you tired and drowsy?', 'Yes, Levosi 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3943, 'Levosi 5mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 5mg Tablet', 'How long does it take for Levosi 5mg Tablet to work?', 'Levosi 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3944, 'Levosi 5mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 5mg Tablet', 'Can I take Levosi 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosi 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3945, 'Levosi 5mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 5mg Tablet', 'Is it safe to take Levosi 5mg Tablet for a long time?', 'Levosi 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosi 5mg Tablet for only as long as you need it.'),
(3946, 'Levosi 5mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi 5mg Tablet', 'For how long should I continue Levosi 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosi 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosi 5mg Tablet'),
(3947, 'Levosi M 5mg/10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi M 5mg/10mg Tablet', 'What is Levosi M 5mg/10mg Tablet?', 'Levosi M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3948, 'Levosi M 5mg/10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi M 5mg/10mg Tablet', 'Can the use of Levosi M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosi M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3949, 'Levosi M 5mg/10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi M 5mg/10mg Tablet', 'Can Levosi M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levosi M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3950, 'Levosi M 5mg/10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi M 5mg/10mg Tablet', 'Can the use of Levosi M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levosi M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3951, 'Levosi M 5mg/10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levosi M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levosi M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosi M 5mg/10mg Tablet.'),
(3952, 'Levosi M 5mg/10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi M 5mg/10mg Tablet', 'Will Levosi M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosi M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(3953, 'Levosi M 5mg/10mg Tablet', 'Ontop Pharmaceuticals Pvt. Ltd.', 'Levosi M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levosi M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3954, 'Levosia 500mg Tablet', 'Ambrosia Pharma', 'Levosia 500mg Tablet', 'Is Levosia 500mg Tablet safe?', 'Levosia 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3955, 'Levosia 500mg Tablet', 'Ambrosia Pharma', 'Levosia 500mg Tablet', 'What if I forget to take a dose of Levosia 500mg Tablet?', 'If you forget a dose of Levosia 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3956, 'Levosia 500mg Tablet', 'Ambrosia Pharma', 'Levosia 500mg Tablet', 'Can the use of Levosia 500mg Tablet cause diarrhea?', 'Yes, the use of Levosia 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3957, 'Levosia 500mg Tablet', 'Ambrosia Pharma', 'Levosia 500mg Tablet', 'Can I stop taking Levosia 500mg Tablet when I feel better?', 'No, do not stop taking Levosia 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosia 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosia 500mg Tablet in the dose and duration advised by the doctor.'),
(3958, 'Levosia 500mg Tablet', 'Ambrosia Pharma', 'Levosia 500mg Tablet', 'Can the use of Levosia 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosia 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosia 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3959, 'Levosia 5mg Tablet', 'Sia Pharma Pvt Ltd', 'Levosia 5mg Tablet', 'Is Levosia 5mg Tablet a steroid? What is it used for?', 'No, Levosia 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3960, 'Levosia 5mg Tablet', 'Sia Pharma Pvt Ltd', 'Levosia 5mg Tablet', 'Does Levosia 5mg Tablet make you tired and drowsy?', 'Yes, Levosia 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3961, 'Levosia 5mg Tablet', 'Sia Pharma Pvt Ltd', 'Levosia 5mg Tablet', 'How long does it take for Levosia 5mg Tablet to work?', 'Levosia 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3962, 'Levosia 5mg Tablet', 'Sia Pharma Pvt Ltd', 'Levosia 5mg Tablet', 'Can I take Levosia 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosia 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3963, 'Levosia 5mg Tablet', 'Sia Pharma Pvt Ltd', 'Levosia 5mg Tablet', 'Is it safe to take Levosia 5mg Tablet for a long time?', 'Levosia 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosia 5mg Tablet for only as long as you need it.'),
(3964, 'Levosia 5mg Tablet', 'Sia Pharma Pvt Ltd', 'Levosia 5mg Tablet', 'For how long should I continue Levosia 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosia 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosia 5mg Tablet'),
(3965, 'Levosidh 500mg Tablet', 'Sidhbali Formulations', 'Levosidh 500mg Tablet', 'Q. Is Levosidh 500mg Tablet safe?', 'Levosidh 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3966, 'Levosidh 500mg Tablet', 'Sidhbali Formulations', 'Levosidh 500mg Tablet', 'Q. What if I forget to take a dose of Levosidh 500mg Tablet?', 'If you forget a dose of Levosidh 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3967, 'Levosidh 500mg Tablet', 'Sidhbali Formulations', 'Levosidh 500mg Tablet', 'Q. Can the use of Levosidh 500mg Tablet cause diarrhea?', 'Yes, the use of Levosidh 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3968, 'Levosidh 500mg Tablet', 'Sidhbali Formulations', 'Levosidh 500mg Tablet', 'Q. Can I stop taking Levosidh 500mg Tablet when I feel better?', 'No, do not stop taking Levosidh 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosidh 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosidh 500mg Tablet in the dose and duration advised by the doctor.'),
(3969, 'Levosidh 500mg Tablet', 'Sidhbali Formulations', 'Levosidh 500mg Tablet', 'Q. Can the use of Levosidh 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosidh 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosidh 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3970, 'Levosil 250mg Tablet', 'Silicon Pharma', 'Levosil 250mg Tablet', 'Is Levosil 250mg Tablet safe?', 'Levosil 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3971, 'Levosil 250mg Tablet', 'Silicon Pharma', 'Levosil 250mg Tablet', 'What if I forget to take a dose of Levosil 250mg Tablet?', 'If you forget a dose of Levosil 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3972, 'Levosil 250mg Tablet', 'Silicon Pharma', 'Levosil 250mg Tablet', 'Can the use of Levosil 250mg Tablet cause diarrhea?', 'Yes, the use of Levosil 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3973, 'Levosil 250mg Tablet', 'Silicon Pharma', 'Levosil 250mg Tablet', 'Can I stop taking Levosil 250mg Tablet when I feel better?', 'No, do not stop taking Levosil 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosil 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosil 250mg Tablet in the dose and duration advised by the doctor.'),
(3974, 'Levosil 250mg Tablet', 'Silicon Pharma', 'Levosil 250mg Tablet', 'Can the use of Levosil 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosil 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosil 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3975, 'Levosil 500mg Tablet', 'Silicon Pharma', 'Levosil 500mg Tablet', 'Is Levosil 500mg Tablet safe?', 'Levosil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(3976, 'Levosil 500mg Tablet', 'Silicon Pharma', 'Levosil 500mg Tablet', 'What if I forget to take a dose of Levosil 500mg Tablet?', 'If you forget a dose of Levosil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(3977, 'Levosil 500mg Tablet', 'Silicon Pharma', 'Levosil 500mg Tablet', 'Can the use of Levosil 500mg Tablet cause diarrhea?', 'Yes, the use of Levosil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(3978, 'Levosil 500mg Tablet', 'Silicon Pharma', 'Levosil 500mg Tablet', 'Can I stop taking Levosil 500mg Tablet when I feel better?', 'No, do not stop taking Levosil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosil 500mg Tablet in the dose and duration advised by the doctor.'),
(3979, 'Levosil 500mg Tablet', 'Silicon Pharma', 'Levosil 500mg Tablet', 'Can the use of Levosil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(3980, 'Levosil 5mg Tablet', 'Asiltus Biopharma', 'Levosil 5mg Tablet', 'Is Levosil 5mg Tablet a steroid? What is it used for?', 'No, Levosil 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(3981, 'Levosil 5mg Tablet', 'Asiltus Biopharma', 'Levosil 5mg Tablet', 'Does Levosil 5mg Tablet make you tired and drowsy?', 'Yes, Levosil 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(3982, 'Levosil 5mg Tablet', 'Asiltus Biopharma', 'Levosil 5mg Tablet', 'How long does it take for Levosil 5mg Tablet to work?', 'Levosil 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(3983, 'Levosil 5mg Tablet', 'Asiltus Biopharma', 'Levosil 5mg Tablet', 'Can I take Levosil 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosil 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(3984, 'Levosil 5mg Tablet', 'Asiltus Biopharma', 'Levosil 5mg Tablet', 'Is it safe to take Levosil 5mg Tablet for a long time?', 'Levosil 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosil 5mg Tablet for only as long as you need it.'),
(3985, 'Levosil 5mg Tablet', 'Asiltus Biopharma', 'Levosil 5mg Tablet', 'For how long should I continue Levosil 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosil 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosil 5mg Tablet'),
(3986, 'Levosil M 5mg/10mg Tablet', 'Asiltus Biopharma', 'Levosil M 5mg/10mg Tablet', 'What is Levosil M 5mg/10mg Tablet?', 'Levosil M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(3987, 'Levosil M 5mg/10mg Tablet', 'Asiltus Biopharma', 'Levosil M 5mg/10mg Tablet', 'Can the use of Levosil M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosil M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(3988, 'Levosil M 5mg/10mg Tablet', 'Asiltus Biopharma', 'Levosil M 5mg/10mg Tablet', 'Can Levosil M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levosil M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(3989, 'Levosil M 5mg/10mg Tablet', 'Asiltus Biopharma', 'Levosil M 5mg/10mg Tablet', 'Can the use of Levosil M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levosil M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(3990, 'Levosil M 5mg/10mg Tablet', 'Asiltus Biopharma', 'Levosil M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levosil M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levosil M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosil M 5mg/10mg Tablet.'),
(3991, 'Levosil M 5mg/10mg Tablet', 'Asiltus Biopharma', 'Levosil M 5mg/10mg Tablet', 'Will Levosil M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosil M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(3992, 'Levosil M 5mg/10mg Tablet', 'Asiltus Biopharma', 'Levosil M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levosil M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(3993, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(3994, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'Can I decrease the dose of Levosil M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(3995, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'How should Levosil M Kid Syrup be stored?', 'Levosil M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(3996, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'Can Levosil M Kid Syrup make my child sleepy?', 'Levosil M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(3997, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosil M Kid Syrup?', 'No, don’t start Levosil M Kid Syrup without speaking to your child’s doctor. Moreover, Levosil M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(3998, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosil M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(3999, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levosil M Kid Syrup to my child?', 'Some studies show that Levosil M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4000, 'Levosil M Kid Syrup', 'Asiltus Biopharma', 'Levosil M Kid Syrup', 'Can I use Levosil M Kid Syrup for treating acute asthma attacks in my child?', 'Levosil M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4001, 'Levosil-M Tablet', 'Andishil Biotech', 'Levosil-M Tablet', 'What is Levosil-M Tablet?', 'Levosil-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4002, 'Levosil-M Tablet', 'Andishil Biotech', 'Levosil-M Tablet', 'Can the use of Levosil-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosil-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4003, 'Levosil-M Tablet', 'Andishil Biotech', 'Levosil-M Tablet', 'Can Levosil-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levosil-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4004, 'Levosil-M Tablet', 'Andishil Biotech', 'Levosil-M Tablet', 'Can the use of Levosil-M Tablet cause dry mouth?', 'Yes, the use of Levosil-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4005, 'Levosil-M Tablet', 'Andishil Biotech', 'Levosil-M Tablet', 'Can I drink alcohol while taking Levosil-M Tablet?', 'No, do not take alcohol while taking Levosil-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosil-M Tablet.'),
(4006, 'Levosil-M Tablet', 'Andishil Biotech', 'Levosil-M Tablet', 'Will Levosil-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosil-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4007, 'Levosil-M Tablet', 'Andishil Biotech', 'Levosil-M Tablet', 'What are the instructions for storage and disposal of Levosil-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4008, 'Levosim 5mg Tablet', 'Simpatico Healthcare', 'Levosim 5mg Tablet', 'Is Levosim 5mg Tablet a steroid? What is it used for?', 'No, Levosim 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4009, 'Levosim 5mg Tablet', 'Simpatico Healthcare', 'Levosim 5mg Tablet', 'Does Levosim 5mg Tablet make you tired and drowsy?', 'Yes, Levosim 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4010, 'Levosim 5mg Tablet', 'Simpatico Healthcare', 'Levosim 5mg Tablet', 'How long does it take for Levosim 5mg Tablet to work?', 'Levosim 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4011, 'Levosim 5mg Tablet', 'Simpatico Healthcare', 'Levosim 5mg Tablet', 'Can I take Levosim 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosim 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4012, 'Levosim 5mg Tablet', 'Simpatico Healthcare', 'Levosim 5mg Tablet', 'Is it safe to take Levosim 5mg Tablet for a long time?', 'Levosim 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosim 5mg Tablet for only as long as you need it.'),
(4013, 'Levosim 5mg Tablet', 'Simpatico Healthcare', 'Levosim 5mg Tablet', 'For how long should I continue Levosim 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosim 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosim 5mg Tablet'),
(4014, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4015, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'Can I decrease the dose of Levosin 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4016, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'How should Levosin 2.5mg/4mg Tablet be stored?', 'Levosin 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4017, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'Can Levosin 2.5mg/4mg Tablet make my child sleepy?', 'Levosin 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4018, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosin 2.5mg/4mg Tablet?', 'No, don’t start Levosin 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levosin 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4019, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosin 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4020, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levosin 2.5mg/4mg Tablet to my child?', 'Some studies show that Levosin 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4021, 'Levosin 2.5mg/4mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 2.5mg/4mg Tablet', 'Can I use Levosin 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levosin 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4022, 'Levosin 5mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 5mg Tablet (Insinius Pharmaceuticals)', 'Is Levosin 5mg Tablet a steroid? What is it used for?', 'No, Levosin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4023, 'Levosin 5mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 5mg Tablet (Insinius Pharmaceuticals)', 'Does Levosin 5mg Tablet make you tired and drowsy?', 'Yes, Levosin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4024, 'Levosin 5mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 5mg Tablet (Insinius Pharmaceuticals)', 'How long does it take for Levosin 5mg Tablet to work?', 'Levosin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4025, 'Levosin 5mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 5mg Tablet (Insinius Pharmaceuticals)', 'Can I take Levosin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4026, 'Levosin 5mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 5mg Tablet (Insinius Pharmaceuticals)', 'Is it safe to take Levosin 5mg Tablet for a long time?', 'Levosin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosin 5mg Tablet for only as long as you need it.'),
(4027, 'Levosin 5mg Tablet', 'Insinius Pharmaceuticals', 'Levosin 5mg Tablet (Insinius Pharmaceuticals)', 'For how long should I continue Levosin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosin 5mg Tablet'),
(4028, 'Levosin 5mg Tablet', 'Woxter Pharma', 'Levosin 5mg Tablet (Woxter Pharma)', 'Is Levosin 5mg Tablet a steroid? What is it used for?', 'No, Levosin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4029, 'Levosin 5mg Tablet', 'Woxter Pharma', 'Levosin 5mg Tablet (Woxter Pharma)', 'Does Levosin 5mg Tablet make you tired and drowsy?', 'Yes, Levosin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4030, 'Levosin 5mg Tablet', 'Woxter Pharma', 'Levosin 5mg Tablet (Woxter Pharma)', 'How long does it take for Levosin 5mg Tablet to work?', 'Levosin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4031, 'Levosin 5mg Tablet', 'Woxter Pharma', 'Levosin 5mg Tablet (Woxter Pharma)', 'Can I take Levosin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4032, 'Levosin 5mg Tablet', 'Woxter Pharma', 'Levosin 5mg Tablet (Woxter Pharma)', 'Is it safe to take Levosin 5mg Tablet for a long time?', 'Levosin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosin 5mg Tablet for only as long as you need it.'),
(4033, 'Levosin 5mg Tablet', 'Woxter Pharma', 'Levosin 5mg Tablet (Woxter Pharma)', 'For how long should I continue Levosin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosin 5mg Tablet'),
(4034, 'Levosin FX 10mg/120mg Tablet', 'Insinius Pharmaceuticals', 'Levosin FX 10mg/120mg Tablet', 'What is Levosin FX 10mg/120mg Tablet ?', 'Levosin FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(4035, 'Levosin FX 10mg/120mg Tablet', 'Insinius Pharmaceuticals', 'Levosin FX 10mg/120mg Tablet', 'Can Levosin FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levosin FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Levosin FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(4036, 'Levosin FX 10mg/120mg Tablet', 'Insinius Pharmaceuticals', 'Levosin FX 10mg/120mg Tablet', 'Can the use of Levosin FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Levosin FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(4037, 'Levosin FX 10mg/120mg Tablet', 'Insinius Pharmaceuticals', 'Levosin FX 10mg/120mg Tablet', 'What should be avoided in food while taking Levosin FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levosin FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Levosin FX 10mg/120mg Tablet.'),
(4038, 'Levosin FX 10mg/120mg Tablet', 'Insinius Pharmaceuticals', 'Levosin FX 10mg/120mg Tablet', 'Will Levosin FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4039, 'Levosin FX 10mg/120mg Tablet', 'Insinius Pharmaceuticals', 'Levosin FX 10mg/120mg Tablet', 'What is the recommended storage condition for Levosin FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4040, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4041, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'Can I decrease the dose of Levosin M 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4042, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'How should Levosin M 2.5mg/4mg Tablet be stored?', 'Levosin M 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4043, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'Can Levosin M 2.5mg/4mg Tablet make my child sleepy?', 'Levosin M 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4044, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosin M 2.5mg/4mg Tablet?', 'No, don’t start Levosin M 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levosin M 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4045, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosin M 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4046, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levosin M 2.5mg/4mg Tablet to my child?', 'Some studies show that Levosin M 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4047, 'Levosin M 2.5mg/4mg Tablet', 'Woxter Pharma', 'Levosin M 2.5mg/4mg Tablet', 'Can I use Levosin M 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levosin M 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4048, 'Levosin M 5mg/10mg Tablet', 'Insinius Pharmaceuticals', 'Levosin M 5mg/10mg Tablet (Insinius Pharmaceuticals)', 'What is Levosin M 5mg/10mg Tablet?', 'Levosin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4049, 'Levosin M 5mg/10mg Tablet', 'Insinius Pharmaceuticals', 'Levosin M 5mg/10mg Tablet (Insinius Pharmaceuticals)', 'Can the use of Levosin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4050, 'Levosin M 5mg/10mg Tablet', 'Insinius Pharmaceuticals', 'Levosin M 5mg/10mg Tablet (Insinius Pharmaceuticals)', 'Can Levosin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levosin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4051, 'Levosin M 5mg/10mg Tablet', 'Insinius Pharmaceuticals', 'Levosin M 5mg/10mg Tablet (Insinius Pharmaceuticals)', 'Can the use of Levosin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levosin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4052, 'Levosin M 5mg/10mg Tablet', 'Insinius Pharmaceuticals', 'Levosin M 5mg/10mg Tablet (Insinius Pharmaceuticals)', 'Can I drink alcohol while taking Levosin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levosin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosin M 5mg/10mg Tablet.'),
(4053, 'Levosin M 5mg/10mg Tablet', 'Insinius Pharmaceuticals', 'Levosin M 5mg/10mg Tablet (Insinius Pharmaceuticals)', 'Will Levosin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4054, 'Levosin M 5mg/10mg Tablet', 'Insinius Pharmaceuticals', 'Levosin M 5mg/10mg Tablet (Insinius Pharmaceuticals)', 'What are the instructions for storage and disposal of Levosin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4055, 'Levosin M 5mg/10mg Tablet', 'Woxter Pharma', 'Levosin M 5mg/10mg Tablet (Woxter Pharma)', 'What is Levosin M 5mg/10mg Tablet?', 'Levosin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4056, 'Levosin M 5mg/10mg Tablet', 'Woxter Pharma', 'Levosin M 5mg/10mg Tablet (Woxter Pharma)', 'Can the use of Levosin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4057, 'Levosin M 5mg/10mg Tablet', 'Woxter Pharma', 'Levosin M 5mg/10mg Tablet (Woxter Pharma)', 'Can Levosin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levosin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4058, 'Levosin M 5mg/10mg Tablet', 'Woxter Pharma', 'Levosin M 5mg/10mg Tablet (Woxter Pharma)', 'Can the use of Levosin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levosin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4059, 'Levosin M 5mg/10mg Tablet', 'Woxter Pharma', 'Levosin M 5mg/10mg Tablet (Woxter Pharma)', 'Can I drink alcohol while taking Levosin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levosin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosin M 5mg/10mg Tablet.'),
(4060, 'Levosin M 5mg/10mg Tablet', 'Woxter Pharma', 'Levosin M 5mg/10mg Tablet (Woxter Pharma)', 'Will Levosin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4061, 'Levosin M 5mg/10mg Tablet', 'Woxter Pharma', 'Levosin M 5mg/10mg Tablet (Woxter Pharma)', 'What are the instructions for storage and disposal of Levosin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4062, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4063, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'Can I decrease the dose of Levosin M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4064, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'How should Levosin M Oral Suspension be stored?', 'Levosin M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4065, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'Can Levosin M Oral Suspension make my child sleepy?', 'Levosin M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4066, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosin M Oral Suspension?', 'No, don’t start Levosin M Oral Suspension without speaking to your child’s doctor. Moreover, Levosin M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4067, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosin M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4068, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levosin M Oral Suspension to my child?', 'Some studies show that Levosin M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4069, 'Levosin M Oral Suspension', 'Woxter Pharma', 'Levosin M Oral Suspension', 'Can I use Levosin M Oral Suspension for treating acute asthma attacks in my child?', 'Levosin M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4070, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4071, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. Can I decrease the dose of Levosin M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4072, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. How should Levosin M Syrup be stored?', 'Levosin M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4073, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. Can Levosin M Syrup make my child sleepy?', 'Levosin M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4074, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosin M Syrup?', 'No, don’t start Levosin M Syrup without speaking to your child’s doctor. Moreover, Levosin M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4075, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosin M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4076, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. My child is suffering from a mood disorder. Is it safe to give Levosin M Syrup to my child?', 'Some studies show that Levosin M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4077, 'Levosin M Syrup', 'Insinius Pharmaceuticals', 'Levosin M Syrup', 'Q. Can I use Levosin M Syrup for treating acute asthma attacks in my child?', 'Levosin M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4078, 'Levosip 500mg Infusion', 'Sipra Remedies', 'Levosip 500mg Infusion', 'Is Levosip 500mg Infusion safe?', 'Levosip 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4079, 'Levosip 500mg Infusion', 'Sipra Remedies', 'Levosip 500mg Infusion', 'Can the use of Levosip 500mg Infusion cause diarrhea?', 'Yes, the use of Levosip 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4080, 'Levosip 500mg Infusion', 'Sipra Remedies', 'Levosip 500mg Infusion', 'Can the use of Levosip 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levosip 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosip 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4081, 'Levosip 500mg Infusion', 'Sipra Remedies', 'Levosip 500mg Infusion', 'How is Levosip 500mg Infusion administered?', 'Levosip 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levosip 500mg Infusion.'),
(4082, 'Levosip 500mg Infusion', 'Sipra Remedies', 'Levosip 500mg Infusion', 'Is Levosip 500mg Infusion effective?', 'Levosip 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levosip 500mg Infusion too early, the symptoms may return or worsen.'),
(4083, 'Levosip 500mg Tablet', 'Sipra Remedies', 'Levosip 500mg Tablet', 'Is Levosip 500mg Tablet safe?', 'Levosip 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4084, 'Levosip 500mg Tablet', 'Sipra Remedies', 'Levosip 500mg Tablet', 'What if I forget to take a dose of Levosip 500mg Tablet?', 'If you forget a dose of Levosip 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4085, 'Levosip 500mg Tablet', 'Sipra Remedies', 'Levosip 500mg Tablet', 'Can the use of Levosip 500mg Tablet cause diarrhea?', 'Yes, the use of Levosip 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4086, 'Levosip 500mg Tablet', 'Sipra Remedies', 'Levosip 500mg Tablet', 'Can I stop taking Levosip 500mg Tablet when I feel better?', 'No, do not stop taking Levosip 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosip 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosip 500mg Tablet in the dose and duration advised by the doctor.'),
(4087, 'Levosip 500mg Tablet', 'Sipra Remedies', 'Levosip 500mg Tablet', 'Can the use of Levosip 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosip 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosip 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4088, 'Levosiz 10 Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz 10 Tablet', 'Is Levosiz 10 Tablet a steroid? What is it used for?', 'No, Levosiz 10 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4089, 'Levosiz 10 Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz 10 Tablet', 'Does Levosiz 10 Tablet make you tired and drowsy?', 'Yes, Levosiz 10 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4090, 'Levosiz 10 Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz 10 Tablet', 'How long does it take for Levosiz 10 Tablet to work?', 'Levosiz 10 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4091, 'Levosiz 10 Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz 10 Tablet', 'Can I take Levosiz 10 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosiz 10 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4092, 'Levosiz 10 Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz 10 Tablet', 'Is it safe to take Levosiz 10 Tablet for a long time?', 'Levosiz 10 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosiz 10 Tablet for only as long as you need it.'),
(4093, 'Levosiz 10 Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz 10 Tablet', 'For how long should I continue Levosiz 10 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosiz 10 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosiz 10 Tablet'),
(4094, 'Levosiz 2.5mg Syrup', 'Systopic Laboratories Pvt Ltd', 'Levosiz 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levosiz 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(4095, 'Levosiz 2.5mg Syrup', 'Systopic Laboratories Pvt Ltd', 'Levosiz 2.5mg Syrup', 'Can other medicines be given at the same time as Levosiz 2.5mg Syrup?', 'Levosiz 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levosiz 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(4096, 'Levosiz 2.5mg Syrup', 'Systopic Laboratories Pvt Ltd', 'Levosiz 2.5mg Syrup', 'How much Levosiz 2.5mg Syrup should I give to my child?', 'Levosiz 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(4097, 'Levosiz 2.5mg Syrup', 'Systopic Laboratories Pvt Ltd', 'Levosiz 2.5mg Syrup', 'What if I give too much of Levosiz 2.5mg Syrup by mistake?', 'Although Levosiz 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(4098, 'Levosiz 2.5mg Syrup', 'Systopic Laboratories Pvt Ltd', 'Levosiz 2.5mg Syrup', 'How should Levosiz 2.5mg Syrup be stored?', 'Store Levosiz 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4099, 'Levosiz 2.5mg Syrup', 'Systopic Laboratories Pvt Ltd', 'Levosiz 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(4100, 'Levosiz 5mg Tablet MD', 'Systopic Laboratories Pvt Ltd', 'Levosiz 5mg Tablet MD', 'Is Levosiz 5mg Tablet MD a steroid? What is it used for?', 'No, Levosiz 5mg Tablet MD is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4101, 'Levosiz 5mg Tablet MD', 'Systopic Laboratories Pvt Ltd', 'Levosiz 5mg Tablet MD', 'Does Levosiz 5mg Tablet MD make you tired and drowsy?', 'Yes, Levosiz 5mg Tablet MD can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4102, 'Levosiz 5mg Tablet MD', 'Systopic Laboratories Pvt Ltd', 'Levosiz 5mg Tablet MD', 'How long does it take for Levosiz 5mg Tablet MD to work?', 'Levosiz 5mg Tablet MD starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4103, 'Levosiz 5mg Tablet MD', 'Systopic Laboratories Pvt Ltd', 'Levosiz 5mg Tablet MD', 'Can I take Levosiz 5mg Tablet MD and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosiz 5mg Tablet MD during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4104, 'Levosiz 5mg Tablet MD', 'Systopic Laboratories Pvt Ltd', 'Levosiz 5mg Tablet MD', 'Is it safe to take Levosiz 5mg Tablet MD for a long time?', 'Levosiz 5mg Tablet MD is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosiz 5mg Tablet MD for only as long as you need it.'),
(4105, 'Levosiz 5mg Tablet MD', 'Systopic Laboratories Pvt Ltd', 'Levosiz 5mg Tablet MD', 'For how long should I continue Levosiz 5mg Tablet MD?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosiz 5mg Tablet MD for a longer time. Talk to your doctor if you are unsure about the duration of using Levosiz 5mg Tablet MD'),
(4106, 'Levosiz Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz Tablet', 'Is Levosiz Tablet a steroid? What is it used for?', 'No, Levosiz Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4107, 'Levosiz Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz Tablet', 'Does Levosiz Tablet make you tired and drowsy?', 'Yes, Levosiz Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4108, 'Levosiz Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz Tablet', 'How long does it take for Levosiz Tablet to work?', 'Levosiz Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4109, 'Levosiz Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz Tablet', 'Can I take Levosiz Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosiz Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4110, 'Levosiz Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz Tablet', 'Is it safe to take Levosiz Tablet for a long time?', 'Levosiz Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosiz Tablet for only as long as you need it.'),
(4111, 'Levosiz Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz Tablet', 'For how long should I continue Levosiz Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosiz Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosiz Tablet'),
(4112, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4113, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. Can I decrease the dose of Levosiz-M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4114, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. How should Levosiz-M Kid Tablet be stored?', 'Levosiz-M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4115, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. Can Levosiz-M Kid Tablet make my child sleepy?', 'Levosiz-M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4116, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosiz-M Kid Tablet?', 'No, don’t start Levosiz-M Kid Tablet without speaking to your child’s doctor. Moreover, Levosiz-M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4117, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosiz-M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4118, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. My child is suffering from a mood disorder. Is it safe to give Levosiz-M Kid Tablet to my child?', 'Some studies show that Levosiz-M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4119, 'Levosiz-M Kid Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Kid Tablet', 'Q. Can I use Levosiz-M Kid Tablet for treating acute asthma attacks in my child?', 'Levosiz-M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4120, 'Levosiz-M Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Tablet', 'What is Levosiz-M Tablet?', 'Levosiz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4121, 'Levosiz-M Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Tablet', 'Can the use of Levosiz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosiz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4122, 'Levosiz-M Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Tablet', 'Can Levosiz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levosiz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4123, 'Levosiz-M Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Tablet', 'Can the use of Levosiz-M Tablet cause dry mouth?', 'Yes, the use of Levosiz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4124, 'Levosiz-M Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Tablet', 'Can I drink alcohol while taking Levosiz-M Tablet?', 'No, do not take alcohol while taking Levosiz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosiz-M Tablet.'),
(4125, 'Levosiz-M Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Tablet', 'Will Levosiz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosiz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4126, 'Levosiz-M Tablet', 'Systopic Laboratories Pvt Ltd', 'Levosiz-M Tablet', 'What are the instructions for storage and disposal of Levosiz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4127, 'Levoska M 5mg/10mg Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska M 5mg/10mg Tablet', 'What is Levoska M 5mg/10mg Tablet?', 'Levoska M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4128, 'Levoska M 5mg/10mg Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska M 5mg/10mg Tablet', 'Can the use of Levoska M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoska M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4129, 'Levoska M 5mg/10mg Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska M 5mg/10mg Tablet', 'Can Levoska M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoska M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4130, 'Levoska M 5mg/10mg Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska M 5mg/10mg Tablet', 'Can the use of Levoska M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoska M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4131, 'Levoska M 5mg/10mg Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoska M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoska M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoska M 5mg/10mg Tablet.'),
(4132, 'Levoska M 5mg/10mg Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska M 5mg/10mg Tablet', 'Will Levoska M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoska M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4133, 'Levoska M 5mg/10mg Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoska M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4134, 'Levoska Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska Tablet', 'Is Levoska Tablet a steroid? What is it used for?', 'No, Levoska Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4135, 'Levoska Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska Tablet', 'Does Levoska Tablet make you tired and drowsy?', 'Yes, Levoska Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4136, 'Levoska Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska Tablet', 'How long does it take for Levoska Tablet to work?', 'Levoska Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4137, 'Levoska Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska Tablet', 'Can I take Levoska Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoska Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4138, 'Levoska Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska Tablet', 'Is it safe to take Levoska Tablet for a long time?', 'Levoska Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoska Tablet for only as long as you need it.'),
(4139, 'Levoska Tablet', 'Skinska Pharmaceutica Pvt Ltd', 'Levoska Tablet', 'For how long should I continue Levoska Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoska Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoska Tablet'),
(4140, 'Levoslog 500mg Tablet', 'United Biotech Pvt Ltd', 'Levoslog 500mg Tablet', 'Is Levoslog 500mg Tablet safe?', 'Levoslog 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4141, 'Levoslog 500mg Tablet', 'United Biotech Pvt Ltd', 'Levoslog 500mg Tablet', 'What if I forget to take a dose of Levoslog 500mg Tablet?', 'If you forget a dose of Levoslog 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4142, 'Levoslog 500mg Tablet', 'United Biotech Pvt Ltd', 'Levoslog 500mg Tablet', 'Can the use of Levoslog 500mg Tablet cause diarrhea?', 'Yes, the use of Levoslog 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4143, 'Levoslog 500mg Tablet', 'United Biotech Pvt Ltd', 'Levoslog 500mg Tablet', 'Can I stop taking Levoslog 500mg Tablet when I feel better?', 'No, do not stop taking Levoslog 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoslog 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoslog 500mg Tablet in the dose and duration advised by the doctor.'),
(4144, 'Levoslog 500mg Tablet', 'United Biotech Pvt Ltd', 'Levoslog 500mg Tablet', 'Can the use of Levoslog 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoslog 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoslog 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4145, 'Levosmi 500mg Tablet', 'Smithcare Remedies', 'Levosmi 500mg Tablet', 'Is Levosmi 500mg Tablet safe?', 'Levosmi 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4146, 'Levosmi 500mg Tablet', 'Smithcare Remedies', 'Levosmi 500mg Tablet', 'What if I forget to take a dose of Levosmi 500mg Tablet?', 'If you forget a dose of Levosmi 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4147, 'Levosmi 500mg Tablet', 'Smithcare Remedies', 'Levosmi 500mg Tablet', 'Can the use of Levosmi 500mg Tablet cause diarrhea?', 'Yes, the use of Levosmi 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4148, 'Levosmi 500mg Tablet', 'Smithcare Remedies', 'Levosmi 500mg Tablet', 'Can I stop taking Levosmi 500mg Tablet when I feel better?', 'No, do not stop taking Levosmi 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosmi 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosmi 500mg Tablet in the dose and duration advised by the doctor.'),
(4149, 'Levosmi 500mg Tablet', 'Smithcare Remedies', 'Levosmi 500mg Tablet', 'Can the use of Levosmi 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosmi 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosmi 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4150, 'Levosmith 5mg Tablet', 'Medsmith Pharmaceuticals', 'Levosmith 5mg Tablet', 'Is Levosmith 5mg Tablet a steroid? What is it used for?', 'No, Levosmith 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4151, 'Levosmith 5mg Tablet', 'Medsmith Pharmaceuticals', 'Levosmith 5mg Tablet', 'Does Levosmith 5mg Tablet make you tired and drowsy?', 'Yes, Levosmith 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4152, 'Levosmith 5mg Tablet', 'Medsmith Pharmaceuticals', 'Levosmith 5mg Tablet', 'How long does it take for Levosmith 5mg Tablet to work?', 'Levosmith 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4153, 'Levosmith 5mg Tablet', 'Medsmith Pharmaceuticals', 'Levosmith 5mg Tablet', 'Can I take Levosmith 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosmith 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4154, 'Levosmith 5mg Tablet', 'Medsmith Pharmaceuticals', 'Levosmith 5mg Tablet', 'Is it safe to take Levosmith 5mg Tablet for a long time?', 'Levosmith 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosmith 5mg Tablet for only as long as you need it.'),
(4155, 'Levosmith 5mg Tablet', 'Medsmith Pharmaceuticals', 'Levosmith 5mg Tablet', 'For how long should I continue Levosmith 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosmith 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosmith 5mg Tablet'),
(4156, 'Levosmo 20mg Syrup', 'Riasmo Lifesciences', 'Levosmo 20mg Syrup', 'How to take Levosmo 20mg Syrup?', 'Take Levosmo 20mg Syrup in the exact dose as advised by your doctor. Measure the syrup with the special dose-measuring spoon or cup provided with the bottle and not a tablespoon.'),
(4157, 'Levosmo 20mg Syrup', 'Riasmo Lifesciences', 'Levosmo 20mg Syrup', 'Does Levosmo 20mg Syrup cause drowsiness?', 'Yes, Levosmo 20mg Syrup may cause drowsiness or dizziness, so operating any machinery or driving a car, or doing an activity that requires mental alertness should be avoided.'),
(4158, 'Levosmo 20mg Syrup', 'Riasmo Lifesciences', 'Levosmo 20mg Syrup', 'Does Levosmo 20mg Syrup cause dry mouth?', 'Yes, dry mouth may occur as a side effect. Frequent mouth rinses, good oral hygiene, increased water intake, and sugarless candy may help.'),
(4159, 'Levosmo 20mg Syrup', 'Riasmo Lifesciences', 'Levosmo 20mg Syrup', 'What is the best time to take Levosmo 20mg Syrup?', 'It is best to take Levosmo 20mg Syrup at night before going to bed since it can make you feel drowsy and can also reduce nighttime awakenings and irritability due to cough.'),
(4160, 'Levosneez 5mg Tablet', 'Kiraas Pharma (India) Pvt Ltd', 'Levosneez 5mg Tablet', 'Is Levosneez 5mg Tablet a steroid? What is it used for?', 'No, Levosneez 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4161, 'Levosneez 5mg Tablet', 'Kiraas Pharma (India) Pvt Ltd', 'Levosneez 5mg Tablet', 'Does Levosneez 5mg Tablet make you tired and drowsy?', 'Yes, Levosneez 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4162, 'Levosneez 5mg Tablet', 'Kiraas Pharma (India) Pvt Ltd', 'Levosneez 5mg Tablet', 'How long does it take for Levosneez 5mg Tablet to work?', 'Levosneez 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4163, 'Levosneez 5mg Tablet', 'Kiraas Pharma (India) Pvt Ltd', 'Levosneez 5mg Tablet', 'Can I take Levosneez 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosneez 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4164, 'Levosneez 5mg Tablet', 'Kiraas Pharma (India) Pvt Ltd', 'Levosneez 5mg Tablet', 'Is it safe to take Levosneez 5mg Tablet for a long time?', 'Levosneez 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosneez 5mg Tablet for only as long as you need it.'),
(4165, 'Levosneez 5mg Tablet', 'Kiraas Pharma (India) Pvt Ltd', 'Levosneez 5mg Tablet', 'For how long should I continue Levosneez 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosneez 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosneez 5mg Tablet'),
(4166, 'Levosnell 250mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 250mg Tablet', 'Is Levosnell 250mg Tablet safe?', 'Levosnell 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4167, 'Levosnell 250mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 250mg Tablet', 'What if I forget to take a dose of Levosnell 250mg Tablet?', 'If you forget a dose of Levosnell 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4168, 'Levosnell 250mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 250mg Tablet', 'Can the use of Levosnell 250mg Tablet cause diarrhea?', 'Yes, the use of Levosnell 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4169, 'Levosnell 250mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 250mg Tablet', 'Can I stop taking Levosnell 250mg Tablet when I feel better?', 'No, do not stop taking Levosnell 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosnell 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosnell 250mg Tablet in the dose and duration advised by the doctor.'),
(4170, 'Levosnell 250mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 250mg Tablet', 'Can the use of Levosnell 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosnell 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosnell 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4171, 'Levosnell 500mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 500mg Tablet', 'Is Levosnell 500mg Tablet safe?', 'Levosnell 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4172, 'Levosnell 500mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 500mg Tablet', 'What if I forget to take a dose of Levosnell 500mg Tablet?', 'If you forget a dose of Levosnell 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4173, 'Levosnell 500mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 500mg Tablet', 'Can the use of Levosnell 500mg Tablet cause diarrhea?', 'Yes, the use of Levosnell 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4174, 'Levosnell 500mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 500mg Tablet', 'Can I stop taking Levosnell 500mg Tablet when I feel better?', 'No, do not stop taking Levosnell 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosnell 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosnell 500mg Tablet in the dose and duration advised by the doctor.'),
(4175, 'Levosnell 500mg Tablet', 'Snell\'s Therapeutics', 'Levosnell 500mg Tablet', 'Can the use of Levosnell 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosnell 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosnell 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4176, 'Levosof 5mg Tablet', 'Soft Pharmaceuticals', 'Levosof 5mg Tablet', 'Is Levosof 5mg Tablet a steroid? What is it used for?', 'No, Levosof 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4177, 'Levosof 5mg Tablet', 'Soft Pharmaceuticals', 'Levosof 5mg Tablet', 'Does Levosof 5mg Tablet make you tired and drowsy?', 'Yes, Levosof 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4178, 'Levosof 5mg Tablet', 'Soft Pharmaceuticals', 'Levosof 5mg Tablet', 'How long does it take for Levosof 5mg Tablet to work?', 'Levosof 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4179, 'Levosof 5mg Tablet', 'Soft Pharmaceuticals', 'Levosof 5mg Tablet', 'Can I take Levosof 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosof 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4180, 'Levosof 5mg Tablet', 'Soft Pharmaceuticals', 'Levosof 5mg Tablet', 'Is it safe to take Levosof 5mg Tablet for a long time?', 'Levosof 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosof 5mg Tablet for only as long as you need it.'),
(4181, 'Levosof 5mg Tablet', 'Soft Pharmaceuticals', 'Levosof 5mg Tablet', 'For how long should I continue Levosof 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosof 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosof 5mg Tablet'),
(4182, 'Levosol 250mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 250mg Tablet', 'Is Levosol 250mg Tablet safe?', 'Levosol 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4183, 'Levosol 250mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 250mg Tablet', 'What if I forget to take a dose of Levosol 250mg Tablet?', 'If you forget a dose of Levosol 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4184, 'Levosol 250mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 250mg Tablet', 'Can the use of Levosol 250mg Tablet cause diarrhea?', 'Yes, the use of Levosol 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4185, 'Levosol 250mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 250mg Tablet', 'Can I stop taking Levosol 250mg Tablet when I feel better?', 'No, do not stop taking Levosol 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosol 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosol 250mg Tablet in the dose and duration advised by the doctor.'),
(4186, 'Levosol 250mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 250mg Tablet', 'Can the use of Levosol 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosol 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosol 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4187, 'Levosol 500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 500mg Tablet', 'Is Levosol 500mg Tablet safe?', 'Levosol 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4188, 'Levosol 500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 500mg Tablet', 'What if I forget to take a dose of Levosol 500mg Tablet?', 'If you forget a dose of Levosol 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4189, 'Levosol 500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 500mg Tablet', 'Can the use of Levosol 500mg Tablet cause diarrhea?', 'Yes, the use of Levosol 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4190, 'Levosol 500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 500mg Tablet', 'Can I stop taking Levosol 500mg Tablet when I feel better?', 'No, do not stop taking Levosol 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosol 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosol 500mg Tablet in the dose and duration advised by the doctor.'),
(4191, 'Levosol 500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol 500mg Tablet', 'Can the use of Levosol 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosol 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosol 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4192, 'Levosol OZ 250mg/500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levosol OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4193, 'Levosol OZ 250mg/500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol OZ 250mg/500mg Tablet', 'Can I stop taking Levosol OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levosol OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4194, 'Levosol OZ 250mg/500mg Tablet', 'Boffin Biotech Pvt Ltd', 'Levosol OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levosol OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4195, 'Levosole Respules', 'Zeelab Pharmacy Pvt Ltd', 'Levosole Respules', 'Q. Is Levosole Respules better than Albuterol?', 'Both Levosole Respules and Albuterol belong to the same class of medicines and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levosole Respules contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levosole Respules, being the active form may have lesser side effects when compared to the inactive form.'),
(4196, 'Levosole Respules', 'Zeelab Pharmacy Pvt Ltd', 'Levosole Respules', 'Q. What would happen if I take higher than the recommended dose of Levosole Respules?', 'Taking a higher than the recommended dose of Levosole Respules may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levosole Respules may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(4197, 'Levosole Respules', 'Zeelab Pharmacy Pvt Ltd', 'Levosole Respules', 'Q. Is it safe to take Levosole Respules if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levosole Respules, seek immediate medical advice.'),
(4198, 'Levosole Respules', 'Zeelab Pharmacy Pvt Ltd', 'Levosole Respules', 'Q. Being a diabetic, what should I remember while taking Levosole Respules?', 'Levosole Respules may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(4199, 'Levosole Respules', 'Zeelab Pharmacy Pvt Ltd', 'Levosole Respules', 'Q. I have started using Levosole Respules and I am experiencing headaches and shakiness. Is this because of Levosole Respules and will these go away?', 'Yes, it could be due to Levosole Respules. Feeling shaky is a common side effect of Levosole Respules which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(4200, 'Levosole Respules', 'Zeelab Pharmacy Pvt Ltd', 'Levosole Respules', 'Q. When should I take Levosole Respules?', 'Use Levosole Respules as and when you need it. Levosole Respules relieves the symptoms of asthma like coughing, shortness of breath and tightness in the chest. You can also take it to prevent asthma attacks in circumstances where you know it may occur (e.g., after strenuous exercise or unavoidable exposure to allergen).'),
(4201, 'Levosole Respules', 'Zeelab Pharmacy Pvt Ltd', 'Levosole Respules', 'Q. Can I smoke if I have been prescribed Levosole Respules?', 'No, you should not smoke while taking Levosole Respules. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(4202, 'Levosole-PP Respules (2.5 ml Each)', 'Zeelab Pharmacy Pvt Ltd', 'Levosole-PP Respules (2.5 ml Each)', 'Q. Are there any medicines which I should avoid while taking Levosole-PP Respules (2.5 ml Each)?', 'It is not recommended to use Levosole-PP Respules (2.5 ml Each) along with other medicines, such as anticholinergic, beta-adrenergic agents, beta-blockers, diuretics, digoxin, MAO inhibitors or anti-depressants.'),
(4203, 'Levosole-PP Respules (2.5 ml Each)', 'Zeelab Pharmacy Pvt Ltd', 'Levosole-PP Respules (2.5 ml Each)', 'Q. Will Levosole-PP Respules (2.5 ml Each) be more effective if taken in higher doses?', 'No, taking a higher than the recommended dose of this medicine will not make it more effective, rather can lead to increased side effects. If the symptoms do not get relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(4204, 'Levosole-PP Respules (2.5 ml Each)', 'Zeelab Pharmacy Pvt Ltd', 'Levosole-PP Respules (2.5 ml Each)', 'Q. Can the use of Levosole-PP Respules (2.5 ml Each) cause sleepiness or drowsiness?', 'Yes, Levosole-PP Respules (2.5 ml Each) may make you feel drowsy or sleepy. Avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(4205, 'Levosole-PP Respules (2.5 ml Each)', 'Zeelab Pharmacy Pvt Ltd', 'Levosole-PP Respules (2.5 ml Each)', 'Q. Can the use of Levosole-PP Respules (2.5 ml Each) cause dry mouth?', 'Yes, the use of Levosole-PP Respules (2.5 ml Each) can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(4206, 'Levosole-PP Respules (2.5 ml Each)', 'Zeelab Pharmacy Pvt Ltd', 'Levosole-PP Respules (2.5 ml Each)', 'Q. What are the instructions for storage and disposal of Levosole-PP Respules (2.5 ml Each)?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4207, 'Levosome Capsule SR', 'Caphap Pharmaceuticals', 'Levosome Capsule SR', 'What are the instructions for storage and disposal of Levosome Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4208, 'Levosome Capsule SR', 'Caphap Pharmaceuticals', 'Levosome Capsule SR', 'What is the best time to take Levosome Capsule SR?', 'Take Levosome Capsule SR exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(4209, 'Levosome Capsule SR', 'Caphap Pharmaceuticals', 'Levosome Capsule SR', 'What are the contraindications associated with the use of Levosome Capsule SR?', 'The use of Levosome Capsule SR should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(4210, 'Levosome Capsule SR', 'Caphap Pharmaceuticals', 'Levosome Capsule SR', 'Can the use of Levosome Capsule SR cause dizziness?', 'Yes, the use of Levosome Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is  better to rest for some time and resume once you feel better.'),
(4211, 'Levosome Capsule SR', 'Caphap Pharmaceuticals', 'Levosome Capsule SR', 'Does the use of Levosome Capsule SR lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Levosome Capsule SR may be associated with an increased risk for osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(4212, 'Levoson 250mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 250mg Tablet', 'Is Levoson 250mg Tablet safe?', 'Levoson 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4213, 'Levoson 250mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 250mg Tablet', 'What if I forget to take a dose of Levoson 250mg Tablet?', 'If you forget a dose of Levoson 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4214, 'Levoson 250mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 250mg Tablet', 'Can the use of Levoson 250mg Tablet cause diarrhea?', 'Yes, the use of Levoson 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4215, 'Levoson 250mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 250mg Tablet', 'Can I stop taking Levoson 250mg Tablet when I feel better?', 'No, do not stop taking Levoson 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoson 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoson 250mg Tablet in the dose and duration advised by the doctor.'),
(4216, 'Levoson 250mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 250mg Tablet', 'Can the use of Levoson 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoson 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoson 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4217, 'Levoson 500mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 500mg Tablet (Patson Laboratories Pvt  Ltd)', 'Is Levoson 500mg Tablet safe?', 'Levoson 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4218, 'Levoson 500mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 500mg Tablet (Patson Laboratories Pvt  Ltd)', 'What if I forget to take a dose of Levoson 500mg Tablet?', 'If you forget a dose of Levoson 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4219, 'Levoson 500mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 500mg Tablet (Patson Laboratories Pvt  Ltd)', 'Can the use of Levoson 500mg Tablet cause diarrhea?', 'Yes, the use of Levoson 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4220, 'Levoson 500mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 500mg Tablet (Patson Laboratories Pvt  Ltd)', 'Can I stop taking Levoson 500mg Tablet when I feel better?', 'No, do not stop taking Levoson 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoson 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoson 500mg Tablet in the dose and duration advised by the doctor.'),
(4221, 'Levoson 500mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 500mg Tablet (Patson Laboratories Pvt  Ltd)', 'Can the use of Levoson 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoson 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoson 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4222, 'Levoson 500mg Tablet', 'Jarson Pharmaceuticals', 'Levoson 500mg Tablet (Jarson Pharmaceuticals)', 'Is Levoson 500mg Tablet safe?', 'Levoson 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4223, 'Levoson 500mg Tablet', 'Jarson Pharmaceuticals', 'Levoson 500mg Tablet (Jarson Pharmaceuticals)', 'What if I forget to take a dose of Levoson 500mg Tablet?', 'If you forget a dose of Levoson 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4224, 'Levoson 500mg Tablet', 'Jarson Pharmaceuticals', 'Levoson 500mg Tablet (Jarson Pharmaceuticals)', 'Can the use of Levoson 500mg Tablet cause diarrhea?', 'Yes, the use of Levoson 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4225, 'Levoson 500mg Tablet', 'Jarson Pharmaceuticals', 'Levoson 500mg Tablet (Jarson Pharmaceuticals)', 'Can I stop taking Levoson 500mg Tablet when I feel better?', 'No, do not stop taking Levoson 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoson 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoson 500mg Tablet in the dose and duration advised by the doctor.'),
(4226, 'Levoson 500mg Tablet', 'Jarson Pharmaceuticals', 'Levoson 500mg Tablet (Jarson Pharmaceuticals)', 'Can the use of Levoson 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoson 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoson 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4227, 'Levoson 750mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 750mg Tablet', 'Is Levoson 750mg Tablet safe?', 'Levoson 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4228, 'Levoson 750mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 750mg Tablet', 'What if I forget to take a dose of Levoson 750mg Tablet?', 'If you forget a dose of Levoson 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4229, 'Levoson 750mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 750mg Tablet', 'Can the use of Levoson 750mg Tablet cause diarrhea?', 'Yes, the use of Levoson 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4230, 'Levoson 750mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 750mg Tablet', 'Can I stop taking Levoson 750mg Tablet when I feel better?', 'No, do not stop taking Levoson 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoson 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levoson 750mg Tablet in the dose and duration advised by the doctor.'),
(4231, 'Levoson 750mg Tablet', 'Patson Laboratories Pvt  Ltd', 'Levoson 750mg Tablet', 'Can the use of Levoson 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoson 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoson 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4232, 'Levosoul 5mg Tablet', 'Soulcure Pharmaceuticals', 'Levosoul 5mg Tablet', 'Is Levosoul 5mg Tablet a steroid? What is it used for?', 'No, Levosoul 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4233, 'Levosoul 5mg Tablet', 'Soulcure Pharmaceuticals', 'Levosoul 5mg Tablet', 'Does Levosoul 5mg Tablet make you tired and drowsy?', 'Yes, Levosoul 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4234, 'Levosoul 5mg Tablet', 'Soulcure Pharmaceuticals', 'Levosoul 5mg Tablet', 'How long does it take for Levosoul 5mg Tablet to work?', 'Levosoul 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4235, 'Levosoul 5mg Tablet', 'Soulcure Pharmaceuticals', 'Levosoul 5mg Tablet', 'Can I take Levosoul 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosoul 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4236, 'Levosoul 5mg Tablet', 'Soulcure Pharmaceuticals', 'Levosoul 5mg Tablet', 'Is it safe to take Levosoul 5mg Tablet for a long time?', 'Levosoul 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosoul 5mg Tablet for only as long as you need it.'),
(4237, 'Levosoul 5mg Tablet', 'Soulcure Pharmaceuticals', 'Levosoul 5mg Tablet', 'For how long should I continue Levosoul 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosoul 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosoul 5mg Tablet'),
(4238, 'Levosove-M Tablet', 'SAG Health Science Pvt Ltd', 'Levosove-M Tablet', 'What is Levosove-M Tablet?', 'Levosove-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4239, 'Levosove-M Tablet', 'SAG Health Science Pvt Ltd', 'Levosove-M Tablet', 'Can the use of Levosove-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosove-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4240, 'Levosove-M Tablet', 'SAG Health Science Pvt Ltd', 'Levosove-M Tablet', 'Can Levosove-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levosove-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4241, 'Levosove-M Tablet', 'SAG Health Science Pvt Ltd', 'Levosove-M Tablet', 'Can the use of Levosove-M Tablet cause dry mouth?', 'Yes, the use of Levosove-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4242, 'Levosove-M Tablet', 'SAG Health Science Pvt Ltd', 'Levosove-M Tablet', 'Can I drink alcohol while taking Levosove-M Tablet?', 'No, do not take alcohol while taking Levosove-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosove-M Tablet.'),
(4243, 'Levosove-M Tablet', 'SAG Health Science Pvt Ltd', 'Levosove-M Tablet', 'Will Levosove-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosove-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4244, 'Levosove-M Tablet', 'SAG Health Science Pvt Ltd', 'Levosove-M Tablet', 'What are the instructions for storage and disposal of Levosove-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4245, 'Levosoz 5mg Tablet', 'Sozin Flora Pharma Ltd', 'Levosoz 5mg Tablet', 'Is Levosoz 5mg Tablet a steroid? What is it used for?', 'No, Levosoz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4246, 'Levosoz 5mg Tablet', 'Sozin Flora Pharma Ltd', 'Levosoz 5mg Tablet', 'Does Levosoz 5mg Tablet make you tired and drowsy?', 'Yes, Levosoz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4247, 'Levosoz 5mg Tablet', 'Sozin Flora Pharma Ltd', 'Levosoz 5mg Tablet', 'How long does it take for Levosoz 5mg Tablet to work?', 'Levosoz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4248, 'Levosoz 5mg Tablet', 'Sozin Flora Pharma Ltd', 'Levosoz 5mg Tablet', 'Can I take Levosoz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosoz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4249, 'Levosoz 5mg Tablet', 'Sozin Flora Pharma Ltd', 'Levosoz 5mg Tablet', 'Is it safe to take Levosoz 5mg Tablet for a long time?', 'Levosoz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosoz 5mg Tablet for only as long as you need it.'),
(4250, 'Levosoz 5mg Tablet', 'Sozin Flora Pharma Ltd', 'Levosoz 5mg Tablet', 'For how long should I continue Levosoz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosoz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosoz 5mg Tablet'),
(4251, 'Levospa 500mg Tablet', 'SPA Biological Labs', 'Levospa 500mg Tablet', 'Is Levospa 500mg Tablet safe?', 'Levospa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4252, 'Levospa 500mg Tablet', 'SPA Biological Labs', 'Levospa 500mg Tablet', 'What if I forget to take a dose of Levospa 500mg Tablet?', 'If you forget a dose of Levospa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4253, 'Levospa 500mg Tablet', 'SPA Biological Labs', 'Levospa 500mg Tablet', 'Can the use of Levospa 500mg Tablet cause diarrhea?', 'Yes, the use of Levospa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4254, 'Levospa 500mg Tablet', 'SPA Biological Labs', 'Levospa 500mg Tablet', 'Can I stop taking Levospa 500mg Tablet when I feel better?', 'No, do not stop taking Levospa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levospa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levospa 500mg Tablet in the dose and duration advised by the doctor.'),
(4255, 'Levospa 500mg Tablet', 'SPA Biological Labs', 'Levospa 500mg Tablet', 'Can the use of Levospa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levospa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4256, 'Levospace 500 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 500 Tablet', 'Is Levospace 500 Tablet safe?', 'Levospace 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4257, 'Levospace 500 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 500 Tablet', 'What if I forget to take a dose of Levospace 500 Tablet?', 'If you forget a dose of Levospace 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4258, 'Levospace 500 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 500 Tablet', 'Can the use of Levospace 500 Tablet cause diarrhea?', 'Yes, the use of Levospace 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4259, 'Levospace 500 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 500 Tablet', 'Can I stop taking Levospace 500 Tablet when I feel better?', 'No, do not stop taking Levospace 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levospace 500 Tablet too early, the symptoms may return or worsen. Continue taking Levospace 500 Tablet in the dose and duration advised by the doctor.'),
(4260, 'Levospace 500 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 500 Tablet', 'Can the use of Levospace 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levospace 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospace 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4261, 'Levospace 750 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 750 Tablet', 'Is Levospace 750 Tablet safe?', 'Levospace 750 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4262, 'Levospace 750 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 750 Tablet', 'What if I forget to take a dose of Levospace 750 Tablet?', 'If you forget a dose of Levospace 750 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4263, 'Levospace 750 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 750 Tablet', 'Can the use of Levospace 750 Tablet cause diarrhea?', 'Yes, the use of Levospace 750 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4264, 'Levospace 750 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 750 Tablet', 'Can I stop taking Levospace 750 Tablet when I feel better?', 'No, do not stop taking Levospace 750 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levospace 750 Tablet too early, the symptoms may return or worsen. Continue taking Levospace 750 Tablet in the dose and duration advised by the doctor.'),
(4265, 'Levospace 750 Tablet', 'Biospace Lifesciences Pvt Ltd', 'Levospace 750 Tablet', 'Can the use of Levospace 750 Tablet increase the risk of muscle damage?', 'Yes, the use of Levospace 750 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospace 750 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4266, 'Levospan 250mg Tablet', 'Punjab Formulations Ltd', 'Levospan 250mg Tablet', 'Is Levospan 250mg Tablet safe?', 'Levospan 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4267, 'Levospan 250mg Tablet', 'Punjab Formulations Ltd', 'Levospan 250mg Tablet', 'What if I forget to take a dose of Levospan 250mg Tablet?', 'If you forget a dose of Levospan 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4268, 'Levospan 250mg Tablet', 'Punjab Formulations Ltd', 'Levospan 250mg Tablet', 'Can the use of Levospan 250mg Tablet cause diarrhea?', 'Yes, the use of Levospan 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4269, 'Levospan 250mg Tablet', 'Punjab Formulations Ltd', 'Levospan 250mg Tablet', 'Can I stop taking Levospan 250mg Tablet when I feel better?', 'No, do not stop taking Levospan 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levospan 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levospan 250mg Tablet in the dose and duration advised by the doctor.'),
(4270, 'Levospan 250mg Tablet', 'Punjab Formulations Ltd', 'Levospan 250mg Tablet', 'Can the use of Levospan 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levospan 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospan 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4271, 'Levospan 500mg Infusion', 'Pharmatech Healthcare', 'Levospan 500mg Infusion', 'Is Levospan 500mg Infusion safe?', 'Levospan 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4272, 'Levospan 500mg Infusion', 'Pharmatech Healthcare', 'Levospan 500mg Infusion', 'Can the use of Levospan 500mg Infusion cause diarrhea?', 'Yes, the use of Levospan 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4273, 'Levospan 500mg Infusion', 'Pharmatech Healthcare', 'Levospan 500mg Infusion', 'Can the use of Levospan 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levospan 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospan 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4274, 'Levospan 500mg Infusion', 'Pharmatech Healthcare', 'Levospan 500mg Infusion', 'How is Levospan 500mg Infusion administered?', 'Levospan 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levospan 500mg Infusion.'),
(4275, 'Levospan 500mg Infusion', 'Pharmatech Healthcare', 'Levospan 500mg Infusion', 'Is Levospan 500mg Infusion effective?', 'Levospan 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levospan 500mg Infusion too early, the symptoms may return or worsen.'),
(4276, 'Levospan 500mg Tablet', 'Punjab Formulations Ltd', 'Levospan 500mg Tablet', 'Is Levospan 500mg Tablet safe?', 'Levospan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4277, 'Levospan 500mg Tablet', 'Punjab Formulations Ltd', 'Levospan 500mg Tablet', 'What if I forget to take a dose of Levospan 500mg Tablet?', 'If you forget a dose of Levospan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4278, 'Levospan 500mg Tablet', 'Punjab Formulations Ltd', 'Levospan 500mg Tablet', 'Can the use of Levospan 500mg Tablet cause diarrhea?', 'Yes, the use of Levospan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4279, 'Levospan 500mg Tablet', 'Punjab Formulations Ltd', 'Levospan 500mg Tablet', 'Can I stop taking Levospan 500mg Tablet when I feel better?', 'No, do not stop taking Levospan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levospan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levospan 500mg Tablet in the dose and duration advised by the doctor.'),
(4280, 'Levospan 500mg Tablet', 'Punjab Formulations Ltd', 'Levospan 500mg Tablet', 'Can the use of Levospan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levospan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4281, 'Levospan OZ 250mg/500mg Tablet', 'Pharmatech Healthcare', 'Levospan OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levospan OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4282, 'Levospan OZ 250mg/500mg Tablet', 'Pharmatech Healthcare', 'Levospan OZ 250mg/500mg Tablet', 'Can I stop taking Levospan OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levospan OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4283, 'Levospan OZ 250mg/500mg Tablet', 'Pharmatech Healthcare', 'Levospan OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levospan OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4284, 'Levospec 500mg Tablet', 'Alphonso Pharmacia', 'Levospec 500mg Tablet', 'Is Levospec 500mg Tablet safe?', 'Levospec 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4285, 'Levospec 500mg Tablet', 'Alphonso Pharmacia', 'Levospec 500mg Tablet', 'What if I forget to take a dose of Levospec 500mg Tablet?', 'If you forget a dose of Levospec 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4286, 'Levospec 500mg Tablet', 'Alphonso Pharmacia', 'Levospec 500mg Tablet', 'Can the use of Levospec 500mg Tablet cause diarrhea?', 'Yes, the use of Levospec 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4287, 'Levospec 500mg Tablet', 'Alphonso Pharmacia', 'Levospec 500mg Tablet', 'Can I stop taking Levospec 500mg Tablet when I feel better?', 'No, do not stop taking Levospec 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levospec 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levospec 500mg Tablet in the dose and duration advised by the doctor.'),
(4288, 'Levospec 500mg Tablet', 'Alphonso Pharmacia', 'Levospec 500mg Tablet', 'Can the use of Levospec 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levospec 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospec 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4289, 'Levospeed-M Tablet', 'Speedcare Pharmaceutical Private Ltd', 'Levospeed-M Tablet', 'What is Levospeed-M Tablet?', 'Levospeed-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4290, 'Levospeed-M Tablet', 'Speedcare Pharmaceutical Private Ltd', 'Levospeed-M Tablet', 'Can the use of Levospeed-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levospeed-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4291, 'Levospeed-M Tablet', 'Speedcare Pharmaceutical Private Ltd', 'Levospeed-M Tablet', 'Can Levospeed-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levospeed-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4292, 'Levospeed-M Tablet', 'Speedcare Pharmaceutical Private Ltd', 'Levospeed-M Tablet', 'Can the use of Levospeed-M Tablet cause dry mouth?', 'Yes, the use of Levospeed-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4293, 'Levospeed-M Tablet', 'Speedcare Pharmaceutical Private Ltd', 'Levospeed-M Tablet', 'Can I drink alcohol while taking Levospeed-M Tablet?', 'No, do not take alcohol while taking Levospeed-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levospeed-M Tablet.'),
(4294, 'Levospeed-M Tablet', 'Speedcare Pharmaceutical Private Ltd', 'Levospeed-M Tablet', 'Will Levospeed-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levospeed-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4295, 'Levospeed-M Tablet', 'Speedcare Pharmaceutical Private Ltd', 'Levospeed-M Tablet', 'What are the instructions for storage and disposal of Levospeed-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4296, 'Levospi 500mg Tablet', 'Auspi Medicaments', 'Levospi 500mg Tablet', 'Is Levospi 500mg Tablet safe?', 'Levospi 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4297, 'Levospi 500mg Tablet', 'Auspi Medicaments', 'Levospi 500mg Tablet', 'What if I forget to take a dose of Levospi 500mg Tablet?', 'If you forget a dose of Levospi 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4298, 'Levospi 500mg Tablet', 'Auspi Medicaments', 'Levospi 500mg Tablet', 'Can the use of Levospi 500mg Tablet cause diarrhea?', 'Yes, the use of Levospi 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4299, 'Levospi 500mg Tablet', 'Auspi Medicaments', 'Levospi 500mg Tablet', 'Can I stop taking Levospi 500mg Tablet when I feel better?', 'No, do not stop taking Levospi 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levospi 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levospi 500mg Tablet in the dose and duration advised by the doctor.'),
(4300, 'Levospi 500mg Tablet', 'Auspi Medicaments', 'Levospi 500mg Tablet', 'Can the use of Levospi 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levospi 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levospi 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4301, 'Levospire-M Tablet', 'Noviara Health Care Private Limited', 'Levospire-M Tablet', 'What is Levospire-M Tablet?', 'Levospire-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4302, 'Levospire-M Tablet', 'Noviara Health Care Private Limited', 'Levospire-M Tablet', 'Can the use of Levospire-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levospire-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4303, 'Levospire-M Tablet', 'Noviara Health Care Private Limited', 'Levospire-M Tablet', 'Can Levospire-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levospire-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4304, 'Levospire-M Tablet', 'Noviara Health Care Private Limited', 'Levospire-M Tablet', 'Can the use of Levospire-M Tablet cause dry mouth?', 'Yes, the use of Levospire-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4305, 'Levospire-M Tablet', 'Noviara Health Care Private Limited', 'Levospire-M Tablet', 'Can I drink alcohol while taking Levospire-M Tablet?', 'No, do not take alcohol while taking Levospire-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levospire-M Tablet.'),
(4306, 'Levospire-M Tablet', 'Noviara Health Care Private Limited', 'Levospire-M Tablet', 'Will Levospire-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levospire-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4307, 'Levospire-M Tablet', 'Noviara Health Care Private Limited', 'Levospire-M Tablet', 'What are the instructions for storage and disposal of Levospire-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4308, 'Levosri 500mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levosri 500mg Tablet', 'Is Levosri 500mg Tablet safe?', 'Levosri 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4309, 'Levosri 500mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levosri 500mg Tablet', 'What if I forget to take a dose of Levosri 500mg Tablet?', 'If you forget a dose of Levosri 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4310, 'Levosri 500mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levosri 500mg Tablet', 'Can the use of Levosri 500mg Tablet cause diarrhea?', 'Yes, the use of Levosri 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4311, 'Levosri 500mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levosri 500mg Tablet', 'Can I stop taking Levosri 500mg Tablet when I feel better?', 'No, do not stop taking Levosri 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosri 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosri 500mg Tablet in the dose and duration advised by the doctor.'),
(4312, 'Levosri 500mg Tablet', 'Altar Healthcare Pvt Ltd', 'Levosri 500mg Tablet', 'Can the use of Levosri 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosri 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosri 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4313, 'Levosta 250mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 250mg Tablet', 'Is Levosta 250mg Tablet safe?', 'Levosta 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4314, 'Levosta 250mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 250mg Tablet', 'What if I forget to take a dose of Levosta 250mg Tablet?', 'If you forget a dose of Levosta 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4315, 'Levosta 250mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 250mg Tablet', 'Can the use of Levosta 250mg Tablet cause diarrhea?', 'Yes, the use of Levosta 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4316, 'Levosta 250mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 250mg Tablet', 'Can I stop taking Levosta 250mg Tablet when I feel better?', 'No, do not stop taking Levosta 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosta 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosta 250mg Tablet in the dose and duration advised by the doctor.'),
(4317, 'Levosta 250mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 250mg Tablet', 'Can the use of Levosta 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosta 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosta 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4318, 'Levosta 500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 500mg Tablet', 'Is Levosta 500mg Tablet safe?', 'Levosta 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4319, 'Levosta 500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 500mg Tablet', 'What if I forget to take a dose of Levosta 500mg Tablet?', 'If you forget a dose of Levosta 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4320, 'Levosta 500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 500mg Tablet', 'Can the use of Levosta 500mg Tablet cause diarrhea?', 'Yes, the use of Levosta 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4321, 'Levosta 500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 500mg Tablet', 'Can I stop taking Levosta 500mg Tablet when I feel better?', 'No, do not stop taking Levosta 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosta 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosta 500mg Tablet in the dose and duration advised by the doctor.'),
(4322, 'Levosta 500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 500mg Tablet', 'Can the use of Levosta 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosta 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosta 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4323, 'Levosta 750mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 750mg Tablet', 'Is Levosta 750mg Tablet safe?', 'Levosta 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4324, 'Levosta 750mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 750mg Tablet', 'What if I forget to take a dose of Levosta 750mg Tablet?', 'If you forget a dose of Levosta 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4325, 'Levosta 750mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 750mg Tablet', 'Can the use of Levosta 750mg Tablet cause diarrhea?', 'Yes, the use of Levosta 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4326, 'Levosta 750mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 750mg Tablet', 'Can I stop taking Levosta 750mg Tablet when I feel better?', 'No, do not stop taking Levosta 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosta 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levosta 750mg Tablet in the dose and duration advised by the doctor.'),
(4327, 'Levosta 750mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta 750mg Tablet', 'Can the use of Levosta 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosta 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosta 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4328, 'Levosta OZ Syrup', 'Mestra Pharma Pvt Ltd', 'Levosta OZ Syrup', 'What if I don\'t get better after using Levosta OZ Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4329, 'Levosta OZ Syrup', 'Mestra Pharma Pvt Ltd', 'Levosta OZ Syrup', 'Can I stop taking Levosta OZ Syrup when I feel better?', 'No, do not stop taking Levosta OZ Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4330, 'Levosta OZ Syrup', 'Mestra Pharma Pvt Ltd', 'Levosta OZ Syrup', 'What if I miss my dose?', 'Take Levosta OZ Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4331, 'Levostal 250mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 250mg Tablet', 'Is Levostal 250mg Tablet safe?', 'Levostal 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4332, 'Levostal 250mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 250mg Tablet', 'What if I forget to take a dose of Levostal 250mg Tablet?', 'If you forget a dose of Levostal 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4333, 'Levostal 250mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 250mg Tablet', 'Can the use of Levostal 250mg Tablet cause diarrhea?', 'Yes, the use of Levostal 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4334, 'Levostal 250mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 250mg Tablet', 'Can I stop taking Levostal 250mg Tablet when I feel better?', 'No, do not stop taking Levostal 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostal 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levostal 250mg Tablet in the dose and duration advised by the doctor.'),
(4335, 'Levostal 250mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 250mg Tablet', 'Can the use of Levostal 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostal 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostal 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4336, 'Levostal 500mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 500mg Tablet', 'Is Levostal 500mg Tablet safe?', 'Levostal 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4337, 'Levostal 500mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 500mg Tablet', 'What if I forget to take a dose of Levostal 500mg Tablet?', 'If you forget a dose of Levostal 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4338, 'Levostal 500mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 500mg Tablet', 'Can the use of Levostal 500mg Tablet cause diarrhea?', 'Yes, the use of Levostal 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4339, 'Levostal 500mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 500mg Tablet', 'Can I stop taking Levostal 500mg Tablet when I feel better?', 'No, do not stop taking Levostal 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostal 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levostal 500mg Tablet in the dose and duration advised by the doctor.'),
(4340, 'Levostal 500mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 500mg Tablet', 'Can the use of Levostal 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostal 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostal 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4341, 'Levostal 750mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 750mg Tablet', 'Is Levostal 750mg Tablet safe?', 'Levostal 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4342, 'Levostal 750mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 750mg Tablet', 'What if I forget to take a dose of Levostal 750mg Tablet?', 'If you forget a dose of Levostal 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4343, 'Levostal 750mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 750mg Tablet', 'Can the use of Levostal 750mg Tablet cause diarrhea?', 'Yes, the use of Levostal 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4344, 'Levostal 750mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 750mg Tablet', 'Can I stop taking Levostal 750mg Tablet when I feel better?', 'No, do not stop taking Levostal 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostal 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levostal 750mg Tablet in the dose and duration advised by the doctor.'),
(4345, 'Levostal 750mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Levostal 750mg Tablet', 'Can the use of Levostal 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostal 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostal 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4346, 'Levostan 500mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 500mg Tablet', 'Q. Is Levostan 500mg Tablet safe?', 'Levostan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4347, 'Levostan 500mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 500mg Tablet', 'Q. What if I forget to take a dose of Levostan 500mg Tablet?', 'If you forget a dose of Levostan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4348, 'Levostan 500mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 500mg Tablet', 'Q. Can the use of Levostan 500mg Tablet cause diarrhea?', 'Yes, the use of Levostan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4349, 'Levostan 500mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 500mg Tablet', 'Q. Can I stop taking Levostan 500mg Tablet when I feel better?', 'No, do not stop taking Levostan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levostan 500mg Tablet in the dose and duration advised by the doctor.'),
(4350, 'Levostan 500mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 500mg Tablet', 'Q. Can the use of Levostan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4351, 'Levostan 750mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 750mg Tablet', 'Is Levostan 750mg Tablet safe?', 'Levostan 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4352, 'Levostan 750mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 750mg Tablet', 'What if I forget to take a dose of Levostan 750mg Tablet?', 'If you forget a dose of Levostan 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4353, 'Levostan 750mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 750mg Tablet', 'Can the use of Levostan 750mg Tablet cause diarrhea?', 'Yes, the use of Levostan 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4354, 'Levostan 750mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 750mg Tablet', 'Can I stop taking Levostan 750mg Tablet when I feel better?', 'No, do not stop taking Levostan 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostan 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levostan 750mg Tablet in the dose and duration advised by the doctor.'),
(4355, 'Levostan 750mg Tablet', 'Standard Remedies Pvt Ltd', 'Levostan 750mg Tablet', 'Can the use of Levostan 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostan 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostan 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4356, 'Levostand 250mg Tablet', 'Mankind Pharma Ltd', 'Levostand 250mg Tablet', 'Is Levostand 250mg Tablet safe?', 'Levostand 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4357, 'Levostand 250mg Tablet', 'Mankind Pharma Ltd', 'Levostand 250mg Tablet', 'What if I forget to take a dose of Levostand 250mg Tablet?', 'If you forget a dose of Levostand 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4358, 'Levostand 250mg Tablet', 'Mankind Pharma Ltd', 'Levostand 250mg Tablet', 'Can the use of Levostand 250mg Tablet cause diarrhea?', 'Yes, the use of Levostand 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4359, 'Levostand 250mg Tablet', 'Mankind Pharma Ltd', 'Levostand 250mg Tablet', 'Can I stop taking Levostand 250mg Tablet when I feel better?', 'No, do not stop taking Levostand 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostand 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levostand 250mg Tablet in the dose and duration advised by the doctor.'),
(4360, 'Levostand 250mg Tablet', 'Mankind Pharma Ltd', 'Levostand 250mg Tablet', 'Can the use of Levostand 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostand 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostand 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4361, 'Levostand 500mg Tablet', 'Mankind Pharma Ltd', 'Levostand 500mg Tablet', 'Is Levostand 500mg Tablet safe?', 'Levostand 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4362, 'Levostand 500mg Tablet', 'Mankind Pharma Ltd', 'Levostand 500mg Tablet', 'What if I forget to take a dose of Levostand 500mg Tablet?', 'If you forget a dose of Levostand 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4363, 'Levostand 500mg Tablet', 'Mankind Pharma Ltd', 'Levostand 500mg Tablet', 'Can the use of Levostand 500mg Tablet cause diarrhea?', 'Yes, the use of Levostand 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4364, 'Levostand 500mg Tablet', 'Mankind Pharma Ltd', 'Levostand 500mg Tablet', 'Can I stop taking Levostand 500mg Tablet when I feel better?', 'No, do not stop taking Levostand 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostand 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levostand 500mg Tablet in the dose and duration advised by the doctor.'),
(4365, 'Levostand 500mg Tablet', 'Mankind Pharma Ltd', 'Levostand 500mg Tablet', 'Can the use of Levostand 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostand 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostand 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4366, 'Levosta-OZ 250mg/500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta-OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levosta-OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4367, 'Levosta-OZ 250mg/500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta-OZ 250mg/500mg Tablet', 'Can I stop taking Levosta-OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levosta-OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4368, 'Levosta-OZ 250mg/500mg Tablet', 'Mestra Pharma Pvt Ltd', 'Levosta-OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levosta-OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4369, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'How does Levostar 1mg Tablet work?', 'Levostar 1mg Tablet works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levostar 1mg Tablet helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(4370, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'How should I take Levostar 1mg Tablet?', 'Levostar 1mg Tablet should be taken in the dose and duration advised by your doctor. Levostar 1mg Tablet can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levostar 1mg Tablet just before bedtime with a glass of water.'),
(4371, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'What if I forget to take a dose of Levostar 1mg Tablet?', 'If you forget a dose of Levostar 1mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4372, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'What would happen if I take higher than the recommended dose of Levostar 1mg Tablet?', 'Taking a higher than the recommended dose of Levostar 1mg Tablet may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levostar 1mg Tablet may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(4373, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'Is Levostar 1mg Tablet better than Albuterol?', 'Both Levostar 1mg Tablet and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levostar 1mg Tablet contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levostar 1mg Tablet, being the active form may have lesser side effects when compared to the inactive form.'),
(4374, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'Is it safe to take Levostar 1mg Tablet if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levostar 1mg Tablet, seek immediate medical advice.'),
(4375, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'Being a diabetic, what should I remember while taking Levostar 1mg Tablet?', 'Levostar 1mg Tablet may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(4376, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'I have started using Levostar 1mg Tablet and I am experiencing headaches and shakiness. Is this because of Levostar 1mg Tablet and will these go away?', 'Yes, it could be due to Levostar 1mg Tablet. Feeling shaky is a common side effect of Levostar 1mg Tablet which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(4377, 'Levostar 1mg Tablet', 'Grievers Remedies', 'Levostar 1mg Tablet', 'Can I smoke if I have been prescribed Levostar 1mg Tablet?', 'No, you should not smoke while taking Levostar 1mg Tablet. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(4378, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'How does Levostar 2mg Tablet work?', 'Levostar 2mg Tablet works by widening the air passages in your lungs so that air can flow into your lungs more freely. For people with asthma, Levostar 2mg Tablet helps to relieve symptoms such as coughing, wheezing and shortness of breath, particularly at night.'),
(4379, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'How should I take Levostar 2mg Tablet?', 'Levostar 2mg Tablet should be taken in the dose and duration advised by your doctor. Levostar 2mg Tablet can be taken with or without food, preferably at the same time each day to reduce the chances of a missed dose. However, it is advisable to take Levostar 2mg Tablet just before bedtime with a glass of water.'),
(4380, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'What if I forget to take a dose of Levostar 2mg Tablet?', 'If you forget a dose of Levostar 2mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4381, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'What would happen if I take higher than the recommended dose of Levostar 2mg Tablet?', 'Taking a higher than the recommended dose of Levostar 2mg Tablet may cause seizures, chest pain, nervousness, headache, dry mouth, nausea, dizziness and lack of energy. High doses of Levostar 2mg Tablet may also cause fast, irregular or pounding heartbeat, uncontrollable shaking of any part of the body and difficulty falling asleep or staying asleep. In any such case, seek immediate medical attention.'),
(4382, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'Is Levostar 2mg Tablet better than Albuterol?', 'Both Levostar 2mg Tablet and Albuterol belong to the same class of medicines. and are used for quick relief in symptoms of asthma and chronic obstructive pulmonary disease (COPD) such as wheezing, shortness of breath and coughing. Levostar 2mg Tablet contains the active form of Albuterol known as R-albuterol. On the other hand, Albuterol contains a mixture of equal amounts of R-albuterol (active form) and S-albuterol (inactive form of Albuterol). Levostar 2mg Tablet, being the active form may have lesser side effects when compared to the inactive form.'),
(4383, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'Is it safe to take Levostar 2mg Tablet if I have heart disease?', 'Yes, it is considered safe, but its use depends on the severity of your heart problem. If you experience chest pain or any other symptom of worsening heart disease while taking Levostar 2mg Tablet, seek immediate medical advice.'),
(4384, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'Being a diabetic, what should I remember while taking Levostar 2mg Tablet?', 'Levostar 2mg Tablet may cause blood sugar levels to rise. Therefore, your doctor may adjust your dose of insulin or antidiabetic medicines. Keep a regular check on your blood glucose levels and do not miss any dose. Consult your doctor if you experience a sudden rise in blood sugar levels.'),
(4385, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'I have started using Levostar 2mg Tablet and I am experiencing headaches and shakiness. Is this because of Levostar 2mg Tablet and will these go away?', 'Yes, it could be due to Levostar 2mg Tablet. Feeling shaky is a common side effect of Levostar 2mg Tablet which usually goes away after some time. For headaches, drink plenty of water, get sufficient rest and avoid alcohol. Usually, headaches go away after a week. If they persist for a long time, contact your doctor.'),
(4386, 'Levostar 2mg Tablet', 'Grievers Remedies', 'Levostar 2mg Tablet', 'Can I smoke if I have been prescribed Levostar 2mg Tablet?', 'No, you should not smoke while taking Levostar 2mg Tablet. Smoking irritates the lungs. The medicine may make breathing more difficult, especially in patients who have asthma. Take advice from your doctor if you are finding it hard to avoid smoking.'),
(4387, 'Levostar 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar 5mg Tablet', 'Is Levostar 5mg Tablet a steroid? What is it used for?', 'No, Levostar 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4388, 'Levostar 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar 5mg Tablet', 'Does Levostar 5mg Tablet make you tired and drowsy?', 'Yes, Levostar 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4389, 'Levostar 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar 5mg Tablet', 'How long does it take for Levostar 5mg Tablet to work?', 'Levostar 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4390, 'Levostar 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar 5mg Tablet', 'Can I take Levostar 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levostar 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4391, 'Levostar 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar 5mg Tablet', 'Is it safe to take Levostar 5mg Tablet for a long time?', 'Levostar 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levostar 5mg Tablet for only as long as you need it.'),
(4392, 'Levostar 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar 5mg Tablet', 'For how long should I continue Levostar 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levostar 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levostar 5mg Tablet'),
(4393, 'Levostar D 5mg/10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar D 5mg/10mg Tablet', 'Q. Can the use of Levostar D 5mg/10mg Tablet cause sleepiness or drowsiness?', 'Yes, Levostar D 5mg/10mg Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(4394, 'Levostar D 5mg/10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar D 5mg/10mg Tablet', 'Q. Would a higher than the recommended dose of Levostar D 5mg/10mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(4395, 'Levostar D 5mg/10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar D 5mg/10mg Tablet', 'Q. Can I breastfeed while taking Levostar D 5mg/10mg Tablet?', 'No, you should not breastfeed while using Levostar D 5mg/10mg Tablet. This medicine can pass into your breast milk and may harm your baby. Inform your doctor that you are breastfeeding a baby if the doctor prescribes this medicine.'),
(4396, 'Levostar D 5mg/10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar D 5mg/10mg Tablet', 'Q. Can I take Levostar D 5mg/10mg Tablet with high blood pressure?', 'Levostar D 5mg/10mg Tablet can raise blood pressure or stimulate fast heart rate.  Anyone with heart conditions or high blood pressure, before taking this medicine, should consult their doctor to see if they can safely take such medicines.'),
(4397, 'Levostar D 5mg/10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar D 5mg/10mg Tablet', 'Q. Can the use of Levostar D 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levostar D 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(4398, 'Levostar D 5mg/10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar D 5mg/10mg Tablet', 'Q. What are the instructions for the storage and disposal of Levostar D 5mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4399, 'Levostar R 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar R 10mg Tablet', 'Is Levostar R 10mg Tablet a steroid?', 'No, Levostar R 10mg Tablet is not a steroid. It belongs to a group of medicines called antihistamines. Levostar R 10mg Tablet is an anti allergy medicine that decreases production of the chemical histamine which is responsible for initiating allergic responses.'),
(4400, 'Levostar R 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar R 10mg Tablet', 'How does Levostar R 10mg Tablet work?', 'Levostar R 10mg Tablet belongs to a group of medicines called antihistamines. It is an anti allergy medicine that decreases production of the chemical histamine which is responsible for initiating allergic responses.'),
(4401, 'Levostar R 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar R 10mg Tablet', 'Is Levostar R 10mg Tablet over-the-counter?', 'Yes, Levostar R 10mg Tablet may be available over-the-counter. Patients should follow the advice of the doctor regarding its use.'),
(4402, 'Levostar R 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Levostar R 10mg Tablet', 'Is Levostar R 10mg Tablet an antibiotic?', 'No, Levostar R 10mg Tablet is not an antibiotic. It belongs to a group of medicines called antihistamines. Levostar R 10mg Tablet is an anti allergy medicine that decreases production of the chemical histamine which is responsible for initiating allergic responses.'),
(4403, 'Levostar Tablet', 'Starlance Pharmaceuticals', 'Levostar Tablet', 'Is Levostar Tablet a steroid? What is it used for?', 'No, Levostar Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4404, 'Levostar Tablet', 'Starlance Pharmaceuticals', 'Levostar Tablet', 'Does Levostar Tablet make you tired and drowsy?', 'Yes, Levostar Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4405, 'Levostar Tablet', 'Starlance Pharmaceuticals', 'Levostar Tablet', 'How long does it take for Levostar Tablet to work?', 'Levostar Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4406, 'Levostar Tablet', 'Starlance Pharmaceuticals', 'Levostar Tablet', 'Can I take Levostar Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levostar Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4407, 'Levostar Tablet', 'Starlance Pharmaceuticals', 'Levostar Tablet', 'Is it safe to take Levostar Tablet for a long time?', 'Levostar Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levostar Tablet for only as long as you need it.'),
(4408, 'Levostar Tablet', 'Starlance Pharmaceuticals', 'Levostar Tablet', 'For how long should I continue Levostar Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levostar Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levostar Tablet'),
(4409, 'Levostat 500mg Tablet', 'Organic Laboratories', 'Levostat 500mg Tablet (Organic Laboratories)', 'Is Levostat 500mg Tablet safe?', 'Levostat 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4410, 'Levostat 500mg Tablet', 'Organic Laboratories', 'Levostat 500mg Tablet (Organic Laboratories)', 'What if I forget to take a dose of Levostat 500mg Tablet?', 'If you forget a dose of Levostat 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4411, 'Levostat 500mg Tablet', 'Organic Laboratories', 'Levostat 500mg Tablet (Organic Laboratories)', 'Can the use of Levostat 500mg Tablet cause diarrhea?', 'Yes, the use of Levostat 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4412, 'Levostat 500mg Tablet', 'Organic Laboratories', 'Levostat 500mg Tablet (Organic Laboratories)', 'Can I stop taking Levostat 500mg Tablet when I feel better?', 'No, do not stop taking Levostat 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostat 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levostat 500mg Tablet in the dose and duration advised by the doctor.'),
(4413, 'Levostat 500mg Tablet', 'Organic Laboratories', 'Levostat 500mg Tablet (Organic Laboratories)', 'Can the use of Levostat 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostat 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostat 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4414, 'Levostat 500mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levostat 500mg Tablet (Grapple Life Sciences Pvt Ltd)', 'Is Levostat 500mg Tablet safe?', 'Levostat 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4415, 'Levostat 500mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levostat 500mg Tablet (Grapple Life Sciences Pvt Ltd)', 'What if I forget to take a dose of Levostat 500mg Tablet?', 'If you forget a dose of Levostat 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4416, 'Levostat 500mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levostat 500mg Tablet (Grapple Life Sciences Pvt Ltd)', 'Can the use of Levostat 500mg Tablet cause diarrhea?', 'Yes, the use of Levostat 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4417, 'Levostat 500mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levostat 500mg Tablet (Grapple Life Sciences Pvt Ltd)', 'Can I stop taking Levostat 500mg Tablet when I feel better?', 'No, do not stop taking Levostat 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostat 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levostat 500mg Tablet in the dose and duration advised by the doctor.'),
(4418, 'Levostat 500mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levostat 500mg Tablet (Grapple Life Sciences Pvt Ltd)', 'Can the use of Levostat 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostat 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostat 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4419, 'Levostat 5mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat 5mg Tablet', 'Is Levostat 5mg Tablet a steroid? What is it used for?', 'No, Levostat 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4420, 'Levostat 5mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat 5mg Tablet', 'Does Levostat 5mg Tablet make you tired and drowsy?', 'Yes, Levostat 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4421, 'Levostat 5mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat 5mg Tablet', 'How long does it take for Levostat 5mg Tablet to work?', 'Levostat 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4422, 'Levostat 5mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat 5mg Tablet', 'Can I take Levostat 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levostat 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4423, 'Levostat 5mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat 5mg Tablet', 'Is it safe to take Levostat 5mg Tablet for a long time?', 'Levostat 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levostat 5mg Tablet for only as long as you need it.'),
(4424, 'Levostat 5mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat 5mg Tablet', 'For how long should I continue Levostat 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levostat 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levostat 5mg Tablet'),
(4425, 'Levostat 750mg Tablet', 'Organic Laboratories', 'Levostat 750mg Tablet', 'Is Levostat 750mg Tablet safe?', 'Levostat 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4426, 'Levostat 750mg Tablet', 'Organic Laboratories', 'Levostat 750mg Tablet', 'What if I forget to take a dose of Levostat 750mg Tablet?', 'If you forget a dose of Levostat 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4427, 'Levostat 750mg Tablet', 'Organic Laboratories', 'Levostat 750mg Tablet', 'Can the use of Levostat 750mg Tablet cause diarrhea?', 'Yes, the use of Levostat 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4428, 'Levostat 750mg Tablet', 'Organic Laboratories', 'Levostat 750mg Tablet', 'Can I stop taking Levostat 750mg Tablet when I feel better?', 'No, do not stop taking Levostat 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostat 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levostat 750mg Tablet in the dose and duration advised by the doctor.'),
(4429, 'Levostat 750mg Tablet', 'Organic Laboratories', 'Levostat 750mg Tablet', 'Can the use of Levostat 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostat 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostat 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4430, 'Levostat M 5mg/10mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat M 5mg/10mg Tablet', 'What is Levostat M 5mg/10mg Tablet?', 'Levostat M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4431, 'Levostat M 5mg/10mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat M 5mg/10mg Tablet', 'Can the use of Levostat M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levostat M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4432, 'Levostat M 5mg/10mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat M 5mg/10mg Tablet', 'Can Levostat M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levostat M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4433, 'Levostat M 5mg/10mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat M 5mg/10mg Tablet', 'Can the use of Levostat M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levostat M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4434, 'Levostat M 5mg/10mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levostat M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levostat M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levostat M 5mg/10mg Tablet.'),
(4435, 'Levostat M 5mg/10mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat M 5mg/10mg Tablet', 'Will Levostat M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levostat M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4436, 'Levostat M 5mg/10mg Tablet', 'Alpha and Omega Therapeutics Pvt. Ltd.', 'Levostat M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levostat M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4437, 'Levosten 500 Tablet', 'Stensa Life Sciences', 'Levosten 500 Tablet', 'Is Levosten 500 Tablet safe?', 'Levosten 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4438, 'Levosten 500 Tablet', 'Stensa Life Sciences', 'Levosten 500 Tablet', 'What if I forget to take a dose of Levosten 500 Tablet?', 'If you forget a dose of Levosten 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4439, 'Levosten 500 Tablet', 'Stensa Life Sciences', 'Levosten 500 Tablet', 'Can the use of Levosten 500 Tablet cause diarrhea?', 'Yes, the use of Levosten 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4440, 'Levosten 500 Tablet', 'Stensa Life Sciences', 'Levosten 500 Tablet', 'Can I stop taking Levosten 500 Tablet when I feel better?', 'No, do not stop taking Levosten 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosten 500 Tablet too early, the symptoms may return or worsen. Continue taking Levosten 500 Tablet in the dose and duration advised by the doctor.'),
(4441, 'Levosten 500 Tablet', 'Stensa Life Sciences', 'Levosten 500 Tablet', 'Can the use of Levosten 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levosten 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosten 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4442, 'Levosten 5mg Tablet', 'Kingsmed Pharma', 'Levosten 5mg Tablet', 'Is Levosten 5mg Tablet a steroid? What is it used for?', 'No, Levosten 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4443, 'Levosten 5mg Tablet', 'Kingsmed Pharma', 'Levosten 5mg Tablet', 'Does Levosten 5mg Tablet make you tired and drowsy?', 'Yes, Levosten 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4444, 'Levosten 5mg Tablet', 'Kingsmed Pharma', 'Levosten 5mg Tablet', 'How long does it take for Levosten 5mg Tablet to work?', 'Levosten 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4445, 'Levosten 5mg Tablet', 'Kingsmed Pharma', 'Levosten 5mg Tablet', 'Can I take Levosten 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosten 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4446, 'Levosten 5mg Tablet', 'Kingsmed Pharma', 'Levosten 5mg Tablet', 'Is it safe to take Levosten 5mg Tablet for a long time?', 'Levosten 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosten 5mg Tablet for only as long as you need it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4447, 'Levosten 5mg Tablet', 'Kingsmed Pharma', 'Levosten 5mg Tablet', 'For how long should I continue Levosten 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosten 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosten 5mg Tablet'),
(4448, 'Levoster 5 Tablet', 'Stermed India', 'Levoster 5 Tablet', 'Is Levoster 5 Tablet a steroid? What is it used for?', 'No, Levoster 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4449, 'Levoster 5 Tablet', 'Stermed India', 'Levoster 5 Tablet', 'Does Levoster 5 Tablet make you tired and drowsy?', 'Yes, Levoster 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4450, 'Levoster 5 Tablet', 'Stermed India', 'Levoster 5 Tablet', 'How long does it take for Levoster 5 Tablet to work?', 'Levoster 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4451, 'Levoster 5 Tablet', 'Stermed India', 'Levoster 5 Tablet', 'Can I take Levoster 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoster 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4452, 'Levoster 5 Tablet', 'Stermed India', 'Levoster 5 Tablet', 'Is it safe to take Levoster 5 Tablet for a long time?', 'Levoster 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoster 5 Tablet for only as long as you need it.'),
(4453, 'Levoster 5 Tablet', 'Stermed India', 'Levoster 5 Tablet', 'For how long should I continue Levoster 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoster 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoster 5 Tablet'),
(4454, 'Levostet 500mg Tablet', 'Signity Pharmaceuticals Pvt Ltd', 'Levostet 500mg Tablet', 'Is Levostet 500mg Tablet safe?', 'Levostet 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4455, 'Levostet 500mg Tablet', 'Signity Pharmaceuticals Pvt Ltd', 'Levostet 500mg Tablet', 'What if I forget to take a dose of Levostet 500mg Tablet?', 'If you forget a dose of Levostet 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4456, 'Levostet 500mg Tablet', 'Signity Pharmaceuticals Pvt Ltd', 'Levostet 500mg Tablet', 'Can the use of Levostet 500mg Tablet cause diarrhea?', 'Yes, the use of Levostet 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4457, 'Levostet 500mg Tablet', 'Signity Pharmaceuticals Pvt Ltd', 'Levostet 500mg Tablet', 'Can I stop taking Levostet 500mg Tablet when I feel better?', 'No, do not stop taking Levostet 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostet 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levostet 500mg Tablet in the dose and duration advised by the doctor.'),
(4458, 'Levostet 500mg Tablet', 'Signity Pharmaceuticals Pvt Ltd', 'Levostet 500mg Tablet', 'Can the use of Levostet 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostet 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostet 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4459, 'Levosteth 500mg Tablet', 'Stetho Pharma', 'Levosteth 500mg Tablet', 'Q. Is Levosteth 500mg Tablet safe?', 'Levosteth 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4460, 'Levosteth 500mg Tablet', 'Stetho Pharma', 'Levosteth 500mg Tablet', 'Q. What if I forget to take a dose of Levosteth 500mg Tablet?', 'If you forget a dose of Levosteth 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4461, 'Levosteth 500mg Tablet', 'Stetho Pharma', 'Levosteth 500mg Tablet', 'Q. Can the use of Levosteth 500mg Tablet cause diarrhea?', 'Yes, the use of Levosteth 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4462, 'Levosteth 500mg Tablet', 'Stetho Pharma', 'Levosteth 500mg Tablet', 'Q. Can I stop taking Levosteth 500mg Tablet when I feel better?', 'No, do not stop taking Levosteth 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosteth 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosteth 500mg Tablet in the dose and duration advised by the doctor.'),
(4463, 'Levosteth 500mg Tablet', 'Stetho Pharma', 'Levosteth 500mg Tablet', 'Q. Can the use of Levosteth 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosteth 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosteth 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4464, 'Levosteth 750mg Tablet', 'Stetho Pharma', 'Levosteth 750mg Tablet', 'Is Levosteth 750mg Tablet safe?', 'Levosteth 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4465, 'Levosteth 750mg Tablet', 'Stetho Pharma', 'Levosteth 750mg Tablet', 'What if I forget to take a dose of Levosteth 750mg Tablet?', 'If you forget a dose of Levosteth 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4466, 'Levosteth 750mg Tablet', 'Stetho Pharma', 'Levosteth 750mg Tablet', 'Can the use of Levosteth 750mg Tablet cause diarrhea?', 'Yes, the use of Levosteth 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4467, 'Levosteth 750mg Tablet', 'Stetho Pharma', 'Levosteth 750mg Tablet', 'Can I stop taking Levosteth 750mg Tablet when I feel better?', 'No, do not stop taking Levosteth 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosteth 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levosteth 750mg Tablet in the dose and duration advised by the doctor.'),
(4468, 'Levosteth 750mg Tablet', 'Stetho Pharma', 'Levosteth 750mg Tablet', 'Can the use of Levosteth 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosteth 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosteth 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4469, 'Levostif 500mg Tablet', 'Norvick Lifesciences', 'Levostif 500mg Tablet', 'Is Levostif 500mg Tablet safe?', 'Levostif 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4470, 'Levostif 500mg Tablet', 'Norvick Lifesciences', 'Levostif 500mg Tablet', 'What if I forget to take a dose of Levostif 500mg Tablet?', 'If you forget a dose of Levostif 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4471, 'Levostif 500mg Tablet', 'Norvick Lifesciences', 'Levostif 500mg Tablet', 'Can the use of Levostif 500mg Tablet cause diarrhea?', 'Yes, the use of Levostif 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4472, 'Levostif 500mg Tablet', 'Norvick Lifesciences', 'Levostif 500mg Tablet', 'Can I stop taking Levostif 500mg Tablet when I feel better?', 'No, do not stop taking Levostif 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levostif 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levostif 500mg Tablet in the dose and duration advised by the doctor.'),
(4473, 'Levostif 500mg Tablet', 'Norvick Lifesciences', 'Levostif 500mg Tablet', 'Can the use of Levostif 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levostif 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levostif 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4474, 'Levostil 5mg Tablet', 'Watran Pharmaceuticals Pvt. Ltd.', 'Levostil 5mg Tablet', 'Is Levostil 5mg Tablet a steroid? What is it used for?', 'No, Levostil 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4475, 'Levostil 5mg Tablet', 'Watran Pharmaceuticals Pvt. Ltd.', 'Levostil 5mg Tablet', 'Does Levostil 5mg Tablet make you tired and drowsy?', 'Yes, Levostil 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4476, 'Levostil 5mg Tablet', 'Watran Pharmaceuticals Pvt. Ltd.', 'Levostil 5mg Tablet', 'How long does it take for Levostil 5mg Tablet to work?', 'Levostil 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4477, 'Levostil 5mg Tablet', 'Watran Pharmaceuticals Pvt. Ltd.', 'Levostil 5mg Tablet', 'Can I take Levostil 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levostil 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4478, 'Levostil 5mg Tablet', 'Watran Pharmaceuticals Pvt. Ltd.', 'Levostil 5mg Tablet', 'Is it safe to take Levostil 5mg Tablet for a long time?', 'Levostil 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levostil 5mg Tablet for only as long as you need it.'),
(4479, 'Levostil 5mg Tablet', 'Watran Pharmaceuticals Pvt. Ltd.', 'Levostil 5mg Tablet', 'For how long should I continue Levostil 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levostil 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levostil 5mg Tablet'),
(4480, 'Levosuf 500mg Tablet', 'Safe U Pharmaceuticals', 'Levosuf 500mg Tablet', 'Is Levosuf 500mg Tablet safe?', 'Levosuf 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4481, 'Levosuf 500mg Tablet', 'Safe U Pharmaceuticals', 'Levosuf 500mg Tablet', 'What if I forget to take a dose of Levosuf 500mg Tablet?', 'If you forget a dose of Levosuf 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4482, 'Levosuf 500mg Tablet', 'Safe U Pharmaceuticals', 'Levosuf 500mg Tablet', 'Can the use of Levosuf 500mg Tablet cause diarrhea?', 'Yes, the use of Levosuf 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4483, 'Levosuf 500mg Tablet', 'Safe U Pharmaceuticals', 'Levosuf 500mg Tablet', 'Can I stop taking Levosuf 500mg Tablet when I feel better?', 'No, do not stop taking Levosuf 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosuf 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosuf 500mg Tablet in the dose and duration advised by the doctor.'),
(4484, 'Levosuf 500mg Tablet', 'Safe U Pharmaceuticals', 'Levosuf 500mg Tablet', 'Can the use of Levosuf 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosuf 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosuf 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4485, 'Levosung 10mg Tablet', 'Neoliva Formulations', 'Levosung 10mg Tablet', 'Is Levosung 10mg Tablet a steroid? What is it used for?', 'No, Levosung 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4486, 'Levosung 10mg Tablet', 'Neoliva Formulations', 'Levosung 10mg Tablet', 'Does Levosung 10mg Tablet make you tired and drowsy?', 'Yes, Levosung 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4487, 'Levosung 10mg Tablet', 'Neoliva Formulations', 'Levosung 10mg Tablet', 'How long does it take for Levosung 10mg Tablet to work?', 'Levosung 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4488, 'Levosung 10mg Tablet', 'Neoliva Formulations', 'Levosung 10mg Tablet', 'Can I take Levosung 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosung 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4489, 'Levosung 10mg Tablet', 'Neoliva Formulations', 'Levosung 10mg Tablet', 'Is it safe to take Levosung 10mg Tablet for a long time?', 'Levosung 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosung 10mg Tablet for only as long as you need it.'),
(4490, 'Levosung 10mg Tablet', 'Neoliva Formulations', 'Levosung 10mg Tablet', 'For how long should I continue Levosung 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosung 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosung 10mg Tablet'),
(4491, 'Levosung 2.5mg Syrup', 'Neoliva Formulations', 'Levosung 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levosung 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(4492, 'Levosung 2.5mg Syrup', 'Neoliva Formulations', 'Levosung 2.5mg Syrup', 'Can other medicines be given at the same time as Levosung 2.5mg Syrup?', 'Levosung 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levosung 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(4493, 'Levosung 2.5mg Syrup', 'Neoliva Formulations', 'Levosung 2.5mg Syrup', 'How much Levosung 2.5mg Syrup should I give to my child?', 'Levosung 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(4494, 'Levosung 2.5mg Syrup', 'Neoliva Formulations', 'Levosung 2.5mg Syrup', 'What if I give too much of Levosung 2.5mg Syrup by mistake?', 'Although Levosung 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(4495, 'Levosung 2.5mg Syrup', 'Neoliva Formulations', 'Levosung 2.5mg Syrup', 'How should Levosung 2.5mg Syrup be stored?', 'Store Levosung 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4496, 'Levosung 2.5mg Syrup', 'Neoliva Formulations', 'Levosung 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(4497, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4498, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levosung M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4499, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'How should Levosung M Kid 2.5mg/4mg Tablet be stored?', 'Levosung M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4500, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'Can Levosung M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levosung M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4501, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosung M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levosung M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levosung M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4502, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosung M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4503, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levosung M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levosung M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4504, 'Levosung M Kid 2.5mg/4mg Tablet', 'Neoliva Formulations', 'Levosung M Kid 2.5mg/4mg Tablet', 'Can I use Levosung M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levosung M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4505, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'What is Levosung Oral Drops?', 'Levosung Oral Drops is a combination of two medicines that help to relieve the symptoms of cold. It consists of Chlorpheniramine, an antiallergic that relieves allergy symptoms like runny nose, watery eyes, and sneezing. It also consists of Phenylephrine, a decongestant that narrows the small blood vessels providing relief from congestion or stuffiness in the nose.'),
(4506, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'Is it safe to use Levosung Oral Drops?', 'Levosung Oral Drops is safe for most of the patients when taken according to the dose and duration recommended by the doctor. However, in some patients it may cause common side effects like nausea, vomiting, headache, sleepiness and other uncommon or rare side effects. If you experience any problem while taking this medicine, inform your doctor as soon as possible.'),
(4507, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'Can the use of Levosung Oral Drops cause nausea and vomiting?', 'Yes, the use of Levosung Oral Drops can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists. Do not take any other medicine without speaking to a doctor.'),
(4508, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'Can the use of Levosung Oral Drops cause sleepiness or dizziness?', 'Yes, the most common side effect of Levosung Oral Drops is drowsiness. Avoid driving, operating heavy machinery or engaging in other activities that need your full attention, unless your healthcare provider has permitted you to do so. Do not drink alcohol or other cough and cold medicines. Also, avoid taking medicines that help you sleep while taking Levosung Oral Drops as it may lead to excessive drowsiness.'),
(4509, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Levosung Oral Drops can lead to increased side effects due to overdose. Do not start, stop or change the dosage of your medicine before consulting your doctor.'),
(4510, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'Are there any specific contraindications associated with the use of Levosung Oral Drops?', 'The use of Levosung Oral Drops is considered to be harmful to patients with known allergy to any of the components of this medication. Tell your healthcare provider about all your medical conditions such as heart disease, high blood pressure, hyperthyroidism, glaucoma and enlarged prostate (difficulty in urination) before taking Levosung Oral Drops.'),
(4511, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'What is the recommended storage condition for Levosung Oral Drops?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4512, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'What is Levosung Oral Drops?', 'Levosung Oral Drops is a combination of two medicines that help to relieve the symptoms of cold. It consists of Chlorpheniramine, an antiallergic that relieves allergy symptoms like runny nose, watery eyes, and sneezing. It also consists of Phenylephrine, a decongestant that narrows the small blood vessels providing relief from congestion or stuffiness in the nose.'),
(4513, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'Is it safe to use Levosung Oral Drops?', 'Levosung Oral Drops is safe for most of the patients when taken according to the dose and duration recommended by the doctor. However, in some patients it may cause common side effects like nausea, vomiting, headache, sleepiness and other uncommon or rare side effects. If you experience any problem while taking this medicine, inform your doctor as soon as possible.'),
(4514, 'Levosung Oral Drops', 'Neoliva Formulations', 'Levosung Oral Drops', 'Can the use of Levosung Oral Drops cause nausea and vomiting?', 'Yes, the use of Levosung Oral Drops can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists. Do not take any other medicine without speaking to a doctor.'),
(4515, 'Levosung P Oral Drops', 'Neoliva Formulations', 'Levosung P Oral Drops', 'What if  I give too much Levosung P Oral Drops by mistake?', 'Prolonged or excess intake of Levosung P Oral Drops can put your child at risk of developing serious side effects like seizures, rapid heart rate, depression, cognition defects and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(4516, 'Levosung P Oral Drops', 'Neoliva Formulations', 'Levosung P Oral Drops', 'How can I store Levosung P Oral Drops?', 'Levosung P Oral Drops should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4517, 'Levosung P Oral Drops', 'Neoliva Formulations', 'Levosung P Oral Drops', 'My child has a cough and fever. Can I give him two medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. The reason being, both the medicines could have the same ingredients. This would be equivalent to an overdose and could have serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(4518, 'Levosung P Oral Drops', 'Neoliva Formulations', 'Levosung P Oral Drops', 'Can  I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(4519, 'Levosung P Oral Drops', 'Neoliva Formulations', 'Levosung P Oral Drops', 'Can Levosung P Oral Drops make my child sleepy?', 'Levosung P Oral Drops may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(4520, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'What is Levosung P Tablet?', 'Levosung P Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(4521, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'Are there any foods which I have to avoid while taking Levosung P Tablet?', 'Levosung P Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(4522, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'Can the use of Levosung P Tablet cause sleepiness or drowsiness?', 'Yes, Levosung P Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(4523, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'Are there any serious side effects associated with the use of Levosung P Tablet?', 'Serious side effects with Levosung P Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(4524, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'Can I breastfeed while taking Levosung P Tablet?', 'No, it is not advisable to breastfeed while using Levosung P Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(4525, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'Will a higher than the recommended dose of Levosung P Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(4526, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'Are there any contraindications associated with use of Levosung P Tablet?', 'It is not recommended to use Levosung P Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Levosung P Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(4527, 'Levosung P Tablet', 'Neoliva Formulations', 'Levosung P Tablet', 'What are the instructions for the storage and disposal of Levosung P Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4528, 'Levosung Tablet', 'Neoliva Formulations', 'Levosung Tablet', 'Is Levosung Tablet a steroid? What is it used for?', 'No, Levosung Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4529, 'Levosung Tablet', 'Neoliva Formulations', 'Levosung Tablet', 'Does Levosung Tablet make you tired and drowsy?', 'Yes, Levosung Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4530, 'Levosung Tablet', 'Neoliva Formulations', 'Levosung Tablet', 'How long does it take for Levosung Tablet to work?', 'Levosung Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4531, 'Levosung Tablet', 'Neoliva Formulations', 'Levosung Tablet', 'Can I take Levosung Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levosung Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4532, 'Levosung Tablet', 'Neoliva Formulations', 'Levosung Tablet', 'Is it safe to take Levosung Tablet for a long time?', 'Levosung Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levosung Tablet for only as long as you need it.'),
(4533, 'Levosung Tablet', 'Neoliva Formulations', 'Levosung Tablet', 'For how long should I continue Levosung Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levosung Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levosung Tablet'),
(4534, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4535, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'Can I decrease the dose of Levosung-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4536, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'How should Levosung-M Syrup be stored?', 'Levosung-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4537, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'Can Levosung-M Syrup make my child sleepy?', 'Levosung-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4538, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levosung-M Syrup?', 'No, don’t start Levosung-M Syrup without speaking to your child’s doctor. Moreover, Levosung-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4539, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levosung-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4540, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levosung-M Syrup to my child?', 'Some studies show that Levosung-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4541, 'Levosung-M Syrup', 'Neoliva Formulations', 'Levosung-M Syrup', 'Can I use Levosung-M Syrup for treating acute asthma attacks in my child?', 'Levosung-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4542, 'Levosung-M Tablet', 'Neoliva Formulations', 'Levosung-M Tablet', 'What is Levosung-M Tablet?', 'Levosung-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4543, 'Levosung-M Tablet', 'Neoliva Formulations', 'Levosung-M Tablet', 'Can the use of Levosung-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levosung-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4544, 'Levosung-M Tablet', 'Neoliva Formulations', 'Levosung-M Tablet', 'Can Levosung-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levosung-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4545, 'Levosung-M Tablet', 'Neoliva Formulations', 'Levosung-M Tablet', 'Can the use of Levosung-M Tablet cause dry mouth?', 'Yes, the use of Levosung-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4546, 'Levosung-M Tablet', 'Neoliva Formulations', 'Levosung-M Tablet', 'Can I drink alcohol while taking Levosung-M Tablet?', 'No, do not take alcohol while taking Levosung-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levosung-M Tablet.'),
(4547, 'Levosung-M Tablet', 'Neoliva Formulations', 'Levosung-M Tablet', 'Will Levosung-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levosung-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4548, 'Levosung-M Tablet', 'Neoliva Formulations', 'Levosung-M Tablet', 'What are the instructions for storage and disposal of Levosung-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4549, 'Levosure 250mg Tablet', 'Mankind Pharma Ltd', 'Levosure 250mg Tablet', 'Is Levosure 250mg Tablet safe?', 'Levosure 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4550, 'Levosure 250mg Tablet', 'Mankind Pharma Ltd', 'Levosure 250mg Tablet', 'What if I forget to take a dose of Levosure 250mg Tablet?', 'If you forget a dose of Levosure 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4551, 'Levosure 250mg Tablet', 'Mankind Pharma Ltd', 'Levosure 250mg Tablet', 'Can the use of Levosure 250mg Tablet cause diarrhea?', 'Yes, the use of Levosure 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4552, 'Levosure 250mg Tablet', 'Mankind Pharma Ltd', 'Levosure 250mg Tablet', 'Can I stop taking Levosure 250mg Tablet when I feel better?', 'No, do not stop taking Levosure 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosure 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosure 250mg Tablet in the dose and duration advised by the doctor.'),
(4553, 'Levosure 250mg Tablet', 'Mankind Pharma Ltd', 'Levosure 250mg Tablet', 'Can the use of Levosure 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosure 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosure 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4554, 'Levosure 750mg Tablet', 'Mankind Pharma Ltd', 'Levosure 750mg Tablet', 'Is Levosure 750mg Tablet safe?', 'Levosure 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4555, 'Levosure 750mg Tablet', 'Mankind Pharma Ltd', 'Levosure 750mg Tablet', 'What if I forget to take a dose of Levosure 750mg Tablet?', 'If you forget a dose of Levosure 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4556, 'Levosure 750mg Tablet', 'Mankind Pharma Ltd', 'Levosure 750mg Tablet', 'Can the use of Levosure 750mg Tablet cause diarrhea?', 'Yes, the use of Levosure 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4557, 'Levosure 750mg Tablet', 'Mankind Pharma Ltd', 'Levosure 750mg Tablet', 'Can I stop taking Levosure 750mg Tablet when I feel better?', 'No, do not stop taking Levosure 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosure 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levosure 750mg Tablet in the dose and duration advised by the doctor.'),
(4558, 'Levosure 750mg Tablet', 'Mankind Pharma Ltd', 'Levosure 750mg Tablet', 'Can the use of Levosure 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosure 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosure 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4559, 'Levoswift M 5mg/10mg Tablet', 'Ind Swift Laboratories Ltd', 'Levoswift M 5mg/10mg Tablet', 'What is Levoswift M 5mg/10mg Tablet?', 'Levoswift M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4560, 'Levoswift M 5mg/10mg Tablet', 'Ind Swift Laboratories Ltd', 'Levoswift M 5mg/10mg Tablet', 'Can the use of Levoswift M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoswift M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4561, 'Levoswift M 5mg/10mg Tablet', 'Ind Swift Laboratories Ltd', 'Levoswift M 5mg/10mg Tablet', 'Can Levoswift M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoswift M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4562, 'Levoswift M 5mg/10mg Tablet', 'Ind Swift Laboratories Ltd', 'Levoswift M 5mg/10mg Tablet', 'Can the use of Levoswift M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoswift M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4563, 'Levoswift M 5mg/10mg Tablet', 'Ind Swift Laboratories Ltd', 'Levoswift M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoswift M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoswift M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoswift M 5mg/10mg Tablet.'),
(4564, 'Levoswift M 5mg/10mg Tablet', 'Ind Swift Laboratories Ltd', 'Levoswift M 5mg/10mg Tablet', 'Will Levoswift M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoswift M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4565, 'Levoswift M 5mg/10mg Tablet', 'Ind Swift Laboratories Ltd', 'Levoswift M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoswift M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4566, 'Levosy 750mg Tablet', 'Blubell Pharma', 'Levosy 750mg Tablet', 'Is Levosy 750mg Tablet safe?', 'Levosy 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4567, 'Levosy 750mg Tablet', 'Blubell Pharma', 'Levosy 750mg Tablet', 'What if I forget to take a dose of Levosy 750mg Tablet?', 'If you forget a dose of Levosy 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4568, 'Levosy 750mg Tablet', 'Blubell Pharma', 'Levosy 750mg Tablet', 'Can the use of Levosy 750mg Tablet cause diarrhea?', 'Yes, the use of Levosy 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4569, 'Levosy 750mg Tablet', 'Blubell Pharma', 'Levosy 750mg Tablet', 'Can I stop taking Levosy 750mg Tablet when I feel better?', 'No, do not stop taking Levosy 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosy 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levosy 750mg Tablet in the dose and duration advised by the doctor.'),
(4570, 'Levosy 750mg Tablet', 'Blubell Pharma', 'Levosy 750mg Tablet', 'Can the use of Levosy 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosy 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosy 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4571, 'Levosy OZ 250mg/500mg Tablet', 'Blubell Pharma', 'Levosy OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levosy OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4572, 'Levosy OZ 250mg/500mg Tablet', 'Blubell Pharma', 'Levosy OZ 250mg/500mg Tablet', 'Can I stop taking Levosy OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levosy OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4573, 'Levosy OZ 250mg/500mg Tablet', 'Blubell Pharma', 'Levosy OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levosy OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4574, 'Levosym 250mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 250mg Tablet', 'Is Levosym 250mg Tablet safe?', 'Levosym 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4575, 'Levosym 250mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 250mg Tablet', 'What if I forget to take a dose of Levosym 250mg Tablet?', 'If you forget a dose of Levosym 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4576, 'Levosym 250mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 250mg Tablet', 'Can the use of Levosym 250mg Tablet cause diarrhea?', 'Yes, the use of Levosym 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4577, 'Levosym 250mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 250mg Tablet', 'Can I stop taking Levosym 250mg Tablet when I feel better?', 'No, do not stop taking Levosym 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosym 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosym 250mg Tablet in the dose and duration advised by the doctor.'),
(4578, 'Levosym 250mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 250mg Tablet', 'Can the use of Levosym 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosym 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosym 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4579, 'Levosym 500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 500mg Tablet', 'Is Levosym 500mg Tablet safe?', 'Levosym 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4580, 'Levosym 500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 500mg Tablet', 'What if I forget to take a dose of Levosym 500mg Tablet?', 'If you forget a dose of Levosym 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4581, 'Levosym 500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 500mg Tablet', 'Can the use of Levosym 500mg Tablet cause diarrhea?', 'Yes, the use of Levosym 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4582, 'Levosym 500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 500mg Tablet', 'Can I stop taking Levosym 500mg Tablet when I feel better?', 'No, do not stop taking Levosym 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosym 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosym 500mg Tablet in the dose and duration advised by the doctor.'),
(4583, 'Levosym 500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym 500mg Tablet', 'Can the use of Levosym 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosym 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosym 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4584, 'Levosym OZ 250mg/500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levosym OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4585, 'Levosym OZ 250mg/500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym OZ 250mg/500mg Tablet', 'Can I stop taking Levosym OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levosym OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4586, 'Levosym OZ 250mg/500mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Levosym OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levosym OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4587, 'Levosys 250mg Tablet', 'Syskem Pharmocrats', 'Levosys 250mg Tablet', 'Is Levosys 250mg Tablet safe?', 'Levosys 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4588, 'Levosys 250mg Tablet', 'Syskem Pharmocrats', 'Levosys 250mg Tablet', 'What if I forget to take a dose of Levosys 250mg Tablet?', 'If you forget a dose of Levosys 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4589, 'Levosys 250mg Tablet', 'Syskem Pharmocrats', 'Levosys 250mg Tablet', 'Can the use of Levosys 250mg Tablet cause diarrhea?', 'Yes, the use of Levosys 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4590, 'Levosys 250mg Tablet', 'Syskem Pharmocrats', 'Levosys 250mg Tablet', 'Can I stop taking Levosys 250mg Tablet when I feel better?', 'No, do not stop taking Levosys 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosys 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levosys 250mg Tablet in the dose and duration advised by the doctor.'),
(4591, 'Levosys 250mg Tablet', 'Syskem Pharmocrats', 'Levosys 250mg Tablet', 'Can the use of Levosys 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosys 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosys 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4592, 'Levosys 500mg Tablet', 'Syskem Pharmocrats', 'Levosys 500mg Tablet', 'Is Levosys 500mg Tablet safe?', 'Levosys 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4593, 'Levosys 500mg Tablet', 'Syskem Pharmocrats', 'Levosys 500mg Tablet', 'What if I forget to take a dose of Levosys 500mg Tablet?', 'If you forget a dose of Levosys 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4594, 'Levosys 500mg Tablet', 'Syskem Pharmocrats', 'Levosys 500mg Tablet', 'Can the use of Levosys 500mg Tablet cause diarrhea?', 'Yes, the use of Levosys 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4595, 'Levosys 500mg Tablet', 'Syskem Pharmocrats', 'Levosys 500mg Tablet', 'Can I stop taking Levosys 500mg Tablet when I feel better?', 'No, do not stop taking Levosys 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levosys 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levosys 500mg Tablet in the dose and duration advised by the doctor.'),
(4596, 'Levosys 500mg Tablet', 'Syskem Pharmocrats', 'Levosys 500mg Tablet', 'Can the use of Levosys 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levosys 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levosys 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4597, 'Levot M 5mg/10mg Tablet', 'Kinesis Pharmaceuticals Pvt Ltd', 'Levot M 5mg/10mg Tablet', 'What is Levot M 5mg/10mg Tablet?', 'Levot M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4598, 'Levot M 5mg/10mg Tablet', 'Kinesis Pharmaceuticals Pvt Ltd', 'Levot M 5mg/10mg Tablet', 'Can the use of Levot M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levot M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4599, 'Levot M 5mg/10mg Tablet', 'Kinesis Pharmaceuticals Pvt Ltd', 'Levot M 5mg/10mg Tablet', 'Can Levot M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levot M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4600, 'Levot M 5mg/10mg Tablet', 'Kinesis Pharmaceuticals Pvt Ltd', 'Levot M 5mg/10mg Tablet', 'Can the use of Levot M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levot M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4601, 'Levot M 5mg/10mg Tablet', 'Kinesis Pharmaceuticals Pvt Ltd', 'Levot M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levot M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levot M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levot M 5mg/10mg Tablet.'),
(4602, 'Levot M 5mg/10mg Tablet', 'Kinesis Pharmaceuticals Pvt Ltd', 'Levot M 5mg/10mg Tablet', 'Will Levot M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levot M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4603, 'Levot M 5mg/10mg Tablet', 'Kinesis Pharmaceuticals Pvt Ltd', 'Levot M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levot M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4604, 'Levot OZ 250mg/500mg Tablet', 'Nascent Life Sciences', 'Levot OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levot OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4605, 'Levot OZ 250mg/500mg Tablet', 'Nascent Life Sciences', 'Levot OZ 250mg/500mg Tablet', 'Can I stop taking Levot OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levot OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4606, 'Levot OZ 250mg/500mg Tablet', 'Nascent Life Sciences', 'Levot OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levot OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4607, 'Levot Syrup', 'Delwis Healthcare Pvt Ltd', 'Levot Syrup', 'What is Levot Syrup?', 'Levot Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(4608, 'Levot Syrup', 'Delwis Healthcare Pvt Ltd', 'Levot Syrup', 'Is it safe to use Levot Syrup?', 'Yes, it is safe to use Levot Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(4609, 'Levot Syrup', 'Delwis Healthcare Pvt Ltd', 'Levot Syrup', 'Are there any specific contraindications associated with the use of Levot Syrup?', 'Use of Levot Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(4610, 'Levot Syrup', 'Delwis Healthcare Pvt Ltd', 'Levot Syrup', 'Can the use of Levot Syrup cause dizziness?', 'Yes, the use of Levot Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(4611, 'Levot Syrup', 'Delwis Healthcare Pvt Ltd', 'Levot Syrup', 'Can the use of Levot Syrup cause diarrhea?', 'Yes, the use of Levot Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(4612, 'Levot Syrup', 'Delwis Healthcare Pvt Ltd', 'Levot Syrup', 'What are the recommended storage conditions for Levot Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4613, 'Levot Tablet', 'Atishya Biotech', 'Levot Tablet', 'Is Levot Tablet a steroid? What is it used for?', 'No, Levot Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4614, 'Levot Tablet', 'Atishya Biotech', 'Levot Tablet', 'Does Levot Tablet make you tired and drowsy?', 'Yes, Levot Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4615, 'Levot Tablet', 'Atishya Biotech', 'Levot Tablet', 'How long does it take for Levot Tablet to work?', 'Levot Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4616, 'Levot Tablet', 'Atishya Biotech', 'Levot Tablet', 'Can I take Levot Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levot Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4617, 'Levot Tablet', 'Atishya Biotech', 'Levot Tablet', 'Is it safe to take Levot Tablet for a long time?', 'Levot Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levot Tablet for only as long as you need it.'),
(4618, 'Levot Tablet', 'Atishya Biotech', 'Levot Tablet', 'For how long should I continue Levot Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levot Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levot Tablet'),
(4619, 'Levota 250mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 250mg Tablet', 'Is Levota 250mg Tablet safe?', 'Levota 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4620, 'Levota 250mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 250mg Tablet', 'What if I forget to take a dose of Levota 250mg Tablet?', 'If you forget a dose of Levota 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4621, 'Levota 250mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 250mg Tablet', 'Can the use of Levota 250mg Tablet cause diarrhea?', 'Yes, the use of Levota 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4622, 'Levota 250mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 250mg Tablet', 'Can I stop taking Levota 250mg Tablet when I feel better?', 'No, do not stop taking Levota 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levota 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levota 250mg Tablet in the dose and duration advised by the doctor.'),
(4623, 'Levota 250mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 250mg Tablet', 'Can the use of Levota 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levota 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levota 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4624, 'Levota 500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 500mg Tablet', 'Is Levota 500mg Tablet safe?', 'Levota 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4625, 'Levota 500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 500mg Tablet', 'What if I forget to take a dose of Levota 500mg Tablet?', 'If you forget a dose of Levota 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4626, 'Levota 500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 500mg Tablet', 'Can the use of Levota 500mg Tablet cause diarrhea?', 'Yes, the use of Levota 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4627, 'Levota 500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 500mg Tablet', 'Can I stop taking Levota 500mg Tablet when I feel better?', 'No, do not stop taking Levota 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levota 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levota 500mg Tablet in the dose and duration advised by the doctor.'),
(4628, 'Levota 500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Levota 500mg Tablet', 'Can the use of Levota 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levota 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levota 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4629, 'Levota M 5mg/10mg Tablet', 'Trio Pharmaceuticals Pvt Ltd', 'Levota M 5mg/10mg Tablet', 'What is Levota M 5mg/10mg Tablet?', 'Levota M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4630, 'Levota M 5mg/10mg Tablet', 'Trio Pharmaceuticals Pvt Ltd', 'Levota M 5mg/10mg Tablet', 'Can the use of Levota M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levota M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4631, 'Levota M 5mg/10mg Tablet', 'Trio Pharmaceuticals Pvt Ltd', 'Levota M 5mg/10mg Tablet', 'Can Levota M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levota M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4632, 'Levota M 5mg/10mg Tablet', 'Trio Pharmaceuticals Pvt Ltd', 'Levota M 5mg/10mg Tablet', 'Can the use of Levota M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levota M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4633, 'Levota M 5mg/10mg Tablet', 'Trio Pharmaceuticals Pvt Ltd', 'Levota M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levota M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levota M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levota M 5mg/10mg Tablet.'),
(4634, 'Levota M 5mg/10mg Tablet', 'Trio Pharmaceuticals Pvt Ltd', 'Levota M 5mg/10mg Tablet', 'Will Levota M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levota M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4635, 'Levota M 5mg/10mg Tablet', 'Trio Pharmaceuticals Pvt Ltd', 'Levota M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levota M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4636, 'Levotab 150mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 150mg Tablet', 'Is Levotab 150mg Tablet safe?', 'Levotab 150mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4637, 'Levotab 150mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 150mg Tablet', 'What if I forget to take a dose of Levotab 150mg Tablet?', 'If you forget a dose of Levotab 150mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4638, 'Levotab 150mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 150mg Tablet', 'Can the use of Levotab 150mg Tablet cause diarrhea?', 'Yes, the use of Levotab 150mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4639, 'Levotab 150mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 150mg Tablet', 'Can I stop taking Levotab 150mg Tablet when I feel better?', 'No, do not stop taking Levotab 150mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotab 150mg Tablet too early, the symptoms may return or worsen. Continue taking Levotab 150mg Tablet in the dose and duration advised by the doctor.'),
(4640, 'Levotab 150mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 150mg Tablet', 'Can the use of Levotab 150mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotab 150mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotab 150mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4641, 'Levotab 250 Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 250 Tablet', 'Is Levotab 250 Tablet safe?', 'Levotab 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4642, 'Levotab 250 Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 250 Tablet', 'What if I forget to take a dose of Levotab 250 Tablet?', 'If you forget a dose of Levotab 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4643, 'Levotab 250 Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 250 Tablet', 'Can the use of Levotab 250 Tablet cause diarrhea?', 'Yes, the use of Levotab 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4644, 'Levotab 250 Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 250 Tablet', 'Can I stop taking Levotab 250 Tablet when I feel better?', 'No, do not stop taking Levotab 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotab 250 Tablet too early, the symptoms may return or worsen. Continue taking Levotab 250 Tablet in the dose and duration advised by the doctor.'),
(4645, 'Levotab 250 Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 250 Tablet', 'Can the use of Levotab 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levotab 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotab 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4646, 'Levotab 500mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 500mg Tablet (Intas Pharmaceuticals Ltd)', 'Is Levotab 500mg Tablet safe?', 'Levotab 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4647, 'Levotab 500mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 500mg Tablet (Intas Pharmaceuticals Ltd)', 'What if I forget to take a dose of Levotab 500mg Tablet?', 'If you forget a dose of Levotab 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4648, 'Levotab 500mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 500mg Tablet (Intas Pharmaceuticals Ltd)', 'Can the use of Levotab 500mg Tablet cause diarrhea?', 'Yes, the use of Levotab 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4649, 'Levotab 500mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 500mg Tablet (Intas Pharmaceuticals Ltd)', 'Can I stop taking Levotab 500mg Tablet when I feel better?', 'No, do not stop taking Levotab 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotab 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotab 500mg Tablet in the dose and duration advised by the doctor.'),
(4650, 'Levotab 500mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotab 500mg Tablet (Intas Pharmaceuticals Ltd)', 'Can the use of Levotab 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotab 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotab 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4651, 'Levotab 500mg Tablet', 'Sarthi Life Sciences', 'Levotab 500mg Tablet (Sarthi Life Sciences)', 'Is Levotab 500mg Tablet safe?', 'Levotab 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4652, 'Levotab 500mg Tablet', 'Sarthi Life Sciences', 'Levotab 500mg Tablet (Sarthi Life Sciences)', 'What if I forget to take a dose of Levotab 500mg Tablet?', 'If you forget a dose of Levotab 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4653, 'Levotab 500mg Tablet', 'Sarthi Life Sciences', 'Levotab 500mg Tablet (Sarthi Life Sciences)', 'Can the use of Levotab 500mg Tablet cause diarrhea?', 'Yes, the use of Levotab 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4654, 'Levotab 500mg Tablet', 'Sarthi Life Sciences', 'Levotab 500mg Tablet (Sarthi Life Sciences)', 'Can I stop taking Levotab 500mg Tablet when I feel better?', 'No, do not stop taking Levotab 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotab 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotab 500mg Tablet in the dose and duration advised by the doctor.'),
(4655, 'Levotab 500mg Tablet', 'Sarthi Life Sciences', 'Levotab 500mg Tablet (Sarthi Life Sciences)', 'Can the use of Levotab 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotab 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotab 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4656, 'Levotab 750mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 750mg Tablet', 'Is Levotab 750mg Tablet safe?', 'Levotab 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4657, 'Levotab 750mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 750mg Tablet', 'What if I forget to take a dose of Levotab 750mg Tablet?', 'If you forget a dose of Levotab 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4658, 'Levotab 750mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 750mg Tablet', 'Can the use of Levotab 750mg Tablet cause diarrhea?', 'Yes, the use of Levotab 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4659, 'Levotab 750mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 750mg Tablet', 'Can I stop taking Levotab 750mg Tablet when I feel better?', 'No, do not stop taking Levotab 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotab 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotab 750mg Tablet in the dose and duration advised by the doctor.'),
(4660, 'Levotab 750mg Tablet', 'Scott Edil Pharmacia Ltd', 'Levotab 750mg Tablet', 'Can the use of Levotab 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotab 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotab 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4661, 'Levotab Tablet', 'East West Pharma', 'Levotab Tablet', 'Is Levotab Tablet effective?', 'Levotab Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levotab Tablet too early, the symptoms may return or worsen.'),
(4662, 'Levotab Tablet', 'East West Pharma', 'Levotab Tablet', 'Can the use of Levotab Tablet cause dizziness?', 'Yes, Levotab Tablet can make you feel dizzy. Avoid driving, operating on machinery, working at heights or participating or participating in potentially dangerous activities, especially during the initial days of your treatment. However, if your condition does not improve, consult your doctor.'),
(4663, 'Levotab Tablet', 'East West Pharma', 'Levotab Tablet', 'Are there any specific conditions where Levotab Tablet should be avoided?', 'The use of Levotab Tablet should be avoided in patients with known allergy to any other ingredients of this medicine. Also, patients who are suffering from asthma should refrain from using Levotab Tablet. Therefore, inform your doctor if you have or had any medical condition before starting your treatment with Levotab Tablet.'),
(4664, 'Levotab Tablet', 'East West Pharma', 'Levotab Tablet', 'What are the instructions for storage and disposal of Levotab Tablet?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4665, 'Levotab Tablet', 'East West Pharma', 'Levotab Tablet', 'What if I forget to take a dose of Levotab Tablet?', 'If you forget a dose of Levotab Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4666, 'Levotab Tablet', 'East West Pharma', 'Levotab Tablet', 'Is Levotab Tablet safe?', 'Levotab Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4667, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Q. Is Levotac  5mg Tablet a steroid? What is it used for?', 'No, Levotac  5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4668, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Q. Does Levotac  5mg Tablet make you tired and drowsy?', 'Yes, Levotac  5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4669, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Q. How long does it take for Levotac  5mg Tablet to work?', 'Levotac  5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4670, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Q. Can I take Levotac  5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotac  5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4671, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Q. Is it safe to take Levotac  5mg Tablet for a long time?', 'Levotac  5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotac  5mg Tablet for only as long as you need it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4672, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Q. For how long should I continue Levotac  5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotac  5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotac  5mg Tablet'),
(4673, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Is Levotac  5mg Tablet a steroid? What is it used for?', 'No, Levotac  5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4674, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Does Levotac  5mg Tablet make you tired and drowsy?', 'Yes, Levotac  5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4675, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'How long does it take for Levotac  5mg Tablet to work?', 'Levotac  5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4676, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Can I take Levotac  5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotac  5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4677, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'Is it safe to take Levotac  5mg Tablet for a long time?', 'Levotac  5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotac  5mg Tablet for only as long as you need it.'),
(4678, 'Levotac 5mg Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac 5mg Tablet', 'For how long should I continue Levotac  5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotac  5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotac  5mg Tablet'),
(4679, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4680, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'Can I decrease the dose of Levotac M Kid Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4681, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'How should Levotac M Kid Oral Suspension be stored?', 'Levotac M Kid Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4682, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'Can Levotac M Kid Oral Suspension make my child sleepy?', 'Levotac M Kid Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4683, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotac M Kid Oral Suspension?', 'No, don’t start Levotac M Kid Oral Suspension without speaking to your child’s doctor. Moreover, Levotac M Kid Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4684, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotac M Kid Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4685, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levotac M Kid Oral Suspension to my child?', 'Some studies show that Levotac M Kid Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4686, 'Levotac M Kid Oral Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac M Kid Oral Suspension', 'Can I use Levotac M Kid Oral Suspension for treating acute asthma attacks in my child?', 'Levotac M Kid Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4687, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4688, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'Can I decrease the dose of Levotac-M Kid Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4689, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'How should Levotac-M Kid Tablet DT be stored?', 'Levotac-M Kid Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4690, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'Can Levotac-M Kid Tablet DT make my child sleepy?', 'Levotac-M Kid Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4691, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotac-M Kid Tablet DT?', 'No, don’t start Levotac-M Kid Tablet DT without speaking to your child’s doctor. Moreover, Levotac-M Kid Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4692, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotac-M Kid Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4693, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'My child is suffering from a mood disorder. Is it safe to give Levotac-M Kid Tablet DT to my child?', 'Some studies show that Levotac-M Kid Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4694, 'Levotac-M Kid Tablet DT', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Kid Tablet DT', 'Can I use Levotac-M Kid Tablet DT for treating acute asthma attacks in my child?', 'Levotac-M Kid Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4695, 'Levotac-M Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Tablet', 'What is Levotac-M Tablet?', 'Levotac-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4696, 'Levotac-M Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Tablet', 'Can the use of Levotac-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotac-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4697, 'Levotac-M Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Tablet', 'Can Levotac-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotac-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4698, 'Levotac-M Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Tablet', 'Can the use of Levotac-M Tablet cause dry mouth?', 'Yes, the use of Levotac-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4699, 'Levotac-M Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Tablet', 'Can I drink alcohol while taking Levotac-M Tablet?', 'No, do not take alcohol while taking Levotac-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotac-M Tablet.'),
(4700, 'Levotac-M Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Tablet', 'Will Levotac-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotac-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4701, 'Levotac-M Tablet', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-M Tablet', 'What are the instructions for storage and disposal of Levotac-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4702, 'Levotac-Max Tablet SR', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-Max Tablet SR', 'Can the use of Levotac-Max Tablet SR cause dry mouth?', 'Yes, the use of Levotac-Max Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(4703, 'Levotac-Max Tablet SR', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-Max Tablet SR', 'Can I use Levotac-Max Tablet SR while breastfeeding?', 'No, Levotac-Max Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(4704, 'Levotac-Max Tablet SR', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-Max Tablet SR', 'Can I drink alcohol while taking Levotac-Max Tablet SR?', 'No, avoid drinking alcohol while taking Levotac-Max Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Levotac-Max Tablet SR.'),
(4705, 'Levotac-Max Tablet SR', 'Seagull Pharmaceutical Pvt Ltd', 'Levotac-Max Tablet SR', 'What are the instructions for the storage and disposal of Levotac-Max Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4706, 'Levotair 10mg Tablet', 'Hilbert Healthcare', 'Levotair 10mg Tablet', 'Is Levotair 10mg Tablet a steroid? What is it used for?', 'No, Levotair 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4707, 'Levotair 10mg Tablet', 'Hilbert Healthcare', 'Levotair 10mg Tablet', 'Does Levotair 10mg Tablet make you tired and drowsy?', 'Yes, Levotair 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4708, 'Levotair 10mg Tablet', 'Hilbert Healthcare', 'Levotair 10mg Tablet', 'How long does it take for Levotair 10mg Tablet to work?', 'Levotair 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4709, 'Levotair 10mg Tablet', 'Hilbert Healthcare', 'Levotair 10mg Tablet', 'Can I take Levotair 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotair 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4710, 'Levotair 10mg Tablet', 'Hilbert Healthcare', 'Levotair 10mg Tablet', 'Is it safe to take Levotair 10mg Tablet for a long time?', 'Levotair 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotair 10mg Tablet for only as long as you need it.'),
(4711, 'Levotair 10mg Tablet', 'Hilbert Healthcare', 'Levotair 10mg Tablet', 'For how long should I continue Levotair 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotair 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotair 10mg Tablet'),
(4712, 'Levotair 5mg Tablet', 'Hilbert Healthcare', 'Levotair 5mg Tablet', 'Is Levotair 5mg Tablet a steroid? What is it used for?', 'No, Levotair 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4713, 'Levotair 5mg Tablet', 'Hilbert Healthcare', 'Levotair 5mg Tablet', 'Does Levotair 5mg Tablet make you tired and drowsy?', 'Yes, Levotair 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4714, 'Levotair 5mg Tablet', 'Hilbert Healthcare', 'Levotair 5mg Tablet', 'How long does it take for Levotair 5mg Tablet to work?', 'Levotair 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4715, 'Levotair 5mg Tablet', 'Hilbert Healthcare', 'Levotair 5mg Tablet', 'Can I take Levotair 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotair 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4716, 'Levotair 5mg Tablet', 'Hilbert Healthcare', 'Levotair 5mg Tablet', 'Is it safe to take Levotair 5mg Tablet for a long time?', 'Levotair 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotair 5mg Tablet for only as long as you need it.'),
(4717, 'Levotair 5mg Tablet', 'Hilbert Healthcare', 'Levotair 5mg Tablet', 'For how long should I continue Levotair 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotair 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotair 5mg Tablet'),
(4718, 'Levotair AM 75mg/5mg/10mg Tablet SR', 'Hilbert Healthcare', 'Levotair AM 75mg/5mg/10mg Tablet SR', 'Can the use of Levotair AM 75mg/5mg/10mg Tablet SR cause dry mouth?', 'Yes, the use of Levotair AM 75mg/5mg/10mg Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(4719, 'Levotair AM 75mg/5mg/10mg Tablet SR', 'Hilbert Healthcare', 'Levotair AM 75mg/5mg/10mg Tablet SR', 'Can I use Levotair AM 75mg/5mg/10mg Tablet SR while breastfeeding?', 'No, Levotair AM 75mg/5mg/10mg Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(4720, 'Levotair AM 75mg/5mg/10mg Tablet SR', 'Hilbert Healthcare', 'Levotair AM 75mg/5mg/10mg Tablet SR', 'Can I drink alcohol while taking Levotair AM 75mg/5mg/10mg Tablet SR?', 'No, avoid drinking alcohol while taking Levotair AM 75mg/5mg/10mg Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Levotair AM 75mg/5mg/10mg Tablet SR.'),
(4721, 'Levotair AM 75mg/5mg/10mg Tablet SR', 'Hilbert Healthcare', 'Levotair AM 75mg/5mg/10mg Tablet SR', 'What are the instructions for the storage and disposal of Levotair AM 75mg/5mg/10mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4722, 'Levotair LC 5mg/10mg Tablet', 'Medtas Healthcare', 'Levotair LC 5mg/10mg Tablet', 'What is Levotair LC 5mg/10mg Tablet?', 'Levotair LC 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4723, 'Levotair LC 5mg/10mg Tablet', 'Medtas Healthcare', 'Levotair LC 5mg/10mg Tablet', 'Can the use of Levotair LC 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotair LC 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4724, 'Levotair LC 5mg/10mg Tablet', 'Medtas Healthcare', 'Levotair LC 5mg/10mg Tablet', 'Can Levotair LC 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotair LC 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4725, 'Levotair LC 5mg/10mg Tablet', 'Medtas Healthcare', 'Levotair LC 5mg/10mg Tablet', 'Can the use of Levotair LC 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotair LC 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4726, 'Levotair LC 5mg/10mg Tablet', 'Medtas Healthcare', 'Levotair LC 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotair LC 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotair LC 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotair LC 5mg/10mg Tablet.'),
(4727, 'Levotair LC 5mg/10mg Tablet', 'Medtas Healthcare', 'Levotair LC 5mg/10mg Tablet', 'Will Levotair LC 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotair LC 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4728, 'Levotair LC 5mg/10mg Tablet', 'Medtas Healthcare', 'Levotair LC 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotair LC 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4729, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4730, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'Can I decrease the dose of Levotair M Kid  2.5mg/5mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4731, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'How should Levotair M Kid  2.5mg/5mg Tablet be stored?', 'Levotair M Kid  2.5mg/5mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4732, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'Can Levotair M Kid  2.5mg/5mg Tablet make my child sleepy?', 'Levotair M Kid  2.5mg/5mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4733, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotair M Kid  2.5mg/5mg Tablet?', 'No, don’t start Levotair M Kid  2.5mg/5mg Tablet without speaking to your child’s doctor. Moreover, Levotair M Kid  2.5mg/5mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4734, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotair M Kid  2.5mg/5mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4735, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levotair M Kid  2.5mg/5mg Tablet to my child?', 'Some studies show that Levotair M Kid  2.5mg/5mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4736, 'Levotair M Kid 2.5mg/5mg Tablet', 'Hilbert Healthcare', 'Levotair M Kid 2.5mg/5mg Tablet', 'Can I use Levotair M Kid  2.5mg/5mg Tablet for treating acute asthma attacks in my child?', 'Levotair M Kid  2.5mg/5mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4737, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4738, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'Can I decrease the dose of Levotair M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4739, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'How should Levotair M Syrup be stored?', 'Levotair M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4740, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'Can Levotair M Syrup make my child sleepy?', 'Levotair M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4741, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotair M Syrup?', 'No, don’t start Levotair M Syrup without speaking to your child’s doctor. Moreover, Levotair M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4742, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotair M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4743, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotair M Syrup to my child?', 'Some studies show that Levotair M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4744, 'Levotair M Syrup', 'Hilbert Healthcare', 'Levotair M Syrup', 'Can I use Levotair M Syrup for treating acute asthma attacks in my child?', 'Levotair M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4745, 'Levotair-Cold DS Oral Suspension', 'Hilbert Healthcare', 'Levotair-Cold DS Oral Suspension', 'What is Levotair-Cold DS Oral Suspension?', 'Levotair-Cold DS Oral Suspension is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(4746, 'Levotair-Cold DS Oral Suspension', 'Hilbert Healthcare', 'Levotair-Cold DS Oral Suspension', 'Is it safe to use Levotair-Cold DS Oral Suspension?', 'Yes, Levotair-Cold DS Oral Suspension is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(4747, 'Levotair-Cold DS Oral Suspension', 'Hilbert Healthcare', 'Levotair-Cold DS Oral Suspension', 'Can I stop taking Levotair-Cold DS Oral Suspension when I am relieved of my symptoms?', 'Levotair-Cold DS Oral Suspension is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(4748, 'Levotair-Cold DS Oral Suspension', 'Hilbert Healthcare', 'Levotair-Cold DS Oral Suspension', 'Can the use of Levotair-Cold DS Oral Suspension cause dizziness?', 'Yes, the use of Levotair-Cold DS Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(4749, 'Levotair-Cold DS Oral Suspension', 'Hilbert Healthcare', 'Levotair-Cold DS Oral Suspension', 'Can the use of Levotair-Cold DS Oral Suspension cause damage to liver?', 'Levotair-Cold DS Oral Suspension is usually safe when taken according to the recommended dose. However, an overdose of Levotair-Cold DS Oral Suspension can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(4750, 'Levotair-Cold DS Oral Suspension', 'Hilbert Healthcare', 'Levotair-Cold DS Oral Suspension', 'What is the recommended storage condition for the Levotair-Cold DS Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4751, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'What is Levotair-Cold Tablet?', 'Levotair-Cold Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(4752, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'Are there any foods which I have to avoid while taking Levotair-Cold Tablet?', 'Levotair-Cold Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(4753, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'Can the use of Levotair-Cold Tablet cause sleepiness or drowsiness?', 'Yes, Levotair-Cold Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(4754, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'Are there any serious side effects associated with the use of Levotair-Cold Tablet?', 'Serious side effects with Levotair-Cold Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(4755, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'Can I breastfeed while taking Levotair-Cold Tablet?', 'No, it is not advisable to breastfeed while using Levotair-Cold Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(4756, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'Will a higher than the recommended dose of Levotair-Cold Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(4757, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'Are there any contraindications associated with use of Levotair-Cold Tablet?', 'It is not recommended to use Levotair-Cold Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Levotair-Cold Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(4758, 'Levotair-Cold Tablet', 'Hilbert Healthcare', 'Levotair-Cold Tablet', 'What are the instructions for the storage and disposal of Levotair-Cold Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4759, 'Levotair-M Tablet', 'Hilbert Healthcare', 'Levotair-M Tablet', 'What is Levotair-M Tablet?', 'Levotair-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4760, 'Levotair-M Tablet', 'Hilbert Healthcare', 'Levotair-M Tablet', 'Can the use of Levotair-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotair-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4761, 'Levotair-M Tablet', 'Hilbert Healthcare', 'Levotair-M Tablet', 'Can Levotair-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotair-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4762, 'Levotair-M Tablet', 'Hilbert Healthcare', 'Levotair-M Tablet', 'Can the use of Levotair-M Tablet cause dry mouth?', 'Yes, the use of Levotair-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4763, 'Levotair-M Tablet', 'Hilbert Healthcare', 'Levotair-M Tablet', 'Can I drink alcohol while taking Levotair-M Tablet?', 'No, do not take alcohol while taking Levotair-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotair-M Tablet.'),
(4764, 'Levotair-M Tablet', 'Hilbert Healthcare', 'Levotair-M Tablet', 'Will Levotair-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotair-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4765, 'Levotair-M Tablet', 'Hilbert Healthcare', 'Levotair-M Tablet', 'What are the instructions for storage and disposal of Levotair-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4766, 'Levotaj 250mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 250mg Tablet', 'Is Levotaj 250mg Tablet safe?', 'Levotaj 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4767, 'Levotaj 250mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 250mg Tablet', 'What if I forget to take a dose of Levotaj 250mg Tablet?', 'If you forget a dose of Levotaj 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4768, 'Levotaj 250mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 250mg Tablet', 'Can the use of Levotaj 250mg Tablet cause diarrhea?', 'Yes, the use of Levotaj 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4769, 'Levotaj 250mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 250mg Tablet', 'Can I stop taking Levotaj 250mg Tablet when I feel better?', 'No, do not stop taking Levotaj 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotaj 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotaj 250mg Tablet in the dose and duration advised by the doctor.'),
(4770, 'Levotaj 250mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 250mg Tablet', 'Can the use of Levotaj 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotaj 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotaj 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4771, 'Levotaj 500mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 500mg Tablet', 'Is Levotaj 500mg Tablet safe?', 'Levotaj 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4772, 'Levotaj 500mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 500mg Tablet', 'What if I forget to take a dose of Levotaj 500mg Tablet?', 'If you forget a dose of Levotaj 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4773, 'Levotaj 500mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 500mg Tablet', 'Can the use of Levotaj 500mg Tablet cause diarrhea?', 'Yes, the use of Levotaj 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4774, 'Levotaj 500mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 500mg Tablet', 'Can I stop taking Levotaj 500mg Tablet when I feel better?', 'No, do not stop taking Levotaj 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotaj 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotaj 500mg Tablet in the dose and duration advised by the doctor.'),
(4775, 'Levotaj 500mg Tablet', 'Taj Pharma India Ltd', 'Levotaj 500mg Tablet', 'Can the use of Levotaj 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotaj 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotaj 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4776, 'Levotak 0.5% Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Levotak 0.5% Eye Drop', 'Can I stop taking Levotak 0.5% Eye Drop when I feel better?', 'No, do not stop taking Levotak 0.5% Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotak 0.5% Eye Drop too early, the symptoms may return or worsen. Continue taking Levotak 0.5% Eye Drop in the dose and duration advised by the doctor.'),
(4777, 'Levotake 500mg Infusion', 'Rapid Life Drugs & Healthcare', 'Levotake 500mg Infusion', 'Is Levotake 500mg Infusion safe?', 'Levotake 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4778, 'Levotake 500mg Infusion', 'Rapid Life Drugs & Healthcare', 'Levotake 500mg Infusion', 'Can the use of Levotake 500mg Infusion cause diarrhea?', 'Yes, the use of Levotake 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4779, 'Levotake 500mg Infusion', 'Rapid Life Drugs & Healthcare', 'Levotake 500mg Infusion', 'Can the use of Levotake 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levotake 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotake 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4780, 'Levotake 500mg Infusion', 'Rapid Life Drugs & Healthcare', 'Levotake 500mg Infusion', 'How is Levotake 500mg Infusion administered?', 'Levotake 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levotake 500mg Infusion.'),
(4781, 'Levotake 500mg Infusion', 'Rapid Life Drugs & Healthcare', 'Levotake 500mg Infusion', 'Is Levotake 500mg Infusion effective?', 'Levotake 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levotake 500mg Infusion too early, the symptoms may return or worsen.'),
(4782, 'Levotal 250mg Tablet', 'Coastal Healthcare', 'Levotal 250mg Tablet', 'Is Levotal 250mg Tablet safe?', 'Levotal 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4783, 'Levotal 250mg Tablet', 'Coastal Healthcare', 'Levotal 250mg Tablet', 'What if I forget to take a dose of Levotal 250mg Tablet?', 'If you forget a dose of Levotal 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4784, 'Levotal 250mg Tablet', 'Coastal Healthcare', 'Levotal 250mg Tablet', 'Can the use of Levotal 250mg Tablet cause diarrhea?', 'Yes, the use of Levotal 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4785, 'Levotal 250mg Tablet', 'Coastal Healthcare', 'Levotal 250mg Tablet', 'Can I stop taking Levotal 250mg Tablet when I feel better?', 'No, do not stop taking Levotal 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotal 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotal 250mg Tablet in the dose and duration advised by the doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4786, 'Levotal 250mg Tablet', 'Coastal Healthcare', 'Levotal 250mg Tablet', 'Can the use of Levotal 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotal 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotal 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4787, 'Levotal 500mg Tablet', 'Coastal Healthcare', 'Levotal 500mg Tablet', 'Is Levotal 500mg Tablet safe?', 'Levotal 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4788, 'Levotal 500mg Tablet', 'Coastal Healthcare', 'Levotal 500mg Tablet', 'What if I forget to take a dose of Levotal 500mg Tablet?', 'If you forget a dose of Levotal 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4789, 'Levotal 500mg Tablet', 'Coastal Healthcare', 'Levotal 500mg Tablet', 'Can the use of Levotal 500mg Tablet cause diarrhea?', 'Yes, the use of Levotal 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4790, 'Levotal 500mg Tablet', 'Coastal Healthcare', 'Levotal 500mg Tablet', 'Can I stop taking Levotal 500mg Tablet when I feel better?', 'No, do not stop taking Levotal 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotal 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotal 500mg Tablet in the dose and duration advised by the doctor.'),
(4791, 'Levotal 500mg Tablet', 'Coastal Healthcare', 'Levotal 500mg Tablet', 'Can the use of Levotal 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotal 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotal 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4792, 'levotam 5mg/10mg Tablet', 'Tas Med India Pvt Ltd', 'levotam 5mg/10mg Tablet', 'What is levotam 5mg/10mg Tablet?', 'levotam 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4793, 'levotam 5mg/10mg Tablet', 'Tas Med India Pvt Ltd', 'levotam 5mg/10mg Tablet', 'Can the use of levotam 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of levotam 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4794, 'levotam 5mg/10mg Tablet', 'Tas Med India Pvt Ltd', 'levotam 5mg/10mg Tablet', 'Can levotam 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, levotam 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4795, 'levotam 5mg/10mg Tablet', 'Tas Med India Pvt Ltd', 'levotam 5mg/10mg Tablet', 'Can the use of levotam 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of levotam 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4796, 'levotam 5mg/10mg Tablet', 'Tas Med India Pvt Ltd', 'levotam 5mg/10mg Tablet', 'Can I drink alcohol while taking levotam 5mg/10mg Tablet?', 'No, do not take alcohol while taking levotam 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by levotam 5mg/10mg Tablet.'),
(4797, 'levotam 5mg/10mg Tablet', 'Tas Med India Pvt Ltd', 'levotam 5mg/10mg Tablet', 'Will levotam 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of levotam 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4798, 'levotam 5mg/10mg Tablet', 'Tas Med India Pvt Ltd', 'levotam 5mg/10mg Tablet', 'What are the instructions for storage and disposal of levotam 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4799, 'Levotamol Syrup', 'Archegos Ventures Private Limited', 'Levotamol Syrup', 'What is Levotamol Syrup?', 'Levotamol Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(4800, 'Levotamol Syrup', 'Archegos Ventures Private Limited', 'Levotamol Syrup', 'Is it safe to use Levotamol Syrup?', 'Yes, it is safe to use Levotamol Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(4801, 'Levotamol Syrup', 'Archegos Ventures Private Limited', 'Levotamol Syrup', 'Are there any specific contraindications associated with the use of Levotamol Syrup?', 'Use of Levotamol Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(4802, 'Levotamol Syrup', 'Archegos Ventures Private Limited', 'Levotamol Syrup', 'Can the use of Levotamol Syrup cause dizziness?', 'Yes, the use of Levotamol Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(4803, 'Levotamol Syrup', 'Archegos Ventures Private Limited', 'Levotamol Syrup', 'Can the use of Levotamol Syrup cause diarrhea?', 'Yes, the use of Levotamol Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(4804, 'Levotamol Syrup', 'Archegos Ventures Private Limited', 'Levotamol Syrup', 'What are the recommended storage conditions for Levotamol Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4805, 'Levotamol-I Capsule', 'Archegos Ventures Private Limited', 'Levotamol-I Capsule', 'Are there any medicines which I should avoid while taking Levotamol-I Capsule?', 'It is not recommended to use Levotamol-I Capsule along with other medicines, such as anticholinergic, beta-adrenergic agents, beta-blockers, diuretics, digoxin, MAO inhibitors or anti-depressants.'),
(4806, 'Levotamol-I Capsule', 'Archegos Ventures Private Limited', 'Levotamol-I Capsule', 'Will Levotamol-I Capsule be more effective if taken in higher doses?', 'No, taking a higher than the recommended dose of this medicine will not make it more effective, rather can lead to increased side effects. If the symptoms do not get relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(4807, 'Levotamol-I Capsule', 'Archegos Ventures Private Limited', 'Levotamol-I Capsule', 'Can the use of Levotamol-I Capsule cause sleepiness or drowsiness?', 'Yes, Levotamol-I Capsule may make you feel drowsy or sleepy. Avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(4808, 'Levotamol-I Capsule', 'Archegos Ventures Private Limited', 'Levotamol-I Capsule', 'Can the use of Levotamol-I Capsule cause dry mouth?', 'Yes, the use of Levotamol-I Capsule can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(4809, 'Levotamol-I Capsule', 'Archegos Ventures Private Limited', 'Levotamol-I Capsule', 'What are the instructions for storage and disposal of Levotamol-I Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4810, 'Levotar 500mg Tablet', 'Techyon Biotech Pvt Ltd', 'Levotar 500mg Tablet', 'Is Levotar 500mg Tablet safe?', 'Levotar 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4811, 'Levotar 500mg Tablet', 'Techyon Biotech Pvt Ltd', 'Levotar 500mg Tablet', 'What if I forget to take a dose of Levotar 500mg Tablet?', 'If you forget a dose of Levotar 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4812, 'Levotar 500mg Tablet', 'Techyon Biotech Pvt Ltd', 'Levotar 500mg Tablet', 'Can the use of Levotar 500mg Tablet cause diarrhea?', 'Yes, the use of Levotar 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4813, 'Levotar 500mg Tablet', 'Techyon Biotech Pvt Ltd', 'Levotar 500mg Tablet', 'Can I stop taking Levotar 500mg Tablet when I feel better?', 'No, do not stop taking Levotar 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotar 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotar 500mg Tablet in the dose and duration advised by the doctor.'),
(4814, 'Levotar 500mg Tablet', 'Techyon Biotech Pvt Ltd', 'Levotar 500mg Tablet', 'Can the use of Levotar 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotar 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotar 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4815, 'Levotas 250mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 250mg Tablet', 'Is Levotas 250mg Tablet safe?', 'Levotas 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4816, 'Levotas 250mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 250mg Tablet', 'What if I forget to take a dose of Levotas 250mg Tablet?', 'If you forget a dose of Levotas 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4817, 'Levotas 250mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 250mg Tablet', 'Can the use of Levotas 250mg Tablet cause diarrhea?', 'Yes, the use of Levotas 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4818, 'Levotas 250mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 250mg Tablet', 'Can I stop taking Levotas 250mg Tablet when I feel better?', 'No, do not stop taking Levotas 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotas 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotas 250mg Tablet in the dose and duration advised by the doctor.'),
(4819, 'Levotas 250mg Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 250mg Tablet', 'Can the use of Levotas 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotas 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotas 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4820, 'Levotas 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 500 Tablet', 'Is Levotas 500 Tablet safe?', 'Levotas 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4821, 'Levotas 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 500 Tablet', 'What if I forget to take a dose of Levotas 500 Tablet?', 'If you forget a dose of Levotas 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4822, 'Levotas 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 500 Tablet', 'Can the use of Levotas 500 Tablet cause diarrhea?', 'Yes, the use of Levotas 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4823, 'Levotas 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 500 Tablet', 'Can I stop taking Levotas 500 Tablet when I feel better?', 'No, do not stop taking Levotas 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotas 500 Tablet too early, the symptoms may return or worsen. Continue taking Levotas 500 Tablet in the dose and duration advised by the doctor.'),
(4824, 'Levotas 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Levotas 500 Tablet', 'Can the use of Levotas 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levotas 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotas 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4825, 'Levotat 500mg Tablet', 'Asgard Labs Private Limited', 'Levotat 500mg Tablet', 'Is Levotat 500mg Tablet safe?', 'Levotat 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4826, 'Levotat 500mg Tablet', 'Asgard Labs Private Limited', 'Levotat 500mg Tablet', 'What if I forget to take a dose of Levotat 500mg Tablet?', 'If you forget a dose of Levotat 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4827, 'Levotat 500mg Tablet', 'Asgard Labs Private Limited', 'Levotat 500mg Tablet', 'Can the use of Levotat 500mg Tablet cause diarrhea?', 'Yes, the use of Levotat 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4828, 'Levotat 500mg Tablet', 'Asgard Labs Private Limited', 'Levotat 500mg Tablet', 'Can I stop taking Levotat 500mg Tablet when I feel better?', 'No, do not stop taking Levotat 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotat 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotat 500mg Tablet in the dose and duration advised by the doctor.'),
(4829, 'Levotat 500mg Tablet', 'Asgard Labs Private Limited', 'Levotat 500mg Tablet', 'Can the use of Levotat 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotat 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotat 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4830, 'Levotat OZ 250mg/500mg Tablet', 'Asgard Labs Private Limited', 'Levotat OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levotat OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(4831, 'Levotat OZ 250mg/500mg Tablet', 'Asgard Labs Private Limited', 'Levotat OZ 250mg/500mg Tablet', 'Can I stop taking Levotat OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levotat OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(4832, 'Levotat OZ 250mg/500mg Tablet', 'Asgard Labs Private Limited', 'Levotat OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levotat OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(4833, 'Levotax 250mg Tablet', 'B.J.Healthcare', 'Levotax 250mg Tablet', 'Is Levotax 250mg Tablet safe?', 'Levotax 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4834, 'Levotax 250mg Tablet', 'B.J.Healthcare', 'Levotax 250mg Tablet', 'What if I forget to take a dose of Levotax 250mg Tablet?', 'If you forget a dose of Levotax 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4835, 'Levotax 250mg Tablet', 'B.J.Healthcare', 'Levotax 250mg Tablet', 'Can the use of Levotax 250mg Tablet cause diarrhea?', 'Yes, the use of Levotax 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4836, 'Levotax 250mg Tablet', 'B.J.Healthcare', 'Levotax 250mg Tablet', 'Can I stop taking Levotax 250mg Tablet when I feel better?', 'No, do not stop taking Levotax 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotax 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotax 250mg Tablet in the dose and duration advised by the doctor.'),
(4837, 'Levotax 250mg Tablet', 'B.J.Healthcare', 'Levotax 250mg Tablet', 'Can the use of Levotax 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotax 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotax 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4838, 'Levotax 500 Tablet', 'B.J.Healthcare', 'Levotax 500 Tablet', 'Is Levotax 500 Tablet safe?', 'Levotax 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4839, 'Levotax 500 Tablet', 'B.J.Healthcare', 'Levotax 500 Tablet', 'What if I forget to take a dose of Levotax 500 Tablet?', 'If you forget a dose of Levotax 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4840, 'Levotax 500 Tablet', 'B.J.Healthcare', 'Levotax 500 Tablet', 'Can the use of Levotax 500 Tablet cause diarrhea?', 'Yes, the use of Levotax 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4841, 'Levotax 500 Tablet', 'B.J.Healthcare', 'Levotax 500 Tablet', 'Can I stop taking Levotax 500 Tablet when I feel better?', 'No, do not stop taking Levotax 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotax 500 Tablet too early, the symptoms may return or worsen. Continue taking Levotax 500 Tablet in the dose and duration advised by the doctor.'),
(4842, 'Levotax 500 Tablet', 'B.J.Healthcare', 'Levotax 500 Tablet', 'Can the use of Levotax 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levotax 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotax 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4843, 'Levotaz 5mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz 5mg Tablet (Synergy Pharmaceuticals)', 'Is Levotaz 5mg Tablet a steroid? What is it used for?', 'No, Levotaz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4844, 'Levotaz 5mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz 5mg Tablet (Synergy Pharmaceuticals)', 'Does Levotaz 5mg Tablet make you tired and drowsy?', 'Yes, Levotaz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4845, 'Levotaz 5mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz 5mg Tablet (Synergy Pharmaceuticals)', 'How long does it take for Levotaz 5mg Tablet to work?', 'Levotaz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4846, 'Levotaz 5mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz 5mg Tablet (Synergy Pharmaceuticals)', 'Can I take Levotaz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotaz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4847, 'Levotaz 5mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz 5mg Tablet (Synergy Pharmaceuticals)', 'Is it safe to take Levotaz 5mg Tablet for a long time?', 'Levotaz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotaz 5mg Tablet for only as long as you need it.'),
(4848, 'Levotaz 5mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz 5mg Tablet (Synergy Pharmaceuticals)', 'For how long should I continue Levotaz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotaz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotaz 5mg Tablet'),
(4849, 'Levotaz 5mg Tablet', '3D Healthcare', 'Levotaz 5mg Tablet (3D Healthcare)', 'Is Levotaz 5mg Tablet a steroid? What is it used for?', 'No, Levotaz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4850, 'Levotaz 5mg Tablet', '3D Healthcare', 'Levotaz 5mg Tablet (3D Healthcare)', 'Does Levotaz 5mg Tablet make you tired and drowsy?', 'Yes, Levotaz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4851, 'Levotaz 5mg Tablet', '3D Healthcare', 'Levotaz 5mg Tablet (3D Healthcare)', 'How long does it take for Levotaz 5mg Tablet to work?', 'Levotaz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4852, 'Levotaz 5mg Tablet', '3D Healthcare', 'Levotaz 5mg Tablet (3D Healthcare)', 'Can I take Levotaz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotaz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4853, 'Levotaz 5mg Tablet', '3D Healthcare', 'Levotaz 5mg Tablet (3D Healthcare)', 'Is it safe to take Levotaz 5mg Tablet for a long time?', 'Levotaz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotaz 5mg Tablet for only as long as you need it.'),
(4854, 'Levotaz 5mg Tablet', '3D Healthcare', 'Levotaz 5mg Tablet (3D Healthcare)', 'For how long should I continue Levotaz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotaz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotaz 5mg Tablet'),
(4855, 'Levotaz M 5mg/10mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz M 5mg/10mg Tablet (Synergy Pharmaceuticals)', 'What is Levotaz M 5mg/10mg Tablet?', 'Levotaz M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4856, 'Levotaz M 5mg/10mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz M 5mg/10mg Tablet (Synergy Pharmaceuticals)', 'Can the use of Levotaz M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotaz M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4857, 'Levotaz M 5mg/10mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz M 5mg/10mg Tablet (Synergy Pharmaceuticals)', 'Can Levotaz M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotaz M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4858, 'Levotaz M 5mg/10mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz M 5mg/10mg Tablet (Synergy Pharmaceuticals)', 'Can the use of Levotaz M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotaz M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4859, 'Levotaz M 5mg/10mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz M 5mg/10mg Tablet (Synergy Pharmaceuticals)', 'Can I drink alcohol while taking Levotaz M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotaz M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotaz M 5mg/10mg Tablet.'),
(4860, 'Levotaz M 5mg/10mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz M 5mg/10mg Tablet (Synergy Pharmaceuticals)', 'Will Levotaz M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotaz M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4861, 'Levotaz M 5mg/10mg Tablet', 'Synergy Pharmaceuticals', 'Levotaz M 5mg/10mg Tablet (Synergy Pharmaceuticals)', 'What are the instructions for storage and disposal of Levotaz M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4862, 'Levotaz M 5mg/10mg Tablet', '3D Healthcare', 'Levotaz M 5mg/10mg Tablet (3D Healthcare)', 'What is Levotaz M 5mg/10mg Tablet?', 'Levotaz M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4863, 'Levotaz M 5mg/10mg Tablet', '3D Healthcare', 'Levotaz M 5mg/10mg Tablet (3D Healthcare)', 'Can the use of Levotaz M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotaz M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4864, 'Levotaz M 5mg/10mg Tablet', '3D Healthcare', 'Levotaz M 5mg/10mg Tablet (3D Healthcare)', 'Can Levotaz M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotaz M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4865, 'Levotaz M 5mg/10mg Tablet', '3D Healthcare', 'Levotaz M 5mg/10mg Tablet (3D Healthcare)', 'Can the use of Levotaz M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotaz M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4866, 'Levotaz M 5mg/10mg Tablet', '3D Healthcare', 'Levotaz M 5mg/10mg Tablet (3D Healthcare)', 'Can I drink alcohol while taking Levotaz M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotaz M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotaz M 5mg/10mg Tablet.'),
(4867, 'Levotaz M 5mg/10mg Tablet', '3D Healthcare', 'Levotaz M 5mg/10mg Tablet (3D Healthcare)', 'Will Levotaz M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotaz M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4868, 'Levotaz M 5mg/10mg Tablet', '3D Healthcare', 'Levotaz M 5mg/10mg Tablet (3D Healthcare)', 'What are the instructions for storage and disposal of Levotaz M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4869, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4870, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'Can I decrease the dose of Levotaz M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4871, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'How should Levotaz M Kid Syrup be stored?', 'Levotaz M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4872, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'Can Levotaz M Kid Syrup make my child sleepy?', 'Levotaz M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4873, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotaz M Kid Syrup?', 'No, don’t start Levotaz M Kid Syrup without speaking to your child’s doctor. Moreover, Levotaz M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4874, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotaz M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4875, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotaz M Kid Syrup to my child?', 'Some studies show that Levotaz M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4876, 'Levotaz M Kid Syrup', '3D Healthcare', 'Levotaz M Kid Syrup', 'Can I use Levotaz M Kid Syrup for treating acute asthma attacks in my child?', 'Levotaz M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4877, 'Levotaz P Tablet', '3D Healthcare', 'Levotaz P Tablet', 'What is Levotaz P Tablet?', 'Levotaz P Tablet is the combination of Ambroxol, Levocetirizine, Paracetamol / Acetaminophen and Phenylephrine and is used in the treatment of common cold.'),
(4878, 'Levotaz P Tablet', '3D Healthcare', 'Levotaz P Tablet', 'Can the use of Levotaz P Tablet cause nausea and vomiting?', 'Yes, the use of Levotaz P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(4879, 'Levotaz P Tablet', '3D Healthcare', 'Levotaz P Tablet', 'Can the use of Levotaz P Tablet cause dizziness?', 'Yes, the use of Levotaz P Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(4880, 'Levotaz P Tablet', '3D Healthcare', 'Levotaz P Tablet', 'Are there any specific contraindications associated with the use of Levotaz P Tablet?', 'The use of Levotaz P Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine and in patients with gastric ulcers, liver or kidney problems.'),
(4881, 'Levotaz P Tablet', '3D Healthcare', 'Levotaz P Tablet', 'What are the recommended storage conditions for Levotaz P Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(4882, 'Levoteam 500mg Tablet', 'Bioteam Pharmaceutical Private Limited', 'Levoteam 500mg Tablet', 'Q. Is Levoteam 500mg Tablet safe?', 'Levoteam 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4883, 'Levoteam 500mg Tablet', 'Bioteam Pharmaceutical Private Limited', 'Levoteam 500mg Tablet', 'Q. What if I forget to take a dose of Levoteam 500mg Tablet?', 'If you forget a dose of Levoteam 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4884, 'Levoteam 500mg Tablet', 'Bioteam Pharmaceutical Private Limited', 'Levoteam 500mg Tablet', 'Q. Can the use of Levoteam 500mg Tablet cause diarrhea?', 'Yes, the use of Levoteam 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4885, 'Levoteam 500mg Tablet', 'Bioteam Pharmaceutical Private Limited', 'Levoteam 500mg Tablet', 'Q. Can I stop taking Levoteam 500mg Tablet when I feel better?', 'No, do not stop taking Levoteam 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoteam 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoteam 500mg Tablet in the dose and duration advised by the doctor.'),
(4886, 'Levoteam 500mg Tablet', 'Bioteam Pharmaceutical Private Limited', 'Levoteam 500mg Tablet', 'Q. Can the use of Levoteam 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoteam 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoteam 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4887, 'Levotec 250mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 250mg Tablet', 'Is Levotec 250mg Tablet safe?', 'Levotec 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4888, 'Levotec 250mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 250mg Tablet', 'What if I forget to take a dose of Levotec 250mg Tablet?', 'If you forget a dose of Levotec 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4889, 'Levotec 250mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 250mg Tablet', 'Can the use of Levotec 250mg Tablet cause diarrhea?', 'Yes, the use of Levotec 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4890, 'Levotec 250mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 250mg Tablet', 'Can I stop taking Levotec 250mg Tablet when I feel better?', 'No, do not stop taking Levotec 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotec 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotec 250mg Tablet in the dose and duration advised by the doctor.'),
(4891, 'Levotec 250mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 250mg Tablet', 'Can the use of Levotec 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotec 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotec 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4892, 'Levotec 500mg Tablet', 'Technica Lab Pvt Ltd', 'Levotec 500mg Tablet (Technica Lab Pvt Ltd)', 'Is Levotec 500mg Tablet safe?', 'Levotec 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4893, 'Levotec 500mg Tablet', 'Technica Lab Pvt Ltd', 'Levotec 500mg Tablet (Technica Lab Pvt Ltd)', 'What if I forget to take a dose of Levotec 500mg Tablet?', 'If you forget a dose of Levotec 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4894, 'Levotec 500mg Tablet', 'Technica Lab Pvt Ltd', 'Levotec 500mg Tablet (Technica Lab Pvt Ltd)', 'Can the use of Levotec 500mg Tablet cause diarrhea?', 'Yes, the use of Levotec 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4895, 'Levotec 500mg Tablet', 'Technica Lab Pvt Ltd', 'Levotec 500mg Tablet (Technica Lab Pvt Ltd)', 'Can I stop taking Levotec 500mg Tablet when I feel better?', 'No, do not stop taking Levotec 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotec 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotec 500mg Tablet in the dose and duration advised by the doctor.'),
(4896, 'Levotec 500mg Tablet', 'Technica Lab Pvt Ltd', 'Levotec 500mg Tablet (Technica Lab Pvt Ltd)', 'Can the use of Levotec 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotec 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotec 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4897, 'Levotec 500mg Tablet', 'Servocare Lifesciences Pvt Ltd', 'Levotec 500mg Tablet (Servocare Lifesciences Pvt Ltd)', 'Is Levotec 500mg Tablet safe?', 'Levotec 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4898, 'Levotec 500mg Tablet', 'Servocare Lifesciences Pvt Ltd', 'Levotec 500mg Tablet (Servocare Lifesciences Pvt Ltd)', 'What if I forget to take a dose of Levotec 500mg Tablet?', 'If you forget a dose of Levotec 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(4899, 'Levotec 500mg Tablet', 'Servocare Lifesciences Pvt Ltd', 'Levotec 500mg Tablet (Servocare Lifesciences Pvt Ltd)', 'Can the use of Levotec 500mg Tablet cause diarrhea?', 'Yes, the use of Levotec 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4900, 'Levotec 500mg Tablet', 'Servocare Lifesciences Pvt Ltd', 'Levotec 500mg Tablet (Servocare Lifesciences Pvt Ltd)', 'Can I stop taking Levotec 500mg Tablet when I feel better?', 'No, do not stop taking Levotec 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotec 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotec 500mg Tablet in the dose and duration advised by the doctor.'),
(4901, 'Levotec 500mg Tablet', 'Servocare Lifesciences Pvt Ltd', 'Levotec 500mg Tablet (Servocare Lifesciences Pvt Ltd)', 'Can the use of Levotec 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotec 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotec 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4902, 'Levotec 750mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 750mg Tablet', 'Is Levotec 750mg Tablet safe?', 'Levotec 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4903, 'Levotec 750mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 750mg Tablet', 'What if I forget to take a dose of Levotec 750mg Tablet?', 'If you forget a dose of Levotec 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4904, 'Levotec 750mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 750mg Tablet', 'Can the use of Levotec 750mg Tablet cause diarrhea?', 'Yes, the use of Levotec 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4905, 'Levotec 750mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 750mg Tablet', 'Can I stop taking Levotec 750mg Tablet when I feel better?', 'No, do not stop taking Levotec 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotec 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotec 750mg Tablet in the dose and duration advised by the doctor.'),
(4906, 'Levotec 750mg Tablet', 'United Biotech Pvt Ltd', 'Levotec 750mg Tablet', 'Can the use of Levotec 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotec 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotec 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4907, 'Levotech 250mg Tablet', 'Protech Biosystems', 'Levotech 250mg Tablet', 'Is Levotech 250mg Tablet safe?', 'Levotech 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4908, 'Levotech 250mg Tablet', 'Protech Biosystems', 'Levotech 250mg Tablet', 'What if I forget to take a dose of Levotech 250mg Tablet?', 'If you forget a dose of Levotech 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4909, 'Levotech 250mg Tablet', 'Protech Biosystems', 'Levotech 250mg Tablet', 'Can the use of Levotech 250mg Tablet cause diarrhea?', 'Yes, the use of Levotech 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4910, 'Levotech 250mg Tablet', 'Protech Biosystems', 'Levotech 250mg Tablet', 'Can I stop taking Levotech 250mg Tablet when I feel better?', 'No, do not stop taking Levotech 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotech 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotech 250mg Tablet in the dose and duration advised by the doctor.'),
(4911, 'Levotech 250mg Tablet', 'Protech Biosystems', 'Levotech 250mg Tablet', 'Can the use of Levotech 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotech 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotech 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4912, 'Levotech 500mg Tablet', 'Protech Biosystems', 'Levotech 500mg Tablet (Protech Biosystems)', 'Is Levotech 500mg Tablet safe?', 'Levotech 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4913, 'Levotech 500mg Tablet', 'Protech Biosystems', 'Levotech 500mg Tablet (Protech Biosystems)', 'What if I forget to take a dose of Levotech 500mg Tablet?', 'If you forget a dose of Levotech 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4914, 'Levotech 500mg Tablet', 'Protech Biosystems', 'Levotech 500mg Tablet (Protech Biosystems)', 'Can the use of Levotech 500mg Tablet cause diarrhea?', 'Yes, the use of Levotech 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4915, 'Levotech 500mg Tablet', 'Protech Biosystems', 'Levotech 500mg Tablet (Protech Biosystems)', 'Can I stop taking Levotech 500mg Tablet when I feel better?', 'No, do not stop taking Levotech 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotech 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotech 500mg Tablet in the dose and duration advised by the doctor.'),
(4916, 'Levotech 500mg Tablet', 'Protech Biosystems', 'Levotech 500mg Tablet (Protech Biosystems)', 'Can the use of Levotech 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotech 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotech 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4917, 'Levotech 500mg Tablet', 'NG Healthcare Pvt Ltd', 'Levotech 500mg Tablet (NG Healthcare Pvt Ltd)', 'Is Levotech 500mg Tablet safe?', 'Levotech 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4918, 'Levotech 500mg Tablet', 'NG Healthcare Pvt Ltd', 'Levotech 500mg Tablet (NG Healthcare Pvt Ltd)', 'What if I forget to take a dose of Levotech 500mg Tablet?', 'If you forget a dose of Levotech 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4919, 'Levotech 500mg Tablet', 'NG Healthcare Pvt Ltd', 'Levotech 500mg Tablet (NG Healthcare Pvt Ltd)', 'Can the use of Levotech 500mg Tablet cause diarrhea?', 'Yes, the use of Levotech 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4920, 'Levotech 500mg Tablet', 'NG Healthcare Pvt Ltd', 'Levotech 500mg Tablet (NG Healthcare Pvt Ltd)', 'Can I stop taking Levotech 500mg Tablet when I feel better?', 'No, do not stop taking Levotech 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotech 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotech 500mg Tablet in the dose and duration advised by the doctor.'),
(4921, 'Levotech 500mg Tablet', 'NG Healthcare Pvt Ltd', 'Levotech 500mg Tablet (NG Healthcare Pvt Ltd)', 'Can the use of Levotech 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotech 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotech 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4922, 'Levotek 500mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 500mg Tablet', 'Is Levotek 500mg Tablet safe?', 'Levotek 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4923, 'Levotek 500mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 500mg Tablet', 'What if I forget to take a dose of Levotek 500mg Tablet?', 'If you forget a dose of Levotek 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4924, 'Levotek 500mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 500mg Tablet', 'Can the use of Levotek 500mg Tablet cause diarrhea?', 'Yes, the use of Levotek 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4925, 'Levotek 500mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 500mg Tablet', 'Can I stop taking Levotek 500mg Tablet when I feel better?', 'No, do not stop taking Levotek 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotek 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotek 500mg Tablet in the dose and duration advised by the doctor.'),
(4926, 'Levotek 500mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 500mg Tablet', 'Can the use of Levotek 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotek 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotek 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4927, 'Levotek 5mg Tablet', 'Anitek Lifecare', 'Levotek 5mg Tablet', 'Is Levotek 5mg Tablet a steroid? What is it used for?', 'No, Levotek 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4928, 'Levotek 5mg Tablet', 'Anitek Lifecare', 'Levotek 5mg Tablet', 'Does Levotek 5mg Tablet make you tired and drowsy?', 'Yes, Levotek 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4929, 'Levotek 5mg Tablet', 'Anitek Lifecare', 'Levotek 5mg Tablet', 'How long does it take for Levotek 5mg Tablet to work?', 'Levotek 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4930, 'Levotek 5mg Tablet', 'Anitek Lifecare', 'Levotek 5mg Tablet', 'Can I take Levotek 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotek 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4931, 'Levotek 5mg Tablet', 'Anitek Lifecare', 'Levotek 5mg Tablet', 'Is it safe to take Levotek 5mg Tablet for a long time?', 'Levotek 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotek 5mg Tablet for only as long as you need it.'),
(4932, 'Levotek 5mg Tablet', 'Anitek Lifecare', 'Levotek 5mg Tablet', 'For how long should I continue Levotek 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotek 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotek 5mg Tablet'),
(4933, 'Levotek 750mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 750mg Tablet', 'Is Levotek 750mg Tablet safe?', 'Levotek 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4934, 'Levotek 750mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 750mg Tablet', 'What if I forget to take a dose of Levotek 750mg Tablet?', 'If you forget a dose of Levotek 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4935, 'Levotek 750mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 750mg Tablet', 'Can the use of Levotek 750mg Tablet cause diarrhea?', 'Yes, the use of Levotek 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4936, 'Levotek 750mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 750mg Tablet', 'Can I stop taking Levotek 750mg Tablet when I feel better?', 'No, do not stop taking Levotek 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotek 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotek 750mg Tablet in the dose and duration advised by the doctor.'),
(4937, 'Levotek 750mg Tablet', 'Mbp Pharmaceuticals Pvt Ltd', 'Levotek 750mg Tablet', 'Can the use of Levotek 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotek 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotek 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(4938, 'Levotek M 5mg/10mg Tablet', 'Anitek Lifecare', 'Levotek M 5mg/10mg Tablet', 'What is Levotek M 5mg/10mg Tablet?', 'Levotek M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4939, 'Levotek M 5mg/10mg Tablet', 'Anitek Lifecare', 'Levotek M 5mg/10mg Tablet', 'Can the use of Levotek M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotek M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4940, 'Levotek M 5mg/10mg Tablet', 'Anitek Lifecare', 'Levotek M 5mg/10mg Tablet', 'Can Levotek M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotek M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4941, 'Levotek M 5mg/10mg Tablet', 'Anitek Lifecare', 'Levotek M 5mg/10mg Tablet', 'Can the use of Levotek M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotek M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4942, 'Levotek M 5mg/10mg Tablet', 'Anitek Lifecare', 'Levotek M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotek M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotek M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotek M 5mg/10mg Tablet.'),
(4943, 'Levotek M 5mg/10mg Tablet', 'Anitek Lifecare', 'Levotek M 5mg/10mg Tablet', 'Will Levotek M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotek M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4944, 'Levotek M 5mg/10mg Tablet', 'Anitek Lifecare', 'Levotek M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotek M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4945, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4946, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'Can I decrease the dose of Levotek M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4947, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'How should Levotek M Syrup be stored?', 'Levotek M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4948, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'Can Levotek M Syrup make my child sleepy?', 'Levotek M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4949, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotek M Syrup?', 'No, don’t start Levotek M Syrup without speaking to your child’s doctor. Moreover, Levotek M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4950, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotek M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4951, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotek M Syrup to my child?', 'Some studies show that Levotek M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4952, 'Levotek M Syrup', 'Anitek Lifecare', 'Levotek M Syrup', 'Can I use Levotek M Syrup for treating acute asthma attacks in my child?', 'Levotek M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4953, 'Levotek-M Tablet', 'Walfs Pharma Pvt Ltd', 'Levotek-M Tablet', 'What is Levotek-M Tablet?', 'Levotek-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4954, 'Levotek-M Tablet', 'Walfs Pharma Pvt Ltd', 'Levotek-M Tablet', 'Can the use of Levotek-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotek-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4955, 'Levotek-M Tablet', 'Walfs Pharma Pvt Ltd', 'Levotek-M Tablet', 'Can Levotek-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotek-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4956, 'Levotek-M Tablet', 'Walfs Pharma Pvt Ltd', 'Levotek-M Tablet', 'Can the use of Levotek-M Tablet cause dry mouth?', 'Yes, the use of Levotek-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4957, 'Levotek-M Tablet', 'Walfs Pharma Pvt Ltd', 'Levotek-M Tablet', 'Can I drink alcohol while taking Levotek-M Tablet?', 'No, do not take alcohol while taking Levotek-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotek-M Tablet.'),
(4958, 'Levotek-M Tablet', 'Walfs Pharma Pvt Ltd', 'Levotek-M Tablet', 'Will Levotek-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotek-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4959, 'Levotek-M Tablet', 'Walfs Pharma Pvt Ltd', 'Levotek-M Tablet', 'What are the instructions for storage and disposal of Levotek-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4960, 'Levotel 10mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 10mg Tablet', 'Is Levotel 10mg Tablet a steroid? What is it used for?', 'No, Levotel 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4961, 'Levotel 10mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 10mg Tablet', 'Does Levotel 10mg Tablet make you tired and drowsy?', 'Yes, Levotel 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4962, 'Levotel 10mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 10mg Tablet', 'How long does it take for Levotel 10mg Tablet to work?', 'Levotel 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4963, 'Levotel 10mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 10mg Tablet', 'Can I take Levotel 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotel 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4964, 'Levotel 10mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 10mg Tablet', 'Is it safe to take Levotel 10mg Tablet for a long time?', 'Levotel 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotel 10mg Tablet for only as long as you need it.'),
(4965, 'Levotel 10mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 10mg Tablet', 'For how long should I continue Levotel 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotel 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotel 10mg Tablet'),
(4966, 'Levotel 5mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 5mg Tablet', 'Is Levotel 5mg Tablet a steroid? What is it used for?', 'No, Levotel 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(4967, 'Levotel 5mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 5mg Tablet', 'Does Levotel 5mg Tablet make you tired and drowsy?', 'Yes, Levotel 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(4968, 'Levotel 5mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 5mg Tablet', 'How long does it take for Levotel 5mg Tablet to work?', 'Levotel 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(4969, 'Levotel 5mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 5mg Tablet', 'Can I take Levotel 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotel 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(4970, 'Levotel 5mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 5mg Tablet', 'Is it safe to take Levotel 5mg Tablet for a long time?', 'Levotel 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotel 5mg Tablet for only as long as you need it.'),
(4971, 'Levotel 5mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel 5mg Tablet', 'For how long should I continue Levotel 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotel 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotel 5mg Tablet'),
(4972, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4973, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'Can I decrease the dose of Levotel-M Kid DT Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4974, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'How should Levotel-M Kid DT Tablet be stored?', 'Levotel-M Kid DT Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4975, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'Can Levotel-M Kid DT Tablet make my child sleepy?', 'Levotel-M Kid DT Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4976, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotel-M Kid DT Tablet?', 'No, don’t start Levotel-M Kid DT Tablet without speaking to your child’s doctor. Moreover, Levotel-M Kid DT Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4977, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotel-M Kid DT Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4978, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levotel-M Kid DT Tablet to my child?', 'Some studies show that Levotel-M Kid DT Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4979, 'Levotel-M Kid DT Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Kid DT Tablet', 'Can I use Levotel-M Kid DT Tablet for treating acute asthma attacks in my child?', 'Levotel-M Kid DT Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4980, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(4981, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. Can I decrease the dose of Levotel-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(4982, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. How should Levotel-M Syrup be stored?', 'Levotel-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(4983, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. Can Levotel-M Syrup make my child sleepy?', 'Levotel-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(4984, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotel-M Syrup?', 'No, don’t start Levotel-M Syrup without speaking to your child’s doctor. Moreover, Levotel-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(4985, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotel-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(4986, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. My child is suffering from a mood disorder. Is it safe to give Levotel-M Syrup to my child?', 'Some studies show that Levotel-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(4987, 'Levotel-M Syrup', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Syrup', 'Q. Can I use Levotel-M Syrup for treating acute asthma attacks in my child?', 'Levotel-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(4988, 'Levotel-M Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Tablet', 'What is Levotel-M Tablet?', 'Levotel-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(4989, 'Levotel-M Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Tablet', 'Can the use of Levotel-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotel-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(4990, 'Levotel-M Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Tablet', 'Can Levotel-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotel-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(4991, 'Levotel-M Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Tablet', 'Can the use of Levotel-M Tablet cause dry mouth?', 'Yes, the use of Levotel-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(4992, 'Levotel-M Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Tablet', 'Can I drink alcohol while taking Levotel-M Tablet?', 'No, do not take alcohol while taking Levotel-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotel-M Tablet.'),
(4993, 'Levotel-M Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Tablet', 'Will Levotel-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotel-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(4994, 'Levotel-M Tablet', 'Grapple Life Sciences Pvt Ltd', 'Levotel-M Tablet', 'What are the instructions for storage and disposal of Levotel-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(4995, 'Levotem 500mg Tablet', 'Profic Organic Ltd', 'Levotem 500mg Tablet', 'Is Levotem 500mg Tablet safe?', 'Levotem 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(4996, 'Levotem 500mg Tablet', 'Profic Organic Ltd', 'Levotem 500mg Tablet', 'What if I forget to take a dose of Levotem 500mg Tablet?', 'If you forget a dose of Levotem 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(4997, 'Levotem 500mg Tablet', 'Profic Organic Ltd', 'Levotem 500mg Tablet', 'Can the use of Levotem 500mg Tablet cause diarrhea?', 'Yes, the use of Levotem 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(4998, 'Levotem 500mg Tablet', 'Profic Organic Ltd', 'Levotem 500mg Tablet', 'Can I stop taking Levotem 500mg Tablet when I feel better?', 'No, do not stop taking Levotem 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotem 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotem 500mg Tablet in the dose and duration advised by the doctor.'),
(4999, 'Levotem 500mg Tablet', 'Profic Organic Ltd', 'Levotem 500mg Tablet', 'Can the use of Levotem 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotem 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotem 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5000, 'Levoter M 5mg/10mg Tablet', 'Bluewaterresearch', 'Levoter M 5mg/10mg Tablet', 'Q. What is Levoter M 5mg/10mg Tablet?', 'Levoter M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5001, 'Levoter M 5mg/10mg Tablet', 'Bluewaterresearch', 'Levoter M 5mg/10mg Tablet', 'Q. Can the use of Levoter M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoter M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5002, 'Levoter M 5mg/10mg Tablet', 'Bluewaterresearch', 'Levoter M 5mg/10mg Tablet', 'Q. Can Levoter M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoter M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5003, 'Levoter M 5mg/10mg Tablet', 'Bluewaterresearch', 'Levoter M 5mg/10mg Tablet', 'Q. Can the use of Levoter M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoter M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5004, 'Levoter M 5mg/10mg Tablet', 'Bluewaterresearch', 'Levoter M 5mg/10mg Tablet', 'Q. Can I drink alcohol while taking Levoter M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoter M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoter M 5mg/10mg Tablet.'),
(5005, 'Levoter M 5mg/10mg Tablet', 'Bluewaterresearch', 'Levoter M 5mg/10mg Tablet', 'Q. Will Levoter M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoter M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5006, 'Levoter M 5mg/10mg Tablet', 'Bluewaterresearch', 'Levoter M 5mg/10mg Tablet', 'Q. What are the instructions for storage and disposal of Levoter M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5007, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5008, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'Can I decrease the dose of Levoter M Kid 2.5mg/5mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5009, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'How should Levoter M Kid 2.5mg/5mg Tablet be stored?', 'Levoter M Kid 2.5mg/5mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5010, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'Can Levoter M Kid 2.5mg/5mg Tablet make my child sleepy?', 'Levoter M Kid 2.5mg/5mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5011, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoter M Kid 2.5mg/5mg Tablet?', 'No, don’t start Levoter M Kid 2.5mg/5mg Tablet without speaking to your child’s doctor. Moreover, Levoter M Kid 2.5mg/5mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5012, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoter M Kid 2.5mg/5mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5013, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levoter M Kid 2.5mg/5mg Tablet to my child?', 'Some studies show that Levoter M Kid 2.5mg/5mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5014, 'Levoter M Kid 2.5mg/5mg Tablet', 'Bluewaterresearch', 'Levoter M Kid 2.5mg/5mg Tablet', 'Can I use Levoter M Kid 2.5mg/5mg Tablet for treating acute asthma attacks in my child?', 'Levoter M Kid 2.5mg/5mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5015, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5016, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'Can I decrease the dose of Levoter M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5017, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'How should Levoter M Kid Syrup be stored?', 'Levoter M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5018, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'Can Levoter M Kid Syrup make my child sleepy?', 'Levoter M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5019, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoter M Kid Syrup?', 'No, don’t start Levoter M Kid Syrup without speaking to your child’s doctor. Moreover, Levoter M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5020, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoter M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5021, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoter M Kid Syrup to my child?', 'Some studies show that Levoter M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5022, 'Levoter M Kid Syrup', 'Bluewaterresearch', 'Levoter M Kid Syrup', 'Can I use Levoter M Kid Syrup for treating acute asthma attacks in my child?', 'Levoter M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5023, 'Levoteus M 5mg/10mg Tablet', 'Proteus Health Care Pvt Ltd', 'Levoteus M 5mg/10mg Tablet', 'What is Levoteus M 5mg/10mg Tablet?', 'Levoteus M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5024, 'Levoteus M 5mg/10mg Tablet', 'Proteus Health Care Pvt Ltd', 'Levoteus M 5mg/10mg Tablet', 'Can the use of Levoteus M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoteus M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5025, 'Levoteus M 5mg/10mg Tablet', 'Proteus Health Care Pvt Ltd', 'Levoteus M 5mg/10mg Tablet', 'Can Levoteus M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoteus M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5026, 'Levoteus M 5mg/10mg Tablet', 'Proteus Health Care Pvt Ltd', 'Levoteus M 5mg/10mg Tablet', 'Can the use of Levoteus M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoteus M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5027, 'Levoteus M 5mg/10mg Tablet', 'Proteus Health Care Pvt Ltd', 'Levoteus M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoteus M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoteus M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoteus M 5mg/10mg Tablet.'),
(5028, 'Levoteus M 5mg/10mg Tablet', 'Proteus Health Care Pvt Ltd', 'Levoteus M 5mg/10mg Tablet', 'Will Levoteus M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoteus M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5029, 'Levoteus M 5mg/10mg Tablet', 'Proteus Health Care Pvt Ltd', 'Levoteus M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoteus M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5030, 'Levotex 5mg Tablet', 'Avitec Pharma', 'Levotex 5mg Tablet', 'Is Levotex 5mg Tablet a steroid? What is it used for?', 'No, Levotex 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5031, 'Levotex 5mg Tablet', 'Avitec Pharma', 'Levotex 5mg Tablet', 'Does Levotex 5mg Tablet make you tired and drowsy?', 'Yes, Levotex 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5032, 'Levotex 5mg Tablet', 'Avitec Pharma', 'Levotex 5mg Tablet', 'How long does it take for Levotex 5mg Tablet to work?', 'Levotex 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5033, 'Levotex 5mg Tablet', 'Avitec Pharma', 'Levotex 5mg Tablet', 'Can I take Levotex 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotex 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5034, 'Levotex 5mg Tablet', 'Avitec Pharma', 'Levotex 5mg Tablet', 'Is it safe to take Levotex 5mg Tablet for a long time?', 'Levotex 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotex 5mg Tablet for only as long as you need it.'),
(5035, 'Levotex 5mg Tablet', 'Avitec Pharma', 'Levotex 5mg Tablet', 'For how long should I continue Levotex 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotex 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotex 5mg Tablet'),
(5036, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5037, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'Can I decrease the dose of Levotex M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5038, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'How should Levotex M Kid Syrup be stored?', 'Levotex M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5039, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'Can Levotex M Kid Syrup make my child sleepy?', 'Levotex M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5040, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotex M Kid Syrup?', 'No, don’t start Levotex M Kid Syrup without speaking to your child’s doctor. Moreover, Levotex M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5041, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotex M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5042, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotex M Kid Syrup to my child?', 'Some studies show that Levotex M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5043, 'Levotex M Kid Syrup', 'Avitec Pharma', 'Levotex M Kid Syrup', 'Can I use Levotex M Kid Syrup for treating acute asthma attacks in my child?', 'Levotex M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5044, 'Levotex-M Tablet', 'Avitec Pharma', 'Levotex-M Tablet', 'What is Levotex-M Tablet?', 'Levotex-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5045, 'Levotex-M Tablet', 'Avitec Pharma', 'Levotex-M Tablet', 'Can the use of Levotex-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotex-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5046, 'Levotex-M Tablet', 'Avitec Pharma', 'Levotex-M Tablet', 'Can Levotex-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotex-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5047, 'Levotex-M Tablet', 'Avitec Pharma', 'Levotex-M Tablet', 'Can the use of Levotex-M Tablet cause dry mouth?', 'Yes, the use of Levotex-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5048, 'Levotex-M Tablet', 'Avitec Pharma', 'Levotex-M Tablet', 'Can I drink alcohol while taking Levotex-M Tablet?', 'No, do not take alcohol while taking Levotex-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotex-M Tablet.'),
(5049, 'Levotex-M Tablet', 'Avitec Pharma', 'Levotex-M Tablet', 'Will Levotex-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotex-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5050, 'Levotex-M Tablet', 'Avitec Pharma', 'Levotex-M Tablet', 'What are the instructions for storage and disposal of Levotex-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5051, 'Levothaks 500 Tablet', 'Rexit Pharmaceutical', 'Levothaks 500 Tablet', 'Is Levothaks 500 Tablet safe?', 'Levothaks 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5052, 'Levothaks 500 Tablet', 'Rexit Pharmaceutical', 'Levothaks 500 Tablet', 'What if I forget to take a dose of Levothaks 500 Tablet?', 'If you forget a dose of Levothaks 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5053, 'Levothaks 500 Tablet', 'Rexit Pharmaceutical', 'Levothaks 500 Tablet', 'Can the use of Levothaks 500 Tablet cause diarrhea?', 'Yes, the use of Levothaks 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5054, 'Levothaks 500 Tablet', 'Rexit Pharmaceutical', 'Levothaks 500 Tablet', 'Can I stop taking Levothaks 500 Tablet when I feel better?', 'No, do not stop taking Levothaks 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levothaks 500 Tablet too early, the symptoms may return or worsen. Continue taking Levothaks 500 Tablet in the dose and duration advised by the doctor.'),
(5055, 'Levothaks 500 Tablet', 'Rexit Pharmaceutical', 'Levothaks 500 Tablet', 'Can the use of Levothaks 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levothaks 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levothaks 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5056, 'Levotic 250mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 250mg Tablet', 'Is Levotic 250mg Tablet safe?', 'Levotic 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5057, 'Levotic 250mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 250mg Tablet', 'What if I forget to take a dose of Levotic 250mg Tablet?', 'If you forget a dose of Levotic 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5058, 'Levotic 250mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 250mg Tablet', 'Can the use of Levotic 250mg Tablet cause diarrhea?', 'Yes, the use of Levotic 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5059, 'Levotic 250mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 250mg Tablet', 'Can I stop taking Levotic 250mg Tablet when I feel better?', 'No, do not stop taking Levotic 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotic 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotic 250mg Tablet in the dose and duration advised by the doctor.'),
(5060, 'Levotic 250mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 250mg Tablet', 'Can the use of Levotic 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotic 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotic 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5061, 'Levotic 500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 500mg Tablet', 'Is Levotic 500mg Tablet safe?', 'Levotic 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5062, 'Levotic 500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 500mg Tablet', 'What if I forget to take a dose of Levotic 500mg Tablet?', 'If you forget a dose of Levotic 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5063, 'Levotic 500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 500mg Tablet', 'Can the use of Levotic 500mg Tablet cause diarrhea?', 'Yes, the use of Levotic 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5064, 'Levotic 500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 500mg Tablet', 'Can I stop taking Levotic 500mg Tablet when I feel better?', 'No, do not stop taking Levotic 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotic 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotic 500mg Tablet in the dose and duration advised by the doctor.'),
(5065, 'Levotic 500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 500mg Tablet', 'Can the use of Levotic 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotic 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotic 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5066, 'Levotic 750mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 750mg Tablet', 'Is Levotic 750mg Tablet safe?', 'Levotic 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5067, 'Levotic 750mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 750mg Tablet', 'What if I forget to take a dose of Levotic 750mg Tablet?', 'If you forget a dose of Levotic 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5068, 'Levotic 750mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 750mg Tablet', 'Can the use of Levotic 750mg Tablet cause diarrhea?', 'Yes, the use of Levotic 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5069, 'Levotic 750mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 750mg Tablet', 'Can I stop taking Levotic 750mg Tablet when I feel better?', 'No, do not stop taking Levotic 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotic 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotic 750mg Tablet in the dose and duration advised by the doctor.'),
(5070, 'Levotic 750mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic 750mg Tablet', 'Can the use of Levotic 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotic 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotic 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5071, 'Levotic AZ 250mg/250mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic AZ 250mg/250mg Tablet', 'What if I don\'t get better after using Levotic AZ 250mg/250mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5072, 'Levotic AZ 250mg/250mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic AZ 250mg/250mg Tablet', 'What if I miss my dose?', 'Take Levotic AZ 250mg/250mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5073, 'Levotic OZ 250mg/500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levotic OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5074, 'Levotic OZ 250mg/500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic OZ 250mg/500mg Tablet', 'Can I stop taking Levotic OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levotic OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5075, 'Levotic OZ 250mg/500mg Tablet', 'Merril Pharma Pvt Ltd', 'Levotic OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levotic OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5076, 'Levotica 5 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5 Tablet', 'Is Levotica 5 Tablet a steroid? What is it used for?', 'No, Levotica 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5077, 'Levotica 5 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5 Tablet', 'Does Levotica 5 Tablet make you tired and drowsy?', 'Yes, Levotica 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5078, 'Levotica 5 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5 Tablet', 'How long does it take for Levotica 5 Tablet to work?', 'Levotica 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5079, 'Levotica 5 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5 Tablet', 'Can I take Levotica 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotica 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5080, 'Levotica 5 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5 Tablet', 'Is it safe to take Levotica 5 Tablet for a long time?', 'Levotica 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotica 5 Tablet for only as long as you need it.'),
(5081, 'Levotica 5 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5 Tablet', 'For how long should I continue Levotica 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotica 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotica 5 Tablet'),
(5082, 'Levotica 500 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 500 Tablet', 'Is Levotica 500 Tablet safe?', 'Levotica 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5083, 'Levotica 500 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 500 Tablet', 'What if I forget to take a dose of Levotica 500 Tablet?', 'If you forget a dose of Levotica 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5084, 'Levotica 500 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 500 Tablet', 'Can the use of Levotica 500 Tablet cause diarrhea?', 'Yes, the use of Levotica 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5085, 'Levotica 500 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 500 Tablet', 'Can I stop taking Levotica 500 Tablet when I feel better?', 'No, do not stop taking Levotica 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotica 500 Tablet too early, the symptoms may return or worsen. Continue taking Levotica 500 Tablet in the dose and duration advised by the doctor.'),
(5086, 'Levotica 500 Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 500 Tablet', 'Can the use of Levotica 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levotica 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotica 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5087, 'Levotica 5mg Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5mg Tablet', 'Is Levotica 5mg Tablet a steroid? What is it used for?', 'No, Levotica 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5088, 'Levotica 5mg Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5mg Tablet', 'Does Levotica 5mg Tablet make you tired and drowsy?', 'Yes, Levotica 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5089, 'Levotica 5mg Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5mg Tablet', 'How long does it take for Levotica 5mg Tablet to work?', 'Levotica 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5090, 'Levotica 5mg Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5mg Tablet', 'Can I take Levotica 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotica 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5091, 'Levotica 5mg Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5mg Tablet', 'Is it safe to take Levotica 5mg Tablet for a long time?', 'Levotica 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotica 5mg Tablet for only as long as you need it.'),
(5092, 'Levotica 5mg Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica 5mg Tablet', 'For how long should I continue Levotica 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotica 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotica 5mg Tablet'),
(5093, 'Levotica M 5mg/10mg Tablet', 'Juvetica Lifesciences', 'Levotica M 5mg/10mg Tablet', 'What is Levotica M 5mg/10mg Tablet?', 'Levotica M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5094, 'Levotica M 5mg/10mg Tablet', 'Juvetica Lifesciences', 'Levotica M 5mg/10mg Tablet', 'Can the use of Levotica M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotica M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5095, 'Levotica M 5mg/10mg Tablet', 'Juvetica Lifesciences', 'Levotica M 5mg/10mg Tablet', 'Can Levotica M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotica M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5096, 'Levotica M 5mg/10mg Tablet', 'Juvetica Lifesciences', 'Levotica M 5mg/10mg Tablet', 'Can the use of Levotica M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotica M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5097, 'Levotica M 5mg/10mg Tablet', 'Juvetica Lifesciences', 'Levotica M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotica M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotica M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotica M 5mg/10mg Tablet.'),
(5098, 'Levotica M 5mg/10mg Tablet', 'Juvetica Lifesciences', 'Levotica M 5mg/10mg Tablet', 'Will Levotica M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotica M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5099, 'Levotica M 5mg/10mg Tablet', 'Juvetica Lifesciences', 'Levotica M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotica M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5100, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5101, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'Can I decrease the dose of Levotica M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5102, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'How should Levotica M Syrup be stored?', 'Levotica M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5103, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'Can Levotica M Syrup make my child sleepy?', 'Levotica M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5104, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotica M Syrup?', 'No, don’t start Levotica M Syrup without speaking to your child’s doctor. Moreover, Levotica M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5105, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotica M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5106, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotica M Syrup to my child?', 'Some studies show that Levotica M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5107, 'Levotica M Syrup', 'Juvetica Lifesciences', 'Levotica M Syrup', 'Can I use Levotica M Syrup for treating acute asthma attacks in my child?', 'Levotica M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5108, 'Levotica-M Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica-M Tablet', 'What is Levotica-M Tablet?', 'Levotica-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5109, 'Levotica-M Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica-M Tablet', 'Can the use of Levotica-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotica-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5110, 'Levotica-M Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica-M Tablet', 'Can Levotica-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotica-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5111, 'Levotica-M Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica-M Tablet', 'Can the use of Levotica-M Tablet cause dry mouth?', 'Yes, the use of Levotica-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5112, 'Levotica-M Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica-M Tablet', 'Can I drink alcohol while taking Levotica-M Tablet?', 'No, do not take alcohol while taking Levotica-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotica-M Tablet.'),
(5113, 'Levotica-M Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica-M Tablet', 'Will Levotica-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotica-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5114, 'Levotica-M Tablet', 'Almatica Pharmaceuticals Private Limited', 'Levotica-M Tablet', 'What are the instructions for storage and disposal of Levotica-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5115, 'Levotif 5 Tablet', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif 5 Tablet', 'Is Levotif 5 Tablet a steroid? What is it used for?', 'No, Levotif 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5116, 'Levotif 5 Tablet', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif 5 Tablet', 'Does Levotif 5 Tablet make you tired and drowsy?', 'Yes, Levotif 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5117, 'Levotif 5 Tablet', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif 5 Tablet', 'How long does it take for Levotif 5 Tablet to work?', 'Levotif 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5118, 'Levotif 5 Tablet', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif 5 Tablet', 'Can I take Levotif 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotif 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5119, 'Levotif 5 Tablet', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif 5 Tablet', 'Is it safe to take Levotif 5 Tablet for a long time?', 'Levotif 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotif 5 Tablet for only as long as you need it.'),
(5120, 'Levotif 5 Tablet', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif 5 Tablet', 'For how long should I continue Levotif 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotif 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotif 5 Tablet'),
(5121, 'Levotif-AX Tablet SR', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-AX Tablet SR', 'Can the use of Levotif-AX Tablet SR cause dry mouth?', 'Yes, the use of Levotif-AX Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(5122, 'Levotif-AX Tablet SR', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-AX Tablet SR', 'Can I use Levotif-AX Tablet SR while breastfeeding?', 'No, Levotif-AX Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(5123, 'Levotif-AX Tablet SR', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-AX Tablet SR', 'Can I drink alcohol while taking Levotif-AX Tablet SR?', 'No, avoid drinking alcohol while taking Levotif-AX Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Levotif-AX Tablet SR.'),
(5124, 'Levotif-AX Tablet SR', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-AX Tablet SR', 'What are the instructions for the storage and disposal of Levotif-AX Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5125, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5126, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'Can I decrease the dose of Levotif-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5127, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'How should Levotif-M Syrup be stored?', 'Levotif-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5128, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'Can Levotif-M Syrup make my child sleepy?', 'Levotif-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5129, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotif-M Syrup?', 'No, don’t start Levotif-M Syrup without speaking to your child’s doctor. Moreover, Levotif-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5130, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotif-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5131, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotif-M Syrup to my child?', 'Some studies show that Levotif-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5132, 'Levotif-M Syrup', 'Hayaavedic Nutrapharmaceuticals Pvt Ltd', 'Levotif-M Syrup', 'Can I use Levotif-M Syrup for treating acute asthma attacks in my child?', 'Levotif-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5133, 'Levotil 500mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 500mg Tablet', 'Is Levotil 500mg Tablet safe?', 'Levotil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5134, 'Levotil 500mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 500mg Tablet', 'What if I forget to take a dose of Levotil 500mg Tablet?', 'If you forget a dose of Levotil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5135, 'Levotil 500mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 500mg Tablet', 'Can the use of Levotil 500mg Tablet cause diarrhea?', 'Yes, the use of Levotil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5136, 'Levotil 500mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 500mg Tablet', 'Can I stop taking Levotil 500mg Tablet when I feel better?', 'No, do not stop taking Levotil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotil 500mg Tablet in the dose and duration advised by the doctor.'),
(5137, 'Levotil 500mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 500mg Tablet', 'Can the use of Levotil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5138, 'Levotil 750mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 750mg Tablet', 'Is Levotil 750mg Tablet safe?', 'Levotil 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5139, 'Levotil 750mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 750mg Tablet', 'What if I forget to take a dose of Levotil 750mg Tablet?', 'If you forget a dose of Levotil 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5140, 'Levotil 750mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 750mg Tablet', 'Can the use of Levotil 750mg Tablet cause diarrhea?', 'Yes, the use of Levotil 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5141, 'Levotil 750mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 750mg Tablet', 'Can I stop taking Levotil 750mg Tablet when I feel better?', 'No, do not stop taking Levotil 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotil 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotil 750mg Tablet in the dose and duration advised by the doctor.'),
(5142, 'Levotil 750mg Tablet', 'Tycoon Pharmaceuticals Pvt Ltd', 'Levotil 750mg Tablet', 'Can the use of Levotil 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotil 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotil 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5143, 'Levotime 750mg Tablet', 'Endocare India', 'Levotime 750mg Tablet', 'Is Levotime 750mg Tablet safe?', 'Levotime 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5144, 'Levotime 750mg Tablet', 'Endocare India', 'Levotime 750mg Tablet', 'What if I forget to take a dose of Levotime 750mg Tablet?', 'If you forget a dose of Levotime 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5145, 'Levotime 750mg Tablet', 'Endocare India', 'Levotime 750mg Tablet', 'Can the use of Levotime 750mg Tablet cause diarrhea?', 'Yes, the use of Levotime 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5146, 'Levotime 750mg Tablet', 'Endocare India', 'Levotime 750mg Tablet', 'Can I stop taking Levotime 750mg Tablet when I feel better?', 'No, do not stop taking Levotime 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotime 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotime 750mg Tablet in the dose and duration advised by the doctor.'),
(5147, 'Levotime 750mg Tablet', 'Endocare India', 'Levotime 750mg Tablet', 'Can the use of Levotime 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotime 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotime 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5148, 'Levotin 5mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin 5mg Tablet', 'Is Levotin 5mg Tablet a steroid? What is it used for?', 'No, Levotin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5149, 'Levotin 5mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin 5mg Tablet', 'Does Levotin 5mg Tablet make you tired and drowsy?', 'Yes, Levotin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5150, 'Levotin 5mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin 5mg Tablet', 'How long does it take for Levotin 5mg Tablet to work?', 'Levotin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5151, 'Levotin 5mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin 5mg Tablet', 'Can I take Levotin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5152, 'Levotin 5mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin 5mg Tablet', 'Is it safe to take Levotin 5mg Tablet for a long time?', 'Levotin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotin 5mg Tablet for only as long as you need it.'),
(5153, 'Levotin 5mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin 5mg Tablet', 'For how long should I continue Levotin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotin 5mg Tablet'),
(5154, 'Levotin Plus 5 mg/10 mg Tablet', 'Molekule India Pvt Ltd', 'Levotin Plus 5 mg/10 mg Tablet', 'What is Levotin Plus 5 mg/10 mg Tablet?', 'Levotin Plus 5 mg/10 mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5155, 'Levotin Plus 5 mg/10 mg Tablet', 'Molekule India Pvt Ltd', 'Levotin Plus 5 mg/10 mg Tablet', 'Can the use of Levotin Plus 5 mg/10 mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotin Plus 5 mg/10 mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5156, 'Levotin Plus 5 mg/10 mg Tablet', 'Molekule India Pvt Ltd', 'Levotin Plus 5 mg/10 mg Tablet', 'Can Levotin Plus 5 mg/10 mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotin Plus 5 mg/10 mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5157, 'Levotin Plus 5 mg/10 mg Tablet', 'Molekule India Pvt Ltd', 'Levotin Plus 5 mg/10 mg Tablet', 'Can the use of Levotin Plus 5 mg/10 mg Tablet cause dry mouth?', 'Yes, the use of Levotin Plus 5 mg/10 mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5158, 'Levotin Plus 5 mg/10 mg Tablet', 'Molekule India Pvt Ltd', 'Levotin Plus 5 mg/10 mg Tablet', 'Can I drink alcohol while taking Levotin Plus 5 mg/10 mg Tablet?', 'No, do not take alcohol while taking Levotin Plus 5 mg/10 mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotin Plus 5 mg/10 mg Tablet.'),
(5159, 'Levotin Plus 5 mg/10 mg Tablet', 'Molekule India Pvt Ltd', 'Levotin Plus 5 mg/10 mg Tablet', 'Will Levotin Plus 5 mg/10 mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotin Plus 5 mg/10 mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5160, 'Levotin Plus 5 mg/10 mg Tablet', 'Molekule India Pvt Ltd', 'Levotin Plus 5 mg/10 mg Tablet', 'What are the instructions for storage and disposal of Levotin Plus 5 mg/10 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5161, 'Levotin Syrup', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin Syrup', 'Is Levotin Syrup a steroid? What is it used for?', 'No, Levotin Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5162, 'Levotin Syrup', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin Syrup', 'Does Levotin Syrup make you tired and drowsy?', 'Yes, Levotin Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5163, 'Levotin Syrup', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin Syrup', 'How long does it take for Levotin Syrup to work?', 'Levotin Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5164, 'Levotin Syrup', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin Syrup', 'Can I take Levotin Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotin Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5165, 'Levotin Syrup', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin Syrup', 'Is it safe to take Levotin Syrup for a long time?', 'Levotin Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotin Syrup for only as long as you need it.'),
(5166, 'Levotin Syrup', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotin Syrup', 'For how long should I continue Levotin Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotin Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Levotin Syrup'),
(5167, 'Levotine 5mg Tablet', 'Molekule India Pvt Ltd', 'Levotine 5mg Tablet (Molekule India Pvt Ltd)', 'Is Levotine 5mg Tablet a steroid? What is it used for?', 'No, Levotine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5168, 'Levotine 5mg Tablet', 'Molekule India Pvt Ltd', 'Levotine 5mg Tablet (Molekule India Pvt Ltd)', 'Does Levotine 5mg Tablet make you tired and drowsy?', 'Yes, Levotine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5169, 'Levotine 5mg Tablet', 'Molekule India Pvt Ltd', 'Levotine 5mg Tablet (Molekule India Pvt Ltd)', 'How long does it take for Levotine 5mg Tablet to work?', 'Levotine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5170, 'Levotine 5mg Tablet', 'Molekule India Pvt Ltd', 'Levotine 5mg Tablet (Molekule India Pvt Ltd)', 'Can I take Levotine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5171, 'Levotine 5mg Tablet', 'Molekule India Pvt Ltd', 'Levotine 5mg Tablet (Molekule India Pvt Ltd)', 'Is it safe to take Levotine 5mg Tablet for a long time?', 'Levotine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotine 5mg Tablet for only as long as you need it.'),
(5172, 'Levotine 5mg Tablet', 'Molekule India Pvt Ltd', 'Levotine 5mg Tablet (Molekule India Pvt Ltd)', 'For how long should I continue Levotine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotine 5mg Tablet'),
(5173, 'Levotine 5mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine 5mg Tablet (Tuttsan Pharma Pvt Ltd)', 'Is Levotine 5mg Tablet a steroid? What is it used for?', 'No, Levotine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5174, 'Levotine 5mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine 5mg Tablet (Tuttsan Pharma Pvt Ltd)', 'Does Levotine 5mg Tablet make you tired and drowsy?', 'Yes, Levotine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5175, 'Levotine 5mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine 5mg Tablet (Tuttsan Pharma Pvt Ltd)', 'How long does it take for Levotine 5mg Tablet to work?', 'Levotine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5176, 'Levotine 5mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine 5mg Tablet (Tuttsan Pharma Pvt Ltd)', 'Can I take Levotine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5177, 'Levotine 5mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine 5mg Tablet (Tuttsan Pharma Pvt Ltd)', 'Is it safe to take Levotine 5mg Tablet for a long time?', 'Levotine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotine 5mg Tablet for only as long as you need it.'),
(5178, 'Levotine 5mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine 5mg Tablet (Tuttsan Pharma Pvt Ltd)', 'For how long should I continue Levotine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotine 5mg Tablet'),
(5179, 'Levotine MT 5mg/10mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT 5mg/10mg Tablet', 'What is Levotine MT 5mg/10mg Tablet?', 'Levotine MT 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5180, 'Levotine MT 5mg/10mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT 5mg/10mg Tablet', 'Can the use of Levotine MT 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotine MT 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5181, 'Levotine MT 5mg/10mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT 5mg/10mg Tablet', 'Can Levotine MT 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotine MT 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5182, 'Levotine MT 5mg/10mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT 5mg/10mg Tablet', 'Can the use of Levotine MT 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotine MT 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5183, 'Levotine MT 5mg/10mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotine MT 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotine MT 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotine MT 5mg/10mg Tablet.'),
(5184, 'Levotine MT 5mg/10mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT 5mg/10mg Tablet', 'Will Levotine MT 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotine MT 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5185, 'Levotine MT 5mg/10mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotine MT 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5186, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5187, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'Can I decrease the dose of Levotine MT Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5188, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'How should Levotine MT Syrup be stored?', 'Levotine MT Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5189, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'Can Levotine MT Syrup make my child sleepy?', 'Levotine MT Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5190, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotine MT Syrup?', 'No, don’t start Levotine MT Syrup without speaking to your child’s doctor. Moreover, Levotine MT Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5191, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotine MT Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5192, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotine MT Syrup to my child?', 'Some studies show that Levotine MT Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5193, 'Levotine MT Syrup', 'Tuttsan Pharma Pvt Ltd', 'Levotine MT Syrup', 'Can I use Levotine MT Syrup for treating acute asthma attacks in my child?', 'Levotine MT Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5194, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5195, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'Can I decrease the dose of Levotiq M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5196, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'How should Levotiq M Syrup be stored?', 'Levotiq M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5197, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'Can Levotiq M Syrup make my child sleepy?', 'Levotiq M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5198, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotiq M Syrup?', 'No, don’t start Levotiq M Syrup without speaking to your child’s doctor. Moreover, Levotiq M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5199, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotiq M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5200, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotiq M Syrup to my child?', 'Some studies show that Levotiq M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5201, 'Levotiq M Syrup', 'Dycem Biotech Private Limited', 'Levotiq M Syrup', 'Can I use Levotiq M Syrup for treating acute asthma attacks in my child?', 'Levotiq M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5202, 'Levotiq M Tablet', 'Dycem Biotech Private Limited', 'Levotiq M Tablet', 'What is Levotiq M Tablet?', 'Levotiq M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5203, 'Levotiq M Tablet', 'Dycem Biotech Private Limited', 'Levotiq M Tablet', 'Can the use of Levotiq M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotiq M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5204, 'Levotiq M Tablet', 'Dycem Biotech Private Limited', 'Levotiq M Tablet', 'Can Levotiq M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotiq M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5205, 'Levotiq M Tablet', 'Dycem Biotech Private Limited', 'Levotiq M Tablet', 'Can the use of Levotiq M Tablet cause dry mouth?', 'Yes, the use of Levotiq M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5206, 'Levotiq M Tablet', 'Dycem Biotech Private Limited', 'Levotiq M Tablet', 'Can I drink alcohol while taking Levotiq M Tablet?', 'No, do not take alcohol while taking Levotiq M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotiq M Tablet.'),
(5207, 'Levotiq M Tablet', 'Dycem Biotech Private Limited', 'Levotiq M Tablet', 'Will Levotiq M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotiq M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5208, 'Levotiq M Tablet', 'Dycem Biotech Private Limited', 'Levotiq M Tablet', 'What are the instructions for storage and disposal of Levotiq M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5209, 'Levotiq Tablet 5mg', 'Dycem Biotech Private Limited', 'Levotiq Tablet 5mg', 'Is Levotiq Tablet 5mg a steroid? What is it used for?', 'No, Levotiq Tablet 5mg is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5210, 'Levotiq Tablet 5mg', 'Dycem Biotech Private Limited', 'Levotiq Tablet 5mg', 'Does Levotiq Tablet 5mg make you tired and drowsy?', 'Yes, Levotiq Tablet 5mg can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5211, 'Levotiq Tablet 5mg', 'Dycem Biotech Private Limited', 'Levotiq Tablet 5mg', 'How long does it take for Levotiq Tablet 5mg to work?', 'Levotiq Tablet 5mg starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5212, 'Levotiq Tablet 5mg', 'Dycem Biotech Private Limited', 'Levotiq Tablet 5mg', 'Can I take Levotiq Tablet 5mg and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotiq Tablet 5mg during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5213, 'Levotiq Tablet 5mg', 'Dycem Biotech Private Limited', 'Levotiq Tablet 5mg', 'Is it safe to take Levotiq Tablet 5mg for a long time?', 'Levotiq Tablet 5mg is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotiq Tablet 5mg for only as long as you need it.'),
(5214, 'Levotiq Tablet 5mg', 'Dycem Biotech Private Limited', 'Levotiq Tablet 5mg', 'For how long should I continue Levotiq Tablet 5mg?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotiq Tablet 5mg for a longer time. Talk to your doctor if you are unsure about the duration of using Levotiq Tablet 5mg'),
(5215, 'Levotis 5mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis 5mg Tablet', 'Is Levotis 5mg Tablet a steroid? What is it used for?', 'No, Levotis 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5216, 'Levotis 5mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis 5mg Tablet', 'Does Levotis 5mg Tablet make you tired and drowsy?', 'Yes, Levotis 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5217, 'Levotis 5mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis 5mg Tablet', 'How long does it take for Levotis 5mg Tablet to work?', 'Levotis 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5218, 'Levotis 5mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis 5mg Tablet', 'Can I take Levotis 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotis 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5219, 'Levotis 5mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis 5mg Tablet', 'Is it safe to take Levotis 5mg Tablet for a long time?', 'Levotis 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotis 5mg Tablet for only as long as you need it.'),
(5220, 'Levotis 5mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis 5mg Tablet', 'For how long should I continue Levotis 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotis 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotis 5mg Tablet'),
(5221, 'Levotis M 5mg/10mg Syrup', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Syrup', 'What is Levotis M 5mg/10mg Syrup?', 'Levotis M 5mg/10mg Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5222, 'Levotis M 5mg/10mg Syrup', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Syrup', 'Can the use of Levotis M 5mg/10mg Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotis M 5mg/10mg Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5223, 'Levotis M 5mg/10mg Syrup', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Syrup', 'Can Levotis M 5mg/10mg Syrup be stopped when allergy symptoms are relieved?', 'No, Levotis M 5mg/10mg Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5224, 'Levotis M 5mg/10mg Syrup', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Syrup', 'Can the use of Levotis M 5mg/10mg Syrup cause dry mouth?', 'Yes, the use of Levotis M 5mg/10mg Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5225, 'Levotis M 5mg/10mg Syrup', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Syrup', 'Can I drink alcohol while taking Levotis M 5mg/10mg Syrup?', 'No, do not take alcohol while taking Levotis M 5mg/10mg Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotis M 5mg/10mg Syrup.'),
(5226, 'Levotis M 5mg/10mg Syrup', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Syrup', 'Will Levotis M 5mg/10mg Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotis M 5mg/10mg Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5227, 'Levotis M 5mg/10mg Syrup', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Syrup', 'What are the instructions for storage and disposal of Levotis M 5mg/10mg Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5228, 'Levotis M 5mg/10mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Tablet', 'What is Levotis M 5mg/10mg Tablet?', 'Levotis M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5229, 'Levotis M 5mg/10mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Tablet', 'Can the use of Levotis M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotis M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5230, 'Levotis M 5mg/10mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Tablet', 'Can Levotis M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotis M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5231, 'Levotis M 5mg/10mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Tablet', 'Can the use of Levotis M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotis M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5232, 'Levotis M 5mg/10mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotis M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotis M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotis M 5mg/10mg Tablet.'),
(5233, 'Levotis M 5mg/10mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Tablet', 'Will Levotis M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotis M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5234, 'Levotis M 5mg/10mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Levotis M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotis M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5235, 'Levotis Syrup', 'Scott Edil Pharmacia Ltd', 'Levotis Syrup', 'Is Levotis Syrup a steroid? What is it used for?', 'No, Levotis Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5236, 'Levotis Syrup', 'Scott Edil Pharmacia Ltd', 'Levotis Syrup', 'Does Levotis Syrup make you tired and drowsy?', 'Yes, Levotis Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5237, 'Levotis Syrup', 'Scott Edil Pharmacia Ltd', 'Levotis Syrup', 'How long does it take for Levotis Syrup to work?', 'Levotis Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5238, 'Levotis Syrup', 'Scott Edil Pharmacia Ltd', 'Levotis Syrup', 'Can I take Levotis Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotis Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5239, 'Levotis Syrup', 'Scott Edil Pharmacia Ltd', 'Levotis Syrup', 'Is it safe to take Levotis Syrup for a long time?', 'Levotis Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotis Syrup for only as long as you need it.'),
(5240, 'Levotis Syrup', 'Scott Edil Pharmacia Ltd', 'Levotis Syrup', 'For how long should I continue Levotis Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotis Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Levotis Syrup'),
(5241, 'Levotiva 5 Tablet', 'Milard Life Sciences', 'Levotiva 5 Tablet', 'Is Levotiva 5 Tablet a steroid? What is it used for?', 'No, Levotiva 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5242, 'Levotiva 5 Tablet', 'Milard Life Sciences', 'Levotiva 5 Tablet', 'Does Levotiva 5 Tablet make you tired and drowsy?', 'Yes, Levotiva 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5243, 'Levotiva 5 Tablet', 'Milard Life Sciences', 'Levotiva 5 Tablet', 'How long does it take for Levotiva 5 Tablet to work?', 'Levotiva 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5244, 'Levotiva 5 Tablet', 'Milard Life Sciences', 'Levotiva 5 Tablet', 'Can I take Levotiva 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotiva 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5245, 'Levotiva 5 Tablet', 'Milard Life Sciences', 'Levotiva 5 Tablet', 'Is it safe to take Levotiva 5 Tablet for a long time?', 'Levotiva 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotiva 5 Tablet for only as long as you need it.'),
(5246, 'Levotiva 5 Tablet', 'Milard Life Sciences', 'Levotiva 5 Tablet', 'For how long should I continue Levotiva 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotiva 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotiva 5 Tablet'),
(5247, 'Levotix 5mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix 5mg Tablet', 'Is Levotix 5mg Tablet a steroid? What is it used for?', 'No, Levotix 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5248, 'Levotix 5mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix 5mg Tablet', 'Does Levotix 5mg Tablet make you tired and drowsy?', 'Yes, Levotix 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5249, 'Levotix 5mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix 5mg Tablet', 'How long does it take for Levotix 5mg Tablet to work?', 'Levotix 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5250, 'Levotix 5mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix 5mg Tablet', 'Can I take Levotix 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotix 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5251, 'Levotix 5mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix 5mg Tablet', 'Is it safe to take Levotix 5mg Tablet for a long time?', 'Levotix 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotix 5mg Tablet for only as long as you need it.'),
(5252, 'Levotix 5mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix 5mg Tablet', 'For how long should I continue Levotix 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotix 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotix 5mg Tablet'),
(5253, 'Levotix M 5mg/10mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix M 5mg/10mg Tablet', 'What is Levotix M 5mg/10mg Tablet?', 'Levotix M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5254, 'Levotix M 5mg/10mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix M 5mg/10mg Tablet', 'Can the use of Levotix M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotix M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5255, 'Levotix M 5mg/10mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix M 5mg/10mg Tablet', 'Can Levotix M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotix M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5256, 'Levotix M 5mg/10mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix M 5mg/10mg Tablet', 'Can the use of Levotix M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotix M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5257, 'Levotix M 5mg/10mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotix M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotix M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotix M 5mg/10mg Tablet.'),
(5258, 'Levotix M 5mg/10mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix M 5mg/10mg Tablet', 'Will Levotix M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotix M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5259, 'Levotix M 5mg/10mg Tablet', 'Avtix Health (India) Private Limited', 'Levotix M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotix M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5260, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5261, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'Can I decrease the dose of Levotiz M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5262, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'How should Levotiz M Kid Syrup be stored?', 'Levotiz M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5263, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'Can Levotiz M Kid Syrup make my child sleepy?', 'Levotiz M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5264, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotiz M Kid Syrup?', 'No, don’t start Levotiz M Kid Syrup without speaking to your child’s doctor. Moreover, Levotiz M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5265, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotiz M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5266, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotiz M Kid Syrup to my child?', 'Some studies show that Levotiz M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5267, 'Levotiz M Kid Syrup', 'Foregen Healthcare Ltd', 'Levotiz M Kid Syrup', 'Can I use Levotiz M Kid Syrup for treating acute asthma attacks in my child?', 'Levotiz M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5268, 'Levotiz Plus Syrup', 'Foregen Healthcare Ltd', 'Levotiz Plus Syrup', 'Q. Can the use of Levotiz Plus Syrup cause sleepiness or drowsiness?', 'Yes, Levotiz Plus Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(5269, 'Levotiz Plus Syrup', 'Foregen Healthcare Ltd', 'Levotiz Plus Syrup', 'Q. What are the instructions for the storage and disposal of Levotiz Plus Syrup?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5270, 'Levotiz Plus Syrup', 'Foregen Healthcare Ltd', 'Levotiz Plus Syrup', 'Q. Are there any serious side effects associated with the use of Levotiz Plus Syrup?', 'Serious side effects with Levotiz Plus Syrup are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat. These side effects are uncommon but may be serious and may need urgent medical attention.'),
(5271, 'Levotiz Plus Syrup', 'Foregen Healthcare Ltd', 'Levotiz Plus Syrup', 'Q. Will a higher than the recommended dose of Levotiz Plus Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(5272, 'Levotiz Plus Syrup', 'Foregen Healthcare Ltd', 'Levotiz Plus Syrup', 'Q. Are there any contraindications associated with use of Levotiz Plus Syrup?', 'It is not recommended to use Levotiz Plus Syrup if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers, overactive thyroid (hyperthyroidism). However, it can be taken if your doctor is aware of your conditions and advises you to take it. The use of Levotiz Plus Syrup should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(5273, 'Levotiz Plus Syrup', 'Foregen Healthcare Ltd', 'Levotiz Plus Syrup', 'Q. Can I breastfeed while taking Levotiz Plus Syrup?', 'No, you should not breastfeed while using Levotiz Plus Syrup. This medicine can pass into your breast milk and may harm your baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(5274, 'Levotiz Plus Tablet', 'Foregen Healthcare Ltd', 'Levotiz Plus Tablet', 'What is Levotiz Plus Tablet?', 'Levotiz Plus Tablet is the combination of Ambroxol, Levocetirizine, Paracetamol / Acetaminophen and Phenylephrine and is used in the treatment of common cold.'),
(5275, 'Levotiz Plus Tablet', 'Foregen Healthcare Ltd', 'Levotiz Plus Tablet', 'Can the use of Levotiz Plus Tablet cause nausea and vomiting?', 'Yes, the use of Levotiz Plus Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(5276, 'Levotiz Plus Tablet', 'Foregen Healthcare Ltd', 'Levotiz Plus Tablet', 'Can the use of Levotiz Plus Tablet cause dizziness?', 'Yes, the use of Levotiz Plus Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(5277, 'Levotiz Plus Tablet', 'Foregen Healthcare Ltd', 'Levotiz Plus Tablet', 'Are there any specific contraindications associated with the use of Levotiz Plus Tablet?', 'The use of Levotiz Plus Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine and in patients with gastric ulcers, liver or kidney problems.'),
(5278, 'Levotiz Plus Tablet', 'Foregen Healthcare Ltd', 'Levotiz Plus Tablet', 'What are the recommended storage conditions for Levotiz Plus Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5279, 'Levotiz Tablet', 'Foregen Healthcare Ltd', 'Levotiz Tablet', 'Is Levotiz Tablet a steroid? What is it used for?', 'No, Levotiz Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5280, 'Levotiz Tablet', 'Foregen Healthcare Ltd', 'Levotiz Tablet', 'Does Levotiz Tablet make you tired and drowsy?', 'Yes, Levotiz Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5281, 'Levotiz Tablet', 'Foregen Healthcare Ltd', 'Levotiz Tablet', 'How long does it take for Levotiz Tablet to work?', 'Levotiz Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5282, 'Levotiz Tablet', 'Foregen Healthcare Ltd', 'Levotiz Tablet', 'Can I take Levotiz Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotiz Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5283, 'Levotiz Tablet', 'Foregen Healthcare Ltd', 'Levotiz Tablet', 'Is it safe to take Levotiz Tablet for a long time?', 'Levotiz Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotiz Tablet for only as long as you need it.'),
(5284, 'Levotiz Tablet', 'Foregen Healthcare Ltd', 'Levotiz Tablet', 'For how long should I continue Levotiz Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotiz Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotiz Tablet'),
(5285, 'Levotiz-A Tablet SR', 'Foregen Healthcare Ltd', 'Levotiz-A Tablet SR', 'Can the use of Levotiz-A Tablet SR cause dry mouth?', 'Yes, the use of Levotiz-A Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(5286, 'Levotiz-A Tablet SR', 'Foregen Healthcare Ltd', 'Levotiz-A Tablet SR', 'Can I use Levotiz-A Tablet SR while breastfeeding?', 'No, Levotiz-A Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(5287, 'Levotiz-A Tablet SR', 'Foregen Healthcare Ltd', 'Levotiz-A Tablet SR', 'Can I drink alcohol while taking Levotiz-A Tablet SR?', 'No, avoid drinking alcohol while taking Levotiz-A Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Levotiz-A Tablet SR.'),
(5288, 'Levotiz-A Tablet SR', 'Foregen Healthcare Ltd', 'Levotiz-A Tablet SR', 'What are the instructions for the storage and disposal of Levotiz-A Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5289, 'Levotize 5mg Tablet', 'Calen Biotech', 'Levotize 5mg Tablet', 'Is Levotize 5mg Tablet a steroid? What is it used for?', 'No, Levotize 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5290, 'Levotize 5mg Tablet', 'Calen Biotech', 'Levotize 5mg Tablet', 'Does Levotize 5mg Tablet make you tired and drowsy?', 'Yes, Levotize 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5291, 'Levotize 5mg Tablet', 'Calen Biotech', 'Levotize 5mg Tablet', 'How long does it take for Levotize 5mg Tablet to work?', 'Levotize 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5292, 'Levotize 5mg Tablet', 'Calen Biotech', 'Levotize 5mg Tablet', 'Can I take Levotize 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotize 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5293, 'Levotize 5mg Tablet', 'Calen Biotech', 'Levotize 5mg Tablet', 'Is it safe to take Levotize 5mg Tablet for a long time?', 'Levotize 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotize 5mg Tablet for only as long as you need it.'),
(5294, 'Levotize 5mg Tablet', 'Calen Biotech', 'Levotize 5mg Tablet', 'For how long should I continue Levotize 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotize 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotize 5mg Tablet'),
(5295, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5296, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'Can I decrease the dose of Levotiz-M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5297, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'How should Levotiz-M Kid Tablet be stored?', 'Levotiz-M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5298, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'Can Levotiz-M Kid Tablet make my child sleepy?', 'Levotiz-M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5299, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotiz-M Kid Tablet?', 'No, don’t start Levotiz-M Kid Tablet without speaking to your child’s doctor. Moreover, Levotiz-M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5300, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotiz-M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5301, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levotiz-M Kid Tablet to my child?', 'Some studies show that Levotiz-M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5302, 'Levotiz-M Kid Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Kid Tablet', 'Can I use Levotiz-M Kid Tablet for treating acute asthma attacks in my child?', 'Levotiz-M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5303, 'Levotiz-M Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Tablet', 'What is Levotiz-M Tablet?', 'Levotiz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5304, 'Levotiz-M Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Tablet', 'Can the use of Levotiz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotiz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5305, 'Levotiz-M Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Tablet', 'Can Levotiz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotiz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5306, 'Levotiz-M Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Tablet', 'Can the use of Levotiz-M Tablet cause dry mouth?', 'Yes, the use of Levotiz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5307, 'Levotiz-M Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Tablet', 'Can I drink alcohol while taking Levotiz-M Tablet?', 'No, do not take alcohol while taking Levotiz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotiz-M Tablet.'),
(5308, 'Levotiz-M Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Tablet', 'Will Levotiz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotiz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5309, 'Levotiz-M Tablet', 'Foregen Healthcare Ltd', 'Levotiz-M Tablet', 'What are the instructions for storage and disposal of Levotiz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5310, 'Levot-M Tablet', 'Atishya Biotech', 'Levot-M Tablet', 'What is Levot-M Tablet?', 'Levot-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5311, 'Levot-M Tablet', 'Atishya Biotech', 'Levot-M Tablet', 'Can the use of Levot-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levot-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5312, 'Levot-M Tablet', 'Atishya Biotech', 'Levot-M Tablet', 'Can Levot-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levot-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5313, 'Levot-M Tablet', 'Atishya Biotech', 'Levot-M Tablet', 'Can the use of Levot-M Tablet cause dry mouth?', 'Yes, the use of Levot-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5314, 'Levot-M Tablet', 'Atishya Biotech', 'Levot-M Tablet', 'Can I drink alcohol while taking Levot-M Tablet?', 'No, do not take alcohol while taking Levot-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levot-M Tablet.'),
(5315, 'Levot-M Tablet', 'Atishya Biotech', 'Levot-M Tablet', 'Will Levot-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levot-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5316, 'Levot-M Tablet', 'Atishya Biotech', 'Levot-M Tablet', 'What are the instructions for storage and disposal of Levot-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5317, 'Levoto 5mg Tablet', 'Tesni Pharmaceuticals', 'Levoto 5mg Tablet', 'Is Levoto 5mg Tablet a steroid? What is it used for?', 'No, Levoto 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5318, 'Levoto 5mg Tablet', 'Tesni Pharmaceuticals', 'Levoto 5mg Tablet', 'Does Levoto 5mg Tablet make you tired and drowsy?', 'Yes, Levoto 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5319, 'Levoto 5mg Tablet', 'Tesni Pharmaceuticals', 'Levoto 5mg Tablet', 'How long does it take for Levoto 5mg Tablet to work?', 'Levoto 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5320, 'Levoto 5mg Tablet', 'Tesni Pharmaceuticals', 'Levoto 5mg Tablet', 'Can I take Levoto 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoto 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5321, 'Levoto 5mg Tablet', 'Tesni Pharmaceuticals', 'Levoto 5mg Tablet', 'Is it safe to take Levoto 5mg Tablet for a long time?', 'Levoto 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoto 5mg Tablet for only as long as you need it.'),
(5322, 'Levoto 5mg Tablet', 'Tesni Pharmaceuticals', 'Levoto 5mg Tablet', 'For how long should I continue Levoto 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoto 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoto 5mg Tablet'),
(5323, 'Levoto M 5mg/10mg Tablet', 'Tesni Pharmaceuticals', 'Levoto M 5mg/10mg Tablet', 'What is Levoto M 5mg/10mg Tablet?', 'Levoto M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5324, 'Levoto M 5mg/10mg Tablet', 'Tesni Pharmaceuticals', 'Levoto M 5mg/10mg Tablet', 'Can the use of Levoto M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoto M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5325, 'Levoto M 5mg/10mg Tablet', 'Tesni Pharmaceuticals', 'Levoto M 5mg/10mg Tablet', 'Can Levoto M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoto M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5326, 'Levoto M 5mg/10mg Tablet', 'Tesni Pharmaceuticals', 'Levoto M 5mg/10mg Tablet', 'Can the use of Levoto M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoto M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5327, 'Levoto M 5mg/10mg Tablet', 'Tesni Pharmaceuticals', 'Levoto M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoto M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoto M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoto M 5mg/10mg Tablet.'),
(5328, 'Levoto M 5mg/10mg Tablet', 'Tesni Pharmaceuticals', 'Levoto M 5mg/10mg Tablet', 'Will Levoto M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoto M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5329, 'Levoto M 5mg/10mg Tablet', 'Tesni Pharmaceuticals', 'Levoto M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoto M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5330, 'Levotoflox 500mg Tablet', 'Apothera Laboratories (OPC) Pvt. Ltd', 'Levotoflox 500mg Tablet', 'Is Levotoflox 500mg Tablet safe?', 'Levotoflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5331, 'Levotoflox 500mg Tablet', 'Apothera Laboratories (OPC) Pvt. Ltd', 'Levotoflox 500mg Tablet', 'What if I forget to take a dose of Levotoflox 500mg Tablet?', 'If you forget a dose of Levotoflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5332, 'Levotoflox 500mg Tablet', 'Apothera Laboratories (OPC) Pvt. Ltd', 'Levotoflox 500mg Tablet', 'Can the use of Levotoflox 500mg Tablet cause diarrhea?', 'Yes, the use of Levotoflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5333, 'Levotoflox 500mg Tablet', 'Apothera Laboratories (OPC) Pvt. Ltd', 'Levotoflox 500mg Tablet', 'Can I stop taking Levotoflox 500mg Tablet when I feel better?', 'No, do not stop taking Levotoflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotoflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotoflox 500mg Tablet in the dose and duration advised by the doctor.'),
(5334, 'Levotoflox 500mg Tablet', 'Apothera Laboratories (OPC) Pvt. Ltd', 'Levotoflox 500mg Tablet', 'Can the use of Levotoflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotoflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotoflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5335, 'Levoton 500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton 500mg Tablet', 'Is Levoton 500mg Tablet safe?', 'Levoton 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5336, 'Levoton 500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton 500mg Tablet', 'What if I forget to take a dose of Levoton 500mg Tablet?', 'If you forget a dose of Levoton 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5337, 'Levoton 500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton 500mg Tablet', 'Can the use of Levoton 500mg Tablet cause diarrhea?', 'Yes, the use of Levoton 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5338, 'Levoton 500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton 500mg Tablet', 'Can I stop taking Levoton 500mg Tablet when I feel better?', 'No, do not stop taking Levoton 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoton 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoton 500mg Tablet in the dose and duration advised by the doctor.'),
(5339, 'Levoton 500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton 500mg Tablet', 'Can the use of Levoton 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoton 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoton 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5340, 'Levoton 5mg/10mg Tablet', 'Curivo Healthcare', 'Levoton 5mg/10mg Tablet', 'What is Levoton 5mg/10mg Tablet?', 'Levoton 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5341, 'Levoton 5mg/10mg Tablet', 'Curivo Healthcare', 'Levoton 5mg/10mg Tablet', 'Can the use of Levoton 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoton 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5342, 'Levoton 5mg/10mg Tablet', 'Curivo Healthcare', 'Levoton 5mg/10mg Tablet', 'Can Levoton 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoton 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5343, 'Levoton 5mg/10mg Tablet', 'Curivo Healthcare', 'Levoton 5mg/10mg Tablet', 'Can the use of Levoton 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoton 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5344, 'Levoton 5mg/10mg Tablet', 'Curivo Healthcare', 'Levoton 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoton 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoton 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoton 5mg/10mg Tablet.'),
(5345, 'Levoton 5mg/10mg Tablet', 'Curivo Healthcare', 'Levoton 5mg/10mg Tablet', 'Will Levoton 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoton 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5346, 'Levoton 5mg/10mg Tablet', 'Curivo Healthcare', 'Levoton 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoton 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5347, 'Levoton FX 10mg/120mg Tablet', 'Curivo Healthcare', 'Levoton FX 10mg/120mg Tablet', 'What is Levoton FX 10mg/120mg Tablet ?', 'Levoton FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(5348, 'Levoton FX 10mg/120mg Tablet', 'Curivo Healthcare', 'Levoton FX 10mg/120mg Tablet', 'Can Levoton FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoton FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Levoton FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(5349, 'Levoton FX 10mg/120mg Tablet', 'Curivo Healthcare', 'Levoton FX 10mg/120mg Tablet', 'Can the use of Levoton FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Levoton FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(5350, 'Levoton FX 10mg/120mg Tablet', 'Curivo Healthcare', 'Levoton FX 10mg/120mg Tablet', 'What should be avoided in food while taking Levoton FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levoton FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Levoton FX 10mg/120mg Tablet.'),
(5351, 'Levoton FX 10mg/120mg Tablet', 'Curivo Healthcare', 'Levoton FX 10mg/120mg Tablet', 'Will Levoton FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5352, 'Levoton FX 10mg/120mg Tablet', 'Curivo Healthcare', 'Levoton FX 10mg/120mg Tablet', 'What is the recommended storage condition for Levoton FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5353, 'Levoton OZ 250mg/500mg Tablet', 'Vellinton Healthcare', 'Levoton OZ 250mg/500mg Tablet (Vellinton Healthcare)', 'What if I don\'t get better after using Levoton OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5354, 'Levoton OZ 250mg/500mg Tablet', 'Vellinton Healthcare', 'Levoton OZ 250mg/500mg Tablet (Vellinton Healthcare)', 'Can I stop taking Levoton OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoton OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5355, 'Levoton OZ 250mg/500mg Tablet', 'Vellinton Healthcare', 'Levoton OZ 250mg/500mg Tablet (Vellinton Healthcare)', 'What if I miss my dose?', 'Take Levoton OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5356, 'Levoton OZ 250mg/500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton OZ 250mg/500mg Tablet (Crompton Pharma Pvt Ltd)', 'What if I don\'t get better after using Levoton OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5357, 'Levoton OZ 250mg/500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton OZ 250mg/500mg Tablet (Crompton Pharma Pvt Ltd)', 'Can I stop taking Levoton OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoton OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5358, 'Levoton OZ 250mg/500mg Tablet', 'Crompton Pharma Pvt Ltd', 'Levoton OZ 250mg/500mg Tablet (Crompton Pharma Pvt Ltd)', 'What if I miss my dose?', 'Take Levoton OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5359, 'Levotop 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 500mg Tablet (Marc Laboratories Pvt Ltd)', 'Is Levotop 500mg Tablet safe?', 'Levotop 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5360, 'Levotop 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 500mg Tablet (Marc Laboratories Pvt Ltd)', 'What if I forget to take a dose of Levotop 500mg Tablet?', 'If you forget a dose of Levotop 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5361, 'Levotop 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 500mg Tablet (Marc Laboratories Pvt Ltd)', 'Can the use of Levotop 500mg Tablet cause diarrhea?', 'Yes, the use of Levotop 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5362, 'Levotop 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 500mg Tablet (Marc Laboratories Pvt Ltd)', 'Can I stop taking Levotop 500mg Tablet when I feel better?', 'No, do not stop taking Levotop 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotop 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotop 500mg Tablet in the dose and duration advised by the doctor.'),
(5363, 'Levotop 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 500mg Tablet (Marc Laboratories Pvt Ltd)', 'Can the use of Levotop 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotop 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotop 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5364, 'Levotop 500mg Tablet', 'Artel Laboratories', 'Levotop 500mg Tablet (Artel Laboratories)', 'Is Levotop 500mg Tablet safe?', 'Levotop 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5365, 'Levotop 500mg Tablet', 'Artel Laboratories', 'Levotop 500mg Tablet (Artel Laboratories)', 'What if I forget to take a dose of Levotop 500mg Tablet?', 'If you forget a dose of Levotop 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5366, 'Levotop 500mg Tablet', 'Artel Laboratories', 'Levotop 500mg Tablet (Artel Laboratories)', 'Can the use of Levotop 500mg Tablet cause diarrhea?', 'Yes, the use of Levotop 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5367, 'Levotop 500mg Tablet', 'Artel Laboratories', 'Levotop 500mg Tablet (Artel Laboratories)', 'Can I stop taking Levotop 500mg Tablet when I feel better?', 'No, do not stop taking Levotop 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotop 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotop 500mg Tablet in the dose and duration advised by the doctor.'),
(5368, 'Levotop 500mg Tablet', 'Artel Laboratories', 'Levotop 500mg Tablet (Artel Laboratories)', 'Can the use of Levotop 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotop 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotop 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5369, 'Levotop 750mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 750mg Tablet', 'Is Levotop 750mg Tablet safe?', 'Levotop 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5370, 'Levotop 750mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 750mg Tablet', 'What if I forget to take a dose of Levotop 750mg Tablet?', 'If you forget a dose of Levotop 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5371, 'Levotop 750mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 750mg Tablet', 'Can the use of Levotop 750mg Tablet cause diarrhea?', 'Yes, the use of Levotop 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5372, 'Levotop 750mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 750mg Tablet', 'Can I stop taking Levotop 750mg Tablet when I feel better?', 'No, do not stop taking Levotop 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotop 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotop 750mg Tablet in the dose and duration advised by the doctor.'),
(5373, 'Levotop 750mg Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop 750mg Tablet', 'Can the use of Levotop 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotop 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotop 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5374, 'Levotop Eye Drop', 'Ajanta Pharma Ltd', 'Levotop Eye Drop', 'Can I stop taking Levotop Eye Drop when I feel better?', 'No, do not stop taking Levotop Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotop Eye Drop too early, the symptoms may return or worsen. Continue taking Levotop Eye Drop in the dose and duration advised by the doctor.'),
(5375, 'Levotop OZ Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop OZ Tablet', 'Is Levotop OZ Tablet safe?', 'Levotop OZ Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5376, 'Levotop OZ Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop OZ Tablet', 'What if I forget to take a dose of Levotop OZ Tablet?', 'If you forget a dose of Levotop OZ Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5377, 'Levotop OZ Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop OZ Tablet', 'Can the use of Levotop OZ Tablet cause diarrhea?', 'Yes, the use of Levotop OZ Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5378, 'Levotop OZ Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop OZ Tablet', 'Can I stop taking Levotop OZ Tablet when I feel better?', 'No, do not stop taking Levotop OZ Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotop OZ Tablet too early, the symptoms may return or worsen. Continue taking Levotop OZ Tablet in the dose and duration advised by the doctor.'),
(5379, 'Levotop OZ Tablet', 'Marc Laboratories Pvt Ltd', 'Levotop OZ Tablet', 'Can the use of Levotop OZ Tablet increase the risk of muscle damage?', 'Yes, the use of Levotop OZ Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotop OZ Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5380, 'Levotop Pds Eye Drop', 'Ajanta Pharma Ltd', 'Levotop Pds Eye Drop', 'What is Levotop Pds Eye Drop used for?', 'Levotop Pds Eye Drop is used to treat infection of the eyes caused by bacteria. It helps in relieving the symptoms of eye infection like red, painful, itchy or watery eyes. This helps restore normal vision and enables you to carry out daily activities with ease.'),
(5381, 'Levotop Pds Eye Drop', 'Ajanta Pharma Ltd', 'Levotop Pds Eye Drop', 'Is Levotop Pds Eye Drop safe?', 'Levotop Pds Eye Drop is safe if used in the dose and duration advised by your doctor. Use it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5382, 'Levotop Pds Eye Drop', 'Ajanta Pharma Ltd', 'Levotop Pds Eye Drop', 'How long does it take for Levotop Pds Eye Drop to work?', 'Levotop Pds Eye Drop starts working as soon as it is used. This is because it is used directly into the eyes, that is the area of the infection, and this makes its action faster. The infection usually resolves with a few days, but if you do not feel better even after a week, please consult your doctor.'),
(5383, 'Levotop Pds Eye Drop', 'Ajanta Pharma Ltd', 'Levotop Pds Eye Drop', 'What should I do if I forget to use Levotop Pds Eye Drop?', 'If you forget to use Levotop Pds Eye Drop, do not worry and continue using Levotop Pds Eye Drop as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(5384, 'Levotop Pds Eye Drop', 'Ajanta Pharma Ltd', 'Levotop Pds Eye Drop', 'Can I stop using Levotop Pds Eye Drop when I feel better?', 'No, do not stop using Levotop Pds Eye Drop without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(5385, 'Levotop Pds Eye Drop', 'Ajanta Pharma Ltd', 'Levotop Pds Eye Drop', 'Is Levotop Pds Eye Drop effective?', 'Levotop Pds Eye Drop is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levotop Pds Eye Drop too early, the symptoms may return or worsen.'),
(5386, 'Levotose 10mg Tablet', 'Camrut Pharma', 'Levotose 10mg Tablet', 'Q. Is Levotose 10mg Tablet a steroid? What is it used for?', 'No, Levotose 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5387, 'Levotose 10mg Tablet', 'Camrut Pharma', 'Levotose 10mg Tablet', 'Q. Does Levotose 10mg Tablet make you tired and drowsy?', 'Yes, Levotose 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5388, 'Levotose 10mg Tablet', 'Camrut Pharma', 'Levotose 10mg Tablet', 'Q. How long does it take for Levotose 10mg Tablet to work?', 'Levotose 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5389, 'Levotose 10mg Tablet', 'Camrut Pharma', 'Levotose 10mg Tablet', 'Q. Can I take Levotose 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotose 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5390, 'Levotose 10mg Tablet', 'Camrut Pharma', 'Levotose 10mg Tablet', 'Q. Is it safe to take Levotose 10mg Tablet for a long time?', 'Levotose 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotose 10mg Tablet for only as long as you need it.'),
(5391, 'Levotose 10mg Tablet', 'Camrut Pharma', 'Levotose 10mg Tablet', 'Q. For how long should I continue Levotose 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotose 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotose 10mg Tablet'),
(5392, 'Levotoss 250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 250mg Tablet', 'Is Levotoss 250mg Tablet safe?', 'Levotoss 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5393, 'Levotoss 250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 250mg Tablet', 'What if I forget to take a dose of Levotoss 250mg Tablet?', 'If you forget a dose of Levotoss 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5394, 'Levotoss 250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 250mg Tablet', 'Can the use of Levotoss 250mg Tablet cause diarrhea?', 'Yes, the use of Levotoss 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5395, 'Levotoss 250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 250mg Tablet', 'Can I stop taking Levotoss 250mg Tablet when I feel better?', 'No, do not stop taking Levotoss 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotoss 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotoss 250mg Tablet in the dose and duration advised by the doctor.'),
(5396, 'Levotoss 250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 250mg Tablet', 'Can the use of Levotoss 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotoss 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotoss 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5397, 'Levotoss 500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 500mg Tablet', 'Is Levotoss 500mg Tablet safe?', 'Levotoss 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5398, 'Levotoss 500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 500mg Tablet', 'What if I forget to take a dose of Levotoss 500mg Tablet?', 'If you forget a dose of Levotoss 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5399, 'Levotoss 500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 500mg Tablet', 'Can the use of Levotoss 500mg Tablet cause diarrhea?', 'Yes, the use of Levotoss 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5400, 'Levotoss 500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 500mg Tablet', 'Can I stop taking Levotoss 500mg Tablet when I feel better?', 'No, do not stop taking Levotoss 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotoss 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotoss 500mg Tablet in the dose and duration advised by the doctor.'),
(5401, 'Levotoss 500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 500mg Tablet', 'Can the use of Levotoss 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotoss 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotoss 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5402, 'Levotoss 750mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 750mg Tablet', 'Is Levotoss 750mg Tablet safe?', 'Levotoss 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5403, 'Levotoss 750mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 750mg Tablet', 'What if I forget to take a dose of Levotoss 750mg Tablet?', 'If you forget a dose of Levotoss 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5404, 'Levotoss 750mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 750mg Tablet', 'Can the use of Levotoss 750mg Tablet cause diarrhea?', 'Yes, the use of Levotoss 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5405, 'Levotoss 750mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 750mg Tablet', 'Can I stop taking Levotoss 750mg Tablet when I feel better?', 'No, do not stop taking Levotoss 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotoss 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levotoss 750mg Tablet in the dose and duration advised by the doctor.'),
(5406, 'Levotoss 750mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss 750mg Tablet', 'Can the use of Levotoss 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotoss 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotoss 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5407, 'Levotoss AZ 250mg/250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss AZ 250mg/250mg Tablet', 'What if I don\'t get better after using Levotoss AZ 250mg/250mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5408, 'Levotoss AZ 250mg/250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss AZ 250mg/250mg Tablet', 'What if I miss my dose?', 'Take Levotoss AZ 250mg/250mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5409, 'Levotoss AZ 500mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss AZ 500mg/500mg Tablet', 'What if I don\'t get better after using Levotoss AZ 500mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5410, 'Levotoss AZ 500mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss AZ 500mg/500mg Tablet', 'What if I miss my dose?', 'Take Levotoss AZ 500mg/500mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5411, 'Levotoss OZ 250mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levotoss OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5412, 'Levotoss OZ 250mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss OZ 250mg/500mg Tablet', 'Can I stop taking Levotoss OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levotoss OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5413, 'Levotoss OZ 250mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Levotoss OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levotoss OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5414, 'Levotoz 250mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 250mg Tablet', 'Is Levotoz 250mg Tablet safe?', 'Levotoz 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5415, 'Levotoz 250mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 250mg Tablet', 'What if I forget to take a dose of Levotoz 250mg Tablet?', 'If you forget a dose of Levotoz 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5416, 'Levotoz 250mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 250mg Tablet', 'Can the use of Levotoz 250mg Tablet cause diarrhea?', 'Yes, the use of Levotoz 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5417, 'Levotoz 250mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 250mg Tablet', 'Can I stop taking Levotoz 250mg Tablet when I feel better?', 'No, do not stop taking Levotoz 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotoz 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotoz 250mg Tablet in the dose and duration advised by the doctor.'),
(5418, 'Levotoz 250mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 250mg Tablet', 'Can the use of Levotoz 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotoz 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotoz 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5419, 'Levotoz 500mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 500mg Tablet', 'Is Levotoz 500mg Tablet safe?', 'Levotoz 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5420, 'Levotoz 500mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 500mg Tablet', 'What if I forget to take a dose of Levotoz 500mg Tablet?', 'If you forget a dose of Levotoz 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5421, 'Levotoz 500mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 500mg Tablet', 'Can the use of Levotoz 500mg Tablet cause diarrhea?', 'Yes, the use of Levotoz 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5422, 'Levotoz 500mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 500mg Tablet', 'Can I stop taking Levotoz 500mg Tablet when I feel better?', 'No, do not stop taking Levotoz 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotoz 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotoz 500mg Tablet in the dose and duration advised by the doctor.'),
(5423, 'Levotoz 500mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Levotoz 500mg Tablet', 'Can the use of Levotoz 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotoz 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotoz 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5424, 'Levotra 5mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra 5mg Tablet', 'Is Levotra 5mg Tablet a steroid? What is it used for?', 'No, Levotra 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5425, 'Levotra 5mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra 5mg Tablet', 'Does Levotra 5mg Tablet make you tired and drowsy?', 'Yes, Levotra 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5426, 'Levotra 5mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra 5mg Tablet', 'How long does it take for Levotra 5mg Tablet to work?', 'Levotra 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5427, 'Levotra 5mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra 5mg Tablet', 'Can I take Levotra 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotra 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5428, 'Levotra 5mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra 5mg Tablet', 'Is it safe to take Levotra 5mg Tablet for a long time?', 'Levotra 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotra 5mg Tablet for only as long as you need it.'),
(5429, 'Levotra 5mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra 5mg Tablet', 'For how long should I continue Levotra 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotra 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotra 5mg Tablet'),
(5430, 'Levotrack 500mg Tablet', 'Altruist Pharmacia Pvt Ltd', 'Levotrack 500mg Tablet (Altruist Pharmacia Pvt Ltd)', 'Is Levotrack 500mg Tablet safe?', 'Levotrack 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5431, 'Levotrack 500mg Tablet', 'Altruist Pharmacia Pvt Ltd', 'Levotrack 500mg Tablet (Altruist Pharmacia Pvt Ltd)', 'What if I forget to take a dose of Levotrack 500mg Tablet?', 'If you forget a dose of Levotrack 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5432, 'Levotrack 500mg Tablet', 'Altruist Pharmacia Pvt Ltd', 'Levotrack 500mg Tablet (Altruist Pharmacia Pvt Ltd)', 'Can the use of Levotrack 500mg Tablet cause diarrhea?', 'Yes, the use of Levotrack 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5433, 'Levotrack 500mg Tablet', 'Altruist Pharmacia Pvt Ltd', 'Levotrack 500mg Tablet (Altruist Pharmacia Pvt Ltd)', 'Can I stop taking Levotrack 500mg Tablet when I feel better?', 'No, do not stop taking Levotrack 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotrack 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotrack 500mg Tablet in the dose and duration advised by the doctor.'),
(5434, 'Levotrack 500mg Tablet', 'Altruist Pharmacia Pvt Ltd', 'Levotrack 500mg Tablet (Altruist Pharmacia Pvt Ltd)', 'Can the use of Levotrack 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotrack 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotrack 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5435, 'Levotrack 500mg Tablet', 'Jabs Biotech Pvt Ltd', 'Levotrack 500mg Tablet (Jabs Biotech Pvt Ltd)', 'Is Levotrack 500mg Tablet safe?', 'Levotrack 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5436, 'Levotrack 500mg Tablet', 'Jabs Biotech Pvt Ltd', 'Levotrack 500mg Tablet (Jabs Biotech Pvt Ltd)', 'What if I forget to take a dose of Levotrack 500mg Tablet?', 'If you forget a dose of Levotrack 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5437, 'Levotrack 500mg Tablet', 'Jabs Biotech Pvt Ltd', 'Levotrack 500mg Tablet (Jabs Biotech Pvt Ltd)', 'Can the use of Levotrack 500mg Tablet cause diarrhea?', 'Yes, the use of Levotrack 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5438, 'Levotrack 500mg Tablet', 'Jabs Biotech Pvt Ltd', 'Levotrack 500mg Tablet (Jabs Biotech Pvt Ltd)', 'Can I stop taking Levotrack 500mg Tablet when I feel better?', 'No, do not stop taking Levotrack 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotrack 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotrack 500mg Tablet in the dose and duration advised by the doctor.'),
(5439, 'Levotrack 500mg Tablet', 'Jabs Biotech Pvt Ltd', 'Levotrack 500mg Tablet (Jabs Biotech Pvt Ltd)', 'Can the use of Levotrack 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotrack 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotrack 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5440, 'Levotral 250 Tablet', 'Orion Lifesciences', 'Levotral 250 Tablet', 'Is Levotral 250 Tablet safe?', 'Levotral 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5441, 'Levotral 250 Tablet', 'Orion Lifesciences', 'Levotral 250 Tablet', 'What if I forget to take a dose of Levotral 250 Tablet?', 'If you forget a dose of Levotral 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5442, 'Levotral 250 Tablet', 'Orion Lifesciences', 'Levotral 250 Tablet', 'Can the use of Levotral 250 Tablet cause diarrhea?', 'Yes, the use of Levotral 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5443, 'Levotral 250 Tablet', 'Orion Lifesciences', 'Levotral 250 Tablet', 'Can I stop taking Levotral 250 Tablet when I feel better?', 'No, do not stop taking Levotral 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotral 250 Tablet too early, the symptoms may return or worsen. Continue taking Levotral 250 Tablet in the dose and duration advised by the doctor.'),
(5444, 'Levotral 250 Tablet', 'Orion Lifesciences', 'Levotral 250 Tablet', 'Can the use of Levotral 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Levotral 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotral 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5445, 'Levotral 500 Tablet', 'Orion Lifesciences', 'Levotral 500 Tablet', 'Is Levotral 500 Tablet safe?', 'Levotral 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5446, 'Levotral 500 Tablet', 'Orion Lifesciences', 'Levotral 500 Tablet', 'What if I forget to take a dose of Levotral 500 Tablet?', 'If you forget a dose of Levotral 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5447, 'Levotral 500 Tablet', 'Orion Lifesciences', 'Levotral 500 Tablet', 'Can the use of Levotral 500 Tablet cause diarrhea?', 'Yes, the use of Levotral 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5448, 'Levotral 500 Tablet', 'Orion Lifesciences', 'Levotral 500 Tablet', 'Can I stop taking Levotral 500 Tablet when I feel better?', 'No, do not stop taking Levotral 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotral 500 Tablet too early, the symptoms may return or worsen. Continue taking Levotral 500 Tablet in the dose and duration advised by the doctor.'),
(5449, 'Levotral 500 Tablet', 'Orion Lifesciences', 'Levotral 500 Tablet', 'Can the use of Levotral 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levotral 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotral 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5450, 'Levotra-M 5mg/10mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra-M 5mg/10mg Tablet', 'What is Levotra-M 5mg/10mg Tablet?', 'Levotra-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5451, 'Levotra-M 5mg/10mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra-M 5mg/10mg Tablet', 'Can the use of Levotra-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotra-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5452, 'Levotra-M 5mg/10mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra-M 5mg/10mg Tablet', 'Can Levotra-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotra-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5453, 'Levotra-M 5mg/10mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra-M 5mg/10mg Tablet', 'Can the use of Levotra-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotra-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5454, 'Levotra-M 5mg/10mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra-M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotra-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotra-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotra-M 5mg/10mg Tablet.'),
(5455, 'Levotra-M 5mg/10mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra-M 5mg/10mg Tablet', 'Will Levotra-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotra-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5456, 'Levotra-M 5mg/10mg Tablet', 'Azine Healthcare Pvt Ltd', 'Levotra-M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotra-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5457, 'Levotran 250mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 250mg Tablet', 'Is Levotran 250mg Tablet safe?', 'Levotran 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5458, 'Levotran 250mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 250mg Tablet', 'What if I forget to take a dose of Levotran 250mg Tablet?', 'If you forget a dose of Levotran 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5459, 'Levotran 250mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 250mg Tablet', 'Can the use of Levotran 250mg Tablet cause diarrhea?', 'Yes, the use of Levotran 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5460, 'Levotran 250mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 250mg Tablet', 'Can I stop taking Levotran 250mg Tablet when I feel better?', 'No, do not stop taking Levotran 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotran 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotran 250mg Tablet in the dose and duration advised by the doctor.'),
(5461, 'Levotran 250mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 250mg Tablet', 'Can the use of Levotran 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotran 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotran 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5462, 'Levotran 500mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 500mg Tablet', 'Is Levotran 500mg Tablet safe?', 'Levotran 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5463, 'Levotran 500mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 500mg Tablet', 'What if I forget to take a dose of Levotran 500mg Tablet?', 'If you forget a dose of Levotran 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5464, 'Levotran 500mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 500mg Tablet', 'Can the use of Levotran 500mg Tablet cause diarrhea?', 'Yes, the use of Levotran 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5465, 'Levotran 500mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 500mg Tablet', 'Can I stop taking Levotran 500mg Tablet when I feel better?', 'No, do not stop taking Levotran 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotran 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotran 500mg Tablet in the dose and duration advised by the doctor.'),
(5466, 'Levotran 500mg Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 500mg Tablet', 'Can the use of Levotran 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotran 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotran 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5467, 'Levotran 750 Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 750 Tablet', 'Is Levotran 750 Tablet safe?', 'Levotran 750 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5468, 'Levotran 750 Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 750 Tablet', 'What if I forget to take a dose of Levotran 750 Tablet?', 'If you forget a dose of Levotran 750 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5469, 'Levotran 750 Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 750 Tablet', 'Can the use of Levotran 750 Tablet cause diarrhea?', 'Yes, the use of Levotran 750 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5470, 'Levotran 750 Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 750 Tablet', 'Can I stop taking Levotran 750 Tablet when I feel better?', 'No, do not stop taking Levotran 750 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotran 750 Tablet too early, the symptoms may return or worsen. Continue taking Levotran 750 Tablet in the dose and duration advised by the doctor.'),
(5471, 'Levotran 750 Tablet', 'Evershine Lifesciences Pvt Ltd', 'Levotran 750 Tablet', 'Can the use of Levotran 750 Tablet increase the risk of muscle damage?', 'Yes, the use of Levotran 750 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotran 750 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5472, 'Levotrax 5mg Tablet', 'Vytrax Healthcare', 'Levotrax 5mg Tablet', 'Is Levotrax 5mg Tablet a steroid? What is it used for?', 'No, Levotrax 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5473, 'Levotrax 5mg Tablet', 'Vytrax Healthcare', 'Levotrax 5mg Tablet', 'Does Levotrax 5mg Tablet make you tired and drowsy?', 'Yes, Levotrax 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5474, 'Levotrax 5mg Tablet', 'Vytrax Healthcare', 'Levotrax 5mg Tablet', 'How long does it take for Levotrax 5mg Tablet to work?', 'Levotrax 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5475, 'Levotrax 5mg Tablet', 'Vytrax Healthcare', 'Levotrax 5mg Tablet', 'Can I take Levotrax 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotrax 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5476, 'Levotrax 5mg Tablet', 'Vytrax Healthcare', 'Levotrax 5mg Tablet', 'Is it safe to take Levotrax 5mg Tablet for a long time?', 'Levotrax 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotrax 5mg Tablet for only as long as you need it.'),
(5477, 'Levotrax 5mg Tablet', 'Vytrax Healthcare', 'Levotrax 5mg Tablet', 'For how long should I continue Levotrax 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotrax 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotrax 5mg Tablet'),
(5478, 'Levotrax M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levotrax M 5mg/10mg Tablet', 'What is Levotrax M 5mg/10mg Tablet?', 'Levotrax M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5479, 'Levotrax M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levotrax M 5mg/10mg Tablet', 'Can the use of Levotrax M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotrax M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5480, 'Levotrax M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levotrax M 5mg/10mg Tablet', 'Can Levotrax M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotrax M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5481, 'Levotrax M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levotrax M 5mg/10mg Tablet', 'Can the use of Levotrax M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotrax M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5482, 'Levotrax M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levotrax M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotrax M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotrax M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotrax M 5mg/10mg Tablet.'),
(5483, 'Levotrax M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levotrax M 5mg/10mg Tablet', 'Will Levotrax M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotrax M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5484, 'Levotrax M 5mg/10mg Tablet', 'Vytrax Healthcare', 'Levotrax M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotrax M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5485, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5486, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'Can I decrease the dose of Levotrax M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5487, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'How should Levotrax M Syrup be stored?', 'Levotrax M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5488, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'Can Levotrax M Syrup make my child sleepy?', 'Levotrax M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5489, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotrax M Syrup?', 'No, don’t start Levotrax M Syrup without speaking to your child’s doctor. Moreover, Levotrax M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5490, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotrax M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5491, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotrax M Syrup to my child?', 'Some studies show that Levotrax M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5492, 'Levotrax M Syrup', 'Vytrax Healthcare', 'Levotrax M Syrup', 'Can I use Levotrax M Syrup for treating acute asthma attacks in my child?', 'Levotrax M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5493, 'Levotree 10mg Tablet', 'Bonsai Pharma', 'Levotree 10mg Tablet', 'Is Levotree 10mg Tablet a steroid? What is it used for?', 'No, Levotree 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5494, 'Levotree 10mg Tablet', 'Bonsai Pharma', 'Levotree 10mg Tablet', 'Does Levotree 10mg Tablet make you tired and drowsy?', 'Yes, Levotree 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5495, 'Levotree 10mg Tablet', 'Bonsai Pharma', 'Levotree 10mg Tablet', 'How long does it take for Levotree 10mg Tablet to work?', 'Levotree 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5496, 'Levotree 10mg Tablet', 'Bonsai Pharma', 'Levotree 10mg Tablet', 'Can I take Levotree 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotree 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5497, 'Levotree 10mg Tablet', 'Bonsai Pharma', 'Levotree 10mg Tablet', 'Is it safe to take Levotree 10mg Tablet for a long time?', 'Levotree 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotree 10mg Tablet for only as long as you need it.'),
(5498, 'Levotree 10mg Tablet', 'Bonsai Pharma', 'Levotree 10mg Tablet', 'For how long should I continue Levotree 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotree 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotree 10mg Tablet'),
(5499, 'Levotree 5mg Tablet', 'Bonsai Pharma', 'Levotree 5mg Tablet', 'Is Levotree 5mg Tablet a steroid? What is it used for?', 'No, Levotree 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5500, 'Levotree 5mg Tablet', 'Bonsai Pharma', 'Levotree 5mg Tablet', 'Does Levotree 5mg Tablet make you tired and drowsy?', 'Yes, Levotree 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5501, 'Levotree 5mg Tablet', 'Bonsai Pharma', 'Levotree 5mg Tablet', 'How long does it take for Levotree 5mg Tablet to work?', 'Levotree 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5502, 'Levotree 5mg Tablet', 'Bonsai Pharma', 'Levotree 5mg Tablet', 'Can I take Levotree 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotree 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5503, 'Levotree 5mg Tablet', 'Bonsai Pharma', 'Levotree 5mg Tablet', 'Is it safe to take Levotree 5mg Tablet for a long time?', 'Levotree 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotree 5mg Tablet for only as long as you need it.'),
(5504, 'Levotree 5mg Tablet', 'Bonsai Pharma', 'Levotree 5mg Tablet', 'For how long should I continue Levotree 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotree 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotree 5mg Tablet'),
(5505, 'Levotress 250mg Tablet', 'Tresco Lab', 'Levotress 250mg Tablet', 'Q. Is Levotress 250mg Tablet safe?', 'Levotress 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5506, 'Levotress 250mg Tablet', 'Tresco Lab', 'Levotress 250mg Tablet', 'Q. What if I forget to take a dose of Levotress 250mg Tablet?', 'If you forget a dose of Levotress 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5507, 'Levotress 250mg Tablet', 'Tresco Lab', 'Levotress 250mg Tablet', 'Q. Can the use of Levotress 250mg Tablet cause diarrhea?', 'Yes, the use of Levotress 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5508, 'Levotress 250mg Tablet', 'Tresco Lab', 'Levotress 250mg Tablet', 'Q. Can I stop taking Levotress 250mg Tablet when I feel better?', 'No, do not stop taking Levotress 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotress 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotress 250mg Tablet in the dose and duration advised by the doctor.'),
(5509, 'Levotress 250mg Tablet', 'Tresco Lab', 'Levotress 250mg Tablet', 'Q. Can the use of Levotress 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotress 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotress 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5510, 'Levotress 500mg Tablet', 'Tresco Lab', 'Levotress 500mg Tablet', 'Is Levotress 500mg Tablet safe?', 'Levotress 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5511, 'Levotress 500mg Tablet', 'Tresco Lab', 'Levotress 500mg Tablet', 'What if I forget to take a dose of Levotress 500mg Tablet?', 'If you forget a dose of Levotress 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5512, 'Levotress 500mg Tablet', 'Tresco Lab', 'Levotress 500mg Tablet', 'Can the use of Levotress 500mg Tablet cause diarrhea?', 'Yes, the use of Levotress 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5513, 'Levotress 500mg Tablet', 'Tresco Lab', 'Levotress 500mg Tablet', 'Can I stop taking Levotress 500mg Tablet when I feel better?', 'No, do not stop taking Levotress 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotress 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotress 500mg Tablet in the dose and duration advised by the doctor.'),
(5514, 'Levotress 500mg Tablet', 'Tresco Lab', 'Levotress 500mg Tablet', 'Can the use of Levotress 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotress 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotress 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5515, 'Levotrex 500mg Tablet', 'Trexgen Pharmaceuticals Pvt Ltd', 'Levotrex 500mg Tablet', 'Is Levotrex 500mg Tablet safe?', 'Levotrex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5516, 'Levotrex 500mg Tablet', 'Trexgen Pharmaceuticals Pvt Ltd', 'Levotrex 500mg Tablet', 'What if I forget to take a dose of Levotrex 500mg Tablet?', 'If you forget a dose of Levotrex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5517, 'Levotrex 500mg Tablet', 'Trexgen Pharmaceuticals Pvt Ltd', 'Levotrex 500mg Tablet', 'Can the use of Levotrex 500mg Tablet cause diarrhea?', 'Yes, the use of Levotrex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5518, 'Levotrex 500mg Tablet', 'Trexgen Pharmaceuticals Pvt Ltd', 'Levotrex 500mg Tablet', 'Can I stop taking Levotrex 500mg Tablet when I feel better?', 'No, do not stop taking Levotrex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotrex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotrex 500mg Tablet in the dose and duration advised by the doctor.'),
(5519, 'Levotrex 500mg Tablet', 'Trexgen Pharmaceuticals Pvt Ltd', 'Levotrex 500mg Tablet', 'Can the use of Levotrex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotrex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotrex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5520, 'Levotri 5mg Tablet', 'Mefro Pharmaceuticals Pvt Ltd', 'Levotri 5mg Tablet (Mefro Pharmaceuticals Pvt Ltd)', 'Is Levotri 5mg Tablet a steroid? What is it used for?', 'No, Levotri 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5521, 'Levotri 5mg Tablet', 'Mefro Pharmaceuticals Pvt Ltd', 'Levotri 5mg Tablet (Mefro Pharmaceuticals Pvt Ltd)', 'Does Levotri 5mg Tablet make you tired and drowsy?', 'Yes, Levotri 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5522, 'Levotri 5mg Tablet', 'Mefro Pharmaceuticals Pvt Ltd', 'Levotri 5mg Tablet (Mefro Pharmaceuticals Pvt Ltd)', 'How long does it take for Levotri 5mg Tablet to work?', 'Levotri 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5523, 'Levotri 5mg Tablet', 'Mefro Pharmaceuticals Pvt Ltd', 'Levotri 5mg Tablet (Mefro Pharmaceuticals Pvt Ltd)', 'Can I take Levotri 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotri 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5524, 'Levotri 5mg Tablet', 'Mefro Pharmaceuticals Pvt Ltd', 'Levotri 5mg Tablet (Mefro Pharmaceuticals Pvt Ltd)', 'Is it safe to take Levotri 5mg Tablet for a long time?', 'Levotri 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotri 5mg Tablet for only as long as you need it.'),
(5525, 'Levotri 5mg Tablet', 'Mefro Pharmaceuticals Pvt Ltd', 'Levotri 5mg Tablet (Mefro Pharmaceuticals Pvt Ltd)', 'For how long should I continue Levotri 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotri 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotri 5mg Tablet'),
(5526, 'Levotri 5mg Tablet', 'Vaishali Pharmaceuticals', 'Levotri 5mg Tablet (Vaishali Pharmaceuticals)', 'Is Levotri 5mg Tablet a steroid? What is it used for?', 'No, Levotri 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5527, 'Levotri 5mg Tablet', 'Vaishali Pharmaceuticals', 'Levotri 5mg Tablet (Vaishali Pharmaceuticals)', 'Does Levotri 5mg Tablet make you tired and drowsy?', 'Yes, Levotri 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5528, 'Levotri 5mg Tablet', 'Vaishali Pharmaceuticals', 'Levotri 5mg Tablet (Vaishali Pharmaceuticals)', 'How long does it take for Levotri 5mg Tablet to work?', 'Levotri 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5529, 'Levotri 5mg Tablet', 'Vaishali Pharmaceuticals', 'Levotri 5mg Tablet (Vaishali Pharmaceuticals)', 'Can I take Levotri 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotri 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5530, 'Levotri 5mg Tablet', 'Vaishali Pharmaceuticals', 'Levotri 5mg Tablet (Vaishali Pharmaceuticals)', 'Is it safe to take Levotri 5mg Tablet for a long time?', 'Levotri 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotri 5mg Tablet for only as long as you need it.'),
(5531, 'Levotri 5mg Tablet', 'Vaishali Pharmaceuticals', 'Levotri 5mg Tablet (Vaishali Pharmaceuticals)', 'For how long should I continue Levotri 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotri 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotri 5mg Tablet'),
(5532, 'Levotric 5mg Tablet', 'Bioxtreme Pharma', 'Levotric 5mg Tablet', 'Is Levotric 5mg Tablet a steroid? What is it used for?', 'No, Levotric 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5533, 'Levotric 5mg Tablet', 'Bioxtreme Pharma', 'Levotric 5mg Tablet', 'Does Levotric 5mg Tablet make you tired and drowsy?', 'Yes, Levotric 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5534, 'Levotric 5mg Tablet', 'Bioxtreme Pharma', 'Levotric 5mg Tablet', 'How long does it take for Levotric 5mg Tablet to work?', 'Levotric 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5535, 'Levotric 5mg Tablet', 'Bioxtreme Pharma', 'Levotric 5mg Tablet', 'Can I take Levotric 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotric 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5536, 'Levotric 5mg Tablet', 'Bioxtreme Pharma', 'Levotric 5mg Tablet', 'Is it safe to take Levotric 5mg Tablet for a long time?', 'Levotric 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotric 5mg Tablet for only as long as you need it.'),
(5537, 'Levotric 5mg Tablet', 'Bioxtreme Pharma', 'Levotric 5mg Tablet', 'For how long should I continue Levotric 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotric 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotric 5mg Tablet'),
(5538, 'Levotrig 2.5mg/5ml Syrup', 'Cure Quick Pharmaceuticals', 'Levotrig 2.5mg/5ml Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levotrig 2.5mg/5ml Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(5539, 'Levotrig 2.5mg/5ml Syrup', 'Cure Quick Pharmaceuticals', 'Levotrig 2.5mg/5ml Syrup', 'Can other medicines be given at the same time as Levotrig 2.5mg/5ml Syrup?', 'Levotrig 2.5mg/5ml Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levotrig 2.5mg/5ml Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(5540, 'Levotrig 2.5mg/5ml Syrup', 'Cure Quick Pharmaceuticals', 'Levotrig 2.5mg/5ml Syrup', 'How much Levotrig 2.5mg/5ml Syrup should I give to my child?', 'Levotrig 2.5mg/5ml Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(5541, 'Levotrig 2.5mg/5ml Syrup', 'Cure Quick Pharmaceuticals', 'Levotrig 2.5mg/5ml Syrup', 'What if I give too much of Levotrig 2.5mg/5ml Syrup by mistake?', 'Although Levotrig 2.5mg/5ml Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(5542, 'Levotrig 2.5mg/5ml Syrup', 'Cure Quick Pharmaceuticals', 'Levotrig 2.5mg/5ml Syrup', 'How should Levotrig 2.5mg/5ml Syrup be stored?', 'Store Levotrig 2.5mg/5ml Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5543, 'Levotrig 2.5mg/5ml Syrup', 'Cure Quick Pharmaceuticals', 'Levotrig 2.5mg/5ml Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(5544, 'Levotrig 5mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig 5mg Tablet', 'Is Levotrig 5mg Tablet a steroid? What is it used for?', 'No, Levotrig 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5545, 'Levotrig 5mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig 5mg Tablet', 'Does Levotrig 5mg Tablet make you tired and drowsy?', 'Yes, Levotrig 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5546, 'Levotrig 5mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig 5mg Tablet', 'How long does it take for Levotrig 5mg Tablet to work?', 'Levotrig 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5547, 'Levotrig 5mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig 5mg Tablet', 'Can I take Levotrig 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotrig 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5548, 'Levotrig 5mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig 5mg Tablet', 'Is it safe to take Levotrig 5mg Tablet for a long time?', 'Levotrig 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotrig 5mg Tablet for only as long as you need it.'),
(5549, 'Levotrig 5mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig 5mg Tablet', 'For how long should I continue Levotrig 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotrig 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotrig 5mg Tablet'),
(5550, 'Levotrig M 5mg/10mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig M 5mg/10mg Tablet', 'What is Levotrig M 5mg/10mg Tablet?', 'Levotrig M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5551, 'Levotrig M 5mg/10mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig M 5mg/10mg Tablet', 'Can the use of Levotrig M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotrig M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5552, 'Levotrig M 5mg/10mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig M 5mg/10mg Tablet', 'Can Levotrig M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotrig M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5553, 'Levotrig M 5mg/10mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig M 5mg/10mg Tablet', 'Can the use of Levotrig M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotrig M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5554, 'Levotrig M 5mg/10mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotrig M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotrig M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotrig M 5mg/10mg Tablet.'),
(5555, 'Levotrig M 5mg/10mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig M 5mg/10mg Tablet', 'Will Levotrig M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotrig M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5556, 'Levotrig M 5mg/10mg Tablet', 'Cure Quick Pharmaceuticals', 'Levotrig M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotrig M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5557, 'Levotrin 5mg Tablet', 'GRAF Laboratories Pvt Ltd', 'Levotrin 5mg Tablet', 'Is Levotrin 5mg Tablet a steroid? What is it used for?', 'No, Levotrin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5558, 'Levotrin 5mg Tablet', 'GRAF Laboratories Pvt Ltd', 'Levotrin 5mg Tablet', 'Does Levotrin 5mg Tablet make you tired and drowsy?', 'Yes, Levotrin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5559, 'Levotrin 5mg Tablet', 'GRAF Laboratories Pvt Ltd', 'Levotrin 5mg Tablet', 'How long does it take for Levotrin 5mg Tablet to work?', 'Levotrin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5560, 'Levotrin 5mg Tablet', 'GRAF Laboratories Pvt Ltd', 'Levotrin 5mg Tablet', 'Can I take Levotrin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotrin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5561, 'Levotrin 5mg Tablet', 'GRAF Laboratories Pvt Ltd', 'Levotrin 5mg Tablet', 'Is it safe to take Levotrin 5mg Tablet for a long time?', 'Levotrin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotrin 5mg Tablet for only as long as you need it.'),
(5562, 'Levotrin 5mg Tablet', 'GRAF Laboratories Pvt Ltd', 'Levotrin 5mg Tablet', 'For how long should I continue Levotrin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotrin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotrin 5mg Tablet'),
(5563, 'Levotrine 5mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine 5mg Tablet', 'Is Levotrine 5mg Tablet a steroid? What is it used for?', 'No, Levotrine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5564, 'Levotrine 5mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine 5mg Tablet', 'Does Levotrine 5mg Tablet make you tired and drowsy?', 'Yes, Levotrine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5565, 'Levotrine 5mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine 5mg Tablet', 'How long does it take for Levotrine 5mg Tablet to work?', 'Levotrine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5566, 'Levotrine 5mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine 5mg Tablet', 'Can I take Levotrine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotrine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5567, 'Levotrine 5mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine 5mg Tablet', 'Is it safe to take Levotrine 5mg Tablet for a long time?', 'Levotrine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotrine 5mg Tablet for only as long as you need it.'),
(5568, 'Levotrine 5mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine 5mg Tablet', 'For how long should I continue Levotrine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotrine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotrine 5mg Tablet'),
(5569, 'Levotrine M 5mg/10mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M 5mg/10mg Tablet', 'What is Levotrine M 5mg/10mg Tablet?', 'Levotrine M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5570, 'Levotrine M 5mg/10mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M 5mg/10mg Tablet', 'Can the use of Levotrine M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotrine M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5571, 'Levotrine M 5mg/10mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M 5mg/10mg Tablet', 'Can Levotrine M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotrine M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5572, 'Levotrine M 5mg/10mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M 5mg/10mg Tablet', 'Can the use of Levotrine M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotrine M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5573, 'Levotrine M 5mg/10mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotrine M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotrine M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotrine M 5mg/10mg Tablet.'),
(5574, 'Levotrine M 5mg/10mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M 5mg/10mg Tablet', 'Will Levotrine M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotrine M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5575, 'Levotrine M 5mg/10mg Tablet', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotrine M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5576, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5577, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'Can I decrease the dose of Levotrine M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5578, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'How should Levotrine M Syrup be stored?', 'Levotrine M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5579, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'Can Levotrine M Syrup make my child sleepy?', 'Levotrine M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5580, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotrine M Syrup?', 'No, don’t start Levotrine M Syrup without speaking to your child’s doctor. Moreover, Levotrine M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5581, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotrine M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5582, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotrine M Syrup to my child?', 'Some studies show that Levotrine M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5583, 'Levotrine M Syrup', 'Amplec Healthcare Pvt. Ltd.', 'Levotrine M Syrup', 'Can I use Levotrine M Syrup for treating acute asthma attacks in my child?', 'Levotrine M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5584, 'Levotrin-M 5mg/10mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotrin-M 5mg/10mg Tablet', 'What is Levotrin-M 5mg/10mg Tablet?', 'Levotrin-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5585, 'Levotrin-M 5mg/10mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotrin-M 5mg/10mg Tablet', 'Can the use of Levotrin-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotrin-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5586, 'Levotrin-M 5mg/10mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotrin-M 5mg/10mg Tablet', 'Can Levotrin-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotrin-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5587, 'Levotrin-M 5mg/10mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotrin-M 5mg/10mg Tablet', 'Can the use of Levotrin-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotrin-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5588, 'Levotrin-M 5mg/10mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotrin-M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotrin-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotrin-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotrin-M 5mg/10mg Tablet.'),
(5589, 'Levotrin-M 5mg/10mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotrin-M 5mg/10mg Tablet', 'Will Levotrin-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotrin-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5590, 'Levotrin-M 5mg/10mg Tablet', 'Medihealth Lifesciences Pvt. Ltd.', 'Levotrin-M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotrin-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5591, 'Levotrix 250mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 250mg Tablet', 'Is Levotrix 250mg Tablet safe?', 'Levotrix 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5592, 'Levotrix 250mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 250mg Tablet', 'What if I forget to take a dose of Levotrix 250mg Tablet?', 'If you forget a dose of Levotrix 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5593, 'Levotrix 250mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 250mg Tablet', 'Can the use of Levotrix 250mg Tablet cause diarrhea?', 'Yes, the use of Levotrix 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5594, 'Levotrix 250mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 250mg Tablet', 'Can I stop taking Levotrix 250mg Tablet when I feel better?', 'No, do not stop taking Levotrix 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotrix 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotrix 250mg Tablet in the dose and duration advised by the doctor.'),
(5595, 'Levotrix 250mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 250mg Tablet', 'Can the use of Levotrix 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotrix 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotrix 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5596, 'Levotrix 500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 500mg Tablet', 'Is Levotrix 500mg Tablet safe?', 'Levotrix 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5597, 'Levotrix 500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 500mg Tablet', 'What if I forget to take a dose of Levotrix 500mg Tablet?', 'If you forget a dose of Levotrix 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5598, 'Levotrix 500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 500mg Tablet', 'Can the use of Levotrix 500mg Tablet cause diarrhea?', 'Yes, the use of Levotrix 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5599, 'Levotrix 500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 500mg Tablet', 'Can I stop taking Levotrix 500mg Tablet when I feel better?', 'No, do not stop taking Levotrix 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotrix 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotrix 500mg Tablet in the dose and duration advised by the doctor.'),
(5600, 'Levotrix 500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix 500mg Tablet', 'Can the use of Levotrix 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotrix 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotrix 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5601, 'Levotrix AZ 250mg/250mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix AZ 250mg/250mg Tablet', 'What if I don\'t get better after using Levotrix AZ 250mg/250mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5602, 'Levotrix AZ 250mg/250mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix AZ 250mg/250mg Tablet', 'What if I miss my dose?', 'Take Levotrix AZ 250mg/250mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5603, 'Levotrix OZ 125mg/125mg Suspension', 'Axis Life Science Pvt Ltd', 'Levotrix OZ 125mg/125mg Suspension', 'What if I don\'t get better after using Levotrix OZ 125mg/125mg Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5604, 'Levotrix OZ 125mg/125mg Suspension', 'Axis Life Science Pvt Ltd', 'Levotrix OZ 125mg/125mg Suspension', 'Can I stop taking Levotrix OZ 125mg/125mg Suspension when I feel better?', 'No, do not stop taking Levotrix OZ 125mg/125mg Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5605, 'Levotrix OZ 125mg/125mg Suspension', 'Axis Life Science Pvt Ltd', 'Levotrix OZ 125mg/125mg Suspension', 'What if I miss my dose?', 'Take Levotrix OZ 125mg/125mg Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5606, 'Levotrix OZ 250mg/500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levotrix OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5607, 'Levotrix OZ 250mg/500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix OZ 250mg/500mg Tablet', 'Can I stop taking Levotrix OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levotrix OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5608, 'Levotrix OZ 250mg/500mg Tablet', 'Axis Life Science Pvt Ltd', 'Levotrix OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levotrix OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5609, 'Levotriz 10mg Tablet', 'Precise Lifescience', 'Levotriz 10mg Tablet', 'Is Levotriz 10mg Tablet a steroid? What is it used for?', 'No, Levotriz 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5610, 'Levotriz 10mg Tablet', 'Precise Lifescience', 'Levotriz 10mg Tablet', 'Does Levotriz 10mg Tablet make you tired and drowsy?', 'Yes, Levotriz 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5611, 'Levotriz 10mg Tablet', 'Precise Lifescience', 'Levotriz 10mg Tablet', 'How long does it take for Levotriz 10mg Tablet to work?', 'Levotriz 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5612, 'Levotriz 10mg Tablet', 'Precise Lifescience', 'Levotriz 10mg Tablet', 'Can I take Levotriz 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotriz 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5613, 'Levotriz 10mg Tablet', 'Precise Lifescience', 'Levotriz 10mg Tablet', 'Is it safe to take Levotriz 10mg Tablet for a long time?', 'Levotriz 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotriz 10mg Tablet for only as long as you need it.'),
(5614, 'Levotriz 10mg Tablet', 'Precise Lifescience', 'Levotriz 10mg Tablet', 'For how long should I continue Levotriz 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotriz 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotriz 10mg Tablet'),
(5615, 'Levotriz 5mg Tablet', 'Intellect Lifescience', 'Levotriz 5mg Tablet', 'Is Levotriz 5mg Tablet a steroid? What is it used for?', 'No, Levotriz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5616, 'Levotriz 5mg Tablet', 'Intellect Lifescience', 'Levotriz 5mg Tablet', 'Does Levotriz 5mg Tablet make you tired and drowsy?', 'Yes, Levotriz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5617, 'Levotriz 5mg Tablet', 'Intellect Lifescience', 'Levotriz 5mg Tablet', 'How long does it take for Levotriz 5mg Tablet to work?', 'Levotriz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5618, 'Levotriz 5mg Tablet', 'Intellect Lifescience', 'Levotriz 5mg Tablet', 'Can I take Levotriz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotriz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5619, 'Levotriz 5mg Tablet', 'Intellect Lifescience', 'Levotriz 5mg Tablet', 'Is it safe to take Levotriz 5mg Tablet for a long time?', 'Levotriz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotriz 5mg Tablet for only as long as you need it.'),
(5620, 'Levotriz 5mg Tablet', 'Intellect Lifescience', 'Levotriz 5mg Tablet', 'For how long should I continue Levotriz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotriz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotriz 5mg Tablet'),
(5621, 'Levotriz M Tablet', 'Intellect Lifescience', 'Levotriz M Tablet', 'What is Levotriz M Tablet?', 'Levotriz M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5622, 'Levotriz M Tablet', 'Intellect Lifescience', 'Levotriz M Tablet', 'Can the use of Levotriz M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotriz M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5623, 'Levotriz M Tablet', 'Intellect Lifescience', 'Levotriz M Tablet', 'Can Levotriz M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotriz M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5624, 'Levotriz M Tablet', 'Intellect Lifescience', 'Levotriz M Tablet', 'Can the use of Levotriz M Tablet cause dry mouth?', 'Yes, the use of Levotriz M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5625, 'Levotriz M Tablet', 'Intellect Lifescience', 'Levotriz M Tablet', 'Can I drink alcohol while taking Levotriz M Tablet?', 'No, do not take alcohol while taking Levotriz M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotriz M Tablet.'),
(5626, 'Levotriz M Tablet', 'Intellect Lifescience', 'Levotriz M Tablet', 'Will Levotriz M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotriz M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5627, 'Levotriz M Tablet', 'Intellect Lifescience', 'Levotriz M Tablet', 'What are the instructions for storage and disposal of Levotriz M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5628, 'Levo-Trizine Tablet', 'Raffles Pharmaceuticals', 'Levo-Trizine Tablet', 'Is Levo-Trizine Tablet a steroid? What is it used for?', 'No, Levo-Trizine Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5629, 'Levo-Trizine Tablet', 'Raffles Pharmaceuticals', 'Levo-Trizine Tablet', 'Does Levo-Trizine Tablet make you tired and drowsy?', 'Yes, Levo-Trizine Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5630, 'Levo-Trizine Tablet', 'Raffles Pharmaceuticals', 'Levo-Trizine Tablet', 'How long does it take for Levo-Trizine Tablet to work?', 'Levo-Trizine Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5631, 'Levo-Trizine Tablet', 'Raffles Pharmaceuticals', 'Levo-Trizine Tablet', 'Can I take Levo-Trizine Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levo-Trizine Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5632, 'Levo-Trizine Tablet', 'Raffles Pharmaceuticals', 'Levo-Trizine Tablet', 'Is it safe to take Levo-Trizine Tablet for a long time?', 'Levo-Trizine Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levo-Trizine Tablet for only as long as you need it.'),
(5633, 'Levo-Trizine Tablet', 'Raffles Pharmaceuticals', 'Levo-Trizine Tablet', 'For how long should I continue Levo-Trizine Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levo-Trizine Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levo-Trizine Tablet'),
(5634, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5635, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'Can I decrease the dose of Levotrly M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5636, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'How should Levotrly M Syrup be stored?', 'Levotrly M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5637, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'Can Levotrly M Syrup make my child sleepy?', 'Levotrly M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5638, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotrly M Syrup?', 'No, don’t start Levotrly M Syrup without speaking to your child’s doctor. Moreover, Levotrly M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5639, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotrly M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5640, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levotrly M Syrup to my child?', 'Some studies show that Levotrly M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5641, 'Levotrly M Syrup', 'Mercury Laboratories Ltd', 'Levotrly M Syrup', 'Can I use Levotrly M Syrup for treating acute asthma attacks in my child?', 'Levotrly M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5642, 'Levotrop 500mg Tablet', 'Zatropha Pharma', 'Levotrop 500mg Tablet', 'Is Levotrop 500mg Tablet safe?', 'Levotrop 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5643, 'Levotrop 500mg Tablet', 'Zatropha Pharma', 'Levotrop 500mg Tablet', 'What if I forget to take a dose of Levotrop 500mg Tablet?', 'If you forget a dose of Levotrop 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5644, 'Levotrop 500mg Tablet', 'Zatropha Pharma', 'Levotrop 500mg Tablet', 'Can the use of Levotrop 500mg Tablet cause diarrhea?', 'Yes, the use of Levotrop 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5645, 'Levotrop 500mg Tablet', 'Zatropha Pharma', 'Levotrop 500mg Tablet', 'Can I stop taking Levotrop 500mg Tablet when I feel better?', 'No, do not stop taking Levotrop 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotrop 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotrop 500mg Tablet in the dose and duration advised by the doctor.'),
(5646, 'Levotrop 500mg Tablet', 'Zatropha Pharma', 'Levotrop 500mg Tablet', 'Can the use of Levotrop 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotrop 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotrop 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5647, 'Levotrop OZ 500mg/500mg Tablet', 'Zatropha Pharma', 'Levotrop OZ 500mg/500mg Tablet', 'What if I don\'t get better after using Levotrop OZ 500mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5648, 'Levotrop OZ 500mg/500mg Tablet', 'Zatropha Pharma', 'Levotrop OZ 500mg/500mg Tablet', 'Can I stop taking Levotrop OZ 500mg/500mg Tablet when I feel better?', 'No, do not stop taking Levotrop OZ 500mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5649, 'Levotrop OZ 500mg/500mg Tablet', 'Zatropha Pharma', 'Levotrop OZ 500mg/500mg Tablet', 'What if I miss my dose?', 'Take Levotrop OZ 500mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5650, 'Levotrop OZ Syrup', 'Zatropha Pharma', 'Levotrop OZ Syrup', 'What if I don\'t get better after using Levotrop OZ Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5651, 'Levotrop OZ Syrup', 'Zatropha Pharma', 'Levotrop OZ Syrup', 'Can I stop taking Levotrop OZ Syrup when I feel better?', 'No, do not stop taking Levotrop OZ Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5652, 'Levotrop OZ Syrup', 'Zatropha Pharma', 'Levotrop OZ Syrup', 'What if I miss my dose?', 'Take Levotrop OZ Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5653, 'Levotropium Respules (2.5ml Each)', 'Ultimate Healthcare', 'Levotropium Respules (2.5ml Each)', 'Are there any medicines which I should avoid while taking Levotropium Respules (2.5ml Each)?', 'It is not recommended to use Levotropium Respules (2.5ml Each) along with other medicines, such as anticholinergic, beta-adrenergic agents, beta-blockers, diuretics, digoxin, MAO inhibitors or anti-depressants.'),
(5654, 'Levotropium Respules (2.5ml Each)', 'Ultimate Healthcare', 'Levotropium Respules (2.5ml Each)', 'Will Levotropium Respules (2.5ml Each) be more effective if taken in higher doses?', 'No, taking a higher than the recommended dose of this medicine will not make it more effective, rather can lead to increased side effects. If the symptoms do not get relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(5655, 'Levotropium Respules (2.5ml Each)', 'Ultimate Healthcare', 'Levotropium Respules (2.5ml Each)', 'Can the use of Levotropium Respules (2.5ml Each) cause sleepiness or drowsiness?', 'Yes, Levotropium Respules (2.5ml Each) may make you feel drowsy or sleepy. Avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(5656, 'Levotropium Respules (2.5ml Each)', 'Ultimate Healthcare', 'Levotropium Respules (2.5ml Each)', 'Can the use of Levotropium Respules (2.5ml Each) cause dry mouth?', 'Yes, the use of Levotropium Respules (2.5ml Each) can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(5657, 'Levotropium Respules (2.5ml Each)', 'Ultimate Healthcare', 'Levotropium Respules (2.5ml Each)', 'What are the instructions for storage and disposal of Levotropium Respules (2.5ml Each)?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5658, 'Levotroy 250mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 250mg Tablet', 'Is Levotroy 250mg Tablet safe?', 'Levotroy 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5659, 'Levotroy 250mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 250mg Tablet', 'What if I forget to take a dose of Levotroy 250mg Tablet?', 'If you forget a dose of Levotroy 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5660, 'Levotroy 250mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 250mg Tablet', 'Can the use of Levotroy 250mg Tablet cause diarrhea?', 'Yes, the use of Levotroy 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5661, 'Levotroy 250mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 250mg Tablet', 'Can I stop taking Levotroy 250mg Tablet when I feel better?', 'No, do not stop taking Levotroy 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotroy 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levotroy 250mg Tablet in the dose and duration advised by the doctor.'),
(5662, 'Levotroy 250mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 250mg Tablet', 'Can the use of Levotroy 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotroy 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotroy 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5663, 'Levotroy 500mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 500mg Tablet', 'Is Levotroy 500mg Tablet safe?', 'Levotroy 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5664, 'Levotroy 500mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 500mg Tablet', 'What if I forget to take a dose of Levotroy 500mg Tablet?', 'If you forget a dose of Levotroy 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5665, 'Levotroy 500mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 500mg Tablet', 'Can the use of Levotroy 500mg Tablet cause diarrhea?', 'Yes, the use of Levotroy 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5666, 'Levotroy 500mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 500mg Tablet', 'Can I stop taking Levotroy 500mg Tablet when I feel better?', 'No, do not stop taking Levotroy 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotroy 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotroy 500mg Tablet in the dose and duration advised by the doctor.'),
(5667, 'Levotroy 500mg Tablet', 'Troikaa Pharmaceuticals Ltd', 'Levotroy 500mg Tablet', 'Can the use of Levotroy 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotroy 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotroy 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5668, 'Levotry 5mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry 5mg Tablet', 'Is Levotry 5mg Tablet a steroid? What is it used for?', 'No, Levotry 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5669, 'Levotry 5mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry 5mg Tablet', 'Does Levotry 5mg Tablet make you tired and drowsy?', 'Yes, Levotry 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5670, 'Levotry 5mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry 5mg Tablet', 'How long does it take for Levotry 5mg Tablet to work?', 'Levotry 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5671, 'Levotry 5mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry 5mg Tablet', 'Can I take Levotry 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotry 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5672, 'Levotry 5mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry 5mg Tablet', 'Is it safe to take Levotry 5mg Tablet for a long time?', 'Levotry 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotry 5mg Tablet for only as long as you need it.'),
(5673, 'Levotry 5mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry 5mg Tablet', 'For how long should I continue Levotry 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotry 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotry 5mg Tablet'),
(5674, 'Levotry M 5mg/10mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry M 5mg/10mg Tablet', 'What is Levotry M 5mg/10mg Tablet?', 'Levotry M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5675, 'Levotry M 5mg/10mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry M 5mg/10mg Tablet', 'Can the use of Levotry M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotry M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5676, 'Levotry M 5mg/10mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry M 5mg/10mg Tablet', 'Can Levotry M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levotry M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5677, 'Levotry M 5mg/10mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry M 5mg/10mg Tablet', 'Can the use of Levotry M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levotry M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5678, 'Levotry M 5mg/10mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levotry M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levotry M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotry M 5mg/10mg Tablet.'),
(5679, 'Levotry M 5mg/10mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry M 5mg/10mg Tablet', 'Will Levotry M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotry M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5680, 'Levotry M 5mg/10mg Tablet', 'Geologic Labs Pvt. Ltd.', 'Levotry M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levotry M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5681, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5682, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'Can I decrease the dose of Levotry M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5683, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'How should Levotry M Oral Suspension be stored?', 'Levotry M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5684, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'Can Levotry M Oral Suspension make my child sleepy?', 'Levotry M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5685, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levotry M Oral Suspension?', 'No, don’t start Levotry M Oral Suspension without speaking to your child’s doctor. Moreover, Levotry M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5686, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levotry M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5687, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levotry M Oral Suspension to my child?', 'Some studies show that Levotry M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5688, 'Levotry M Oral Suspension', 'Geologic Labs Pvt. Ltd.', 'Levotry M Oral Suspension', 'Can I use Levotry M Oral Suspension for treating acute asthma attacks in my child?', 'Levotry M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5689, 'Levotryl M Tablet', 'Mercury Laboratories Ltd', 'Levotryl M Tablet', 'What is Levotryl M Tablet?', 'Levotryl M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5690, 'Levotryl M Tablet', 'Mercury Laboratories Ltd', 'Levotryl M Tablet', 'Can the use of Levotryl M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levotryl M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5691, 'Levotryl M Tablet', 'Mercury Laboratories Ltd', 'Levotryl M Tablet', 'Can Levotryl M Tablet be stopped when allergy symptoms are relieved?', 'No, Levotryl M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5692, 'Levotryl M Tablet', 'Mercury Laboratories Ltd', 'Levotryl M Tablet', 'Can the use of Levotryl M Tablet cause dry mouth?', 'Yes, the use of Levotryl M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5693, 'Levotryl M Tablet', 'Mercury Laboratories Ltd', 'Levotryl M Tablet', 'Can I drink alcohol while taking Levotryl M Tablet?', 'No, do not take alcohol while taking Levotryl M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levotryl M Tablet.'),
(5694, 'Levotryl M Tablet', 'Mercury Laboratories Ltd', 'Levotryl M Tablet', 'Will Levotryl M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levotryl M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5695, 'Levotryl M Tablet', 'Mercury Laboratories Ltd', 'Levotryl M Tablet', 'What are the instructions for storage and disposal of Levotryl M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5696, 'Levotryl Syrup', 'Mercury Laboratories Ltd', 'Levotryl Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levotryl Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(5697, 'Levotryl Syrup', 'Mercury Laboratories Ltd', 'Levotryl Syrup', 'Can other medicines be given at the same time as Levotryl Syrup?', 'Levotryl Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levotryl Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(5698, 'Levotryl Syrup', 'Mercury Laboratories Ltd', 'Levotryl Syrup', 'How much Levotryl Syrup should I give to my child?', 'Levotryl Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(5699, 'Levotryl Syrup', 'Mercury Laboratories Ltd', 'Levotryl Syrup', 'What if I give too much of Levotryl Syrup by mistake?', 'Although Levotryl Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(5700, 'Levotryl Syrup', 'Mercury Laboratories Ltd', 'Levotryl Syrup', 'How should Levotryl Syrup be stored?', 'Store Levotryl Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5701, 'Levotryl Syrup', 'Mercury Laboratories Ltd', 'Levotryl Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5702, 'Levotryl Tablet', 'Mercury Laboratories Ltd', 'Levotryl Tablet', 'Is Levotryl Tablet a steroid? What is it used for?', 'No, Levotryl Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5703, 'Levotryl Tablet', 'Mercury Laboratories Ltd', 'Levotryl Tablet', 'Does Levotryl Tablet make you tired and drowsy?', 'Yes, Levotryl Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5704, 'Levotryl Tablet', 'Mercury Laboratories Ltd', 'Levotryl Tablet', 'How long does it take for Levotryl Tablet to work?', 'Levotryl Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5705, 'Levotryl Tablet', 'Mercury Laboratories Ltd', 'Levotryl Tablet', 'Can I take Levotryl Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotryl Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5706, 'Levotryl Tablet', 'Mercury Laboratories Ltd', 'Levotryl Tablet', 'Is it safe to take Levotryl Tablet for a long time?', 'Levotryl Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotryl Tablet for only as long as you need it.'),
(5707, 'Levotryl Tablet', 'Mercury Laboratories Ltd', 'Levotryl Tablet', 'For how long should I continue Levotryl Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotryl Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotryl Tablet'),
(5708, 'Levotum 500mg Tablet', 'Profic Organic Ltd', 'Levotum 500mg Tablet', 'Is Levotum 500mg Tablet safe?', 'Levotum 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5709, 'Levotum 500mg Tablet', 'Profic Organic Ltd', 'Levotum 500mg Tablet', 'What if I forget to take a dose of Levotum 500mg Tablet?', 'If you forget a dose of Levotum 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5710, 'Levotum 500mg Tablet', 'Profic Organic Ltd', 'Levotum 500mg Tablet', 'Can the use of Levotum 500mg Tablet cause diarrhea?', 'Yes, the use of Levotum 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5711, 'Levotum 500mg Tablet', 'Profic Organic Ltd', 'Levotum 500mg Tablet', 'Can I stop taking Levotum 500mg Tablet when I feel better?', 'No, do not stop taking Levotum 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotum 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotum 500mg Tablet in the dose and duration advised by the doctor.'),
(5712, 'Levotum 500mg Tablet', 'Profic Organic Ltd', 'Levotum 500mg Tablet', 'Can the use of Levotum 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotum 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotum 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5713, 'Levotum OZ Oral Suspension', 'Profic Organic Ltd', 'Levotum OZ Oral Suspension', 'What if I don\'t get better after using Levotum OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5714, 'Levotum OZ Oral Suspension', 'Profic Organic Ltd', 'Levotum OZ Oral Suspension', 'Can I stop taking Levotum OZ Oral Suspension when I feel better?', 'No, do not stop taking Levotum OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5715, 'Levotum OZ Oral Suspension', 'Profic Organic Ltd', 'Levotum OZ Oral Suspension', 'What if I miss my dose?', 'Take Levotum OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5716, 'Levotune 5 Tablet', 'Fortune Labs', 'Levotune 5 Tablet', 'Is Levotune 5 Tablet a steroid? What is it used for?', 'No, Levotune 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5717, 'Levotune 5 Tablet', 'Fortune Labs', 'Levotune 5 Tablet', 'Does Levotune 5 Tablet make you tired and drowsy?', 'Yes, Levotune 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5718, 'Levotune 5 Tablet', 'Fortune Labs', 'Levotune 5 Tablet', 'How long does it take for Levotune 5 Tablet to work?', 'Levotune 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5719, 'Levotune 5 Tablet', 'Fortune Labs', 'Levotune 5 Tablet', 'Can I take Levotune 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levotune 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5720, 'Levotune 5 Tablet', 'Fortune Labs', 'Levotune 5 Tablet', 'Is it safe to take Levotune 5 Tablet for a long time?', 'Levotune 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levotune 5 Tablet for only as long as you need it.'),
(5721, 'Levotune 5 Tablet', 'Fortune Labs', 'Levotune 5 Tablet', 'For how long should I continue Levotune 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levotune 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levotune 5 Tablet'),
(5722, 'Levotus 500mg Tablet', 'Kapeetus Medicorp', 'Levotus 500mg Tablet', 'Is Levotus 500mg Tablet safe?', 'Levotus 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5723, 'Levotus 500mg Tablet', 'Kapeetus Medicorp', 'Levotus 500mg Tablet', 'What if I forget to take a dose of Levotus 500mg Tablet?', 'If you forget a dose of Levotus 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5724, 'Levotus 500mg Tablet', 'Kapeetus Medicorp', 'Levotus 500mg Tablet', 'Can the use of Levotus 500mg Tablet cause diarrhea?', 'Yes, the use of Levotus 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5725, 'Levotus 500mg Tablet', 'Kapeetus Medicorp', 'Levotus 500mg Tablet', 'Can I stop taking Levotus 500mg Tablet when I feel better?', 'No, do not stop taking Levotus 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levotus 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levotus 500mg Tablet in the dose and duration advised by the doctor.'),
(5726, 'Levotus 500mg Tablet', 'Kapeetus Medicorp', 'Levotus 500mg Tablet', 'Can the use of Levotus 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levotus 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levotus 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5727, 'Levoty 10mg Tablet', 'Otik Biotec', 'Levoty 10mg Tablet', 'Is Levoty 10mg Tablet a steroid? What is it used for?', 'No, Levoty 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5728, 'Levoty 10mg Tablet', 'Otik Biotec', 'Levoty 10mg Tablet', 'Does Levoty 10mg Tablet make you tired and drowsy?', 'Yes, Levoty 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5729, 'Levoty 10mg Tablet', 'Otik Biotec', 'Levoty 10mg Tablet', 'How long does it take for Levoty 10mg Tablet to work?', 'Levoty 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5730, 'Levoty 10mg Tablet', 'Otik Biotec', 'Levoty 10mg Tablet', 'Can I take Levoty 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoty 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5731, 'Levoty 10mg Tablet', 'Otik Biotec', 'Levoty 10mg Tablet', 'Is it safe to take Levoty 10mg Tablet for a long time?', 'Levoty 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoty 10mg Tablet for only as long as you need it.'),
(5732, 'Levoty 10mg Tablet', 'Otik Biotec', 'Levoty 10mg Tablet', 'For how long should I continue Levoty 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoty 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoty 10mg Tablet'),
(5733, 'Levoty 5mg Tablet', 'Otik Biotec', 'Levoty 5mg Tablet', 'Is Levoty 5mg Tablet a steroid? What is it used for?', 'No, Levoty 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5734, 'Levoty 5mg Tablet', 'Otik Biotec', 'Levoty 5mg Tablet', 'Does Levoty 5mg Tablet make you tired and drowsy?', 'Yes, Levoty 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5735, 'Levoty 5mg Tablet', 'Otik Biotec', 'Levoty 5mg Tablet', 'How long does it take for Levoty 5mg Tablet to work?', 'Levoty 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5736, 'Levoty 5mg Tablet', 'Otik Biotec', 'Levoty 5mg Tablet', 'Can I take Levoty 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoty 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5737, 'Levoty 5mg Tablet', 'Otik Biotec', 'Levoty 5mg Tablet', 'Is it safe to take Levoty 5mg Tablet for a long time?', 'Levoty 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoty 5mg Tablet for only as long as you need it.'),
(5738, 'Levoty 5mg Tablet', 'Otik Biotec', 'Levoty 5mg Tablet', 'For how long should I continue Levoty 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoty 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoty 5mg Tablet'),
(5739, 'Levoty LM 5mg/10mg Tablet', 'Otik Biotec', 'Levoty LM 5mg/10mg Tablet', 'What is Levoty LM 5mg/10mg Tablet?', 'Levoty LM 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5740, 'Levoty LM 5mg/10mg Tablet', 'Otik Biotec', 'Levoty LM 5mg/10mg Tablet', 'Can the use of Levoty LM 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoty LM 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5741, 'Levoty LM 5mg/10mg Tablet', 'Otik Biotec', 'Levoty LM 5mg/10mg Tablet', 'Can Levoty LM 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoty LM 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5742, 'Levoty LM 5mg/10mg Tablet', 'Otik Biotec', 'Levoty LM 5mg/10mg Tablet', 'Can the use of Levoty LM 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoty LM 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5743, 'Levoty LM 5mg/10mg Tablet', 'Otik Biotec', 'Levoty LM 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoty LM 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoty LM 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoty LM 5mg/10mg Tablet.'),
(5744, 'Levoty LM 5mg/10mg Tablet', 'Otik Biotec', 'Levoty LM 5mg/10mg Tablet', 'Will Levoty LM 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoty LM 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5745, 'Levoty LM 5mg/10mg Tablet', 'Otik Biotec', 'Levoty LM 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoty LM 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5746, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5747, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levoty LM Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5748, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'How should Levoty LM Kid 2.5mg/4mg Tablet be stored?', 'Levoty LM Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5749, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'Can Levoty LM Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levoty LM Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5750, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoty LM Kid 2.5mg/4mg Tablet?', 'No, don’t start Levoty LM Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levoty LM Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5751, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoty LM Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5752, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levoty LM Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levoty LM Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5753, 'Levoty LM Kid 2.5mg/4mg Tablet', 'Otik Biotec', 'Levoty LM Kid 2.5mg/4mg Tablet', 'Can I use Levoty LM Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levoty LM Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5754, 'Levous 10mg Tablet', 'Medius Biotech', 'Levous 10mg Tablet', 'Is Levous 10mg Tablet a steroid? What is it used for?', 'No, Levous 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5755, 'Levous 10mg Tablet', 'Medius Biotech', 'Levous 10mg Tablet', 'Does Levous 10mg Tablet make you tired and drowsy?', 'Yes, Levous 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5756, 'Levous 10mg Tablet', 'Medius Biotech', 'Levous 10mg Tablet', 'How long does it take for Levous 10mg Tablet to work?', 'Levous 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5757, 'Levous 10mg Tablet', 'Medius Biotech', 'Levous 10mg Tablet', 'Can I take Levous 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levous 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5758, 'Levous 10mg Tablet', 'Medius Biotech', 'Levous 10mg Tablet', 'Is it safe to take Levous 10mg Tablet for a long time?', 'Levous 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levous 10mg Tablet for only as long as you need it.'),
(5759, 'Levous 10mg Tablet', 'Medius Biotech', 'Levous 10mg Tablet', 'For how long should I continue Levous 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levous 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levous 10mg Tablet'),
(5760, 'Levous 5mg Tablet', 'Medius Biotech', 'Levous 5mg Tablet', 'Is Levous 5mg Tablet a steroid? What is it used for?', 'No, Levous 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5761, 'Levous 5mg Tablet', 'Medius Biotech', 'Levous 5mg Tablet', 'Does Levous 5mg Tablet make you tired and drowsy?', 'Yes, Levous 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5762, 'Levous 5mg Tablet', 'Medius Biotech', 'Levous 5mg Tablet', 'How long does it take for Levous 5mg Tablet to work?', 'Levous 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5763, 'Levous 5mg Tablet', 'Medius Biotech', 'Levous 5mg Tablet', 'Can I take Levous 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levous 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5764, 'Levous 5mg Tablet', 'Medius Biotech', 'Levous 5mg Tablet', 'Is it safe to take Levous 5mg Tablet for a long time?', 'Levous 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levous 5mg Tablet for only as long as you need it.'),
(5765, 'Levous 5mg Tablet', 'Medius Biotech', 'Levous 5mg Tablet', 'For how long should I continue Levous 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levous 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levous 5mg Tablet'),
(5766, 'Levous M 5mg/10mg Tablet', 'Medius Biotech', 'Levous M 5mg/10mg Tablet', 'What is Levous M 5mg/10mg Tablet?', 'Levous M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5767, 'Levous M 5mg/10mg Tablet', 'Medius Biotech', 'Levous M 5mg/10mg Tablet', 'Can the use of Levous M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levous M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5768, 'Levous M 5mg/10mg Tablet', 'Medius Biotech', 'Levous M 5mg/10mg Tablet', 'Can Levous M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levous M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5769, 'Levous M 5mg/10mg Tablet', 'Medius Biotech', 'Levous M 5mg/10mg Tablet', 'Can the use of Levous M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levous M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5770, 'Levous M 5mg/10mg Tablet', 'Medius Biotech', 'Levous M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levous M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levous M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levous M 5mg/10mg Tablet.'),
(5771, 'Levous M 5mg/10mg Tablet', 'Medius Biotech', 'Levous M 5mg/10mg Tablet', 'Will Levous M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levous M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5772, 'Levous M 5mg/10mg Tablet', 'Medius Biotech', 'Levous M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levous M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5773, 'Levouzair 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levouzair 5mg Tablet', 'Is Levouzair 5mg Tablet a steroid? What is it used for?', 'No, Levouzair 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5774, 'Levouzair 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levouzair 5mg Tablet', 'Does Levouzair 5mg Tablet make you tired and drowsy?', 'Yes, Levouzair 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5775, 'Levouzair 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levouzair 5mg Tablet', 'How long does it take for Levouzair 5mg Tablet to work?', 'Levouzair 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5776, 'Levouzair 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levouzair 5mg Tablet', 'Can I take Levouzair 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levouzair 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5777, 'Levouzair 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levouzair 5mg Tablet', 'Is it safe to take Levouzair 5mg Tablet for a long time?', 'Levouzair 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levouzair 5mg Tablet for only as long as you need it.'),
(5778, 'Levouzair 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levouzair 5mg Tablet', 'For how long should I continue Levouzair 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levouzair 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levouzair 5mg Tablet'),
(5779, 'Levova 5mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova 5mg Tablet', 'Is Levova 5mg Tablet a steroid? What is it used for?', 'No, Levova 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5780, 'Levova 5mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova 5mg Tablet', 'Does Levova 5mg Tablet make you tired and drowsy?', 'Yes, Levova 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5781, 'Levova 5mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova 5mg Tablet', 'How long does it take for Levova 5mg Tablet to work?', 'Levova 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5782, 'Levova 5mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova 5mg Tablet', 'Can I take Levova 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levova 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5783, 'Levova 5mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova 5mg Tablet', 'Is it safe to take Levova 5mg Tablet for a long time?', 'Levova 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levova 5mg Tablet for only as long as you need it.'),
(5784, 'Levova 5mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova 5mg Tablet', 'For how long should I continue Levova 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levova 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levova 5mg Tablet'),
(5785, 'Levova M 5 mg/10 mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M 5 mg/10 mg Tablet', 'What is Levova M  5 mg/10 mg Tablet?', 'Levova M  5 mg/10 mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5786, 'Levova M 5 mg/10 mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M 5 mg/10 mg Tablet', 'Can the use of Levova M  5 mg/10 mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levova M  5 mg/10 mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5787, 'Levova M 5 mg/10 mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M 5 mg/10 mg Tablet', 'Can Levova M  5 mg/10 mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levova M  5 mg/10 mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5788, 'Levova M 5 mg/10 mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M 5 mg/10 mg Tablet', 'Can the use of Levova M  5 mg/10 mg Tablet cause dry mouth?', 'Yes, the use of Levova M  5 mg/10 mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5789, 'Levova M 5 mg/10 mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M 5 mg/10 mg Tablet', 'Can I drink alcohol while taking Levova M  5 mg/10 mg Tablet?', 'No, do not take alcohol while taking Levova M  5 mg/10 mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levova M  5 mg/10 mg Tablet.'),
(5790, 'Levova M 5 mg/10 mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M 5 mg/10 mg Tablet', 'Will Levova M  5 mg/10 mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levova M  5 mg/10 mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5791, 'Levova M 5 mg/10 mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M 5 mg/10 mg Tablet', 'What are the instructions for storage and disposal of Levova M  5 mg/10 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5792, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5793, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levova M  Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5794, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'How should Levova M  Kid 2.5mg/4mg Tablet be stored?', 'Levova M  Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5795, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'Can Levova M  Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levova M  Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5796, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levova M  Kid 2.5mg/4mg Tablet?', 'No, don’t start Levova M  Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levova M  Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5797, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levova M  Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5798, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levova M  Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levova M  Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5799, 'Levova M Kid 2.5mg/4mg Tablet', 'Rhine Biogenics Pvt Ltd', 'Levova M Kid 2.5mg/4mg Tablet', 'Can I use Levova M  Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levova M  Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5800, 'Levovac M 5mg/10mg Tablet', 'Synergy Vaccines LLP', 'Levovac M 5mg/10mg Tablet', 'What is Levovac M 5mg/10mg Tablet?', 'Levovac M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5801, 'Levovac M 5mg/10mg Tablet', 'Synergy Vaccines LLP', 'Levovac M 5mg/10mg Tablet', 'Can the use of Levovac M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levovac M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5802, 'Levovac M 5mg/10mg Tablet', 'Synergy Vaccines LLP', 'Levovac M 5mg/10mg Tablet', 'Can Levovac M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levovac M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5803, 'Levovac M 5mg/10mg Tablet', 'Synergy Vaccines LLP', 'Levovac M 5mg/10mg Tablet', 'Can the use of Levovac M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levovac M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5804, 'Levovac M 5mg/10mg Tablet', 'Synergy Vaccines LLP', 'Levovac M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levovac M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levovac M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levovac M 5mg/10mg Tablet.'),
(5805, 'Levovac M 5mg/10mg Tablet', 'Synergy Vaccines LLP', 'Levovac M 5mg/10mg Tablet', 'Will Levovac M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levovac M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5806, 'Levovac M 5mg/10mg Tablet', 'Synergy Vaccines LLP', 'Levovac M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levovac M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5807, 'Levovak Tablet', 'Vakker Pharmaceuticals Pvt Ltd', 'Levovak Tablet', 'Is Levovak Tablet a steroid? What is it used for?', 'No, Levovak Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5808, 'Levovak Tablet', 'Vakker Pharmaceuticals Pvt Ltd', 'Levovak Tablet', 'Does Levovak Tablet make you tired and drowsy?', 'Yes, Levovak Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5809, 'Levovak Tablet', 'Vakker Pharmaceuticals Pvt Ltd', 'Levovak Tablet', 'How long does it take for Levovak Tablet to work?', 'Levovak Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5810, 'Levovak Tablet', 'Vakker Pharmaceuticals Pvt Ltd', 'Levovak Tablet', 'Can I take Levovak Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovak Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5811, 'Levovak Tablet', 'Vakker Pharmaceuticals Pvt Ltd', 'Levovak Tablet', 'Is it safe to take Levovak Tablet for a long time?', 'Levovak Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovak Tablet for only as long as you need it.'),
(5812, 'Levovak Tablet', 'Vakker Pharmaceuticals Pvt Ltd', 'Levovak Tablet', 'For how long should I continue Levovak Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovak Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovak Tablet'),
(5813, 'Levovamp 10 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp 10 Tablet', 'Is Levovamp 10 Tablet a steroid? What is it used for?', 'No, Levovamp 10 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5814, 'Levovamp 10 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp 10 Tablet', 'Does Levovamp 10 Tablet make you tired and drowsy?', 'Yes, Levovamp 10 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5815, 'Levovamp 10 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp 10 Tablet', 'How long does it take for Levovamp 10 Tablet to work?', 'Levovamp 10 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5816, 'Levovamp 10 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp 10 Tablet', 'Can I take Levovamp 10 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovamp 10 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5817, 'Levovamp 10 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp 10 Tablet', 'Is it safe to take Levovamp 10 Tablet for a long time?', 'Levovamp 10 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovamp 10 Tablet for only as long as you need it.'),
(5818, 'Levovamp 10 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp 10 Tablet', 'For how long should I continue Levovamp 10 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovamp 10 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovamp 10 Tablet'),
(5819, 'Levovamp Syrup Mango', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp Syrup Mango', 'My child is restless and unable to sleep properly at night. Can I give Levovamp Syrup Mango?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(5820, 'Levovamp Syrup Mango', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp Syrup Mango', 'Can other medicines be given at the same time as Levovamp Syrup Mango?', 'Levovamp Syrup Mango can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levovamp Syrup Mango. Also, check with your child’s doctor before giving any medicine to your child.'),
(5821, 'Levovamp Syrup Mango', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp Syrup Mango', 'How much Levovamp Syrup Mango should I give to my child?', 'Levovamp Syrup Mango should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(5822, 'Levovamp Syrup Mango', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp Syrup Mango', 'What if I give too much of Levovamp Syrup Mango by mistake?', 'Although Levovamp Syrup Mango is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(5823, 'Levovamp Syrup Mango', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp Syrup Mango', 'How should Levovamp Syrup Mango be stored?', 'Store Levovamp Syrup Mango at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5824, 'Levovamp Syrup Mango', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovamp Syrup Mango', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(5825, 'Levovap M 5mg/10mg Tablet', 'Isonic Pharmaceuticals Private Limited', 'Levovap M 5mg/10mg Tablet', 'What is Levovap M 5mg/10mg Tablet?', 'Levovap M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5826, 'Levovap M 5mg/10mg Tablet', 'Isonic Pharmaceuticals Private Limited', 'Levovap M 5mg/10mg Tablet', 'Can the use of Levovap M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levovap M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5827, 'Levovap M 5mg/10mg Tablet', 'Isonic Pharmaceuticals Private Limited', 'Levovap M 5mg/10mg Tablet', 'Can Levovap M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levovap M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5828, 'Levovap M 5mg/10mg Tablet', 'Isonic Pharmaceuticals Private Limited', 'Levovap M 5mg/10mg Tablet', 'Can the use of Levovap M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levovap M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5829, 'Levovap M 5mg/10mg Tablet', 'Isonic Pharmaceuticals Private Limited', 'Levovap M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levovap M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levovap M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levovap M 5mg/10mg Tablet.'),
(5830, 'Levovap M 5mg/10mg Tablet', 'Isonic Pharmaceuticals Private Limited', 'Levovap M 5mg/10mg Tablet', 'Will Levovap M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levovap M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5831, 'Levovap M 5mg/10mg Tablet', 'Isonic Pharmaceuticals Private Limited', 'Levovap M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levovap M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5832, 'Levovax 500mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 500mg Tablet', 'Is Levovax 500mg Tablet safe?', 'Levovax 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5833, 'Levovax 500mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 500mg Tablet', 'What if I forget to take a dose of Levovax 500mg Tablet?', 'If you forget a dose of Levovax 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5834, 'Levovax 500mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 500mg Tablet', 'Can the use of Levovax 500mg Tablet cause diarrhea?', 'Yes, the use of Levovax 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5835, 'Levovax 500mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 500mg Tablet', 'Can I stop taking Levovax 500mg Tablet when I feel better?', 'No, do not stop taking Levovax 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovax 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levovax 500mg Tablet in the dose and duration advised by the doctor.'),
(5836, 'Levovax 500mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 500mg Tablet', 'Can the use of Levovax 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levovax 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovax 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5837, 'Levovax 750mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 750mg Tablet', 'Is Levovax 750mg Tablet safe?', 'Levovax 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5838, 'Levovax 750mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 750mg Tablet', 'What if I forget to take a dose of Levovax 750mg Tablet?', 'If you forget a dose of Levovax 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5839, 'Levovax 750mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 750mg Tablet', 'Can the use of Levovax 750mg Tablet cause diarrhea?', 'Yes, the use of Levovax 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5840, 'Levovax 750mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 750mg Tablet', 'Can I stop taking Levovax 750mg Tablet when I feel better?', 'No, do not stop taking Levovax 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovax 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levovax 750mg Tablet in the dose and duration advised by the doctor.'),
(5841, 'Levovax 750mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax 750mg Tablet', 'Can the use of Levovax 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levovax 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovax 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5842, 'Levovax OZ Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax OZ Tablet', 'What if I don\'t get better after using Levovax OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(5843, 'Levovax OZ Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax OZ Tablet', 'Can I stop taking Levovax OZ Tablet when I feel better?', 'No, do not stop taking Levovax OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(5844, 'Levovax OZ Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovax OZ Tablet', 'What if I miss my dose?', 'Take Levovax OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(5845, 'Levovay 500 Tablet', 'Anevay Pharmaceuticals Pvt. Ltd.', 'Levovay 500 Tablet', 'Is Levovay 500 Tablet safe?', 'Levovay 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5846, 'Levovay 500 Tablet', 'Anevay Pharmaceuticals Pvt. Ltd.', 'Levovay 500 Tablet', 'What if I forget to take a dose of Levovay 500 Tablet?', 'If you forget a dose of Levovay 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5847, 'Levovay 500 Tablet', 'Anevay Pharmaceuticals Pvt. Ltd.', 'Levovay 500 Tablet', 'Can the use of Levovay 500 Tablet cause diarrhea?', 'Yes, the use of Levovay 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5848, 'Levovay 500 Tablet', 'Anevay Pharmaceuticals Pvt. Ltd.', 'Levovay 500 Tablet', 'Can I stop taking Levovay 500 Tablet when I feel better?', 'No, do not stop taking Levovay 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovay 500 Tablet too early, the symptoms may return or worsen. Continue taking Levovay 500 Tablet in the dose and duration advised by the doctor.'),
(5849, 'Levovay 500 Tablet', 'Anevay Pharmaceuticals Pvt. Ltd.', 'Levovay 500 Tablet', 'Can the use of Levovay 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levovay 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovay 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5850, 'Levovec Cold Suspension', 'Edrant Pharmaceuticals', 'Levovec Cold Suspension', 'What if  I give too much Levovec Cold Suspension by mistake?', 'Prolonged or excess intake of Levovec Cold Suspension can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(5851, 'Levovec Cold Suspension', 'Edrant Pharmaceuticals', 'Levovec Cold Suspension', 'How can I store Levovec Cold Suspension?', 'Levovec Cold Suspension should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5852, 'Levovec Cold Suspension', 'Edrant Pharmaceuticals', 'Levovec Cold Suspension', 'My child has a cough and fever. Can I give him two medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. The reason being, both the medicines could have the same ingredients. This would be equivalent to an overdose and could have serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(5853, 'Levovec Cold Suspension', 'Edrant Pharmaceuticals', 'Levovec Cold Suspension', 'Can  I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(5854, 'Levovec Cold Suspension', 'Edrant Pharmaceuticals', 'Levovec Cold Suspension', 'Can Levovec Cold Suspension make my child sleepy?', 'Levovec Cold Suspension may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(5855, 'Levovec Tablet', 'Edrant Pharmaceuticals', 'Levovec Tablet', 'Is Levovec Tablet a steroid? What is it used for?', 'No, Levovec Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5856, 'Levovec Tablet', 'Edrant Pharmaceuticals', 'Levovec Tablet', 'Does Levovec Tablet make you tired and drowsy?', 'Yes, Levovec Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5857, 'Levovec Tablet', 'Edrant Pharmaceuticals', 'Levovec Tablet', 'How long does it take for Levovec Tablet to work?', 'Levovec Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5858, 'Levovec Tablet', 'Edrant Pharmaceuticals', 'Levovec Tablet', 'Can I take Levovec Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovec Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5859, 'Levovec Tablet', 'Edrant Pharmaceuticals', 'Levovec Tablet', 'Is it safe to take Levovec Tablet for a long time?', 'Levovec Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovec Tablet for only as long as you need it.'),
(5860, 'Levovec Tablet', 'Edrant Pharmaceuticals', 'Levovec Tablet', 'For how long should I continue Levovec Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovec Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovec Tablet'),
(5861, 'Levovec-M Tablet', 'Edrant Pharmaceuticals', 'Levovec-M Tablet', 'What is Levovec-M Tablet?', 'Levovec-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5862, 'Levovec-M Tablet', 'Edrant Pharmaceuticals', 'Levovec-M Tablet', 'Can the use of Levovec-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levovec-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5863, 'Levovec-M Tablet', 'Edrant Pharmaceuticals', 'Levovec-M Tablet', 'Can Levovec-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levovec-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5864, 'Levovec-M Tablet', 'Edrant Pharmaceuticals', 'Levovec-M Tablet', 'Can the use of Levovec-M Tablet cause dry mouth?', 'Yes, the use of Levovec-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5865, 'Levovec-M Tablet', 'Edrant Pharmaceuticals', 'Levovec-M Tablet', 'Can I drink alcohol while taking Levovec-M Tablet?', 'No, do not take alcohol while taking Levovec-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levovec-M Tablet.'),
(5866, 'Levovec-M Tablet', 'Edrant Pharmaceuticals', 'Levovec-M Tablet', 'Will Levovec-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levovec-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5867, 'Levovec-M Tablet', 'Edrant Pharmaceuticals', 'Levovec-M Tablet', 'What are the instructions for storage and disposal of Levovec-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5868, 'Levovel 5 Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel 5 Tablet', 'Is Levovel 5 Tablet a steroid? What is it used for?', 'No, Levovel 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5869, 'Levovel 5 Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel 5 Tablet', 'Does Levovel 5 Tablet make you tired and drowsy?', 'Yes, Levovel 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5870, 'Levovel 5 Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel 5 Tablet', 'How long does it take for Levovel 5 Tablet to work?', 'Levovel 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5871, 'Levovel 5 Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel 5 Tablet', 'Can I take Levovel 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovel 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5872, 'Levovel 5 Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel 5 Tablet', 'Is it safe to take Levovel 5 Tablet for a long time?', 'Levovel 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovel 5 Tablet for only as long as you need it.'),
(5873, 'Levovel 5 Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel 5 Tablet', 'For how long should I continue Levovel 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovel 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovel 5 Tablet'),
(5874, 'Levovel M 5mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel M 5mg/10mg Tablet', 'What is Levovel M 5mg/10mg Tablet?', 'Levovel M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5875, 'Levovel M 5mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel M 5mg/10mg Tablet', 'Can the use of Levovel M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levovel M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5876, 'Levovel M 5mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel M 5mg/10mg Tablet', 'Can Levovel M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levovel M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5877, 'Levovel M 5mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel M 5mg/10mg Tablet', 'Can the use of Levovel M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levovel M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5878, 'Levovel M 5mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levovel M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levovel M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levovel M 5mg/10mg Tablet.'),
(5879, 'Levovel M 5mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel M 5mg/10mg Tablet', 'Will Levovel M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levovel M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5880, 'Levovel M 5mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levovel M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5881, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5882, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'Can I decrease the dose of Levovel M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5883, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'How should Levovel M Syrup be stored?', 'Levovel M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5884, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'Can Levovel M Syrup make my child sleepy?', 'Levovel M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5885, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levovel M Syrup?', 'No, don’t start Levovel M Syrup without speaking to your child’s doctor. Moreover, Levovel M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5886, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levovel M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5887, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levovel M Syrup to my child?', 'Some studies show that Levovel M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5888, 'Levovel M Syrup', 'Vinson Pharma Pvt Ltd', 'Levovel M Syrup', 'Can I use Levovel M Syrup for treating acute asthma attacks in my child?', 'Levovel M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5889, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5890, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'Can I decrease the dose of Levovel-M-Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5891, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'How should Levovel-M-Kid Tablet be stored?', 'Levovel-M-Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5892, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'Can Levovel-M-Kid Tablet make my child sleepy?', 'Levovel-M-Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5893, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levovel-M-Kid Tablet?', 'No, don’t start Levovel-M-Kid Tablet without speaking to your child’s doctor. Moreover, Levovel-M-Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5894, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levovel-M-Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5895, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levovel-M-Kid Tablet to my child?', 'Some studies show that Levovel-M-Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5896, 'Levovel-M-Kid Tablet', 'Vinson Pharma Pvt Ltd', 'Levovel-M-Kid Tablet', 'Can I use Levovel-M-Kid Tablet for treating acute asthma attacks in my child?', 'Levovel-M-Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5897, 'Levovent 5mg Tablet', 'Novakind Bioscience Pvt Ltd', 'Levovent 5mg Tablet', 'Is Levovent 5mg Tablet a steroid? What is it used for?', 'No, Levovent 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5898, 'Levovent 5mg Tablet', 'Novakind Bioscience Pvt Ltd', 'Levovent 5mg Tablet', 'Does Levovent 5mg Tablet make you tired and drowsy?', 'Yes, Levovent 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5899, 'Levovent 5mg Tablet', 'Novakind Bioscience Pvt Ltd', 'Levovent 5mg Tablet', 'How long does it take for Levovent 5mg Tablet to work?', 'Levovent 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5900, 'Levovent 5mg Tablet', 'Novakind Bioscience Pvt Ltd', 'Levovent 5mg Tablet', 'Can I take Levovent 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovent 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5901, 'Levovent 5mg Tablet', 'Novakind Bioscience Pvt Ltd', 'Levovent 5mg Tablet', 'Is it safe to take Levovent 5mg Tablet for a long time?', 'Levovent 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovent 5mg Tablet for only as long as you need it.'),
(5902, 'Levovent 5mg Tablet', 'Novakind Bioscience Pvt Ltd', 'Levovent 5mg Tablet', 'For how long should I continue Levovent 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovent 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovent 5mg Tablet'),
(5903, 'Levover 500 Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 500 Tablet', 'Is Levover 500 Tablet safe?', 'Levover 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5904, 'Levover 500 Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 500 Tablet', 'What if I forget to take a dose of Levover 500 Tablet?', 'If you forget a dose of Levover 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5905, 'Levover 500 Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 500 Tablet', 'Can the use of Levover 500 Tablet cause diarrhea?', 'Yes, the use of Levover 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5906, 'Levover 500 Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 500 Tablet', 'Can I stop taking Levover 500 Tablet when I feel better?', 'No, do not stop taking Levover 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levover 500 Tablet too early, the symptoms may return or worsen. Continue taking Levover 500 Tablet in the dose and duration advised by the doctor.'),
(5907, 'Levover 500 Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 500 Tablet', 'Can the use of Levover 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levover 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levover 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5908, 'Levover 750mg Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 750mg Tablet', 'Is Levover 750mg Tablet safe?', 'Levover 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5909, 'Levover 750mg Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 750mg Tablet', 'What if I forget to take a dose of Levover 750mg Tablet?', 'If you forget a dose of Levover 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5910, 'Levover 750mg Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 750mg Tablet', 'Can the use of Levover 750mg Tablet cause diarrhea?', 'Yes, the use of Levover 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5911, 'Levover 750mg Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 750mg Tablet', 'Can I stop taking Levover 750mg Tablet when I feel better?', 'No, do not stop taking Levover 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levover 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levover 750mg Tablet in the dose and duration advised by the doctor.'),
(5912, 'Levover 750mg Tablet', 'Verrmont Healthcare Pvt Ltd', 'Levover 750mg Tablet', 'Can the use of Levover 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levover 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levover 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5913, 'Levoverge M Tablet', 'Mediverge Healthcare Pvt Ltd', 'Levoverge M Tablet', 'What is Levoverge M Tablet?', 'Levoverge M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(5914, 'Levoverge M Tablet', 'Mediverge Healthcare Pvt Ltd', 'Levoverge M Tablet', 'Can the use of Levoverge M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoverge M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(5915, 'Levoverge M Tablet', 'Mediverge Healthcare Pvt Ltd', 'Levoverge M Tablet', 'Can Levoverge M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoverge M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(5916, 'Levoverge M Tablet', 'Mediverge Healthcare Pvt Ltd', 'Levoverge M Tablet', 'Can the use of Levoverge M Tablet cause dry mouth?', 'Yes, the use of Levoverge M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(5917, 'Levoverge M Tablet', 'Mediverge Healthcare Pvt Ltd', 'Levoverge M Tablet', 'Can I drink alcohol while taking Levoverge M Tablet?', 'No, do not take alcohol while taking Levoverge M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoverge M Tablet.'),
(5918, 'Levoverge M Tablet', 'Mediverge Healthcare Pvt Ltd', 'Levoverge M Tablet', 'Will Levoverge M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoverge M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(5919, 'Levoverge M Tablet', 'Mediverge Healthcare Pvt Ltd', 'Levoverge M Tablet', 'What are the instructions for storage and disposal of Levoverge M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(5920, 'Levoverge-A Tablet SR', 'Mediverge Healthcare Pvt Ltd', 'Levoverge-A Tablet SR', 'Can the use of Levoverge-A Tablet SR cause dry mouth?', 'Yes, the use of Levoverge-A Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(5921, 'Levoverge-A Tablet SR', 'Mediverge Healthcare Pvt Ltd', 'Levoverge-A Tablet SR', 'Can I use Levoverge-A Tablet SR while breastfeeding?', 'No, Levoverge-A Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(5922, 'Levoverge-A Tablet SR', 'Mediverge Healthcare Pvt Ltd', 'Levoverge-A Tablet SR', 'Can I drink alcohol while taking Levoverge-A Tablet SR?', 'No, avoid drinking alcohol while taking Levoverge-A Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Levoverge-A Tablet SR.'),
(5923, 'Levoverge-A Tablet SR', 'Mediverge Healthcare Pvt Ltd', 'Levoverge-A Tablet SR', 'What are the instructions for the storage and disposal of Levoverge-A Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5924, 'Levovib 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 10mg Tablet', 'Q. Is Levovib 10mg Tablet a steroid? What is it used for?', 'No, Levovib 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5925, 'Levovib 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 10mg Tablet', 'Q. Does Levovib 10mg Tablet make you tired and drowsy?', 'Yes, Levovib 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5926, 'Levovib 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 10mg Tablet', 'Q. How long does it take for Levovib 10mg Tablet to work?', 'Levovib 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5927, 'Levovib 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 10mg Tablet', 'Q. Can I take Levovib 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovib 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5928, 'Levovib 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 10mg Tablet', 'Q. Is it safe to take Levovib 10mg Tablet for a long time?', 'Levovib 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovib 10mg Tablet for only as long as you need it.'),
(5929, 'Levovib 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 10mg Tablet', 'Q. For how long should I continue Levovib 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovib 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovib 10mg Tablet'),
(5930, 'Levovib 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 5mg Tablet', 'Q. Is Levovib 5mg Tablet a steroid? What is it used for?', 'No, Levovib 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5931, 'Levovib 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 5mg Tablet', 'Q. Does Levovib 5mg Tablet make you tired and drowsy?', 'Yes, Levovib 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5932, 'Levovib 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 5mg Tablet', 'Q. How long does it take for Levovib 5mg Tablet to work?', 'Levovib 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(5933, 'Levovib 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 5mg Tablet', 'Q. Can I take Levovib 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovib 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5934, 'Levovib 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 5mg Tablet', 'Q. Is it safe to take Levovib 5mg Tablet for a long time?', 'Levovib 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovib 5mg Tablet for only as long as you need it.'),
(5935, 'Levovib 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levovib 5mg Tablet', 'Q. For how long should I continue Levovib 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovib 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovib 5mg Tablet'),
(5936, 'Levovil 5 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5 Tablet', 'Is Levovil 5 Tablet a steroid? What is it used for?', 'No, Levovil 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5937, 'Levovil 5 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5 Tablet', 'Does Levovil 5 Tablet make you tired and drowsy?', 'Yes, Levovil 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5938, 'Levovil 5 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5 Tablet', 'How long does it take for Levovil 5 Tablet to work?', 'Levovil 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5939, 'Levovil 5 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5 Tablet', 'Can I take Levovil 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovil 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5940, 'Levovil 5 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5 Tablet', 'Is it safe to take Levovil 5 Tablet for a long time?', 'Levovil 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovil 5 Tablet for only as long as you need it.'),
(5941, 'Levovil 5 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5 Tablet', 'For how long should I continue Levovil 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovil 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovil 5 Tablet'),
(5942, 'Levovil 5mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5mg Tablet', 'Is Levovil 5mg Tablet a steroid? What is it used for?', 'No, Levovil 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5943, 'Levovil 5mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5mg Tablet', 'Does Levovil 5mg Tablet make you tired and drowsy?', 'Yes, Levovil 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5944, 'Levovil 5mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5mg Tablet', 'How long does it take for Levovil 5mg Tablet to work?', 'Levovil 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5945, 'Levovil 5mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5mg Tablet', 'Can I take Levovil 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovil 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5946, 'Levovil 5mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5mg Tablet', 'Is it safe to take Levovil 5mg Tablet for a long time?', 'Levovil 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovil 5mg Tablet for only as long as you need it.'),
(5947, 'Levovil 5mg Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil 5mg Tablet', 'For how long should I continue Levovil 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovil 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovil 5mg Tablet'),
(5948, 'Levovil AM 75mg/5mg/10mg Tablet DT', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM 75mg/5mg/10mg Tablet DT', 'Can the use of Levovil AM 75mg/5mg/10mg Tablet DT cause dry mouth?', 'Yes, the use of Levovil AM 75mg/5mg/10mg Tablet DT can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(5949, 'Levovil AM 75mg/5mg/10mg Tablet DT', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM 75mg/5mg/10mg Tablet DT', 'Can I use Levovil AM 75mg/5mg/10mg Tablet DT while breastfeeding?', 'No, Levovil AM 75mg/5mg/10mg Tablet DT should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(5950, 'Levovil AM 75mg/5mg/10mg Tablet DT', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM 75mg/5mg/10mg Tablet DT', 'Can I drink alcohol while taking Levovil AM 75mg/5mg/10mg Tablet DT?', 'No, avoid drinking alcohol while taking Levovil AM 75mg/5mg/10mg Tablet DT. Drinking alcohol will increase the risk of serious side effects caused by Levovil AM 75mg/5mg/10mg Tablet DT.'),
(5951, 'Levovil AM 75mg/5mg/10mg Tablet DT', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM 75mg/5mg/10mg Tablet DT', 'What are the instructions for the storage and disposal of Levovil AM 75mg/5mg/10mg Tablet DT?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5952, 'Levovil AM Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM Tablet', 'Can the use of Levovil AM Tablet cause dry mouth?', 'Yes, the use of Levovil AM Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(5953, 'Levovil AM Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM Tablet', 'Can I use Levovil AM Tablet while breastfeeding?', 'No, Levovil AM Tablet should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(5954, 'Levovil AM Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM Tablet', 'Can I drink alcohol while taking Levovil AM Tablet?', 'No, avoid drinking alcohol while taking Levovil AM Tablet. Drinking alcohol will increase the risk of serious side effects caused by Levovil AM Tablet.'),
(5955, 'Levovil AM Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Levovil AM Tablet', 'What are the instructions for the storage and disposal of Levovil AM Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(5956, 'Levovis 500mg Tablet', 'Indavis life sciences', 'Levovis 500mg Tablet', 'Is Levovis 500mg Tablet safe?', 'Levovis 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5957, 'Levovis 500mg Tablet', 'Indavis life sciences', 'Levovis 500mg Tablet', 'What if I forget to take a dose of Levovis 500mg Tablet?', 'If you forget a dose of Levovis 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5958, 'Levovis 500mg Tablet', 'Indavis life sciences', 'Levovis 500mg Tablet', 'Can the use of Levovis 500mg Tablet cause diarrhea?', 'Yes, the use of Levovis 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5959, 'Levovis 500mg Tablet', 'Indavis life sciences', 'Levovis 500mg Tablet', 'Can I stop taking Levovis 500mg Tablet when I feel better?', 'No, do not stop taking Levovis 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovis 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levovis 500mg Tablet in the dose and duration advised by the doctor.'),
(5960, 'Levovis 500mg Tablet', 'Indavis life sciences', 'Levovis 500mg Tablet', 'Can the use of Levovis 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levovis 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovis 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5961, 'Levovista 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 250mg Tablet', 'Is Levovista 250mg Tablet safe?', 'Levovista 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5962, 'Levovista 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 250mg Tablet', 'What if I forget to take a dose of Levovista 250mg Tablet?', 'If you forget a dose of Levovista 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5963, 'Levovista 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 250mg Tablet', 'Can the use of Levovista 250mg Tablet cause diarrhea?', 'Yes, the use of Levovista 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5964, 'Levovista 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 250mg Tablet', 'Can I stop taking Levovista 250mg Tablet when I feel better?', 'No, do not stop taking Levovista 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovista 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levovista 250mg Tablet in the dose and duration advised by the doctor.'),
(5965, 'Levovista 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 250mg Tablet', 'Can the use of Levovista 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levovista 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovista 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5966, 'Levovista 500mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 500mg Tablet', 'Is Levovista 500mg Tablet safe?', 'Levovista 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5967, 'Levovista 500mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 500mg Tablet', 'What if I forget to take a dose of Levovista 500mg Tablet?', 'If you forget a dose of Levovista 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5968, 'Levovista 500mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 500mg Tablet', 'Can the use of Levovista 500mg Tablet cause diarrhea?', 'Yes, the use of Levovista 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5969, 'Levovista 500mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 500mg Tablet', 'Can I stop taking Levovista 500mg Tablet when I feel better?', 'No, do not stop taking Levovista 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovista 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levovista 500mg Tablet in the dose and duration advised by the doctor.'),
(5970, 'Levovista 500mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levovista 500mg Tablet', 'Can the use of Levovista 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levovista 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovista 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5971, 'Levovive 500 Tablet', 'Vrevive Medicure Pvt. Ltd.', 'Levovive 500 Tablet', 'Is Levovive 500 Tablet safe?', 'Levovive 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5972, 'Levovive 500 Tablet', 'Vrevive Medicure Pvt. Ltd.', 'Levovive 500 Tablet', 'What if I forget to take a dose of Levovive 500 Tablet?', 'If you forget a dose of Levovive 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5973, 'Levovive 500 Tablet', 'Vrevive Medicure Pvt. Ltd.', 'Levovive 500 Tablet', 'Can the use of Levovive 500 Tablet cause diarrhea?', 'Yes, the use of Levovive 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5974, 'Levovive 500 Tablet', 'Vrevive Medicure Pvt. Ltd.', 'Levovive 500 Tablet', 'Can I stop taking Levovive 500 Tablet when I feel better?', 'No, do not stop taking Levovive 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovive 500 Tablet too early, the symptoms may return or worsen. Continue taking Levovive 500 Tablet in the dose and duration advised by the doctor.'),
(5975, 'Levovive 500 Tablet', 'Vrevive Medicure Pvt. Ltd.', 'Levovive 500 Tablet', 'Can the use of Levovive 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levovive 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovive 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5976, 'Levoviz 500 Tablet', 'Medivista Lifesciences Pvt. Ltd.', 'Levoviz 500 Tablet', 'Is Levoviz 500 Tablet safe?', 'Levoviz 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(5977, 'Levoviz 500 Tablet', 'Medivista Lifesciences Pvt. Ltd.', 'Levoviz 500 Tablet', 'What if I forget to take a dose of Levoviz 500 Tablet?', 'If you forget a dose of Levoviz 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(5978, 'Levoviz 500 Tablet', 'Medivista Lifesciences Pvt. Ltd.', 'Levoviz 500 Tablet', 'Can the use of Levoviz 500 Tablet cause diarrhea?', 'Yes, the use of Levoviz 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(5979, 'Levoviz 500 Tablet', 'Medivista Lifesciences Pvt. Ltd.', 'Levoviz 500 Tablet', 'Can I stop taking Levoviz 500 Tablet when I feel better?', 'No, do not stop taking Levoviz 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoviz 500 Tablet too early, the symptoms may return or worsen. Continue taking Levoviz 500 Tablet in the dose and duration advised by the doctor.'),
(5980, 'Levoviz 500 Tablet', 'Medivista Lifesciences Pvt. Ltd.', 'Levoviz 500 Tablet', 'Can the use of Levoviz 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoviz 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoviz 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(5981, 'Levoviz Tablet', 'Viribus Healthcare', 'Levoviz Tablet', 'Is Levoviz Tablet a steroid? What is it used for?', 'No, Levoviz Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(5982, 'Levoviz Tablet', 'Viribus Healthcare', 'Levoviz Tablet', 'Does Levoviz Tablet make you tired and drowsy?', 'Yes, Levoviz Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(5983, 'Levoviz Tablet', 'Viribus Healthcare', 'Levoviz Tablet', 'How long does it take for Levoviz Tablet to work?', 'Levoviz Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(5984, 'Levoviz Tablet', 'Viribus Healthcare', 'Levoviz Tablet', 'Can I take Levoviz Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoviz Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(5985, 'Levoviz Tablet', 'Viribus Healthcare', 'Levoviz Tablet', 'Is it safe to take Levoviz Tablet for a long time?', 'Levoviz Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoviz Tablet for only as long as you need it.'),
(5986, 'Levoviz Tablet', 'Viribus Healthcare', 'Levoviz Tablet', 'For how long should I continue Levoviz Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoviz Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoviz Tablet'),
(5987, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5988, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'Can I decrease the dose of Levoviz-M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5989, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'How should Levoviz-M Kid Tablet be stored?', 'Levoviz-M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5990, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'Can Levoviz-M Kid Tablet make my child sleepy?', 'Levoviz-M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5991, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoviz-M Kid Tablet?', 'No, don’t start Levoviz-M Kid Tablet without speaking to your child’s doctor. Moreover, Levoviz-M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(5992, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoviz-M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(5993, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levoviz-M Kid Tablet to my child?', 'Some studies show that Levoviz-M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(5994, 'Levoviz-M Kid Tablet', 'Viribus Healthcare', 'Levoviz-M Kid Tablet', 'Can I use Levoviz-M Kid Tablet for treating acute asthma attacks in my child?', 'Levoviz-M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(5995, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(5996, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'Can I decrease the dose of Levoviz-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(5997, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'How should Levoviz-M Syrup be stored?', 'Levoviz-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(5998, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'Can Levoviz-M Syrup make my child sleepy?', 'Levoviz-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(5999, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoviz-M Syrup?', 'No, don’t start Levoviz-M Syrup without speaking to your child’s doctor. Moreover, Levoviz-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6000, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoviz-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6001, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoviz-M Syrup to my child?', 'Some studies show that Levoviz-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6002, 'Levoviz-M Syrup', 'Viribus Healthcare', 'Levoviz-M Syrup', 'Can I use Levoviz-M Syrup for treating acute asthma attacks in my child?', 'Levoviz-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6003, 'Levoviz-M Tablet', 'Viribus Healthcare', 'Levoviz-M Tablet (Viribus Healthcare)', 'What is Levoviz-M Tablet?', 'Levoviz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6004, 'Levoviz-M Tablet', 'Viribus Healthcare', 'Levoviz-M Tablet (Viribus Healthcare)', 'Can the use of Levoviz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoviz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6005, 'Levoviz-M Tablet', 'Viribus Healthcare', 'Levoviz-M Tablet (Viribus Healthcare)', 'Can Levoviz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoviz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6006, 'Levoviz-M Tablet', 'Viribus Healthcare', 'Levoviz-M Tablet (Viribus Healthcare)', 'Can the use of Levoviz-M Tablet cause dry mouth?', 'Yes, the use of Levoviz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6007, 'Levoviz-M Tablet', 'Viribus Healthcare', 'Levoviz-M Tablet (Viribus Healthcare)', 'Can I drink alcohol while taking Levoviz-M Tablet?', 'No, do not take alcohol while taking Levoviz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoviz-M Tablet.'),
(6008, 'Levoviz-M Tablet', 'Viribus Healthcare', 'Levoviz-M Tablet (Viribus Healthcare)', 'Will Levoviz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoviz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6009, 'Levoviz-M Tablet', 'Viribus Healthcare', 'Levoviz-M Tablet (Viribus Healthcare)', 'What are the instructions for storage and disposal of Levoviz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6010, 'Levoviz-M Tablet', 'Namo Remedies', 'Levoviz-M Tablet (Namo Remedies)', 'What is Levoviz-M Tablet?', 'Levoviz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6011, 'Levoviz-M Tablet', 'Namo Remedies', 'Levoviz-M Tablet (Namo Remedies)', 'Can the use of Levoviz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoviz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6012, 'Levoviz-M Tablet', 'Namo Remedies', 'Levoviz-M Tablet (Namo Remedies)', 'Can Levoviz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoviz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6013, 'Levoviz-M Tablet', 'Namo Remedies', 'Levoviz-M Tablet (Namo Remedies)', 'Can the use of Levoviz-M Tablet cause dry mouth?', 'Yes, the use of Levoviz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6014, 'Levoviz-M Tablet', 'Namo Remedies', 'Levoviz-M Tablet (Namo Remedies)', 'Can I drink alcohol while taking Levoviz-M Tablet?', 'No, do not take alcohol while taking Levoviz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoviz-M Tablet.'),
(6015, 'Levoviz-M Tablet', 'Namo Remedies', 'Levoviz-M Tablet (Namo Remedies)', 'Will Levoviz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoviz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6016, 'Levoviz-M Tablet', 'Namo Remedies', 'Levoviz-M Tablet (Namo Remedies)', 'What are the instructions for storage and disposal of Levoviz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6017, 'Levovok 5mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok 5mg Tablet', 'Is Levovok 5mg Tablet a steroid? What is it used for?', 'No, Levovok 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6018, 'Levovok 5mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok 5mg Tablet', 'Does Levovok 5mg Tablet make you tired and drowsy?', 'Yes, Levovok 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6019, 'Levovok 5mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok 5mg Tablet', 'How long does it take for Levovok 5mg Tablet to work?', 'Levovok 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6020, 'Levovok 5mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok 5mg Tablet', 'Can I take Levovok 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levovok 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6021, 'Levovok 5mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok 5mg Tablet', 'Is it safe to take Levovok 5mg Tablet for a long time?', 'Levovok 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levovok 5mg Tablet for only as long as you need it.'),
(6022, 'Levovok 5mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok 5mg Tablet', 'For how long should I continue Levovok 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levovok 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levovok 5mg Tablet'),
(6023, 'Levovok M 5mg/10mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok M 5mg/10mg Tablet', 'What is Levovok M 5mg/10mg Tablet?', 'Levovok M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6024, 'Levovok M 5mg/10mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok M 5mg/10mg Tablet', 'Can the use of Levovok M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levovok M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6025, 'Levovok M 5mg/10mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok M 5mg/10mg Tablet', 'Can Levovok M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levovok M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6026, 'Levovok M 5mg/10mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok M 5mg/10mg Tablet', 'Can the use of Levovok M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levovok M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6027, 'Levovok M 5mg/10mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levovok M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levovok M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levovok M 5mg/10mg Tablet.'),
(6028, 'Levovok M 5mg/10mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok M 5mg/10mg Tablet', 'Will Levovok M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levovok M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6029, 'Levovok M 5mg/10mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levovok M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6030, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6031, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'Can I decrease the dose of Levovok M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6032, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'How should Levovok M Syrup be stored?', 'Levovok M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6033, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'Can Levovok M Syrup make my child sleepy?', 'Levovok M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6034, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levovok M Syrup?', 'No, don’t start Levovok M Syrup without speaking to your child’s doctor. Moreover, Levovok M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6035, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levovok M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6036, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levovok M Syrup to my child?', 'Some studies show that Levovok M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6037, 'Levovok M Syrup', 'Nusmith Pharma Pvt. Ltd', 'Levovok M Syrup', 'Can I use Levovok M Syrup for treating acute asthma attacks in my child?', 'Levovok M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6038, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6039, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'Can I decrease the dose of Levovok-M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6040, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'How should Levovok-M Kid Tablet be stored?', 'Levovok-M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6041, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'Can Levovok-M Kid Tablet make my child sleepy?', 'Levovok-M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6042, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levovok-M Kid Tablet?', 'No, don’t start Levovok-M Kid Tablet without speaking to your child’s doctor. Moreover, Levovok-M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6043, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levovok-M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6044, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levovok-M Kid Tablet to my child?', 'Some studies show that Levovok-M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6045, 'Levovok-M Kid Tablet', 'Nusmith Pharma Pvt. Ltd', 'Levovok-M Kid Tablet', 'Can I use Levovok-M Kid Tablet for treating acute asthma attacks in my child?', 'Levovok-M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6046, 'Levovol 125mg Syrup', 'See Ever Healthcare Pvt Ltd', 'Levovol 125mg Syrup', 'Is Levovol 125mg Syrup safe?', 'Levovol 125mg Syrup is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6047, 'Levovol 125mg Syrup', 'See Ever Healthcare Pvt Ltd', 'Levovol 125mg Syrup', 'What if I forget to take a dose of Levovol 125mg Syrup?', 'If you forget a dose of Levovol 125mg Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6048, 'Levovol 125mg Syrup', 'See Ever Healthcare Pvt Ltd', 'Levovol 125mg Syrup', 'Can the use of Levovol 125mg Syrup cause diarrhea?', 'Yes, the use of Levovol 125mg Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6049, 'Levovol 125mg Syrup', 'See Ever Healthcare Pvt Ltd', 'Levovol 125mg Syrup', 'Can I stop taking Levovol 125mg Syrup when I feel better?', 'No, do not stop taking Levovol 125mg Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovol 125mg Syrup too early, the symptoms may return or worsen. Continue taking Levovol 125mg Syrup in the dose and duration advised by the doctor.'),
(6050, 'Levovol 125mg Syrup', 'See Ever Healthcare Pvt Ltd', 'Levovol 125mg Syrup', 'Can the use of Levovol 125mg Syrup increase the risk of muscle damage?', 'Yes, the use of Levovol 125mg Syrup is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovol 125mg Syrup but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6051, 'Levovol 500mg Tablet', 'See Ever Healthcare Pvt Ltd', 'Levovol 500mg Tablet', 'Is Levovol 500mg Tablet safe?', 'Levovol 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6052, 'Levovol 500mg Tablet', 'See Ever Healthcare Pvt Ltd', 'Levovol 500mg Tablet', 'What if I forget to take a dose of Levovol 500mg Tablet?', 'If you forget a dose of Levovol 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6053, 'Levovol 500mg Tablet', 'See Ever Healthcare Pvt Ltd', 'Levovol 500mg Tablet', 'Can the use of Levovol 500mg Tablet cause diarrhea?', 'Yes, the use of Levovol 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6054, 'Levovol 500mg Tablet', 'See Ever Healthcare Pvt Ltd', 'Levovol 500mg Tablet', 'Can I stop taking Levovol 500mg Tablet when I feel better?', 'No, do not stop taking Levovol 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levovol 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levovol 500mg Tablet in the dose and duration advised by the doctor.'),
(6055, 'Levovol 500mg Tablet', 'See Ever Healthcare Pvt Ltd', 'Levovol 500mg Tablet', 'Can the use of Levovol 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levovol 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levovol 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6056, 'Levowal 500mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 500mg Tablet (Radicura Pharma pvt ltd)', 'Is Levowal 500mg Tablet safe?', 'Levowal 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6057, 'Levowal 500mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 500mg Tablet (Radicura Pharma pvt ltd)', 'What if I forget to take a dose of Levowal 500mg Tablet?', 'If you forget a dose of Levowal 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6058, 'Levowal 500mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 500mg Tablet (Radicura Pharma pvt ltd)', 'Can the use of Levowal 500mg Tablet cause diarrhea?', 'Yes, the use of Levowal 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6059, 'Levowal 500mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 500mg Tablet (Radicura Pharma pvt ltd)', 'Can I stop taking Levowal 500mg Tablet when I feel better?', 'No, do not stop taking Levowal 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowal 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowal 500mg Tablet in the dose and duration advised by the doctor.'),
(6060, 'Levowal 500mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 500mg Tablet (Radicura Pharma pvt ltd)', 'Can the use of Levowal 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowal 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowal 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6061, 'Levowal 500mg Tablet', 'Novus Life Sciences Pvt Ltd', 'Levowal 500mg Tablet (Novus Life Sciences Pvt Ltd)', 'Is Levowal 500mg Tablet safe?', 'Levowal 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6062, 'Levowal 500mg Tablet', 'Novus Life Sciences Pvt Ltd', 'Levowal 500mg Tablet (Novus Life Sciences Pvt Ltd)', 'What if I forget to take a dose of Levowal 500mg Tablet?', 'If you forget a dose of Levowal 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6063, 'Levowal 500mg Tablet', 'Novus Life Sciences Pvt Ltd', 'Levowal 500mg Tablet (Novus Life Sciences Pvt Ltd)', 'Can the use of Levowal 500mg Tablet cause diarrhea?', 'Yes, the use of Levowal 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6064, 'Levowal 500mg Tablet', 'Novus Life Sciences Pvt Ltd', 'Levowal 500mg Tablet (Novus Life Sciences Pvt Ltd)', 'Can I stop taking Levowal 500mg Tablet when I feel better?', 'No, do not stop taking Levowal 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowal 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowal 500mg Tablet in the dose and duration advised by the doctor.'),
(6065, 'Levowal 500mg Tablet', 'Novus Life Sciences Pvt Ltd', 'Levowal 500mg Tablet (Novus Life Sciences Pvt Ltd)', 'Can the use of Levowal 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowal 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowal 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6066, 'Levowal 750mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 750mg Tablet', 'Is Levowal 750mg Tablet safe?', 'Levowal 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6067, 'Levowal 750mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 750mg Tablet', 'What if I forget to take a dose of Levowal 750mg Tablet?', 'If you forget a dose of Levowal 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6068, 'Levowal 750mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 750mg Tablet', 'Can the use of Levowal 750mg Tablet cause diarrhea?', 'Yes, the use of Levowal 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6069, 'Levowal 750mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 750mg Tablet', 'Can I stop taking Levowal 750mg Tablet when I feel better?', 'No, do not stop taking Levowal 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowal 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levowal 750mg Tablet in the dose and duration advised by the doctor.'),
(6070, 'Levowal 750mg Tablet', 'Radicura Pharma pvt ltd', 'Levowal 750mg Tablet', 'Can the use of Levowal 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowal 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowal 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6071, 'Levowan 500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 500mg Tablet', 'Is Levowan 500mg Tablet safe?', 'Levowan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6072, 'Levowan 500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 500mg Tablet', 'What if I forget to take a dose of Levowan 500mg Tablet?', 'If you forget a dose of Levowan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6073, 'Levowan 500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 500mg Tablet', 'Can the use of Levowan 500mg Tablet cause diarrhea?', 'Yes, the use of Levowan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6074, 'Levowan 500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 500mg Tablet', 'Can I stop taking Levowan 500mg Tablet when I feel better?', 'No, do not stop taking Levowan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowan 500mg Tablet in the dose and duration advised by the doctor.'),
(6075, 'Levowan 500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 500mg Tablet', 'Can the use of Levowan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6076, 'Levowan 750mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 750mg Tablet', 'Is Levowan 750mg Tablet safe?', 'Levowan 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6077, 'Levowan 750mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 750mg Tablet', 'What if I forget to take a dose of Levowan 750mg Tablet?', 'If you forget a dose of Levowan 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6078, 'Levowan 750mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 750mg Tablet', 'Can the use of Levowan 750mg Tablet cause diarrhea?', 'Yes, the use of Levowan 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6079, 'Levowan 750mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 750mg Tablet', 'Can I stop taking Levowan 750mg Tablet when I feel better?', 'No, do not stop taking Levowan 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowan 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levowan 750mg Tablet in the dose and duration advised by the doctor.'),
(6080, 'Levowan 750mg Tablet', 'Wannock Pharmaceuticals', 'Levowan 750mg Tablet', 'Can the use of Levowan 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowan 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowan 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6081, 'Levowan OZ 250mg/500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levowan OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6082, 'Levowan OZ 250mg/500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan OZ 250mg/500mg Tablet', 'Can I stop taking Levowan OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levowan OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6083, 'Levowan OZ 250mg/500mg Tablet', 'Wannock Pharmaceuticals', 'Levowan OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levowan OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6084, 'Levowan OZ Oral Suspension', 'Wannock Pharmaceuticals', 'Levowan OZ Oral Suspension', 'What if I don\'t get better after using Levowan OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6085, 'Levowan OZ Oral Suspension', 'Wannock Pharmaceuticals', 'Levowan OZ Oral Suspension', 'Can I stop taking Levowan OZ Oral Suspension when I feel better?', 'No, do not stop taking Levowan OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6086, 'Levowan OZ Oral Suspension', 'Wannock Pharmaceuticals', 'Levowan OZ Oral Suspension', 'What if I miss my dose?', 'Take Levowan OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6087, 'Levowar 500mg Tablet', 'Bio Warriors Pharmaceuticals Pvt Ltd', 'Levowar 500mg Tablet', 'Is Levowar 500mg Tablet safe?', 'Levowar 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6088, 'Levowar 500mg Tablet', 'Bio Warriors Pharmaceuticals Pvt Ltd', 'Levowar 500mg Tablet', 'What if I forget to take a dose of Levowar 500mg Tablet?', 'If you forget a dose of Levowar 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6089, 'Levowar 500mg Tablet', 'Bio Warriors Pharmaceuticals Pvt Ltd', 'Levowar 500mg Tablet', 'Can the use of Levowar 500mg Tablet cause diarrhea?', 'Yes, the use of Levowar 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6090, 'Levowar 500mg Tablet', 'Bio Warriors Pharmaceuticals Pvt Ltd', 'Levowar 500mg Tablet', 'Can I stop taking Levowar 500mg Tablet when I feel better?', 'No, do not stop taking Levowar 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowar 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowar 500mg Tablet in the dose and duration advised by the doctor.'),
(6091, 'Levowar 500mg Tablet', 'Bio Warriors Pharmaceuticals Pvt Ltd', 'Levowar 500mg Tablet', 'Can the use of Levowar 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowar 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowar 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6092, 'Levowave R 75mg/20mg Capsule SR', 'Brainwave Healthcare Pvt Ltd', 'Levowave R 75mg/20mg Capsule SR', 'Which is the best time to take Levowave R 75mg/20mg Capsule SR?', 'Take the Levowave R 75mg/20mg Capsule SR exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(6093, 'Levowave R 75mg/20mg Capsule SR', 'Brainwave Healthcare Pvt Ltd', 'Levowave R 75mg/20mg Capsule SR', 'What are the contraindications associated with the use of Levowave R 75mg/20mg Capsule SR?', 'Use of Levowave R 75mg/20mg Capsule SR should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(6094, 'Levowave R 75mg/20mg Capsule SR', 'Brainwave Healthcare Pvt Ltd', 'Levowave R 75mg/20mg Capsule SR', 'Can the use of Levowave R 75mg/20mg Capsule SR cause dizziness?', 'Yes, the use of Levowave R 75mg/20mg Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(6095, 'Levowave R 75mg/20mg Capsule SR', 'Brainwave Healthcare Pvt Ltd', 'Levowave R 75mg/20mg Capsule SR', 'Does the use of Levowave R 75mg/20mg Capsule SR lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Levowave R 75mg/20mg Capsule SR may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(6096, 'Levowave R 75mg/20mg Capsule SR', 'Brainwave Healthcare Pvt Ltd', 'Levowave R 75mg/20mg Capsule SR', 'Can I drive while taking Levowave R 75mg/20mg Capsule SR?', 'No, taking Levowave R 75mg/20mg Capsule SR may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(6097, 'Levowave R 75mg/20mg Capsule SR', 'Brainwave Healthcare Pvt Ltd', 'Levowave R 75mg/20mg Capsule SR', 'What are the instructions for the storage and disposal of Levowave R 75mg/20mg Capsule SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(6098, 'Levoway 500 Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway 500 Tablet', 'Is Levoway 500 Tablet safe?', 'Levoway 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6099, 'Levoway 500 Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway 500 Tablet', 'What if I forget to take a dose of Levoway 500 Tablet?', 'If you forget a dose of Levoway 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6100, 'Levoway 500 Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway 500 Tablet', 'Can the use of Levoway 500 Tablet cause diarrhea?', 'Yes, the use of Levoway 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6101, 'Levoway 500 Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway 500 Tablet', 'Can I stop taking Levoway 500 Tablet when I feel better?', 'No, do not stop taking Levoway 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoway 500 Tablet too early, the symptoms may return or worsen. Continue taking Levoway 500 Tablet in the dose and duration advised by the doctor.'),
(6102, 'Levoway 500 Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway 500 Tablet', 'Can the use of Levoway 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoway 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoway 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6103, 'Levoway 500mg Tablet', 'Protech Telelinks', 'Levoway 500mg Tablet', 'Is Levoway 500mg Tablet safe?', 'Levoway 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6104, 'Levoway 500mg Tablet', 'Protech Telelinks', 'Levoway 500mg Tablet', 'What if I forget to take a dose of Levoway 500mg Tablet?', 'If you forget a dose of Levoway 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6105, 'Levoway 500mg Tablet', 'Protech Telelinks', 'Levoway 500mg Tablet', 'Can the use of Levoway 500mg Tablet cause diarrhea?', 'Yes, the use of Levoway 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6106, 'Levoway 500mg Tablet', 'Protech Telelinks', 'Levoway 500mg Tablet', 'Can I stop taking Levoway 500mg Tablet when I feel better?', 'No, do not stop taking Levoway 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoway 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoway 500mg Tablet in the dose and duration advised by the doctor.'),
(6107, 'Levoway 500mg Tablet', 'Protech Telelinks', 'Levoway 500mg Tablet', 'Can the use of Levoway 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoway 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoway 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6108, 'Levoway 5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway 5mg Tablet', 'Is Levoway 5mg Tablet a steroid? What is it used for?', 'No, Levoway 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6109, 'Levoway 5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway 5mg Tablet', 'Does Levoway 5mg Tablet make you tired and drowsy?', 'Yes, Levoway 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6110, 'Levoway 5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway 5mg Tablet', 'How long does it take for Levoway 5mg Tablet to work?', 'Levoway 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6111, 'Levoway 5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway 5mg Tablet', 'Can I take Levoway 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoway 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6112, 'Levoway 5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway 5mg Tablet', 'Is it safe to take Levoway 5mg Tablet for a long time?', 'Levoway 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoway 5mg Tablet for only as long as you need it.'),
(6113, 'Levoway 5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway 5mg Tablet', 'For how long should I continue Levoway 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoway 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoway 5mg Tablet'),
(6114, 'Levoway AZ 250mg/250mg Tablet', 'Protech Telelinks', 'Levoway AZ 250mg/250mg Tablet', 'What if I don\'t get better after using Levoway AZ 250mg/250mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6115, 'Levoway AZ 250mg/250mg Tablet', 'Protech Telelinks', 'Levoway AZ 250mg/250mg Tablet', 'What if I miss my dose?', 'Take Levoway AZ 250mg/250mg Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6116, 'Levoway M 5mg/10mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M 5mg/10mg Tablet', 'What is Levoway M 5mg/10mg Tablet?', 'Levoway M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6117, 'Levoway M 5mg/10mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M 5mg/10mg Tablet', 'Can the use of Levoway M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoway M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6118, 'Levoway M 5mg/10mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M 5mg/10mg Tablet', 'Can Levoway M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoway M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6119, 'Levoway M 5mg/10mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M 5mg/10mg Tablet', 'Can the use of Levoway M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoway M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6120, 'Levoway M 5mg/10mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoway M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoway M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoway M 5mg/10mg Tablet.'),
(6121, 'Levoway M 5mg/10mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M 5mg/10mg Tablet', 'Will Levoway M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoway M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6122, 'Levoway M 5mg/10mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoway M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6123, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6124, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'Can I decrease the dose of Levoway M Kid 2.5mg/5mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6125, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'How should Levoway M Kid 2.5mg/5mg Tablet be stored?', 'Levoway M Kid 2.5mg/5mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6126, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'Can Levoway M Kid 2.5mg/5mg Tablet make my child sleepy?', 'Levoway M Kid 2.5mg/5mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6127, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoway M Kid 2.5mg/5mg Tablet?', 'No, don’t start Levoway M Kid 2.5mg/5mg Tablet without speaking to your child’s doctor. Moreover, Levoway M Kid 2.5mg/5mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6128, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoway M Kid 2.5mg/5mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6129, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levoway M Kid 2.5mg/5mg Tablet to my child?', 'Some studies show that Levoway M Kid 2.5mg/5mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6130, 'Levoway M Kid 2.5mg/5mg Tablet', 'Skyways Healthcare Pvt Ltd', 'Levoway M Kid 2.5mg/5mg Tablet', 'Can I use Levoway M Kid 2.5mg/5mg Tablet for treating acute asthma attacks in my child?', 'Levoway M Kid 2.5mg/5mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6131, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6132, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'Can I decrease the dose of Levoway M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6133, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'How should Levoway M Oral Suspension be stored?', 'Levoway M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6134, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'Can Levoway M Oral Suspension make my child sleepy?', 'Levoway M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6135, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoway M Oral Suspension?', 'No, don’t start Levoway M Oral Suspension without speaking to your child’s doctor. Moreover, Levoway M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6136, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoway M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6137, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levoway M Oral Suspension to my child?', 'Some studies show that Levoway M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6138, 'Levoway M Oral Suspension', 'Skyways Healthcare Pvt Ltd', 'Levoway M Oral Suspension', 'Can I use Levoway M Oral Suspension for treating acute asthma attacks in my child?', 'Levoway M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6139, 'Levoway-OZ Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway-OZ Tablet', 'What if I don\'t get better after using Levoway-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6140, 'Levoway-OZ Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway-OZ Tablet', 'Can I stop taking Levoway-OZ Tablet when I feel better?', 'No, do not stop taking Levoway-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6141, 'Levoway-OZ Tablet', 'Ziyana Lifesciences Pvt Ltd', 'Levoway-OZ Tablet', 'What if I miss my dose?', 'Take Levoway-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6142, 'Levowell 500mg Tablet', 'Genesis Biotech Inc', 'Levowell 500mg Tablet', 'Is Levowell 500mg Tablet safe?', 'Levowell 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6143, 'Levowell 500mg Tablet', 'Genesis Biotech Inc', 'Levowell 500mg Tablet', 'What if I forget to take a dose of Levowell 500mg Tablet?', 'If you forget a dose of Levowell 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6144, 'Levowell 500mg Tablet', 'Genesis Biotech Inc', 'Levowell 500mg Tablet', 'Can the use of Levowell 500mg Tablet cause diarrhea?', 'Yes, the use of Levowell 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6145, 'Levowell 500mg Tablet', 'Genesis Biotech Inc', 'Levowell 500mg Tablet', 'Can I stop taking Levowell 500mg Tablet when I feel better?', 'No, do not stop taking Levowell 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowell 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowell 500mg Tablet in the dose and duration advised by the doctor.'),
(6146, 'Levowell 500mg Tablet', 'Genesis Biotech Inc', 'Levowell 500mg Tablet', 'Can the use of Levowell 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowell 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowell 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6147, 'Levowen 5mg Tablet', 'Gwenn Healthcare', 'Levowen 5mg Tablet', 'Is Levowen 5mg Tablet a steroid? What is it used for?', 'No, Levowen 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6148, 'Levowen 5mg Tablet', 'Gwenn Healthcare', 'Levowen 5mg Tablet', 'Does Levowen 5mg Tablet make you tired and drowsy?', 'Yes, Levowen 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6149, 'Levowen 5mg Tablet', 'Gwenn Healthcare', 'Levowen 5mg Tablet', 'How long does it take for Levowen 5mg Tablet to work?', 'Levowen 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6150, 'Levowen 5mg Tablet', 'Gwenn Healthcare', 'Levowen 5mg Tablet', 'Can I take Levowen 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levowen 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6151, 'Levowen 5mg Tablet', 'Gwenn Healthcare', 'Levowen 5mg Tablet', 'Is it safe to take Levowen 5mg Tablet for a long time?', 'Levowen 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levowen 5mg Tablet for only as long as you need it.'),
(6152, 'Levowen 5mg Tablet', 'Gwenn Healthcare', 'Levowen 5mg Tablet', 'For how long should I continue Levowen 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levowen 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levowen 5mg Tablet'),
(6153, 'Levowich 500 Tablet', 'Dellwich Healthcare LLP', 'Levowich 500 Tablet', 'Is Levowich 500 Tablet safe?', 'Levowich 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6154, 'Levowich 500 Tablet', 'Dellwich Healthcare LLP', 'Levowich 500 Tablet', 'What if I forget to take a dose of Levowich 500 Tablet?', 'If you forget a dose of Levowich 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6155, 'Levowich 500 Tablet', 'Dellwich Healthcare LLP', 'Levowich 500 Tablet', 'Can the use of Levowich 500 Tablet cause diarrhea?', 'Yes, the use of Levowich 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6156, 'Levowich 500 Tablet', 'Dellwich Healthcare LLP', 'Levowich 500 Tablet', 'Can I stop taking Levowich 500 Tablet when I feel better?', 'No, do not stop taking Levowich 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowich 500 Tablet too early, the symptoms may return or worsen. Continue taking Levowich 500 Tablet in the dose and duration advised by the doctor.'),
(6157, 'Levowich 500 Tablet', 'Dellwich Healthcare LLP', 'Levowich 500 Tablet', 'Can the use of Levowich 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levowich 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowich 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6158, 'Levowid-M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levowid-M 5mg/10mg Tablet', 'What is Levowid-M 5mg/10mg Tablet?', 'Levowid-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6159, 'Levowid-M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levowid-M 5mg/10mg Tablet', 'Can the use of Levowid-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levowid-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6160, 'Levowid-M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levowid-M 5mg/10mg Tablet', 'Can Levowid-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levowid-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6161, 'Levowid-M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levowid-M 5mg/10mg Tablet', 'Can the use of Levowid-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levowid-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6162, 'Levowid-M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levowid-M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levowid-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levowid-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levowid-M 5mg/10mg Tablet.'),
(6163, 'Levowid-M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levowid-M 5mg/10mg Tablet', 'Will Levowid-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levowid-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6164, 'Levowid-M 5mg/10mg Tablet', 'Widcure Healthcare', 'Levowid-M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levowid-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6165, 'Levowik 500mg Tablet', 'Biocube Pharma', 'Levowik 500mg Tablet', 'Is Levowik 500mg Tablet safe?', 'Levowik 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6166, 'Levowik 500mg Tablet', 'Biocube Pharma', 'Levowik 500mg Tablet', 'What if I forget to take a dose of Levowik 500mg Tablet?', 'If you forget a dose of Levowik 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6167, 'Levowik 500mg Tablet', 'Biocube Pharma', 'Levowik 500mg Tablet', 'Can the use of Levowik 500mg Tablet cause diarrhea?', 'Yes, the use of Levowik 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6168, 'Levowik 500mg Tablet', 'Biocube Pharma', 'Levowik 500mg Tablet', 'Can I stop taking Levowik 500mg Tablet when I feel better?', 'No, do not stop taking Levowik 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowik 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowik 500mg Tablet in the dose and duration advised by the doctor.'),
(6169, 'Levowik 500mg Tablet', 'Biocube Pharma', 'Levowik 500mg Tablet', 'Can the use of Levowik 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowik 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowik 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6170, 'Levowin Tablet', 'Makers Laboratories Ltd', 'Levowin Tablet', 'Is Levowin Tablet safe?', 'Levowin Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6171, 'Levowin Tablet', 'Makers Laboratories Ltd', 'Levowin Tablet', 'What if I forget to take a dose of Levowin Tablet?', 'If you forget a dose of Levowin Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6172, 'Levowin Tablet', 'Makers Laboratories Ltd', 'Levowin Tablet', 'Can the use of Levowin Tablet cause diarrhea?', 'Yes, the use of Levowin Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6173, 'Levowin Tablet', 'Makers Laboratories Ltd', 'Levowin Tablet', 'Can I stop taking Levowin Tablet when I feel better?', 'No, do not stop taking Levowin Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowin Tablet too early, the symptoms may return or worsen. Continue taking Levowin Tablet in the dose and duration advised by the doctor.'),
(6174, 'Levowin Tablet', 'Makers Laboratories Ltd', 'Levowin Tablet', 'Can the use of Levowin Tablet increase the risk of muscle damage?', 'Yes, the use of Levowin Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowin Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6175, 'Levowind 500mg Tablet', 'Windlas Biotech Ltd', 'Levowind 500mg Tablet', 'Is Levowind 500mg Tablet safe?', 'Levowind 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6176, 'Levowind 500mg Tablet', 'Windlas Biotech Ltd', 'Levowind 500mg Tablet', 'What if I forget to take a dose of Levowind 500mg Tablet?', 'If you forget a dose of Levowind 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6177, 'Levowind 500mg Tablet', 'Windlas Biotech Ltd', 'Levowind 500mg Tablet', 'Can the use of Levowind 500mg Tablet cause diarrhea?', 'Yes, the use of Levowind 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6178, 'Levowind 500mg Tablet', 'Windlas Biotech Ltd', 'Levowind 500mg Tablet', 'Can I stop taking Levowind 500mg Tablet when I feel better?', 'No, do not stop taking Levowind 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowind 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowind 500mg Tablet in the dose and duration advised by the doctor.'),
(6179, 'Levowind 500mg Tablet', 'Windlas Biotech Ltd', 'Levowind 500mg Tablet', 'Can the use of Levowind 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowind 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowind 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6180, 'Levowit M 5mg/10mg Tablet', 'WIT Pharmalink Pvt Ltd', 'Levowit M 5mg/10mg Tablet', 'What is Levowit M 5mg/10mg Tablet?', 'Levowit M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6181, 'Levowit M 5mg/10mg Tablet', 'WIT Pharmalink Pvt Ltd', 'Levowit M 5mg/10mg Tablet', 'Can the use of Levowit M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levowit M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6182, 'Levowit M 5mg/10mg Tablet', 'WIT Pharmalink Pvt Ltd', 'Levowit M 5mg/10mg Tablet', 'Can Levowit M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levowit M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6183, 'Levowit M 5mg/10mg Tablet', 'WIT Pharmalink Pvt Ltd', 'Levowit M 5mg/10mg Tablet', 'Can the use of Levowit M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levowit M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6184, 'Levowit M 5mg/10mg Tablet', 'WIT Pharmalink Pvt Ltd', 'Levowit M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levowit M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levowit M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levowit M 5mg/10mg Tablet.'),
(6185, 'Levowit M 5mg/10mg Tablet', 'WIT Pharmalink Pvt Ltd', 'Levowit M 5mg/10mg Tablet', 'Will Levowit M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levowit M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6186, 'Levowit M 5mg/10mg Tablet', 'WIT Pharmalink Pvt Ltd', 'Levowit M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levowit M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6187, 'levowiz 10mg Tablet', 'Dermawiz Laboratories Pvt Ltd', 'levowiz 10mg Tablet', 'Is levowiz 10mg Tablet a steroid? What is it used for?', 'No, levowiz 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6188, 'levowiz 10mg Tablet', 'Dermawiz Laboratories Pvt Ltd', 'levowiz 10mg Tablet', 'Does levowiz 10mg Tablet make you tired and drowsy?', 'Yes, levowiz 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6189, 'levowiz 10mg Tablet', 'Dermawiz Laboratories Pvt Ltd', 'levowiz 10mg Tablet', 'How long does it take for levowiz 10mg Tablet to work?', 'levowiz 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6190, 'levowiz 10mg Tablet', 'Dermawiz Laboratories Pvt Ltd', 'levowiz 10mg Tablet', 'Can I take levowiz 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking levowiz 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6191, 'levowiz 10mg Tablet', 'Dermawiz Laboratories Pvt Ltd', 'levowiz 10mg Tablet', 'Is it safe to take levowiz 10mg Tablet for a long time?', 'levowiz 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take levowiz 10mg Tablet for only as long as you need it.'),
(6192, 'levowiz 10mg Tablet', 'Dermawiz Laboratories Pvt Ltd', 'levowiz 10mg Tablet', 'For how long should I continue levowiz 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take levowiz 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using levowiz 10mg Tablet'),
(6193, 'Levowock 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levowock 500mg Tablet', 'Is Levowock 500mg Tablet safe?', 'Levowock 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6194, 'Levowock 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levowock 500mg Tablet', 'What if I forget to take a dose of Levowock 500mg Tablet?', 'If you forget a dose of Levowock 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6195, 'Levowock 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levowock 500mg Tablet', 'Can the use of Levowock 500mg Tablet cause diarrhea?', 'Yes, the use of Levowock 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6196, 'Levowock 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levowock 500mg Tablet', 'Can I stop taking Levowock 500mg Tablet when I feel better?', 'No, do not stop taking Levowock 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowock 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowock 500mg Tablet in the dose and duration advised by the doctor.'),
(6197, 'Levowock 500mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Levowock 500mg Tablet', 'Can the use of Levowock 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowock 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowock 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6198, 'Levowok 500mg Infusion', 'Wockhardt Ltd', 'Levowok 500mg Infusion', 'Is Levowok 500mg Infusion safe?', 'Levowok 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6199, 'Levowok 500mg Infusion', 'Wockhardt Ltd', 'Levowok 500mg Infusion', 'Can the use of Levowok 500mg Infusion cause diarrhea?', 'Yes, the use of Levowok 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6200, 'Levowok 500mg Infusion', 'Wockhardt Ltd', 'Levowok 500mg Infusion', 'Can the use of Levowok 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levowok 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowok 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6201, 'Levowok 500mg Infusion', 'Wockhardt Ltd', 'Levowok 500mg Infusion', 'How is Levowok 500mg Infusion administered?', 'Levowok 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levowok 500mg Infusion.'),
(6202, 'Levowok 500mg Infusion', 'Wockhardt Ltd', 'Levowok 500mg Infusion', 'Is Levowok 500mg Infusion effective?', 'Levowok 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levowok 500mg Infusion too early, the symptoms may return or worsen.'),
(6203, 'Levowok 500mg Tablet', 'Wockhardt Ltd', 'Levowok 500mg Tablet', 'Is Levowok 500mg Tablet safe?', 'Levowok 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6204, 'Levowok 500mg Tablet', 'Wockhardt Ltd', 'Levowok 500mg Tablet', 'What if I forget to take a dose of Levowok 500mg Tablet?', 'If you forget a dose of Levowok 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6205, 'Levowok 500mg Tablet', 'Wockhardt Ltd', 'Levowok 500mg Tablet', 'Can the use of Levowok 500mg Tablet cause diarrhea?', 'Yes, the use of Levowok 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6206, 'Levowok 500mg Tablet', 'Wockhardt Ltd', 'Levowok 500mg Tablet', 'Can I stop taking Levowok 500mg Tablet when I feel better?', 'No, do not stop taking Levowok 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levowok 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levowok 500mg Tablet in the dose and duration advised by the doctor.'),
(6207, 'Levowok 500mg Tablet', 'Wockhardt Ltd', 'Levowok 500mg Tablet', 'Can the use of Levowok 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levowok 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levowok 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6208, 'Levowor 5mg Tablet', 'World Heal Pharmaceuticals Pvt. Ltd.', 'Levowor 5mg Tablet', 'Is Levowor 5mg Tablet a steroid? What is it used for?', 'No, Levowor 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6209, 'Levowor 5mg Tablet', 'World Heal Pharmaceuticals Pvt. Ltd.', 'Levowor 5mg Tablet', 'Does Levowor 5mg Tablet make you tired and drowsy?', 'Yes, Levowor 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6210, 'Levowor 5mg Tablet', 'World Heal Pharmaceuticals Pvt. Ltd.', 'Levowor 5mg Tablet', 'How long does it take for Levowor 5mg Tablet to work?', 'Levowor 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6211, 'Levowor 5mg Tablet', 'World Heal Pharmaceuticals Pvt. Ltd.', 'Levowor 5mg Tablet', 'Can I take Levowor 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levowor 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6212, 'Levowor 5mg Tablet', 'World Heal Pharmaceuticals Pvt. Ltd.', 'Levowor 5mg Tablet', 'Is it safe to take Levowor 5mg Tablet for a long time?', 'Levowor 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levowor 5mg Tablet for only as long as you need it.'),
(6213, 'Levowor 5mg Tablet', 'World Heal Pharmaceuticals Pvt. Ltd.', 'Levowor 5mg Tablet', 'For how long should I continue Levowor 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levowor 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levowor 5mg Tablet'),
(6214, 'Levoworld 500mg Tablet', 'World Healthcare Pharma', 'Levoworld 500mg Tablet', 'Is Levoworld 500mg Tablet safe?', 'Levoworld 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6215, 'Levoworld 500mg Tablet', 'World Healthcare Pharma', 'Levoworld 500mg Tablet', 'What if I forget to take a dose of Levoworld 500mg Tablet?', 'If you forget a dose of Levoworld 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6216, 'Levoworld 500mg Tablet', 'World Healthcare Pharma', 'Levoworld 500mg Tablet', 'Can the use of Levoworld 500mg Tablet cause diarrhea?', 'Yes, the use of Levoworld 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6217, 'Levoworld 500mg Tablet', 'World Healthcare Pharma', 'Levoworld 500mg Tablet', 'Can I stop taking Levoworld 500mg Tablet when I feel better?', 'No, do not stop taking Levoworld 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoworld 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoworld 500mg Tablet in the dose and duration advised by the doctor.'),
(6218, 'Levoworld 500mg Tablet', 'World Healthcare Pharma', 'Levoworld 500mg Tablet', 'Can the use of Levoworld 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoworld 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoworld 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6219, 'Levowyn 5mg Tablet', 'Garwychem Healthcare', 'Levowyn 5mg Tablet', 'Is Levowyn 5mg Tablet a steroid? What is it used for?', 'No, Levowyn 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6220, 'Levowyn 5mg Tablet', 'Garwychem Healthcare', 'Levowyn 5mg Tablet', 'Does Levowyn 5mg Tablet make you tired and drowsy?', 'Yes, Levowyn 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6221, 'Levowyn 5mg Tablet', 'Garwychem Healthcare', 'Levowyn 5mg Tablet', 'How long does it take for Levowyn 5mg Tablet to work?', 'Levowyn 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6222, 'Levowyn 5mg Tablet', 'Garwychem Healthcare', 'Levowyn 5mg Tablet', 'Can I take Levowyn 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levowyn 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6223, 'Levowyn 5mg Tablet', 'Garwychem Healthcare', 'Levowyn 5mg Tablet', 'Is it safe to take Levowyn 5mg Tablet for a long time?', 'Levowyn 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levowyn 5mg Tablet for only as long as you need it.'),
(6224, 'Levowyn 5mg Tablet', 'Garwychem Healthcare', 'Levowyn 5mg Tablet', 'For how long should I continue Levowyn 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levowyn 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levowyn 5mg Tablet'),
(6225, 'Levowyn M 5mg/10mg Tablet', 'Garwychem Healthcare', 'Levowyn M 5mg/10mg Tablet', 'What is Levowyn M 5mg/10mg Tablet?', 'Levowyn M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6226, 'Levowyn M 5mg/10mg Tablet', 'Garwychem Healthcare', 'Levowyn M 5mg/10mg Tablet', 'Can the use of Levowyn M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levowyn M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6227, 'Levowyn M 5mg/10mg Tablet', 'Garwychem Healthcare', 'Levowyn M 5mg/10mg Tablet', 'Can Levowyn M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levowyn M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6228, 'Levowyn M 5mg/10mg Tablet', 'Garwychem Healthcare', 'Levowyn M 5mg/10mg Tablet', 'Can the use of Levowyn M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levowyn M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6229, 'Levowyn M 5mg/10mg Tablet', 'Garwychem Healthcare', 'Levowyn M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levowyn M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levowyn M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levowyn M 5mg/10mg Tablet.'),
(6230, 'Levowyn M 5mg/10mg Tablet', 'Garwychem Healthcare', 'Levowyn M 5mg/10mg Tablet', 'Will Levowyn M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levowyn M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6231, 'Levowyn M 5mg/10mg Tablet', 'Garwychem Healthcare', 'Levowyn M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levowyn M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6232, 'Levox 500mg Infusion', 'Claris Lifesciences Ltd', 'Levox 500mg Infusion', 'Is Levox 500mg Infusion safe?', 'Levox 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6233, 'Levox 500mg Infusion', 'Claris Lifesciences Ltd', 'Levox 500mg Infusion', 'Can the use of Levox 500mg Infusion cause diarrhea?', 'Yes, the use of Levox 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6234, 'Levox 500mg Infusion', 'Claris Lifesciences Ltd', 'Levox 500mg Infusion', 'Can the use of Levox 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levox 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6235, 'Levox 500mg Infusion', 'Claris Lifesciences Ltd', 'Levox 500mg Infusion', 'How is Levox 500mg Infusion administered?', 'Levox 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levox 500mg Infusion.'),
(6236, 'Levox 500mg Infusion', 'Claris Lifesciences Ltd', 'Levox 500mg Infusion', 'Is Levox 500mg Infusion effective?', 'Levox 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levox 500mg Infusion too early, the symptoms may return or worsen.'),
(6237, 'Levox 500mg Tablet', 'Claris Lifesciences Ltd', 'Levox 500mg Tablet (Claris Lifesciences Ltd)', 'Is Levox 500mg Tablet safe?', 'Levox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6238, 'Levox 500mg Tablet', 'Claris Lifesciences Ltd', 'Levox 500mg Tablet (Claris Lifesciences Ltd)', 'What if I forget to take a dose of Levox 500mg Tablet?', 'If you forget a dose of Levox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6239, 'Levox 500mg Tablet', 'Claris Lifesciences Ltd', 'Levox 500mg Tablet (Claris Lifesciences Ltd)', 'Can the use of Levox 500mg Tablet cause diarrhea?', 'Yes, the use of Levox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6240, 'Levox 500mg Tablet', 'Claris Lifesciences Ltd', 'Levox 500mg Tablet (Claris Lifesciences Ltd)', 'Can I stop taking Levox 500mg Tablet when I feel better?', 'No, do not stop taking Levox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levox 500mg Tablet in the dose and duration advised by the doctor.'),
(6241, 'Levox 500mg Tablet', 'Claris Lifesciences Ltd', 'Levox 500mg Tablet (Claris Lifesciences Ltd)', 'Can the use of Levox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6242, 'Levox 500mg Tablet', 'Sanko Biotech', 'Levox 500mg Tablet (Sanko Biotech)', 'Is Levox 500mg Tablet safe?', 'Levox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6243, 'Levox 500mg Tablet', 'Sanko Biotech', 'Levox 500mg Tablet (Sanko Biotech)', 'What if I forget to take a dose of Levox 500mg Tablet?', 'If you forget a dose of Levox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6244, 'Levox 500mg Tablet', 'Sanko Biotech', 'Levox 500mg Tablet (Sanko Biotech)', 'Can the use of Levox 500mg Tablet cause diarrhea?', 'Yes, the use of Levox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6245, 'Levox 500mg Tablet', 'Sanko Biotech', 'Levox 500mg Tablet (Sanko Biotech)', 'Can I stop taking Levox 500mg Tablet when I feel better?', 'No, do not stop taking Levox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levox 500mg Tablet in the dose and duration advised by the doctor.'),
(6246, 'Levox 500mg Tablet', 'Sanko Biotech', 'Levox 500mg Tablet (Sanko Biotech)', 'Can the use of Levox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6247, 'Levox 500mg Tablet', 'Colard Healthcare', 'Levox 500mg Tablet (Colard Healthcare)', 'Is Levox 500mg Tablet safe?', 'Levox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6248, 'Levox 500mg Tablet', 'Colard Healthcare', 'Levox 500mg Tablet (Colard Healthcare)', 'What if I forget to take a dose of Levox 500mg Tablet?', 'If you forget a dose of Levox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6249, 'Levox 500mg Tablet', 'Colard Healthcare', 'Levox 500mg Tablet (Colard Healthcare)', 'Can the use of Levox 500mg Tablet cause diarrhea?', 'Yes, the use of Levox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6250, 'Levox 500mg Tablet', 'Colard Healthcare', 'Levox 500mg Tablet (Colard Healthcare)', 'Can I stop taking Levox 500mg Tablet when I feel better?', 'No, do not stop taking Levox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levox 500mg Tablet in the dose and duration advised by the doctor.'),
(6251, 'Levox 500mg Tablet', 'Colard Healthcare', 'Levox 500mg Tablet (Colard Healthcare)', 'Can the use of Levox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6252, 'Levox 500mg Tablet', 'Navlakshya Pharma', 'Levox 500mg Tablet (Navlakshya Pharma)', 'Is Levox 500mg Tablet safe?', 'Levox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6253, 'Levox 500mg Tablet', 'Navlakshya Pharma', 'Levox 500mg Tablet (Navlakshya Pharma)', 'What if I forget to take a dose of Levox 500mg Tablet?', 'If you forget a dose of Levox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6254, 'Levox 500mg Tablet', 'Navlakshya Pharma', 'Levox 500mg Tablet (Navlakshya Pharma)', 'Can the use of Levox 500mg Tablet cause diarrhea?', 'Yes, the use of Levox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6255, 'Levox 500mg Tablet', 'Navlakshya Pharma', 'Levox 500mg Tablet (Navlakshya Pharma)', 'Can I stop taking Levox 500mg Tablet when I feel better?', 'No, do not stop taking Levox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levox 500mg Tablet in the dose and duration advised by the doctor.'),
(6256, 'Levox 500mg Tablet', 'Navlakshya Pharma', 'Levox 500mg Tablet (Navlakshya Pharma)', 'Can the use of Levox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6257, 'Levox 5mg Tablet', 'Manum Healthcare Pvt Ltd', 'Levox 5mg Tablet', 'Is Levox 5mg Tablet a steroid? What is it used for?', 'No, Levox 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6258, 'Levox 5mg Tablet', 'Manum Healthcare Pvt Ltd', 'Levox 5mg Tablet', 'Does Levox 5mg Tablet make you tired and drowsy?', 'Yes, Levox 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6259, 'Levox 5mg Tablet', 'Manum Healthcare Pvt Ltd', 'Levox 5mg Tablet', 'How long does it take for Levox 5mg Tablet to work?', 'Levox 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6260, 'Levox 5mg Tablet', 'Manum Healthcare Pvt Ltd', 'Levox 5mg Tablet', 'Can I take Levox 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levox 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6261, 'Levox 5mg Tablet', 'Manum Healthcare Pvt Ltd', 'Levox 5mg Tablet', 'Is it safe to take Levox 5mg Tablet for a long time?', 'Levox 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levox 5mg Tablet for only as long as you need it.'),
(6262, 'Levox 5mg Tablet', 'Manum Healthcare Pvt Ltd', 'Levox 5mg Tablet', 'For how long should I continue Levox 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levox 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levox 5mg Tablet'),
(6263, 'Levox 750mg Tablet', 'Sanko Biotech', 'Levox 750mg Tablet', 'Is Levox 750mg Tablet safe?', 'Levox 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6264, 'Levox 750mg Tablet', 'Sanko Biotech', 'Levox 750mg Tablet', 'What if I forget to take a dose of Levox 750mg Tablet?', 'If you forget a dose of Levox 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6265, 'Levox 750mg Tablet', 'Sanko Biotech', 'Levox 750mg Tablet', 'Can the use of Levox 750mg Tablet cause diarrhea?', 'Yes, the use of Levox 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6266, 'Levox 750mg Tablet', 'Sanko Biotech', 'Levox 750mg Tablet', 'Can I stop taking Levox 750mg Tablet when I feel better?', 'No, do not stop taking Levox 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levox 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levox 750mg Tablet in the dose and duration advised by the doctor.'),
(6267, 'Levox 750mg Tablet', 'Sanko Biotech', 'Levox 750mg Tablet', 'Can the use of Levox 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levox 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6268, 'Levox Eye/Ear Drops', 'Biomedica International', 'Levox Eye/Ear Drops', 'Is Levox Eye/Ear Drops safe?', 'Levox Eye/Ear Drops is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6269, 'Levox Eye/Ear Drops', 'Biomedica International', 'Levox Eye/Ear Drops', 'What if I forget to take a dose of Levox Eye/Ear Drops?', 'If you forget a dose of Levox Eye/Ear Drops, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6270, 'Levox Eye/Ear Drops', 'Biomedica International', 'Levox Eye/Ear Drops', 'Can I stop taking Levox Eye/Ear Drops when I feel better?', 'No, do not stop taking Levox Eye/Ear Drops and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levox Eye/Ear Drops too early, the symptoms may return or worsen. Continue taking Levox Eye/Ear Drops in the dose and duration advised by the doctor.'),
(6271, 'Levox Eye/Ear Drops', 'Biomedica International', 'Levox Eye/Ear Drops', 'Can the use of Levox Eye/Ear Drops increase the risk of muscle damage?', 'Yes, the use of Levox Eye/Ear Drops is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox Eye/Ear Drops but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6272, 'Levox Tablet', 'AP Medicare', 'Levox Tablet', 'Is Levox Tablet safe?', 'Levox Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6273, 'Levox Tablet', 'AP Medicare', 'Levox Tablet', 'What if I forget to take a dose of Levox Tablet?', 'If you forget a dose of Levox Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6274, 'Levox Tablet', 'AP Medicare', 'Levox Tablet', 'Can the use of Levox Tablet cause diarrhea?', 'Yes, the use of Levox Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6275, 'Levox Tablet', 'AP Medicare', 'Levox Tablet', 'Can I stop taking Levox Tablet when I feel better?', 'No, do not stop taking Levox Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levox Tablet too early, the symptoms may return or worsen. Continue taking Levox Tablet in the dose and duration advised by the doctor.'),
(6276, 'Levox Tablet', 'AP Medicare', 'Levox Tablet', 'Can the use of Levox Tablet increase the risk of muscle damage?', 'Yes, the use of Levox Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levox Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6277, 'Levoxa 500mg Tablet', 'Bioguard Organics Ltd', 'Levoxa 500mg Tablet (Bioguard Organics Ltd)', 'Is Levoxa 500mg Tablet safe?', 'Levoxa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6278, 'Levoxa 500mg Tablet', 'Bioguard Organics Ltd', 'Levoxa 500mg Tablet (Bioguard Organics Ltd)', 'What if I forget to take a dose of Levoxa 500mg Tablet?', 'If you forget a dose of Levoxa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6279, 'Levoxa 500mg Tablet', 'Bioguard Organics Ltd', 'Levoxa 500mg Tablet (Bioguard Organics Ltd)', 'Can the use of Levoxa 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6280, 'Levoxa 500mg Tablet', 'Bioguard Organics Ltd', 'Levoxa 500mg Tablet (Bioguard Organics Ltd)', 'Can I stop taking Levoxa 500mg Tablet when I feel better?', 'No, do not stop taking Levoxa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxa 500mg Tablet in the dose and duration advised by the doctor.'),
(6281, 'Levoxa 500mg Tablet', 'Bioguard Organics Ltd', 'Levoxa 500mg Tablet (Bioguard Organics Ltd)', 'Can the use of Levoxa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6282, 'Levoxa 500mg Tablet', 'Nova Scotia', 'Levoxa 500mg Tablet (Nova Scotia)', 'Is Levoxa 500mg Tablet safe?', 'Levoxa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6283, 'Levoxa 500mg Tablet', 'Nova Scotia', 'Levoxa 500mg Tablet (Nova Scotia)', 'What if I forget to take a dose of Levoxa 500mg Tablet?', 'If you forget a dose of Levoxa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6284, 'Levoxa 500mg Tablet', 'Nova Scotia', 'Levoxa 500mg Tablet (Nova Scotia)', 'Can the use of Levoxa 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6285, 'Levoxa 500mg Tablet', 'Nova Scotia', 'Levoxa 500mg Tablet (Nova Scotia)', 'Can I stop taking Levoxa 500mg Tablet when I feel better?', 'No, do not stop taking Levoxa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxa 500mg Tablet in the dose and duration advised by the doctor.'),
(6286, 'Levoxa 500mg Tablet', 'Nova Scotia', 'Levoxa 500mg Tablet (Nova Scotia)', 'Can the use of Levoxa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6287, 'Levoxa 500mg Tablet', 'Lacip Healthcare', 'Levoxa 500mg Tablet (Lacip Healthcare)', 'Is Levoxa 500mg Tablet safe?', 'Levoxa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6288, 'Levoxa 500mg Tablet', 'Lacip Healthcare', 'Levoxa 500mg Tablet (Lacip Healthcare)', 'What if I forget to take a dose of Levoxa 500mg Tablet?', 'If you forget a dose of Levoxa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6289, 'Levoxa 500mg Tablet', 'Lacip Healthcare', 'Levoxa 500mg Tablet (Lacip Healthcare)', 'Can the use of Levoxa 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6290, 'Levoxa 500mg Tablet', 'Lacip Healthcare', 'Levoxa 500mg Tablet (Lacip Healthcare)', 'Can I stop taking Levoxa 500mg Tablet when I feel better?', 'No, do not stop taking Levoxa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxa 500mg Tablet in the dose and duration advised by the doctor.'),
(6291, 'Levoxa 500mg Tablet', 'Lacip Healthcare', 'Levoxa 500mg Tablet (Lacip Healthcare)', 'Can the use of Levoxa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6292, 'Levoxacant 500mg Tablet', 'Medicant Lifesciences Pvt Ltd', 'Levoxacant 500mg Tablet', 'Is Levoxacant 500mg Tablet safe?', 'Levoxacant 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6293, 'Levoxacant 500mg Tablet', 'Medicant Lifesciences Pvt Ltd', 'Levoxacant 500mg Tablet', 'What if I forget to take a dose of Levoxacant 500mg Tablet?', 'If you forget a dose of Levoxacant 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6294, 'Levoxacant 500mg Tablet', 'Medicant Lifesciences Pvt Ltd', 'Levoxacant 500mg Tablet', 'Can the use of Levoxacant 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxacant 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6295, 'Levoxacant 500mg Tablet', 'Medicant Lifesciences Pvt Ltd', 'Levoxacant 500mg Tablet', 'Can I stop taking Levoxacant 500mg Tablet when I feel better?', 'No, do not stop taking Levoxacant 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxacant 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxacant 500mg Tablet in the dose and duration advised by the doctor.'),
(6296, 'Levoxacant 500mg Tablet', 'Medicant Lifesciences Pvt Ltd', 'Levoxacant 500mg Tablet', 'Can the use of Levoxacant 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxacant 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxacant 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6297, 'Levoxacin 500mg Tablet', 'Anthus Pharmaceuticals Pvt Ltd', 'Levoxacin 500mg Tablet', 'Is Levoxacin 500mg Tablet safe?', 'Levoxacin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6298, 'Levoxacin 500mg Tablet', 'Anthus Pharmaceuticals Pvt Ltd', 'Levoxacin 500mg Tablet', 'What if I forget to take a dose of Levoxacin 500mg Tablet?', 'If you forget a dose of Levoxacin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6299, 'Levoxacin 500mg Tablet', 'Anthus Pharmaceuticals Pvt Ltd', 'Levoxacin 500mg Tablet', 'Can the use of Levoxacin 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxacin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6300, 'Levoxacin 500mg Tablet', 'Anthus Pharmaceuticals Pvt Ltd', 'Levoxacin 500mg Tablet', 'Can I stop taking Levoxacin 500mg Tablet when I feel better?', 'No, do not stop taking Levoxacin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxacin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxacin 500mg Tablet in the dose and duration advised by the doctor.'),
(6301, 'Levoxacin 500mg Tablet', 'Anthus Pharmaceuticals Pvt Ltd', 'Levoxacin 500mg Tablet', 'Can the use of Levoxacin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxacin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxacin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6302, 'Levoxagard 250mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 250mg Tablet', 'Is Levoxagard 250mg Tablet safe?', 'Levoxagard 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6303, 'Levoxagard 250mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 250mg Tablet', 'What if I forget to take a dose of Levoxagard 250mg Tablet?', 'If you forget a dose of Levoxagard 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6304, 'Levoxagard 250mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 250mg Tablet', 'Can the use of Levoxagard 250mg Tablet cause diarrhea?', 'Yes, the use of Levoxagard 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6305, 'Levoxagard 250mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 250mg Tablet', 'Can I stop taking Levoxagard 250mg Tablet when I feel better?', 'No, do not stop taking Levoxagard 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxagard 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxagard 250mg Tablet in the dose and duration advised by the doctor.'),
(6306, 'Levoxagard 250mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 250mg Tablet', 'Can the use of Levoxagard 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxagard 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxagard 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6307, 'Levoxagard 500mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 500mg Tablet', 'Is Levoxagard 500mg Tablet safe?', 'Levoxagard 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6308, 'Levoxagard 500mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 500mg Tablet', 'What if I forget to take a dose of Levoxagard 500mg Tablet?', 'If you forget a dose of Levoxagard 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6309, 'Levoxagard 500mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 500mg Tablet', 'Can the use of Levoxagard 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxagard 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6310, 'Levoxagard 500mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 500mg Tablet', 'Can I stop taking Levoxagard 500mg Tablet when I feel better?', 'No, do not stop taking Levoxagard 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxagard 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxagard 500mg Tablet in the dose and duration advised by the doctor.'),
(6311, 'Levoxagard 500mg Tablet', 'Nimbles Biotech Pvt Ltd', 'Levoxagard 500mg Tablet', 'Can the use of Levoxagard 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxagard 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxagard 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6312, 'Levoxagen 500mg Tablet', 'Geneda Pharma', 'Levoxagen 500mg Tablet', 'Is Levoxagen 500mg Tablet safe?', 'Levoxagen 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6313, 'Levoxagen 500mg Tablet', 'Geneda Pharma', 'Levoxagen 500mg Tablet', 'What if I forget to take a dose of Levoxagen 500mg Tablet?', 'If you forget a dose of Levoxagen 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6314, 'Levoxagen 500mg Tablet', 'Geneda Pharma', 'Levoxagen 500mg Tablet', 'Can the use of Levoxagen 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxagen 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6315, 'Levoxagen 500mg Tablet', 'Geneda Pharma', 'Levoxagen 500mg Tablet', 'Can I stop taking Levoxagen 500mg Tablet when I feel better?', 'No, do not stop taking Levoxagen 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxagen 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxagen 500mg Tablet in the dose and duration advised by the doctor.'),
(6316, 'Levoxagen 500mg Tablet', 'Geneda Pharma', 'Levoxagen 500mg Tablet', 'Can the use of Levoxagen 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxagen 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxagen 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6317, 'Levoxal 500mg Tablet', 'Biomorph Lifesciences', 'Levoxal 500mg Tablet', 'Is Levoxal 500mg Tablet safe?', 'Levoxal 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6318, 'Levoxal 500mg Tablet', 'Biomorph Lifesciences', 'Levoxal 500mg Tablet', 'What if I forget to take a dose of Levoxal 500mg Tablet?', 'If you forget a dose of Levoxal 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6319, 'Levoxal 500mg Tablet', 'Biomorph Lifesciences', 'Levoxal 500mg Tablet', 'Can the use of Levoxal 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxal 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6320, 'Levoxal 500mg Tablet', 'Biomorph Lifesciences', 'Levoxal 500mg Tablet', 'Can I stop taking Levoxal 500mg Tablet when I feel better?', 'No, do not stop taking Levoxal 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxal 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxal 500mg Tablet in the dose and duration advised by the doctor.'),
(6321, 'Levoxal 500mg Tablet', 'Biomorph Lifesciences', 'Levoxal 500mg Tablet', 'Can the use of Levoxal 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxal 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxal 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6322, 'Levoxal OZ 250mg/500mg Tablet', 'Biomorph Lifesciences', 'Levoxal OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levoxal OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6323, 'Levoxal OZ 250mg/500mg Tablet', 'Biomorph Lifesciences', 'Levoxal OZ 250mg/500mg Tablet', 'Can I stop taking Levoxal OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoxal OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6324, 'Levoxal OZ 250mg/500mg Tablet', 'Biomorph Lifesciences', 'Levoxal OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levoxal OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6325, 'Levoxane OZ 125mg/50mg Syrup', 'Biovec Lifesciences', 'Levoxane OZ 125mg/50mg Syrup', 'What if I don\'t get better after using Levoxane OZ 125mg/50mg Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6326, 'Levoxane OZ 125mg/50mg Syrup', 'Biovec Lifesciences', 'Levoxane OZ 125mg/50mg Syrup', 'Can I stop taking Levoxane OZ 125mg/50mg Syrup when I feel better?', 'No, do not stop taking Levoxane OZ 125mg/50mg Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6327, 'Levoxane OZ 125mg/50mg Syrup', 'Biovec Lifesciences', 'Levoxane OZ 125mg/50mg Syrup', 'What if I miss my dose?', 'Take Levoxane OZ 125mg/50mg Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6328, 'Levoxe-M Tablet', 'Medico Life Science Pvt Ltd', 'Levoxe-M Tablet', 'What is Levoxe-M Tablet?', 'Levoxe-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6329, 'Levoxe-M Tablet', 'Medico Life Science Pvt Ltd', 'Levoxe-M Tablet', 'Can the use of Levoxe-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoxe-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6330, 'Levoxe-M Tablet', 'Medico Life Science Pvt Ltd', 'Levoxe-M Tablet', 'Can Levoxe-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoxe-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6331, 'Levoxe-M Tablet', 'Medico Life Science Pvt Ltd', 'Levoxe-M Tablet', 'Can the use of Levoxe-M Tablet cause dry mouth?', 'Yes, the use of Levoxe-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6332, 'Levoxe-M Tablet', 'Medico Life Science Pvt Ltd', 'Levoxe-M Tablet', 'Can I drink alcohol while taking Levoxe-M Tablet?', 'No, do not take alcohol while taking Levoxe-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoxe-M Tablet.'),
(6333, 'Levoxe-M Tablet', 'Medico Life Science Pvt Ltd', 'Levoxe-M Tablet', 'Will Levoxe-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoxe-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6334, 'Levoxe-M Tablet', 'Medico Life Science Pvt Ltd', 'Levoxe-M Tablet', 'What are the instructions for storage and disposal of Levoxe-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6335, 'Levoxia 5mg Tablet', 'Medilane Labs', 'Levoxia 5mg Tablet', 'Is Levoxia 5mg Tablet a steroid? What is it used for?', 'No, Levoxia 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6336, 'Levoxia 5mg Tablet', 'Medilane Labs', 'Levoxia 5mg Tablet', 'Does Levoxia 5mg Tablet make you tired and drowsy?', 'Yes, Levoxia 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6337, 'Levoxia 5mg Tablet', 'Medilane Labs', 'Levoxia 5mg Tablet', 'How long does it take for Levoxia 5mg Tablet to work?', 'Levoxia 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6338, 'Levoxia 5mg Tablet', 'Medilane Labs', 'Levoxia 5mg Tablet', 'Can I take Levoxia 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoxia 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6339, 'Levoxia 5mg Tablet', 'Medilane Labs', 'Levoxia 5mg Tablet', 'Is it safe to take Levoxia 5mg Tablet for a long time?', 'Levoxia 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoxia 5mg Tablet for only as long as you need it.'),
(6340, 'Levoxia 5mg Tablet', 'Medilane Labs', 'Levoxia 5mg Tablet', 'For how long should I continue Levoxia 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoxia 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoxia 5mg Tablet'),
(6341, 'Levoxid 500mg Infusion', 'Enivid lifesciences', 'Levoxid 500mg Infusion', 'Is Levoxid 500mg Infusion safe?', 'Levoxid 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6342, 'Levoxid 500mg Infusion', 'Enivid lifesciences', 'Levoxid 500mg Infusion', 'Can the use of Levoxid 500mg Infusion cause diarrhea?', 'Yes, the use of Levoxid 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6343, 'Levoxid 500mg Infusion', 'Enivid lifesciences', 'Levoxid 500mg Infusion', 'Can the use of Levoxid 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levoxid 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxid 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6344, 'Levoxid 500mg Infusion', 'Enivid lifesciences', 'Levoxid 500mg Infusion', 'How is Levoxid 500mg Infusion administered?', 'Levoxid 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levoxid 500mg Infusion.'),
(6345, 'Levoxid 500mg Infusion', 'Enivid lifesciences', 'Levoxid 500mg Infusion', 'Is Levoxid 500mg Infusion effective?', 'Levoxid 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levoxid 500mg Infusion too early, the symptoms may return or worsen.'),
(6346, 'Levoxid 500mg Tablet', 'Enivid lifesciences', 'Levoxid 500mg Tablet', 'Is Levoxid 500mg Tablet safe?', 'Levoxid 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6347, 'Levoxid 500mg Tablet', 'Enivid lifesciences', 'Levoxid 500mg Tablet', 'What if I forget to take a dose of Levoxid 500mg Tablet?', 'If you forget a dose of Levoxid 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6348, 'Levoxid 500mg Tablet', 'Enivid lifesciences', 'Levoxid 500mg Tablet', 'Can the use of Levoxid 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxid 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6349, 'Levoxid 500mg Tablet', 'Enivid lifesciences', 'Levoxid 500mg Tablet', 'Can I stop taking Levoxid 500mg Tablet when I feel better?', 'No, do not stop taking Levoxid 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxid 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxid 500mg Tablet in the dose and duration advised by the doctor.'),
(6350, 'Levoxid 500mg Tablet', 'Enivid lifesciences', 'Levoxid 500mg Tablet', 'Can the use of Levoxid 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxid 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxid 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6351, 'Levoxijoy 500mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy 500mg Tablet', 'Q. Is Levoxijoy 500mg Tablet safe?', 'Levoxijoy 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6352, 'Levoxijoy 500mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy 500mg Tablet', 'Q. What if I forget to take a dose of Levoxijoy 500mg Tablet?', 'If you forget a dose of Levoxijoy 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6353, 'Levoxijoy 500mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy 500mg Tablet', 'Q. Can the use of Levoxijoy 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxijoy 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6354, 'Levoxijoy 500mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy 500mg Tablet', 'Q. Can I stop taking Levoxijoy 500mg Tablet when I feel better?', 'No, do not stop taking Levoxijoy 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxijoy 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxijoy 500mg Tablet in the dose and duration advised by the doctor.'),
(6355, 'Levoxijoy 500mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy 500mg Tablet', 'Q. Can the use of Levoxijoy 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxijoy 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxijoy 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6356, 'Levoxijoy O 250mg/200mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy O 250mg/200mg Tablet', 'What if I don\'t get better after using Levoxijoy O 250mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6357, 'Levoxijoy O 250mg/200mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy O 250mg/200mg Tablet', 'Can I stop taking Levoxijoy O 250mg/200mg Tablet when I feel better?', 'No, do not stop taking Levoxijoy O 250mg/200mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6358, 'Levoxijoy O 250mg/200mg Tablet', 'Lifejoy Healthcare', 'Levoxijoy O 250mg/200mg Tablet', 'What if I miss my dose?', 'Take Levoxijoy O 250mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6359, 'Levoxil 250mg Tablet', 'Vexilla Healthcare', 'Levoxil 250mg Tablet', 'Is Levoxil 250mg Tablet safe?', 'Levoxil 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6360, 'Levoxil 250mg Tablet', 'Vexilla Healthcare', 'Levoxil 250mg Tablet', 'What if I forget to take a dose of Levoxil 250mg Tablet?', 'If you forget a dose of Levoxil 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6361, 'Levoxil 250mg Tablet', 'Vexilla Healthcare', 'Levoxil 250mg Tablet', 'Can the use of Levoxil 250mg Tablet cause diarrhea?', 'Yes, the use of Levoxil 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6362, 'Levoxil 250mg Tablet', 'Vexilla Healthcare', 'Levoxil 250mg Tablet', 'Can I stop taking Levoxil 250mg Tablet when I feel better?', 'No, do not stop taking Levoxil 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxil 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxil 250mg Tablet in the dose and duration advised by the doctor.'),
(6363, 'Levoxil 250mg Tablet', 'Vexilla Healthcare', 'Levoxil 250mg Tablet', 'Can the use of Levoxil 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxil 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxil 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6364, 'Levoxil 500mg Tablet', 'Vexilla Healthcare', 'Levoxil 500mg Tablet', 'Is Levoxil 500mg Tablet safe?', 'Levoxil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6365, 'Levoxil 500mg Tablet', 'Vexilla Healthcare', 'Levoxil 500mg Tablet', 'What if I forget to take a dose of Levoxil 500mg Tablet?', 'If you forget a dose of Levoxil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6366, 'Levoxil 500mg Tablet', 'Vexilla Healthcare', 'Levoxil 500mg Tablet', 'Can the use of Levoxil 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6367, 'Levoxil 500mg Tablet', 'Vexilla Healthcare', 'Levoxil 500mg Tablet', 'Can I stop taking Levoxil 500mg Tablet when I feel better?', 'No, do not stop taking Levoxil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxil 500mg Tablet in the dose and duration advised by the doctor.'),
(6368, 'Levoxil 500mg Tablet', 'Vexilla Healthcare', 'Levoxil 500mg Tablet', 'Can the use of Levoxil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6369, 'Levoxil OZ 250mg/500mg Tablet', 'Vexilla Healthcare', 'Levoxil OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levoxil OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6370, 'Levoxil OZ 250mg/500mg Tablet', 'Vexilla Healthcare', 'Levoxil OZ 250mg/500mg Tablet', 'Can I stop taking Levoxil OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoxil OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6371, 'Levoxil OZ 250mg/500mg Tablet', 'Vexilla Healthcare', 'Levoxil OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levoxil OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6372, 'Levoxin 500mg Tablet', 'P R G Pharma Pvt Ltd', 'Levoxin 500mg Tablet (P R G Pharma Pvt Ltd)', 'Is Levoxin 500mg Tablet safe?', 'Levoxin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6373, 'Levoxin 500mg Tablet', 'P R G Pharma Pvt Ltd', 'Levoxin 500mg Tablet (P R G Pharma Pvt Ltd)', 'What if I forget to take a dose of Levoxin 500mg Tablet?', 'If you forget a dose of Levoxin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6374, 'Levoxin 500mg Tablet', 'P R G Pharma Pvt Ltd', 'Levoxin 500mg Tablet (P R G Pharma Pvt Ltd)', 'Can the use of Levoxin 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6375, 'Levoxin 500mg Tablet', 'P R G Pharma Pvt Ltd', 'Levoxin 500mg Tablet (P R G Pharma Pvt Ltd)', 'Can I stop taking Levoxin 500mg Tablet when I feel better?', 'No, do not stop taking Levoxin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxin 500mg Tablet in the dose and duration advised by the doctor.'),
(6376, 'Levoxin 500mg Tablet', 'P R G Pharma Pvt Ltd', 'Levoxin 500mg Tablet (P R G Pharma Pvt Ltd)', 'Can the use of Levoxin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6377, 'Levoxin 500mg Tablet', 'Scutage Pharmaceuticals', 'Levoxin 500mg Tablet (Scutage Pharmaceuticals)', 'Is Levoxin 500mg Tablet safe?', 'Levoxin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6378, 'Levoxin 500mg Tablet', 'Scutage Pharmaceuticals', 'Levoxin 500mg Tablet (Scutage Pharmaceuticals)', 'What if I forget to take a dose of Levoxin 500mg Tablet?', 'If you forget a dose of Levoxin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6379, 'Levoxin 500mg Tablet', 'Scutage Pharmaceuticals', 'Levoxin 500mg Tablet (Scutage Pharmaceuticals)', 'Can the use of Levoxin 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6380, 'Levoxin 500mg Tablet', 'Scutage Pharmaceuticals', 'Levoxin 500mg Tablet (Scutage Pharmaceuticals)', 'Can I stop taking Levoxin 500mg Tablet when I feel better?', 'No, do not stop taking Levoxin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxin 500mg Tablet in the dose and duration advised by the doctor.'),
(6381, 'Levoxin 500mg Tablet', 'Scutage Pharmaceuticals', 'Levoxin 500mg Tablet (Scutage Pharmaceuticals)', 'Can the use of Levoxin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6382, 'Levoxit 10mg Tablet', 'Grantham Lifesciences', 'Levoxit 10mg Tablet', 'Is Levoxit 10mg Tablet a steroid? What is it used for?', 'No, Levoxit 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6383, 'Levoxit 10mg Tablet', 'Grantham Lifesciences', 'Levoxit 10mg Tablet', 'Does Levoxit 10mg Tablet make you tired and drowsy?', 'Yes, Levoxit 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6384, 'Levoxit 10mg Tablet', 'Grantham Lifesciences', 'Levoxit 10mg Tablet', 'How long does it take for Levoxit 10mg Tablet to work?', 'Levoxit 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6385, 'Levoxit 10mg Tablet', 'Grantham Lifesciences', 'Levoxit 10mg Tablet', 'Can I take Levoxit 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoxit 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6386, 'Levoxit 10mg Tablet', 'Grantham Lifesciences', 'Levoxit 10mg Tablet', 'Is it safe to take Levoxit 10mg Tablet for a long time?', 'Levoxit 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoxit 10mg Tablet for only as long as you need it.'),
(6387, 'Levoxit 10mg Tablet', 'Grantham Lifesciences', 'Levoxit 10mg Tablet', 'For how long should I continue Levoxit 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoxit 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoxit 10mg Tablet'),
(6388, 'Levoxit 5mg Tablet', 'Grantham Lifesciences', 'Levoxit 5mg Tablet', 'Is Levoxit 5mg Tablet a steroid? What is it used for?', 'No, Levoxit 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6389, 'Levoxit 5mg Tablet', 'Grantham Lifesciences', 'Levoxit 5mg Tablet', 'Does Levoxit 5mg Tablet make you tired and drowsy?', 'Yes, Levoxit 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6390, 'Levoxit 5mg Tablet', 'Grantham Lifesciences', 'Levoxit 5mg Tablet', 'How long does it take for Levoxit 5mg Tablet to work?', 'Levoxit 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6391, 'Levoxit 5mg Tablet', 'Grantham Lifesciences', 'Levoxit 5mg Tablet', 'Can I take Levoxit 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoxit 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6392, 'Levoxit 5mg Tablet', 'Grantham Lifesciences', 'Levoxit 5mg Tablet', 'Is it safe to take Levoxit 5mg Tablet for a long time?', 'Levoxit 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoxit 5mg Tablet for only as long as you need it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6393, 'Levoxit 5mg Tablet', 'Grantham Lifesciences', 'Levoxit 5mg Tablet', 'For how long should I continue Levoxit 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoxit 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoxit 5mg Tablet'),
(6394, 'Levoxit M 5mg/10mg Tablet', 'Grantham Lifesciences', 'Levoxit M 5mg/10mg Tablet', 'What is Levoxit M 5mg/10mg Tablet?', 'Levoxit M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6395, 'Levoxit M 5mg/10mg Tablet', 'Grantham Lifesciences', 'Levoxit M 5mg/10mg Tablet', 'Can the use of Levoxit M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoxit M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6396, 'Levoxit M 5mg/10mg Tablet', 'Grantham Lifesciences', 'Levoxit M 5mg/10mg Tablet', 'Can Levoxit M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoxit M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6397, 'Levoxit M 5mg/10mg Tablet', 'Grantham Lifesciences', 'Levoxit M 5mg/10mg Tablet', 'Can the use of Levoxit M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoxit M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6398, 'Levoxit M 5mg/10mg Tablet', 'Grantham Lifesciences', 'Levoxit M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoxit M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoxit M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoxit M 5mg/10mg Tablet.'),
(6399, 'Levoxit M 5mg/10mg Tablet', 'Grantham Lifesciences', 'Levoxit M 5mg/10mg Tablet', 'Will Levoxit M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoxit M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6400, 'Levoxit M 5mg/10mg Tablet', 'Grantham Lifesciences', 'Levoxit M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoxit M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6401, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6402, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'Can I decrease the dose of Levoxit M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6403, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'How should Levoxit M Syrup be stored?', 'Levoxit M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6404, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'Can Levoxit M Syrup make my child sleepy?', 'Levoxit M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6405, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoxit M Syrup?', 'No, don’t start Levoxit M Syrup without speaking to your child’s doctor. Moreover, Levoxit M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6406, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoxit M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6407, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoxit M Syrup to my child?', 'Some studies show that Levoxit M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6408, 'Levoxit M Syrup', 'Grantham Lifesciences', 'Levoxit M Syrup', 'Can I use Levoxit M Syrup for treating acute asthma attacks in my child?', 'Levoxit M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6409, 'Levoxmed 500mg Tablet', 'Medhexa Pharma', 'Levoxmed 500mg Tablet', 'Is Levoxmed 500mg Tablet safe?', 'Levoxmed 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6410, 'Levoxmed 500mg Tablet', 'Medhexa Pharma', 'Levoxmed 500mg Tablet', 'What if I forget to take a dose of Levoxmed 500mg Tablet?', 'If you forget a dose of Levoxmed 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6411, 'Levoxmed 500mg Tablet', 'Medhexa Pharma', 'Levoxmed 500mg Tablet', 'Can the use of Levoxmed 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxmed 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6412, 'Levoxmed 500mg Tablet', 'Medhexa Pharma', 'Levoxmed 500mg Tablet', 'Can I stop taking Levoxmed 500mg Tablet when I feel better?', 'No, do not stop taking Levoxmed 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxmed 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxmed 500mg Tablet in the dose and duration advised by the doctor.'),
(6413, 'Levoxmed 500mg Tablet', 'Medhexa Pharma', 'Levoxmed 500mg Tablet', 'Can the use of Levoxmed 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxmed 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxmed 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6414, 'Levoxn 250mg Tablet', 'Parasol Laboratories', 'Levoxn 250mg Tablet', 'Is Levoxn 250mg Tablet safe?', 'Levoxn 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6415, 'Levoxn 250mg Tablet', 'Parasol Laboratories', 'Levoxn 250mg Tablet', 'What if I forget to take a dose of Levoxn 250mg Tablet?', 'If you forget a dose of Levoxn 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6416, 'Levoxn 250mg Tablet', 'Parasol Laboratories', 'Levoxn 250mg Tablet', 'Can the use of Levoxn 250mg Tablet cause diarrhea?', 'Yes, the use of Levoxn 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6417, 'Levoxn 250mg Tablet', 'Parasol Laboratories', 'Levoxn 250mg Tablet', 'Can I stop taking Levoxn 250mg Tablet when I feel better?', 'No, do not stop taking Levoxn 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxn 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxn 250mg Tablet in the dose and duration advised by the doctor.'),
(6418, 'Levoxn 250mg Tablet', 'Parasol Laboratories', 'Levoxn 250mg Tablet', 'Can the use of Levoxn 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxn 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxn 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6419, 'Levoxn 500mg Tablet', 'Parasol Laboratories', 'Levoxn 500mg Tablet', 'Is Levoxn 500mg Tablet safe?', 'Levoxn 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6420, 'Levoxn 500mg Tablet', 'Parasol Laboratories', 'Levoxn 500mg Tablet', 'What if I forget to take a dose of Levoxn 500mg Tablet?', 'If you forget a dose of Levoxn 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6421, 'Levoxn 500mg Tablet', 'Parasol Laboratories', 'Levoxn 500mg Tablet', 'Can the use of Levoxn 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxn 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6422, 'Levoxn 500mg Tablet', 'Parasol Laboratories', 'Levoxn 500mg Tablet', 'Can I stop taking Levoxn 500mg Tablet when I feel better?', 'No, do not stop taking Levoxn 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxn 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxn 500mg Tablet in the dose and duration advised by the doctor.'),
(6423, 'Levoxn 500mg Tablet', 'Parasol Laboratories', 'Levoxn 500mg Tablet', 'Can the use of Levoxn 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxn 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxn 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6424, 'Levoxn 750mg Tablet', 'Parasol Laboratories', 'Levoxn 750mg Tablet', 'Is Levoxn 750mg Tablet safe?', 'Levoxn 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6425, 'Levoxn 750mg Tablet', 'Parasol Laboratories', 'Levoxn 750mg Tablet', 'What if I forget to take a dose of Levoxn 750mg Tablet?', 'If you forget a dose of Levoxn 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6426, 'Levoxn 750mg Tablet', 'Parasol Laboratories', 'Levoxn 750mg Tablet', 'Can the use of Levoxn 750mg Tablet cause diarrhea?', 'Yes, the use of Levoxn 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6427, 'Levoxn 750mg Tablet', 'Parasol Laboratories', 'Levoxn 750mg Tablet', 'Can I stop taking Levoxn 750mg Tablet when I feel better?', 'No, do not stop taking Levoxn 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxn 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxn 750mg Tablet in the dose and duration advised by the doctor.'),
(6428, 'Levoxn 750mg Tablet', 'Parasol Laboratories', 'Levoxn 750mg Tablet', 'Can the use of Levoxn 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxn 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxn 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6429, 'Levoxn OR 250 mg/500 mg Tablet', 'Parasol Laboratories', 'Levoxn OR 250 mg/500 mg Tablet', 'What if I don\'t get better after using Levoxn OR 250 mg/500 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6430, 'Levoxn OR 250 mg/500 mg Tablet', 'Parasol Laboratories', 'Levoxn OR 250 mg/500 mg Tablet', 'Can I stop taking Levoxn OR 250 mg/500 mg Tablet when I feel better?', 'No, do not stop taking Levoxn OR 250 mg/500 mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6431, 'Levoxn OR 250 mg/500 mg Tablet', 'Parasol Laboratories', 'Levoxn OR 250 mg/500 mg Tablet', 'What if I miss my dose?', 'Take Levoxn OR 250 mg/500 mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6432, 'Levoxol G Syrup', 'Adison Pharmaceuticals', 'Levoxol G Syrup', 'What is Levoxol G Syrup?', 'Levoxol G Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(6433, 'Levoxol G Syrup', 'Adison Pharmaceuticals', 'Levoxol G Syrup', 'Is it safe to use Levoxol G Syrup?', 'Yes, it is safe to use Levoxol G Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(6434, 'Levoxol G Syrup', 'Adison Pharmaceuticals', 'Levoxol G Syrup', 'Are there any specific contraindications associated with the use of Levoxol G Syrup?', 'Use of Levoxol G Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(6435, 'Levoxol G Syrup', 'Adison Pharmaceuticals', 'Levoxol G Syrup', 'Can the use of Levoxol G Syrup cause dizziness?', 'Yes, the use of Levoxol G Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(6436, 'Levoxol G Syrup', 'Adison Pharmaceuticals', 'Levoxol G Syrup', 'Can the use of Levoxol G Syrup cause diarrhea?', 'Yes, the use of Levoxol G Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(6437, 'Levoxol G Syrup', 'Adison Pharmaceuticals', 'Levoxol G Syrup', 'What are the recommended storage conditions for Levoxol G Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(6438, 'Levoxol Syrup', 'Richfaith Pharmaceuticals', 'Levoxol Syrup', 'What is Levoxol Syrup?', 'Levoxol Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(6439, 'Levoxol Syrup', 'Richfaith Pharmaceuticals', 'Levoxol Syrup', 'Is it safe to use Levoxol Syrup?', 'Yes, it is safe to use Levoxol Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(6440, 'Levoxol Syrup', 'Richfaith Pharmaceuticals', 'Levoxol Syrup', 'Are there any specific contraindications associated with the use of Levoxol Syrup?', 'Use of Levoxol Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(6441, 'Levoxol Syrup', 'Richfaith Pharmaceuticals', 'Levoxol Syrup', 'Can the use of Levoxol Syrup cause dizziness?', 'Yes, the use of Levoxol Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(6442, 'Levoxol Syrup', 'Richfaith Pharmaceuticals', 'Levoxol Syrup', 'Can the use of Levoxol Syrup cause diarrhea?', 'Yes, the use of Levoxol Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(6443, 'Levoxol Syrup', 'Richfaith Pharmaceuticals', 'Levoxol Syrup', 'What are the recommended storage conditions for Levoxol Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(6444, 'Levoxor 500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Levoxor 500mg Tablet', 'Is Levoxor 500mg Tablet safe?', 'Levoxor 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6445, 'Levoxor 500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Levoxor 500mg Tablet', 'What if I forget to take a dose of Levoxor 500mg Tablet?', 'If you forget a dose of Levoxor 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6446, 'Levoxor 500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Levoxor 500mg Tablet', 'Can the use of Levoxor 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxor 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6447, 'Levoxor 500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Levoxor 500mg Tablet', 'Can I stop taking Levoxor 500mg Tablet when I feel better?', 'No, do not stop taking Levoxor 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxor 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxor 500mg Tablet in the dose and duration advised by the doctor.'),
(6448, 'Levoxor 500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Levoxor 500mg Tablet', 'Can the use of Levoxor 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxor 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxor 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6449, 'Levoxor OZ Syrup', 'Trireme Life Sciences Pvt Ltd', 'Levoxor OZ Syrup', 'What if I don\'t get better after using Levoxor OZ Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6450, 'Levoxor OZ Syrup', 'Trireme Life Sciences Pvt Ltd', 'Levoxor OZ Syrup', 'Can I stop taking Levoxor OZ Syrup when I feel better?', 'No, do not stop taking Levoxor OZ Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6451, 'Levoxor OZ Syrup', 'Trireme Life Sciences Pvt Ltd', 'Levoxor OZ Syrup', 'What if I miss my dose?', 'Take Levoxor OZ Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6452, 'Levoxy 250mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 250mg Tablet', 'Is Levoxy 250mg Tablet safe?', 'Levoxy 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6453, 'Levoxy 250mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 250mg Tablet', 'What if I forget to take a dose of Levoxy 250mg Tablet?', 'If you forget a dose of Levoxy 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6454, 'Levoxy 250mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 250mg Tablet', 'Can the use of Levoxy 250mg Tablet cause diarrhea?', 'Yes, the use of Levoxy 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6455, 'Levoxy 250mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 250mg Tablet', 'Can I stop taking Levoxy 250mg Tablet when I feel better?', 'No, do not stop taking Levoxy 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxy 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxy 250mg Tablet in the dose and duration advised by the doctor.'),
(6456, 'Levoxy 250mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 250mg Tablet', 'Can the use of Levoxy 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxy 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxy 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6457, 'Levoxy 500mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 500mg Tablet', 'Is Levoxy 500mg Tablet safe?', 'Levoxy 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6458, 'Levoxy 500mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 500mg Tablet', 'What if I forget to take a dose of Levoxy 500mg Tablet?', 'If you forget a dose of Levoxy 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6459, 'Levoxy 500mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 500mg Tablet', 'Can the use of Levoxy 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxy 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6460, 'Levoxy 500mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 500mg Tablet', 'Can I stop taking Levoxy 500mg Tablet when I feel better?', 'No, do not stop taking Levoxy 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxy 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxy 500mg Tablet in the dose and duration advised by the doctor.'),
(6461, 'Levoxy 500mg Tablet', 'Vega Laboratories Pvt Ltd', 'Levoxy 500mg Tablet', 'Can the use of Levoxy 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxy 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxy 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6462, 'Levoxyn 500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn 500mg Tablet', 'Is Levoxyn 500mg Tablet safe?', 'Levoxyn 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6463, 'Levoxyn 500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn 500mg Tablet', 'What if I forget to take a dose of Levoxyn 500mg Tablet?', 'If you forget a dose of Levoxyn 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6464, 'Levoxyn 500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn 500mg Tablet', 'Can the use of Levoxyn 500mg Tablet cause diarrhea?', 'Yes, the use of Levoxyn 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6465, 'Levoxyn 500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn 500mg Tablet', 'Can I stop taking Levoxyn 500mg Tablet when I feel better?', 'No, do not stop taking Levoxyn 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoxyn 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoxyn 500mg Tablet in the dose and duration advised by the doctor.'),
(6466, 'Levoxyn 500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn 500mg Tablet', 'Can the use of Levoxyn 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoxyn 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoxyn 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6467, 'Levoxyn OZ 250mg/500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levoxyn OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6468, 'Levoxyn OZ 250mg/500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn OZ 250mg/500mg Tablet', 'Can I stop taking Levoxyn OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levoxyn OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6469, 'Levoxyn OZ 250mg/500mg Tablet', 'Egzeon Pharmaceuticals Pvt Ltd', 'Levoxyn OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levoxyn OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6470, 'Levoyazin M 5mg/10mg Tablet', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M 5mg/10mg Tablet', 'What is Levoyazin M 5mg/10mg Tablet?', 'Levoyazin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6471, 'Levoyazin M 5mg/10mg Tablet', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M 5mg/10mg Tablet', 'Can the use of Levoyazin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoyazin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6472, 'Levoyazin M 5mg/10mg Tablet', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M 5mg/10mg Tablet', 'Can Levoyazin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levoyazin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6473, 'Levoyazin M 5mg/10mg Tablet', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M 5mg/10mg Tablet', 'Can the use of Levoyazin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levoyazin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6474, 'Levoyazin M 5mg/10mg Tablet', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levoyazin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levoyazin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoyazin M 5mg/10mg Tablet.'),
(6475, 'Levoyazin M 5mg/10mg Tablet', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M 5mg/10mg Tablet', 'Will Levoyazin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoyazin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6476, 'Levoyazin M 5mg/10mg Tablet', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levoyazin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6477, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6478, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'Can I decrease the dose of Levoyazin M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6479, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'How should Levoyazin M Syrup be stored?', 'Levoyazin M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6480, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'Can Levoyazin M Syrup make my child sleepy?', 'Levoyazin M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6481, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoyazin M Syrup?', 'No, don’t start Levoyazin M Syrup without speaking to your child’s doctor. Moreover, Levoyazin M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6482, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoyazin M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6483, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoyazin M Syrup to my child?', 'Some studies show that Levoyazin M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6484, 'Levoyazin M Syrup', 'Yaxon BioCare Pvt Ltd', 'Levoyazin M Syrup', 'Can I use Levoyazin M Syrup for treating acute asthma attacks in my child?', 'Levoyazin M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6485, 'Levoyet 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 10mg Tablet', 'Is Levoyet 10mg Tablet a steroid? What is it used for?', 'No, Levoyet 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6486, 'Levoyet 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 10mg Tablet', 'Does Levoyet 10mg Tablet make you tired and drowsy?', 'Yes, Levoyet 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6487, 'Levoyet 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 10mg Tablet', 'How long does it take for Levoyet 10mg Tablet to work?', 'Levoyet 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6488, 'Levoyet 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 10mg Tablet', 'Can I take Levoyet 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoyet 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6489, 'Levoyet 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 10mg Tablet', 'Is it safe to take Levoyet 10mg Tablet for a long time?', 'Levoyet 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoyet 10mg Tablet for only as long as you need it.'),
(6490, 'Levoyet 10mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 10mg Tablet', 'For how long should I continue Levoyet 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoyet 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoyet 10mg Tablet'),
(6491, 'Levoyet 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 5mg Tablet', 'Is Levoyet 5mg Tablet a steroid? What is it used for?', 'No, Levoyet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6492, 'Levoyet 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 5mg Tablet', 'Does Levoyet 5mg Tablet make you tired and drowsy?', 'Yes, Levoyet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6493, 'Levoyet 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 5mg Tablet', 'How long does it take for Levoyet 5mg Tablet to work?', 'Levoyet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6494, 'Levoyet 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 5mg Tablet', 'Can I take Levoyet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoyet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6495, 'Levoyet 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 5mg Tablet', 'Is it safe to take Levoyet 5mg Tablet for a long time?', 'Levoyet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoyet 5mg Tablet for only as long as you need it.'),
(6496, 'Levoyet 5mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Levoyet 5mg Tablet', 'For how long should I continue Levoyet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoyet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoyet 5mg Tablet'),
(6497, 'Levoyug 500mg Tablet', 'Yug Pharmaceuticals', 'Levoyug 500mg Tablet', 'Is Levoyug 500mg Tablet safe?', 'Levoyug 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6498, 'Levoyug 500mg Tablet', 'Yug Pharmaceuticals', 'Levoyug 500mg Tablet', 'What if I forget to take a dose of Levoyug 500mg Tablet?', 'If you forget a dose of Levoyug 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6499, 'Levoyug 500mg Tablet', 'Yug Pharmaceuticals', 'Levoyug 500mg Tablet', 'Can the use of Levoyug 500mg Tablet cause diarrhea?', 'Yes, the use of Levoyug 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6500, 'Levoyug 500mg Tablet', 'Yug Pharmaceuticals', 'Levoyug 500mg Tablet', 'Can I stop taking Levoyug 500mg Tablet when I feel better?', 'No, do not stop taking Levoyug 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoyug 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoyug 500mg Tablet in the dose and duration advised by the doctor.'),
(6501, 'Levoyug 500mg Tablet', 'Yug Pharmaceuticals', 'Levoyug 500mg Tablet', 'Can the use of Levoyug 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoyug 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoyug 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6502, 'Levoyukt 5 Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt 5 Tablet', 'Is Levoyukt 5 Tablet a steroid? What is it used for?', 'No, Levoyukt 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6503, 'Levoyukt 5 Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt 5 Tablet', 'Does Levoyukt 5 Tablet make you tired and drowsy?', 'Yes, Levoyukt 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6504, 'Levoyukt 5 Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt 5 Tablet', 'How long does it take for Levoyukt 5 Tablet to work?', 'Levoyukt 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6505, 'Levoyukt 5 Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt 5 Tablet', 'Can I take Levoyukt 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoyukt 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6506, 'Levoyukt 5 Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt 5 Tablet', 'Is it safe to take Levoyukt 5 Tablet for a long time?', 'Levoyukt 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoyukt 5 Tablet for only as long as you need it.'),
(6507, 'Levoyukt 5 Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt 5 Tablet', 'For how long should I continue Levoyukt 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoyukt 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoyukt 5 Tablet'),
(6508, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6509, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'Can I decrease the dose of Levoyukt-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6510, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'How should Levoyukt-M Syrup be stored?', 'Levoyukt-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6511, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'Can Levoyukt-M Syrup make my child sleepy?', 'Levoyukt-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6512, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoyukt-M Syrup?', 'No, don’t start Levoyukt-M Syrup without speaking to your child’s doctor. Moreover, Levoyukt-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6513, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoyukt-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6514, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levoyukt-M Syrup to my child?', 'Some studies show that Levoyukt-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6515, 'Levoyukt-M Syrup', 'Avyukt Pharmaceuticals', 'Levoyukt-M Syrup', 'Can I use Levoyukt-M Syrup for treating acute asthma attacks in my child?', 'Levoyukt-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6516, 'Levoyukt-M Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt-M Tablet', 'What is Levoyukt-M Tablet?', 'Levoyukt-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6517, 'Levoyukt-M Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt-M Tablet', 'Can the use of Levoyukt-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoyukt-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6518, 'Levoyukt-M Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt-M Tablet', 'Can Levoyukt-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoyukt-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6519, 'Levoyukt-M Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt-M Tablet', 'Can the use of Levoyukt-M Tablet cause dry mouth?', 'Yes, the use of Levoyukt-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6520, 'Levoyukt-M Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt-M Tablet', 'Can I drink alcohol while taking Levoyukt-M Tablet?', 'No, do not take alcohol while taking Levoyukt-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoyukt-M Tablet.'),
(6521, 'Levoyukt-M Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt-M Tablet', 'Will Levoyukt-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoyukt-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6522, 'Levoyukt-M Tablet', 'Avyukt Pharmaceuticals', 'Levoyukt-M Tablet', 'What are the instructions for storage and disposal of Levoyukt-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6523, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6524, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'Can I decrease the dose of Levoz 2.5mg/5mg Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6525, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'How should Levoz 2.5mg/5mg Tablet DT be stored?', 'Levoz 2.5mg/5mg Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6526, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'Can Levoz 2.5mg/5mg Tablet DT make my child sleepy?', 'Levoz 2.5mg/5mg Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6527, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levoz 2.5mg/5mg Tablet DT?', 'No, don’t start Levoz 2.5mg/5mg Tablet DT without speaking to your child’s doctor. Moreover, Levoz 2.5mg/5mg Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6528, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levoz 2.5mg/5mg Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6529, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'My child is suffering from a mood disorder. Is it safe to give Levoz 2.5mg/5mg Tablet DT to my child?', 'Some studies show that Levoz 2.5mg/5mg Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6530, 'Levoz 2.5mg/5mg Tablet DT', 'Beulah Biomedics Ltd', 'Levoz 2.5mg/5mg Tablet DT', 'Can I use Levoz 2.5mg/5mg Tablet DT for treating acute asthma attacks in my child?', 'Levoz 2.5mg/5mg Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6531, 'Levoz 500mg Infusion', 'Biocore Pharmaceuticals', 'Levoz 500mg Infusion', 'Is Levoz 500mg Infusion safe?', 'Levoz 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6532, 'Levoz 500mg Infusion', 'Biocore Pharmaceuticals', 'Levoz 500mg Infusion', 'Can the use of Levoz 500mg Infusion cause diarrhea?', 'Yes, the use of Levoz 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6533, 'Levoz 500mg Infusion', 'Biocore Pharmaceuticals', 'Levoz 500mg Infusion', 'Can the use of Levoz 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levoz 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoz 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6534, 'Levoz 500mg Infusion', 'Biocore Pharmaceuticals', 'Levoz 500mg Infusion', 'How is Levoz 500mg Infusion administered?', 'Levoz 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levoz 500mg Infusion.'),
(6535, 'Levoz 500mg Infusion', 'Biocore Pharmaceuticals', 'Levoz 500mg Infusion', 'Is Levoz 500mg Infusion effective?', 'Levoz 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levoz 500mg Infusion too early, the symptoms may return or worsen.'),
(6536, 'Levoz 500mg Tablet', 'Biocore Pharmaceuticals', 'Levoz 500mg Tablet', 'Is Levoz 500mg Tablet safe?', 'Levoz 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6537, 'Levoz 500mg Tablet', 'Biocore Pharmaceuticals', 'Levoz 500mg Tablet', 'What if I forget to take a dose of Levoz 500mg Tablet?', 'If you forget a dose of Levoz 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6538, 'Levoz 500mg Tablet', 'Biocore Pharmaceuticals', 'Levoz 500mg Tablet', 'Can the use of Levoz 500mg Tablet cause diarrhea?', 'Yes, the use of Levoz 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6539, 'Levoz 500mg Tablet', 'Biocore Pharmaceuticals', 'Levoz 500mg Tablet', 'Can I stop taking Levoz 500mg Tablet when I feel better?', 'No, do not stop taking Levoz 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoz 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levoz 500mg Tablet in the dose and duration advised by the doctor.'),
(6540, 'Levoz 500mg Tablet', 'Biocore Pharmaceuticals', 'Levoz 500mg Tablet', 'Can the use of Levoz 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levoz 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoz 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6541, 'Levoz 5mg Tablet', 'Ethix Healthcare', 'Levoz 5mg Tablet', 'Is Levoz 5mg Tablet a steroid? What is it used for?', 'No, Levoz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6542, 'Levoz 5mg Tablet', 'Ethix Healthcare', 'Levoz 5mg Tablet', 'Does Levoz 5mg Tablet make you tired and drowsy?', 'Yes, Levoz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6543, 'Levoz 5mg Tablet', 'Ethix Healthcare', 'Levoz 5mg Tablet', 'How long does it take for Levoz 5mg Tablet to work?', 'Levoz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6544, 'Levoz 5mg Tablet', 'Ethix Healthcare', 'Levoz 5mg Tablet', 'Can I take Levoz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levoz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6545, 'Levoz 5mg Tablet', 'Ethix Healthcare', 'Levoz 5mg Tablet', 'Is it safe to take Levoz 5mg Tablet for a long time?', 'Levoz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levoz 5mg Tablet for only as long as you need it.'),
(6546, 'Levoz 5mg Tablet', 'Ethix Healthcare', 'Levoz 5mg Tablet', 'For how long should I continue Levoz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levoz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levoz 5mg Tablet'),
(6547, 'Levozac 500mg Tablet', 'Stanmark Pharmaceuticals', 'Levozac 500mg Tablet', 'Is Levozac 500mg Tablet safe?', 'Levozac 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6548, 'Levozac 500mg Tablet', 'Stanmark Pharmaceuticals', 'Levozac 500mg Tablet', 'What if I forget to take a dose of Levozac 500mg Tablet?', 'If you forget a dose of Levozac 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6549, 'Levozac 500mg Tablet', 'Stanmark Pharmaceuticals', 'Levozac 500mg Tablet', 'Can the use of Levozac 500mg Tablet cause diarrhea?', 'Yes, the use of Levozac 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6550, 'Levozac 500mg Tablet', 'Stanmark Pharmaceuticals', 'Levozac 500mg Tablet', 'Can I stop taking Levozac 500mg Tablet when I feel better?', 'No, do not stop taking Levozac 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozac 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozac 500mg Tablet in the dose and duration advised by the doctor.'),
(6551, 'Levozac 500mg Tablet', 'Stanmark Pharmaceuticals', 'Levozac 500mg Tablet', 'Can the use of Levozac 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozac 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozac 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6552, 'Levozac M 5mg/10mg Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozac M 5mg/10mg Tablet', 'What is Levozac M 5mg/10mg Tablet?', 'Levozac M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6553, 'Levozac M 5mg/10mg Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozac M 5mg/10mg Tablet', 'Can the use of Levozac M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozac M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6554, 'Levozac M 5mg/10mg Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozac M 5mg/10mg Tablet', 'Can Levozac M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozac M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6555, 'Levozac M 5mg/10mg Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozac M 5mg/10mg Tablet', 'Can the use of Levozac M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozac M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6556, 'Levozac M 5mg/10mg Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozac M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levozac M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozac M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozac M 5mg/10mg Tablet.'),
(6557, 'Levozac M 5mg/10mg Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozac M 5mg/10mg Tablet', 'Will Levozac M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozac M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6558, 'Levozac M 5mg/10mg Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozac M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levozac M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6559, 'Levozak M 5mg/10mg Tablet', 'Luziac Life Sciences', 'Levozak M 5mg/10mg Tablet', 'What is Levozak M 5mg/10mg Tablet?', 'Levozak M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6560, 'Levozak M 5mg/10mg Tablet', 'Luziac Life Sciences', 'Levozak M 5mg/10mg Tablet', 'Can the use of Levozak M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozak M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6561, 'Levozak M 5mg/10mg Tablet', 'Luziac Life Sciences', 'Levozak M 5mg/10mg Tablet', 'Can Levozak M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozak M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6562, 'Levozak M 5mg/10mg Tablet', 'Luziac Life Sciences', 'Levozak M 5mg/10mg Tablet', 'Can the use of Levozak M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozak M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6563, 'Levozak M 5mg/10mg Tablet', 'Luziac Life Sciences', 'Levozak M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levozak M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozak M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozak M 5mg/10mg Tablet.'),
(6564, 'Levozak M 5mg/10mg Tablet', 'Luziac Life Sciences', 'Levozak M 5mg/10mg Tablet', 'Will Levozak M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozak M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6565, 'Levozak M 5mg/10mg Tablet', 'Luziac Life Sciences', 'Levozak M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levozak M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6566, 'Levozal M 5mg/10mg Kid Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Kid Tablet', 'What is Levozal M 5mg/10mg Kid Tablet?', 'Levozal M 5mg/10mg Kid Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6567, 'Levozal M 5mg/10mg Kid Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Kid Tablet', 'Can the use of Levozal M 5mg/10mg Kid Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozal M 5mg/10mg Kid Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6568, 'Levozal M 5mg/10mg Kid Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Kid Tablet', 'Can Levozal M 5mg/10mg Kid Tablet be stopped when allergy symptoms are relieved?', 'No, Levozal M 5mg/10mg Kid Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6569, 'Levozal M 5mg/10mg Kid Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Kid Tablet', 'Can the use of Levozal M 5mg/10mg Kid Tablet cause dry mouth?', 'Yes, the use of Levozal M 5mg/10mg Kid Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6570, 'Levozal M 5mg/10mg Kid Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Kid Tablet', 'Can I drink alcohol while taking Levozal M 5mg/10mg Kid Tablet?', 'No, do not take alcohol while taking Levozal M 5mg/10mg Kid Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozal M 5mg/10mg Kid Tablet.'),
(6571, 'Levozal M 5mg/10mg Kid Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Kid Tablet', 'Will Levozal M 5mg/10mg Kid Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozal M 5mg/10mg Kid Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6572, 'Levozal M 5mg/10mg Kid Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Kid Tablet', 'What are the instructions for storage and disposal of Levozal M 5mg/10mg Kid Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6573, 'Levozal M 5mg/10mg Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Tablet', 'What is Levozal M 5mg/10mg Tablet?', 'Levozal M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6574, 'Levozal M 5mg/10mg Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Tablet', 'Can the use of Levozal M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozal M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6575, 'Levozal M 5mg/10mg Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Tablet', 'Can Levozal M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozal M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6576, 'Levozal M 5mg/10mg Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Tablet', 'Can the use of Levozal M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozal M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6577, 'Levozal M 5mg/10mg Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levozal M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozal M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozal M 5mg/10mg Tablet.'),
(6578, 'Levozal M 5mg/10mg Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Tablet', 'Will Levozal M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozal M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6579, 'Levozal M 5mg/10mg Tablet', 'Maxell Pharma Pvt Ltd', 'Levozal M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levozal M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6580, 'Levozane 1% Cream', 'Biovec Lifesciences', 'Levozane 1% Cream', 'Is Levozane 1% Cream safe in pregnancy?', 'Levozane 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Levozane 1% Cream.'),
(6581, 'Levozane 1% Cream', 'Biovec Lifesciences', 'Levozane 1% Cream', 'Is Levozane 1% Cream fungicidal or Fungistatic?', 'Levozane 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(6582, 'Levozane 1% Cream', 'Biovec Lifesciences', 'Levozane 1% Cream', 'How to use Levozane 1% Cream?', 'Use Levozane 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(6583, 'Levozane 1% Cream', 'Biovec Lifesciences', 'Levozane 1% Cream', 'How long does it take for Levozane 1% Cream to work?', 'For different ailments, Levozane 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(6584, 'Levozane 1% Cream', 'Biovec Lifesciences', 'Levozane 1% Cream', 'How should I store Levozane 1% Cream?', 'Keep Levozane 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(6585, 'Levozane 1% Cream', 'Biovec Lifesciences', 'Levozane 1% Cream', 'Is Levozane 1% Cream safe to use in children?', 'Yes, Levozane 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(6586, 'Levozane 250mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 250mg Tablet', 'Is Levozane 250mg Tablet safe?', 'Levozane 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6587, 'Levozane 250mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 250mg Tablet', 'What if I forget to take a dose of Levozane 250mg Tablet?', 'If you forget a dose of Levozane 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6588, 'Levozane 250mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 250mg Tablet', 'Can the use of Levozane 250mg Tablet cause diarrhea?', 'Yes, the use of Levozane 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6589, 'Levozane 250mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 250mg Tablet', 'Can I stop taking Levozane 250mg Tablet when I feel better?', 'No, do not stop taking Levozane 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozane 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levozane 250mg Tablet in the dose and duration advised by the doctor.'),
(6590, 'Levozane 250mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 250mg Tablet', 'Can the use of Levozane 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozane 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozane 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6591, 'Levozane 500mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 500mg Tablet', 'Is Levozane 500mg Tablet safe?', 'Levozane 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6592, 'Levozane 500mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 500mg Tablet', 'What if I forget to take a dose of Levozane 500mg Tablet?', 'If you forget a dose of Levozane 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6593, 'Levozane 500mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 500mg Tablet', 'Can the use of Levozane 500mg Tablet cause diarrhea?', 'Yes, the use of Levozane 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6594, 'Levozane 500mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 500mg Tablet', 'Can I stop taking Levozane 500mg Tablet when I feel better?', 'No, do not stop taking Levozane 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozane 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozane 500mg Tablet in the dose and duration advised by the doctor.'),
(6595, 'Levozane 500mg Tablet', 'Cezane Remedies Pvt Ltd', 'Levozane 500mg Tablet', 'Can the use of Levozane 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozane 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozane 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6596, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6597, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. Can I decrease the dose of Levozar-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6598, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. How should Levozar-M Syrup be stored?', 'Levozar-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6599, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. Can Levozar-M Syrup make my child sleepy?', 'Levozar-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6600, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levozar-M Syrup?', 'No, don’t start Levozar-M Syrup without speaking to your child’s doctor. Moreover, Levozar-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6601, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levozar-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6602, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. My child is suffering from a mood disorder. Is it safe to give Levozar-M Syrup to my child?', 'Some studies show that Levozar-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6603, 'Levozar-M Syrup', 'Zargan Healthcare', 'Levozar-M Syrup', 'Q. Can I use Levozar-M Syrup for treating acute asthma attacks in my child?', 'Levozar-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6604, 'Levozeal Tablet', 'Punjab Formulations Ltd', 'Levozeal Tablet', 'Is Levozeal Tablet a steroid? What is it used for?', 'No, Levozeal Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6605, 'Levozeal Tablet', 'Punjab Formulations Ltd', 'Levozeal Tablet', 'Does Levozeal Tablet make you tired and drowsy?', 'Yes, Levozeal Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6606, 'Levozeal Tablet', 'Punjab Formulations Ltd', 'Levozeal Tablet', 'How long does it take for Levozeal Tablet to work?', 'Levozeal Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6607, 'Levozeal Tablet', 'Punjab Formulations Ltd', 'Levozeal Tablet', 'Can I take Levozeal Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozeal Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6608, 'Levozeal Tablet', 'Punjab Formulations Ltd', 'Levozeal Tablet', 'Is it safe to take Levozeal Tablet for a long time?', 'Levozeal Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozeal Tablet for only as long as you need it.'),
(6609, 'Levozeal Tablet', 'Punjab Formulations Ltd', 'Levozeal Tablet', 'For how long should I continue Levozeal Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozeal Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozeal Tablet'),
(6610, 'Levozec-FX Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-FX Tablet', 'What is Levozec-FX Tablet ?', 'Levozec-FX Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(6611, 'Levozec-FX Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-FX Tablet', 'Can Levozec-FX Tablet be stopped when allergy symptoms are relieved?', 'No, Levozec-FX Tablet should be continued as advised by the doctor. If any problems are experienced due to Levozec-FX Tablet, consult the doctor for re-evaluation.'),
(6612, 'Levozec-FX Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-FX Tablet', 'Can the use of Levozec-FX Tablet cause dizziness?', 'Yes, the use of Levozec-FX Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(6613, 'Levozec-FX Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-FX Tablet', 'What should be avoided in food while taking Levozec-FX Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levozec-FX Tablet as it might increase the severity of drowsiness or sleepiness caused by Levozec-FX Tablet.'),
(6614, 'Levozec-FX Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-FX Tablet', 'Will Levozec-FX Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6615, 'Levozec-FX Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-FX Tablet', 'What is the recommended storage condition for Levozec-FX Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(6616, 'Levozec-M Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-M Tablet', 'What is Levozec-M Tablet?', 'Levozec-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6617, 'Levozec-M Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-M Tablet', 'Can the use of Levozec-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozec-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6618, 'Levozec-M Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-M Tablet', 'Can Levozec-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levozec-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6619, 'Levozec-M Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-M Tablet', 'Can the use of Levozec-M Tablet cause dry mouth?', 'Yes, the use of Levozec-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6620, 'Levozec-M Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-M Tablet', 'Can I drink alcohol while taking Levozec-M Tablet?', 'No, do not take alcohol while taking Levozec-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozec-M Tablet.'),
(6621, 'Levozec-M Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-M Tablet', 'Will Levozec-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozec-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6622, 'Levozec-M Tablet', 'Mrl Pharma Opc Pvt Ltd', 'Levozec-M Tablet', 'What are the instructions for storage and disposal of Levozec-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6623, 'Levozed 500 Tablet', 'Medivaxia Pharma', 'Levozed 500 Tablet', 'Is Levozed 500 Tablet safe?', 'Levozed 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6624, 'Levozed 500 Tablet', 'Medivaxia Pharma', 'Levozed 500 Tablet', 'What if I forget to take a dose of Levozed 500 Tablet?', 'If you forget a dose of Levozed 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6625, 'Levozed 500 Tablet', 'Medivaxia Pharma', 'Levozed 500 Tablet', 'Can the use of Levozed 500 Tablet cause diarrhea?', 'Yes, the use of Levozed 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6626, 'Levozed 500 Tablet', 'Medivaxia Pharma', 'Levozed 500 Tablet', 'Can I stop taking Levozed 500 Tablet when I feel better?', 'No, do not stop taking Levozed 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozed 500 Tablet too early, the symptoms may return or worsen. Continue taking Levozed 500 Tablet in the dose and duration advised by the doctor.'),
(6627, 'Levozed 500 Tablet', 'Medivaxia Pharma', 'Levozed 500 Tablet', 'Can the use of Levozed 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levozed 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozed 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6628, 'Levozee 500mg Tablet', 'Gopal Lifesciences', 'Levozee 500mg Tablet', 'Is Levozee 500mg Tablet safe?', 'Levozee 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6629, 'Levozee 500mg Tablet', 'Gopal Lifesciences', 'Levozee 500mg Tablet', 'What if I forget to take a dose of Levozee 500mg Tablet?', 'If you forget a dose of Levozee 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6630, 'Levozee 500mg Tablet', 'Gopal Lifesciences', 'Levozee 500mg Tablet', 'Can the use of Levozee 500mg Tablet cause diarrhea?', 'Yes, the use of Levozee 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6631, 'Levozee 500mg Tablet', 'Gopal Lifesciences', 'Levozee 500mg Tablet', 'Can I stop taking Levozee 500mg Tablet when I feel better?', 'No, do not stop taking Levozee 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozee 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozee 500mg Tablet in the dose and duration advised by the doctor.'),
(6632, 'Levozee 500mg Tablet', 'Gopal Lifesciences', 'Levozee 500mg Tablet', 'Can the use of Levozee 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozee 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozee 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6633, 'Levozeg 500 Tablet', 'Zegchem', 'Levozeg 500 Tablet', 'Is Levozeg 500 Tablet safe?', 'Levozeg 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6634, 'Levozeg 500 Tablet', 'Zegchem', 'Levozeg 500 Tablet', 'What if I forget to take a dose of Levozeg 500 Tablet?', 'If you forget a dose of Levozeg 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6635, 'Levozeg 500 Tablet', 'Zegchem', 'Levozeg 500 Tablet', 'Can the use of Levozeg 500 Tablet cause diarrhea?', 'Yes, the use of Levozeg 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6636, 'Levozeg 500 Tablet', 'Zegchem', 'Levozeg 500 Tablet', 'Can I stop taking Levozeg 500 Tablet when I feel better?', 'No, do not stop taking Levozeg 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozeg 500 Tablet too early, the symptoms may return or worsen. Continue taking Levozeg 500 Tablet in the dose and duration advised by the doctor.'),
(6637, 'Levozeg 500 Tablet', 'Zegchem', 'Levozeg 500 Tablet', 'Can the use of Levozeg 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levozeg 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozeg 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6638, 'Levozen 500mg Tablet', 'Ethix Healthcare', 'Levozen 500mg Tablet (Ethix Healthcare)', 'Is Levozen 500mg Tablet safe?', 'Levozen 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6639, 'Levozen 500mg Tablet', 'Ethix Healthcare', 'Levozen 500mg Tablet (Ethix Healthcare)', 'What if I forget to take a dose of Levozen 500mg Tablet?', 'If you forget a dose of Levozen 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6640, 'Levozen 500mg Tablet', 'Ethix Healthcare', 'Levozen 500mg Tablet (Ethix Healthcare)', 'Can the use of Levozen 500mg Tablet cause diarrhea?', 'Yes, the use of Levozen 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6641, 'Levozen 500mg Tablet', 'Ethix Healthcare', 'Levozen 500mg Tablet (Ethix Healthcare)', 'Can I stop taking Levozen 500mg Tablet when I feel better?', 'No, do not stop taking Levozen 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozen 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozen 500mg Tablet in the dose and duration advised by the doctor.'),
(6642, 'Levozen 500mg Tablet', 'Ethix Healthcare', 'Levozen 500mg Tablet (Ethix Healthcare)', 'Can the use of Levozen 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozen 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozen 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6643, 'Levozen 500mg Tablet', 'Healthkey Lifescience Pvt. Ltd.', 'Levozen 500mg Tablet (Healthkey Lifescience Pvt. Ltd.)', 'Is Levozen 500mg Tablet safe?', 'Levozen 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6644, 'Levozen 500mg Tablet', 'Healthkey Lifescience Pvt. Ltd.', 'Levozen 500mg Tablet (Healthkey Lifescience Pvt. Ltd.)', 'What if I forget to take a dose of Levozen 500mg Tablet?', 'If you forget a dose of Levozen 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6645, 'Levozen 500mg Tablet', 'Healthkey Lifescience Pvt. Ltd.', 'Levozen 500mg Tablet (Healthkey Lifescience Pvt. Ltd.)', 'Can the use of Levozen 500mg Tablet cause diarrhea?', 'Yes, the use of Levozen 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6646, 'Levozen 500mg Tablet', 'Healthkey Lifescience Pvt. Ltd.', 'Levozen 500mg Tablet (Healthkey Lifescience Pvt. Ltd.)', 'Can I stop taking Levozen 500mg Tablet when I feel better?', 'No, do not stop taking Levozen 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozen 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozen 500mg Tablet in the dose and duration advised by the doctor.'),
(6647, 'Levozen 500mg Tablet', 'Healthkey Lifescience Pvt. Ltd.', 'Levozen 500mg Tablet (Healthkey Lifescience Pvt. Ltd.)', 'Can the use of Levozen 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozen 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozen 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6648, 'Levozen M Tablet', 'Zeno Healthcare', 'Levozen M Tablet', 'What is Levozen M Tablet?', 'Levozen M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6649, 'Levozen M Tablet', 'Zeno Healthcare', 'Levozen M Tablet', 'Can the use of Levozen M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozen M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6650, 'Levozen M Tablet', 'Zeno Healthcare', 'Levozen M Tablet', 'Can Levozen M Tablet be stopped when allergy symptoms are relieved?', 'No, Levozen M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6651, 'Levozen M Tablet', 'Zeno Healthcare', 'Levozen M Tablet', 'Can the use of Levozen M Tablet cause dry mouth?', 'Yes, the use of Levozen M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6652, 'Levozen M Tablet', 'Zeno Healthcare', 'Levozen M Tablet', 'Can I drink alcohol while taking Levozen M Tablet?', 'No, do not take alcohol while taking Levozen M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozen M Tablet.'),
(6653, 'Levozen M Tablet', 'Zeno Healthcare', 'Levozen M Tablet', 'Will Levozen M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozen M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6654, 'Levozen M Tablet', 'Zeno Healthcare', 'Levozen M Tablet', 'What are the instructions for storage and disposal of Levozen M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6655, 'Levozer 500mg Infusion', 'Apcon Remedies', 'Levozer 500mg Infusion', 'Is Levozer 500mg Infusion safe?', 'Levozer 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6656, 'Levozer 500mg Infusion', 'Apcon Remedies', 'Levozer 500mg Infusion', 'Can the use of Levozer 500mg Infusion cause diarrhea?', 'Yes, the use of Levozer 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6657, 'Levozer 500mg Infusion', 'Apcon Remedies', 'Levozer 500mg Infusion', 'Can the use of Levozer 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Levozer 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozer 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6658, 'Levozer 500mg Infusion', 'Apcon Remedies', 'Levozer 500mg Infusion', 'How is Levozer 500mg Infusion administered?', 'Levozer 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levozer 500mg Infusion.'),
(6659, 'Levozer 500mg Infusion', 'Apcon Remedies', 'Levozer 500mg Infusion', 'Is Levozer 500mg Infusion effective?', 'Levozer 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levozer 500mg Infusion too early, the symptoms may return or worsen.'),
(6660, 'Levozet 2.5mg Suspension', 'Cadila Pharmaceuticals Ltd', 'Levozet 2.5mg Suspension', 'My child is restless and unable to sleep properly at night. Can I give Levozet 2.5mg Suspension?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(6661, 'Levozet 2.5mg Suspension', 'Cadila Pharmaceuticals Ltd', 'Levozet 2.5mg Suspension', 'Can other medicines be given at the same time as Levozet 2.5mg Suspension?', 'Levozet 2.5mg Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levozet 2.5mg Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(6662, 'Levozet 2.5mg Suspension', 'Cadila Pharmaceuticals Ltd', 'Levozet 2.5mg Suspension', 'How much Levozet 2.5mg Suspension should I give to my child?', 'Levozet 2.5mg Suspension should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(6663, 'Levozet 2.5mg Suspension', 'Cadila Pharmaceuticals Ltd', 'Levozet 2.5mg Suspension', 'What if I give too much of Levozet 2.5mg Suspension by mistake?', 'Although Levozet 2.5mg Suspension is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(6664, 'Levozet 2.5mg Suspension', 'Cadila Pharmaceuticals Ltd', 'Levozet 2.5mg Suspension', 'How should Levozet 2.5mg Suspension be stored?', 'Store Levozet 2.5mg Suspension at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6665, 'Levozet 2.5mg Suspension', 'Cadila Pharmaceuticals Ltd', 'Levozet 2.5mg Suspension', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(6666, 'Levozet AM 75mg/5mg/10mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet AM 75mg/5mg/10mg Tablet', 'Can the use of Levozet AM 75mg/5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozet AM 75mg/5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(6667, 'Levozet AM 75mg/5mg/10mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet AM 75mg/5mg/10mg Tablet', 'Can I use Levozet AM 75mg/5mg/10mg Tablet while breastfeeding?', 'No, Levozet AM 75mg/5mg/10mg Tablet should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(6668, 'Levozet AM 75mg/5mg/10mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet AM 75mg/5mg/10mg Tablet', 'Can I drink alcohol while taking Levozet AM 75mg/5mg/10mg Tablet?', 'No, avoid drinking alcohol while taking Levozet AM 75mg/5mg/10mg Tablet. Drinking alcohol will increase the risk of serious side effects caused by Levozet AM 75mg/5mg/10mg Tablet.'),
(6669, 'Levozet AM 75mg/5mg/10mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet AM 75mg/5mg/10mg Tablet', 'What are the instructions for the storage and disposal of Levozet AM 75mg/5mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(6670, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6671, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'Can I decrease the dose of Levozet M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6672, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'How should Levozet M Syrup be stored?', 'Levozet M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6673, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'Can Levozet M Syrup make my child sleepy?', 'Levozet M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6674, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levozet M Syrup?', 'No, don’t start Levozet M Syrup without speaking to your child’s doctor. Moreover, Levozet M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6675, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levozet M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6676, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levozet M Syrup to my child?', 'Some studies show that Levozet M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6677, 'Levozet M Syrup', 'Cadila Pharmaceuticals Ltd', 'Levozet M Syrup', 'Can I use Levozet M Syrup for treating acute asthma attacks in my child?', 'Levozet M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6678, 'Levozet M Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet M Tablet', 'What is Levozet M Tablet?', 'Levozet M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6679, 'Levozet M Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet M Tablet', 'Can the use of Levozet M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozet M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6680, 'Levozet M Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet M Tablet', 'Can Levozet M Tablet be stopped when allergy symptoms are relieved?', 'No, Levozet M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6681, 'Levozet M Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet M Tablet', 'Can the use of Levozet M Tablet cause dry mouth?', 'Yes, the use of Levozet M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6682, 'Levozet M Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet M Tablet', 'Can I drink alcohol while taking Levozet M Tablet?', 'No, do not take alcohol while taking Levozet M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozet M Tablet.'),
(6683, 'Levozet M Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet M Tablet', 'Will Levozet M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozet M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6684, 'Levozet M Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet M Tablet', 'What are the instructions for storage and disposal of Levozet M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6685, 'Levozet Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet Tablet (Cadila Pharmaceuticals Ltd)', 'Is Levozet Tablet a steroid? What is it used for?', 'No, Levozet Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6686, 'Levozet Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet Tablet (Cadila Pharmaceuticals Ltd)', 'Does Levozet Tablet make you tired and drowsy?', 'Yes, Levozet Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6687, 'Levozet Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet Tablet (Cadila Pharmaceuticals Ltd)', 'How long does it take for Levozet Tablet to work?', 'Levozet Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6688, 'Levozet Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet Tablet (Cadila Pharmaceuticals Ltd)', 'Can I take Levozet Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozet Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6689, 'Levozet Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet Tablet (Cadila Pharmaceuticals Ltd)', 'Is it safe to take Levozet Tablet for a long time?', 'Levozet Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozet Tablet for only as long as you need it.'),
(6690, 'Levozet Tablet', 'Cadila Pharmaceuticals Ltd', 'Levozet Tablet (Cadila Pharmaceuticals Ltd)', 'For how long should I continue Levozet Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozet Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozet Tablet'),
(6691, 'Levozet Tablet', 'Medicowin Remedies (P) Ltd', 'Levozet Tablet (Medicowin Remedies (P) Ltd)', 'Is Levozet Tablet a steroid? What is it used for?', 'No, Levozet Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6692, 'Levozet Tablet', 'Medicowin Remedies (P) Ltd', 'Levozet Tablet (Medicowin Remedies (P) Ltd)', 'Does Levozet Tablet make you tired and drowsy?', 'Yes, Levozet Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6693, 'Levozet Tablet', 'Medicowin Remedies (P) Ltd', 'Levozet Tablet (Medicowin Remedies (P) Ltd)', 'How long does it take for Levozet Tablet to work?', 'Levozet Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6694, 'Levozet Tablet', 'Medicowin Remedies (P) Ltd', 'Levozet Tablet (Medicowin Remedies (P) Ltd)', 'Can I take Levozet Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozet Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6695, 'Levozet Tablet', 'Medicowin Remedies (P) Ltd', 'Levozet Tablet (Medicowin Remedies (P) Ltd)', 'Is it safe to take Levozet Tablet for a long time?', 'Levozet Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozet Tablet for only as long as you need it.'),
(6696, 'Levozet Tablet', 'Medicowin Remedies (P) Ltd', 'Levozet Tablet (Medicowin Remedies (P) Ltd)', 'For how long should I continue Levozet Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozet Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozet Tablet'),
(6697, 'Levozic 5mg Tablet', 'Nexus India', 'Levozic 5mg Tablet', 'Is Levozic 5mg Tablet a steroid? What is it used for?', 'No, Levozic 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6698, 'Levozic 5mg Tablet', 'Nexus India', 'Levozic 5mg Tablet', 'Does Levozic 5mg Tablet make you tired and drowsy?', 'Yes, Levozic 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6699, 'Levozic 5mg Tablet', 'Nexus India', 'Levozic 5mg Tablet', 'How long does it take for Levozic 5mg Tablet to work?', 'Levozic 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6700, 'Levozic 5mg Tablet', 'Nexus India', 'Levozic 5mg Tablet', 'Can I take Levozic 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozic 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6701, 'Levozic 5mg Tablet', 'Nexus India', 'Levozic 5mg Tablet', 'Is it safe to take Levozic 5mg Tablet for a long time?', 'Levozic 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozic 5mg Tablet for only as long as you need it.'),
(6702, 'Levozic 5mg Tablet', 'Nexus India', 'Levozic 5mg Tablet', 'For how long should I continue Levozic 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozic 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozic 5mg Tablet'),
(6703, 'Levozid 250mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 250mg Tablet', 'Is Levozid 250mg Tablet safe?', 'Levozid 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6704, 'Levozid 250mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 250mg Tablet', 'What if I forget to take a dose of Levozid 250mg Tablet?', 'If you forget a dose of Levozid 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6705, 'Levozid 250mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 250mg Tablet', 'Can the use of Levozid 250mg Tablet cause diarrhea?', 'Yes, the use of Levozid 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6706, 'Levozid 250mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 250mg Tablet', 'Can I stop taking Levozid 250mg Tablet when I feel better?', 'No, do not stop taking Levozid 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozid 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levozid 250mg Tablet in the dose and duration advised by the doctor.'),
(6707, 'Levozid 250mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 250mg Tablet', 'Can the use of Levozid 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozid 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozid 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6708, 'Levozid 500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 500mg Tablet', 'Is Levozid 500mg Tablet safe?', 'Levozid 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6709, 'Levozid 500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 500mg Tablet', 'What if I forget to take a dose of Levozid 500mg Tablet?', 'If you forget a dose of Levozid 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6710, 'Levozid 500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 500mg Tablet', 'Can the use of Levozid 500mg Tablet cause diarrhea?', 'Yes, the use of Levozid 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6711, 'Levozid 500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 500mg Tablet', 'Can I stop taking Levozid 500mg Tablet when I feel better?', 'No, do not stop taking Levozid 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozid 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozid 500mg Tablet in the dose and duration advised by the doctor.'),
(6712, 'Levozid 500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid 500mg Tablet', 'Can the use of Levozid 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozid 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozid 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6713, 'Levozid OZ 250mg/500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levozid OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6714, 'Levozid OZ 250mg/500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid OZ 250mg/500mg Tablet', 'Can I stop taking Levozid OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levozid OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6715, 'Levozid OZ 250mg/500mg Tablet', 'Spancer Pharmaceuticals', 'Levozid OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levozid OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6716, 'Levozin 2.5mg/5ml Syrup', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 2.5mg/5ml Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levozin 2.5mg/5ml Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(6717, 'Levozin 2.5mg/5ml Syrup', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 2.5mg/5ml Syrup', 'Can other medicines be given at the same time as Levozin 2.5mg/5ml Syrup?', 'Levozin 2.5mg/5ml Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levozin 2.5mg/5ml Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(6718, 'Levozin 2.5mg/5ml Syrup', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 2.5mg/5ml Syrup', 'How much Levozin 2.5mg/5ml Syrup should I give to my child?', 'Levozin 2.5mg/5ml Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(6719, 'Levozin 2.5mg/5ml Syrup', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 2.5mg/5ml Syrup', 'What if I give too much of Levozin 2.5mg/5ml Syrup by mistake?', 'Although Levozin 2.5mg/5ml Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(6720, 'Levozin 2.5mg/5ml Syrup', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 2.5mg/5ml Syrup', 'How should Levozin 2.5mg/5ml Syrup be stored?', 'Store Levozin 2.5mg/5ml Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6721, 'Levozin 2.5mg/5ml Syrup', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 2.5mg/5ml Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(6722, 'Levozin 5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 5mg Tablet (Moraceae Pharmaceuticals Pvt Ltd)', 'Is Levozin 5mg Tablet a steroid? What is it used for?', 'No, Levozin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6723, 'Levozin 5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 5mg Tablet (Moraceae Pharmaceuticals Pvt Ltd)', 'Does Levozin 5mg Tablet make you tired and drowsy?', 'Yes, Levozin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6724, 'Levozin 5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 5mg Tablet (Moraceae Pharmaceuticals Pvt Ltd)', 'How long does it take for Levozin 5mg Tablet to work?', 'Levozin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6725, 'Levozin 5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 5mg Tablet (Moraceae Pharmaceuticals Pvt Ltd)', 'Can I take Levozin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6726, 'Levozin 5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 5mg Tablet (Moraceae Pharmaceuticals Pvt Ltd)', 'Is it safe to take Levozin 5mg Tablet for a long time?', 'Levozin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozin 5mg Tablet for only as long as you need it.'),
(6727, 'Levozin 5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin 5mg Tablet (Moraceae Pharmaceuticals Pvt Ltd)', 'For how long should I continue Levozin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozin 5mg Tablet'),
(6728, 'Levozin 5mg Tablet', 'Recnal Biomed', 'Levozin 5mg Tablet (Recnal Biomed)', 'Is Levozin 5mg Tablet a steroid? What is it used for?', 'No, Levozin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6729, 'Levozin 5mg Tablet', 'Recnal Biomed', 'Levozin 5mg Tablet (Recnal Biomed)', 'Does Levozin 5mg Tablet make you tired and drowsy?', 'Yes, Levozin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6730, 'Levozin 5mg Tablet', 'Recnal Biomed', 'Levozin 5mg Tablet (Recnal Biomed)', 'How long does it take for Levozin 5mg Tablet to work?', 'Levozin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6731, 'Levozin 5mg Tablet', 'Recnal Biomed', 'Levozin 5mg Tablet (Recnal Biomed)', 'Can I take Levozin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6732, 'Levozin 5mg Tablet', 'Recnal Biomed', 'Levozin 5mg Tablet (Recnal Biomed)', 'Is it safe to take Levozin 5mg Tablet for a long time?', 'Levozin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozin 5mg Tablet for only as long as you need it.'),
(6733, 'Levozin 5mg Tablet', 'Recnal Biomed', 'Levozin 5mg Tablet (Recnal Biomed)', 'For how long should I continue Levozin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozin 5mg Tablet'),
(6734, 'Levozin M 5mg/10mg Tablet', 'Healing India Life Sciences', 'Levozin M 5mg/10mg Tablet (Healing India Life Sciences)', 'What is Levozin M 5mg/10mg Tablet?', 'Levozin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6735, 'Levozin M 5mg/10mg Tablet', 'Healing India Life Sciences', 'Levozin M 5mg/10mg Tablet (Healing India Life Sciences)', 'Can the use of Levozin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6736, 'Levozin M 5mg/10mg Tablet', 'Healing India Life Sciences', 'Levozin M 5mg/10mg Tablet (Healing India Life Sciences)', 'Can Levozin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6737, 'Levozin M 5mg/10mg Tablet', 'Healing India Life Sciences', 'Levozin M 5mg/10mg Tablet (Healing India Life Sciences)', 'Can the use of Levozin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6738, 'Levozin M 5mg/10mg Tablet', 'Healing India Life Sciences', 'Levozin M 5mg/10mg Tablet (Healing India Life Sciences)', 'Can I drink alcohol while taking Levozin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozin M 5mg/10mg Tablet.'),
(6739, 'Levozin M 5mg/10mg Tablet', 'Healing India Life Sciences', 'Levozin M 5mg/10mg Tablet (Healing India Life Sciences)', 'Will Levozin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6740, 'Levozin M 5mg/10mg Tablet', 'Healing India Life Sciences', 'Levozin M 5mg/10mg Tablet (Healing India Life Sciences)', 'What are the instructions for storage and disposal of Levozin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6741, 'Levozin M 5mg/10mg Tablet', 'Bioassure Healthcare Private Limited', 'Levozin M 5mg/10mg Tablet (Bioassure Healthcare Private Limited)', 'What is Levozin M 5mg/10mg Tablet?', 'Levozin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6742, 'Levozin M 5mg/10mg Tablet', 'Bioassure Healthcare Private Limited', 'Levozin M 5mg/10mg Tablet (Bioassure Healthcare Private Limited)', 'Can the use of Levozin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6743, 'Levozin M 5mg/10mg Tablet', 'Bioassure Healthcare Private Limited', 'Levozin M 5mg/10mg Tablet (Bioassure Healthcare Private Limited)', 'Can Levozin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6744, 'Levozin M 5mg/10mg Tablet', 'Bioassure Healthcare Private Limited', 'Levozin M 5mg/10mg Tablet (Bioassure Healthcare Private Limited)', 'Can the use of Levozin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6745, 'Levozin M 5mg/10mg Tablet', 'Bioassure Healthcare Private Limited', 'Levozin M 5mg/10mg Tablet (Bioassure Healthcare Private Limited)', 'Can I drink alcohol while taking Levozin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozin M 5mg/10mg Tablet.'),
(6746, 'Levozin M 5mg/10mg Tablet', 'Bioassure Healthcare Private Limited', 'Levozin M 5mg/10mg Tablet (Bioassure Healthcare Private Limited)', 'Will Levozin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6747, 'Levozin M 5mg/10mg Tablet', 'Bioassure Healthcare Private Limited', 'Levozin M 5mg/10mg Tablet (Bioassure Healthcare Private Limited)', 'What are the instructions for storage and disposal of Levozin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6748, 'Levozin M 5mg/10mg Tablet', 'Recnal Biomed', 'Levozin M 5mg/10mg Tablet (Recnal Biomed)', 'What is Levozin M 5mg/10mg Tablet?', 'Levozin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6749, 'Levozin M 5mg/10mg Tablet', 'Recnal Biomed', 'Levozin M 5mg/10mg Tablet (Recnal Biomed)', 'Can the use of Levozin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6750, 'Levozin M 5mg/10mg Tablet', 'Recnal Biomed', 'Levozin M 5mg/10mg Tablet (Recnal Biomed)', 'Can Levozin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6751, 'Levozin M 5mg/10mg Tablet', 'Recnal Biomed', 'Levozin M 5mg/10mg Tablet (Recnal Biomed)', 'Can the use of Levozin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6752, 'Levozin M 5mg/10mg Tablet', 'Recnal Biomed', 'Levozin M 5mg/10mg Tablet (Recnal Biomed)', 'Can I drink alcohol while taking Levozin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozin M 5mg/10mg Tablet.'),
(6753, 'Levozin M 5mg/10mg Tablet', 'Recnal Biomed', 'Levozin M 5mg/10mg Tablet (Recnal Biomed)', 'Will Levozin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6754, 'Levozin M 5mg/10mg Tablet', 'Recnal Biomed', 'Levozin M 5mg/10mg Tablet (Recnal Biomed)', 'What are the instructions for storage and disposal of Levozin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6755, 'Levozin M Suspension', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Suspension', 'What is Levozin M Suspension?', 'Levozin M Suspension is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6756, 'Levozin M Suspension', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Suspension', 'Can the use of Levozin M Suspension cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozin M Suspension is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6757, 'Levozin M Suspension', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Suspension', 'Can Levozin M Suspension be stopped when allergy symptoms are relieved?', 'No, Levozin M Suspension should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6758, 'Levozin M Suspension', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Suspension', 'Can the use of Levozin M Suspension cause dry mouth?', 'Yes, the use of Levozin M Suspension can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6759, 'Levozin M Suspension', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Suspension', 'Can I drink alcohol while taking Levozin M Suspension?', 'No, do not take alcohol while taking Levozin M Suspension. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozin M Suspension.'),
(6760, 'Levozin M Suspension', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Suspension', 'Will Levozin M Suspension be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozin M Suspension can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6761, 'Levozin M Suspension', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Suspension', 'What are the instructions for storage and disposal of Levozin M Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6762, 'Levozin M Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Tablet', 'What is Levozin M Tablet?', 'Levozin M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6763, 'Levozin M Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Tablet', 'Can the use of Levozin M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozin M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6764, 'Levozin M Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Tablet', 'Can Levozin M Tablet be stopped when allergy symptoms are relieved?', 'No, Levozin M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6765, 'Levozin M Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Tablet', 'Can the use of Levozin M Tablet cause dry mouth?', 'Yes, the use of Levozin M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6766, 'Levozin M Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Tablet', 'Can I drink alcohol while taking Levozin M Tablet?', 'No, do not take alcohol while taking Levozin M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozin M Tablet.'),
(6767, 'Levozin M Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Tablet', 'Will Levozin M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozin M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6768, 'Levozin M Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Levozin M Tablet', 'What are the instructions for storage and disposal of Levozin M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6769, 'Levozin Tablet', 'PCI Pharmaceuticals', 'Levozin Tablet', 'Is Levozin Tablet a steroid? What is it used for?', 'No, Levozin Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6770, 'Levozin Tablet', 'PCI Pharmaceuticals', 'Levozin Tablet', 'Does Levozin Tablet make you tired and drowsy?', 'Yes, Levozin Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6771, 'Levozin Tablet', 'PCI Pharmaceuticals', 'Levozin Tablet', 'How long does it take for Levozin Tablet to work?', 'Levozin Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6772, 'Levozin Tablet', 'PCI Pharmaceuticals', 'Levozin Tablet', 'Can I take Levozin Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozin Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6773, 'Levozin Tablet', 'PCI Pharmaceuticals', 'Levozin Tablet', 'Is it safe to take Levozin Tablet for a long time?', 'Levozin Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozin Tablet for only as long as you need it.'),
(6774, 'Levozin Tablet', 'PCI Pharmaceuticals', 'Levozin Tablet', 'For how long should I continue Levozin Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozin Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozin Tablet'),
(6775, 'Levozine 5mg Tablet', 'Nelon Pharmceuticals', 'Levozine 5mg Tablet (Nelon Pharmceuticals)', 'Is Levozine 5mg Tablet a steroid? What is it used for?', 'No, Levozine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6776, 'Levozine 5mg Tablet', 'Nelon Pharmceuticals', 'Levozine 5mg Tablet (Nelon Pharmceuticals)', 'Does Levozine 5mg Tablet make you tired and drowsy?', 'Yes, Levozine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6777, 'Levozine 5mg Tablet', 'Nelon Pharmceuticals', 'Levozine 5mg Tablet (Nelon Pharmceuticals)', 'How long does it take for Levozine 5mg Tablet to work?', 'Levozine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6778, 'Levozine 5mg Tablet', 'Nelon Pharmceuticals', 'Levozine 5mg Tablet (Nelon Pharmceuticals)', 'Can I take Levozine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6779, 'Levozine 5mg Tablet', 'Nelon Pharmceuticals', 'Levozine 5mg Tablet (Nelon Pharmceuticals)', 'Is it safe to take Levozine 5mg Tablet for a long time?', 'Levozine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozine 5mg Tablet for only as long as you need it.'),
(6780, 'Levozine 5mg Tablet', 'Nelon Pharmceuticals', 'Levozine 5mg Tablet (Nelon Pharmceuticals)', 'For how long should I continue Levozine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozine 5mg Tablet'),
(6781, 'Levozine 5mg Tablet', 'Arsn Pharmaceuticals Private Limited', 'Levozine 5mg Tablet (Arsn Pharmaceuticals Private Limited)', 'Is Levozine 5mg Tablet a steroid? What is it used for?', 'No, Levozine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6782, 'Levozine 5mg Tablet', 'Arsn Pharmaceuticals Private Limited', 'Levozine 5mg Tablet (Arsn Pharmaceuticals Private Limited)', 'Does Levozine 5mg Tablet make you tired and drowsy?', 'Yes, Levozine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6783, 'Levozine 5mg Tablet', 'Arsn Pharmaceuticals Private Limited', 'Levozine 5mg Tablet (Arsn Pharmaceuticals Private Limited)', 'How long does it take for Levozine 5mg Tablet to work?', 'Levozine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6784, 'Levozine 5mg Tablet', 'Arsn Pharmaceuticals Private Limited', 'Levozine 5mg Tablet (Arsn Pharmaceuticals Private Limited)', 'Can I take Levozine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6785, 'Levozine 5mg Tablet', 'Arsn Pharmaceuticals Private Limited', 'Levozine 5mg Tablet (Arsn Pharmaceuticals Private Limited)', 'Is it safe to take Levozine 5mg Tablet for a long time?', 'Levozine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozine 5mg Tablet for only as long as you need it.'),
(6786, 'Levozine 5mg Tablet', 'Arsn Pharmaceuticals Private Limited', 'Levozine 5mg Tablet (Arsn Pharmaceuticals Private Limited)', 'For how long should I continue Levozine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozine 5mg Tablet'),
(6787, 'Levozine 5mg Tablet', 'Inaaya Healthtech Pvt Ltd', 'Levozine 5mg Tablet (Inaaya Healthtech Pvt Ltd)', 'Is Levozine 5mg Tablet a steroid? What is it used for?', 'No, Levozine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6788, 'Levozine 5mg Tablet', 'Inaaya Healthtech Pvt Ltd', 'Levozine 5mg Tablet (Inaaya Healthtech Pvt Ltd)', 'Does Levozine 5mg Tablet make you tired and drowsy?', 'Yes, Levozine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6789, 'Levozine 5mg Tablet', 'Inaaya Healthtech Pvt Ltd', 'Levozine 5mg Tablet (Inaaya Healthtech Pvt Ltd)', 'How long does it take for Levozine 5mg Tablet to work?', 'Levozine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6790, 'Levozine 5mg Tablet', 'Inaaya Healthtech Pvt Ltd', 'Levozine 5mg Tablet (Inaaya Healthtech Pvt Ltd)', 'Can I take Levozine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6791, 'Levozine 5mg Tablet', 'Inaaya Healthtech Pvt Ltd', 'Levozine 5mg Tablet (Inaaya Healthtech Pvt Ltd)', 'Is it safe to take Levozine 5mg Tablet for a long time?', 'Levozine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozine 5mg Tablet for only as long as you need it.'),
(6792, 'Levozine 5mg Tablet', 'Inaaya Healthtech Pvt Ltd', 'Levozine 5mg Tablet (Inaaya Healthtech Pvt Ltd)', 'For how long should I continue Levozine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozine 5mg Tablet'),
(6793, 'Levozin-M Tablet', 'Remeris Pharma Pvt. Ltd.', 'Levozin-M Tablet', 'What is Levozin-M Tablet?', 'Levozin-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6794, 'Levozin-M Tablet', 'Remeris Pharma Pvt. Ltd.', 'Levozin-M Tablet', 'Can the use of Levozin-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozin-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6795, 'Levozin-M Tablet', 'Remeris Pharma Pvt. Ltd.', 'Levozin-M Tablet', 'Can Levozin-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levozin-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6796, 'Levozin-M Tablet', 'Remeris Pharma Pvt. Ltd.', 'Levozin-M Tablet', 'Can the use of Levozin-M Tablet cause dry mouth?', 'Yes, the use of Levozin-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6797, 'Levozin-M Tablet', 'Remeris Pharma Pvt. Ltd.', 'Levozin-M Tablet', 'Can I drink alcohol while taking Levozin-M Tablet?', 'No, do not take alcohol while taking Levozin-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozin-M Tablet.'),
(6798, 'Levozin-M Tablet', 'Remeris Pharma Pvt. Ltd.', 'Levozin-M Tablet', 'Will Levozin-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozin-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6799, 'Levozin-M Tablet', 'Remeris Pharma Pvt. Ltd.', 'Levozin-M Tablet', 'What are the instructions for storage and disposal of Levozin-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6800, 'Levozip 500mg Tablet', 'Bluewaterresearch', 'Levozip 500mg Tablet', 'Is Levozip 500mg Tablet safe?', 'Levozip 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6801, 'Levozip 500mg Tablet', 'Bluewaterresearch', 'Levozip 500mg Tablet', 'What if I forget to take a dose of Levozip 500mg Tablet?', 'If you forget a dose of Levozip 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6802, 'Levozip 500mg Tablet', 'Bluewaterresearch', 'Levozip 500mg Tablet', 'Can the use of Levozip 500mg Tablet cause diarrhea?', 'Yes, the use of Levozip 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6803, 'Levozip 500mg Tablet', 'Bluewaterresearch', 'Levozip 500mg Tablet', 'Can I stop taking Levozip 500mg Tablet when I feel better?', 'No, do not stop taking Levozip 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozip 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozip 500mg Tablet in the dose and duration advised by the doctor.'),
(6804, 'Levozip 500mg Tablet', 'Bluewaterresearch', 'Levozip 500mg Tablet', 'Can the use of Levozip 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozip 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozip 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6805, 'Levozit 5mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levozit 5mg Tablet', 'Is Levozit 5mg Tablet a steroid? What is it used for?', 'No, Levozit 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6806, 'Levozit 5mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levozit 5mg Tablet', 'Does Levozit 5mg Tablet make you tired and drowsy?', 'Yes, Levozit 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6807, 'Levozit 5mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levozit 5mg Tablet', 'How long does it take for Levozit 5mg Tablet to work?', 'Levozit 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6808, 'Levozit 5mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levozit 5mg Tablet', 'Can I take Levozit 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozit 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6809, 'Levozit 5mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levozit 5mg Tablet', 'Is it safe to take Levozit 5mg Tablet for a long time?', 'Levozit 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozit 5mg Tablet for only as long as you need it.'),
(6810, 'Levozit 5mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Levozit 5mg Tablet', 'For how long should I continue Levozit 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozit 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozit 5mg Tablet'),
(6811, 'Levozit M 5mg/10mg Tablet', 'Shinetech Remedies Private Limited', 'Levozit M 5mg/10mg Tablet', 'What is Levozit M 5mg/10mg Tablet?', 'Levozit M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6812, 'Levozit M 5mg/10mg Tablet', 'Shinetech Remedies Private Limited', 'Levozit M 5mg/10mg Tablet', 'Can the use of Levozit M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozit M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6813, 'Levozit M 5mg/10mg Tablet', 'Shinetech Remedies Private Limited', 'Levozit M 5mg/10mg Tablet', 'Can Levozit M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozit M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6814, 'Levozit M 5mg/10mg Tablet', 'Shinetech Remedies Private Limited', 'Levozit M 5mg/10mg Tablet', 'Can the use of Levozit M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozit M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6815, 'Levozit M 5mg/10mg Tablet', 'Shinetech Remedies Private Limited', 'Levozit M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levozit M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozit M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozit M 5mg/10mg Tablet.'),
(6816, 'Levozit M 5mg/10mg Tablet', 'Shinetech Remedies Private Limited', 'Levozit M 5mg/10mg Tablet', 'Will Levozit M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozit M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6817, 'Levozit M 5mg/10mg Tablet', 'Shinetech Remedies Private Limited', 'Levozit M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levozit M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6818, 'Levoziv 500 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv 500 Tablet', 'Q. Is Levoziv 500 Tablet safe?', 'Levoziv 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6819, 'Levoziv 500 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv 500 Tablet', 'Q. What if I forget to take a dose of Levoziv 500 Tablet?', 'If you forget a dose of Levoziv 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6820, 'Levoziv 500 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv 500 Tablet', 'Q. Can the use of Levoziv 500 Tablet cause diarrhea?', 'Yes, the use of Levoziv 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6821, 'Levoziv 500 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv 500 Tablet', 'Q. Can I stop taking Levoziv 500 Tablet when I feel better?', 'No, do not stop taking Levoziv 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levoziv 500 Tablet too early, the symptoms may return or worsen. Continue taking Levoziv 500 Tablet in the dose and duration advised by the doctor.'),
(6822, 'Levoziv 500 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv 500 Tablet', 'Q. Can the use of Levoziv 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levoziv 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levoziv 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6823, 'Levoziv-OZ Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv-OZ Tablet', 'Q. What if I don\'t get better after using Levoziv-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6824, 'Levoziv-OZ Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv-OZ Tablet', 'Q. Can I stop taking Levoziv-OZ Tablet when I feel better?', 'No, do not stop taking Levoziv-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6825, 'Levoziv-OZ Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Levoziv-OZ Tablet', 'Q. What if I miss my dose?', 'Take Levoziv-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6826, 'Levozix 5mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix 5mg Tablet', 'Is Levozix 5mg Tablet a steroid? What is it used for?', 'No, Levozix 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6827, 'Levozix 5mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix 5mg Tablet', 'Does Levozix 5mg Tablet make you tired and drowsy?', 'Yes, Levozix 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6828, 'Levozix 5mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix 5mg Tablet', 'How long does it take for Levozix 5mg Tablet to work?', 'Levozix 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6829, 'Levozix 5mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix 5mg Tablet', 'Can I take Levozix 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozix 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6830, 'Levozix 5mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix 5mg Tablet', 'Is it safe to take Levozix 5mg Tablet for a long time?', 'Levozix 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozix 5mg Tablet for only as long as you need it.'),
(6831, 'Levozix 5mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix 5mg Tablet', 'For how long should I continue Levozix 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozix 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozix 5mg Tablet'),
(6832, 'Levozix M 5mg/10mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix M 5mg/10mg Tablet', 'What is Levozix M 5mg/10mg Tablet?', 'Levozix M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6833, 'Levozix M 5mg/10mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix M 5mg/10mg Tablet', 'Can the use of Levozix M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levozix M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6834, 'Levozix M 5mg/10mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix M 5mg/10mg Tablet', 'Can Levozix M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levozix M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6835, 'Levozix M 5mg/10mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix M 5mg/10mg Tablet', 'Can the use of Levozix M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levozix M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6836, 'Levozix M 5mg/10mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levozix M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levozix M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levozix M 5mg/10mg Tablet.'),
(6837, 'Levozix M 5mg/10mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix M 5mg/10mg Tablet', 'Will Levozix M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levozix M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6838, 'Levozix M 5mg/10mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Levozix M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levozix M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6839, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6840, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'Can I decrease the dose of Levozix M Syrup Mango by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6841, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'How should Levozix M Syrup Mango be stored?', 'Levozix M Syrup Mango should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6842, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'Can Levozix M Syrup Mango make my child sleepy?', 'Levozix M Syrup Mango causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6843, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levozix M Syrup Mango?', 'No, don’t start Levozix M Syrup Mango without speaking to your child’s doctor. Moreover, Levozix M Syrup Mango can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6844, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levozix M Syrup Mango usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6845, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'My child is suffering from a mood disorder. Is it safe to give Levozix M Syrup Mango to my child?', 'Some studies show that Levozix M Syrup Mango can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6846, 'Levozix M Syrup Mango', 'Dalcon Drugs Pvt Ltd', 'Levozix M Syrup Mango', 'Can I use Levozix M Syrup Mango for treating acute asthma attacks in my child?', 'Levozix M Syrup Mango should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6847, 'Levoz-M Tablet', 'Beulah Biomedics Ltd', 'Levoz-M Tablet', 'What is Levoz-M Tablet?', 'Levoz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6848, 'Levoz-M Tablet', 'Beulah Biomedics Ltd', 'Levoz-M Tablet', 'Can the use of Levoz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levoz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6849, 'Levoz-M Tablet', 'Beulah Biomedics Ltd', 'Levoz-M Tablet', 'Can Levoz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levoz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6850, 'Levoz-M Tablet', 'Beulah Biomedics Ltd', 'Levoz-M Tablet', 'Can the use of Levoz-M Tablet cause dry mouth?', 'Yes, the use of Levoz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6851, 'Levoz-M Tablet', 'Beulah Biomedics Ltd', 'Levoz-M Tablet', 'Can I drink alcohol while taking Levoz-M Tablet?', 'No, do not take alcohol while taking Levoz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levoz-M Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6852, 'Levoz-M Tablet', 'Beulah Biomedics Ltd', 'Levoz-M Tablet', 'Will Levoz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levoz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6853, 'Levoz-M Tablet', 'Beulah Biomedics Ltd', 'Levoz-M Tablet', 'What are the instructions for storage and disposal of Levoz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6854, 'Levozoc 500 Tablet', 'Biozoc INC', 'Levozoc 500 Tablet', 'Is Levozoc 500 Tablet safe?', 'Levozoc 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6855, 'Levozoc 500 Tablet', 'Biozoc INC', 'Levozoc 500 Tablet', 'What if I forget to take a dose of Levozoc 500 Tablet?', 'If you forget a dose of Levozoc 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6856, 'Levozoc 500 Tablet', 'Biozoc INC', 'Levozoc 500 Tablet', 'Can the use of Levozoc 500 Tablet cause diarrhea?', 'Yes, the use of Levozoc 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6857, 'Levozoc 500 Tablet', 'Biozoc INC', 'Levozoc 500 Tablet', 'Can I stop taking Levozoc 500 Tablet when I feel better?', 'No, do not stop taking Levozoc 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozoc 500 Tablet too early, the symptoms may return or worsen. Continue taking Levozoc 500 Tablet in the dose and duration advised by the doctor.'),
(6858, 'Levozoc 500 Tablet', 'Biozoc INC', 'Levozoc 500 Tablet', 'Can the use of Levozoc 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levozoc 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozoc 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6859, 'Levozone 500mg Tablet', 'Infugen Pharma Pvt Ltd', 'Levozone 500mg Tablet', 'Is Levozone 500mg Tablet safe?', 'Levozone 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6860, 'Levozone 500mg Tablet', 'Infugen Pharma Pvt Ltd', 'Levozone 500mg Tablet', 'What if I forget to take a dose of Levozone 500mg Tablet?', 'If you forget a dose of Levozone 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6861, 'Levozone 500mg Tablet', 'Infugen Pharma Pvt Ltd', 'Levozone 500mg Tablet', 'Can the use of Levozone 500mg Tablet cause diarrhea?', 'Yes, the use of Levozone 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6862, 'Levozone 500mg Tablet', 'Infugen Pharma Pvt Ltd', 'Levozone 500mg Tablet', 'Can I stop taking Levozone 500mg Tablet when I feel better?', 'No, do not stop taking Levozone 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levozone 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levozone 500mg Tablet in the dose and duration advised by the doctor.'),
(6863, 'Levozone 500mg Tablet', 'Infugen Pharma Pvt Ltd', 'Levozone 500mg Tablet', 'Can the use of Levozone 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levozone 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levozone 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6864, 'levozor 500 Tablet', 'Monark Biocare Pvt Ltd', 'levozor 500 Tablet', 'Is levozor 500 Tablet safe?', 'levozor 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6865, 'levozor 500 Tablet', 'Monark Biocare Pvt Ltd', 'levozor 500 Tablet', 'What if I forget to take a dose of levozor 500 Tablet?', 'If you forget a dose of levozor 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6866, 'levozor 500 Tablet', 'Monark Biocare Pvt Ltd', 'levozor 500 Tablet', 'Can the use of levozor 500 Tablet cause diarrhea?', 'Yes, the use of levozor 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6867, 'levozor 500 Tablet', 'Monark Biocare Pvt Ltd', 'levozor 500 Tablet', 'Can I stop taking levozor 500 Tablet when I feel better?', 'No, do not stop taking levozor 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using levozor 500 Tablet too early, the symptoms may return or worsen. Continue taking levozor 500 Tablet in the dose and duration advised by the doctor.'),
(6868, 'levozor 500 Tablet', 'Monark Biocare Pvt Ltd', 'levozor 500 Tablet', 'Can the use of levozor 500 Tablet increase the risk of muscle damage?', 'Yes, the use of levozor 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take levozor 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6869, 'levozor OZ 250mg/500mg Tablet', 'Monark Biocare Pvt Ltd', 'levozor OZ 250mg/500mg Tablet', 'What if I don\'t get better after using levozor OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(6870, 'levozor OZ 250mg/500mg Tablet', 'Monark Biocare Pvt Ltd', 'levozor OZ 250mg/500mg Tablet', 'Can I stop taking levozor OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking levozor OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(6871, 'levozor OZ 250mg/500mg Tablet', 'Monark Biocare Pvt Ltd', 'levozor OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take levozor OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(6872, 'Levozyp 10mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 10mg Tablet', 'Is Levozyp 10mg Tablet a steroid? What is it used for?', 'No, Levozyp 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6873, 'Levozyp 10mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 10mg Tablet', 'Does Levozyp 10mg Tablet make you tired and drowsy?', 'Yes, Levozyp 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6874, 'Levozyp 10mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 10mg Tablet', 'How long does it take for Levozyp 10mg Tablet to work?', 'Levozyp 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6875, 'Levozyp 10mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 10mg Tablet', 'Can I take Levozyp 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozyp 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6876, 'Levozyp 10mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 10mg Tablet', 'Is it safe to take Levozyp 10mg Tablet for a long time?', 'Levozyp 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozyp 10mg Tablet for only as long as you need it.'),
(6877, 'Levozyp 10mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 10mg Tablet', 'For how long should I continue Levozyp 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozyp 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozyp 10mg Tablet'),
(6878, 'Levozyp 5mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 5mg Tablet', 'Is Levozyp 5mg Tablet a steroid? What is it used for?', 'No, Levozyp 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6879, 'Levozyp 5mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 5mg Tablet', 'Does Levozyp 5mg Tablet make you tired and drowsy?', 'Yes, Levozyp 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6880, 'Levozyp 5mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 5mg Tablet', 'How long does it take for Levozyp 5mg Tablet to work?', 'Levozyp 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6881, 'Levozyp 5mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 5mg Tablet', 'Can I take Levozyp 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levozyp 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6882, 'Levozyp 5mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 5mg Tablet', 'Is it safe to take Levozyp 5mg Tablet for a long time?', 'Levozyp 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levozyp 5mg Tablet for only as long as you need it.'),
(6883, 'Levozyp 5mg Tablet', 'Apa Pharmaceuticals', 'Levozyp 5mg Tablet', 'For how long should I continue Levozyp 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levozyp 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levozyp 5mg Tablet'),
(6884, 'Levpix 5mg Tablet', 'Sigmus Biotech Pvt Ltd', 'Levpix 5mg Tablet', 'Is Levpix 5mg Tablet a steroid? What is it used for?', 'No, Levpix 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6885, 'Levpix 5mg Tablet', 'Sigmus Biotech Pvt Ltd', 'Levpix 5mg Tablet', 'Does Levpix 5mg Tablet make you tired and drowsy?', 'Yes, Levpix 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6886, 'Levpix 5mg Tablet', 'Sigmus Biotech Pvt Ltd', 'Levpix 5mg Tablet', 'How long does it take for Levpix 5mg Tablet to work?', 'Levpix 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6887, 'Levpix 5mg Tablet', 'Sigmus Biotech Pvt Ltd', 'Levpix 5mg Tablet', 'Can I take Levpix 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levpix 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6888, 'Levpix 5mg Tablet', 'Sigmus Biotech Pvt Ltd', 'Levpix 5mg Tablet', 'Is it safe to take Levpix 5mg Tablet for a long time?', 'Levpix 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levpix 5mg Tablet for only as long as you need it.'),
(6889, 'Levpix 5mg Tablet', 'Sigmus Biotech Pvt Ltd', 'Levpix 5mg Tablet', 'For how long should I continue Levpix 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levpix 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levpix 5mg Tablet'),
(6890, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'Is Levpod 100mg Tablet DT safe to use?', 'Levpod 100mg Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(6891, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'Can the use of Levpod 100mg Tablet DT cause diarrhea?', 'Yes, the use of Levpod 100mg Tablet DT can cause diarrhea. Levpod 100mg Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(6892, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'Is Levpod 100mg Tablet DT an antibiotic?', 'Yes, Levpod 100mg Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(6893, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'Can Levpod 100mg Tablet DT cause constipation?', 'Yes, Levpod 100mg Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(6894, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'Can I stop taking Levpod 100mg Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Levpod 100mg Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(6895, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'How long does Levpod 100mg Tablet DT take to work?', 'Usually, Levpod 100mg Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(6896, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'What if I do not get better after using Levpod 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(6897, 'Levpod 100mg Tablet DT', 'Levent Biotech Pvt Ltd', 'Levpod 100mg Tablet DT', 'Can Levpod 100mg Tablet DT treat UTI?', 'Yes, Levpod 100mg Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Levpod 100mg Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(6898, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'Is Levpod 200mg Tablet safe to use?', 'Levpod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(6899, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'Can the use of Levpod 200mg Tablet cause diarrhea?', 'Yes, the use of Levpod 200mg Tablet can cause diarrhea. Levpod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(6900, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'Is Levpod 200mg Tablet an antibiotic?', 'Yes, Levpod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(6901, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'Can Levpod 200mg Tablet cause constipation?', 'Yes, Levpod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(6902, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'Can I stop taking Levpod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Levpod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(6903, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'How long does Levpod 200mg Tablet take to work?', 'Usually, Levpod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(6904, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'What if I do not get better after using Levpod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(6905, 'Levpod 200mg Tablet', 'Levent Biotech Pvt Ltd', 'Levpod 200mg Tablet', 'Can Levpod 200mg Tablet treat UTI?', 'Yes, Levpod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Levpod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(6906, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'What if I give too much of Levpod 50mg Dry Syrup by mistake?', 'An extra dose of Levpod 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Levpod 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(6907, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'Are there any possible serious side effects of Levpod 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(6908, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'Can other medicines be given at the same time as Levpod 50mg Dry Syrup?', 'Levpod 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levpod 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(6909, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Levpod 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(6910, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Levpod 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(6911, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(6912, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(6913, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(6914, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'Can Levpod 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Levpod 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Levpod 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(6915, 'Levpod 50mg Dry Syrup', 'Levent Biotech Pvt Ltd', 'Levpod 50mg Dry Syrup', 'Can Levpod 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Levpod 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(6916, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'Can the use of Levpra 500mg Tablet cause sleepiness?', 'Yes, Levpra 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(6917, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'Will the use of Levpra 500mg Tablet affect my fertility?', 'Levpra 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(6918, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'I have gained weight since I started taking Levpra 500mg Tablet. Is it because of Levpra 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levpra 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(6919, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'How long does Levpra 500mg Tablet take to show its effect?', 'Levpra 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levpra 500mg Tablet starts working completely.'),
(6920, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'For how long do I need to take Levpra 500mg Tablet?', 'You should continue to take Levpra 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(6921, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'Will I get addicted to Levpra 500mg Tablet if I use it for a long time?', 'No, Levpra 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levpra 500mg Tablet. Consult your doctor if you experience any side effects.'),
(6922, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'What symptoms can occur if someone takes an excess of Levpra 500mg Tablet?', 'Taking an excess of Levpra 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(6923, 'Levpra 500mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Levpra 500mg Tablet', 'How do I come off Levpra 500mg Tablet?', 'The dose of Levpra 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levpra 500mg Tablet straight away, even if you have epilepsy.'),
(6924, 'Levpure-M Tablet', 'Ampure Pharmaceutical LLP', 'Levpure-M Tablet', 'What is Levpure-M Tablet?', 'Levpure-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6925, 'Levpure-M Tablet', 'Ampure Pharmaceutical LLP', 'Levpure-M Tablet', 'Can the use of Levpure-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levpure-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6926, 'Levpure-M Tablet', 'Ampure Pharmaceutical LLP', 'Levpure-M Tablet', 'Can Levpure-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levpure-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6927, 'Levpure-M Tablet', 'Ampure Pharmaceutical LLP', 'Levpure-M Tablet', 'Can the use of Levpure-M Tablet cause dry mouth?', 'Yes, the use of Levpure-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6928, 'Levpure-M Tablet', 'Ampure Pharmaceutical LLP', 'Levpure-M Tablet', 'Can I drink alcohol while taking Levpure-M Tablet?', 'No, do not take alcohol while taking Levpure-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levpure-M Tablet.'),
(6929, 'Levpure-M Tablet', 'Ampure Pharmaceutical LLP', 'Levpure-M Tablet', 'Will Levpure-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levpure-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6930, 'Levpure-M Tablet', 'Ampure Pharmaceutical LLP', 'Levpure-M Tablet', 'What are the instructions for storage and disposal of Levpure-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6931, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'Can the use of Levracet 250 Tablet cause sleepiness?', 'Yes, Levracet 250 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(6932, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'Will the use of Levracet 250 Tablet affect my fertility?', 'Levracet 250 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(6933, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'I have gained weight since I started taking Levracet 250 Tablet. Is it because of Levracet 250 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levracet 250 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(6934, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'How long does Levracet 250 Tablet take to show its effect?', 'Levracet 250 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levracet 250 Tablet starts working completely.'),
(6935, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'For how long do I need to take Levracet 250 Tablet?', 'You should continue to take Levracet 250 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(6936, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'Will I get addicted to Levracet 250 Tablet if I use it for a long time?', 'No, Levracet 250 Tablet is not habit-forming. No physical or psychological dependence has been reported with Levracet 250 Tablet. Consult your doctor if you experience any side effects.'),
(6937, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'What symptoms can occur if someone takes an excess of Levracet 250 Tablet?', 'Taking an excess of Levracet 250 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(6938, 'Levracet 250 Tablet', 'Emenox Healthcare', 'Levracet 250 Tablet', 'How do I come off Levracet 250 Tablet?', 'The dose of Levracet 250 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levracet 250 Tablet straight away, even if you have epilepsy.'),
(6939, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'Can the use of Levracet 500mg Tablet cause sleepiness?', 'Yes, Levracet 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(6940, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'Will the use of Levracet 500mg Tablet affect my fertility?', 'Levracet 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(6941, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'I have gained weight since I started taking Levracet 500mg Tablet. Is it because of Levracet 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levracet 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(6942, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'How long does Levracet 500mg Tablet take to show its effect?', 'Levracet 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levracet 500mg Tablet starts working completely.'),
(6943, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'For how long do I need to take Levracet 500mg Tablet?', 'You should continue to take Levracet 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(6944, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'Will I get addicted to Levracet 500mg Tablet if I use it for a long time?', 'No, Levracet 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levracet 500mg Tablet. Consult your doctor if you experience any side effects.'),
(6945, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'What symptoms can occur if someone takes an excess of Levracet 500mg Tablet?', 'Taking an excess of Levracet 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(6946, 'Levracet 500mg Tablet', 'Emenox Healthcare', 'Levracet 500mg Tablet', 'How do I come off Levracet 500mg Tablet?', 'The dose of Levracet 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levracet 500mg Tablet straight away, even if you have epilepsy.'),
(6947, 'Levrazin 10mg Tablet', 'Medroots Biopharma', 'Levrazin 10mg Tablet', 'Is Levrazin 10mg Tablet a steroid? What is it used for?', 'No, Levrazin 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6948, 'Levrazin 10mg Tablet', 'Medroots Biopharma', 'Levrazin 10mg Tablet', 'Does Levrazin 10mg Tablet make you tired and drowsy?', 'Yes, Levrazin 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6949, 'Levrazin 10mg Tablet', 'Medroots Biopharma', 'Levrazin 10mg Tablet', 'How long does it take for Levrazin 10mg Tablet to work?', 'Levrazin 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6950, 'Levrazin 10mg Tablet', 'Medroots Biopharma', 'Levrazin 10mg Tablet', 'Can I take Levrazin 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levrazin 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6951, 'Levrazin 10mg Tablet', 'Medroots Biopharma', 'Levrazin 10mg Tablet', 'Is it safe to take Levrazin 10mg Tablet for a long time?', 'Levrazin 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levrazin 10mg Tablet for only as long as you need it.'),
(6952, 'Levrazin 10mg Tablet', 'Medroots Biopharma', 'Levrazin 10mg Tablet', 'For how long should I continue Levrazin 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levrazin 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levrazin 10mg Tablet'),
(6953, 'Levrazin 5 Tablet', 'Medroots Biopharma', 'Levrazin 5 Tablet', 'Is Levrazin 5 Tablet a steroid? What is it used for?', 'No, Levrazin 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6954, 'Levrazin 5 Tablet', 'Medroots Biopharma', 'Levrazin 5 Tablet', 'Does Levrazin 5 Tablet make you tired and drowsy?', 'Yes, Levrazin 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6955, 'Levrazin 5 Tablet', 'Medroots Biopharma', 'Levrazin 5 Tablet', 'How long does it take for Levrazin 5 Tablet to work?', 'Levrazin 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6956, 'Levrazin 5 Tablet', 'Medroots Biopharma', 'Levrazin 5 Tablet', 'Can I take Levrazin 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levrazin 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6957, 'Levrazin 5 Tablet', 'Medroots Biopharma', 'Levrazin 5 Tablet', 'Is it safe to take Levrazin 5 Tablet for a long time?', 'Levrazin 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levrazin 5 Tablet for only as long as you need it.'),
(6958, 'Levrazin 5 Tablet', 'Medroots Biopharma', 'Levrazin 5 Tablet', 'For how long should I continue Levrazin 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levrazin 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levrazin 5 Tablet'),
(6959, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6960, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'Can I decrease the dose of Levrazin M 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6961, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'How should Levrazin M 2.5mg/4mg Tablet be stored?', 'Levrazin M 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6962, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'Can Levrazin M 2.5mg/4mg Tablet make my child sleepy?', 'Levrazin M 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6963, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levrazin M 2.5mg/4mg Tablet?', 'No, don’t start Levrazin M 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levrazin M 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6964, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levrazin M 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6965, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levrazin M 2.5mg/4mg Tablet to my child?', 'Some studies show that Levrazin M 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6966, 'Levrazin M 2.5mg/4mg Tablet', 'Medroots Biopharma', 'Levrazin M 2.5mg/4mg Tablet', 'Can I use Levrazin M 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levrazin M 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6967, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6968, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'Can I decrease the dose of Levrazin M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6969, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'How should Levrazin M Kid Syrup be stored?', 'Levrazin M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6970, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'Can Levrazin M Kid Syrup make my child sleepy?', 'Levrazin M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6971, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levrazin M Kid Syrup?', 'No, don’t start Levrazin M Kid Syrup without speaking to your child’s doctor. Moreover, Levrazin M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(6972, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levrazin M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6973, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levrazin M Kid Syrup to my child?', 'Some studies show that Levrazin M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(6974, 'Levrazin M Kid Syrup', 'Medroots Biopharma', 'Levrazin M Kid Syrup', 'Can I use Levrazin M Kid Syrup for treating acute asthma attacks in my child?', 'Levrazin M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(6975, 'Levrazin-M Tablet', 'Medroots Biopharma', 'Levrazin-M Tablet', 'What is Levrazin-M Tablet?', 'Levrazin-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(6976, 'Levrazin-M Tablet', 'Medroots Biopharma', 'Levrazin-M Tablet', 'Can the use of Levrazin-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levrazin-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(6977, 'Levrazin-M Tablet', 'Medroots Biopharma', 'Levrazin-M Tablet', 'Can Levrazin-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levrazin-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(6978, 'Levrazin-M Tablet', 'Medroots Biopharma', 'Levrazin-M Tablet', 'Can the use of Levrazin-M Tablet cause dry mouth?', 'Yes, the use of Levrazin-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(6979, 'Levrazin-M Tablet', 'Medroots Biopharma', 'Levrazin-M Tablet', 'Can I drink alcohol while taking Levrazin-M Tablet?', 'No, do not take alcohol while taking Levrazin-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levrazin-M Tablet.'),
(6980, 'Levrazin-M Tablet', 'Medroots Biopharma', 'Levrazin-M Tablet', 'Will Levrazin-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levrazin-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(6981, 'Levrazin-M Tablet', 'Medroots Biopharma', 'Levrazin-M Tablet', 'What are the instructions for storage and disposal of Levrazin-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(6982, 'Levrea 500mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Levrea 500mg Tablet', 'Is Levrea 500mg Tablet safe?', 'Levrea 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(6983, 'Levrea 500mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Levrea 500mg Tablet', 'What if I forget to take a dose of Levrea 500mg Tablet?', 'If you forget a dose of Levrea 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(6984, 'Levrea 500mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Levrea 500mg Tablet', 'Can the use of Levrea 500mg Tablet cause diarrhea?', 'Yes, the use of Levrea 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(6985, 'Levrea 500mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Levrea 500mg Tablet', 'Can I stop taking Levrea 500mg Tablet when I feel better?', 'No, do not stop taking Levrea 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levrea 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levrea 500mg Tablet in the dose and duration advised by the doctor.'),
(6986, 'Levrea 500mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Levrea 500mg Tablet', 'Can the use of Levrea 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levrea 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levrea 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(6987, 'Levrix 5mg Tablet', 'Efpia Medicine Private Limited', 'Levrix 5mg Tablet', 'Is Levrix 5mg Tablet a steroid? What is it used for?', 'No, Levrix 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(6988, 'Levrix 5mg Tablet', 'Efpia Medicine Private Limited', 'Levrix 5mg Tablet', 'Does Levrix 5mg Tablet make you tired and drowsy?', 'Yes, Levrix 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(6989, 'Levrix 5mg Tablet', 'Efpia Medicine Private Limited', 'Levrix 5mg Tablet', 'How long does it take for Levrix 5mg Tablet to work?', 'Levrix 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(6990, 'Levrix 5mg Tablet', 'Efpia Medicine Private Limited', 'Levrix 5mg Tablet', 'Can I take Levrix 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levrix 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(6991, 'Levrix 5mg Tablet', 'Efpia Medicine Private Limited', 'Levrix 5mg Tablet', 'Is it safe to take Levrix 5mg Tablet for a long time?', 'Levrix 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levrix 5mg Tablet for only as long as you need it.'),
(6992, 'Levrix 5mg Tablet', 'Efpia Medicine Private Limited', 'Levrix 5mg Tablet', 'For how long should I continue Levrix 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levrix 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levrix 5mg Tablet'),
(6993, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(6994, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'Can I decrease the dose of Levrix M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(6995, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'How should Levrix M Kid Tablet be stored?', 'Levrix M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(6996, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'Can Levrix M Kid Tablet make my child sleepy?', 'Levrix M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(6997, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levrix M Kid Tablet?', 'No, don’t start Levrix M Kid Tablet without speaking to your child’s doctor. Moreover, Levrix M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(6998, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levrix M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(6999, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levrix M Kid Tablet to my child?', 'Some studies show that Levrix M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7000, 'Levrix M Kid Tablet', 'Efpia Medicine Private Limited', 'Levrix M Kid Tablet', 'Can I use Levrix M Kid Tablet for treating acute asthma attacks in my child?', 'Levrix M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7001, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7002, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'Can I decrease the dose of Levrix M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7003, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'How should Levrix M Syrup be stored?', 'Levrix M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7004, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'Can Levrix M Syrup make my child sleepy?', 'Levrix M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7005, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levrix M Syrup?', 'No, don’t start Levrix M Syrup without speaking to your child’s doctor. Moreover, Levrix M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7006, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levrix M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7007, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levrix M Syrup to my child?', 'Some studies show that Levrix M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7008, 'Levrix M Syrup', 'Efpia Medicine Private Limited', 'Levrix M Syrup', 'Can I use Levrix M Syrup for treating acute asthma attacks in my child?', 'Levrix M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7009, 'Levrix M Tablet', 'Efpia Medicine Private Limited', 'Levrix M Tablet', 'What is Levrix M Tablet?', 'Levrix M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7010, 'Levrix M Tablet', 'Efpia Medicine Private Limited', 'Levrix M Tablet', 'Can the use of Levrix M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levrix M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7011, 'Levrix M Tablet', 'Efpia Medicine Private Limited', 'Levrix M Tablet', 'Can Levrix M Tablet be stopped when allergy symptoms are relieved?', 'No, Levrix M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7012, 'Levrix M Tablet', 'Efpia Medicine Private Limited', 'Levrix M Tablet', 'Can the use of Levrix M Tablet cause dry mouth?', 'Yes, the use of Levrix M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7013, 'Levrix M Tablet', 'Efpia Medicine Private Limited', 'Levrix M Tablet', 'Can I drink alcohol while taking Levrix M Tablet?', 'No, do not take alcohol while taking Levrix M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levrix M Tablet.'),
(7014, 'Levrix M Tablet', 'Efpia Medicine Private Limited', 'Levrix M Tablet', 'Will Levrix M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levrix M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7015, 'Levrix M Tablet', 'Efpia Medicine Private Limited', 'Levrix M Tablet', 'What are the instructions for storage and disposal of Levrix M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7016, 'Lev-Riz 5mg Tablet', 'Aster Pharma', 'Lev-Riz 5mg Tablet', 'Is Lev-Riz 5mg Tablet a steroid? What is it used for?', 'No, Lev-Riz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7017, 'Lev-Riz 5mg Tablet', 'Aster Pharma', 'Lev-Riz 5mg Tablet', 'Does Lev-Riz 5mg Tablet make you tired and drowsy?', 'Yes, Lev-Riz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7018, 'Lev-Riz 5mg Tablet', 'Aster Pharma', 'Lev-Riz 5mg Tablet', 'How long does it take for Lev-Riz 5mg Tablet to work?', 'Lev-Riz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7019, 'Lev-Riz 5mg Tablet', 'Aster Pharma', 'Lev-Riz 5mg Tablet', 'Can I take Lev-Riz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lev-Riz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7020, 'Lev-Riz 5mg Tablet', 'Aster Pharma', 'Lev-Riz 5mg Tablet', 'Is it safe to take Lev-Riz 5mg Tablet for a long time?', 'Lev-Riz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lev-Riz 5mg Tablet for only as long as you need it.'),
(7021, 'Lev-Riz 5mg Tablet', 'Aster Pharma', 'Lev-Riz 5mg Tablet', 'For how long should I continue Lev-Riz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lev-Riz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lev-Riz 5mg Tablet'),
(7022, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'Will the use of Levro Infusion affect my fertility?', 'Levro Infusion is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7023, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'Can the use of Levro Infusion cause sleepiness?', 'Yes, Levro Infusion can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7024, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'I have gained weight since I started taking Levro Infusion. Is it because of Levro Infusion? What should I do?', 'Weight gain is an uncommon side effect of Levro Infusion. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7025, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'How long does Levro Infusion take to show its effect?', 'Levro Infusion may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levro Infusion starts working completely.'),
(7026, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'For how long do I need to take Levro Infusion?', 'You should continue to take Levro Infusion for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7027, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'Can I drink alcohol with Levro Infusion?', 'Yes, you may drink alcohol while taking Levro Infusion. Alcohol itself does not affect the way Levro Infusion works. However, alcohol can increase the sleepiness or dizziness that occur as side effects of Levro Infusion in some individuals. Therefore, you should avoid alcohol while taking Levro Infusion until you know how it affects you.'),
(7028, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'Will I get addicted to Levro Infusion if I use it for a long time?', 'No, Levro Infusion is not habit-forming. No physical or psychological dependence has been reported with Levro Infusion. Consult your doctor if you experience any side effects.'),
(7029, 'Levro Infusion', 'Biosam Life Science Private Limited', 'Levro Infusion', 'What symptoms can occur if someone takes an excess of Levro Infusion?', 'Taking an excess of Levro Infusion may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7030, 'Levrok 500mg Tablet', 'San Boston Life Sciences', 'Levrok 500mg Tablet', 'Is Levrok 500mg Tablet safe?', 'Levrok 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7031, 'Levrok 500mg Tablet', 'San Boston Life Sciences', 'Levrok 500mg Tablet', 'What if I forget to take a dose of Levrok 500mg Tablet?', 'If you forget a dose of Levrok 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7032, 'Levrok 500mg Tablet', 'San Boston Life Sciences', 'Levrok 500mg Tablet', 'Can the use of Levrok 500mg Tablet cause diarrhea?', 'Yes, the use of Levrok 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7033, 'Levrok 500mg Tablet', 'San Boston Life Sciences', 'Levrok 500mg Tablet', 'Can I stop taking Levrok 500mg Tablet when I feel better?', 'No, do not stop taking Levrok 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levrok 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levrok 500mg Tablet in the dose and duration advised by the doctor.'),
(7034, 'Levrok 500mg Tablet', 'San Boston Life Sciences', 'Levrok 500mg Tablet', 'Can the use of Levrok 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levrok 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levrok 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7035, 'Levrol 250mg Tablet', 'Sunroxx Pharma', 'Levrol 250mg Tablet', 'Is Levrol 250mg Tablet safe?', 'Levrol 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7036, 'Levrol 250mg Tablet', 'Sunroxx Pharma', 'Levrol 250mg Tablet', 'What if I forget to take a dose of Levrol 250mg Tablet?', 'If you forget a dose of Levrol 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7037, 'Levrol 250mg Tablet', 'Sunroxx Pharma', 'Levrol 250mg Tablet', 'Can the use of Levrol 250mg Tablet cause diarrhea?', 'Yes, the use of Levrol 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7038, 'Levrol 250mg Tablet', 'Sunroxx Pharma', 'Levrol 250mg Tablet', 'Can I stop taking Levrol 250mg Tablet when I feel better?', 'No, do not stop taking Levrol 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levrol 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levrol 250mg Tablet in the dose and duration advised by the doctor.'),
(7039, 'Levrol 250mg Tablet', 'Sunroxx Pharma', 'Levrol 250mg Tablet', 'Can the use of Levrol 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levrol 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levrol 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7040, 'Levrol 500mg Tablet', 'Sunroxx Pharma', 'Levrol 500mg Tablet', 'Is Levrol 500mg Tablet safe?', 'Levrol 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7041, 'Levrol 500mg Tablet', 'Sunroxx Pharma', 'Levrol 500mg Tablet', 'What if I forget to take a dose of Levrol 500mg Tablet?', 'If you forget a dose of Levrol 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7042, 'Levrol 500mg Tablet', 'Sunroxx Pharma', 'Levrol 500mg Tablet', 'Can the use of Levrol 500mg Tablet cause diarrhea?', 'Yes, the use of Levrol 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7043, 'Levrol 500mg Tablet', 'Sunroxx Pharma', 'Levrol 500mg Tablet', 'Can I stop taking Levrol 500mg Tablet when I feel better?', 'No, do not stop taking Levrol 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levrol 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levrol 500mg Tablet in the dose and duration advised by the doctor.'),
(7044, 'Levrol 500mg Tablet', 'Sunroxx Pharma', 'Levrol 500mg Tablet', 'Can the use of Levrol 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levrol 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levrol 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7045, 'Levrom 5mg Tablet', 'Romas Remedies', 'Levrom 5mg Tablet', 'Is Levrom 5mg Tablet a steroid? What is it used for?', 'No, Levrom 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7046, 'Levrom 5mg Tablet', 'Romas Remedies', 'Levrom 5mg Tablet', 'Does Levrom 5mg Tablet make you tired and drowsy?', 'Yes, Levrom 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7047, 'Levrom 5mg Tablet', 'Romas Remedies', 'Levrom 5mg Tablet', 'How long does it take for Levrom 5mg Tablet to work?', 'Levrom 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7048, 'Levrom 5mg Tablet', 'Romas Remedies', 'Levrom 5mg Tablet', 'Can I take Levrom 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levrom 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7049, 'Levrom 5mg Tablet', 'Romas Remedies', 'Levrom 5mg Tablet', 'Is it safe to take Levrom 5mg Tablet for a long time?', 'Levrom 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levrom 5mg Tablet for only as long as you need it.'),
(7050, 'Levrom 5mg Tablet', 'Romas Remedies', 'Levrom 5mg Tablet', 'For how long should I continue Levrom 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levrom 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levrom 5mg Tablet'),
(7051, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7052, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'Can I decrease the dose of Levrom-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7053, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'How should Levrom-M Syrup be stored?', 'Levrom-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7054, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'Can Levrom-M Syrup make my child sleepy?', 'Levrom-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7055, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levrom-M Syrup?', 'No, don’t start Levrom-M Syrup without speaking to your child’s doctor. Moreover, Levrom-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7056, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levrom-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7057, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levrom-M Syrup to my child?', 'Some studies show that Levrom-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7058, 'Levrom-M Syrup', 'Romas Remedies', 'Levrom-M Syrup', 'Can I use Levrom-M Syrup for treating acute asthma attacks in my child?', 'Levrom-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7059, 'Levrom-M Tablet', 'Romas Remedies', 'Levrom-M Tablet', 'What is Levrom-M Tablet?', 'Levrom-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7060, 'Levrom-M Tablet', 'Romas Remedies', 'Levrom-M Tablet', 'Can the use of Levrom-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levrom-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7061, 'Levrom-M Tablet', 'Romas Remedies', 'Levrom-M Tablet', 'Can Levrom-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levrom-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7062, 'Levrom-M Tablet', 'Romas Remedies', 'Levrom-M Tablet', 'Can the use of Levrom-M Tablet cause dry mouth?', 'Yes, the use of Levrom-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7063, 'Levrom-M Tablet', 'Romas Remedies', 'Levrom-M Tablet', 'Can I drink alcohol while taking Levrom-M Tablet?', 'No, do not take alcohol while taking Levrom-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levrom-M Tablet.'),
(7064, 'Levrom-M Tablet', 'Romas Remedies', 'Levrom-M Tablet', 'Will Levrom-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levrom-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7065, 'Levrom-M Tablet', 'Romas Remedies', 'Levrom-M Tablet', 'What are the instructions for storage and disposal of Levrom-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7066, 'Levron 500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron 500mg Tablet', 'Is Levron 500mg Tablet safe?', 'Levron 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7067, 'Levron 500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron 500mg Tablet', 'What if I forget to take a dose of Levron 500mg Tablet?', 'If you forget a dose of Levron 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7068, 'Levron 500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron 500mg Tablet', 'Can the use of Levron 500mg Tablet cause diarrhea?', 'Yes, the use of Levron 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7069, 'Levron 500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron 500mg Tablet', 'Can I stop taking Levron 500mg Tablet when I feel better?', 'No, do not stop taking Levron 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levron 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levron 500mg Tablet in the dose and duration advised by the doctor.'),
(7070, 'Levron 500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron 500mg Tablet', 'Can the use of Levron 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levron 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levron 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7071, 'Levron OZ 250mg/500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levron OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7072, 'Levron OZ 250mg/500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron OZ 250mg/500mg Tablet', 'Can I stop taking Levron OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levron OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(7073, 'Levron OZ 250mg/500mg Tablet', 'Cadwell Pharma Private Limited', 'Levron OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levron OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(7074, 'Levros 10mg Tablet', 'Crossford Healthcare', 'Levros 10mg Tablet', 'Is Levros 10mg Tablet a steroid? What is it used for?', 'No, Levros 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7075, 'Levros 10mg Tablet', 'Crossford Healthcare', 'Levros 10mg Tablet', 'Does Levros 10mg Tablet make you tired and drowsy?', 'Yes, Levros 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7076, 'Levros 10mg Tablet', 'Crossford Healthcare', 'Levros 10mg Tablet', 'How long does it take for Levros 10mg Tablet to work?', 'Levros 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7077, 'Levros 10mg Tablet', 'Crossford Healthcare', 'Levros 10mg Tablet', 'Can I take Levros 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levros 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7078, 'Levros 10mg Tablet', 'Crossford Healthcare', 'Levros 10mg Tablet', 'Is it safe to take Levros 10mg Tablet for a long time?', 'Levros 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levros 10mg Tablet for only as long as you need it.'),
(7079, 'Levros 10mg Tablet', 'Crossford Healthcare', 'Levros 10mg Tablet', 'For how long should I continue Levros 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levros 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levros 10mg Tablet'),
(7080, 'Levros 5mg Tablet', 'Crossford Healthcare', 'Levros 5mg Tablet', 'Is Levros 5mg Tablet a steroid? What is it used for?', 'No, Levros 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7081, 'Levros 5mg Tablet', 'Crossford Healthcare', 'Levros 5mg Tablet', 'Does Levros 5mg Tablet make you tired and drowsy?', 'Yes, Levros 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7082, 'Levros 5mg Tablet', 'Crossford Healthcare', 'Levros 5mg Tablet', 'How long does it take for Levros 5mg Tablet to work?', 'Levros 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7083, 'Levros 5mg Tablet', 'Crossford Healthcare', 'Levros 5mg Tablet', 'Can I take Levros 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levros 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7084, 'Levros 5mg Tablet', 'Crossford Healthcare', 'Levros 5mg Tablet', 'Is it safe to take Levros 5mg Tablet for a long time?', 'Levros 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levros 5mg Tablet for only as long as you need it.'),
(7085, 'Levros 5mg Tablet', 'Crossford Healthcare', 'Levros 5mg Tablet', 'For how long should I continue Levros 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levros 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levros 5mg Tablet'),
(7086, 'Levrow 10mg Tablet', 'Cadwell Pharma Private Limited', 'Levrow 10mg Tablet', 'Is Levrow 10mg Tablet a steroid? What is it used for?', 'No, Levrow 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7087, 'Levrow 10mg Tablet', 'Cadwell Pharma Private Limited', 'Levrow 10mg Tablet', 'Does Levrow 10mg Tablet make you tired and drowsy?', 'Yes, Levrow 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7088, 'Levrow 10mg Tablet', 'Cadwell Pharma Private Limited', 'Levrow 10mg Tablet', 'How long does it take for Levrow 10mg Tablet to work?', 'Levrow 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7089, 'Levrow 10mg Tablet', 'Cadwell Pharma Private Limited', 'Levrow 10mg Tablet', 'Can I take Levrow 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levrow 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7090, 'Levrow 10mg Tablet', 'Cadwell Pharma Private Limited', 'Levrow 10mg Tablet', 'Is it safe to take Levrow 10mg Tablet for a long time?', 'Levrow 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levrow 10mg Tablet for only as long as you need it.'),
(7091, 'Levrow 10mg Tablet', 'Cadwell Pharma Private Limited', 'Levrow 10mg Tablet', 'For how long should I continue Levrow 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levrow 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levrow 10mg Tablet');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7092, 'Levrow 2.5mg Syrup', 'Cadwell Pharma Private Limited', 'Levrow 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Levrow 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(7093, 'Levrow 2.5mg Syrup', 'Cadwell Pharma Private Limited', 'Levrow 2.5mg Syrup', 'Can other medicines be given at the same time as Levrow 2.5mg Syrup?', 'Levrow 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Levrow 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(7094, 'Levrow 2.5mg Syrup', 'Cadwell Pharma Private Limited', 'Levrow 2.5mg Syrup', 'How much Levrow 2.5mg Syrup should I give to my child?', 'Levrow 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(7095, 'Levrow 2.5mg Syrup', 'Cadwell Pharma Private Limited', 'Levrow 2.5mg Syrup', 'What if I give too much of Levrow 2.5mg Syrup by mistake?', 'Although Levrow 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(7096, 'Levrow 2.5mg Syrup', 'Cadwell Pharma Private Limited', 'Levrow 2.5mg Syrup', 'How should Levrow 2.5mg Syrup be stored?', 'Store Levrow 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7097, 'Levrow 2.5mg Syrup', 'Cadwell Pharma Private Limited', 'Levrow 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(7098, 'Levrow 5 Tablet', 'Cadwell Pharma Private Limited', 'Levrow 5 Tablet', 'Is Levrow 5 Tablet a steroid? What is it used for?', 'No, Levrow 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7099, 'Levrow 5 Tablet', 'Cadwell Pharma Private Limited', 'Levrow 5 Tablet', 'Does Levrow 5 Tablet make you tired and drowsy?', 'Yes, Levrow 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7100, 'Levrow 5 Tablet', 'Cadwell Pharma Private Limited', 'Levrow 5 Tablet', 'How long does it take for Levrow 5 Tablet to work?', 'Levrow 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7101, 'Levrow 5 Tablet', 'Cadwell Pharma Private Limited', 'Levrow 5 Tablet', 'Can I take Levrow 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levrow 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7102, 'Levrow 5 Tablet', 'Cadwell Pharma Private Limited', 'Levrow 5 Tablet', 'Is it safe to take Levrow 5 Tablet for a long time?', 'Levrow 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levrow 5 Tablet for only as long as you need it.'),
(7103, 'Levrow 5 Tablet', 'Cadwell Pharma Private Limited', 'Levrow 5 Tablet', 'For how long should I continue Levrow 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levrow 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levrow 5 Tablet'),
(7104, 'Levrow FX 10mg/120mg Chewable Tablet', 'Cadwell Pharma Private Limited', 'Levrow FX 10mg/120mg Chewable Tablet', 'What is Levrow FX 10mg/120mg Chewable Tablet ?', 'Levrow FX 10mg/120mg Chewable Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(7105, 'Levrow FX 10mg/120mg Chewable Tablet', 'Cadwell Pharma Private Limited', 'Levrow FX 10mg/120mg Chewable Tablet', 'Can Levrow FX 10mg/120mg Chewable Tablet be stopped when allergy symptoms are relieved?', 'No, Levrow FX 10mg/120mg Chewable Tablet should be continued as advised by the doctor. If any problems are experienced due to Levrow FX 10mg/120mg Chewable Tablet, consult the doctor for re-evaluation.'),
(7106, 'Levrow FX 10mg/120mg Chewable Tablet', 'Cadwell Pharma Private Limited', 'Levrow FX 10mg/120mg Chewable Tablet', 'Can the use of Levrow FX 10mg/120mg Chewable Tablet cause dizziness?', 'Yes, the use of Levrow FX 10mg/120mg Chewable Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(7107, 'Levrow FX 10mg/120mg Chewable Tablet', 'Cadwell Pharma Private Limited', 'Levrow FX 10mg/120mg Chewable Tablet', 'What should be avoided in food while taking Levrow FX 10mg/120mg Chewable Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levrow FX 10mg/120mg Chewable Tablet as it might increase the severity of drowsiness or sleepiness caused by Levrow FX 10mg/120mg Chewable Tablet.'),
(7108, 'Levrow FX 10mg/120mg Chewable Tablet', 'Cadwell Pharma Private Limited', 'Levrow FX 10mg/120mg Chewable Tablet', 'Will Levrow FX 10mg/120mg Chewable Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7109, 'Levrow FX 10mg/120mg Chewable Tablet', 'Cadwell Pharma Private Limited', 'Levrow FX 10mg/120mg Chewable Tablet', 'What is the recommended storage condition for Levrow FX 10mg/120mg Chewable Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7110, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7111, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Can I decrease the dose of Levrow M Kid 2.5mg/4mg Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7112, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'How should Levrow M Kid 2.5mg/4mg Tablet DT be stored?', 'Levrow M Kid 2.5mg/4mg Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7113, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Can Levrow M Kid 2.5mg/4mg Tablet DT make my child sleepy?', 'Levrow M Kid 2.5mg/4mg Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7114, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levrow M Kid 2.5mg/4mg Tablet DT?', 'No, don’t start Levrow M Kid 2.5mg/4mg Tablet DT without speaking to your child’s doctor. Moreover, Levrow M Kid 2.5mg/4mg Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7115, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levrow M Kid 2.5mg/4mg Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7116, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'My child is suffering from a mood disorder. Is it safe to give Levrow M Kid 2.5mg/4mg Tablet DT to my child?', 'Some studies show that Levrow M Kid 2.5mg/4mg Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7117, 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Cadwell Pharma Private Limited', 'Levrow M Kid 2.5mg/4mg Tablet DT', 'Can I use Levrow M Kid 2.5mg/4mg Tablet DT for treating acute asthma attacks in my child?', 'Levrow M Kid 2.5mg/4mg Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7118, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7119, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'Can I decrease the dose of Levrow M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7120, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'How should Levrow M Syrup be stored?', 'Levrow M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7121, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'Can Levrow M Syrup make my child sleepy?', 'Levrow M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7122, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levrow M Syrup?', 'No, don’t start Levrow M Syrup without speaking to your child’s doctor. Moreover, Levrow M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7123, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levrow M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7124, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levrow M Syrup to my child?', 'Some studies show that Levrow M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7125, 'Levrow M Syrup', 'Cadwell Pharma Private Limited', 'Levrow M Syrup', 'Can I use Levrow M Syrup for treating acute asthma attacks in my child?', 'Levrow M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7126, 'Levrow-M Tablet', 'Cadwell Pharma Private Limited', 'Levrow-M Tablet', 'What is Levrow-M Tablet?', 'Levrow-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7127, 'Levrow-M Tablet', 'Cadwell Pharma Private Limited', 'Levrow-M Tablet', 'Can the use of Levrow-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levrow-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7128, 'Levrow-M Tablet', 'Cadwell Pharma Private Limited', 'Levrow-M Tablet', 'Can Levrow-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levrow-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7129, 'Levrow-M Tablet', 'Cadwell Pharma Private Limited', 'Levrow-M Tablet', 'Can the use of Levrow-M Tablet cause dry mouth?', 'Yes, the use of Levrow-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7130, 'Levrow-M Tablet', 'Cadwell Pharma Private Limited', 'Levrow-M Tablet', 'Can I drink alcohol while taking Levrow-M Tablet?', 'No, do not take alcohol while taking Levrow-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levrow-M Tablet.'),
(7131, 'Levrow-M Tablet', 'Cadwell Pharma Private Limited', 'Levrow-M Tablet', 'Will Levrow-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levrow-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7132, 'Levrow-M Tablet', 'Cadwell Pharma Private Limited', 'Levrow-M Tablet', 'What are the instructions for storage and disposal of Levrow-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7133, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'Can the use of Levroxa 1000mg Tablet cause sleepiness?', 'Yes, Levroxa 1000mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7134, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'Will the use of Levroxa 1000mg Tablet affect my fertility?', 'Levroxa 1000mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7135, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'I have gained weight since I started taking Levroxa 1000mg Tablet. Is it because of Levroxa 1000mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levroxa 1000mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7136, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'How long does Levroxa 1000mg Tablet take to show its effect?', 'Levroxa 1000mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levroxa 1000mg Tablet starts working completely.'),
(7137, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'For how long do I need to take Levroxa 1000mg Tablet?', 'You should continue to take Levroxa 1000mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7138, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'Will I get addicted to Levroxa 1000mg Tablet if I use it for a long time?', 'No, Levroxa 1000mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levroxa 1000mg Tablet. Consult your doctor if you experience any side effects.'),
(7139, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'What symptoms can occur if someone takes an excess of Levroxa 1000mg Tablet?', 'Taking an excess of Levroxa 1000mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7140, 'Levroxa 1000mg Tablet', 'Strides shasun Ltd', 'Levroxa 1000mg Tablet', 'How do I come off Levroxa 1000mg Tablet?', 'The dose of Levroxa 1000mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levroxa 1000mg Tablet straight away, even if you have epilepsy.'),
(7141, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. Will the use of Levroxa 100mg Injection affect my fertility?', 'Levroxa 100mg Injection is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7142, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. Can the use of Levroxa 100mg Injection cause sleepiness?', 'Yes, Levroxa 100mg Injection can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7143, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. I have gained weight since I started taking Levroxa 100mg Injection. Is it because of Levroxa 100mg Injection? What should I do?', 'Weight gain is an uncommon side effect of Levroxa 100mg Injection. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7144, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. How long does Levroxa 100mg Injection take to show its effect?', 'Levroxa 100mg Injection may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levroxa 100mg Injection starts working completely.'),
(7145, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. For how long do I need to take Levroxa 100mg Injection?', 'You should continue to take Levroxa 100mg Injection for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7146, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. Can I drink alcohol with Levroxa 100mg Injection?', 'Yes, you may drink alcohol while taking Levroxa 100mg Injection. Alcohol itself does not affect the way Levroxa 100mg Injection works. However, alcohol can increase the sleepiness or dizziness that occur as side effects of Levroxa 100mg Injection in some individuals. Therefore, you should avoid alcohol while taking Levroxa 100mg Injection until you know how it affects you.'),
(7147, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. Will I get addicted to Levroxa 100mg Injection if I use it for a long time?', 'No, Levroxa 100mg Injection is not habit-forming. No physical or psychological dependence has been reported with Levroxa 100mg Injection. Consult your doctor if you experience any side effects.'),
(7148, 'Levroxa 100mg Injection', 'Eris Lifesciences Ltd', 'Levroxa 100mg Injection', 'Q. What symptoms can occur if someone takes an excess of Levroxa 100mg Injection?', 'Taking an excess of Levroxa 100mg Injection may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7149, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. Can the use of Levroxa 250mg Tablet cause sleepiness?', 'Yes, Levroxa 250mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7150, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. Will the use of Levroxa 250mg Tablet affect my fertility?', 'Levroxa 250mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7151, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. I have gained weight since I started taking Levroxa 250mg Tablet. Is it because of Levroxa 250mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levroxa 250mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7152, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. How long does Levroxa 250mg Tablet take to show its effect?', 'Levroxa 250mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levroxa 250mg Tablet starts working completely.'),
(7153, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. For how long do I need to take Levroxa 250mg Tablet?', 'You should continue to take Levroxa 250mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7154, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. Will I get addicted to Levroxa 250mg Tablet if I use it for a long time?', 'No, Levroxa 250mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levroxa 250mg Tablet. Consult your doctor if you experience any side effects.'),
(7155, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. What symptoms can occur if someone takes an excess of Levroxa 250mg Tablet?', 'Taking an excess of Levroxa 250mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7156, 'Levroxa 250mg Tablet', 'Strides shasun Ltd', 'Levroxa 250mg Tablet', 'Q. How do I come off Levroxa 250mg Tablet?', 'The dose of Levroxa 250mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levroxa 250mg Tablet straight away, even if you have epilepsy.'),
(7157, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'Can the use of Levroxa 500mg Tablet cause sleepiness?', 'Yes, Levroxa 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7158, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'Will the use of Levroxa 500mg Tablet affect my fertility?', 'Levroxa 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7159, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'I have gained weight since I started taking Levroxa 500mg Tablet. Is it because of Levroxa 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levroxa 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7160, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'How long does Levroxa 500mg Tablet take to show its effect?', 'Levroxa 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levroxa 500mg Tablet starts working completely.'),
(7161, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'For how long do I need to take Levroxa 500mg Tablet?', 'You should continue to take Levroxa 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7162, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'Will I get addicted to Levroxa 500mg Tablet if I use it for a long time?', 'No, Levroxa 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levroxa 500mg Tablet. Consult your doctor if you experience any side effects.'),
(7163, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'What symptoms can occur if someone takes an excess of Levroxa 500mg Tablet?', 'Taking an excess of Levroxa 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7164, 'Levroxa 500mg Tablet', 'Eris Lifesciences Ltd', 'Levroxa 500mg Tablet', 'How do I come off Levroxa 500mg Tablet?', 'The dose of Levroxa 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levroxa 500mg Tablet straight away, even if you have epilepsy.'),
(7165, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'Can the use of Levroxa 750mg Tablet cause sleepiness?', 'Yes, Levroxa 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7166, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'Will the use of Levroxa 750mg Tablet affect my fertility?', 'Levroxa 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7167, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'I have gained weight since I started taking Levroxa 750mg Tablet. Is it because of Levroxa 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levroxa 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7168, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'How long does Levroxa 750mg Tablet take to show its effect?', 'Levroxa 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levroxa 750mg Tablet starts working completely.'),
(7169, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'For how long do I need to take Levroxa 750mg Tablet?', 'You should continue to take Levroxa 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7170, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'Will I get addicted to Levroxa 750mg Tablet if I use it for a long time?', 'No, Levroxa 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levroxa 750mg Tablet. Consult your doctor if you experience any side effects.'),
(7171, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'What symptoms can occur if someone takes an excess of Levroxa 750mg Tablet?', 'Taking an excess of Levroxa 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7172, 'Levroxa 750mg Tablet', 'Strides shasun Ltd', 'Levroxa 750mg Tablet', 'How do I come off Levroxa 750mg Tablet?', 'The dose of Levroxa 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levroxa 750mg Tablet straight away, even if you have epilepsy.'),
(7173, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'Can the use of Levroxa Syrup cause sleepiness?', 'Yes, Levroxa Syrup can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7174, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'Will the use of Levroxa Syrup affect my fertility?', 'Levroxa Syrup is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7175, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'I have gained weight since I started taking Levroxa Syrup. Is it because of Levroxa Syrup? What should I do?', 'Weight gain is an uncommon side effect of Levroxa Syrup. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7176, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'How long does Levroxa Syrup take to show its effect?', 'Levroxa Syrup may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levroxa Syrup starts working completely.'),
(7177, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'For how long do I need to take Levroxa Syrup?', 'You should continue to take Levroxa Syrup for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7178, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'Will I get addicted to Levroxa Syrup if I use it for a long time?', 'No, Levroxa Syrup is not habit-forming. No physical or psychological dependence has been reported with Levroxa Syrup. Consult your doctor if you experience any side effects.'),
(7179, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'What symptoms can occur if someone takes an excess of Levroxa Syrup?', 'Taking an excess of Levroxa Syrup may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7180, 'Levroxa Syrup', 'Eris Lifesciences Ltd', 'Levroxa Syrup', 'How do I come off Levroxa Syrup?', 'The dose of Levroxa Syrup should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levroxa Syrup straight away, even if you have epilepsy.'),
(7181, 'Levroz 500mg Tablet', 'Arlak Biotech Pvt Ltd', 'Levroz 500mg Tablet', 'Is Levroz 500mg Tablet safe?', 'Levroz 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7182, 'Levroz 500mg Tablet', 'Arlak Biotech Pvt Ltd', 'Levroz 500mg Tablet', 'What if I forget to take a dose of Levroz 500mg Tablet?', 'If you forget a dose of Levroz 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7183, 'Levroz 500mg Tablet', 'Arlak Biotech Pvt Ltd', 'Levroz 500mg Tablet', 'Can the use of Levroz 500mg Tablet cause diarrhea?', 'Yes, the use of Levroz 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7184, 'Levroz 500mg Tablet', 'Arlak Biotech Pvt Ltd', 'Levroz 500mg Tablet', 'Can I stop taking Levroz 500mg Tablet when I feel better?', 'No, do not stop taking Levroz 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levroz 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levroz 500mg Tablet in the dose and duration advised by the doctor.'),
(7185, 'Levroz 500mg Tablet', 'Arlak Biotech Pvt Ltd', 'Levroz 500mg Tablet', 'Can the use of Levroz 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levroz 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levroz 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7186, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'Will the use of Levsalt EP 100mg Injection affect my fertility?', 'Levsalt EP 100mg Injection is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7187, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'Can the use of Levsalt EP 100mg Injection cause sleepiness?', 'Yes, Levsalt EP 100mg Injection can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7188, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'I have gained weight since I started taking Levsalt EP 100mg Injection. Is it because of Levsalt EP 100mg Injection? What should I do?', 'Weight gain is an uncommon side effect of Levsalt EP 100mg Injection. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7189, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'How long does Levsalt EP 100mg Injection take to show its effect?', 'Levsalt EP 100mg Injection may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levsalt EP 100mg Injection starts working completely.'),
(7190, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'For how long do I need to take Levsalt EP 100mg Injection?', 'You should continue to take Levsalt EP 100mg Injection for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7191, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'Can I drink alcohol with Levsalt EP 100mg Injection?', 'Yes, you may drink alcohol while taking Levsalt EP 100mg Injection. Alcohol itself does not affect the way Levsalt EP 100mg Injection works. However, alcohol can increase the sleepiness or dizziness that occur as side effects of Levsalt EP 100mg Injection in some individuals. Therefore, you should avoid alcohol while taking Levsalt EP 100mg Injection until you know how it affects you.'),
(7192, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'Will I get addicted to Levsalt EP 100mg Injection if I use it for a long time?', 'No, Levsalt EP 100mg Injection is not habit-forming. No physical or psychological dependence has been reported with Levsalt EP 100mg Injection. Consult your doctor if you experience any side effects.'),
(7193, 'Levsalt EP 100mg Injection', 'Vesuvius Pharma Private Limited', 'Levsalt EP 100mg Injection', 'What symptoms can occur if someone takes an excess of Levsalt EP 100mg Injection?', 'Taking an excess of Levsalt EP 100mg Injection may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7194, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'Can the use of Levsalt EP 250mg Tablet cause sleepiness?', 'Yes, Levsalt EP 250mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7195, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'Will the use of Levsalt EP 250mg Tablet affect my fertility?', 'Levsalt EP 250mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7196, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'I have gained weight since I started taking Levsalt EP 250mg Tablet. Is it because of Levsalt EP 250mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levsalt EP 250mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7197, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'How long does Levsalt EP 250mg Tablet take to show its effect?', 'Levsalt EP 250mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levsalt EP 250mg Tablet starts working completely.'),
(7198, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'For how long do I need to take Levsalt EP 250mg Tablet?', 'You should continue to take Levsalt EP 250mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7199, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'Will I get addicted to Levsalt EP 250mg Tablet if I use it for a long time?', 'No, Levsalt EP 250mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levsalt EP 250mg Tablet. Consult your doctor if you experience any side effects.'),
(7200, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'What symptoms can occur if someone takes an excess of Levsalt EP 250mg Tablet?', 'Taking an excess of Levsalt EP 250mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7201, 'Levsalt EP 250mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 250mg Tablet', 'How do I come off Levsalt EP 250mg Tablet?', 'The dose of Levsalt EP 250mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levsalt EP 250mg Tablet straight away, even if you have epilepsy.'),
(7202, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'Can the use of Levsalt EP 500mg Tablet cause sleepiness?', 'Yes, Levsalt EP 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7203, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'Will the use of Levsalt EP 500mg Tablet affect my fertility?', 'Levsalt EP 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7204, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'I have gained weight since I started taking Levsalt EP 500mg Tablet. Is it because of Levsalt EP 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levsalt EP 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7205, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'How long does Levsalt EP 500mg Tablet take to show its effect?', 'Levsalt EP 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levsalt EP 500mg Tablet starts working completely.'),
(7206, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'For how long do I need to take Levsalt EP 500mg Tablet?', 'You should continue to take Levsalt EP 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7207, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'Will I get addicted to Levsalt EP 500mg Tablet if I use it for a long time?', 'No, Levsalt EP 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levsalt EP 500mg Tablet. Consult your doctor if you experience any side effects.'),
(7208, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'What symptoms can occur if someone takes an excess of Levsalt EP 500mg Tablet?', 'Taking an excess of Levsalt EP 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7209, 'Levsalt EP 500mg Tablet', 'Vesuvius Pharma Private Limited', 'Levsalt EP 500mg Tablet', 'How do I come off Levsalt EP 500mg Tablet?', 'The dose of Levsalt EP 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levsalt EP 500mg Tablet straight away, even if you have epilepsy.'),
(7210, 'Levsco 500mg Tablet', 'Tyscon Pharmaceuticals', 'Levsco 500mg Tablet', 'Is Levsco 500mg Tablet safe?', 'Levsco 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7211, 'Levsco 500mg Tablet', 'Tyscon Pharmaceuticals', 'Levsco 500mg Tablet', 'What if I forget to take a dose of Levsco 500mg Tablet?', 'If you forget a dose of Levsco 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7212, 'Levsco 500mg Tablet', 'Tyscon Pharmaceuticals', 'Levsco 500mg Tablet', 'Can the use of Levsco 500mg Tablet cause diarrhea?', 'Yes, the use of Levsco 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7213, 'Levsco 500mg Tablet', 'Tyscon Pharmaceuticals', 'Levsco 500mg Tablet', 'Can I stop taking Levsco 500mg Tablet when I feel better?', 'No, do not stop taking Levsco 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levsco 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levsco 500mg Tablet in the dose and duration advised by the doctor.'),
(7214, 'Levsco 500mg Tablet', 'Tyscon Pharmaceuticals', 'Levsco 500mg Tablet', 'Can the use of Levsco 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levsco 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levsco 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7215, 'Levseep 5mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep 5mg Tablet', 'Is Levseep 5mg Tablet a steroid? What is it used for?', 'No, Levseep 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7216, 'Levseep 5mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep 5mg Tablet', 'Does Levseep 5mg Tablet make you tired and drowsy?', 'Yes, Levseep 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7217, 'Levseep 5mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep 5mg Tablet', 'How long does it take for Levseep 5mg Tablet to work?', 'Levseep 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7218, 'Levseep 5mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep 5mg Tablet', 'Can I take Levseep 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levseep 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7219, 'Levseep 5mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep 5mg Tablet', 'Is it safe to take Levseep 5mg Tablet for a long time?', 'Levseep 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levseep 5mg Tablet for only as long as you need it.'),
(7220, 'Levseep 5mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep 5mg Tablet', 'For how long should I continue Levseep 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levseep 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levseep 5mg Tablet'),
(7221, 'Levseep M 5mg/10mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep M 5mg/10mg Tablet', 'What is Levseep M 5mg/10mg Tablet?', 'Levseep M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7222, 'Levseep M 5mg/10mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep M 5mg/10mg Tablet', 'Can the use of Levseep M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levseep M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7223, 'Levseep M 5mg/10mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep M 5mg/10mg Tablet', 'Can Levseep M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levseep M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7224, 'Levseep M 5mg/10mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep M 5mg/10mg Tablet', 'Can the use of Levseep M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levseep M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7225, 'Levseep M 5mg/10mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levseep M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levseep M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levseep M 5mg/10mg Tablet.'),
(7226, 'Levseep M 5mg/10mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep M 5mg/10mg Tablet', 'Will Levseep M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levseep M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7227, 'Levseep M 5mg/10mg Tablet', 'Seepi Pharma Pvt Ltd', 'Levseep M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levseep M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7228, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7229, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'Can I decrease the dose of Levseep M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7230, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'How should Levseep M Syrup be stored?', 'Levseep M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7231, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'Can Levseep M Syrup make my child sleepy?', 'Levseep M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7232, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levseep M Syrup?', 'No, don’t start Levseep M Syrup without speaking to your child’s doctor. Moreover, Levseep M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7233, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levseep M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7234, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levseep M Syrup to my child?', 'Some studies show that Levseep M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7235, 'Levseep M Syrup', 'Seepi Pharma Pvt Ltd', 'Levseep M Syrup', 'Can I use Levseep M Syrup for treating acute asthma attacks in my child?', 'Levseep M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7236, 'Levsel 500mg Tablet', 'Brukem Life Care', 'Levsel 500mg Tablet', 'Is Levsel 500mg Tablet safe?', 'Levsel 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7237, 'Levsel 500mg Tablet', 'Brukem Life Care', 'Levsel 500mg Tablet', 'What if I forget to take a dose of Levsel 500mg Tablet?', 'If you forget a dose of Levsel 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7238, 'Levsel 500mg Tablet', 'Brukem Life Care', 'Levsel 500mg Tablet', 'Can the use of Levsel 500mg Tablet cause diarrhea?', 'Yes, the use of Levsel 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7239, 'Levsel 500mg Tablet', 'Brukem Life Care', 'Levsel 500mg Tablet', 'Can I stop taking Levsel 500mg Tablet when I feel better?', 'No, do not stop taking Levsel 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levsel 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levsel 500mg Tablet in the dose and duration advised by the doctor.'),
(7240, 'Levsel 500mg Tablet', 'Brukem Life Care', 'Levsel 500mg Tablet', 'Can the use of Levsel 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levsel 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levsel 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7241, 'Levsetle 10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 10mg Tablet', 'Is Levsetle 10mg Tablet a steroid? What is it used for?', 'No, Levsetle 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7242, 'Levsetle 10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 10mg Tablet', 'Does Levsetle 10mg Tablet make you tired and drowsy?', 'Yes, Levsetle 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7243, 'Levsetle 10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 10mg Tablet', 'How long does it take for Levsetle 10mg Tablet to work?', 'Levsetle 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7244, 'Levsetle 10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 10mg Tablet', 'Can I take Levsetle 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levsetle 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7245, 'Levsetle 10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 10mg Tablet', 'Is it safe to take Levsetle 10mg Tablet for a long time?', 'Levsetle 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levsetle 10mg Tablet for only as long as you need it.'),
(7246, 'Levsetle 10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 10mg Tablet', 'For how long should I continue Levsetle 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levsetle 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levsetle 10mg Tablet'),
(7247, 'Levsetle 5mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 5mg Tablet', 'Is Levsetle 5mg Tablet a steroid? What is it used for?', 'No, Levsetle 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7248, 'Levsetle 5mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 5mg Tablet', 'Does Levsetle 5mg Tablet make you tired and drowsy?', 'Yes, Levsetle 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7249, 'Levsetle 5mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 5mg Tablet', 'How long does it take for Levsetle 5mg Tablet to work?', 'Levsetle 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7250, 'Levsetle 5mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 5mg Tablet', 'Can I take Levsetle 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levsetle 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7251, 'Levsetle 5mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 5mg Tablet', 'Is it safe to take Levsetle 5mg Tablet for a long time?', 'Levsetle 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levsetle 5mg Tablet for only as long as you need it.'),
(7252, 'Levsetle 5mg Tablet', 'Taksa LIfe Sciences', 'Levsetle 5mg Tablet', 'For how long should I continue Levsetle 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levsetle 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levsetle 5mg Tablet'),
(7253, 'Levsetle M 5mg/10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M 5mg/10mg Tablet', 'What is Levsetle M 5mg/10mg Tablet?', 'Levsetle M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7254, 'Levsetle M 5mg/10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M 5mg/10mg Tablet', 'Can the use of Levsetle M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levsetle M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7255, 'Levsetle M 5mg/10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M 5mg/10mg Tablet', 'Can Levsetle M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levsetle M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7256, 'Levsetle M 5mg/10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M 5mg/10mg Tablet', 'Can the use of Levsetle M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levsetle M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7257, 'Levsetle M 5mg/10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levsetle M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levsetle M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levsetle M 5mg/10mg Tablet.'),
(7258, 'Levsetle M 5mg/10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M 5mg/10mg Tablet', 'Will Levsetle M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levsetle M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7259, 'Levsetle M 5mg/10mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levsetle M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7260, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7261, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levsetle M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7262, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'How should Levsetle M Kid 2.5mg/4mg Tablet be stored?', 'Levsetle M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7263, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'Can Levsetle M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levsetle M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7264, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levsetle M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levsetle M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levsetle M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7265, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levsetle M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7266, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levsetle M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levsetle M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7267, 'Levsetle M Kid 2.5mg/4mg Tablet', 'Taksa LIfe Sciences', 'Levsetle M Kid 2.5mg/4mg Tablet', 'Can I use Levsetle M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levsetle M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7268, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7269, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'Can I decrease the dose of Levsetle M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7270, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'How should Levsetle M Syrup be stored?', 'Levsetle M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7271, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'Can Levsetle M Syrup make my child sleepy?', 'Levsetle M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7272, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levsetle M Syrup?', 'No, don’t start Levsetle M Syrup without speaking to your child’s doctor. Moreover, Levsetle M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7273, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levsetle M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7274, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levsetle M Syrup to my child?', 'Some studies show that Levsetle M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7275, 'Levsetle M Syrup', 'Taksa LIfe Sciences', 'Levsetle M Syrup', 'Can I use Levsetle M Syrup for treating acute asthma attacks in my child?', 'Levsetle M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7276, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'Can the use of Levsia 500mg Tablet cause sleepiness?', 'Yes, Levsia 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7277, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'Will the use of Levsia 500mg Tablet affect my fertility?', 'Levsia 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7278, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'I have gained weight since I started taking Levsia 500mg Tablet. Is it because of Levsia 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levsia 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7279, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'How long does Levsia 500mg Tablet take to show its effect?', 'Levsia 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levsia 500mg Tablet starts working completely.'),
(7280, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'For how long do I need to take Levsia 500mg Tablet?', 'You should continue to take Levsia 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7281, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'Will I get addicted to Levsia 500mg Tablet if I use it for a long time?', 'No, Levsia 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levsia 500mg Tablet. Consult your doctor if you experience any side effects.'),
(7282, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'What symptoms can occur if someone takes an excess of Levsia 500mg Tablet?', 'Taking an excess of Levsia 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7283, 'Levsia 500mg Tablet', 'Curasia Medilabs', 'Levsia 500mg Tablet', 'How do I come off Levsia 500mg Tablet?', 'The dose of Levsia 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levsia 500mg Tablet straight away, even if you have epilepsy.'),
(7284, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7285, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'Can I decrease the dose of Levsit-M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7286, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'How should Levsit-M Oral Suspension be stored?', 'Levsit-M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7287, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'Can Levsit-M Oral Suspension make my child sleepy?', 'Levsit-M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7288, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levsit-M Oral Suspension?', 'No, don’t start Levsit-M Oral Suspension without speaking to your child’s doctor. Moreover, Levsit-M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7289, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levsit-M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7290, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levsit-M Oral Suspension to my child?', 'Some studies show that Levsit-M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7291, 'Levsit-M Oral Suspension', 'Torainse Life Care Pvt Ltd', 'Levsit-M Oral Suspension', 'Can I use Levsit-M Oral Suspension for treating acute asthma attacks in my child?', 'Levsit-M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7292, 'Levsit-M Tablet', 'Torainse Life Care Pvt Ltd', 'Levsit-M Tablet', 'What is Levsit-M Tablet?', 'Levsit-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7293, 'Levsit-M Tablet', 'Torainse Life Care Pvt Ltd', 'Levsit-M Tablet', 'Can the use of Levsit-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levsit-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7294, 'Levsit-M Tablet', 'Torainse Life Care Pvt Ltd', 'Levsit-M Tablet', 'Can Levsit-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levsit-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7295, 'Levsit-M Tablet', 'Torainse Life Care Pvt Ltd', 'Levsit-M Tablet', 'Can the use of Levsit-M Tablet cause dry mouth?', 'Yes, the use of Levsit-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7296, 'Levsit-M Tablet', 'Torainse Life Care Pvt Ltd', 'Levsit-M Tablet', 'Can I drink alcohol while taking Levsit-M Tablet?', 'No, do not take alcohol while taking Levsit-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levsit-M Tablet.'),
(7297, 'Levsit-M Tablet', 'Torainse Life Care Pvt Ltd', 'Levsit-M Tablet', 'Will Levsit-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levsit-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7298, 'Levsit-M Tablet', 'Torainse Life Care Pvt Ltd', 'Levsit-M Tablet', 'What are the instructions for storage and disposal of Levsit-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7299, 'Levstat 5mg Tablet', 'Astakind Biotech Private Limited', 'Levstat 5mg Tablet', 'Is Levstat 5mg Tablet a steroid? What is it used for?', 'No, Levstat 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7300, 'Levstat 5mg Tablet', 'Astakind Biotech Private Limited', 'Levstat 5mg Tablet', 'Does Levstat 5mg Tablet make you tired and drowsy?', 'Yes, Levstat 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7301, 'Levstat 5mg Tablet', 'Astakind Biotech Private Limited', 'Levstat 5mg Tablet', 'How long does it take for Levstat 5mg Tablet to work?', 'Levstat 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7302, 'Levstat 5mg Tablet', 'Astakind Biotech Private Limited', 'Levstat 5mg Tablet', 'Can I take Levstat 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levstat 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7303, 'Levstat 5mg Tablet', 'Astakind Biotech Private Limited', 'Levstat 5mg Tablet', 'Is it safe to take Levstat 5mg Tablet for a long time?', 'Levstat 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levstat 5mg Tablet for only as long as you need it.'),
(7304, 'Levstat 5mg Tablet', 'Astakind Biotech Private Limited', 'Levstat 5mg Tablet', 'For how long should I continue Levstat 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levstat 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levstat 5mg Tablet'),
(7305, 'Levster 5mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster 5mg Tablet', 'Is Levster 5mg Tablet a steroid? What is it used for?', 'No, Levster 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7306, 'Levster 5mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster 5mg Tablet', 'Does Levster 5mg Tablet make you tired and drowsy?', 'Yes, Levster 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7307, 'Levster 5mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster 5mg Tablet', 'How long does it take for Levster 5mg Tablet to work?', 'Levster 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7308, 'Levster 5mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster 5mg Tablet', 'Can I take Levster 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levster 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7309, 'Levster 5mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster 5mg Tablet', 'Is it safe to take Levster 5mg Tablet for a long time?', 'Levster 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levster 5mg Tablet for only as long as you need it.'),
(7310, 'Levster 5mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster 5mg Tablet', 'For how long should I continue Levster 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levster 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levster 5mg Tablet'),
(7311, 'Levster M 5mg/10mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster M 5mg/10mg Tablet', 'What is Levster M 5mg/10mg Tablet?', 'Levster M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7312, 'Levster M 5mg/10mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster M 5mg/10mg Tablet', 'Can the use of Levster M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levster M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7313, 'Levster M 5mg/10mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster M 5mg/10mg Tablet', 'Can Levster M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levster M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7314, 'Levster M 5mg/10mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster M 5mg/10mg Tablet', 'Can the use of Levster M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levster M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7315, 'Levster M 5mg/10mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levster M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levster M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levster M 5mg/10mg Tablet.'),
(7316, 'Levster M 5mg/10mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster M 5mg/10mg Tablet', 'Will Levster M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levster M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7317, 'Levster M 5mg/10mg Tablet', 'Alester Pharma Pvt Ltd', 'Levster M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levster M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7318, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7319, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'Can I decrease the dose of Levster M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7320, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'How should Levster M Syrup be stored?', 'Levster M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7321, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'Can Levster M Syrup make my child sleepy?', 'Levster M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7322, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levster M Syrup?', 'No, don’t start Levster M Syrup without speaking to your child’s doctor. Moreover, Levster M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7323, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levster M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7324, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levster M Syrup to my child?', 'Some studies show that Levster M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7325, 'Levster M Syrup', 'Alester Pharma Pvt Ltd', 'Levster M Syrup', 'Can I use Levster M Syrup for treating acute asthma attacks in my child?', 'Levster M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7326, 'Levswin 5 Tablet', 'Indmark Biotech Private Limited', 'Levswin 5 Tablet', 'Is Levswin 5 Tablet a steroid? What is it used for?', 'No, Levswin 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7327, 'Levswin 5 Tablet', 'Indmark Biotech Private Limited', 'Levswin 5 Tablet', 'Does Levswin 5 Tablet make you tired and drowsy?', 'Yes, Levswin 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7328, 'Levswin 5 Tablet', 'Indmark Biotech Private Limited', 'Levswin 5 Tablet', 'How long does it take for Levswin 5 Tablet to work?', 'Levswin 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7329, 'Levswin 5 Tablet', 'Indmark Biotech Private Limited', 'Levswin 5 Tablet', 'Can I take Levswin 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levswin 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7330, 'Levswin 5 Tablet', 'Indmark Biotech Private Limited', 'Levswin 5 Tablet', 'Is it safe to take Levswin 5 Tablet for a long time?', 'Levswin 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levswin 5 Tablet for only as long as you need it.'),
(7331, 'Levswin 5 Tablet', 'Indmark Biotech Private Limited', 'Levswin 5 Tablet', 'For how long should I continue Levswin 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levswin 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levswin 5 Tablet'),
(7332, 'Levsym M 5mg/10mg Tablet', 'Symlek Healthcare Private Limited', 'Levsym M 5mg/10mg Tablet', 'What is Levsym M 5mg/10mg Tablet?', 'Levsym M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7333, 'Levsym M 5mg/10mg Tablet', 'Symlek Healthcare Private Limited', 'Levsym M 5mg/10mg Tablet', 'Can the use of Levsym M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levsym M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7334, 'Levsym M 5mg/10mg Tablet', 'Symlek Healthcare Private Limited', 'Levsym M 5mg/10mg Tablet', 'Can Levsym M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levsym M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7335, 'Levsym M 5mg/10mg Tablet', 'Symlek Healthcare Private Limited', 'Levsym M 5mg/10mg Tablet', 'Can the use of Levsym M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levsym M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7336, 'Levsym M 5mg/10mg Tablet', 'Symlek Healthcare Private Limited', 'Levsym M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levsym M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levsym M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levsym M 5mg/10mg Tablet.'),
(7337, 'Levsym M 5mg/10mg Tablet', 'Symlek Healthcare Private Limited', 'Levsym M 5mg/10mg Tablet', 'Will Levsym M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levsym M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7338, 'Levsym M 5mg/10mg Tablet', 'Symlek Healthcare Private Limited', 'Levsym M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levsym M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7339, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7340, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'Can I decrease the dose of Levsym M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7341, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'How should Levsym M Syrup be stored?', 'Levsym M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7342, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'Can Levsym M Syrup make my child sleepy?', 'Levsym M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7343, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levsym M Syrup?', 'No, don’t start Levsym M Syrup without speaking to your child’s doctor. Moreover, Levsym M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7344, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levsym M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7345, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levsym M Syrup to my child?', 'Some studies show that Levsym M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7346, 'Levsym M Syrup', 'Symlek Healthcare Private Limited', 'Levsym M Syrup', 'Can I use Levsym M Syrup for treating acute asthma attacks in my child?', 'Levsym M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7347, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'Can the use of Levtam 100mg Syrup cause sleepiness?', 'Yes, Levtam 100mg Syrup can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7348, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'Will the use of Levtam 100mg Syrup affect my fertility?', 'Levtam 100mg Syrup is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7349, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'I have gained weight since I started taking Levtam 100mg Syrup. Is it because of Levtam 100mg Syrup? What should I do?', 'Weight gain is an uncommon side effect of Levtam 100mg Syrup. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7350, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'How long does Levtam 100mg Syrup take to show its effect?', 'Levtam 100mg Syrup may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtam 100mg Syrup starts working completely.'),
(7351, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'For how long do I need to take Levtam 100mg Syrup?', 'You should continue to take Levtam 100mg Syrup for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7352, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'Will I get addicted to Levtam 100mg Syrup if I use it for a long time?', 'No, Levtam 100mg Syrup is not habit-forming. No physical or psychological dependence has been reported with Levtam 100mg Syrup. Consult your doctor if you experience any side effects.'),
(7353, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'What symptoms can occur if someone takes an excess of Levtam 100mg Syrup?', 'Taking an excess of Levtam 100mg Syrup may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7354, 'Levtam 100mg Syrup', 'Torrent Pharmaceuticals Ltd', 'Levtam 100mg Syrup', 'How do I come off Levtam 100mg Syrup?', 'The dose of Levtam 100mg Syrup should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtam 100mg Syrup straight away, even if you have epilepsy.'),
(7355, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'Can the use of Levtam 250 Tablet cause sleepiness?', 'Yes, Levtam 250 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7356, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'Will the use of Levtam 250 Tablet affect my fertility?', 'Levtam 250 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7357, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'I have gained weight since I started taking Levtam 250 Tablet. Is it because of Levtam 250 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtam 250 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7358, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'How long does Levtam 250 Tablet take to show its effect?', 'Levtam 250 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtam 250 Tablet starts working completely.'),
(7359, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'For how long do I need to take Levtam 250 Tablet?', 'You should continue to take Levtam 250 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7360, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'Will I get addicted to Levtam 250 Tablet if I use it for a long time?', 'No, Levtam 250 Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtam 250 Tablet. Consult your doctor if you experience any side effects.'),
(7361, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'What symptoms can occur if someone takes an excess of Levtam 250 Tablet?', 'Taking an excess of Levtam 250 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7362, 'Levtam 250 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 250 Tablet', 'How do I come off Levtam 250 Tablet?', 'The dose of Levtam 250 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtam 250 Tablet straight away, even if you have epilepsy.'),
(7363, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'Can the use of Levtam 500 Tablet cause sleepiness?', 'Yes, Levtam 500 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7364, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'Will the use of Levtam 500 Tablet affect my fertility?', 'Levtam 500 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7365, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'I have gained weight since I started taking Levtam 500 Tablet. Is it because of Levtam 500 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtam 500 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7366, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'How long does Levtam 500 Tablet take to show its effect?', 'Levtam 500 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtam 500 Tablet starts working completely.'),
(7367, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'For how long do I need to take Levtam 500 Tablet?', 'You should continue to take Levtam 500 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7368, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'Will I get addicted to Levtam 500 Tablet if I use it for a long time?', 'No, Levtam 500 Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtam 500 Tablet. Consult your doctor if you experience any side effects.'),
(7369, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'What symptoms can occur if someone takes an excess of Levtam 500 Tablet?', 'Taking an excess of Levtam 500 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7370, 'Levtam 500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 500 Tablet', 'How do I come off Levtam 500 Tablet?', 'The dose of Levtam 500 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtam 500 Tablet straight away, even if you have epilepsy.'),
(7371, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'Can the use of Levtam 750mg Tablet cause sleepiness?', 'Yes, Levtam 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7372, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'Will the use of Levtam 750mg Tablet affect my fertility?', 'Levtam 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7373, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'I have gained weight since I started taking Levtam 750mg Tablet. Is it because of Levtam 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtam 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7374, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'How long does Levtam 750mg Tablet take to show its effect?', 'Levtam 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtam 750mg Tablet starts working completely.'),
(7375, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'For how long do I need to take Levtam 750mg Tablet?', 'You should continue to take Levtam 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7376, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'Will I get addicted to Levtam 750mg Tablet if I use it for a long time?', 'No, Levtam 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtam 750mg Tablet. Consult your doctor if you experience any side effects.'),
(7377, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'What symptoms can occur if someone takes an excess of Levtam 750mg Tablet?', 'Taking an excess of Levtam 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7378, 'Levtam 750mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Levtam 750mg Tablet', 'How do I come off Levtam 750mg Tablet?', 'The dose of Levtam 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtam 750mg Tablet straight away, even if you have epilepsy.'),
(7379, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'Can the use of Levtary 1000mg Tablet cause sleepiness?', 'Yes, Levtary 1000mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7380, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'Will the use of Levtary 1000mg Tablet affect my fertility?', 'Levtary 1000mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7381, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'I have gained weight since I started taking Levtary 1000mg Tablet. Is it because of Levtary 1000mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtary 1000mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7382, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'How long does Levtary 1000mg Tablet take to show its effect?', 'Levtary 1000mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtary 1000mg Tablet starts working completely.'),
(7383, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'For how long do I need to take Levtary 1000mg Tablet?', 'You should continue to take Levtary 1000mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7384, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'Will I get addicted to Levtary 1000mg Tablet if I use it for a long time?', 'No, Levtary 1000mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtary 1000mg Tablet. Consult your doctor if you experience any side effects.'),
(7385, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'What symptoms can occur if someone takes an excess of Levtary 1000mg Tablet?', 'Taking an excess of Levtary 1000mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7386, 'Levtary 1000mg Tablet', 'Trion Pharma India Llp', 'Levtary 1000mg Tablet', 'How do I come off Levtary 1000mg Tablet?', 'The dose of Levtary 1000mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtary 1000mg Tablet straight away, even if you have epilepsy.'),
(7387, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'Can the use of Levtary 250mg Tablet cause sleepiness?', 'Yes, Levtary 250mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7388, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'Will the use of Levtary 250mg Tablet affect my fertility?', 'Levtary 250mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7389, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'I have gained weight since I started taking Levtary 250mg Tablet. Is it because of Levtary 250mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtary 250mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7390, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'How long does Levtary 250mg Tablet take to show its effect?', 'Levtary 250mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtary 250mg Tablet starts working completely.'),
(7391, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'For how long do I need to take Levtary 250mg Tablet?', 'You should continue to take Levtary 250mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7392, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'Will I get addicted to Levtary 250mg Tablet if I use it for a long time?', 'No, Levtary 250mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtary 250mg Tablet. Consult your doctor if you experience any side effects.'),
(7393, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'What symptoms can occur if someone takes an excess of Levtary 250mg Tablet?', 'Taking an excess of Levtary 250mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7394, 'Levtary 250mg Tablet', 'Trion Pharma India Llp', 'Levtary 250mg Tablet', 'How do I come off Levtary 250mg Tablet?', 'The dose of Levtary 250mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtary 250mg Tablet straight away, even if you have epilepsy.'),
(7395, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'Can the use of Levtary 500mg Tablet cause sleepiness?', 'Yes, Levtary 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7396, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'Will the use of Levtary 500mg Tablet affect my fertility?', 'Levtary 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7397, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'I have gained weight since I started taking Levtary 500mg Tablet. Is it because of Levtary 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtary 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7398, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'How long does Levtary 500mg Tablet take to show its effect?', 'Levtary 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtary 500mg Tablet starts working completely.'),
(7399, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'For how long do I need to take Levtary 500mg Tablet?', 'You should continue to take Levtary 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7400, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'Will I get addicted to Levtary 500mg Tablet if I use it for a long time?', 'No, Levtary 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtary 500mg Tablet. Consult your doctor if you experience any side effects.'),
(7401, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'What symptoms can occur if someone takes an excess of Levtary 500mg Tablet?', 'Taking an excess of Levtary 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7402, 'Levtary 500mg Tablet', 'Trion Pharma India Llp', 'Levtary 500mg Tablet', 'How do I come off Levtary 500mg Tablet?', 'The dose of Levtary 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtary 500mg Tablet straight away, even if you have epilepsy.'),
(7403, 'Levtelo Tablet', 'Abrowell Pharmaceuticals', 'Levtelo Tablet', 'Is Levtelo Tablet a steroid? What is it used for?', 'No, Levtelo Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7404, 'Levtelo Tablet', 'Abrowell Pharmaceuticals', 'Levtelo Tablet', 'Does Levtelo Tablet make you tired and drowsy?', 'Yes, Levtelo Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7405, 'Levtelo Tablet', 'Abrowell Pharmaceuticals', 'Levtelo Tablet', 'How long does it take for Levtelo Tablet to work?', 'Levtelo Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7406, 'Levtelo Tablet', 'Abrowell Pharmaceuticals', 'Levtelo Tablet', 'Can I take Levtelo Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levtelo Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7407, 'Levtelo Tablet', 'Abrowell Pharmaceuticals', 'Levtelo Tablet', 'Is it safe to take Levtelo Tablet for a long time?', 'Levtelo Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levtelo Tablet for only as long as you need it.'),
(7408, 'Levtelo Tablet', 'Abrowell Pharmaceuticals', 'Levtelo Tablet', 'For how long should I continue Levtelo Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levtelo Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levtelo Tablet'),
(7409, 'Levtelo-M Tablet', 'Abrowell Pharmaceuticals', 'Levtelo-M Tablet', 'What is Levtelo-M Tablet?', 'Levtelo-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7410, 'Levtelo-M Tablet', 'Abrowell Pharmaceuticals', 'Levtelo-M Tablet', 'Can the use of Levtelo-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levtelo-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7411, 'Levtelo-M Tablet', 'Abrowell Pharmaceuticals', 'Levtelo-M Tablet', 'Can Levtelo-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levtelo-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7412, 'Levtelo-M Tablet', 'Abrowell Pharmaceuticals', 'Levtelo-M Tablet', 'Can the use of Levtelo-M Tablet cause dry mouth?', 'Yes, the use of Levtelo-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7413, 'Levtelo-M Tablet', 'Abrowell Pharmaceuticals', 'Levtelo-M Tablet', 'Can I drink alcohol while taking Levtelo-M Tablet?', 'No, do not take alcohol while taking Levtelo-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levtelo-M Tablet.'),
(7414, 'Levtelo-M Tablet', 'Abrowell Pharmaceuticals', 'Levtelo-M Tablet', 'Will Levtelo-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levtelo-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7415, 'Levtelo-M Tablet', 'Abrowell Pharmaceuticals', 'Levtelo-M Tablet', 'What are the instructions for storage and disposal of Levtelo-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7416, 'Levtid 500mg Tablet', 'Sia Pharma Pvt Ltd', 'Levtid 500mg Tablet', 'Is Levtid 500mg Tablet safe?', 'Levtid 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7417, 'Levtid 500mg Tablet', 'Sia Pharma Pvt Ltd', 'Levtid 500mg Tablet', 'What if I forget to take a dose of Levtid 500mg Tablet?', 'If you forget a dose of Levtid 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7418, 'Levtid 500mg Tablet', 'Sia Pharma Pvt Ltd', 'Levtid 500mg Tablet', 'Can the use of Levtid 500mg Tablet cause diarrhea?', 'Yes, the use of Levtid 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7419, 'Levtid 500mg Tablet', 'Sia Pharma Pvt Ltd', 'Levtid 500mg Tablet', 'Can I stop taking Levtid 500mg Tablet when I feel better?', 'No, do not stop taking Levtid 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levtid 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levtid 500mg Tablet in the dose and duration advised by the doctor.'),
(7420, 'Levtid 500mg Tablet', 'Sia Pharma Pvt Ltd', 'Levtid 500mg Tablet', 'Can the use of Levtid 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levtid 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levtid 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7421, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'Can the use of Levtock 1000mg Tablet cause sleepiness?', 'Yes, Levtock 1000mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7422, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'Will the use of Levtock 1000mg Tablet affect my fertility?', 'Levtock 1000mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7423, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'I have gained weight since I started taking Levtock 1000mg Tablet. Is it because of Levtock 1000mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtock 1000mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7424, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'How long does Levtock 1000mg Tablet take to show its effect?', 'Levtock 1000mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtock 1000mg Tablet starts working completely.'),
(7425, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'For how long do I need to take Levtock 1000mg Tablet?', 'You should continue to take Levtock 1000mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7426, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'Will I get addicted to Levtock 1000mg Tablet if I use it for a long time?', 'No, Levtock 1000mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtock 1000mg Tablet. Consult your doctor if you experience any side effects.'),
(7427, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'What symptoms can occur if someone takes an excess of Levtock 1000mg Tablet?', 'Taking an excess of Levtock 1000mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7428, 'Levtock 1000mg Tablet', 'Kuresys Labs', 'Levtock 1000mg Tablet', 'How do I come off Levtock 1000mg Tablet?', 'The dose of Levtock 1000mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtock 1000mg Tablet straight away, even if you have epilepsy.'),
(7429, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'Can the use of Levtock 250mg Tablet cause sleepiness?', 'Yes, Levtock 250mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7430, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'Will the use of Levtock 250mg Tablet affect my fertility?', 'Levtock 250mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7431, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'I have gained weight since I started taking Levtock 250mg Tablet. Is it because of Levtock 250mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtock 250mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7432, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'How long does Levtock 250mg Tablet take to show its effect?', 'Levtock 250mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtock 250mg Tablet starts working completely.'),
(7433, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'For how long do I need to take Levtock 250mg Tablet?', 'You should continue to take Levtock 250mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7434, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'Will I get addicted to Levtock 250mg Tablet if I use it for a long time?', 'No, Levtock 250mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtock 250mg Tablet. Consult your doctor if you experience any side effects.'),
(7435, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'What symptoms can occur if someone takes an excess of Levtock 250mg Tablet?', 'Taking an excess of Levtock 250mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7436, 'Levtock 250mg Tablet', 'Kuresys Labs', 'Levtock 250mg Tablet', 'How do I come off Levtock 250mg Tablet?', 'The dose of Levtock 250mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtock 250mg Tablet straight away, even if you have epilepsy.'),
(7437, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'Can the use of Levtock 750mg Tablet cause sleepiness?', 'Yes, Levtock 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7438, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'Will the use of Levtock 750mg Tablet affect my fertility?', 'Levtock 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7439, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'I have gained weight since I started taking Levtock 750mg Tablet. Is it because of Levtock 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtock 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7440, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'How long does Levtock 750mg Tablet take to show its effect?', 'Levtock 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtock 750mg Tablet starts working completely.'),
(7441, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'For how long do I need to take Levtock 750mg Tablet?', 'You should continue to take Levtock 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7442, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'Will I get addicted to Levtock 750mg Tablet if I use it for a long time?', 'No, Levtock 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtock 750mg Tablet. Consult your doctor if you experience any side effects.'),
(7443, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'What symptoms can occur if someone takes an excess of Levtock 750mg Tablet?', 'Taking an excess of Levtock 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7444, 'Levtock 750mg Tablet', 'Kuresys Labs', 'Levtock 750mg Tablet', 'How do I come off Levtock 750mg Tablet?', 'The dose of Levtock 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtock 750mg Tablet straight away, even if you have epilepsy.'),
(7445, 'Levton 10mg Tablet', 'Cureton Biotech', 'Levton 10mg Tablet', 'Is Levton 10mg Tablet a steroid? What is it used for?', 'No, Levton 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7446, 'Levton 10mg Tablet', 'Cureton Biotech', 'Levton 10mg Tablet', 'Does Levton 10mg Tablet make you tired and drowsy?', 'Yes, Levton 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7447, 'Levton 10mg Tablet', 'Cureton Biotech', 'Levton 10mg Tablet', 'How long does it take for Levton 10mg Tablet to work?', 'Levton 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7448, 'Levton 10mg Tablet', 'Cureton Biotech', 'Levton 10mg Tablet', 'Can I take Levton 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levton 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7449, 'Levton 10mg Tablet', 'Cureton Biotech', 'Levton 10mg Tablet', 'Is it safe to take Levton 10mg Tablet for a long time?', 'Levton 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levton 10mg Tablet for only as long as you need it.'),
(7450, 'Levton 10mg Tablet', 'Cureton Biotech', 'Levton 10mg Tablet', 'For how long should I continue Levton 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levton 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levton 10mg Tablet'),
(7451, 'Levton 5mg Syrup', 'Cureton Biotech', 'Levton 5mg Syrup', 'Is Levton 5mg Syrup a steroid? What is it used for?', 'No, Levton 5mg Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7452, 'Levton 5mg Syrup', 'Cureton Biotech', 'Levton 5mg Syrup', 'Does Levton 5mg Syrup make you tired and drowsy?', 'Yes, Levton 5mg Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7453, 'Levton 5mg Syrup', 'Cureton Biotech', 'Levton 5mg Syrup', 'How long does it take for Levton 5mg Syrup to work?', 'Levton 5mg Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7454, 'Levton 5mg Syrup', 'Cureton Biotech', 'Levton 5mg Syrup', 'Can I take Levton 5mg Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levton 5mg Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7455, 'Levton 5mg Syrup', 'Cureton Biotech', 'Levton 5mg Syrup', 'Is it safe to take Levton 5mg Syrup for a long time?', 'Levton 5mg Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levton 5mg Syrup for only as long as you need it.'),
(7456, 'Levton 5mg Syrup', 'Cureton Biotech', 'Levton 5mg Syrup', 'For how long should I continue Levton 5mg Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levton 5mg Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Levton 5mg Syrup'),
(7457, 'Levton Tablet', 'Cureton Biotech', 'Levton Tablet', 'Is Levton Tablet a steroid? What is it used for?', 'No, Levton Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7458, 'Levton Tablet', 'Cureton Biotech', 'Levton Tablet', 'Does Levton Tablet make you tired and drowsy?', 'Yes, Levton Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7459, 'Levton Tablet', 'Cureton Biotech', 'Levton Tablet', 'How long does it take for Levton Tablet to work?', 'Levton Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7460, 'Levton Tablet', 'Cureton Biotech', 'Levton Tablet', 'Can I take Levton Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levton Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7461, 'Levton Tablet', 'Cureton Biotech', 'Levton Tablet', 'Is it safe to take Levton Tablet for a long time?', 'Levton Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levton Tablet for only as long as you need it.'),
(7462, 'Levton Tablet', 'Cureton Biotech', 'Levton Tablet', 'For how long should I continue Levton Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levton Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levton Tablet'),
(7463, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7464, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'Can I decrease the dose of Levton-M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7465, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'How should Levton-M Oral Suspension be stored?', 'Levton-M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7466, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'Can Levton-M Oral Suspension make my child sleepy?', 'Levton-M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7467, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levton-M Oral Suspension?', 'No, don’t start Levton-M Oral Suspension without speaking to your child’s doctor. Moreover, Levton-M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7468, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levton-M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7469, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Levton-M Oral Suspension to my child?', 'Some studies show that Levton-M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7470, 'Levton-M Oral Suspension', 'Cureton Biotech', 'Levton-M Oral Suspension', 'Can I use Levton-M Oral Suspension for treating acute asthma attacks in my child?', 'Levton-M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7471, 'Levton-M Tablet', 'Cureton Biotech', 'Levton-M Tablet', 'What is Levton-M Tablet?', 'Levton-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7472, 'Levton-M Tablet', 'Cureton Biotech', 'Levton-M Tablet', 'Can the use of Levton-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levton-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7473, 'Levton-M Tablet', 'Cureton Biotech', 'Levton-M Tablet', 'Can Levton-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levton-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7474, 'Levton-M Tablet', 'Cureton Biotech', 'Levton-M Tablet', 'Can the use of Levton-M Tablet cause dry mouth?', 'Yes, the use of Levton-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7475, 'Levton-M Tablet', 'Cureton Biotech', 'Levton-M Tablet', 'Can I drink alcohol while taking Levton-M Tablet?', 'No, do not take alcohol while taking Levton-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levton-M Tablet.'),
(7476, 'Levton-M Tablet', 'Cureton Biotech', 'Levton-M Tablet', 'Will Levton-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levton-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7477, 'Levton-M Tablet', 'Cureton Biotech', 'Levton-M Tablet', 'What are the instructions for storage and disposal of Levton-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7478, 'Levtor 500 Tablet', 'Vaxter Pharmaceuticals', 'Levtor 500 Tablet', 'Is Levtor 500 Tablet safe?', 'Levtor 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7479, 'Levtor 500 Tablet', 'Vaxter Pharmaceuticals', 'Levtor 500 Tablet', 'What if I forget to take a dose of Levtor 500 Tablet?', 'If you forget a dose of Levtor 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7480, 'Levtor 500 Tablet', 'Vaxter Pharmaceuticals', 'Levtor 500 Tablet', 'Can the use of Levtor 500 Tablet cause diarrhea?', 'Yes, the use of Levtor 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7481, 'Levtor 500 Tablet', 'Vaxter Pharmaceuticals', 'Levtor 500 Tablet', 'Can I stop taking Levtor 500 Tablet when I feel better?', 'No, do not stop taking Levtor 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levtor 500 Tablet too early, the symptoms may return or worsen. Continue taking Levtor 500 Tablet in the dose and duration advised by the doctor.'),
(7482, 'Levtor 500 Tablet', 'Vaxter Pharmaceuticals', 'Levtor 500 Tablet', 'Can the use of Levtor 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Levtor 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levtor 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7483, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'Can the use of Levtrasys 250 Tablet cause sleepiness?', 'Yes, Levtrasys 250 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7484, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'Will the use of Levtrasys 250 Tablet affect my fertility?', 'Levtrasys 250 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7485, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'I have gained weight since I started taking Levtrasys 250 Tablet. Is it because of Levtrasys 250 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtrasys 250 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7486, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'How long does Levtrasys 250 Tablet take to show its effect?', 'Levtrasys 250 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtrasys 250 Tablet starts working completely.'),
(7487, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'For how long do I need to take Levtrasys 250 Tablet?', 'You should continue to take Levtrasys 250 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7488, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'Will I get addicted to Levtrasys 250 Tablet if I use it for a long time?', 'No, Levtrasys 250 Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtrasys 250 Tablet. Consult your doctor if you experience any side effects.'),
(7489, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'What symptoms can occur if someone takes an excess of Levtrasys 250 Tablet?', 'Taking an excess of Levtrasys 250 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7490, 'Levtrasys 250 Tablet', 'Neosys Medicare', 'Levtrasys 250 Tablet', 'How do I come off Levtrasys 250 Tablet?', 'The dose of Levtrasys 250 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtrasys 250 Tablet straight away, even if you have epilepsy.'),
(7491, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'Can the use of Levtrasys 500mg Tablet cause sleepiness?', 'Yes, Levtrasys 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7492, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'Will the use of Levtrasys 500mg Tablet affect my fertility?', 'Levtrasys 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7493, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'I have gained weight since I started taking Levtrasys 500mg Tablet. Is it because of Levtrasys 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtrasys 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7494, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'How long does Levtrasys 500mg Tablet take to show its effect?', 'Levtrasys 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtrasys 500mg Tablet starts working completely.'),
(7495, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'For how long do I need to take Levtrasys 500mg Tablet?', 'You should continue to take Levtrasys 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7496, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'Will I get addicted to Levtrasys 500mg Tablet if I use it for a long time?', 'No, Levtrasys 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtrasys 500mg Tablet. Consult your doctor if you experience any side effects.'),
(7497, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'What symptoms can occur if someone takes an excess of Levtrasys 500mg Tablet?', 'Taking an excess of Levtrasys 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7498, 'Levtrasys 500mg Tablet', 'Neosys Medicare', 'Levtrasys 500mg Tablet', 'How do I come off Levtrasys 500mg Tablet?', 'The dose of Levtrasys 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtrasys 500mg Tablet straight away, even if you have epilepsy.'),
(7499, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'What is Levtrasys 750mcg/75mg Tablet?', 'Levtrasys 750mcg/75mg Tablet is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(7500, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'Can I stop taking Levtrasys 750mcg/75mg Tablet when my pain is relieved?', 'No, you should not stop taking Levtrasys 750mcg/75mg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Levtrasys 750mcg/75mg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Levtrasys 750mcg/75mg Tablet before you stop the medication completely.'),
(7501, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'How to manage weight gain associated with the use of Levtrasys 750mcg/75mg Tablet?', 'Levtrasys 750mcg/75mg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(7502, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'Can the use of Levtrasys 750mcg/75mg Tablet cause sleepiness or drowsiness?', 'Yes, Levtrasys 750mcg/75mg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(7503, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'Are there any serious side effects associated with the use of Levtrasys 750mcg/75mg Tablet?', 'Serious side effects caused because of the use of Levtrasys 750mcg/75mg Tablet are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Levtrasys 750mcg/75mg Tablet and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(7504, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'How long will the Levtrasys 750mcg/75mg Tablet take to act?', 'An initial benefit with Levtrasys 750mcg/75mg Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(7505, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'What if I forget to take Levtrasys 750mcg/75mg Tablet?', 'If you forget to take the scheduled dose of Levtrasys 750mcg/75mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(7506, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'Will a higher than the recommended dose of Levtrasys 750mcg/75mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(7507, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'Can I drink alcohol while taking Levtrasys 750mcg/75mg Tablet?', 'No, do not drink alcohol while taking Levtrasys 750mcg/75mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Levtrasys 750mcg/75mg Tablet.'),
(7508, 'Levtrasys 750mcg/75mg Tablet', 'Human Biolife India Pvt Ltd', 'Levtrasys 750mcg/75mg Tablet', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Levtrasys 750mcg/75mg Tablet. However, you must consult your doctor if the advised dosage of Levtrasys 750mcg/75mg Tablet does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(7509, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. Can the use of Levtrasys 750mg Tablet cause sleepiness?', 'Yes, Levtrasys 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(7510, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. Will the use of Levtrasys 750mg Tablet affect my fertility?', 'Levtrasys 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(7511, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. I have gained weight since I started taking Levtrasys 750mg Tablet. Is it because of Levtrasys 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Levtrasys 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(7512, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. How long does Levtrasys 750mg Tablet take to show its effect?', 'Levtrasys 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Levtrasys 750mg Tablet starts working completely.'),
(7513, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. For how long do I need to take Levtrasys 750mg Tablet?', 'You should continue to take Levtrasys 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(7514, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. Will I get addicted to Levtrasys 750mg Tablet if I use it for a long time?', 'No, Levtrasys 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Levtrasys 750mg Tablet. Consult your doctor if you experience any side effects.'),
(7515, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. What symptoms can occur if someone takes an excess of Levtrasys 750mg Tablet?', 'Taking an excess of Levtrasys 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(7516, 'Levtrasys 750mg Tablet', 'Neosys Medicare', 'Levtrasys 750mg Tablet', 'Q. How do I come off Levtrasys 750mg Tablet?', 'The dose of Levtrasys 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Levtrasys 750mg Tablet straight away, even if you have epilepsy.'),
(7517, 'Levtrizine 5mg Tablet', 'P R G Pharma Pvt Ltd', 'Levtrizine 5mg Tablet', 'Is Levtrizine 5mg Tablet a steroid? What is it used for?', 'No, Levtrizine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7518, 'Levtrizine 5mg Tablet', 'P R G Pharma Pvt Ltd', 'Levtrizine 5mg Tablet', 'Does Levtrizine 5mg Tablet make you tired and drowsy?', 'Yes, Levtrizine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7519, 'Levtrizine 5mg Tablet', 'P R G Pharma Pvt Ltd', 'Levtrizine 5mg Tablet', 'How long does it take for Levtrizine 5mg Tablet to work?', 'Levtrizine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7520, 'Levtrizine 5mg Tablet', 'P R G Pharma Pvt Ltd', 'Levtrizine 5mg Tablet', 'Can I take Levtrizine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levtrizine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7521, 'Levtrizine 5mg Tablet', 'P R G Pharma Pvt Ltd', 'Levtrizine 5mg Tablet', 'Is it safe to take Levtrizine 5mg Tablet for a long time?', 'Levtrizine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levtrizine 5mg Tablet for only as long as you need it.'),
(7522, 'Levtrizine 5mg Tablet', 'P R G Pharma Pvt Ltd', 'Levtrizine 5mg Tablet', 'For how long should I continue Levtrizine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levtrizine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levtrizine 5mg Tablet'),
(7523, 'Levtro 5mg Tablet', 'Victro Pharma', 'Levtro 5mg Tablet', 'Is Levtro 5mg Tablet a steroid? What is it used for?', 'No, Levtro 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7524, 'Levtro 5mg Tablet', 'Victro Pharma', 'Levtro 5mg Tablet', 'Does Levtro 5mg Tablet make you tired and drowsy?', 'Yes, Levtro 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7525, 'Levtro 5mg Tablet', 'Victro Pharma', 'Levtro 5mg Tablet', 'How long does it take for Levtro 5mg Tablet to work?', 'Levtro 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7526, 'Levtro 5mg Tablet', 'Victro Pharma', 'Levtro 5mg Tablet', 'Can I take Levtro 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levtro 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7527, 'Levtro 5mg Tablet', 'Victro Pharma', 'Levtro 5mg Tablet', 'Is it safe to take Levtro 5mg Tablet for a long time?', 'Levtro 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levtro 5mg Tablet for only as long as you need it.'),
(7528, 'Levtro 5mg Tablet', 'Victro Pharma', 'Levtro 5mg Tablet', 'For how long should I continue Levtro 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levtro 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levtro 5mg Tablet'),
(7529, 'Levtro M 5mg/10mg Tablet', 'Victro Pharma', 'Levtro M 5mg/10mg Tablet', 'What is Levtro M 5mg/10mg Tablet?', 'Levtro M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7530, 'Levtro M 5mg/10mg Tablet', 'Victro Pharma', 'Levtro M 5mg/10mg Tablet', 'Can the use of Levtro M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levtro M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7531, 'Levtro M 5mg/10mg Tablet', 'Victro Pharma', 'Levtro M 5mg/10mg Tablet', 'Can Levtro M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levtro M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7532, 'Levtro M 5mg/10mg Tablet', 'Victro Pharma', 'Levtro M 5mg/10mg Tablet', 'Can the use of Levtro M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levtro M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7533, 'Levtro M 5mg/10mg Tablet', 'Victro Pharma', 'Levtro M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levtro M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levtro M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levtro M 5mg/10mg Tablet.'),
(7534, 'Levtro M 5mg/10mg Tablet', 'Victro Pharma', 'Levtro M 5mg/10mg Tablet', 'Will Levtro M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levtro M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7535, 'Levtro M 5mg/10mg Tablet', 'Victro Pharma', 'Levtro M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levtro M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7536, 'Levtrox 1000mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 1000mg Injection', 'Is Levtrox 1000mg Injection safe?', 'Levtrox 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7537, 'Levtrox 1000mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 1000mg Injection', 'How long does Levtrox 1000mg Injection take to work?', 'Usually, Levtrox 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(7538, 'Levtrox 1000mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 1000mg Injection', 'Who should not take Levtrox 1000mg Injection?', 'Levtrox 1000mg Injection should not be prescribed to people who are allergic to Levtrox 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Levtrox 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(7539, 'Levtrox 1000mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 1000mg Injection', 'What if I do not get better after using Levtrox 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(7540, 'Levtrox 1000mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 1000mg Injection', 'For how long does Levtrox 1000mg Injection stay in the body?', 'Usually, Levtrox 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(7541, 'Levtrox 1000mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 1000mg Injection', 'Is Levtrox 1000mg Injection effective?', 'Levtrox 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levtrox 1000mg Injection too early, the symptoms may return or worsen.'),
(7542, 'Levtrox 1000mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 1000mg Injection', 'How is Levtrox 1000mg Injection administered?', 'Levtrox 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Levtrox 1000mg Injection.'),
(7543, 'Levtrox 250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 250mg Injection', 'Is Levtrox 250mg Injection safe?', 'Levtrox 250mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7544, 'Levtrox 250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 250mg Injection', 'How long does Levtrox 250mg Injection take to work?', 'Usually, Levtrox 250mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(7545, 'Levtrox 250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 250mg Injection', 'Who should not take Levtrox 250mg Injection?', 'Levtrox 250mg Injection should not be prescribed to people who are allergic to Levtrox 250mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Levtrox 250mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(7546, 'Levtrox 250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 250mg Injection', 'What if I do not get better after using Levtrox 250mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(7547, 'Levtrox 250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 250mg Injection', 'For how long does Levtrox 250mg Injection stay in the body?', 'Usually, Levtrox 250mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(7548, 'Levtrox 250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 250mg Injection', 'Is Levtrox 250mg Injection effective?', 'Levtrox 250mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levtrox 250mg Injection too early, the symptoms may return or worsen.'),
(7549, 'Levtrox 250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 250mg Injection', 'How is Levtrox 250mg Injection administered?', 'Levtrox 250mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Levtrox 250mg Injection.'),
(7550, 'Levtrox 500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 500mg Injection', 'Is Levtrox 500mg Injection safe?', 'Levtrox 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7551, 'Levtrox 500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 500mg Injection', 'How long does Levtrox 500mg Injection take to work?', 'Usually, Levtrox 500mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(7552, 'Levtrox 500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 500mg Injection', 'Who should not take Levtrox 500mg Injection?', 'Levtrox 500mg Injection should not be prescribed to people who are allergic to Levtrox 500mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Levtrox 500mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(7553, 'Levtrox 500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 500mg Injection', 'What if I do not get better after using Levtrox 500mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(7554, 'Levtrox 500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 500mg Injection', 'For how long does Levtrox 500mg Injection stay in the body?', 'Usually, Levtrox 500mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(7555, 'Levtrox 500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 500mg Injection', 'Is Levtrox 500mg Injection effective?', 'Levtrox 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levtrox 500mg Injection too early, the symptoms may return or worsen.'),
(7556, 'Levtrox 500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox 500mg Injection', 'How is Levtrox 500mg Injection administered?', 'Levtrox 500mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Levtrox 500mg Injection.'),
(7557, 'Levtrox S 1000mg/500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 1000mg/500mg Injection', 'Can the use of Levtrox S 1000mg/500mg Injection cause allergic reaction?', 'Yes, Levtrox S 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(7558, 'Levtrox S 1000mg/500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 1000mg/500mg Injection', 'Can the use of Levtrox S 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Levtrox S 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7559, 'Levtrox S 1000mg/500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 1000mg/500mg Injection', 'How long does Levtrox S 1000mg/500mg Injection takes to work?', 'Usually, Levtrox S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(7560, 'Levtrox S 1000mg/500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 1000mg/500mg Injection', 'What if I don\'t get better after using Levtrox S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7561, 'Levtrox S 1000mg/500mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 1000mg/500mg Injection', 'Can I stop taking Levtrox S 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Levtrox S 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(7562, 'Levtrox S 500mg/250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 500mg/250mg Injection', 'Can the use of Levtrox S 500mg/250mg Injection cause allergic reaction?', 'Yes, Levtrox S 500mg/250mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(7563, 'Levtrox S 500mg/250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 500mg/250mg Injection', 'Can the use of Levtrox S 500mg/250mg Injection cause diarrhea?', 'Yes, the use of Levtrox S 500mg/250mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7564, 'Levtrox S 500mg/250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 500mg/250mg Injection', 'How long does Levtrox S 500mg/250mg Injection takes to work?', 'Usually, Levtrox S 500mg/250mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(7565, 'Levtrox S 500mg/250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 500mg/250mg Injection', 'What if I don\'t get better after using Levtrox S 500mg/250mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7566, 'Levtrox S 500mg/250mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox S 500mg/250mg Injection', 'Can I stop taking Levtrox S 500mg/250mg Injection when I feel better?', 'No, do not stop taking Levtrox S 500mg/250mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(7567, 'Levtrox TZ 1000mg/125mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox TZ 1000mg/125mg Injection', 'How long does Levtrox TZ 1000mg/125mg Injection takes to work?', 'Usually, Levtrox TZ 1000mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(7568, 'Levtrox TZ 1000mg/125mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox TZ 1000mg/125mg Injection', 'What if I don\'t get better after using Levtrox TZ 1000mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7569, 'Levtrox TZ 250mg/31.25mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox TZ 250mg/31.25mg Injection', 'How long does Levtrox TZ 250mg/31.25mg Injection takes to work?', 'Usually, Levtrox TZ 250mg/31.25mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(7570, 'Levtrox TZ 250mg/31.25mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox TZ 250mg/31.25mg Injection', 'What if I don\'t get better after using Levtrox TZ 250mg/31.25mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7571, 'Levtrox TZ 500mg/62.5mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox TZ 500mg/62.5mg Injection', 'How long does Levtrox TZ 500mg/62.5mg Injection takes to work?', 'Usually, Levtrox TZ 500mg/62.5mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(7572, 'Levtrox TZ 500mg/62.5mg Injection', 'Levent Biotech Pvt Ltd', 'Levtrox TZ 500mg/62.5mg Injection', 'What if I don\'t get better after using Levtrox TZ 500mg/62.5mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7573, 'Levtrox-S 375 Injection', 'Levent Biotech Pvt Ltd', 'Levtrox-S 375 Injection', 'Can the use of Levtrox-S 375 Injection cause allergic reaction?', 'Yes, Levtrox-S 375 Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(7574, 'Levtrox-S 375 Injection', 'Levent Biotech Pvt Ltd', 'Levtrox-S 375 Injection', 'Can the use of Levtrox-S 375 Injection cause diarrhea?', 'Yes, the use of Levtrox-S 375 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7575, 'Levtrox-S 375 Injection', 'Levent Biotech Pvt Ltd', 'Levtrox-S 375 Injection', 'How long does Levtrox-S 375 Injection takes to work?', 'Usually, Levtrox-S 375 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(7576, 'Levtrox-S 375 Injection', 'Levent Biotech Pvt Ltd', 'Levtrox-S 375 Injection', 'What if I don\'t get better after using Levtrox-S 375 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7577, 'Levtrox-S 375 Injection', 'Levent Biotech Pvt Ltd', 'Levtrox-S 375 Injection', 'Can I stop taking Levtrox-S 375 Injection when I feel better?', 'No, do not stop taking Levtrox-S 375 Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(7578, 'Levum 500mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum 500mg Tablet', 'Is Levum 500mg Tablet safe?', 'Levum 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7579, 'Levum 500mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum 500mg Tablet', 'What if I forget to take a dose of Levum 500mg Tablet?', 'If you forget a dose of Levum 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7580, 'Levum 500mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum 500mg Tablet', 'Can the use of Levum 500mg Tablet cause diarrhea?', 'Yes, the use of Levum 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7581, 'Levum 500mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum 500mg Tablet', 'Can I stop taking Levum 500mg Tablet when I feel better?', 'No, do not stop taking Levum 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levum 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levum 500mg Tablet in the dose and duration advised by the doctor.'),
(7582, 'Levum 500mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum 500mg Tablet', 'Can the use of Levum 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levum 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levum 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7583, 'Levum IV 500mg Injection', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum IV 500mg Injection', 'Is Levum IV 500mg Injection safe?', 'Levum IV 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7584, 'Levum IV 500mg Injection', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum IV 500mg Injection', 'Can the use of Levum IV 500mg Injection cause diarrhea?', 'Yes, the use of Levum IV 500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7585, 'Levum IV 500mg Injection', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum IV 500mg Injection', 'Can the use of Levum IV 500mg Injection increase the risk of muscle damage?', 'Yes, the use of Levum IV 500mg Injection is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levum IV 500mg Injection but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7586, 'Levum IV 500mg Injection', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum IV 500mg Injection', 'How is Levum IV 500mg Injection administered?', 'Levum IV 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Levum IV 500mg Injection.'),
(7587, 'Levum IV 500mg Injection', 'J B Chemicals and Pharmaceuticals Ltd', 'Levum IV 500mg Injection', 'Is Levum IV 500mg Injection effective?', 'Levum IV 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Levum IV 500mg Injection too early, the symptoms may return or worsen.'),
(7588, 'Levuxia 5mg Tablet', 'Chemo Biological', 'Levuxia 5mg Tablet', 'Is Levuxia 5mg Tablet a steroid? What is it used for?', 'No, Levuxia 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7589, 'Levuxia 5mg Tablet', 'Chemo Biological', 'Levuxia 5mg Tablet', 'Does Levuxia 5mg Tablet make you tired and drowsy?', 'Yes, Levuxia 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7590, 'Levuxia 5mg Tablet', 'Chemo Biological', 'Levuxia 5mg Tablet', 'How long does it take for Levuxia 5mg Tablet to work?', 'Levuxia 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7591, 'Levuxia 5mg Tablet', 'Chemo Biological', 'Levuxia 5mg Tablet', 'Can I take Levuxia 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levuxia 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7592, 'Levuxia 5mg Tablet', 'Chemo Biological', 'Levuxia 5mg Tablet', 'Is it safe to take Levuxia 5mg Tablet for a long time?', 'Levuxia 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levuxia 5mg Tablet for only as long as you need it.'),
(7593, 'Levuxia 5mg Tablet', 'Chemo Biological', 'Levuxia 5mg Tablet', 'For how long should I continue Levuxia 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levuxia 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levuxia 5mg Tablet'),
(7594, 'Levway 500mg Tablet', 'Eustoma Laboratories Pvt Ltd', 'Levway 500mg Tablet', 'Is Levway 500mg Tablet safe?', 'Levway 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7595, 'Levway 500mg Tablet', 'Eustoma Laboratories Pvt Ltd', 'Levway 500mg Tablet', 'What if I forget to take a dose of Levway 500mg Tablet?', 'If you forget a dose of Levway 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7596, 'Levway 500mg Tablet', 'Eustoma Laboratories Pvt Ltd', 'Levway 500mg Tablet', 'Can the use of Levway 500mg Tablet cause diarrhea?', 'Yes, the use of Levway 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7597, 'Levway 500mg Tablet', 'Eustoma Laboratories Pvt Ltd', 'Levway 500mg Tablet', 'Can I stop taking Levway 500mg Tablet when I feel better?', 'No, do not stop taking Levway 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levway 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levway 500mg Tablet in the dose and duration advised by the doctor.'),
(7598, 'Levway 500mg Tablet', 'Eustoma Laboratories Pvt Ltd', 'Levway 500mg Tablet', 'Can the use of Levway 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levway 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levway 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7599, 'Levxone 250mg Tablet', 'Medxone Healthcare', 'Levxone 250mg Tablet', 'Is Levxone 250mg Tablet safe?', 'Levxone 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7600, 'Levxone 250mg Tablet', 'Medxone Healthcare', 'Levxone 250mg Tablet', 'What if I forget to take a dose of Levxone 250mg Tablet?', 'If you forget a dose of Levxone 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7601, 'Levxone 250mg Tablet', 'Medxone Healthcare', 'Levxone 250mg Tablet', 'Can the use of Levxone 250mg Tablet cause diarrhea?', 'Yes, the use of Levxone 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7602, 'Levxone 250mg Tablet', 'Medxone Healthcare', 'Levxone 250mg Tablet', 'Can I stop taking Levxone 250mg Tablet when I feel better?', 'No, do not stop taking Levxone 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levxone 250mg Tablet too early, the symptoms may return or worsen. Continue taking Levxone 250mg Tablet in the dose and duration advised by the doctor.'),
(7603, 'Levxone 250mg Tablet', 'Medxone Healthcare', 'Levxone 250mg Tablet', 'Can the use of Levxone 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levxone 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levxone 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7604, 'Levxone 500mg Tablet', 'Medxone Healthcare', 'Levxone 500mg Tablet', 'Is Levxone 500mg Tablet safe?', 'Levxone 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7605, 'Levxone 500mg Tablet', 'Medxone Healthcare', 'Levxone 500mg Tablet', 'What if I forget to take a dose of Levxone 500mg Tablet?', 'If you forget a dose of Levxone 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7606, 'Levxone 500mg Tablet', 'Medxone Healthcare', 'Levxone 500mg Tablet', 'Can the use of Levxone 500mg Tablet cause diarrhea?', 'Yes, the use of Levxone 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7607, 'Levxone 500mg Tablet', 'Medxone Healthcare', 'Levxone 500mg Tablet', 'Can I stop taking Levxone 500mg Tablet when I feel better?', 'No, do not stop taking Levxone 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levxone 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levxone 500mg Tablet in the dose and duration advised by the doctor.'),
(7608, 'Levxone 500mg Tablet', 'Medxone Healthcare', 'Levxone 500mg Tablet', 'Can the use of Levxone 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levxone 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levxone 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7609, 'Levxone OZ 250mg/500mg Tablet', 'Medxone Healthcare', 'Levxone OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Levxone OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7610, 'Levxone OZ 250mg/500mg Tablet', 'Medxone Healthcare', 'Levxone OZ 250mg/500mg Tablet', 'Can I stop taking Levxone OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Levxone OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(7611, 'Levxone OZ 250mg/500mg Tablet', 'Medxone Healthcare', 'Levxone OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Levxone OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(7612, 'Levy 500mg Tablet', 'Kaithy Pharma', 'Levy 500mg Tablet (Kaithy Pharma)', 'Is Levy 500mg Tablet safe?', 'Levy 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7613, 'Levy 500mg Tablet', 'Kaithy Pharma', 'Levy 500mg Tablet (Kaithy Pharma)', 'What if I forget to take a dose of Levy 500mg Tablet?', 'If you forget a dose of Levy 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7614, 'Levy 500mg Tablet', 'Kaithy Pharma', 'Levy 500mg Tablet (Kaithy Pharma)', 'Can the use of Levy 500mg Tablet cause diarrhea?', 'Yes, the use of Levy 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7615, 'Levy 500mg Tablet', 'Kaithy Pharma', 'Levy 500mg Tablet (Kaithy Pharma)', 'Can I stop taking Levy 500mg Tablet when I feel better?', 'No, do not stop taking Levy 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levy 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levy 500mg Tablet in the dose and duration advised by the doctor.'),
(7616, 'Levy 500mg Tablet', 'Kaithy Pharma', 'Levy 500mg Tablet (Kaithy Pharma)', 'Can the use of Levy 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levy 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levy 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7617, 'Levy 500mg Tablet', 'Comex Pharma', 'Levy 500mg Tablet (Comex Pharma)', 'Is Levy 500mg Tablet safe?', 'Levy 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7618, 'Levy 500mg Tablet', 'Comex Pharma', 'Levy 500mg Tablet (Comex Pharma)', 'What if I forget to take a dose of Levy 500mg Tablet?', 'If you forget a dose of Levy 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7619, 'Levy 500mg Tablet', 'Comex Pharma', 'Levy 500mg Tablet (Comex Pharma)', 'Can the use of Levy 500mg Tablet cause diarrhea?', 'Yes, the use of Levy 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7620, 'Levy 500mg Tablet', 'Comex Pharma', 'Levy 500mg Tablet (Comex Pharma)', 'Can I stop taking Levy 500mg Tablet when I feel better?', 'No, do not stop taking Levy 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levy 500mg Tablet too early, the symptoms may return or worsen. Continue taking Levy 500mg Tablet in the dose and duration advised by the doctor.'),
(7621, 'Levy 500mg Tablet', 'Comex Pharma', 'Levy 500mg Tablet (Comex Pharma)', 'Can the use of Levy 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levy 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levy 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7622, 'Levy 750mg Tablet', 'Comex Pharma', 'Levy 750mg Tablet', 'Is Levy 750mg Tablet safe?', 'Levy 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7623, 'Levy 750mg Tablet', 'Comex Pharma', 'Levy 750mg Tablet', 'What if I forget to take a dose of Levy 750mg Tablet?', 'If you forget a dose of Levy 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7624, 'Levy 750mg Tablet', 'Comex Pharma', 'Levy 750mg Tablet', 'Can the use of Levy 750mg Tablet cause diarrhea?', 'Yes, the use of Levy 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7625, 'Levy 750mg Tablet', 'Comex Pharma', 'Levy 750mg Tablet', 'Can I stop taking Levy 750mg Tablet when I feel better?', 'No, do not stop taking Levy 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Levy 750mg Tablet too early, the symptoms may return or worsen. Continue taking Levy 750mg Tablet in the dose and duration advised by the doctor.'),
(7626, 'Levy 750mg Tablet', 'Comex Pharma', 'Levy 750mg Tablet', 'Can the use of Levy 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Levy 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Levy 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7627, 'Levzed FX 10mg/120mg Tablet', 'Zubit Lifecare', 'Levzed FX 10mg/120mg Tablet', 'What is Levzed FX 10mg/120mg Tablet ?', 'Levzed FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(7628, 'Levzed FX 10mg/120mg Tablet', 'Zubit Lifecare', 'Levzed FX 10mg/120mg Tablet', 'Can Levzed FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levzed FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Levzed FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(7629, 'Levzed FX 10mg/120mg Tablet', 'Zubit Lifecare', 'Levzed FX 10mg/120mg Tablet', 'Can the use of Levzed FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Levzed FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(7630, 'Levzed FX 10mg/120mg Tablet', 'Zubit Lifecare', 'Levzed FX 10mg/120mg Tablet', 'What should be avoided in food while taking Levzed FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Levzed FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Levzed FX 10mg/120mg Tablet.'),
(7631, 'Levzed FX 10mg/120mg Tablet', 'Zubit Lifecare', 'Levzed FX 10mg/120mg Tablet', 'Will Levzed FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7632, 'Levzed FX 10mg/120mg Tablet', 'Zubit Lifecare', 'Levzed FX 10mg/120mg Tablet', 'What is the recommended storage condition for Levzed FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7633, 'Levzed MK 5mg/10mg Tablet', 'Zubit Lifecare', 'Levzed MK 5mg/10mg Tablet', 'What is Levzed MK 5mg/10mg Tablet?', 'Levzed MK 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7634, 'Levzed MK 5mg/10mg Tablet', 'Zubit Lifecare', 'Levzed MK 5mg/10mg Tablet', 'Can the use of Levzed MK 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levzed MK 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7635, 'Levzed MK 5mg/10mg Tablet', 'Zubit Lifecare', 'Levzed MK 5mg/10mg Tablet', 'Can Levzed MK 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levzed MK 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7636, 'Levzed MK 5mg/10mg Tablet', 'Zubit Lifecare', 'Levzed MK 5mg/10mg Tablet', 'Can the use of Levzed MK 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levzed MK 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7637, 'Levzed MK 5mg/10mg Tablet', 'Zubit Lifecare', 'Levzed MK 5mg/10mg Tablet', 'Can I drink alcohol while taking Levzed MK 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levzed MK 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levzed MK 5mg/10mg Tablet.'),
(7638, 'Levzed MK 5mg/10mg Tablet', 'Zubit Lifecare', 'Levzed MK 5mg/10mg Tablet', 'Will Levzed MK 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levzed MK 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7639, 'Levzed MK 5mg/10mg Tablet', 'Zubit Lifecare', 'Levzed MK 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levzed MK 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7640, 'Levzed-M Tablet', 'Zed Pharmaceuticals', 'Levzed-M Tablet', 'What is Levzed-M Tablet?', 'Levzed-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7641, 'Levzed-M Tablet', 'Zed Pharmaceuticals', 'Levzed-M Tablet', 'Can the use of Levzed-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levzed-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7642, 'Levzed-M Tablet', 'Zed Pharmaceuticals', 'Levzed-M Tablet', 'Can Levzed-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levzed-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7643, 'Levzed-M Tablet', 'Zed Pharmaceuticals', 'Levzed-M Tablet', 'Can the use of Levzed-M Tablet cause dry mouth?', 'Yes, the use of Levzed-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7644, 'Levzed-M Tablet', 'Zed Pharmaceuticals', 'Levzed-M Tablet', 'Can I drink alcohol while taking Levzed-M Tablet?', 'No, do not take alcohol while taking Levzed-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levzed-M Tablet.'),
(7645, 'Levzed-M Tablet', 'Zed Pharmaceuticals', 'Levzed-M Tablet', 'Will Levzed-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levzed-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7646, 'Levzed-M Tablet', 'Zed Pharmaceuticals', 'Levzed-M Tablet', 'What are the instructions for storage and disposal of Levzed-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7647, 'Levzer 5mg Tablet', 'Stenzer Healthcare', 'Levzer 5mg Tablet', 'Is Levzer 5mg Tablet a steroid? What is it used for?', 'No, Levzer 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7648, 'Levzer 5mg Tablet', 'Stenzer Healthcare', 'Levzer 5mg Tablet', 'Does Levzer 5mg Tablet make you tired and drowsy?', 'Yes, Levzer 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7649, 'Levzer 5mg Tablet', 'Stenzer Healthcare', 'Levzer 5mg Tablet', 'How long does it take for Levzer 5mg Tablet to work?', 'Levzer 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7650, 'Levzer 5mg Tablet', 'Stenzer Healthcare', 'Levzer 5mg Tablet', 'Can I take Levzer 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levzer 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7651, 'Levzer 5mg Tablet', 'Stenzer Healthcare', 'Levzer 5mg Tablet', 'Is it safe to take Levzer 5mg Tablet for a long time?', 'Levzer 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levzer 5mg Tablet for only as long as you need it.'),
(7652, 'Levzer 5mg Tablet', 'Stenzer Healthcare', 'Levzer 5mg Tablet', 'For how long should I continue Levzer 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levzer 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levzer 5mg Tablet'),
(7653, 'Levzer-M Tablet', 'Stenzer Healthcare', 'Levzer-M Tablet', 'What is Levzer-M Tablet?', 'Levzer-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7654, 'Levzer-M Tablet', 'Stenzer Healthcare', 'Levzer-M Tablet', 'Can the use of Levzer-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levzer-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7655, 'Levzer-M Tablet', 'Stenzer Healthcare', 'Levzer-M Tablet', 'Can Levzer-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levzer-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7656, 'Levzer-M Tablet', 'Stenzer Healthcare', 'Levzer-M Tablet', 'Can the use of Levzer-M Tablet cause dry mouth?', 'Yes, the use of Levzer-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7657, 'Levzer-M Tablet', 'Stenzer Healthcare', 'Levzer-M Tablet', 'Can I drink alcohol while taking Levzer-M Tablet?', 'No, do not take alcohol while taking Levzer-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levzer-M Tablet.'),
(7658, 'Levzer-M Tablet', 'Stenzer Healthcare', 'Levzer-M Tablet', 'Will Levzer-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levzer-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7659, 'Levzer-M Tablet', 'Stenzer Healthcare', 'Levzer-M Tablet', 'What are the instructions for storage and disposal of Levzer-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7660, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7661, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Levzin M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7662, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'How should Levzin M Kid 2.5mg/4mg Tablet be stored?', 'Levzin M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7663, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'Can Levzin M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Levzin M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7664, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levzin M Kid 2.5mg/4mg Tablet?', 'No, don’t start Levzin M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Levzin M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7665, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levzin M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7666, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Levzin M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Levzin M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7667, 'Levzin M Kid 2.5mg/4mg Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin M Kid 2.5mg/4mg Tablet', 'Can I use Levzin M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Levzin M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7668, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7669, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'Can I decrease the dose of Levzin M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7670, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'How should Levzin M Syrup be stored?', 'Levzin M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7671, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'Can Levzin M Syrup make my child sleepy?', 'Levzin M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7672, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levzin M Syrup?', 'No, don’t start Levzin M Syrup without speaking to your child’s doctor. Moreover, Levzin M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7673, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levzin M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7674, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levzin M Syrup to my child?', 'Some studies show that Levzin M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7675, 'Levzin M Syrup', 'Saffron Medicare Pvt Ltd', 'Levzin M Syrup', 'Can I use Levzin M Syrup for treating acute asthma attacks in my child?', 'Levzin M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7676, 'Levzin Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin Tablet', 'Is Levzin Tablet a steroid? What is it used for?', 'No, Levzin Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7677, 'Levzin Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin Tablet', 'Does Levzin Tablet make you tired and drowsy?', 'Yes, Levzin Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7678, 'Levzin Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin Tablet', 'How long does it take for Levzin Tablet to work?', 'Levzin Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7679, 'Levzin Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin Tablet', 'Can I take Levzin Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levzin Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7680, 'Levzin Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin Tablet', 'Is it safe to take Levzin Tablet for a long time?', 'Levzin Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levzin Tablet for only as long as you need it.'),
(7681, 'Levzin Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin Tablet', 'For how long should I continue Levzin Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levzin Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levzin Tablet'),
(7682, 'Levzine 5mg Tablet', 'Aerochem Neutron', 'Levzine 5mg Tablet', 'Is Levzine 5mg Tablet a steroid? What is it used for?', 'No, Levzine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7683, 'Levzine 5mg Tablet', 'Aerochem Neutron', 'Levzine 5mg Tablet', 'Does Levzine 5mg Tablet make you tired and drowsy?', 'Yes, Levzine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7684, 'Levzine 5mg Tablet', 'Aerochem Neutron', 'Levzine 5mg Tablet', 'How long does it take for Levzine 5mg Tablet to work?', 'Levzine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7685, 'Levzine 5mg Tablet', 'Aerochem Neutron', 'Levzine 5mg Tablet', 'Can I take Levzine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levzine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7686, 'Levzine 5mg Tablet', 'Aerochem Neutron', 'Levzine 5mg Tablet', 'Is it safe to take Levzine 5mg Tablet for a long time?', 'Levzine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levzine 5mg Tablet for only as long as you need it.'),
(7687, 'Levzine 5mg Tablet', 'Aerochem Neutron', 'Levzine 5mg Tablet', 'For how long should I continue Levzine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levzine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levzine 5mg Tablet'),
(7688, 'Levzine M 5mg/10mg Tablet', 'Benzon Remedies', 'Levzine M 5mg/10mg Tablet', 'What is Levzine M 5mg/10mg Tablet?', 'Levzine M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7689, 'Levzine M 5mg/10mg Tablet', 'Benzon Remedies', 'Levzine M 5mg/10mg Tablet', 'Can the use of Levzine M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levzine M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7690, 'Levzine M 5mg/10mg Tablet', 'Benzon Remedies', 'Levzine M 5mg/10mg Tablet', 'Can Levzine M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levzine M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7691, 'Levzine M 5mg/10mg Tablet', 'Benzon Remedies', 'Levzine M 5mg/10mg Tablet', 'Can the use of Levzine M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levzine M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7692, 'Levzine M 5mg/10mg Tablet', 'Benzon Remedies', 'Levzine M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levzine M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levzine M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levzine M 5mg/10mg Tablet.'),
(7693, 'Levzine M 5mg/10mg Tablet', 'Benzon Remedies', 'Levzine M 5mg/10mg Tablet', 'Will Levzine M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levzine M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7694, 'Levzine M 5mg/10mg Tablet', 'Benzon Remedies', 'Levzine M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levzine M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7695, 'Levzin-M Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin-M Tablet', 'What is Levzin-M Tablet?', 'Levzin-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7696, 'Levzin-M Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin-M Tablet', 'Can the use of Levzin-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levzin-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7697, 'Levzin-M Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin-M Tablet', 'Can Levzin-M Tablet be stopped when allergy symptoms are relieved?', 'No, Levzin-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7698, 'Levzin-M Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin-M Tablet', 'Can the use of Levzin-M Tablet cause dry mouth?', 'Yes, the use of Levzin-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7699, 'Levzin-M Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin-M Tablet', 'Can I drink alcohol while taking Levzin-M Tablet?', 'No, do not take alcohol while taking Levzin-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levzin-M Tablet.'),
(7700, 'Levzin-M Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin-M Tablet', 'Will Levzin-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levzin-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7701, 'Levzin-M Tablet', 'Saffron Medicare Pvt Ltd', 'Levzin-M Tablet', 'What are the instructions for storage and disposal of Levzin-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7702, 'Levzo 5mg Tablet', 'Gnova Biotech', 'Levzo 5mg Tablet', 'Is Levzo 5mg Tablet a steroid? What is it used for?', 'No, Levzo 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7703, 'Levzo 5mg Tablet', 'Gnova Biotech', 'Levzo 5mg Tablet', 'Does Levzo 5mg Tablet make you tired and drowsy?', 'Yes, Levzo 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7704, 'Levzo 5mg Tablet', 'Gnova Biotech', 'Levzo 5mg Tablet', 'How long does it take for Levzo 5mg Tablet to work?', 'Levzo 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7705, 'Levzo 5mg Tablet', 'Gnova Biotech', 'Levzo 5mg Tablet', 'Can I take Levzo 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levzo 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7706, 'Levzo 5mg Tablet', 'Gnova Biotech', 'Levzo 5mg Tablet', 'Is it safe to take Levzo 5mg Tablet for a long time?', 'Levzo 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levzo 5mg Tablet for only as long as you need it.'),
(7707, 'Levzo 5mg Tablet', 'Gnova Biotech', 'Levzo 5mg Tablet', 'For how long should I continue Levzo 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levzo 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levzo 5mg Tablet'),
(7708, 'Levzo M 5mg/10mg Tablet', 'Gnova Biotech', 'Levzo M 5mg/10mg Tablet', 'What is Levzo M 5mg/10mg Tablet?', 'Levzo M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7709, 'Levzo M 5mg/10mg Tablet', 'Gnova Biotech', 'Levzo M 5mg/10mg Tablet', 'Can the use of Levzo M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levzo M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7710, 'Levzo M 5mg/10mg Tablet', 'Gnova Biotech', 'Levzo M 5mg/10mg Tablet', 'Can Levzo M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levzo M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7711, 'Levzo M 5mg/10mg Tablet', 'Gnova Biotech', 'Levzo M 5mg/10mg Tablet', 'Can the use of Levzo M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levzo M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7712, 'Levzo M 5mg/10mg Tablet', 'Gnova Biotech', 'Levzo M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levzo M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levzo M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levzo M 5mg/10mg Tablet.'),
(7713, 'Levzo M 5mg/10mg Tablet', 'Gnova Biotech', 'Levzo M 5mg/10mg Tablet', 'Will Levzo M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levzo M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7714, 'Levzo M 5mg/10mg Tablet', 'Gnova Biotech', 'Levzo M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levzo M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7715, 'Levzor 5mg Tablet', 'Amzor Healthcare', 'Levzor 5mg Tablet', 'Is Levzor 5mg Tablet a steroid? What is it used for?', 'No, Levzor 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7716, 'Levzor 5mg Tablet', 'Amzor Healthcare', 'Levzor 5mg Tablet', 'Does Levzor 5mg Tablet make you tired and drowsy?', 'Yes, Levzor 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7717, 'Levzor 5mg Tablet', 'Amzor Healthcare', 'Levzor 5mg Tablet', 'How long does it take for Levzor 5mg Tablet to work?', 'Levzor 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7718, 'Levzor 5mg Tablet', 'Amzor Healthcare', 'Levzor 5mg Tablet', 'Can I take Levzor 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Levzor 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7719, 'Levzor 5mg Tablet', 'Amzor Healthcare', 'Levzor 5mg Tablet', 'Is it safe to take Levzor 5mg Tablet for a long time?', 'Levzor 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Levzor 5mg Tablet for only as long as you need it.'),
(7720, 'Levzor 5mg Tablet', 'Amzor Healthcare', 'Levzor 5mg Tablet', 'For how long should I continue Levzor 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Levzor 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Levzor 5mg Tablet'),
(7721, 'Levzor M 5mg/10mg Tablet', 'Amzor Healthcare', 'Levzor M 5mg/10mg Tablet', 'What is Levzor M 5mg/10mg Tablet?', 'Levzor M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7722, 'Levzor M 5mg/10mg Tablet', 'Amzor Healthcare', 'Levzor M 5mg/10mg Tablet', 'Can the use of Levzor M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Levzor M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7723, 'Levzor M 5mg/10mg Tablet', 'Amzor Healthcare', 'Levzor M 5mg/10mg Tablet', 'Can Levzor M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Levzor M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7724, 'Levzor M 5mg/10mg Tablet', 'Amzor Healthcare', 'Levzor M 5mg/10mg Tablet', 'Can the use of Levzor M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Levzor M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7725, 'Levzor M 5mg/10mg Tablet', 'Amzor Healthcare', 'Levzor M 5mg/10mg Tablet', 'Can I drink alcohol while taking Levzor M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Levzor M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Levzor M 5mg/10mg Tablet.'),
(7726, 'Levzor M 5mg/10mg Tablet', 'Amzor Healthcare', 'Levzor M 5mg/10mg Tablet', 'Will Levzor M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Levzor M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7727, 'Levzor M 5mg/10mg Tablet', 'Amzor Healthcare', 'Levzor M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Levzor M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7728, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7729, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'Can I decrease the dose of Levzor M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7730, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'How should Levzor M Syrup be stored?', 'Levzor M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7731, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'Can Levzor M Syrup make my child sleepy?', 'Levzor M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7732, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Levzor M Syrup?', 'No, don’t start Levzor M Syrup without speaking to your child’s doctor. Moreover, Levzor M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7733, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Levzor M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7734, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Levzor M Syrup to my child?', 'Some studies show that Levzor M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7735, 'Levzor M Syrup', 'Amzor Healthcare', 'Levzor M Syrup', 'Can I use Levzor M Syrup for treating acute asthma attacks in my child?', 'Levzor M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7736, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. Is Lewarm 400mg Tablet an antibiotic?', 'Yes, Lewarm 400mg Tablet is an antibiotic medicine. It is used to treat various infections caused by worms. Lewarm 400mg Tablet should be taken only when prescribed by the doctor.'),
(7737, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. What is Lewarm 400mg Tablet used for?', 'Lewarm 400mg Tablet is used for the treatment of infections caused by helminths (worms) like pin worms/thread worms, roundworms, hookworms, whip worms, liver flukes and tapeworm infections. Along with that, the medicine has shown good activity against some organisms that can survive without oxygen too, like Giardia lamblia and Trichomonas vaginalis. Please consult your doctor before taking any treatment for worms as there could be many worms against which Lewarm 400mg Tablet would not be effective.'),
(7738, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. How does Lewarm 400mg Tablet work?', 'Lewarm 400mg Tablet works by killing the larva and the adult form of the worm by reducing the energy source (glucose) of the worms. This helps to decrease the mobility of the worms and they die eventually.'),
(7739, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. What is the best time to take Lewarm 400mg Tablet?', 'Lewarm 400mg Tablet should be taken exactly as advised by the doctor. Do not self-medicate. However, it may be given once or twice a day depending on the condition you are being treated for. It may be taken in the morning or evening. It is usually prescribed to be taken on an empty stomach but you may be asked to take it with food for treating some conditions. Follow your doctor’s advice carefully to get the most benefit.'),
(7740, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. Does Lewarm 400mg Tablet kill eggs of the worms?', 'No, Lewarm 400mg Tablet does not kill the eggs of the worms. It acts against the larva and the adult form of the worms only. You may have to take a second dose two weeks later, to lessen the chances of reinfection. Lewarm 400mg Tablet should be taken only as advised by the doctor. Consult your doctor if you have any doubts.'),
(7741, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. Is Lewarm 400mg Tablet safe?', 'Lewarm 400mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7742, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. Is Lewarm 400mg Tablet effective for treating pinworms?', 'Yes, Lewarm 400mg Tablet an effective medicine which is used for the treatment of pinworms (Enterobius vermicularis). It shows active action against the larval and the adult stages of the worms. Consult your doctor before taking any medicines for worm infections.'),
(7743, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. Is Lewarm 400mg Tablet an over the counter product?', 'No, Lewarm 400mg Tablet is not an over the counter (OTC) product. It is a prescription medicine which means it can be bought with a valid prescription by a doctor only.'),
(7744, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. Does Lewarm 400mg Tablet kill tapeworms?', 'Lewarm 400mg Tablet can work against tapeworms like Hymenolepis nana and Taenia spp. Please consult your doctor before taking any medicine for worm infestations.'),
(7745, 'Lewarm 400mg Tablet', 'Lexus Organics', 'Lewarm 400mg Tablet', 'Q. Who should not take Lewarm 400mg Tablet?', 'Lewarm 400mg Tablet should not be given to patients with known allergy to any other ingredients of this medicine, or any other similar medicines like mebendazole or thiabendazole, in the past.  Signs of an allergic reaction may include an itchy skin rash, shortness of breath and swelling of the face or tongue. Tell your doctor about all of your medical conditions before taking the medicine. Also, let your doctor know about any other medicines that you may be taking for any other conditions, as they may affect or be affected by this medicine.'),
(7746, 'Lewarm Plus 6mg/400mg Tablet', 'Lexus Organics', 'Lewarm Plus 6mg/400mg Tablet', 'Can Lewarm Plus 6mg/400mg Tablet be stopped when my symptoms are gone?', 'No, Lewarm Plus 6mg/400mg Tablet should be continued as advised by the doctor. If you experience any problems due to the consumption of Lewarm Plus 6mg/400mg Tablet, consult the doctor for re-evaluation. Do not stop even you feel better. Stopping Lewarm Plus 6mg/400mg Tablet early may make the infection come back and harder to treat.'),
(7747, 'Lewarm Plus 6mg/400mg Tablet', 'Lexus Organics', 'Lewarm Plus 6mg/400mg Tablet', 'Can the use of Lewarm Plus 6mg/400mg Tablet cause diarrhea?', 'Yes, the use ofLewarm Plus 6mg/400mg Tablet can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(7748, 'Lewarm Plus 6mg/400mg Tablet', 'Lexus Organics', 'Lewarm Plus 6mg/400mg Tablet', 'Will Lewarm Plus 6mg/400mg Tablet be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If you do not find any relief in your symptoms even after taking the recommended doses, please consult your doctor.'),
(7749, 'Lewarm Plus 6mg/400mg Tablet', 'Lexus Organics', 'Lewarm Plus 6mg/400mg Tablet', 'What are the instructions for storage and disposal of Lewarm Plus 6mg/400mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7750, 'Lewarm Plus Oral Suspension', 'Lexus Organics', 'Lewarm Plus Oral Suspension', 'How can I know that my child is having a worm infection?', 'It could be worm infection if your child complains of an itchy bottom (rectal area), difficulty sitting, fatigue, restless sleep due to anal itching, and persistent stomach pain with loss of appetite or frequent indigestion. Another sign of worm infection is pica in which you may notice your child eating inedible substances such as mud. Speak to your child’s doctor as soon as you notice any of these in your child. The doctor may suggest collecting your child’s stool and blood samples on 3 different days for examination. Depending upon the reports, the doctor will decide upon the treatment and prescribe your child with medicine.'),
(7751, 'Lewarm Plus Oral Suspension', 'Lexus Organics', 'Lewarm Plus Oral Suspension', 'What is the best time to give Lewarm Plus Oral Suspension to my child?', 'Lewarm Plus Oral Suspension can be given at any time of the day just remember to give it with a fat-containing food such as milk.'),
(7752, 'Lewarm Plus Oral Suspension', 'Lexus Organics', 'Lewarm Plus Oral Suspension', 'How can my child become infected with intestinal worms?', 'Areas with poor sanitation may have soil that is contaminated with eggs of worms. Your child may also get infected by playing in the contaminated soil. When your child returns home after playing, ask them to clean up using soap and water. Transmission can also occur by drinking contaminated water or by eating contaminated vegetables and fruits without washing or peeling.'),
(7753, 'Lewarm Plus Oral Suspension', 'Lexus Organics', 'Lewarm Plus Oral Suspension', 'How should I store my child’s medicine?', 'Store Lewarm Plus Oral Suspension at room temperature in a cool dry place beyond the reach of the children and pets to avoid any accidental intake. Do not freeze the medicine.'),
(7754, 'Lewarm Plus Oral Suspension', 'Lexus Organics', 'Lewarm Plus Oral Suspension', 'When should I call my child’s doctor right away?', 'Reach out to the doctor if your child complains of vision problems, puffy eyes, severe itching all over the body or experiences trouble walking or standing, trouble breathing, fast heart rate. You should also not neglect if your child feels disoriented or confused, exhibits loss of bowel control, or complains of neck pain soon after the intake of Lewarm Plus Oral Suspension.'),
(7755, 'Lewban Syrup', 'Medilewis Biotech', 'Lewban Syrup', 'What is Lewban Syrup?', 'Lewban Syrup is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(7756, 'Lewban Syrup', 'Medilewis Biotech', 'Lewban Syrup', 'Is it safe to use Lewban Syrup?', 'Yes, Lewban Syrup is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(7757, 'Lewban Syrup', 'Medilewis Biotech', 'Lewban Syrup', 'Can I stop taking Lewban Syrup when I am relieved of my symptoms?', 'Lewban Syrup is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(7758, 'Lewban Syrup', 'Medilewis Biotech', 'Lewban Syrup', 'Can the use of Lewban Syrup cause dizziness?', 'Yes, the use of Lewban Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(7759, 'Lewban Syrup', 'Medilewis Biotech', 'Lewban Syrup', 'Can the use of Lewban Syrup cause damage to liver?', 'Lewban Syrup is usually safe when taken according to the recommended dose. However, an overdose of Lewban Syrup can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(7760, 'Lewban Syrup', 'Medilewis Biotech', 'Lewban Syrup', 'What is the recommended storage condition for the Lewban Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7761, 'Lewbro-A Syrup', 'Medilewis Biotech', 'Lewbro-A Syrup', 'Will a higher than the recommended dose of Lewbro-A Syrup be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Lewbro-A Syrup, please consult your doctor.'),
(7762, 'Lewbro-A Syrup', 'Medilewis Biotech', 'Lewbro-A Syrup', 'In which type of cough will the doctor prescribe Lewbro-A Syrup?', 'Lewbro-A Syrup is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(7763, 'Lewbro-A Syrup', 'Medilewis Biotech', 'Lewbro-A Syrup', 'Are there any contraindications associated with use of Lewbro-A Syrup?', 'It is not recommended to use Lewbro-A Syrup if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(7764, 'Lewbro-A Syrup', 'Medilewis Biotech', 'Lewbro-A Syrup', 'What are the instructions for the storage and disposal of Lewbro-A Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7765, 'Lewbro-D Syrup', 'Medilewis Biotech', 'Lewbro-D Syrup', 'Can I take Lewbro-D Syrup if I need to undergo surgery?', 'Consult your doctor before taking Lewbro-D Syrup if you need to undergo surgery as it may lead to excessive drowsiness and sleepiness when given along with anesthesia. Your doctor may advise you to stop taking this medicine 72 hours prior to the surgery.'),
(7766, 'Lewbro-D Syrup', 'Medilewis Biotech', 'Lewbro-D Syrup', 'Can I take Lewbro-D Syrup with anti-depressant medicines?', 'It is not recommended to take Lewbro-D Syrup along with any anti-depressant medication, as it may lead to unpleasant side effects or drug interaction. Also, it is advisable to take this syrup at least 14 days after your last dose of anti-depressants.'),
(7767, 'Lewbro-D Syrup', 'Medilewis Biotech', 'Lewbro-D Syrup', 'Can Lewbro-D Syrup make you sleepy?', 'Yes, this medicine can cause drowsiness and sleepiness. Avoid alcohol or other sedating medications, which can make you more drowsy and less alert. Be careful driving or doing anything that requires you to be alert until you know how this medication affects you.'),
(7768, 'Lewdef 6 Tablet', 'Medilewis Biotech', 'Lewdef 6 Tablet', 'Is Lewdef 6 Tablet a steroid?', 'Yes, Lewdef 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lewdef 6 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(7769, 'Lewdef 6 Tablet', 'Medilewis Biotech', 'Lewdef 6 Tablet', 'What is Lewdef 6 Tablet used for?', 'Lewdef 6 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(7770, 'Lewdef 6 Tablet', 'Medilewis Biotech', 'Lewdef 6 Tablet', 'How does Lewdef 6 Tablet work?', 'Lewdef 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(7771, 'Lewdef 6 Tablet', 'Medilewis Biotech', 'Lewdef 6 Tablet', 'Is Lewdef 6 Tablet better than Prednisone?', 'Clinical studies have shown that Lewdef 6 Tablet has a similar effect as that of prednisone. Moreover, Lewdef 6 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(7772, 'Lewdef 6 Tablet', 'Medilewis Biotech', 'Lewdef 6 Tablet', 'Is Lewdef 6 Tablet a painkiller?', 'No, Lewdef 6 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(7773, 'Lewdef 6 Tablet', 'Medilewis Biotech', 'Lewdef 6 Tablet', 'Can I take Lewdef 6 Tablet with Tamsulosin?', 'Yes, Lewdef 6 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(7774, 'Lewdef Oral Suspension', 'Medilewis Biotech', 'Lewdef Oral Suspension', 'Is Lewdef Oral Suspension a steroid?', 'Yes, Lewdef Oral Suspension is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lewdef Oral Suspension increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(7775, 'Lewdef Oral Suspension', 'Medilewis Biotech', 'Lewdef Oral Suspension', 'What is Lewdef Oral Suspension used for?', 'Lewdef Oral Suspension has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(7776, 'Lewdef Oral Suspension', 'Medilewis Biotech', 'Lewdef Oral Suspension', 'How does Lewdef Oral Suspension work?', 'Lewdef Oral Suspension is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(7777, 'Lewdef Oral Suspension', 'Medilewis Biotech', 'Lewdef Oral Suspension', 'Is Lewdef Oral Suspension better than Prednisone?', 'Clinical studies have shown that Lewdef Oral Suspension has a similar effect as that of prednisone. Moreover, Lewdef Oral Suspension is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(7778, 'Lewdef Oral Suspension', 'Medilewis Biotech', 'Lewdef Oral Suspension', 'Is Lewdef Oral Suspension a painkiller?', 'No, Lewdef Oral Suspension is not a painkiller. It belongs to the class of medicines known as steroids.'),
(7779, 'Lewdef Oral Suspension', 'Medilewis Biotech', 'Lewdef Oral Suspension', 'Can I take Lewdef Oral Suspension with Tamsulosin?', 'Yes, Lewdef Oral Suspension can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(7780, 'Lewel 250mg Tablet', 'Sigman Wellness', 'Lewel 250mg Tablet', 'Is Lewel 250mg Tablet safe?', 'Lewel 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7781, 'Lewel 250mg Tablet', 'Sigman Wellness', 'Lewel 250mg Tablet', 'What if I forget to take a dose of Lewel 250mg Tablet?', 'If you forget a dose of Lewel 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7782, 'Lewel 250mg Tablet', 'Sigman Wellness', 'Lewel 250mg Tablet', 'Can the use of Lewel 250mg Tablet cause diarrhea?', 'Yes, the use of Lewel 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7783, 'Lewel 250mg Tablet', 'Sigman Wellness', 'Lewel 250mg Tablet', 'Can I stop taking Lewel 250mg Tablet when I feel better?', 'No, do not stop taking Lewel 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewel 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lewel 250mg Tablet in the dose and duration advised by the doctor.'),
(7784, 'Lewel 250mg Tablet', 'Sigman Wellness', 'Lewel 250mg Tablet', 'Can the use of Lewel 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewel 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewel 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7785, 'Lewel 500mg Tablet', 'Sigman Wellness', 'Lewel 500mg Tablet', 'Is Lewel 500mg Tablet safe?', 'Lewel 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7786, 'Lewel 500mg Tablet', 'Sigman Wellness', 'Lewel 500mg Tablet', 'What if I forget to take a dose of Lewel 500mg Tablet?', 'If you forget a dose of Lewel 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7787, 'Lewel 500mg Tablet', 'Sigman Wellness', 'Lewel 500mg Tablet', 'Can the use of Lewel 500mg Tablet cause diarrhea?', 'Yes, the use of Lewel 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7788, 'Lewel 500mg Tablet', 'Sigman Wellness', 'Lewel 500mg Tablet', 'Can I stop taking Lewel 500mg Tablet when I feel better?', 'No, do not stop taking Lewel 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewel 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lewel 500mg Tablet in the dose and duration advised by the doctor.'),
(7789, 'Lewel 500mg Tablet', 'Sigman Wellness', 'Lewel 500mg Tablet', 'Can the use of Lewel 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewel 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewel 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7790, 'Lewel 5mg Tablet', 'Zee Laboratories', 'Lewel 5mg Tablet', 'Q. Is Lewel 5mg Tablet a steroid? What is it used for?', 'No, Lewel 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7791, 'Lewel 5mg Tablet', 'Zee Laboratories', 'Lewel 5mg Tablet', 'Q. Does Lewel 5mg Tablet make you tired and drowsy?', 'Yes, Lewel 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7792, 'Lewel 5mg Tablet', 'Zee Laboratories', 'Lewel 5mg Tablet', 'Q. How long does it take for Lewel 5mg Tablet to work?', 'Lewel 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7793, 'Lewel 5mg Tablet', 'Zee Laboratories', 'Lewel 5mg Tablet', 'Q. Can I take Lewel 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lewel 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7794, 'Lewel 5mg Tablet', 'Zee Laboratories', 'Lewel 5mg Tablet', 'Q. Is it safe to take Lewel 5mg Tablet for a long time?', 'Lewel 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lewel 5mg Tablet for only as long as you need it.'),
(7795, 'Lewel 5mg Tablet', 'Zee Laboratories', 'Lewel 5mg Tablet', 'Q. For how long should I continue Lewel 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lewel 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lewel 5mg Tablet'),
(7796, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'Can I take Lewgel 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lewgel 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(7797, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'What should I know before taking Lewgel 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(7798, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'Can Lewgel 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(7799, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'For how long can Lewgel 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7800, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'Can Lewgel 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(7801, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'What are the long term side effects of Lewgel 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(7802, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'Does Lewgel 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(7803, 'Lewgel 20mg Capsule', 'Medilewis Biotech', 'Lewgel 20mg Capsule', 'Can Lewgel 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(7804, 'Lewgel-D Capsule', 'Medilewis Biotech', 'Lewgel-D Capsule', 'Is it safe to use Lewgel-D Capsule?', 'Yes, Lewgel-D Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(7805, 'Lewgel-D Capsule', 'Medilewis Biotech', 'Lewgel-D Capsule', 'What are the contraindications of Lewgel-D Capsule?', 'The use of Lewgel-D Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(7806, 'Lewgel-D Capsule', 'Medilewis Biotech', 'Lewgel-D Capsule', 'What is the best time to take Lewgel-D Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(7807, 'Lewgel-D Capsule', 'Medilewis Biotech', 'Lewgel-D Capsule', 'Can the use of Lewgel-D Capsule cause abnormal heartbeat?', 'Yes, the use of Lewgel-D Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(7808, 'Lewgel-D Capsule', 'Medilewis Biotech', 'Lewgel-D Capsule', 'Does the use of Lewgel-D Capsule lead to dry mouth?', 'Yes, the use of Lewgel-D Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(7809, 'Lewgel-D Capsule', 'Medilewis Biotech', 'Lewgel-D Capsule', 'What is the recommended storage condition for Lewgel-D Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7810, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'How should Lewidic-Aqua Injection injection be administered?', 'Lewidic-Aqua Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(7811, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'What is the most important information I need to know about Lewidic-Aqua Injection?', 'It is important to know that Lewidic-Aqua Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lewidic-Aqua Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(7812, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'Is Lewidic-Aqua Injection a good painkiller?', 'Lewidic-Aqua Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(7813, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'Can Lewidic-Aqua Injection hurt your kidneys?', 'Long-term use and high doses of Lewidic-Aqua Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(7814, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'Does Lewidic-Aqua Injection make you drowsy?', 'Lewidic-Aqua Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(7815, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'Can Lewidic-Aqua Injection be taken during pregnancy?', 'You should not take Lewidic-Aqua Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lewidic-Aqua Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lewidic-Aqua Injection during the first 6 months of pregnancy also.  In some cases, Lewidic-Aqua Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(7816, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'Does Lewidic-Aqua Injection get you high?', 'No, Lewidic-Aqua Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(7817, 'Lewidic-Aqua Injection', 'Medilewis Biotech', 'Lewidic-Aqua Injection', 'Is Lewidic-Aqua Injection a narcotic?', 'No, Lewidic-Aqua Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(7818, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'What are the storage condition for Lewidic-SP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7819, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'What is Lewidic-SP Tablet?', 'Lewidic-SP Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(7820, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Is it safe to use Lewidic-SP Tablet?', 'Yes, Lewidic-SP Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(7821, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Can I stop taking Lewidic-SP Tablet when my pain is relieved?', 'Lewidic-SP Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Lewidic-SP Tablet should be continued if you are advised by your physician to do so.'),
(7822, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Can the use of Lewidic-SP Tablet cause nausea and vomiting?', 'Yes, the use of Lewidic-SP Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(7823, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Can the use of Lewidic-SP Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(7824, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Are there any specific contraindications associated with the use of Lewidic-SP Tablet?', 'The use of Lewidic-SP Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(7825, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Can I take Lewidic-SP Tablet with Vitamin B-complex?', 'Lewidic-SP Tablet can be taken with Vitamin B-complex preparations. While Lewidic-SP Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(7826, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Can I take Lewidic-SP Tablet for stomach pain?', 'No, Lewidic-SP Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(7827, 'Lewidic-SP Tablet', 'Medilewis Biotech', 'Lewidic-SP Tablet', 'Can the use of Lewidic-SP Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Lewidic-SP Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(7828, 'Lewidos 5mg Tablet', 'Davis Morgan Labs', 'Lewidos 5mg Tablet', 'Q. Is Lewidos 5mg Tablet a steroid? What is it used for?', 'No, Lewidos 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7829, 'Lewidos 5mg Tablet', 'Davis Morgan Labs', 'Lewidos 5mg Tablet', 'Q. Does Lewidos 5mg Tablet make you tired and drowsy?', 'Yes, Lewidos 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7830, 'Lewidos 5mg Tablet', 'Davis Morgan Labs', 'Lewidos 5mg Tablet', 'Q. How long does it take for Lewidos 5mg Tablet to work?', 'Lewidos 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7831, 'Lewidos 5mg Tablet', 'Davis Morgan Labs', 'Lewidos 5mg Tablet', 'Q. Can I take Lewidos 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lewidos 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7832, 'Lewidos 5mg Tablet', 'Davis Morgan Labs', 'Lewidos 5mg Tablet', 'Q. Is it safe to take Lewidos 5mg Tablet for a long time?', 'Lewidos 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lewidos 5mg Tablet for only as long as you need it.'),
(7833, 'Lewidos 5mg Tablet', 'Davis Morgan Labs', 'Lewidos 5mg Tablet', 'Q. For how long should I continue Lewidos 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lewidos 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lewidos 5mg Tablet'),
(7834, 'Lewidos M 5mg/10mg Tablet', 'Davis Morgan Labs', 'Lewidos M 5mg/10mg Tablet', 'Q. What is Lewidos M 5mg/10mg Tablet?', 'Lewidos M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7835, 'Lewidos M 5mg/10mg Tablet', 'Davis Morgan Labs', 'Lewidos M 5mg/10mg Tablet', 'Q. Can the use of Lewidos M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lewidos M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7836, 'Lewidos M 5mg/10mg Tablet', 'Davis Morgan Labs', 'Lewidos M 5mg/10mg Tablet', 'Q. Can Lewidos M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lewidos M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7837, 'Lewidos M 5mg/10mg Tablet', 'Davis Morgan Labs', 'Lewidos M 5mg/10mg Tablet', 'Q. Can the use of Lewidos M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lewidos M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7838, 'Lewidos M 5mg/10mg Tablet', 'Davis Morgan Labs', 'Lewidos M 5mg/10mg Tablet', 'Q. Can I drink alcohol while taking Lewidos M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lewidos M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lewidos M 5mg/10mg Tablet.'),
(7839, 'Lewidos M 5mg/10mg Tablet', 'Davis Morgan Labs', 'Lewidos M 5mg/10mg Tablet', 'Q. Will Lewidos M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lewidos M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7840, 'Lewidos M 5mg/10mg Tablet', 'Davis Morgan Labs', 'Lewidos M 5mg/10mg Tablet', 'Q. What are the instructions for storage and disposal of Lewidos M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7841, 'Lewidrot Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewidrot Tablet', 'Q. What is Lewidrot Tablet?', 'Lewidrot Tablet is a combination of two medicines: Drotaverine and Mefenamic acid. This medication helps to relieve abdominal pain. Drotaverine relieves muscle spasms associated with smooth muscles in the abdomen. Mefenamic Acid works by blocking the release of certain chemical messengers that cause pain and inflammation (swelling).'),
(7842, 'Lewidrot Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewidrot Tablet', 'Q. Is it safe to use Lewidrot Tablet?', 'Yes, Lewidrot Tablet is safe for most of the patients with abdominal pain. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, diarrhoea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(7843, 'Lewidrot Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewidrot Tablet', 'Q. Can I stop taking Lewidrot Tablet when my pain is relieved?', 'Lewidrot Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lewidrot Tablet should be continued if your physician has advised you to do so.'),
(7844, 'Lewidrot Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewidrot Tablet', 'Q. Can the use of Lewidrot Tablet cause nausea and vomiting?', 'Yes, the use of Lewidrot Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Also, avoid taking fatty or fried foods along with the medicine. Talk to your doctor if you have vomiting persists and you notice any signs of dehydration like less urination with dark coloured and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(7845, 'Lewidrot Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewidrot Tablet', 'Q. Can the use of Lewidrot Tablet cause dry mouth?', 'Yes, the use of Lewidrot Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Avoid spicy, salty and acidic foods (like lemons).'),
(7846, 'Lewidrot Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewidrot Tablet', 'Q. Can I take a higher than the recommended dose of this medicine?', 'No, do not take a higher than the recommended dose of Lewidrot Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(7847, 'Lewidrot Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewidrot Tablet', 'Q. What are the recommended storage conditions for Lewidrot Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7848, 'Lewik 5mg Tablet', 'Biocube Pharma', 'Lewik 5mg Tablet', 'Q. Is Lewik 5mg Tablet a steroid? What is it used for?', 'No, Lewik 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7849, 'Lewik 5mg Tablet', 'Biocube Pharma', 'Lewik 5mg Tablet', 'Q. Does Lewik 5mg Tablet make you tired and drowsy?', 'Yes, Lewik 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7850, 'Lewik 5mg Tablet', 'Biocube Pharma', 'Lewik 5mg Tablet', 'Q. How long does it take for Lewik 5mg Tablet to work?', 'Lewik 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7851, 'Lewik 5mg Tablet', 'Biocube Pharma', 'Lewik 5mg Tablet', 'Q. Can I take Lewik 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lewik 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7852, 'Lewik 5mg Tablet', 'Biocube Pharma', 'Lewik 5mg Tablet', 'Q. Is it safe to take Lewik 5mg Tablet for a long time?', 'Lewik 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lewik 5mg Tablet for only as long as you need it.'),
(7853, 'Lewik 5mg Tablet', 'Biocube Pharma', 'Lewik 5mg Tablet', 'Q. For how long should I continue Lewik 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lewik 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lewik 5mg Tablet'),
(7854, 'Lewis 250mg Tablet', 'Morgen Healthcare', 'Lewis 250mg Tablet', 'Q. Is Lewis 250mg Tablet safe?', 'Lewis 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7855, 'Lewis 250mg Tablet', 'Morgen Healthcare', 'Lewis 250mg Tablet', 'Q. What if I forget to take a dose of Lewis 250mg Tablet?', 'If you forget a dose of Lewis 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7856, 'Lewis 250mg Tablet', 'Morgen Healthcare', 'Lewis 250mg Tablet', 'Q. Can the use of Lewis 250mg Tablet cause diarrhea?', 'Yes, the use of Lewis 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7857, 'Lewis 250mg Tablet', 'Morgen Healthcare', 'Lewis 250mg Tablet', 'Q. Can I stop taking Lewis 250mg Tablet when I feel better?', 'No, do not stop taking Lewis 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewis 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lewis 250mg Tablet in the dose and duration advised by the doctor.'),
(7858, 'Lewis 250mg Tablet', 'Morgen Healthcare', 'Lewis 250mg Tablet', 'Q. Can the use of Lewis 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewis 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewis 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7859, 'Lewis 500mg Tablet', 'Morgen Healthcare', 'Lewis 500mg Tablet', 'Q. Is Lewis 500mg Tablet safe?', 'Lewis 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7860, 'Lewis 500mg Tablet', 'Morgen Healthcare', 'Lewis 500mg Tablet', 'Q. What if I forget to take a dose of Lewis 500mg Tablet?', 'If you forget a dose of Lewis 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7861, 'Lewis 500mg Tablet', 'Morgen Healthcare', 'Lewis 500mg Tablet', 'Q. Can the use of Lewis 500mg Tablet cause diarrhea?', 'Yes, the use of Lewis 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7862, 'Lewis 500mg Tablet', 'Morgen Healthcare', 'Lewis 500mg Tablet', 'Q. Can I stop taking Lewis 500mg Tablet when I feel better?', 'No, do not stop taking Lewis 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewis 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lewis 500mg Tablet in the dose and duration advised by the doctor.'),
(7863, 'Lewis 500mg Tablet', 'Morgen Healthcare', 'Lewis 500mg Tablet', 'Q. Can the use of Lewis 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewis 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewis 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7864, 'Lewisflox 500mg Tablet', 'Medilewis Biotech', 'Lewisflox 500mg Tablet', 'Q. Is Lewisflox 500mg Tablet safe?', 'Lewisflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7865, 'Lewisflox 500mg Tablet', 'Medilewis Biotech', 'Lewisflox 500mg Tablet', 'Q. What if I forget to take a dose of Lewisflox 500mg Tablet?', 'If you forget a dose of Lewisflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7866, 'Lewisflox 500mg Tablet', 'Medilewis Biotech', 'Lewisflox 500mg Tablet', 'Q. Can the use of Lewisflox 500mg Tablet cause diarrhea?', 'Yes, the use of Lewisflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7867, 'Lewisflox 500mg Tablet', 'Medilewis Biotech', 'Lewisflox 500mg Tablet', 'Q. Can I stop taking Lewisflox 500mg Tablet when I feel better?', 'No, do not stop taking Lewisflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewisflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lewisflox 500mg Tablet in the dose and duration advised by the doctor.'),
(7868, 'Lewisflox 500mg Tablet', 'Medilewis Biotech', 'Lewisflox 500mg Tablet', 'Q. Can the use of Lewisflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewisflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewisflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7869, 'Lewisther 150mg Injection', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewisther 150mg Injection', 'Q. Who should not use Lewisther 150mg Injection?', 'Use of Lewisther 150mg Injection should be avoided in patients who are allergic to Lewisther 150mg Injection or any of its components. However, if you are not aware of any allergy or if you are using Lewisther 150mg Injection for the first time, consult your doctor.'),
(7870, 'Lewisther 150mg Injection', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewisther 150mg Injection', 'Q. What should I tell my doctor before starting treatment with Lewisther 150mg Injection?', 'Before starting treatment with Lewisther 150mg Injection, inform your doctor if you have any other health conditions like kidney- or heart-related problems. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(7871, 'Lewisther 150mg Injection', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewisther 150mg Injection', 'Q. Is Lewisther 150mg Injection safe?', 'Lewisther 150mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7872, 'Lewisther 150mg Injection', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewisther 150mg Injection', 'Q. How is Lewisther 150mg Injection administered?', 'Lewisther 150mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lewisther 150mg Injection.'),
(7873, 'Lewlet 10mg Tablet', 'Aden Healthcare', 'Lewlet 10mg Tablet', 'Q. Is Lewlet 10mg Tablet a steroid? What is it used for?', 'No, Lewlet 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7874, 'Lewlet 10mg Tablet', 'Aden Healthcare', 'Lewlet 10mg Tablet', 'Q. Does Lewlet 10mg Tablet make you tired and drowsy?', 'Yes, Lewlet 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7875, 'Lewlet 10mg Tablet', 'Aden Healthcare', 'Lewlet 10mg Tablet', 'Q. How long does it take for Lewlet 10mg Tablet to work?', 'Lewlet 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7876, 'Lewlet 10mg Tablet', 'Aden Healthcare', 'Lewlet 10mg Tablet', 'Q. Can I take Lewlet 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lewlet 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7877, 'Lewlet 10mg Tablet', 'Aden Healthcare', 'Lewlet 10mg Tablet', 'Q. Is it safe to take Lewlet 10mg Tablet for a long time?', 'Lewlet 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lewlet 10mg Tablet for only as long as you need it.'),
(7878, 'Lewlet 10mg Tablet', 'Aden Healthcare', 'Lewlet 10mg Tablet', 'Q. For how long should I continue Lewlet 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lewlet 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lewlet 10mg Tablet'),
(7879, 'Lewlet 5mg Tablet', 'Aden Healthcare', 'Lewlet 5mg Tablet', 'Q. Is Lewlet 5mg Tablet a steroid? What is it used for?', 'No, Lewlet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(7880, 'Lewlet 5mg Tablet', 'Aden Healthcare', 'Lewlet 5mg Tablet', 'Q. Does Lewlet 5mg Tablet make you tired and drowsy?', 'Yes, Lewlet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(7881, 'Lewlet 5mg Tablet', 'Aden Healthcare', 'Lewlet 5mg Tablet', 'Q. How long does it take for Lewlet 5mg Tablet to work?', 'Lewlet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(7882, 'Lewlet 5mg Tablet', 'Aden Healthcare', 'Lewlet 5mg Tablet', 'Q. Can I take Lewlet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lewlet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(7883, 'Lewlet 5mg Tablet', 'Aden Healthcare', 'Lewlet 5mg Tablet', 'Q. Is it safe to take Lewlet 5mg Tablet for a long time?', 'Lewlet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lewlet 5mg Tablet for only as long as you need it.'),
(7884, 'Lewlet 5mg Tablet', 'Aden Healthcare', 'Lewlet 5mg Tablet', 'Q. For how long should I continue Lewlet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lewlet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lewlet 5mg Tablet'),
(7885, 'Lewlet-M 5mg/10mg Tablet', 'Aden Healthcare', 'Lewlet-M 5mg/10mg Tablet', 'Q. What is Lewlet-M 5mg/10mg Tablet?', 'Lewlet-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7886, 'Lewlet-M 5mg/10mg Tablet', 'Aden Healthcare', 'Lewlet-M 5mg/10mg Tablet', 'Q. Can the use of Lewlet-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lewlet-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7887, 'Lewlet-M 5mg/10mg Tablet', 'Aden Healthcare', 'Lewlet-M 5mg/10mg Tablet', 'Q. Can Lewlet-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lewlet-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7888, 'Lewlet-M 5mg/10mg Tablet', 'Aden Healthcare', 'Lewlet-M 5mg/10mg Tablet', 'Q. Can the use of Lewlet-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lewlet-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7889, 'Lewlet-M 5mg/10mg Tablet', 'Aden Healthcare', 'Lewlet-M 5mg/10mg Tablet', 'Q. Can I drink alcohol while taking Lewlet-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lewlet-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lewlet-M 5mg/10mg Tablet.'),
(7890, 'Lewlet-M 5mg/10mg Tablet', 'Aden Healthcare', 'Lewlet-M 5mg/10mg Tablet', 'Q. Will Lewlet-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lewlet-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7891, 'Lewlet-M 5mg/10mg Tablet', 'Aden Healthcare', 'Lewlet-M 5mg/10mg Tablet', 'Q. What are the instructions for storage and disposal of Lewlet-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7892, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7893, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. Can I decrease the dose of Lewlet-M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7894, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. How should Lewlet-M Kid 2.5mg/4mg Tablet be stored?', 'Lewlet-M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7895, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. Can Lewlet-M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Lewlet-M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7896, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lewlet-M Kid 2.5mg/4mg Tablet?', 'No, don’t start Lewlet-M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Lewlet-M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7897, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lewlet-M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7898, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. My child is suffering from a mood disorder. Is it safe to give Lewlet-M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Lewlet-M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7899, 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Aden Healthcare', 'Lewlet-M Kid 2.5mg/4mg Tablet', 'Q. Can I use Lewlet-M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Lewlet-M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7900, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(7901, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. Can I decrease the dose of Lewlet-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(7902, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. How should Lewlet-M Syrup be stored?', 'Lewlet-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(7903, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. Can Lewlet-M Syrup make my child sleepy?', 'Lewlet-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(7904, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lewlet-M Syrup?', 'No, don’t start Lewlet-M Syrup without speaking to your child’s doctor. Moreover, Lewlet-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(7905, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lewlet-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(7906, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. My child is suffering from a mood disorder. Is it safe to give Lewlet-M Syrup to my child?', 'Some studies show that Lewlet-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(7907, 'Lewlet-M Syrup', 'Aden Healthcare', 'Lewlet-M Syrup', 'Q. Can I use Lewlet-M Syrup for treating acute asthma attacks in my child?', 'Lewlet-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(7908, 'Lewo 500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo 500mg Tablet', 'Q. Is Lewo 500mg Tablet safe?', 'Lewo 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7909, 'Lewo 500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo 500mg Tablet', 'Q. What if I forget to take a dose of Lewo 500mg Tablet?', 'If you forget a dose of Lewo 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7910, 'Lewo 500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo 500mg Tablet', 'Q. Can the use of Lewo 500mg Tablet cause diarrhea?', 'Yes, the use of Lewo 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7911, 'Lewo 500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo 500mg Tablet', 'Q. Can I stop taking Lewo 500mg Tablet when I feel better?', 'No, do not stop taking Lewo 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewo 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lewo 500mg Tablet in the dose and duration advised by the doctor.'),
(7912, 'Lewo 500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo 500mg Tablet', 'Q. Can the use of Lewo 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewo 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewo 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(7913, 'Lewo OZ 250mg/500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo OZ 250mg/500mg Tablet', 'Q. What if I don\'t get better after using Lewo OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7914, 'Lewo OZ 250mg/500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo OZ 250mg/500mg Tablet', 'Q. Can I stop taking Lewo OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Lewo OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(7915, 'Lewo OZ 250mg/500mg Tablet', 'Ambrosia Drugs Pvt Ltd', 'Lewo OZ 250mg/500mg Tablet', 'Q. What if I miss my dose?', 'Take Lewo OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(7916, 'Lewo-M Tablet', 'Wish Well Pharmaceuticals', 'Lewo-M Tablet', 'Q. What is Lewo-M Tablet?', 'Lewo-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(7917, 'Lewo-M Tablet', 'Wish Well Pharmaceuticals', 'Lewo-M Tablet', 'Q. Can the use of Lewo-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lewo-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(7918, 'Lewo-M Tablet', 'Wish Well Pharmaceuticals', 'Lewo-M Tablet', 'Q. Can Lewo-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lewo-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(7919, 'Lewo-M Tablet', 'Wish Well Pharmaceuticals', 'Lewo-M Tablet', 'Q. Can the use of Lewo-M Tablet cause dry mouth?', 'Yes, the use of Lewo-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(7920, 'Lewo-M Tablet', 'Wish Well Pharmaceuticals', 'Lewo-M Tablet', 'Q. Can I drink alcohol while taking Lewo-M Tablet?', 'No, do not take alcohol while taking Lewo-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lewo-M Tablet.'),
(7921, 'Lewo-M Tablet', 'Wish Well Pharmaceuticals', 'Lewo-M Tablet', 'Q. Will Lewo-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lewo-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(7922, 'Lewo-M Tablet', 'Wish Well Pharmaceuticals', 'Lewo-M Tablet', 'Q. What are the instructions for storage and disposal of Lewo-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(7923, 'Lewon 250mg Tablet', 'Park Pharmaceuticals', 'Lewon 250mg Tablet', 'Q. Is Lewon 250mg Tablet safe?', 'Lewon 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7924, 'Lewon 250mg Tablet', 'Park Pharmaceuticals', 'Lewon 250mg Tablet', 'Q. What if I forget to take a dose of Lewon 250mg Tablet?', 'If you forget a dose of Lewon 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7925, 'Lewon 250mg Tablet', 'Park Pharmaceuticals', 'Lewon 250mg Tablet', 'Q. Can the use of Lewon 250mg Tablet cause diarrhea?', 'Yes, the use of Lewon 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7926, 'Lewon 250mg Tablet', 'Park Pharmaceuticals', 'Lewon 250mg Tablet', 'Q. Can I stop taking Lewon 250mg Tablet when I feel better?', 'No, do not stop taking Lewon 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewon 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lewon 250mg Tablet in the dose and duration advised by the doctor.'),
(7927, 'Lewon 250mg Tablet', 'Park Pharmaceuticals', 'Lewon 250mg Tablet', 'Q. Can the use of Lewon 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewon 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewon 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7928, 'Lewon 500mg Tablet', 'Park Pharmaceuticals', 'Lewon 500mg Tablet', 'Q. Is Lewon 500mg Tablet safe?', 'Lewon 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7929, 'Lewon 500mg Tablet', 'Park Pharmaceuticals', 'Lewon 500mg Tablet', 'Q. What if I forget to take a dose of Lewon 500mg Tablet?', 'If you forget a dose of Lewon 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7930, 'Lewon 500mg Tablet', 'Park Pharmaceuticals', 'Lewon 500mg Tablet', 'Q. Can the use of Lewon 500mg Tablet cause diarrhea?', 'Yes, the use of Lewon 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7931, 'Lewon 500mg Tablet', 'Park Pharmaceuticals', 'Lewon 500mg Tablet', 'Q. Can I stop taking Lewon 500mg Tablet when I feel better?', 'No, do not stop taking Lewon 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewon 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lewon 500mg Tablet in the dose and duration advised by the doctor.'),
(7932, 'Lewon 500mg Tablet', 'Park Pharmaceuticals', 'Lewon 500mg Tablet', 'Q. Can the use of Lewon 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewon 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewon 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7933, 'Leworm 6mg/400mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm 6mg/400mg Tablet', 'Q. Can Leworm 6mg/400mg Tablet be stopped when my symptoms are gone?', 'No, Leworm 6mg/400mg Tablet should be continued as advised by the doctor. If you experience any problems due to the consumption of Leworm 6mg/400mg Tablet, consult the doctor for re-evaluation. Do not stop even you feel better. Stopping Leworm 6mg/400mg Tablet early may make the infection come back and harder to treat.'),
(7934, 'Leworm 6mg/400mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm 6mg/400mg Tablet', 'Q. Can the use of Leworm 6mg/400mg Tablet cause diarrhea?', 'Yes, the use ofLeworm 6mg/400mg Tablet can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(7935, 'Leworm 6mg/400mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm 6mg/400mg Tablet', 'Q.  Will Leworm 6mg/400mg Tablet be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If you do not find any relief in your symptoms even after taking the recommended doses, please consult your doctor.'),
(7936, 'Leworm 6mg/400mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm 6mg/400mg Tablet', 'Q. What are the instructions for storage and disposal of Leworm 6mg/400mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7937, 'Leworm Suspension', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm Suspension', 'Q. How can I know that my child is having a worm infection?', 'It could be worm infection if your child complains of an itchy bottom (rectal area), difficulty sitting, fatigue, restless sleep due to anal itching, and persistent stomach pain with loss of appetite or frequent indigestion. Another sign of worm infection is pica in which you may notice your child eating inedible substances such as mud. Speak to your child’s doctor as soon as you notice any of these in your child. The doctor may suggest collecting your child’s stool and blood samples on 3 different days for examination. Depending upon the reports, the doctor will decide upon the treatment and prescribe your child with medicine.'),
(7938, 'Leworm Suspension', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm Suspension', 'Q. What is the best time to give Leworm Suspension to my child?', 'Leworm Suspension can be given at any time of the day just remember to give it with a fat-containing food such as milk.'),
(7939, 'Leworm Suspension', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm Suspension', 'Q. How can my child become infected with intestinal worms?', 'Areas with poor sanitation may have soil that is contaminated with eggs of worms. Your child may also get infected by playing in the contaminated soil. When your child returns home after playing, ask them to clean up using soap and water. Transmission can also occur by drinking contaminated water or by eating contaminated vegetables and fruits without washing or peeling.'),
(7940, 'Leworm Suspension', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm Suspension', 'Q. How should I store my child’s medicine?', 'Store Leworm Suspension at room temperature in a cool dry place beyond the reach of the children and pets to avoid any accidental intake. Do not freeze the medicine.'),
(7941, 'Leworm Suspension', 'Pleasant Pharmaceuticals Pvt Ltd', 'Leworm Suspension', 'Q. When should I call my child’s doctor right away?', 'Reach out to the doctor if your child complains of vision problems, puffy eyes, severe itching all over the body or experiences trouble walking or standing, trouble breathing, fast heart rate. You should also not neglect if your child feels disoriented or confused, exhibits loss of bowel control, or complains of neck pain soon after the intake of Leworm Suspension.'),
(7942, 'Lewoz 500mg Tablet', 'Decisive Pharma', 'Lewoz 500mg Tablet', 'Q. Is Lewoz 500mg Tablet safe?', 'Lewoz 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7943, 'Lewoz 500mg Tablet', 'Decisive Pharma', 'Lewoz 500mg Tablet', 'Q. What if I forget to take a dose of Lewoz 500mg Tablet?', 'If you forget a dose of Lewoz 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7944, 'Lewoz 500mg Tablet', 'Decisive Pharma', 'Lewoz 500mg Tablet', 'Q. Can the use of Lewoz 500mg Tablet cause diarrhea?', 'Yes, the use of Lewoz 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7945, 'Lewoz 500mg Tablet', 'Decisive Pharma', 'Lewoz 500mg Tablet', 'Q. Can I stop taking Lewoz 500mg Tablet when I feel better?', 'No, do not stop taking Lewoz 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewoz 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lewoz 500mg Tablet in the dose and duration advised by the doctor.'),
(7946, 'Lewoz 500mg Tablet', 'Decisive Pharma', 'Lewoz 500mg Tablet', 'Q. Can the use of Lewoz 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewoz 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewoz 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7947, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. Is Lewpod 100 Tablet DT safe to use?', 'Lewpod 100 Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(7948, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. Can the use of Lewpod 100 Tablet DT cause diarrhea?', 'Yes, the use of Lewpod 100 Tablet DT can cause diarrhea. Lewpod 100 Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(7949, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. Is Lewpod 100 Tablet DT an antibiotic?', 'Yes, Lewpod 100 Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(7950, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. Can Lewpod 100 Tablet DT cause constipation?', 'Yes, Lewpod 100 Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(7951, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. Can I stop taking Lewpod 100 Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lewpod 100 Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(7952, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. How long does Lewpod 100 Tablet DT take to work?', 'Usually, Lewpod 100 Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(7953, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. What if I do not get better after using Lewpod 100 Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(7954, 'Lewpod 100 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 100 Tablet DT', 'Q. Can Lewpod 100 Tablet DT treat UTI?', 'Yes, Lewpod 100 Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lewpod 100 Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(7955, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. Is Lewpod 200 Tablet DT safe to use?', 'Lewpod 200 Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(7956, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. Can the use of Lewpod 200 Tablet DT cause diarrhea?', 'Yes, the use of Lewpod 200 Tablet DT can cause diarrhea. Lewpod 200 Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(7957, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. Is Lewpod 200 Tablet DT an antibiotic?', 'Yes, Lewpod 200 Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(7958, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. Can Lewpod 200 Tablet DT cause constipation?', 'Yes, Lewpod 200 Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(7959, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. Can I stop taking Lewpod 200 Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lewpod 200 Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(7960, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. How long does Lewpod 200 Tablet DT take to work?', 'Usually, Lewpod 200 Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(7961, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. What if I do not get better after using Lewpod 200 Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(7962, 'Lewpod 200 Tablet DT', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod 200 Tablet DT', 'Q. Can Lewpod 200 Tablet DT treat UTI?', 'Yes, Lewpod 200 Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lewpod 200 Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(7963, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. Can the use of Lewpod-CV Tablet cause diarrhea?', 'Yes, the use of Lewpod-CV Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7964, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. How long does Lewpod-CV Tablet takes to work?', 'Usually, Lewpod-CV Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(7965, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. What if I don\'t get better after using Lewpod-CV Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(7966, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. Can I stop taking Lewpod-CV Tablet when I feel better?', 'No, do not stop taking Lewpod-CV Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(7967, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. What is Lewpod-CV Tablet?', 'Lewpod-CV Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(7968, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. Can the use of Lewpod-CV Tablet cause any serious side effects?', 'Lewpod-CV Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(7969, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. Can I stop taking Lewpod-CV Tablet when my symptoms are relieved?', 'No, do not stop taking Lewpod-CV Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(7970, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. Can Lewpod-CV Tablet cause allergic reaction?', 'Yes, Lewpod-CV Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(7971, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. Are there any specific contraindications associated with the use of Lewpod-CV Tablet?', 'The use of Lewpod-CV Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Lewpod-CV Tablet.'),
(7972, 'Lewpod-CV Tablet', 'Lewis Bioserch Pharma Pvt Ltd', 'Lewpod-CV Tablet', 'Q. Can I take oral contraceptive pills while taking Lewpod-CV Tablet?', 'No, Lewpod-CV Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(7973, 'Lewton 500mg Tablet', 'Edward Young Labs', 'Lewton 500mg Tablet', 'Q. Is Lewton 500mg Tablet safe?', 'Lewton 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7974, 'Lewton 500mg Tablet', 'Edward Young Labs', 'Lewton 500mg Tablet', 'Q. What if I forget to take a dose of Lewton 500mg Tablet?', 'If you forget a dose of Lewton 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7975, 'Lewton 500mg Tablet', 'Edward Young Labs', 'Lewton 500mg Tablet', 'Q. Can the use of Lewton 500mg Tablet cause diarrhea?', 'Yes, the use of Lewton 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7976, 'Lewton 500mg Tablet', 'Edward Young Labs', 'Lewton 500mg Tablet', 'Q. Can I stop taking Lewton 500mg Tablet when I feel better?', 'No, do not stop taking Lewton 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewton 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lewton 500mg Tablet in the dose and duration advised by the doctor.'),
(7977, 'Lewton 500mg Tablet', 'Edward Young Labs', 'Lewton 500mg Tablet', 'Q. Can the use of Lewton 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewton 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewton 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7978, 'Lewton 750mg Tablet', 'Edward Young Labs', 'Lewton 750mg Tablet', 'Q. Is Lewton 750mg Tablet safe?', 'Lewton 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7979, 'Lewton 750mg Tablet', 'Edward Young Labs', 'Lewton 750mg Tablet', 'Q. What if I forget to take a dose of Lewton 750mg Tablet?', 'If you forget a dose of Lewton 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7980, 'Lewton 750mg Tablet', 'Edward Young Labs', 'Lewton 750mg Tablet', 'Q. Can the use of Lewton 750mg Tablet cause diarrhea?', 'Yes, the use of Lewton 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7981, 'Lewton 750mg Tablet', 'Edward Young Labs', 'Lewton 750mg Tablet', 'Q. Can I stop taking Lewton 750mg Tablet when I feel better?', 'No, do not stop taking Lewton 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lewton 750mg Tablet too early, the symptoms may return or worsen. Continue taking Lewton 750mg Tablet in the dose and duration advised by the doctor.'),
(7982, 'Lewton 750mg Tablet', 'Edward Young Labs', 'Lewton 750mg Tablet', 'Q. Can the use of Lewton 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lewton 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lewton 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7983, 'Lewud-A Tablet SR', 'Trustcare Pharmaceuticals', 'Lewud-A Tablet SR', 'Q. Can the use of Lewud-A Tablet SR cause dry mouth?', 'Yes, the use of Lewud-A Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(7984, 'Lewud-A Tablet SR', 'Trustcare Pharmaceuticals', 'Lewud-A Tablet SR', 'Q. Can I use Lewud-A Tablet SR while breastfeeding?', 'No, Lewud-A Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(7985, 'Lewud-A Tablet SR', 'Trustcare Pharmaceuticals', 'Lewud-A Tablet SR', 'Q. Can I drink alcohol while taking Lewud-A Tablet SR?', 'No, avoid drinking alcohol while taking Lewud-A Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Lewud-A Tablet SR.'),
(7986, 'Lewud-A Tablet SR', 'Trustcare Pharmaceuticals', 'Lewud-A Tablet SR', 'Q. What are the instructions for the storage and disposal of Lewud-A Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(7987, 'Lexa 500 Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa 500 Tablet', 'Q. Is Lexa 500 Tablet safe?', 'Lexa 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7988, 'Lexa 500 Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa 500 Tablet', 'Q. What if I forget to take a dose of Lexa 500 Tablet?', 'If you forget a dose of Lexa 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7989, 'Lexa 500 Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa 500 Tablet', 'Q. Can the use of Lexa 500 Tablet cause diarrhea?', 'Yes, the use of Lexa 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7990, 'Lexa 500 Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa 500 Tablet', 'Q. Can I stop taking Lexa 500 Tablet when I feel better?', 'No, do not stop taking Lexa 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexa 500 Tablet too early, the symptoms may return or worsen. Continue taking Lexa 500 Tablet in the dose and duration advised by the doctor.'),
(7991, 'Lexa 500 Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa 500 Tablet', 'Q. Can the use of Lexa 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Lexa 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexa 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7992, 'Lexacin 250mg Tablet', 'Shince Pharmaceuticals Pvt Ltd', 'Lexacin 250mg Tablet', 'Q. Is Lexacin 250mg Tablet safe?', 'Lexacin 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(7993, 'Lexacin 250mg Tablet', 'Shince Pharmaceuticals Pvt Ltd', 'Lexacin 250mg Tablet', 'Q. What if I forget to take a dose of Lexacin 250mg Tablet?', 'If you forget a dose of Lexacin 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(7994, 'Lexacin 250mg Tablet', 'Shince Pharmaceuticals Pvt Ltd', 'Lexacin 250mg Tablet', 'Q. Can the use of Lexacin 250mg Tablet cause diarrhea?', 'Yes, the use of Lexacin 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(7995, 'Lexacin 250mg Tablet', 'Shince Pharmaceuticals Pvt Ltd', 'Lexacin 250mg Tablet', 'Q. Can I stop taking Lexacin 250mg Tablet when I feel better?', 'No, do not stop taking Lexacin 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexacin 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lexacin 250mg Tablet in the dose and duration advised by the doctor.'),
(7996, 'Lexacin 250mg Tablet', 'Shince Pharmaceuticals Pvt Ltd', 'Lexacin 250mg Tablet', 'Q. Can the use of Lexacin 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lexacin 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexacin 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(7997, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. How long does it take for Lexadep 10 Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexadep 10 Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(7998, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. What are the most common side effects of Lexadep 10 Tablet?', 'The most common side effects of Lexadep 10 Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexadep 10 Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(7999, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. What is Lexadep 10 Tablet used for?', 'Lexadep 10 Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8000, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. Is Lexadep 10 Tablet dangerous?', 'The use of Lexadep 10 Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexadep 10 Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexadep 10 Tablet.'),
(8001, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. Is Lexadep 10 Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexadep 10 Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8002, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. Can I stop taking Lexadep 10 Tablet on my own?', 'Lexadep 10 Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8003, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8004, 'Lexadep 10 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 10 Tablet', 'Q. What if I accidentally take more than the recommended dose of Lexadep 10 Tablet?', 'If you accidentally take more than the recommended dose of Lexadep 10 Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8005, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. How long does it take for Lexadep 20mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexadep 20mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8006, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. What are the most common side effects of Lexadep 20mg Tablet?', 'The most common side effects of Lexadep 20mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexadep 20mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8007, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. What is Lexadep 20mg Tablet used for?', 'Lexadep 20mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8008, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. Is Lexadep 20mg Tablet dangerous?', 'The use of Lexadep 20mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexadep 20mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexadep 20mg Tablet.'),
(8009, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. Is Lexadep 20mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexadep 20mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8010, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. Can I stop taking Lexadep 20mg Tablet on my own?', 'Lexadep 20mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8011, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8012, 'Lexadep 20mg Tablet', 'Pulse Pharmaceuticals', 'Lexadep 20mg Tablet', 'Q. What if I accidentally take more than the recommended dose of Lexadep 20mg Tablet?', 'If you accidentally take more than the recommended dose of Lexadep 20mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8013, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. How long does it take for Lexadep 5 Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexadep 5 Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8014, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. What are the most common side effects of Lexadep 5 Tablet?', 'The most common side effects of Lexadep 5 Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexadep 5 Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8015, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. What is Lexadep 5 Tablet used for?', 'Lexadep 5 Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8016, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. Is Lexadep 5 Tablet dangerous?', 'The use of Lexadep 5 Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexadep 5 Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexadep 5 Tablet.'),
(8017, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. Is Lexadep 5 Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexadep 5 Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8018, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. Can I stop taking Lexadep 5 Tablet on my own?', 'Lexadep 5 Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8019, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8020, 'Lexadep 5 Tablet', 'Pulse Pharmaceuticals', 'Lexadep 5 Tablet', 'Q. What if I accidentally take more than the recommended dose of Lexadep 5 Tablet?', 'If you accidentally take more than the recommended dose of Lexadep 5 Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8021, 'Lexadep AX Tablet', 'Pulse Pharmaceuticals', 'Lexadep AX Tablet', 'What is Lexadep AX Tablet?', 'Lexadep AX Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(8022, 'Lexadep AX Tablet', 'Pulse Pharmaceuticals', 'Lexadep AX Tablet', 'Can the Lexadep AX Tablet cause sleepiness or drowsiness?', 'Lexadep AX Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(8023, 'Lexadep AX Tablet', 'Pulse Pharmaceuticals', 'Lexadep AX Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexadep AX Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8024, 'Lexadep AX Tablet', 'Pulse Pharmaceuticals', 'Lexadep AX Tablet', 'Any special instruction regarding storage and disposal of Lexadep AX Tablet?', 'Keep Lexadep AX Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(8025, 'Lexadep AX Tablet', 'Pulse Pharmaceuticals', 'Lexadep AX Tablet', 'Can I stop taking Lexadep AX Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexadep AX Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(8026, 'Lexadol 500mg Tablet', 'Dolvis Bio Pharma Pvt Ltd', 'Lexadol 500mg Tablet', 'Is Lexadol 500mg Tablet safe?', 'Lexadol 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8027, 'Lexadol 500mg Tablet', 'Dolvis Bio Pharma Pvt Ltd', 'Lexadol 500mg Tablet', 'What if I forget to take a dose of Lexadol 500mg Tablet?', 'If you forget a dose of Lexadol 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8028, 'Lexadol 500mg Tablet', 'Dolvis Bio Pharma Pvt Ltd', 'Lexadol 500mg Tablet', 'Can the use of Lexadol 500mg Tablet cause diarrhea?', 'Yes, the use of Lexadol 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8029, 'Lexadol 500mg Tablet', 'Dolvis Bio Pharma Pvt Ltd', 'Lexadol 500mg Tablet', 'Can I stop taking Lexadol 500mg Tablet when I feel better?', 'No, do not stop taking Lexadol 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexadol 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lexadol 500mg Tablet in the dose and duration advised by the doctor.'),
(8030, 'Lexadol 500mg Tablet', 'Dolvis Bio Pharma Pvt Ltd', 'Lexadol 500mg Tablet', 'Can the use of Lexadol 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lexadol 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexadol 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(8031, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'How long does it take for Lexaheal 10mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexaheal 10mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8032, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'What are the most common side effects of Lexaheal 10mg Tablet?', 'The most common side effects of Lexaheal 10mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexaheal 10mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8033, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'What is Lexaheal 10mg Tablet used for?', 'Lexaheal 10mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8034, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'Is Lexaheal 10mg Tablet dangerous?', 'The use of Lexaheal 10mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexaheal 10mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexaheal 10mg Tablet.'),
(8035, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'Is Lexaheal 10mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexaheal 10mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8036, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'Can I stop taking Lexaheal 10mg Tablet on my own?', 'Lexaheal 10mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8037, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8038, 'Lexaheal 10mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 10mg Tablet', 'What if I accidentally take more than the recommended dose of Lexaheal 10mg Tablet?', 'If you accidentally take more than the recommended dose of Lexaheal 10mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8039, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'How long does it take for Lexaheal 20mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexaheal 20mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8040, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'What are the most common side effects of Lexaheal 20mg Tablet?', 'The most common side effects of Lexaheal 20mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexaheal 20mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8041, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'What is Lexaheal 20mg Tablet used for?', 'Lexaheal 20mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8042, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'Is Lexaheal 20mg Tablet dangerous?', 'The use of Lexaheal 20mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexaheal 20mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexaheal 20mg Tablet.'),
(8043, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'Is Lexaheal 20mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexaheal 20mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8044, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'Can I stop taking Lexaheal 20mg Tablet on my own?', 'Lexaheal 20mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8045, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8046, 'Lexaheal 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lexaheal 20mg Tablet', 'What if I accidentally take more than the recommended dose of Lexaheal 20mg Tablet?', 'If you accidentally take more than the recommended dose of Lexaheal 20mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8047, 'Lexajem 500 Tablet', 'Jemster Healthcare Private Limited', 'Lexajem 500 Tablet', 'Is Lexajem 500 Tablet safe?', 'Lexajem 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8048, 'Lexajem 500 Tablet', 'Jemster Healthcare Private Limited', 'Lexajem 500 Tablet', 'What if I forget to take a dose of Lexajem 500 Tablet?', 'If you forget a dose of Lexajem 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8049, 'Lexajem 500 Tablet', 'Jemster Healthcare Private Limited', 'Lexajem 500 Tablet', 'Can the use of Lexajem 500 Tablet cause diarrhea?', 'Yes, the use of Lexajem 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8050, 'Lexajem 500 Tablet', 'Jemster Healthcare Private Limited', 'Lexajem 500 Tablet', 'Can I stop taking Lexajem 500 Tablet when I feel better?', 'No, do not stop taking Lexajem 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexajem 500 Tablet too early, the symptoms may return or worsen. Continue taking Lexajem 500 Tablet in the dose and duration advised by the doctor.'),
(8051, 'Lexajem 500 Tablet', 'Jemster Healthcare Private Limited', 'Lexajem 500 Tablet', 'Can the use of Lexajem 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Lexajem 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexajem 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(8052, 'Lexanox Oral Paste', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Oral Paste', 'How should I use Lexanox Oral Paste?', 'No, you should not swallow Lexanox Oral Paste. Just apply a thin layer of Lexanox Oral Paste over the affected area in the mouth with a cotton swab.'),
(8053, 'Lexanox Oral Paste', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Oral Paste', 'How long does it take Lexanox Oral Paste to work?', 'You can see an improvement in your ulcers within 7 days. However, your doctor will decide the exact dose and duration of your treatment depending on your condition. Follow your doctor’s instructions to get the maximum benefit of Lexanox Oral Paste. Moreover, if you do not find a considerable improvement within the prescribed duration, consult your doctor. It is important to know if your symptoms have worsened with time then stop the medication immediately and consult your doctor.'),
(8054, 'Lexanox Oral Paste', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Oral Paste', 'What foods are bad for mouth ulcers?', 'Avoid spicy foods, acidic fruit drinks, and very salty foods (such as crisps) which can make the pain and sting worse.'),
(8055, 'Lexanox Oral Paste', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Oral Paste', 'What things to be kept in mind while using Lexanox Oral Paste?', 'Along with using Lexanox Oral Paste use a soft toothbrush, avoid eating and drinking immediately after applying this medicine, avoid putting dentures or braces back in the mouth for half an hour after applying the gel in your mouth and stop smoking completely.'),
(8056, 'Lexanox Oral Paste', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Oral Paste', 'What causes mouth ulcers?', 'There is no definite cause behind mouth ulcers. Some of the factors include biting the inside of your mouth; food sensitivities to acidic foods like strawberries, oranges, pineapples; lack of essential vitamins, especially B-12, zinc, folate, and iron; dental braces; using a toothbrush with hard bristles and certain medications.'),
(8057, 'Lexanox Plus Oral Paste Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Plus Oral Paste Sugar Free', 'How should I use Lexanox Plus Oral Paste Sugar Free?', 'No, you should not swallow Lexanox Plus Oral Paste Sugar Free. Just apply a thin layer of Lexanox Plus Oral Paste Sugar Free over the affected area in the mouth with a cotton swab.'),
(8058, 'Lexanox Plus Oral Paste Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Plus Oral Paste Sugar Free', 'How long does it take Lexanox Plus Oral Paste Sugar Free to work?', 'You can see an improvement in your ulcers within 7 days. However, your doctor will decide the exact dose and duration of your treatment depending on your condition. Follow your doctor’s instructions to get the maximum benefit of Lexanox Plus Oral Paste Sugar Free. Moreover, if you do not find a considerable improvement within the prescribed duration, consult your doctor. It is important to know if your symptoms have worsened with time then stop the medication immediately and consult your doctor.'),
(8059, 'Lexanox Plus Oral Paste Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Plus Oral Paste Sugar Free', 'What foods are bad for mouth ulcers?', 'Avoid spicy foods, acidic fruit drinks, and very salty foods (such as crisps) which can make the pain and sting worse.'),
(8060, 'Lexanox Plus Oral Paste Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Plus Oral Paste Sugar Free', 'What things to be kept in mind while using Lexanox Plus Oral Paste Sugar Free?', 'Along with using Lexanox Plus Oral Paste Sugar Free use a soft toothbrush, avoid eating and drinking immediately after applying this medicine, avoid putting dentures or braces back in the mouth for half an hour after applying the gel in your mouth and stop smoking completely.'),
(8061, 'Lexanox Plus Oral Paste Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lexanox Plus Oral Paste Sugar Free', 'What causes mouth ulcers?', 'There is no definite cause behind mouth ulcers. Some of the factors include biting the inside of your mouth; food sensitivities to acidic foods like strawberries, oranges, pineapples; lack of essential vitamins, especially B-12, zinc, folate, and iron; dental braces; using a toothbrush with hard bristles and certain medications.'),
(8062, 'Lexa-OZ Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa-OZ Tablet', 'Q. What if I don\'t get better after using Lexa-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8063, 'Lexa-OZ Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa-OZ Tablet', 'Q. Can I stop taking Lexa-OZ Tablet when I feel better?', 'No, do not stop taking Lexa-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(8064, 'Lexa-OZ Tablet', 'Haustus Biotech Pvt Ltd', 'Lexa-OZ Tablet', 'Q. What if I miss my dose?', 'Take Lexa-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8065, 'Lexasoul 500mg Tablet', 'Soulcure Pharmaceuticals', 'Lexasoul 500mg Tablet', 'Is Lexasoul 500mg Tablet safe?', 'Lexasoul 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8066, 'Lexasoul 500mg Tablet', 'Soulcure Pharmaceuticals', 'Lexasoul 500mg Tablet', 'What if I forget to take a dose of Lexasoul 500mg Tablet?', 'If you forget a dose of Lexasoul 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8067, 'Lexasoul 500mg Tablet', 'Soulcure Pharmaceuticals', 'Lexasoul 500mg Tablet', 'Can the use of Lexasoul 500mg Tablet cause diarrhea?', 'Yes, the use of Lexasoul 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8068, 'Lexasoul 500mg Tablet', 'Soulcure Pharmaceuticals', 'Lexasoul 500mg Tablet', 'Can I stop taking Lexasoul 500mg Tablet when I feel better?', 'No, do not stop taking Lexasoul 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexasoul 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lexasoul 500mg Tablet in the dose and duration advised by the doctor.'),
(8069, 'Lexasoul 500mg Tablet', 'Soulcure Pharmaceuticals', 'Lexasoul 500mg Tablet', 'Can the use of Lexasoul 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lexasoul 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexasoul 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(8070, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'How long does it take for Lexatal 10mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexatal 10mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8071, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'What are the most common side effects of Lexatal 10mg Tablet?', 'The most common side effects of Lexatal 10mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexatal 10mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8072, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'What is Lexatal 10mg Tablet used for?', 'Lexatal 10mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8073, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'Is Lexatal 10mg Tablet dangerous?', 'The use of Lexatal 10mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexatal 10mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexatal 10mg Tablet.'),
(8074, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'Is Lexatal 10mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexatal 10mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8075, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'Can I stop taking Lexatal 10mg Tablet on my own?', 'Lexatal 10mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8076, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8077, 'Lexatal 10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 10mg Tablet', 'What if I accidentally take more than the recommended dose of Lexatal 10mg Tablet?', 'If you accidentally take more than the recommended dose of Lexatal 10mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8078, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'How long does it take for Lexatal 20mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexatal 20mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8079, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'What are the most common side effects of Lexatal 20mg Tablet?', 'The most common side effects of Lexatal 20mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexatal 20mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8080, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'What is Lexatal 20mg Tablet used for?', 'Lexatal 20mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8081, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'Is Lexatal 20mg Tablet dangerous?', 'The use of Lexatal 20mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexatal 20mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexatal 20mg Tablet.'),
(8082, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'Is Lexatal 20mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexatal 20mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8083, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'Can I stop taking Lexatal 20mg Tablet on my own?', 'Lexatal 20mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8084, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8085, 'Lexatal 20mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 20mg Tablet', 'What if I accidentally take more than the recommended dose of Lexatal 20mg Tablet?', 'If you accidentally take more than the recommended dose of Lexatal 20mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8086, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'How long does it take for Lexatal 5mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexatal 5mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8087, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'What are the most common side effects of Lexatal 5mg Tablet?', 'The most common side effects of Lexatal 5mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexatal 5mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8088, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'What is Lexatal 5mg Tablet used for?', 'Lexatal 5mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8089, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'Is Lexatal 5mg Tablet dangerous?', 'The use of Lexatal 5mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexatal 5mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexatal 5mg Tablet.'),
(8090, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'Is Lexatal 5mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexatal 5mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8091, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'Can I stop taking Lexatal 5mg Tablet on my own?', 'Lexatal 5mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8092, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8093, 'Lexatal 5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal 5mg Tablet', 'What if I accidentally take more than the recommended dose of Lexatal 5mg Tablet?', 'If you accidentally take more than the recommended dose of Lexatal 5mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8094, 'Lexatal C 0.5mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/10mg Tablet', 'What is Lexatal C 0.5mg/10mg Tablet?', 'Lexatal C 0.5mg/10mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(8095, 'Lexatal C 0.5mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/10mg Tablet', 'Can the Lexatal C 0.5mg/10mg Tablet cause sleepiness or drowsiness?', 'Lexatal C 0.5mg/10mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(8096, 'Lexatal C 0.5mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/10mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexatal C 0.5mg/10mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8097, 'Lexatal C 0.5mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/10mg Tablet', 'Any special instruction regarding storage and disposal of Lexatal C 0.5mg/10mg Tablet?', 'Keep Lexatal C 0.5mg/10mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(8098, 'Lexatal C 0.5mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/10mg Tablet', 'Can I stop taking Lexatal C 0.5mg/10mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexatal C 0.5mg/10mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(8099, 'Lexatal C 0.5mg/5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/5mg Tablet', 'What is Lexatal C 0.5mg/5mg Tablet?', 'Lexatal C 0.5mg/5mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(8100, 'Lexatal C 0.5mg/5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/5mg Tablet', 'Can the Lexatal C 0.5mg/5mg Tablet cause sleepiness or drowsiness?', 'Lexatal C 0.5mg/5mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(8101, 'Lexatal C 0.5mg/5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/5mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexatal C 0.5mg/5mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8102, 'Lexatal C 0.5mg/5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/5mg Tablet', 'Any special instruction regarding storage and disposal of Lexatal C 0.5mg/5mg Tablet?', 'Keep Lexatal C 0.5mg/5mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(8103, 'Lexatal C 0.5mg/5mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C 0.5mg/5mg Tablet', 'Can I stop taking Lexatal C 0.5mg/5mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexatal C 0.5mg/5mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(8104, 'Lexatal C LS 0.25mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C LS 0.25mg/10mg Tablet', 'What is Lexatal C LS 0.25mg/10mg Tablet?', 'Lexatal C LS 0.25mg/10mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(8105, 'Lexatal C LS 0.25mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C LS 0.25mg/10mg Tablet', 'Can the Lexatal C LS 0.25mg/10mg Tablet cause sleepiness or drowsiness?', 'Lexatal C LS 0.25mg/10mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(8106, 'Lexatal C LS 0.25mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C LS 0.25mg/10mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexatal C LS 0.25mg/10mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8107, 'Lexatal C LS 0.25mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C LS 0.25mg/10mg Tablet', 'Any special instruction regarding storage and disposal of Lexatal C LS 0.25mg/10mg Tablet?', 'Keep Lexatal C LS 0.25mg/10mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(8108, 'Lexatal C LS 0.25mg/10mg Tablet', 'Septalyst Lifesciences Pvt.Ltd.', 'Lexatal C LS 0.25mg/10mg Tablet', 'Can I stop taking Lexatal C LS 0.25mg/10mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexatal C LS 0.25mg/10mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(8109, 'Lexatin Syrup', 'Alembic Pharmaceuticals Ltd', 'Lexatin Syrup', 'What all should I tell my doctor before taking Lexatin  Syrup?', 'Before taking Lexatin  Syrup, inform your doctor about all the medical problems and medicines you are taking. Lexatin  Syrup should be used cautiously in patients with kidney problems. It should also be used with caution in pregnant or breastfeeding women.'),
(8110, 'Lexatin Syrup', 'Alembic Pharmaceuticals Ltd', 'Lexatin Syrup', 'Can the use of Lexatin  Syrup cause diarrhea?', 'Yes, the use of Lexatin  Syrup can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(8111, 'Lexatin Syrup', 'Alembic Pharmaceuticals Ltd', 'Lexatin Syrup', 'Will a higher than the recommended dose of Lexatin  Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(8112, 'Lexatin Syrup', 'Alembic Pharmaceuticals Ltd', 'Lexatin Syrup', 'What are the instructions for storage and disposal of Lexatin  Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8113, 'Lexcid DM 10mg/20mg Capsule', 'Lexus Organics', 'Lexcid DM 10mg/20mg Capsule', 'Is it safe to use Lexcid DM 10mg/20mg Capsule?', 'Yes, Lexcid DM 10mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(8114, 'Lexcid DM 10mg/20mg Capsule', 'Lexus Organics', 'Lexcid DM 10mg/20mg Capsule', 'What are the contraindications of Lexcid DM 10mg/20mg Capsule?', 'The use of Lexcid DM 10mg/20mg Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(8115, 'Lexcid DM 10mg/20mg Capsule', 'Lexus Organics', 'Lexcid DM 10mg/20mg Capsule', 'What is the best time to take Lexcid DM 10mg/20mg Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(8116, 'Lexcid DM 10mg/20mg Capsule', 'Lexus Organics', 'Lexcid DM 10mg/20mg Capsule', 'Can the use of Lexcid DM 10mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lexcid DM 10mg/20mg Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(8117, 'Lexcid DM 10mg/20mg Capsule', 'Lexus Organics', 'Lexcid DM 10mg/20mg Capsule', 'Does the use of Lexcid DM 10mg/20mg Capsule lead to dry mouth?', 'Yes, the use of Lexcid DM 10mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(8118, 'Lexcid DM 10mg/20mg Capsule', 'Lexus Organics', 'Lexcid DM 10mg/20mg Capsule', 'What is the recommended storage condition for Lexcid DM 10mg/20mg Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8119, 'Lexcid ES 40mg Injection', 'Lexus Organics', 'Lexcid ES 40mg Injection', 'Is Lexcid ES 40mg Injection safe to use?', 'Yes, Lexcid ES 40mg Injection is relatively safe to use. Most of the people who take Lexcid ES 40mg Injection do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefit.'),
(8120, 'Lexcid ES 40mg Injection', 'Lexus Organics', 'Lexcid ES 40mg Injection', 'Can Lexcid ES 40mg Injection cause weight gain?', 'Weight gain is reported in less than 1% of the patients taking Lexcid ES 40mg Injection but the exact cause is unknown. One possible explanation is higher food intake once the reflux symptoms are relieved. Lifestyle modifications such as proper diet and exercise can help to prevent weight gain.'),
(8121, 'Lexcid ES 40mg Injection', 'Lexus Organics', 'Lexcid ES 40mg Injection', 'Can I take alcohol with Lexcid ES 40mg Injection?', 'No, alcohol intake is not advised with Lexcid ES 40mg Injection. Alcohol itself does not affect the working of Lexcid ES 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms'),
(8122, 'Lexcid ES 40mg Injection', 'Lexus Organics', 'Lexcid ES 40mg Injection', 'Can I take antacids along with Lexcid ES 40mg Injection?', 'Yes, you can take antacids along with Lexcid ES 40mg Injection. Take it 2 hours before or after you receive Lexcid ES 40mg Injection.'),
(8123, 'Lexcid ES 40mg Injection', 'Lexus Organics', 'Lexcid ES 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Lexcid ES 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee, and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(8124, 'Lexcid ES 40mg Injection', 'Lexus Organics', 'Lexcid ES 40mg Injection', 'Are painkillers safe to take along with Lexcid ES 40mg Injection?', 'Yes, it is safe to take painkillers along with Lexcid ES 40mg Injection. Lexcid ES 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Lexcid ES 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(8125, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'What is the best time to take Lexcid ES 40mg Tablet?', 'Usually, Lexcid ES 40mg Tablet is taken once a day, first thing in the morning. If you take Lexcid ES 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(8126, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Can I take Lexcid ES 40mg Tablet with domperidone?', 'Yes, Lexcid ES 40mg Tablet can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lexcid ES 40mg Tablet decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(8127, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Can I take antacids along with Lexcid ES 40mg Tablet?', 'Yes, you can take antacids along with Lexcid ES 40mg Tablet. Take it 2 hours before or after you take Lexcid ES 40mg Tablet.'),
(8128, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Can I take Lexcid ES 40mg Tablet for a long term?', 'Lexcid ES 40mg Tablet is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lexcid ES 40mg Tablet may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lexcid ES 40mg Tablet as advised by your doctor and under their supervision.'),
(8129, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'What are the long term side effects of Lexcid ES 40mg Tablet?', 'If Lexcid ES 40mg Tablet is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(8130, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Can I stop taking Lexcid ES 40mg Tablet if I feel better?', 'If you have been taking Lexcid ES 40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lexcid ES 40mg Tablet.'),
(8131, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Can Lexcid ES 40mg Tablet cause weight gain?', 'Weight gain is reported in less than 1% of the patients taking Lexcid ES 40mg Tablet but the exact cause is unknown. One possible explanation is higher food intake once the reflux symptoms are relieved. Lifestyle modifications such as proper diet and exercise can help to prevent weight gain.'),
(8132, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Is Lexcid ES 40mg Tablet safe to use?', 'Yes, Lexcid ES 40mg Tablet is relatively safe to use. Most of the people who take Lexcid ES 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefit.'),
(8133, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Can I take Lexcid ES 40mg Tablet with ranitidine?', 'Yes, Lexcid ES 40mg Tablet can be taken with ranitidine. According to research reports, there are no significant interactions seen between Lexcid ES 40mg Tablet and ranitidine. However, you must take them together only if prescribed by the doctor.'),
(8134, 'Lexcid ES 40mg Tablet', 'Lexus Organics', 'Lexcid ES 40mg Tablet', 'Can I take alcohol with Lexcid ES 40mg Tablet?', 'No, alcohol intake is not advised with Lexcid ES 40mg Tablet. Alcohol itself does not affect the working of Lexcid ES 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8135, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'What is Lexcid ES D 30mg/40mg Tablet SR?', 'Lexcid ES D 30mg/40mg Tablet SR is a combination of two medicines: Domperidone and Esomeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(8136, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'Is it safe to use Lexcid ES D 30mg/40mg Tablet SR?', 'Yes, Lexcid ES D 30mg/40mg Tablet SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhoea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(8137, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'What is the best time to take Lexcid ES D 30mg/40mg Tablet SR?', 'It is best to take Lexcid ES D 30mg/40mg Tablet SR before the first meal of the day or on an empty stomach.'),
(8138, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'Can the use of Lexcid ES D 30mg/40mg Tablet SR cause abnormal heartbeat?', 'Yes, the use of Lexcid ES D 30mg/40mg Tablet SR can increase the risk of irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(8139, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'What are the contraindications associated with the use of Lexcid ES D 30mg/40mg Tablet SR?', 'The use of Lexcid ES D 30mg/40mg Tablet SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(8140, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'Can the use of Lexcid ES D 30mg/40mg Tablet SR cause dry mouth?', 'Yes, the use of Lexcid ES D 30mg/40mg Tablet SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(8141, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'Can the use of Lexcid ES D 30mg/40mg Tablet SR cause diarrhea?', 'Yes, the use of Lexcid ES D 30mg/40mg Tablet SR can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and if you notice signs of dehydration, like less frequency of urination and dark colored and strong-smelling urine. Avoid taking fatty or fried foods with this medication. Also, do not take any medicines without consulting the doctor.'),
(8142, 'Lexcid ES D 30mg/40mg Tablet SR', 'Lexus Organics', 'Lexcid ES D 30mg/40mg Tablet SR', 'What are the storage conditions for Lexcid ES D 30mg/40mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8143, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'For how long can Lexcin 500mg Injection be taken?', 'The usual course of treatment with Lexcin 500mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lexcin 500mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(8144, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'Is Lexcin 500mg Injection safe?', 'Lexcin 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8145, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'How is Lexcin 500mg Injection administered?', 'Lexcin 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lexcin 500mg Injection.'),
(8146, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lexcin 500mg Injection should be taken in the recommended dose only. Overdose of Lexcin 500mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(8147, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'What are the instructions for the storage and disposal of Lexcin 500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(8148, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'What if I don\'t get better after using Lexcin 500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(8149, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'Can I stop taking Lexcin 500mg Injection when I feel better?', 'No, do not stop taking Lexcin 500mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(8150, 'Lexcin 500mg Injection', 'Lexus Organics', 'Lexcin 500mg Injection', 'Can I take alcohol while on Lexcin 500mg Injection?', 'You should avoid alcohol while being on treatment with Lexcin 500mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lexcin 500mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(8151, 'Lexcinolone 40mg Injection', 'Lexus Organics', 'Lexcinolone 40mg Injection', 'What is Lexcinolone 40mg Injection used for?', 'Lexcinolone 40mg Injection has anti-inflammatory and immunosuppressant properties. It is used for the treatment of conditions like rheumatoid arthritis and osteoarthritis. It also helps to treat many autoimmune diseases which occur when your body’s immune system attacks the body itself and causes damage.'),
(8152, 'Lexcinolone 40mg Injection', 'Lexus Organics', 'Lexcinolone 40mg Injection', 'How does Lexcinolone 40mg Injection work?', 'Lexcinolone 40mg Injection works by reducing the inflammation which helps in treating many illnesses associated with active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(8153, 'Lexcinolone 40mg Injection', 'Lexus Organics', 'Lexcinolone 40mg Injection', 'How is Lexcinolone 40mg Injection administered?', 'Lexcinolone 40mg Injection should be administered under the supervision of a healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lexcinolone 40mg Injection.'),
(8154, 'Lexcinolone 40mg Injection', 'Lexus Organics', 'Lexcinolone 40mg Injection', 'Is Lexcinolone 40mg Injection effective?', 'Lexcinolone 40mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexcinolone 40mg Injection too early, the symptoms may return or worsen.'),
(8155, 'Lexcinolone 40mg Injection', 'Lexus Organics', 'Lexcinolone 40mg Injection', 'When will I feel better after taking Lexcinolone 40mg Injection?', 'Lexcinolone 40mg Injection effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lexcinolone 40mg Injection in the dose that suits your requirement.'),
(8156, 'Lexcinolone 40mg Injection', 'Lexus Organics', 'Lexcinolone 40mg Injection', 'Is Lexcinolone 40mg Injection safe?', 'Lexcinolone 40mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8157, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'What is Lexclav 1000mg/200mg Injection?', 'Lexclav 1000mg/200mg Injection is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections.. The medicine works by killing the harmful bacteria that cause infections.'),
(8158, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'Is it safe to use Lexclav 1000mg/200mg Injection?', 'Lexclav 1000mg/200mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(8159, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'How is Lexclav 1000mg/200mg Injection administered?', 'Lexclav 1000mg/200mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lexclav 1000mg/200mg Injection.'),
(8160, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'Are there any specific cautions associated with the use of Lexclav 1000mg/200mg Injection?', 'The use of Lexclav 1000mg/200mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(8161, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'Can the use of Lexclav 1000mg/200mg Injection cause contraceptive failure?', 'Yes, the use of Lexclav 1000mg/200mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lexclav 1000mg/200mg Injection.'),
(8162, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'Can I take a higher than the recommended dose of Lexclav 1000mg/200mg Injection?', 'No, taking a higher than the recommended dose of Lexclav 1000mg/200mg Injection can increase the risks of side effects. Lexclav 1000mg/200mg Injection takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(8163, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'What are the instructions for the storage and disposal of Lexclav 1000mg/200mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8164, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'Can Lexclav 1000mg/200mg Injection cause an allergic reaction?', 'Yes, Lexclav 1000mg/200mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(8165, 'Lexclav 1000mg/200mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 1000mg/200mg Injection', 'Can the use of Lexclav 1000mg/200mg Injection cause diarrhea?', 'Yes, the use of Lexclav 1000mg/200mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(8166, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Can other medicines be given at the same time as Lexclav 250mg/125mg Tablet?', 'Lexclav 250mg/125mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexclav 250mg/125mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(8167, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Can I get my child vaccinated while on treatment with Lexclav 250mg/125mg Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8168, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Which lab tests may my child undergo while taking Lexclav 250mg/125mg Tablet on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(8169, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Can I give a higher than the recommended dose of Lexclav 250mg/125mg Tablet to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(8170, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Can I stop giving Lexclav 250mg/125mg Tablet to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(8171, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Can the use of Lexclav 250mg/125mg Tablet cause diarrhea?', 'Yes, Lexclav 250mg/125mg Tablet may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(8172, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(8173, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8174, 'Lexclav 250mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 250mg/125mg Tablet', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(8175, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Can other medicines be given at the same time as Lexclav 500mg/125mg Tablet?', 'Lexclav 500mg/125mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexclav 500mg/125mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(8176, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Can I get my child vaccinated while on treatment with Lexclav 500mg/125mg Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8177, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Which lab tests may my child undergo while taking Lexclav 500mg/125mg Tablet on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(8178, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Can I give a higher than the recommended dose of Lexclav 500mg/125mg Tablet to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(8179, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Can I stop giving Lexclav 500mg/125mg Tablet to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(8180, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Can the use of Lexclav 500mg/125mg Tablet cause diarrhea?', 'Yes, Lexclav 500mg/125mg Tablet may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(8181, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(8182, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8183, 'Lexclav 500mg/125mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav 500mg/125mg Tablet', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(8184, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Can other medicines be given at the same time as Lexclav Dry Syrup?', 'Lexclav Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexclav Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(8185, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Can I get my child vaccinated while on treatment with Lexclav Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8186, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Which lab tests may my child undergo while taking Lexclav Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(8187, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Can I give a higher than the recommended dose of Lexclav Dry Syrup to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(8188, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Can I stop giving Lexclav Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(8189, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Can the use of Lexclav Dry Syrup cause diarrhea?', 'Yes, Lexclav Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(8190, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(8191, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8192, 'Lexclav Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(8193, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Can other medicines be given at the same time as Lexclav Duo Dry Syrup?', 'Lexclav Duo Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexclav Duo Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(8194, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Can I get my child vaccinated while on treatment with Lexclav Duo Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8195, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Which lab tests may my child undergo while taking Lexclav Duo Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(8196, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Can I give a higher than the recommended dose of Lexclav Duo Dry Syrup to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(8197, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Can I stop giving Lexclav Duo Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(8198, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Can the use of Lexclav Duo Dry Syrup cause diarrhea?', 'Yes, Lexclav Duo Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(8199, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(8200, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8201, 'Lexclav Duo Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav Duo Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(8202, 'Lexclav LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav LB Tablet', 'Can I give a higher than the recommended dose of Lexclav LB Tablet to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for reevaluation.'),
(8203, 'Lexclav LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav LB Tablet', 'Can other medicines be given at the same time as Lexclav LB Tablet?', 'Lexclav LB Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexclav LB Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(8204, 'Lexclav LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav LB Tablet', 'Can I stop giving Lexclav LB Tablet to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(8205, 'Lexclav LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav LB Tablet', 'Can I get my child vaccinated while on treatment with Lexclav LB Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8206, 'Lexclav LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav LB Tablet', 'Which lab tests may my child undergo while taking Lexclav LB Tablet on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(8207, 'Lexclav LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexclav LB Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8208, 'Lexcort 100mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexcort 100mg Injection', 'How does Lexcort 100mg Injection work?', 'Lexcort 100mg Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(8209, 'Lexcort 100mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexcort 100mg Injection', 'Is Lexcort 100mg Injection a steroid?', 'Yes, Lexcort 100mg Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Lexcort 100mg Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(8210, 'Lexcort 100mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexcort 100mg Injection', 'What is Lexcort 100mg Injection used for?', 'Lexcort 100mg Injection has anti-inflammatory and immunosuppressant properties. It is used to treat many conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It also helps to treat autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage), and certain eye disorders.'),
(8211, 'Lexcort 100mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexcort 100mg Injection', 'How is Lexcort 100mg Injection administered?', 'Lexcort 100mg Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). Your doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Lexcort 100mg Injection.'),
(8212, 'Lexcort 100mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexcort 100mg Injection', 'I was given Lexcort 100mg Injection in the knee as I have arthritis. Will it pain after taking Lexcort 100mg Injection? What should I do about it?', 'Lexcort 100mg Injection effectively treats many inflammatory conditions, joint pain and inflammation in arthritis being one of its multiple uses. Usually, the pain gets better after a day or two. Try not to have frequent movement for about 24 hours after the injection and do not do any heavy exercise for best results. However, if you experience pain, consult your doctor. The doctor may prescribe some over the counter pain medications if the pain persists for longer or if it bothers you a lot.'),
(8213, 'Lexcyst M 500mg/600mg Tablet', 'Conlex Life Science Private Limited', 'Lexcyst M 500mg/600mg Tablet', 'What is Lexcyst M 500mg/600mg Tablet?', 'Lexcyst M 500mg/600mg Tablet is a combination of two medicines: Metformin and Myo Inositol. This medicine is used in the treatment of Polycystic ovarian syndrome (PCOS). Metformin is an antidiabetic medicine which helps to regulate menstrual cycle by improving the insulin sensitivity. This helps in regularizing the menstrual cycles in women. Myo-inositol is safe and effective and acts as natural insulin sensitizer which helps to reduce androgen (male) hormones and restores ovulatory function in females.'),
(8214, 'Lexcyst M 500mg/600mg Tablet', 'Conlex Life Science Private Limited', 'Lexcyst M 500mg/600mg Tablet', 'What are the possible side effects of Lexcyst M 500mg/600mg Tablet?', 'The use of Lexcyst M 500mg/600mg Tablet is associated with common side effects like nausea, altered taste, diarrhea, stomach pain and loss of appetite.'),
(8215, 'Lexcyst M 500mg/600mg Tablet', 'Conlex Life Science Private Limited', 'Lexcyst M 500mg/600mg Tablet', 'What is polycystic ovarian syndrome (PCOS)?', 'Polycystic ovarian syndrome is a medical condition seen in women of childbearing age. PCOS causes irregular menstrual cycle (periods), excess levels of androgens (high level of male hormones) and polycystic ovaries (enlarged ovaries with fluid-filled sacs or follicles). Signs and symptoms include raised insulin levels leading to diabetes, irregular periods or absence of periods, weight gain, oily skin or acne, excessive hair growth (hirsutism) usually on the face, chest, back or buttocks and thinning of hair.'),
(8216, 'Lexcyst M 500mg/600mg Tablet', 'Conlex Life Science Private Limited', 'Lexcyst M 500mg/600mg Tablet', 'Can the use of Lexcyst M 500mg/600mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexcyst M 500mg/600mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can help prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(8217, 'Lexcyst M 500mg/600mg Tablet', 'Conlex Life Science Private Limited', 'Lexcyst M 500mg/600mg Tablet', 'When should I take Lexcyst M 500mg/600mg Tablet?', 'It is best to take Lexcyst M 500mg/600mg Tablet at your bed time as this will minimize the side effects caused by this medicine.'),
(8218, 'Lexdine AT 5mg/50mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexdine AT 5mg/50mg Tablet', 'What lifestyle changes should be made while using Lexdine AT 5mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Lexdine AT 5mg/50mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(8219, 'Lexdine AT 5mg/50mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexdine AT 5mg/50mg Tablet', 'Can I stop taking Lexdine AT 5mg/50mg Tablet if I feel well?', 'No, keep using Lexdine AT 5mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Lexdine AT 5mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(8220, 'Lexdine AT 5mg/50mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexdine AT 5mg/50mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8221, 'Lexdine AT 5mg/50mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexdine AT 5mg/50mg Tablet', 'What are the contraindications associated with the use of Lexdine AT 5mg/50mg Tablet?', 'Lexdine AT 5mg/50mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(8222, 'Lexdine AT 5mg/50mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexdine AT 5mg/50mg Tablet', 'Can the use of Lexdine AT 5mg/50mg Tablet cause headache?', 'Yes, the use of Lexdine AT 5mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(8223, 'Lexdine AT 5mg/50mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexdine AT 5mg/50mg Tablet', 'Can I feel dizzy after taking Lexdine AT 5mg/50mg Tablet?', 'Yes, the use of Lexdine AT 5mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(8224, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'What is Lexdol MR 100mg/325mg/250mg Tablet?', 'Lexdol MR 100mg/325mg/250mg Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(8225, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'What can I do along with Lexdol MR 100mg/325mg/250mg Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(8226, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'Can I get addicted to Lexdol MR 100mg/325mg/250mg Tablet?', 'No, there are no reports of any patient getting addicted to Lexdol MR 100mg/325mg/250mg Tablet.'),
(8227, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'Can I stop taking Lexdol MR 100mg/325mg/250mg Tablet when my pain is relieved?', 'Lexdol MR 100mg/325mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lexdol MR 100mg/325mg/250mg Tablet should be continued if you are advised by your doctor to do so.'),
(8228, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol MR 100mg/325mg/250mg Tablet cause dizziness?', 'Yes, the use of Lexdol MR 100mg/325mg/250mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(8229, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol MR 100mg/325mg/250mg Tablet cause damage to liver?', 'Lexdol MR 100mg/325mg/250mg Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(8230, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'How long will Lexdol MR 100mg/325mg/250mg Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Lexdol MR 100mg/325mg/250mg Tablet.'),
(8231, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'What if I forget to take Lexdol MR 100mg/325mg/250mg Tablet?', 'If you forget to take the scheduled dose of Lexdol MR 100mg/325mg/250mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(8232, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'Will Lexdol MR 100mg/325mg/250mg Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8233, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol MR 100mg/325mg/250mg Tablet (Med Lex Pharmaceutical)', 'Are there any specific contraindications associated with the use of Lexdol MR 100mg/325mg/250mg Tablet?', 'The use of Lexdol MR 100mg/325mg/250mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8234, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'What is Lexdol MR 100mg/325mg/250mg Tablet?', 'Lexdol MR 100mg/325mg/250mg Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(8235, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'What can I do along with Lexdol MR 100mg/325mg/250mg Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(8236, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'Can I get addicted to Lexdol MR 100mg/325mg/250mg Tablet?', 'No, there are no reports of any patient getting addicted to Lexdol MR 100mg/325mg/250mg Tablet.'),
(8237, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'Can I stop taking Lexdol MR 100mg/325mg/250mg Tablet when my pain is relieved?', 'Lexdol MR 100mg/325mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lexdol MR 100mg/325mg/250mg Tablet should be continued if you are advised by your doctor to do so.'),
(8238, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol MR 100mg/325mg/250mg Tablet cause dizziness?', 'Yes, the use of Lexdol MR 100mg/325mg/250mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8239, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol MR 100mg/325mg/250mg Tablet cause damage to liver?', 'Lexdol MR 100mg/325mg/250mg Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(8240, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'How long will Lexdol MR 100mg/325mg/250mg Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Lexdol MR 100mg/325mg/250mg Tablet.'),
(8241, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'What if I forget to take Lexdol MR 100mg/325mg/250mg Tablet?', 'If you forget to take the scheduled dose of Lexdol MR 100mg/325mg/250mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(8242, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'Will Lexdol MR 100mg/325mg/250mg Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8243, 'Lexdol MR 100mg/325mg/250mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol MR 100mg/325mg/250mg Tablet (Medlex Biotechnics Private Limited)', 'Are there any specific contraindications associated with the use of Lexdol MR 100mg/325mg/250mg Tablet?', 'The use of Lexdol MR 100mg/325mg/250mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8244, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. What is Lexdol P 100mg/325mg Tablet?', 'Lexdol P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(8245, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Is it safe to use Lexdol P 100mg/325mg Tablet?', 'Lexdol P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(8246, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can I stop taking Lexdol P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lexdol P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(8247, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can the use of Lexdol P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexdol P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(8248, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can the use of Lexdol P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lexdol P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(8249, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Are there any specific contraindications associated with the use of Lexdol P 100mg/325mg Tablet?', 'The use of Lexdol P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8250, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can Lexdol P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lexdol P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lexdol P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(8251, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Is Lexdol P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lexdol P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(8252, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can the use of Lexdol P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexdol P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8253, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Is it safe to take a higher dose of Lexdol P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lexdol P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(8254, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'What is Lexdol P 100mg/325mg Tablet?', 'Lexdol P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(8255, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Is it safe to use Lexdol P 100mg/325mg Tablet?', 'Lexdol P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(8256, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can I stop taking Lexdol P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lexdol P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(8257, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexdol P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(8258, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lexdol P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(8259, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Are there any specific contraindications associated with the use of Lexdol P 100mg/325mg Tablet?', 'The use of Lexdol P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8260, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can Lexdol P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lexdol P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lexdol P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(8261, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Is Lexdol P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lexdol P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(8262, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexdol P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8263, 'Lexdol P 100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol P 100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Is it safe to take a higher dose of Lexdol P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lexdol P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(8264, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'What is Lexdol P 100mg/325mg Tablet?', 'Lexdol P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(8265, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Is it safe to use Lexdol P 100mg/325mg Tablet?', 'Lexdol P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(8266, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can I stop taking Lexdol P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lexdol P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(8267, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexdol P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(8268, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lexdol P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(8269, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Are there any specific contraindications associated with the use of Lexdol P 100mg/325mg Tablet?', 'The use of Lexdol P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8270, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can Lexdol P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lexdol P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lexdol P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(8271, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Is Lexdol P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lexdol P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(8272, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexdol P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8273, 'Lexdol P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol P 100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Is it safe to take a higher dose of Lexdol P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lexdol P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(8274, 'Lexdol R 200mg/20mg Capsule', 'Med Lex Pharmaceutical', 'Lexdol R 200mg/20mg Capsule', 'What is Lexdol R 200mg/20mg Capsule?', 'Lexdol R 200mg/20mg Capsule is a combination of two medicines: Aceclofenac and Rabeprazole. This medication helps in relieving pain and inflammation. Aceclofenac works by lowering the levels of chemical substances in the body that cause pain and inflammation. Rabeprazole helps in preventing the digestive problem that may occur due to Aceclofenac.'),
(8275, 'Lexdol R 200mg/20mg Capsule', 'Med Lex Pharmaceutical', 'Lexdol R 200mg/20mg Capsule', 'Can I stop taking Lexdol R 200mg/20mg Capsule when my pain is relieved?', 'Lexdol R 200mg/20mg Capsule, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(8276, 'Lexdol R 200mg/20mg Capsule', 'Med Lex Pharmaceutical', 'Lexdol R 200mg/20mg Capsule', 'Can the use of Lexdol R 200mg/20mg Capsule cause nausea and vomiting?', 'Yes, the use of Lexdol R 200mg/20mg Capsule can cause nausea and vomiting. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(8277, 'Lexdol R 200mg/20mg Capsule', 'Med Lex Pharmaceutical', 'Lexdol R 200mg/20mg Capsule', 'Can the use of Lexdol R 200mg/20mg Capsule cause dizziness?', 'Yes, the use of Lexdol R 200mg/20mg Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(8278, 'Lexdol R 200mg/20mg Capsule', 'Med Lex Pharmaceutical', 'Lexdol R 200mg/20mg Capsule', 'Can I take Lexdol R 200mg/20mg Capsule with Vitamin B-complex?', 'Yes, Lexdol R 200mg/20mg Capsule can be taken with Vitamin B-complex preparations. While Lexdol R 200mg/20mg Capsule helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8279, 'Lexdol R 200mg/20mg Capsule', 'Med Lex Pharmaceutical', 'Lexdol R 200mg/20mg Capsule', 'What is the recommended storage condition for Lexdol R 200mg/20mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8280, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'What is Lexdol SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(8281, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Is it safe to take Lexdol SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(8282, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Can I stop taking Lexdol SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(8283, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Can Lexdol SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(8284, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Can Lexdol SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(8285, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Are there any specific contraindications associated with taking Lexdol SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8286, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Can I take Lexdol SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8287, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(8288, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'Can I take a higher dose of Lexdol SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8289, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol SP 100mg/325mg/15mg Tablet (Med Lex Pharmaceutical)', 'What are the instructions for storage and disposal of Lexdol SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8290, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'What is Lexdol SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(8291, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Is it safe to take Lexdol SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(8292, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Can I stop taking Lexdol SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(8293, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Can Lexdol SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(8294, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Can Lexdol SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(8295, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Are there any specific contraindications associated with taking Lexdol SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8296, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Can I take Lexdol SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8297, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(8298, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'Can I take a higher dose of Lexdol SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8299, 'Lexdol SP 100mg/325mg/15mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol SP 100mg/325mg/15mg Tablet (Medlex Biotechnics Private Limited)', 'What are the instructions for storage and disposal of Lexdol SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8300, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'What is Lexdol T 100mg/4mg Tablet?', 'Lexdol T 100mg/4mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(8301, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'Is it safe to use Lexdol T 100mg/4mg Tablet?', 'Yes, Lexdol T 100mg/4mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(8302, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'Can the Lexdol T 100mg/4mg Tablet be stopped when my pain is relieved?', 'Lexdol T 100mg/4mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lexdol T 100mg/4mg Tablet should be continued if your doctor has advised you to do so.'),
(8303, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol T 100mg/4mg Tablet cause dizziness?', 'Yes, the use of Lexdol T 100mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(8304, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'Are there any specific contraindications associated with the use of Lexdol T 100mg/4mg Tablet?', 'The use of Lexdol T 100mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(8305, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'Can Lexdol T 100mg/4mg Tablet be taken with Vitamin B-complex?', 'Yes, Lexdol T 100mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Lexdol T 100mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8306, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol T 100mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexdol T 100mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(8307, 'Lexdol T 100mg/4mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol T 100mg/4mg Tablet (Med Lex Pharmaceutical)', 'Will Lexdol T 100mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8308, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'What is Lexdol T 100mg/4mg Tablet?', 'Lexdol T 100mg/4mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(8309, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'Is it safe to use Lexdol T 100mg/4mg Tablet?', 'Yes, Lexdol T 100mg/4mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(8310, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'Can the Lexdol T 100mg/4mg Tablet be stopped when my pain is relieved?', 'Lexdol T 100mg/4mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lexdol T 100mg/4mg Tablet should be continued if your doctor has advised you to do so.'),
(8311, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol T 100mg/4mg Tablet cause dizziness?', 'Yes, the use of Lexdol T 100mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(8312, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'Are there any specific contraindications associated with the use of Lexdol T 100mg/4mg Tablet?', 'The use of Lexdol T 100mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(8313, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'Can Lexdol T 100mg/4mg Tablet be taken with Vitamin B-complex?', 'Yes, Lexdol T 100mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Lexdol T 100mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8314, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol T 100mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexdol T 100mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(8315, 'Lexdol T 100mg/4mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol T 100mg/4mg Tablet (Medlex Biotechnics Private Limited)', 'Will Lexdol T 100mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8316, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol TP 4mg/100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol TP 4mg/100mg/325mg Tablet be stopped when my pain is relieved?', 'Lexdol TP 4mg/100mg/325mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lexdol TP 4mg/100mg/325mg Tablet should be continued if advised by the doctor.'),
(8317, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol TP 4mg/100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Are there any specific contraindications associated with the use of Lexdol TP 4mg/100mg/325mg Tablet?', 'The use of Lexdol TP 4mg/100mg/325mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8318, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol TP 4mg/100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can Lexdol TP 4mg/100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lexdol TP 4mg/100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lexdol TP 4mg/100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8319, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol TP 4mg/100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol TP 4mg/100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexdol TP 4mg/100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8320, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol TP 4mg/100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Will Lexdol TP 4mg/100mg/325mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8321, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol TP 4mg/100mg/325mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexdol TP 4mg/100mg/325mg Tablet cause damage to liver?', 'Lexdol TP 4mg/100mg/325mg Tablet contains Paracetamol. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(8322, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Med Lex Pharmaceutical', 'Lexdol TP 4mg/100mg/325mg Tablet (Med Lex Pharmaceutical)', 'What are the instructions for storage and disposal of Lexdol TP 4mg/100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8323, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol TP 4mg/100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol TP 4mg/100mg/325mg Tablet be stopped when my pain is relieved?', 'Lexdol TP 4mg/100mg/325mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lexdol TP 4mg/100mg/325mg Tablet should be continued if advised by the doctor.'),
(8324, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol TP 4mg/100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Are there any specific contraindications associated with the use of Lexdol TP 4mg/100mg/325mg Tablet?', 'The use of Lexdol TP 4mg/100mg/325mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8325, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol TP 4mg/100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can Lexdol TP 4mg/100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lexdol TP 4mg/100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lexdol TP 4mg/100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8326, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol TP 4mg/100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol TP 4mg/100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexdol TP 4mg/100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8327, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol TP 4mg/100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Will Lexdol TP 4mg/100mg/325mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8328, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol TP 4mg/100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexdol TP 4mg/100mg/325mg Tablet cause damage to liver?', 'Lexdol TP 4mg/100mg/325mg Tablet contains Paracetamol. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(8329, 'Lexdol TP 4mg/100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexdol TP 4mg/100mg/325mg Tablet (Medlex Biotechnics Private Limited)', 'What are the instructions for storage and disposal of Lexdol TP 4mg/100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8330, 'Lexef 100mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 100mg Tablet DT', 'How long should I take Lexef 100mg Tablet DT?', 'Lexef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8331, 'Lexef 100mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 100mg Tablet DT', 'What if I do not get better after using Lexef 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8332, 'Lexef 100mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 100mg Tablet DT', 'Can the use of Lexef 100mg Tablet DT cause diarrhea?', 'Yes, the use of Lexef 100mg Tablet DT can cause diarrhea. Lexef 100mg Tablet DT is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8333, 'Lexef 100mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 100mg Tablet DT', 'Is Lexef 100mg Tablet DT effective?', 'Lexef 100mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexef 100mg Tablet DT too early, the symptoms may return or worsen.'),
(8334, 'Lexef 100mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 100mg Tablet DT', 'What if I forget to take a dose of Lexef 100mg Tablet DT?', 'If you forget a dose of Lexef 100mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8335, 'Lexef 100mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 100mg Tablet DT', 'Is Lexef 100mg Tablet DT safe for the kidneys?', 'Yes, Lexef 100mg Tablet DT is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(8336, 'Lexef 100mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 100mg Tablet DT', 'How long should I take Lexef 100mg Tablet DT?', 'Lexef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8337, 'Lexef 200mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 200mg Tablet DT', 'How long should I take Lexef 200mg Tablet DT?', 'Lexef 200mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8338, 'Lexef 200mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 200mg Tablet DT', 'What if I do not get better after using Lexef 200mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8339, 'Lexef 200mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 200mg Tablet DT', 'Can the use of Lexef 200mg Tablet DT cause diarrhea?', 'Yes, the use of Lexef 200mg Tablet DT can cause diarrhea. Lexef 200mg Tablet DT is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8340, 'Lexef 200mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 200mg Tablet DT', 'Is Lexef 200mg Tablet DT effective?', 'Lexef 200mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexef 200mg Tablet DT too early, the symptoms may return or worsen.'),
(8341, 'Lexef 200mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 200mg Tablet DT', 'What if I forget to take a dose of Lexef 200mg Tablet DT?', 'If you forget a dose of Lexef 200mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8342, 'Lexef 200mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 200mg Tablet DT', 'Is Lexef 200mg Tablet DT safe for the kidneys?', 'Yes, Lexef 200mg Tablet DT is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(8343, 'Lexef 200mg Tablet DT', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef 200mg Tablet DT', 'How long should I take Lexef 200mg Tablet DT?', 'Lexef 200mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8344, 'Lexef Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef Dry Syrup', 'How long should I take Lexef Dry Syrup?', 'Lexef Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8345, 'Lexef Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef Dry Syrup', 'What if I do not get better after using Lexef Dry Syrup?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8346, 'Lexef Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef Dry Syrup', 'Can the use of Lexef Dry Syrup cause diarrhea?', 'Yes, the use of Lexef Dry Syrup can cause diarrhea. Lexef Dry Syrup is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8347, 'Lexef Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef Dry Syrup', 'Is Lexef Dry Syrup effective?', 'Lexef Dry Syrup is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexef Dry Syrup too early, the symptoms may return or worsen.'),
(8348, 'Lexef Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef Dry Syrup', 'What if I forget to take a dose of Lexef Dry Syrup?', 'If you forget a dose of Lexef Dry Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8349, 'Lexef Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef Dry Syrup', 'Is Lexef Dry Syrup safe for the kidneys?', 'Yes, Lexef Dry Syrup is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(8350, 'Lexef Dry Syrup', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef Dry Syrup', 'How long should I take Lexef Dry Syrup?', 'Lexef Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8351, 'Lexef LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef LB Tablet', 'My child is suffering from liver failure and his investigations showed high blood ammonia levels. Is it safe to give Lexef LB Tablet?', 'No. It is better to avoid giving Lexef LB Tablet as it contains lactobacillus which can further elevate the levels of blood ammonia and increase the risk of serious complications like coma.'),
(8352, 'Lexef LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef LB Tablet', 'What if I give too much of Lexef LB Tablet by mistake?', 'Avoid giving more than the recommended dose because overdose may cause unwanted side effects and may even worsen your child’s condition. Although an extra dose of Lexef LB Tablet is unlikely to harm, if you think you have given too much of Lexef LB Tablet to your child, immediately speak to a doctor.'),
(8353, 'Lexef LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef LB Tablet', 'Are there any possible serious side effects of Lexef LB Tablet?', 'In rare cases, Lexef LB Tablet may cause some serious side effects such as persistent vomiting, kidney damage, and allergy. Always consult your child’s doctor for help in such a situation.'),
(8354, 'Lexef LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef LB Tablet', 'Can other medicines be given at the same time as Lexef LB Tablet?', 'Lexef LB Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexef LB Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(8355, 'Lexef LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef LB Tablet', 'Can I get my child vaccinated while on treatment with Lexef LB Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8356, 'Lexef LB Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef LB Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'No, yellow or green mucus in the nose does not mean that antibiotics are needed. It is normal for mucus to thicken up and change from clear to yellow or green. With symptoms often lasting for 7-10 days, this is exactly how a common cold generally progresses.'),
(8357, 'Lexef O 200mg/200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef O 200mg/200mg Tablet', 'What if I give too much of Lexef O 200mg/200mg Tablet by mistake?', 'An extra dose of Lexef O 200mg/200mg Tablet is unlikely to do harm. However, you must still be vigilant because overdoses may cause unwanted side effects and may even worsen your child’s condition. If you think you have given too much of Lexef O 200mg/200mg Tablet to your child, speak to a doctor immediately.'),
(8358, 'Lexef O 200mg/200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef O 200mg/200mg Tablet', 'Are there any possible serious side effects of Lexef O 200mg/200mg Tablet?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(8359, 'Lexef O 200mg/200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef O 200mg/200mg Tablet', 'Can other medicines be given at the same time as Lexef O 200mg/200mg Tablet?', 'Lexef O 200mg/200mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexef O 200mg/200mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(8360, 'Lexef O 200mg/200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef O 200mg/200mg Tablet', 'Can I get my child vaccinated while on treatment with Lexef O 200mg/200mg Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8361, 'Lexef O 200mg/200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef O 200mg/200mg Tablet', 'Can Lexef O 200mg/200mg Tablet impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the medicine may kill off the good bacteria along with the bad ones, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexef O 200mg/200mg Tablet, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(8362, 'Lexef O 200mg/200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef O 200mg/200mg Tablet', 'Can Lexef O 200mg/200mg Tablet lead to bacterial resistance in my child?', 'Yes, the infection-causing bacteria can become resistant to Lexef O 200mg/200mg Tablet because of irregular dosing, unrequired repeated use, and misuse of Lexef O 200mg/200mg Tablet can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(8363, 'Lexef O 200mg/200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexef O 200mg/200mg Tablet', 'What should I tell the doctor before giving Lexef O 200mg/200mg Tablet to my child?', 'Inform the doctor if your child is suffering from heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lexef O 200mg/200mg Tablet may aggravate these conditions and result in complications.'),
(8364, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'What is Lexeto 90mg Tablet used for?', 'Lexeto 90mg Tablet is used to reduce the pain and swelling (inflammation) in the joints and muscles of people 16 years of age and older with rheumatoid arthritis, ankylosing spondylitis and gout. Lexeto 90mg Tablet is also used for the short term treatment of moderate pain after dental surgery in people 16 years of age and older.'),
(8365, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Is it safe to use Lexeto 90mg Tablet?', 'Lexeto 90mg Tablet is safe for most patients. However, in some patients, it may cause some unwanted side effects like nausea, vomiting, stomach pain, fatigue, diarrhea, etc. Inform your doctor if you experience any persistent problem due to this medication.'),
(8366, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Can I stop taking Lexeto 90mg Tablet when my pain is relieved?', 'Lexeto 90mg Tablet should be continued as advised by your doctor, if you are using the medicine for a condition associated with long-term pain. It can be discontinued if you are using it for short-term pain relief.'),
(8367, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Can the use of Lexeto 90mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexeto 90mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(8368, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Can the use of Lexeto 90mg Tablet cause dizziness?', 'Yes, the use of Lexeto 90mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for sometime and resume once you feel better.'),
(8369, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Are there any specific contraindications associated with the use of Lexeto 90mg Tablet?', 'The use of Lexeto 90mg Tablet is considered to be harmful for patients with known allergy to any of the components of this medicine. It should be avoided in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active or recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8370, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Is Lexeto 90mg Tablet helpful in relieving stomach pain?', 'No, Lexeto 90mg Tablet should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(8371, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Can the use of Lexeto 90mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexeto 90mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lowers the levels of prostaglandins in the body, leading to kidney damage because of long-term use. Therefore, the use of painkillers is not recommended in patients with underlying kidney disease.'),
(8372, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Is it safe to take a higher than the recommended dose of Lexeto 90mg Tablet ?', 'No, taking a higher than the recommended dose of Lexeto 90mg Tablet can increase the risks of side effects like stomach pain, nausea, vomiting, indigestion and diarrhea. In fact, using this medicine for a long-term can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(8373, 'Lexeto 90mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto 90mg Tablet', 'Can Lexeto 90mg Tablet cause high blood pressure?', 'Yes. Lexeto 90mg Tablet can increase blood pressure in some people, especially in high doses, and your doctor may advise you to check your blood pressure at home or even monitor it from time to time. If you have high blood pressure that has not been controlled by treatment, you must inform your doctor before starting treatment with Lexeto 90mg Tablet, to avoid any mishap.'),
(8374, 'Lexeto Plus Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto Plus Tablet', 'Can the use of Lexeto Plus Tablet cause dizziness?', 'Yes, the use of Lexeto Plus Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(8375, 'Lexeto Plus Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto Plus Tablet', 'Are there any specific contraindications associated with the use of Lexeto Plus Tablet?', 'The use of Lexeto Plus Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDs) or any of the components or excipients of this medicine. . The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8376, 'Lexeto Plus Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto Plus Tablet', 'Can the use of Lexeto Plus Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexeto Plus Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8377, 'Lexeto Plus Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto Plus Tablet', 'Will Lexeto Plus Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8378, 'Lexeto Plus Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto Plus Tablet', 'Can the use of Lexeto Plus Tablet cause damage to liver?', 'Lexeto Plus Tablet contains Paracetamol. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(8379, 'Lexeto Plus Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto Plus Tablet', 'What are the instructions for storage and disposal of Lexeto Plus Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8380, 'Lexeto Plus Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto Plus Tablet', 'Can I stop taking Lexeto Plus Tablet when my pain is relieved?', 'Lexeto Plus Tablet, when used for long-term pain relief, should be continued for as long as advised by your doctor. It can be discontinued if you are using it for short-term pain relief.'),
(8381, 'Lexeto TH 60mg/4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto TH 60mg/4mg Tablet', 'Can I stop taking Lexeto TH 60mg/4mg Tablet when my pain is relieved?', 'Lexeto TH 60mg/4mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(8382, 'Lexeto TH 60mg/4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto TH 60mg/4mg Tablet', 'Can the use of Lexeto TH 60mg/4mg Tablet cause dizziness?', 'Yes, the use of Lexeto TH 60mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(8383, 'Lexeto TH 60mg/4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto TH 60mg/4mg Tablet', 'Are there any specific contraindications associated with the use of Lexeto TH 60mg/4mg Tablet?', 'The use of Lexeto TH 60mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDS) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(8384, 'Lexeto TH 60mg/4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto TH 60mg/4mg Tablet', 'Can I take Lexeto TH 60mg/4mg Tablet with Vitamin B-complex?', 'Yes, Lexeto TH 60mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Lexeto TH 60mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8385, 'Lexeto TH 60mg/4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto TH 60mg/4mg Tablet', 'Can the use of Lexeto TH 60mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexeto TH 60mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8386, 'Lexeto TH 60mg/4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto TH 60mg/4mg Tablet', 'Will Lexeto TH 60mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8387, 'Lexeto TH 60mg/4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexeto TH 60mg/4mg Tablet', 'What is the recommended storage condition for Lexeto TH 60mg/4mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8388, 'Lexfate S Oral Suspension', 'Lexaro Healthcare', 'Lexfate S Oral Suspension', 'Why is Lexfate S Oral Suspension prescribed?', 'Lexfate S Oral Suspension is prescribed for the treatment of acidity, heartburn and stomach ulcers.'),
(8389, 'Lexfate S Oral Suspension', 'Lexaro Healthcare', 'Lexfate S Oral Suspension', 'How should I take Lexfate S Oral Suspension?', 'Take Lexfate S Oral Suspension on an empty stomach, at least 1 hour before or 2 hours after a meal.'),
(8390, 'Lexfate S Oral Suspension', 'Lexaro Healthcare', 'Lexfate S Oral Suspension', 'Can I drink water after taking Lexfate S Oral Suspension?', 'Avoid drinking anything immediately after taking Lexfate S Oral Suspension as that can reduce the effectiveness of this medicine.'),
(8391, 'Lexfate S Oral Suspension', 'Lexaro Healthcare', 'Lexfate S Oral Suspension', 'Can the use of Lexfate S Oral Suspension cause constipation?', 'Yes, Lexfate S Oral Suspension contains Sucralfate, which can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits and cereals. Drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or take a short walk. Talk to your doctor about treating constipation if it persists for a long time.'),
(8392, 'Lexfate S Oral Suspension', 'Lexaro Healthcare', 'Lexfate S Oral Suspension', 'Can I stop taking Lexfate S Oral Suspension when my symptoms are relieved?', 'No, take Lexfate S Oral Suspension for the full prescribed length of time even if you feel better. Do not stop taking this medication without consulting your doctor.'),
(8393, 'Lexflo Tablet', 'Xender Biopharma & Research Llp.', 'Lexflo Tablet', 'Is Lexflo Tablet safe?', 'Lexflo Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8394, 'Lexflo Tablet', 'Xender Biopharma & Research Llp.', 'Lexflo Tablet', 'What if I forget to take a dose of Lexflo Tablet?', 'If you forget a dose of Lexflo Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8395, 'Lexflo Tablet', 'Xender Biopharma & Research Llp.', 'Lexflo Tablet', 'Can the use of Lexflo Tablet cause diarrhea?', 'Yes, the use of Lexflo Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8396, 'Lexflo Tablet', 'Xender Biopharma & Research Llp.', 'Lexflo Tablet', 'Can I stop taking Lexflo Tablet when I feel better?', 'No, do not stop taking Lexflo Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexflo Tablet too early, the symptoms may return or worsen. Continue taking Lexflo Tablet in the dose and duration advised by the doctor.'),
(8397, 'Lexflo Tablet', 'Xender Biopharma & Research Llp.', 'Lexflo Tablet', 'Can the use of Lexflo Tablet increase the risk of muscle damage?', 'Yes, the use of Lexflo Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexflo Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(8398, 'Lexflox TZ 500mg/600mg Tablet', 'Lexus Organics', 'Lexflox TZ 500mg/600mg Tablet', 'What is Lexflox TZ 500mg/600mg Tablet?', 'Lexflox TZ 500mg/600mg Tablet is a combination of two medicines: Tinidazole and Ciprofloxacin. They work by killing the harmful microorganisms that can cause infection. Together they help to treat the infection more effectively.'),
(8399, 'Lexflox TZ 500mg/600mg Tablet', 'Lexus Organics', 'Lexflox TZ 500mg/600mg Tablet', 'Is it safe to use Lexflox TZ 500mg/600mg Tablet?', 'Lexflox TZ 500mg/600mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, metallic taste, heartburn and other uncommon or rare side effects. If you experience any problem due to the medication, inform your doctor as soon as possible.'),
(8400, 'Lexflox TZ 500mg/600mg Tablet', 'Lexus Organics', 'Lexflox TZ 500mg/600mg Tablet', 'What if I don\'t get better after using Lexflox TZ 500mg/600mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8401, 'Lexflox TZ 500mg/600mg Tablet', 'Lexus Organics', 'Lexflox TZ 500mg/600mg Tablet', 'Can I stop taking Lexflox TZ 500mg/600mg Tablet when I feel better?', 'No, do not stop taking Lexflox TZ 500mg/600mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(8402, 'Lexflox TZ 500mg/600mg Tablet', 'Lexus Organics', 'Lexflox TZ 500mg/600mg Tablet', 'What if I miss my dose?', 'Take Lexflox TZ 500mg/600mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8403, 'Lexflu DS Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu DS Oral Suspension', 'What if  I give too much Lexflu DS Oral Suspension by mistake?', 'Prolonged or excess intake of Lexflu DS Oral Suspension can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects, and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(8404, 'Lexflu DS Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu DS Oral Suspension', 'Can other medicines be given at the same time as Lexflu DS Oral Suspension?', 'Lexflu DS Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexflu DS Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(8405, 'Lexflu DS Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu DS Oral Suspension', 'In what all conditions should I avoid giving Lexflu DS Oral Suspension to my child?', 'If your child is suffering from any Cardiovascular disease (hypertension, heart disease), Diabetes mellitus, GI obstruction, increased intraocular pressure, urinary obstruction, or thyroid dysfunction, avoid giving Lexflu DS Oral Suspension. Always inform your doctor about your child’s medical history before giving Lexflu DS Oral Suspension.'),
(8406, 'Lexflu DS Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu DS Oral Suspension', 'My child has a cough and fever. Can I give him two different cough and fever medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. This is because both the medicines could have the same ingredients and taking them together would cause an overdose and could result in serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(8407, 'Lexflu DS Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu DS Oral Suspension', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(8408, 'Lexflu DS Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu DS Oral Suspension', 'Can Lexflu DS Oral Suspension make my child sleepy?', 'Lexflu DS Oral Suspension may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(8409, 'Lexflu DS Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu DS Oral Suspension', 'How can I store Lexflu DS Oral Suspension?', 'Lexflu DS Oral Suspension should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(8410, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'What is Lexflu P Tablet?', 'Lexflu P Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(8411, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'Are there any foods which I have to avoid while taking Lexflu P Tablet?', 'Lexflu P Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(8412, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'Can the use of Lexflu P Tablet cause sleepiness or drowsiness?', 'Yes, Lexflu P Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(8413, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'Are there any serious side effects associated with the use of Lexflu P Tablet?', 'Serious side effects with Lexflu P Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(8414, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'Can I breastfeed while taking Lexflu P Tablet?', 'No, it is not advisable to breastfeed while using Lexflu P Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(8415, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'Will a higher than the recommended dose of Lexflu P Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(8416, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'Are there any contraindications associated with use of Lexflu P Tablet?', 'It is not recommended to use Lexflu P Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Lexflu P Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(8417, 'Lexflu P Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexflu P Tablet', 'What are the instructions for the storage and disposal of Lexflu P Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8418, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'What is Lexgly-MF Tablet?', 'Lexgly-MF Tablet is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(8419, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'What are the possible side effects of Lexgly-MF Tablet?', 'The use of Lexgly-MF Tablet is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(8420, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'Can the use of Lexgly-MF Tablet cause hypoglycemia?', 'Yes, the use of Lexgly-MF Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(8421, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'Can the use of Lexgly-MF Tablet cause lactic acidosis?', 'Yes, the use of Lexgly-MF Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin associated lactic acidosis). It is a rare side effect associated with the use of metformin. It is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lexgly-MF Tablet and immediately consult your doctor.'),
(8422, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'Can the use of Lexgly-MF Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Lexgly-MF Tablet can cause vitamin B12 deficiency on long-term use. The deficiency occurs as the medicine interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can have tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(8423, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'Are there any specific conditions in which Lexgly-MF Tablet should not to be taken?', 'The use of Lexgly-MF Tablet should be avoided in patients with known allergy to any of the component or excipients of this medicine. It is also avoided in patients with moderate to severe kidney disease or with underlying metabolic acidosis including diabetic ketoacidosis.'),
(8424, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'Is it safe to take alcohol while I am also taking Lexgly-MF Tablet?', 'No, it is not safe to take alcohol along with Lexgly-MF Tablet. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(8425, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'What is Lexgly-MF Tablet?', 'Lexgly-MF Tablet is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(8426, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'What are the possible side effects of Lexgly-MF Tablet?', 'The use of Lexgly-MF Tablet is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(8427, 'Lexgly-MF Tablet', 'Accilex Diacardo', 'Lexgly-MF Tablet', 'Can the use of Lexgly-MF Tablet cause hypoglycemia?', 'Yes, the use of Lexgly-MF Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(8428, 'Lexgrow Eye Drop', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexgrow Eye Drop', 'What is Lexgrow Eye Drop used for?', 'Lexgrow Eye Drop is an artificial substitute for tears. It is used as a lubricant for dry eyes. It is also used for the temporary relief of burning, irritation and/or discomfort due to dryness of eyes. Moreover, it is used to lubricate and re-wet soft and rigid gas permeable contact lenses. It is also indicated to relieve dryness, irritation and discomfort that may be associated with lens wear.'),
(8429, 'Lexgrow Eye Drop', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexgrow Eye Drop', 'What are the side effects of Lexgrow Eye Drop?', 'You may experience visual disturbances and eye discharge while using this medicine. Some other side effects of this medicine include redness of the eye, eye irritation, burning and discomfort, eyelid swelling and itching of the eye. If any of these side effects bother you, please consult your doctor.'),
(8430, 'Lexgrow Eye Drop', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexgrow Eye Drop', 'How should Lexgrow Eye Drop be stored?', 'Store at or below 25°C and out of the reach of children. Do not touch the tip of the container to any surface or eye(s). Replace the cap after every use. Remember not to use the eye drops after the expiry date or after 30 days of opening it.'),
(8431, 'Lexgrow Eye Drop', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexgrow Eye Drop', 'How should Lexgrow Eye Drop be used?', 'If you are using it for dry eyes, instil 1 or 2 drops in the affected eye(s) as needed. If you are using it to lubricate soft and rigid gas-permeable lenses, apply 1 to 2 drops to each eye with the lenses on as needed or as directed by your doctor. Blink several times after pouring the drops. Consult your doctor if not sure.'),
(8432, 'Lexgrow Eye Drop', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexgrow Eye Drop', 'Is Lexgrow Eye Drop bad?', 'No, Lexgrow Eye Drop is a safe medicine. It is meant for external use only and is not harmful. However, in some patients, Lexgrow Eye Drop may cause eye irritation (burning and discomfort), eye pain, itchy eyes and visual disturbance. Immediately contact your doctor if any of these effects perists.'),
(8433, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'What is the difference between Lexi 20mg Tablet DT and diclofenac?', 'Both Lexi 20mg Tablet DT and diclofenac are pain killers. However, piroxicam is a non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain) inhibitor whereas diclofenac has a bit more selectivity to a COX-2 enzyme. This selectivity of diclofenac is supposed to decrease the side effects as compared to Lexi 20mg Tablet DT.'),
(8434, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'What is the difference between Lexi 20mg Tablet DT and naproxen?', 'Both Lexi 20mg Tablet DT and naproxen are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, gastric side effects are lesser with naproxen as compared to Lexi 20mg Tablet DT.'),
(8435, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'What is the difference between Lexi 20mg Tablet DT and meloxicam?', 'Both Lexi 20mg Tablet DT and meloxicam are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, acute gastric side effects are lesser with meloxicam as compared to Lexi 20mg Tablet DT.'),
(8436, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'What is the difference between Lexi 20mg Tablet DT and ketoprofen?', 'Both Lexi 20mg Tablet DT and ketoprofen are pain killers. Both are non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain). Research studies have shown ketoprofen topical gel is better and effective as compared to Lexi 20mg Tablet DT. Ketoprofen gel also showed excellent tolerability.'),
(8437, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'What is the difference between Lexi 20mg Tablet DT and tramadol?', 'Lexi 20mg Tablet DT is a COX (cyclooxygenase -an enzyme responsible for inflammation and pain) whereas Tramadol is a narcotic-like painkiller. Tramadol is a habit forming medicine.'),
(8438, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'What is the difference between Lexi 20mg Tablet DT and nimesulide?', 'Both Lexi 20mg Tablet DT and nimesulide are pain killers. However, Lexi 20mg Tablet DT is a non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain) inhibitor whereas nimesulide is selective to the COX-2 enzyme. This selectivity of nimesulide is supposed to decrease the side effects as compared to piroxicam. It should not be used in children below 12 years of age.'),
(8439, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'Can Lexi 20mg Tablet DT be used in the treatment of chikungunya?', 'Usually, the platelet count does not dip in cases of chikungunya and painkillers like piroxicam can lead to the risk of increased bleeding tendency. So refrain from taking Lexi 20mg Tablet DT or any painkiller in the case of any fever with joint pain. Consult your doctor before starting Lexi 20mg Tablet DT.'),
(8440, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'Are Lexi 20mg Tablet DT and aspirin same?', 'No. Lexi 20mg Tablet DT and aspirin are not same. They belong to the same class of drugs known as COX (cyclooxygenase) inhibitors. They both are anti-inflammatory and analgesic.'),
(8441, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'Can Lexi 20mg Tablet DT be used along with dexamethasone?', 'No. Lexi 20mg Tablet DT should not be used with dexamethasone. They both increase each other\'s toxicity. There is an increased risk of GI ulceration.'),
(8442, 'Lexi 20mg Tablet DT', 'Lexus Organics', 'Lexi 20mg Tablet DT', 'Can Lexi 20mg Tablet DT be used with methocarbamol?', 'Yes. Methocarbamol can be used with Lexi 20mg Tablet DT as no serious side effects are known. Inform your doctor before starting any of the medication.'),
(8443, 'Lexi 5 Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi 5 Tablet', 'Is Lexi 5 Tablet a steroid? What is it used for?', 'No, Lexi 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(8444, 'Lexi 5 Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi 5 Tablet', 'Does Lexi 5 Tablet make you tired and drowsy?', 'Yes, Lexi 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(8445, 'Lexi 5 Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi 5 Tablet', 'How long does it take for Lexi 5 Tablet to work?', 'Lexi 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(8446, 'Lexi 5 Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi 5 Tablet', 'Can I take Lexi 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lexi 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(8447, 'Lexi 5 Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi 5 Tablet', 'Is it safe to take Lexi 5 Tablet for a long time?', 'Lexi 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lexi 5 Tablet for only as long as you need it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8448, 'Lexi 5 Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi 5 Tablet', 'For how long should I continue Lexi 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lexi 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lexi 5 Tablet'),
(8449, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'Is Lexiaz 500mg Tablet safe?', 'Lexiaz 500mg Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(8450, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Lexiaz 500mg Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(8451, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'Can the use of Lexiaz 500mg Tablet cause diarrhea?', 'Yes, the use of Lexiaz 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8452, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'Can Lexiaz 500mg Tablet be taken at night?', 'Lexiaz 500mg Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Lexiaz 500mg Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(8453, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'How long does it take Lexiaz 500mg Tablet to work?', 'Lexiaz 500mg Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(8454, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'Why is Lexiaz 500mg Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lexiaz 500mg Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(8455, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'What should I avoid while taking Lexiaz 500mg Tablet?', 'Generally, it is recommended that patients taking Lexiaz 500mg Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lexiaz 500mg Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Lexiaz 500mg Tablet increases the risk of sunburn.'),
(8456, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'Is Lexiaz 500mg Tablet a strong antibiotic?', 'Lexiaz 500mg Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lexiaz 500mg Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(8457, 'Lexiaz 500mg Tablet', 'Lexiphar Healthcare', 'Lexiaz 500mg Tablet', 'Can you get a yeast infection from taking Lexiaz 500mg Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Lexiaz 500mg Tablet. Antibiotics such as Lexiaz 500mg Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lexiaz 500mg Tablet or soon after stopping it.'),
(8458, 'Lexicet L 5mg Tablet', 'Lexicon Biotech India Ltd', 'Lexicet L 5mg Tablet', 'Is Lexicet L 5mg Tablet a steroid? What is it used for?', 'No, Lexicet L 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(8459, 'Lexicet L 5mg Tablet', 'Lexicon Biotech India Ltd', 'Lexicet L 5mg Tablet', 'Does Lexicet L 5mg Tablet make you tired and drowsy?', 'Yes, Lexicet L 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(8460, 'Lexicet L 5mg Tablet', 'Lexicon Biotech India Ltd', 'Lexicet L 5mg Tablet', 'How long does it take for Lexicet L 5mg Tablet to work?', 'Lexicet L 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(8461, 'Lexicet L 5mg Tablet', 'Lexicon Biotech India Ltd', 'Lexicet L 5mg Tablet', 'Can I take Lexicet L 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lexicet L 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(8462, 'Lexicet L 5mg Tablet', 'Lexicon Biotech India Ltd', 'Lexicet L 5mg Tablet', 'Is it safe to take Lexicet L 5mg Tablet for a long time?', 'Lexicet L 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lexicet L 5mg Tablet for only as long as you need it.'),
(8463, 'Lexicet L 5mg Tablet', 'Lexicon Biotech India Ltd', 'Lexicet L 5mg Tablet', 'For how long should I continue Lexicet L 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lexicet L 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lexicet L 5mg Tablet'),
(8464, 'Lexicob 2500mcg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob 2500mcg Injection', 'What is Lexicob 2500mcg Injection?', 'Lexicob 2500mcg Injection is a form of vitamin B12. Vitamin B12 is an essential nutrient which is required by the body to make red blood cells and maintain a healthy nervous system. It is also important for releasing energy from food and using vitamin B11 (folic acid).'),
(8465, 'Lexicob 2500mcg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob 2500mcg Injection', 'Why can’t I get sufficient vitamin B12 in my diet?', 'You can get vitamin B12 from sources like meat, fish, eggs and dairy products. While people who are vegetarian or vegan may not get Vitamin B12 as it is not found naturally in foods such as fruits, vegetables and grains. Therefore, deficiency of Vitamin B12 is usually noticed in vegetarians or vegans.'),
(8466, 'Lexicob 2500mcg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob 2500mcg Injection', 'What happens if I have vitamin B12 deficiency?', 'Deficiency of vitamin B12 may cause tiredness, weakness, constipation, loss of appetite, weight loss and megaloblastic anemia (a condition when red blood cells become larger than normal). It may also lead to nerve problems such as numbness and tingling in the hands and feet. Other symptoms of vitamin B12 deficiency may include problems with balance, depression, confusion, dementia, poor memory and soreness of the mouth or tongue.'),
(8467, 'Lexicob 2500mcg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob 2500mcg Injection', 'Is Lexicob 2500mcg Injection safe?', 'Lexicob 2500mcg Injection is generally well tolerated and considered safe. However, in some cases, rare side effects may be observed such as nausea, diarrhea, anorexia and rash. Discontinue taking this medicine immediately if a rash occurs.'),
(8468, 'Lexicob 2500mcg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob 2500mcg Injection', 'How should Lexicob 2500mcg Injection be given?', 'Lexicob 2500mcg Injection can be injected directly into a vein (intravenously) or into a muscle (intramuscularly). The usual dose is 1 ampoule (0.5 mg of Lexicob 2500mcg Injection) and is given 3 times a week. After 2 months, 1 ampoule (0.5 mg of Lexicob 2500mcg Injection) is given every one to three months as a part of maintenance therapy.'),
(8469, 'Lexicob 2500mcg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob 2500mcg Injection', 'What precautions need to be taken while administering Lexicob 2500mcg Injection?', 'Avoid taking the injections at the same site every time. If there is intense pain while injecting or if the blood flows back into the syringe, take out the needle and re-insert at a different site.'),
(8470, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'What is Lexicob P Capsule?', 'Lexicob P Capsule is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(8471, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'Can I stop taking Lexicob P Capsule when my pain is relieved?', 'No, you should not stop taking Lexicob P Capsule even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lexicob P Capsule, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Lexicob P Capsule before you stop the medication completely.'),
(8472, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'How to manage weight gain associated with the use of Lexicob P Capsule?', 'Lexicob P Capsule can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(8473, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'Can the use of Lexicob P Capsule cause sleepiness or drowsiness?', 'Yes, Lexicob P Capsule may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(8474, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'Are there any serious side effects associated with the use of Lexicob P Capsule?', 'Serious side effects caused because of the use of Lexicob P Capsule are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Lexicob P Capsule and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(8475, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'How long will the Lexicob P Capsule take to act?', 'An initial benefit with Lexicob P Capsule may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(8476, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'What if I forget to take Lexicob P Capsule?', 'If you forget to take the scheduled dose of Lexicob P Capsule and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(8477, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'Will a higher than the recommended dose of Lexicob P Capsule be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8478, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'Can I drink alcohol while taking Lexicob P Capsule?', 'No, do not drink alcohol while taking Lexicob P Capsule. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lexicob P Capsule.'),
(8479, 'Lexicob P Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexicob P Capsule', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Lexicob P Capsule. However, you must consult your doctor if the advised dosage of Lexicob P Capsule does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(8480, 'Lexicold Duo Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Duo Oral Suspension', 'What is Lexicold Duo Oral Suspension?', 'Lexicold Duo Oral Suspension is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(8481, 'Lexicold Duo Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Duo Oral Suspension', 'Is it safe to use Lexicold Duo Oral Suspension?', 'Yes, Lexicold Duo Oral Suspension is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(8482, 'Lexicold Duo Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Duo Oral Suspension', 'Can I stop taking Lexicold Duo Oral Suspension when I am relieved of my symptoms?', 'Lexicold Duo Oral Suspension is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(8483, 'Lexicold Duo Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Duo Oral Suspension', 'Can the use of Lexicold Duo Oral Suspension cause dizziness?', 'Yes, the use of Lexicold Duo Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(8484, 'Lexicold Duo Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Duo Oral Suspension', 'Can the use of Lexicold Duo Oral Suspension cause damage to liver?', 'Lexicold Duo Oral Suspension is usually safe when taken according to the recommended dose. However, an overdose of Lexicold Duo Oral Suspension can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(8485, 'Lexicold Duo Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Duo Oral Suspension', 'What is the recommended storage condition for the Lexicold Duo Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8486, 'Lexicold Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Oral Suspension', 'What is Lexicold Oral Suspension?', 'Lexicold Oral Suspension is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(8487, 'Lexicold Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Oral Suspension', 'Is it safe to use Lexicold Oral Suspension?', 'Yes, Lexicold Oral Suspension is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(8488, 'Lexicold Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Oral Suspension', 'Can I stop taking Lexicold Oral Suspension when I am relieved of my symptoms?', 'Lexicold Oral Suspension is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(8489, 'Lexicold Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Oral Suspension', 'Can the use of Lexicold Oral Suspension cause dizziness?', 'Yes, the use of Lexicold Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(8490, 'Lexicold Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Oral Suspension', 'Can the use of Lexicold Oral Suspension cause damage to liver?', 'Lexicold Oral Suspension is usually safe when taken according to the recommended dose. However, an overdose of Lexicold Oral Suspension can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(8491, 'Lexicold Oral Suspension', 'Med Lex Pharmaceutical', 'Lexicold Oral Suspension', 'What is the recommended storage condition for the Lexicold Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8492, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'What is Lexicold P Tablet?', 'Lexicold P Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(8493, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'Are there any foods which I have to avoid while taking Lexicold P Tablet?', 'Lexicold P Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(8494, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexicold P Tablet cause sleepiness or drowsiness?', 'Yes, Lexicold P Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(8495, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'Are there any serious side effects associated with the use of Lexicold P Tablet?', 'Serious side effects with Lexicold P Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(8496, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'Can I breastfeed while taking Lexicold P Tablet?', 'No, it is not advisable to breastfeed while using Lexicold P Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(8497, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'Will a higher than the recommended dose of Lexicold P Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(8498, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'Are there any contraindications associated with use of Lexicold P Tablet?', 'It is not recommended to use Lexicold P Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Lexicold P Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(8499, 'Lexicold P Tablet', 'Med Lex Pharmaceutical', 'Lexicold P Tablet (Med Lex Pharmaceutical)', 'What are the instructions for the storage and disposal of Lexicold P Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8500, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'What is Lexicold P Tablet?', 'Lexicold P Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(8501, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'Are there any foods which I have to avoid while taking Lexicold P Tablet?', 'Lexicold P Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(8502, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexicold P Tablet cause sleepiness or drowsiness?', 'Yes, Lexicold P Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(8503, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'Are there any serious side effects associated with the use of Lexicold P Tablet?', 'Serious side effects with Lexicold P Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(8504, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'Can I breastfeed while taking Lexicold P Tablet?', 'No, it is not advisable to breastfeed while using Lexicold P Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(8505, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'Will a higher than the recommended dose of Lexicold P Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(8506, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'Are there any contraindications associated with use of Lexicold P Tablet?', 'It is not recommended to use Lexicold P Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Lexicold P Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(8507, 'Lexicold P Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold P Tablet (Medlex Biotechnics Private Limited)', 'What are the instructions for the storage and disposal of Lexicold P Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8508, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'What is Lexicold Tablet?', 'Lexicold Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(8509, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'Are there any foods which I have to avoid while taking Lexicold Tablet?', 'Lexicold Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(8510, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexicold Tablet cause sleepiness or drowsiness?', 'Yes, Lexicold Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(8511, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'Are there any serious side effects associated with the use of Lexicold Tablet?', 'Serious side effects with Lexicold Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(8512, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'Can I breastfeed while taking Lexicold Tablet?', 'No, it is not advisable to breastfeed while using Lexicold Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(8513, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'Will a higher than the recommended dose of Lexicold Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(8514, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'Are there any contraindications associated with use of Lexicold Tablet?', 'It is not recommended to use Lexicold Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Lexicold Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(8515, 'Lexicold Tablet', 'Med Lex Pharmaceutical', 'Lexicold Tablet (Med Lex Pharmaceutical)', 'What are the instructions for the storage and disposal of Lexicold Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8516, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'What is Lexicold Tablet?', 'Lexicold Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(8517, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'Are there any foods which I have to avoid while taking Lexicold Tablet?', 'Lexicold Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(8518, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexicold Tablet cause sleepiness or drowsiness?', 'Yes, Lexicold Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(8519, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'Are there any serious side effects associated with the use of Lexicold Tablet?', 'Serious side effects with Lexicold Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(8520, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'Can I breastfeed while taking Lexicold Tablet?', 'No, it is not advisable to breastfeed while using Lexicold Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(8521, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'Will a higher than the recommended dose of Lexicold Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(8522, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'Are there any contraindications associated with use of Lexicold Tablet?', 'It is not recommended to use Lexicold Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Lexicold Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(8523, 'Lexicold Tablet', 'Medlex Biotechnics Private Limited', 'Lexicold Tablet (Medlex Biotechnics Private Limited)', 'What are the instructions for the storage and disposal of Lexicold Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8524, 'Lexicort 6mg Tablet', 'Med Lex Pharmaceutical', 'Lexicort 6mg Tablet (Med Lex Pharmaceutical)', 'Is Lexicort 6mg Tablet a steroid?', 'Yes, Lexicort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lexicort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(8525, 'Lexicort 6mg Tablet', 'Med Lex Pharmaceutical', 'Lexicort 6mg Tablet (Med Lex Pharmaceutical)', 'What is Lexicort 6mg Tablet used for?', 'Lexicort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(8526, 'Lexicort 6mg Tablet', 'Med Lex Pharmaceutical', 'Lexicort 6mg Tablet (Med Lex Pharmaceutical)', 'How does Lexicort 6mg Tablet work?', 'Lexicort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(8527, 'Lexicort 6mg Tablet', 'Med Lex Pharmaceutical', 'Lexicort 6mg Tablet (Med Lex Pharmaceutical)', 'Is Lexicort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lexicort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lexicort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(8528, 'Lexicort 6mg Tablet', 'Med Lex Pharmaceutical', 'Lexicort 6mg Tablet (Med Lex Pharmaceutical)', 'Is Lexicort 6mg Tablet a painkiller?', 'No, Lexicort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(8529, 'Lexicort 6mg Tablet', 'Med Lex Pharmaceutical', 'Lexicort 6mg Tablet (Med Lex Pharmaceutical)', 'Can I take Lexicort 6mg Tablet with Tamsulosin?', 'Yes, Lexicort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(8530, 'Lexicort 6mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexicort 6mg Tablet (Medlex Biotechnics Private Limited)', 'Is Lexicort 6mg Tablet a steroid?', 'Yes, Lexicort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lexicort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(8531, 'Lexicort 6mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexicort 6mg Tablet (Medlex Biotechnics Private Limited)', 'What is Lexicort 6mg Tablet used for?', 'Lexicort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(8532, 'Lexicort 6mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexicort 6mg Tablet (Medlex Biotechnics Private Limited)', 'How does Lexicort 6mg Tablet work?', 'Lexicort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(8533, 'Lexicort 6mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexicort 6mg Tablet (Medlex Biotechnics Private Limited)', 'Is Lexicort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lexicort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lexicort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(8534, 'Lexicort 6mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexicort 6mg Tablet (Medlex Biotechnics Private Limited)', 'Is Lexicort 6mg Tablet a painkiller?', 'No, Lexicort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(8535, 'Lexicort 6mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexicort 6mg Tablet (Medlex Biotechnics Private Limited)', 'Can I take Lexicort 6mg Tablet with Tamsulosin?', 'Yes, Lexicort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(8536, 'Lexicv LB 500mg/125mg Tablet', 'Lexiphar Healthcare', 'Lexicv LB 500mg/125mg Tablet', 'What are the contraindications associated with the use of Lexicv LB 500mg/125mg Tablet?', 'Lexicv LB 500mg/125mg Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(8537, 'Lexicv LB 500mg/125mg Tablet', 'Lexiphar Healthcare', 'Lexicv LB 500mg/125mg Tablet', 'Which is the best time to take Lexicv LB 500mg/125mg Tablet?', 'Lexicv LB 500mg/125mg Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(8538, 'Lexicv LB 500mg/125mg Tablet', 'Lexiphar Healthcare', 'Lexicv LB 500mg/125mg Tablet', 'Can I stop Lexicv LB 500mg/125mg Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(8539, 'Lexicv LB 500mg/125mg Tablet', 'Lexiphar Healthcare', 'Lexicv LB 500mg/125mg Tablet', 'Can I take Lexicv LB 500mg/125mg Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(8540, 'Lexicv LB 500mg/125mg Tablet', 'Lexiphar Healthcare', 'Lexicv LB 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lexicv LB 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8541, 'Lexidep Plus 0.5mg/10mg Tablet', 'Assentus Biogenics Pvt Ltd', 'Lexidep Plus 0.5mg/10mg Tablet', 'What is Lexidep Plus 0.5mg/10mg Tablet?', 'Lexidep Plus 0.5mg/10mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(8542, 'Lexidep Plus 0.5mg/10mg Tablet', 'Assentus Biogenics Pvt Ltd', 'Lexidep Plus 0.5mg/10mg Tablet', 'Can the Lexidep Plus 0.5mg/10mg Tablet cause sleepiness or drowsiness?', 'Lexidep Plus 0.5mg/10mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(8543, 'Lexidep Plus 0.5mg/10mg Tablet', 'Assentus Biogenics Pvt Ltd', 'Lexidep Plus 0.5mg/10mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexidep Plus 0.5mg/10mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8544, 'Lexidep Plus 0.5mg/10mg Tablet', 'Assentus Biogenics Pvt Ltd', 'Lexidep Plus 0.5mg/10mg Tablet', 'Any special instruction regarding storage and disposal of Lexidep Plus 0.5mg/10mg Tablet?', 'Keep Lexidep Plus 0.5mg/10mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(8545, 'Lexidep Plus 0.5mg/10mg Tablet', 'Assentus Biogenics Pvt Ltd', 'Lexidep Plus 0.5mg/10mg Tablet', 'Can I stop taking Lexidep Plus 0.5mg/10mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexidep Plus 0.5mg/10mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(8546, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'How long does it take for Lexigut Syrup to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Lexigut Syrup.'),
(8547, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'What is Lexigut Syrup used for?', 'Lexigut Syrup is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(8548, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'Is Lexigut Syrup a laxative?', 'Yes, Lexigut Syrup is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(8549, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'What are the side effects of taking Lexigut Syrup?', 'Lexigut Syrup very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(8550, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'Is it okay to take Lexigut Syrup every day?', 'You should take Lexigut Syrup for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(8551, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'Who should not be given Lexigut Syrup?', 'Lexigut Syrup should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(8552, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'Can I take other laxatives along with Lexigut Syrup?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Lexigut Syrup. The risk of side effects is more with two laxatives.'),
(8553, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'What if I take more than the recommended dose of Lexigut Syrup?', 'Taking more than the recommended dose of Lexigut Syrup may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8554, 'Lexigut Syrup', 'Alisier Drugs Pvt Ltd', 'Lexigut Syrup', 'How should Lexigut Syrup be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(8555, 'Lexilid 600mg Tablet', 'Leeford Healthcare Ltd', 'Lexilid 600mg Tablet', 'Q. Can the use of Lexilid 600mg Tablet cause diarrhea?', 'Yes, the use of Lexilid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8556, 'Lexilid 600mg Tablet', 'Leeford Healthcare Ltd', 'Lexilid 600mg Tablet', 'Q. What foods should I avoid while taking Lexilid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lexilid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(8557, 'Lexilid 600mg Tablet', 'Leeford Healthcare Ltd', 'Lexilid 600mg Tablet', 'Can the use of Lexilid 600mg Tablet cause diarrhea?', 'Yes, the use of Lexilid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8558, 'Lexilid 600mg Tablet', 'Leeford Healthcare Ltd', 'Lexilid 600mg Tablet', 'What foods should I avoid while taking Lexilid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lexilid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(8559, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'What if I give an excess of Lexilid DS Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(8560, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lexilid DS Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(8561, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'What should I do if my child shows no improvement even after taking Lexilid DS Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lexilid DS Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(8562, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'Can Lexilid DS Dry Syrup be given for a long duration?', 'Prolonged use of Lexilid DS Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(8563, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'Can other medicines be given at the same time as Lexilid DS Dry Syrup?', 'Lexilid DS Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexilid DS Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(8564, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lexilid DS Dry Syrup?', 'For children receiving Lexilid DS Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(8565, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'In which disease conditions should I avoid giving Lexilid DS Dry Syrup to my child?', 'Avoid giving Lexilid DS Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lexilid DS Dry Syrup to your child.'),
(8566, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'What food items should my child avoid while taking Lexilid DS Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lexilid DS Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(8567, 'Lexilid DS Dry Syrup', 'Leeford Healthcare Ltd', 'Lexilid DS Dry Syrup', 'Can I get my child vaccinated while on treatment with Lexilid DS Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lexilid DS Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(8568, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'What if I give an excess of Lexilid Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(8569, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lexilid Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(8570, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'What should I do if my child shows no improvement even after taking Lexilid Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lexilid Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(8571, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'Can Lexilid Oral Suspension be given for a long duration?', 'Prolonged use of Lexilid Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(8572, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'Can other medicines be given at the same time as Lexilid Oral Suspension?', 'Lexilid Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexilid Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(8573, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Lexilid Oral Suspension?', 'For children receiving Lexilid Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(8574, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'In which disease conditions should I avoid giving Lexilid Oral Suspension to my child?', 'Avoid giving Lexilid Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lexilid Oral Suspension to your child.'),
(8575, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'What food items should my child avoid while taking Lexilid Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lexilid Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(8576, 'Lexilid Oral Suspension', 'Leeford Healthcare Ltd', 'Lexilid Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexilid Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Lexilid Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(8577, 'Lexim 100 DT Tablet', 'SAG Health Science Pvt Ltd', 'Lexim 100 DT Tablet', 'How long should I take Lexim 100 DT Tablet?', 'Lexim 100 DT Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8578, 'Lexim 100 DT Tablet', 'SAG Health Science Pvt Ltd', 'Lexim 100 DT Tablet', 'What if I do not get better after using Lexim 100 DT Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8579, 'Lexim 100 DT Tablet', 'SAG Health Science Pvt Ltd', 'Lexim 100 DT Tablet', 'Can the use of Lexim 100 DT Tablet cause diarrhea?', 'Yes, the use of Lexim 100 DT Tablet can cause diarrhea. Lexim 100 DT Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8580, 'Lexim 100 DT Tablet', 'SAG Health Science Pvt Ltd', 'Lexim 100 DT Tablet', 'Is Lexim 100 DT Tablet effective?', 'Lexim 100 DT Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexim 100 DT Tablet too early, the symptoms may return or worsen.'),
(8581, 'Lexim 100 DT Tablet', 'SAG Health Science Pvt Ltd', 'Lexim 100 DT Tablet', 'What if I forget to take a dose of Lexim 100 DT Tablet?', 'If you forget a dose of Lexim 100 DT Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8582, 'Lexim 100 DT Tablet', 'SAG Health Science Pvt Ltd', 'Lexim 100 DT Tablet', 'Is Lexim 100 DT Tablet safe for the kidneys?', 'Yes, Lexim 100 DT Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(8583, 'Lexim 100 DT Tablet', 'SAG Health Science Pvt Ltd', 'Lexim 100 DT Tablet', 'How long should I take Lexim 100 DT Tablet?', 'Lexim 100 DT Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8584, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'What if I give too much of Lexim Oral Suspension by mistake?', 'An extra dose of Lexim Oral Suspension is unlikely to do harm. However, if you think you have given too much of Lexim Oral Suspension to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(8585, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'Are there any possible serious side effects of Lexim Oral Suspension?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(8586, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'Can other medicines be given at the same time as Lexim Oral Suspension?', 'Lexim Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexim Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(8587, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexim Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8588, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'Which lab tests may my child undergo while taking Lexim Oral Suspension on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(8589, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8590, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(8591, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'Can Lexim Oral Suspension impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lexim Oral Suspension may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexim Oral Suspension, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(8592, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'Can Lexim Oral Suspension lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Lexim Oral Suspension can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(8593, 'Lexim Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim Oral Suspension', 'How long should I take Lexim Oral Suspension?', 'Lexim Oral Suspension is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8594, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(8595, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'Can I decrease the dose of Lexi-M Syrup Strawberry by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(8596, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'How should Lexi-M Syrup Strawberry be stored?', 'Lexi-M Syrup Strawberry should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(8597, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'Can Lexi-M Syrup Strawberry make my child sleepy?', 'Lexi-M Syrup Strawberry causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(8598, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lexi-M Syrup Strawberry?', 'No, don’t start Lexi-M Syrup Strawberry without speaking to your child’s doctor. Moreover, Lexi-M Syrup Strawberry can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(8599, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lexi-M Syrup Strawberry usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(8600, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'My child is suffering from a mood disorder. Is it safe to give Lexi-M Syrup Strawberry to my child?', 'Some studies show that Lexi-M Syrup Strawberry can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(8601, 'Lexi-M Syrup Strawberry', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Syrup Strawberry', 'Can I use Lexi-M Syrup Strawberry for treating acute asthma attacks in my child?', 'Lexi-M Syrup Strawberry should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(8602, 'Lexi-M Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Tablet', 'What is Lexi-M Tablet?', 'Lexi-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(8603, 'Lexi-M Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Tablet', 'Can the use of Lexi-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lexi-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(8604, 'Lexi-M Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Tablet', 'Can Lexi-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lexi-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(8605, 'Lexi-M Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Tablet', 'Can the use of Lexi-M Tablet cause dry mouth?', 'Yes, the use of Lexi-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(8606, 'Lexi-M Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Tablet', 'Can I drink alcohol while taking Lexi-M Tablet?', 'No, do not take alcohol while taking Lexi-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lexi-M Tablet.'),
(8607, 'Lexi-M Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Tablet', 'Will Lexi-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lexi-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8608, 'Lexi-M Tablet', 'Vitabiotech Healthcare Private Limited', 'Lexi-M Tablet', 'What are the instructions for storage and disposal of Lexi-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(8609, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'What is Lexim-AZ Tablet used for?', 'Lexim-AZ Tablet is a fixed-dose combination of two antibiotics and is used to treat patients with bacterial infections. Cefixime is used to treat infections of the ear, lung, throat and urinary tract. Azithromycin is useful in the treatment of ear infections, strep throat, pneumonia, traveler\'s diarrhea (loose stools and stomach cramps while traveling). Together they can be used to treat infections of the upper respiratory tract (typhoid and pneumonia), urinary tract and sexually transmitted diseases.'),
(8610, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'What is gonorrhea and its related symptoms?', 'Gonorrhea is a sexually transmitted disease (STD). A patient may get this disease after having oral, vaginal or anal sex. Many patients with gonorrhea do not have any symptoms. Other patients may have symptoms like pain during sex, pain while urinating, discharge from the penis in males and changes in normal vaginal discharge of females.'),
(8611, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'How many days does it take to recover from typhoid?', 'Typhoid takes around seven and fourteen days to get cured. However, its duration can be as short as three days, or as long as 30 days. If left untreated, illness usually lasts for three to four weeks, but may be longer in a small number of cases. Symptoms vary from mild to severe to life-threatening.'),
(8612, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'What is the best treatment for typhoid fever?', 'If typhoid fever is diagnosed in its early stages, a course of antibiotic tablets may be prescribed to you. You will be needed to take these for 7 to 14 days. Your symptoms will start improving within 2 to 3 days of taking medicines. Make sure you rest, drink plenty of fluids and eat regular meals. You should also maintain good personal hygiene, such as regularly washing your hands with soap and warm water, to reduce the risk of spreading the infection to others.'),
(8613, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'Can I stop taking Lexim-AZ Tablet when I feel better?', 'No, do not stop taking Lexim-AZ Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8614, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'What if I miss my dose?', 'Take Lexim-AZ Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8615, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'Can the use of Lexim-AZ Tablet cause diarrhea?', 'Yes, the use of Lexim-AZ Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8616, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'What if I don\'t get better after using Lexim-AZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8617, 'Lexim-AZ Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-AZ Tablet', 'What special precautions should I follow while taking Lexim-AZ Tablet?', 'Before taking Lexim-AZ Tablet tell your doctor if you are allergic to the medicine, or have kidney or liver disease. Inform your doctor if you are pregnant, are planning a baby or are breastfeeding.'),
(8618, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'How to take Lexim-CV 81.25 Oral Suspension?', 'Take this medication by mouth, with or without food as directed by your doctor, usually once a day. If you are consuming chewable tablets, chew thoroughly and then swallow. Complete the full course of this medicine, even if symptoms disappear after a few days.'),
(8619, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'Is the use of Lexim-CV 81.25 Oral Suspension contraindicated in patients with impaired renal function?', 'Lexim-CV 81.25 Oral Suspension should be used with particular care in patients with severely impaired renal function. Dose modification is advised for patients with moderate or severe renal impairment.'),
(8620, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'What are the precautions that need to be taken while taking Lexim-CV 81.25 Oral Suspension?', 'The dose of Lexim-CV 81.25 Oral Suspension should be adjusted in patients with impairment of kidneys and for those who have gastrointestinal disease or colitis.'),
(8621, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'What are the serious side effects associated with the use of Lexim-CV 81.25 Oral Suspension?', 'The use of Lexim-CV 81.25 Oral Suspension can also lead to serious side effects like severe stomach/abdominal pain, persistent nausea/vomiting, unusual tiredness, new signs of infection (e.g., persistent sore throat, fever), yellowing of eyes/skin, dark urine, easy bruising/bleeding, signs of kidney problems (such as change in the amount of urine) and mental/mood changes (such as confusion).'),
(8622, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'What all should I tell my doctor before starting the course of this medicine?', 'Please inform your doctor if you are pregnant or trying for a baby or breastfeeding before you start taking this medicine. Let your doctor know if you are using any other medicine.'),
(8623, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'Can the use of Lexim-CV 81.25 Oral Suspension cause diarrhea?', 'Yes, the use of Lexim-CV 81.25 Oral Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8624, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'How long does Lexim-CV 81.25 Oral Suspension takes to work?', 'Usually, Lexim-CV 81.25 Oral Suspension starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(8625, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'What if I don\'t get better after using Lexim-CV 81.25 Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8626, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'Can I stop taking Lexim-CV 81.25 Oral Suspension when I feel better?', 'No, do not stop taking Lexim-CV 81.25 Oral Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8627, 'Lexim-CV 81.25 Oral Suspension', 'SAG Health Science Pvt Ltd', 'Lexim-CV 81.25 Oral Suspension', 'What are the instructions for storage and disposal of Lexim-CV 81.25 Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8628, 'Lexime 100mg Tablet', 'Lee Pharma Ltd', 'Lexime 100mg Tablet', 'How long should I take Lexime 100mg Tablet?', 'Lexime 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8629, 'Lexime 100mg Tablet', 'Lee Pharma Ltd', 'Lexime 100mg Tablet', 'What if I do not get better after using Lexime 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8630, 'Lexime 100mg Tablet', 'Lee Pharma Ltd', 'Lexime 100mg Tablet', 'Can the use of Lexime 100mg Tablet cause diarrhea?', 'Yes, the use of Lexime 100mg Tablet can cause diarrhea. Lexime 100mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8631, 'Lexime 100mg Tablet', 'Lee Pharma Ltd', 'Lexime 100mg Tablet', 'Is Lexime 100mg Tablet effective?', 'Lexime 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexime 100mg Tablet too early, the symptoms may return or worsen.'),
(8632, 'Lexime 100mg Tablet', 'Lee Pharma Ltd', 'Lexime 100mg Tablet', 'What if I forget to take a dose of Lexime 100mg Tablet?', 'If you forget a dose of Lexime 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8633, 'Lexime 100mg Tablet', 'Lee Pharma Ltd', 'Lexime 100mg Tablet', 'Is Lexime 100mg Tablet safe for the kidneys?', 'Yes, Lexime 100mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(8634, 'Lexime 100mg Tablet', 'Lee Pharma Ltd', 'Lexime 100mg Tablet', 'How long should I take Lexime 100mg Tablet?', 'Lexime 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8635, 'Lexime 200mg Tablet', 'Lexus Organics', 'Lexime 200mg Tablet', 'How long should I take Lexime 200mg Tablet?', 'Lexime 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8636, 'Lexime 200mg Tablet', 'Lexus Organics', 'Lexime 200mg Tablet', 'What if I do not get better after using Lexime 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8637, 'Lexime 200mg Tablet', 'Lexus Organics', 'Lexime 200mg Tablet', 'Can the use of Lexime 200mg Tablet cause diarrhea?', 'Yes, the use of Lexime 200mg Tablet can cause diarrhea. Lexime 200mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8638, 'Lexime 200mg Tablet', 'Lexus Organics', 'Lexime 200mg Tablet', 'Is Lexime 200mg Tablet effective?', 'Lexime 200mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexime 200mg Tablet too early, the symptoms may return or worsen.'),
(8639, 'Lexime 200mg Tablet', 'Lexus Organics', 'Lexime 200mg Tablet', 'What if I forget to take a dose of Lexime 200mg Tablet?', 'If you forget a dose of Lexime 200mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8640, 'Lexime 200mg Tablet', 'Lexus Organics', 'Lexime 200mg Tablet', 'Is Lexime 200mg Tablet safe for the kidneys?', 'Yes, Lexime 200mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(8641, 'Lexime 200mg Tablet', 'Lexus Organics', 'Lexime 200mg Tablet', 'How long should I take Lexime 200mg Tablet?', 'Lexime 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8642, 'Lexime DS Syrup', 'Lexus Organics', 'Lexime DS Syrup', 'How long should I take Lexime DS Syrup?', 'Lexime DS Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8643, 'Lexime DS Syrup', 'Lexus Organics', 'Lexime DS Syrup', 'What if I do not get better after using Lexime DS Syrup?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8644, 'Lexime DS Syrup', 'Lexus Organics', 'Lexime DS Syrup', 'Can the use of Lexime DS Syrup cause diarrhea?', 'Yes, the use of Lexime DS Syrup can cause diarrhea. Lexime DS Syrup is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8645, 'Lexime DS Syrup', 'Lexus Organics', 'Lexime DS Syrup', 'Is Lexime DS Syrup effective?', 'Lexime DS Syrup is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexime DS Syrup too early, the symptoms may return or worsen.'),
(8646, 'Lexime DS Syrup', 'Lexus Organics', 'Lexime DS Syrup', 'What if I forget to take a dose of Lexime DS Syrup?', 'If you forget a dose of Lexime DS Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8647, 'Lexime DS Syrup', 'Lexus Organics', 'Lexime DS Syrup', 'Is Lexime DS Syrup safe for the kidneys?', 'Yes, Lexime DS Syrup is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(8648, 'Lexime DS Syrup', 'Lexus Organics', 'Lexime DS Syrup', 'How long should I take Lexime DS Syrup?', 'Lexime DS Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8649, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'What if I give too much of Lexime Syrup by mistake?', 'An extra dose of Lexime Syrup is unlikely to do harm. However, if you think you have given too much of Lexime Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(8650, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'Are there any possible serious side effects of Lexime Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(8651, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'Can other medicines be given at the same time as Lexime Syrup?', 'Lexime Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexime Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(8652, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'Can I get my child vaccinated while on treatment with Lexime Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8653, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'Which lab tests may my child undergo while taking Lexime Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(8654, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8655, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(8656, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'Can Lexime Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lexime Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexime Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(8657, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'Can Lexime Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Lexime Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(8658, 'Lexime Syrup', 'Lee Pharma Ltd', 'Lexime Syrup', 'How long should I take Lexime Syrup?', 'Lexime Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(8659, 'Lexim-LB Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-LB Tablet', 'What if I miss my dose?', 'Take Lexim-LB Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8660, 'Lexim-LB Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-LB Tablet', 'How long does Lexim-LB Tablet take to work?', 'Usually, Lexim-LB Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(8661, 'Lexim-LB Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-LB Tablet', 'What if I don\'t get better after using Lexim-LB Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8662, 'Lexim-LB Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-LB Tablet', 'Can I stop taking Lexim-LB Tablet when I feel better?', 'No, do not stop taking Lexim-LB Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8663, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'Can I stop taking Lexim-OF Tablet when I feel better?', 'No, do not stop taking Lexim-OF Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8664, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'What if I miss my dose?', 'Take Lexim-OF Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8665, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'Can the use of Lexim-OF Tablet cause diarrhea?', 'Yes, the use of Lexim-OF Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8666, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'What if I don\'t get better after using Lexim-OF Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8667, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'Does the use of Lexim-OF Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lexim-OF Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(8668, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(8669, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'Can I drive while I am taking Lexim-OF Tablet?', 'No, taking Lexim-OF Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(8670, 'Lexim-OF Tablet', 'SAG Health Science Pvt Ltd', 'Lexim-OF Tablet', 'What are the instructions for storage and disposal of Lexim-OF Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8671, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'How much Leximol Syrup should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(8672, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'When will my child’s condition improve after taking Leximol Syrup?', 'Leximol Syrup usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(8673, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'My child vomited after taking Leximol Syrup. What should I do?', 'If your child vomits within 30 minutes of taking Leximol Syrup, repeat the dose again. If it has been more than 30 minutes after taking Leximol Syrup and your child vomits, no need to repeat the dose and wait until it is time for the next dose. If you are not sure, consult your doctor.'),
(8674, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'Can I give Leximol Syrup to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(8675, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'My child’s fever is persistent even after taking Leximol Syrup. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(8676, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'How much of Leximol Syrup is considered as an overdose?', 'You should only take four doses of Leximol Syrup in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(8677, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8678, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'In what conditions Leximol Syrup must be given with caution?', 'It is advised to use Leximol Syrup with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(8679, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'How should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(8680, 'Leximol Syrup', 'Lexicon Biotech India Ltd', 'Leximol Syrup', 'Can I give Leximol Syrup on a routine basis when my child is taking a vaccine?', 'It is always suggested not to give this medicine with vaccines that lead to fever. Rendering to the studies, doing so can reduce the efficacy of the vaccine.'),
(8681, 'Leximp 4mg Tablet', 'Lexiphar Healthcare', 'Leximp 4mg Tablet', 'What is Leximp 4mg Tablet used for?', 'Leximp 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(8682, 'Leximp 4mg Tablet', 'Lexiphar Healthcare', 'Leximp 4mg Tablet', 'How does Leximp 4mg Tablet work?', 'Leximp 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(8683, 'Leximp 4mg Tablet', 'Lexiphar Healthcare', 'Leximp 4mg Tablet', 'Is Leximp 4mg Tablet effective?', 'Leximp 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Leximp 4mg Tablet too early, the symptoms may return or worsen.'),
(8684, 'Leximp 4mg Tablet', 'Lexiphar Healthcare', 'Leximp 4mg Tablet', 'When will I feel better after taking Leximp 4mg Tablet?', 'Leximp 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Leximp 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Leximp 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(8685, 'Leximp 4mg Tablet', 'Lexiphar Healthcare', 'Leximp 4mg Tablet', 'What if I forget to take a dose of Leximp 4mg Tablet?', 'If you forget a dose of Leximp 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8686, 'Leximp 4mg Tablet', 'Lexiphar Healthcare', 'Leximp 4mg Tablet', 'Is Leximp 4mg Tablet safe?', 'Leximp 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8687, 'Leximp 8mg Tablet', 'Lexiphar Healthcare', 'Leximp 8mg Tablet', 'What is Leximp 8mg Tablet used for?', 'Leximp 8mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(8688, 'Leximp 8mg Tablet', 'Lexiphar Healthcare', 'Leximp 8mg Tablet', 'How does Leximp 8mg Tablet work?', 'Leximp 8mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(8689, 'Leximp 8mg Tablet', 'Lexiphar Healthcare', 'Leximp 8mg Tablet', 'Is Leximp 8mg Tablet effective?', 'Leximp 8mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Leximp 8mg Tablet too early, the symptoms may return or worsen.'),
(8690, 'Leximp 8mg Tablet', 'Lexiphar Healthcare', 'Leximp 8mg Tablet', 'When will I feel better after taking Leximp 8mg Tablet?', 'Leximp 8mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Leximp 8mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Leximp 8mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(8691, 'Leximp 8mg Tablet', 'Lexiphar Healthcare', 'Leximp 8mg Tablet', 'What if I forget to take a dose of Leximp 8mg Tablet?', 'If you forget a dose of Leximp 8mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(8692, 'Leximp 8mg Tablet', 'Lexiphar Healthcare', 'Leximp 8mg Tablet', 'Is Leximp 8mg Tablet safe?', 'Leximp 8mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(8693, 'Lexin 5mg Syrup', 'Senate Laboratories', 'Lexin 5mg Syrup', 'Is Lexin 5mg Syrup a steroid? What is it used for?', 'No, Lexin 5mg Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(8694, 'Lexin 5mg Syrup', 'Senate Laboratories', 'Lexin 5mg Syrup', 'Does Lexin 5mg Syrup make you tired and drowsy?', 'Yes, Lexin 5mg Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(8695, 'Lexin 5mg Syrup', 'Senate Laboratories', 'Lexin 5mg Syrup', 'How long does it take for Lexin 5mg Syrup to work?', 'Lexin 5mg Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(8696, 'Lexin 5mg Syrup', 'Senate Laboratories', 'Lexin 5mg Syrup', 'Can I take Lexin 5mg Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lexin 5mg Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(8697, 'Lexin 5mg Syrup', 'Senate Laboratories', 'Lexin 5mg Syrup', 'Is it safe to take Lexin 5mg Syrup for a long time?', 'Lexin 5mg Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lexin 5mg Syrup for only as long as you need it.'),
(8698, 'Lexin 5mg Syrup', 'Senate Laboratories', 'Lexin 5mg Syrup', 'For how long should I continue Lexin 5mg Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lexin 5mg Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Lexin 5mg Syrup'),
(8699, 'Lexin 5mg Tablet', 'Senate Laboratories', 'Lexin 5mg Tablet', 'Is Lexin 5mg Tablet a steroid? What is it used for?', 'No, Lexin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(8700, 'Lexin 5mg Tablet', 'Senate Laboratories', 'Lexin 5mg Tablet', 'Does Lexin 5mg Tablet make you tired and drowsy?', 'Yes, Lexin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(8701, 'Lexin 5mg Tablet', 'Senate Laboratories', 'Lexin 5mg Tablet', 'How long does it take for Lexin 5mg Tablet to work?', 'Lexin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(8702, 'Lexin 5mg Tablet', 'Senate Laboratories', 'Lexin 5mg Tablet', 'Can I take Lexin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lexin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(8703, 'Lexin 5mg Tablet', 'Senate Laboratories', 'Lexin 5mg Tablet', 'Is it safe to take Lexin 5mg Tablet for a long time?', 'Lexin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lexin 5mg Tablet for only as long as you need it.'),
(8704, 'Lexin 5mg Tablet', 'Senate Laboratories', 'Lexin 5mg Tablet', 'For how long should I continue Lexin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lexin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lexin 5mg Tablet'),
(8705, 'Lexinis 5mg Suspension', 'Avtix Health (India) Private Limited', 'Lexinis 5mg Suspension', 'Is Lexinis 5mg Suspension a steroid? What is it used for?', 'No, Lexinis 5mg Suspension is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(8706, 'Lexinis 5mg Suspension', 'Avtix Health (India) Private Limited', 'Lexinis 5mg Suspension', 'Does Lexinis 5mg Suspension make you tired and drowsy?', 'Yes, Lexinis 5mg Suspension can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(8707, 'Lexinis 5mg Suspension', 'Avtix Health (India) Private Limited', 'Lexinis 5mg Suspension', 'How long does it take for Lexinis 5mg Suspension to work?', 'Lexinis 5mg Suspension starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(8708, 'Lexinis 5mg Suspension', 'Avtix Health (India) Private Limited', 'Lexinis 5mg Suspension', 'Can I take Lexinis 5mg Suspension and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lexinis 5mg Suspension during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(8709, 'Lexinis 5mg Suspension', 'Avtix Health (India) Private Limited', 'Lexinis 5mg Suspension', 'Is it safe to take Lexinis 5mg Suspension for a long time?', 'Lexinis 5mg Suspension is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lexinis 5mg Suspension for only as long as you need it.'),
(8710, 'Lexinis 5mg Suspension', 'Avtix Health (India) Private Limited', 'Lexinis 5mg Suspension', 'For how long should I continue Lexinis 5mg Suspension?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lexinis 5mg Suspension for a longer time. Talk to your doctor if you are unsure about the duration of using Lexinis 5mg Suspension'),
(8711, 'Lexin-M Tablet', 'Senate Laboratories', 'Lexin-M Tablet', 'What is Lexin-M Tablet?', 'Lexin-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(8712, 'Lexin-M Tablet', 'Senate Laboratories', 'Lexin-M Tablet', 'Can the use of Lexin-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lexin-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(8713, 'Lexin-M Tablet', 'Senate Laboratories', 'Lexin-M Tablet', 'Can Lexin-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lexin-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(8714, 'Lexin-M Tablet', 'Senate Laboratories', 'Lexin-M Tablet', 'Can the use of Lexin-M Tablet cause dry mouth?', 'Yes, the use of Lexin-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(8715, 'Lexin-M Tablet', 'Senate Laboratories', 'Lexin-M Tablet', 'Can I drink alcohol while taking Lexin-M Tablet?', 'No, do not take alcohol while taking Lexin-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lexin-M Tablet.'),
(8716, 'Lexin-M Tablet', 'Senate Laboratories', 'Lexin-M Tablet', 'Will Lexin-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lexin-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(8717, 'Lexin-M Tablet', 'Senate Laboratories', 'Lexin-M Tablet', 'What are the instructions for storage and disposal of Lexin-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(8718, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'Can the use of Lexinor M Syrup cause dryness in mouth?', 'Yes, the use of Lexinor M Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(8719, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'Can I take Lexinor M Syrup while breastfeeding?', 'Lexinor M Syrup should be used with caution in nursing mothers as metronidazole passes into breast milk and could give the milk a bitter taste. Although it is not generally expected to be harmful, but you should always consult your doctor before taking Lexinor M Syrup.'),
(8720, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'Are there any specific conditions in which Lexinor M Syrup should not to be taken?', 'The use of Lexinor M Syrup should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(8721, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'What if I don\'t get better after using Lexinor M Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8722, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'Can I take alcohol while taking Lexinor M Syrup?', 'Alcohol should not be consumed while taking this medicine as it may lower the blood pressure and cause dizziness and lightheadedness.'),
(8723, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'Can I stop taking Lexinor M Syrup when I feel better?', 'No, do not stop taking Lexinor M Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(8724, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'What if I miss my dose?', 'Take Lexinor M Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8725, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'Can the use of Lexinor M Syrup cause metallic taste?', 'Yes, the use of Lexinor M Syrup can cause a temporary metallic taste. This metallic taste can be reduced by chewing sugar-free gum or mints, brushing teeth after the meals and by staying hydrated.'),
(8726, 'Lexinor M Syrup', 'Lexicon Biotech India Ltd', 'Lexinor M Syrup', 'Can the use of Lexinor M Syrup cause nausea and vomiting?', 'Yes, the use of Lexinor M Syrup can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(8727, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'What is Lexinor TZ 400mg/600mg Tablet?', 'Lexinor TZ 400mg/600mg Tablet is a combination of two medicines: Norfloxacin and Tinidazole. This medication is used to treat diarrhea and dysentry caused due to infection. They work by killing the harmful microorganisms that cause infection. Together they help to treat infection more effectively.'),
(8728, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'Can I stop taking Lexinor TZ 400mg/600mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lexinor TZ 400mg/600mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8729, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'Can Lexinor TZ 400mg/600mg Tablet increase the risk of tendon rupture?', 'Yes, Lexinor TZ 400mg/600mg Tablet is known to increase the risk of tendon rupture commonly in the achilles tendon. Tendon problems can happen in people of all ages who take Lexinor TZ 400mg/600mg Tablet. Inform your health care provider if you hear or feel a snap or pop, have severe pain, rapid or immediate bruising after an accident, and are unable to use the affected arm or leg. This may indicate that you have a tendon rupture.'),
(8730, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'Can the use of Lexinor TZ 400mg/600mg Tablet cause metallic taste?', 'Yes, Lexinor TZ 400mg/600mg Tablet can cause a temporary metallic taste. This metallic taste can be reduced by chewing sugar-free gum or mints, brushing teeth after the meals and by staying hydrated.'),
(8731, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'Are there any specific contraindications associated with the use of Lexinor TZ 400mg/600mg Tablet?', 'The use of Lexinor TZ 400mg/600mg Tablet is considered to be harmful for patients with known allergy to norfloxacin or tinidazole or any other excipient present in the medicine. It should preferably be avoided in patients with a history of tendinitis (inflammation of the tendons) or tendon rupture caused because of the use of ciprofloxacin or any other medicine which belongs to the quinolone group of antimicrobial agents. It is also avoided in patients with some neurological disorders.'),
(8732, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'Can I drink alcohol while taking Lexinor TZ 400mg/600mg Tablet?', 'No, avoid drinking alcohol while taking Lexinor TZ 400mg/600mg Tablet and for at least 3 days after the dosage is completed. Drinking alcohol while taking this medicine may cause an unpleasant reaction (Disulfuram like reaction) with symptoms such as stomach pain, nausea, vomiting, headache, flushing or redness of the face.'),
(8733, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'Can I take ORS solution with Lexinor TZ 400mg/600mg Tablet?', 'Yes, you can take ORS (oral rehydration salts) with Lexinor TZ 400mg/600mg Tablet. ORS is a special combination of dry salts that is mixed with clean drinking water. It can help restore the fluids lost due to diarrhea. ORS packets or solution can be availed from the nearest pharmacy, shop or from our website.'),
(8734, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lexinor TZ 400mg/600mg Tablet can lead to increased side effects. Lexinor TZ 400mg/600mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of diarrhea which is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8735, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'What is the recommended storage condition for Lexinor TZ 400mg/600mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8736, 'Lexinor TZ 400mg/600mg Tablet', 'Lexicon Biotech India Ltd', 'Lexinor TZ 400mg/600mg Tablet', 'What if I don\'t get better after using Lexinor TZ 400mg/600mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8737, 'Lexiof 200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof 200mg Tablet', 'Can the use of Lexiof 200mg Tablet cause diarrhea?', 'Yes, the use of Lexiof 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8738, 'Lexiof 200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof 200mg Tablet', 'Can I stop taking Lexiof 200mg Tablet when I feel better?', 'No, do not stop taking Lexiof 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8739, 'Lexiof 200mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof 200mg Tablet', 'Can the use of Lexiof 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lexiof 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lexiof 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(8740, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'What is Lexiof OZ 200mg/500mg Tablet?', 'Lexiof OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(8741, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'Is it safe to use Lexiof OZ 200mg/500mg Tablet?', 'Lexiof OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(8742, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lexiof OZ 200mg/500mg Tablet?', 'The use of Lexiof OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(8743, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lexiof OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8744, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lexiof OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8745, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'Can I stop taking Lexiof OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lexiof OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(8746, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lexiof OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8747, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lexiof OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lexiof OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(8748, 'Lexiof OZ 200mg/500mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexiof OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lexiof OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8749, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'What is Lexipan IV 40mg Injection used for?', 'Lexipan IV 40mg Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lexipan IV 40mg Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(8750, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'Can I take antacids along with Lexipan IV 40mg Injection?', 'Yes, you can take antacids along with Lexipan IV 40mg Injection. Take it 2 hours before or after you take Lexipan IV 40mg Injection.'),
(8751, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'How long does it take for Lexipan IV 40mg Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lexipan IV 40mg Injection to work properly so you may still have some symptoms during this time.'),
(8752, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'Does Lexipan IV 40mg Injection cause weight gain?', 'Although rare but long-term treatment with Lexipan IV 40mg Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(8753, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'Can I take alcohol with Lexipan IV 40mg Injection?', 'No, alcohol intake is not advised with Lexipan IV 40mg Injection. Alcohol itself does not affect the working of Lexipan IV 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(8754, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Lexipan IV 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(8755, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'Can I take Lexipan IV 40mg Injection for a long term?', 'Lexipan IV 40mg Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lexipan IV 40mg Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lexipan IV 40mg Injection as advised by your doctor and under their supervision.'),
(8756, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'Are painkillers safe to take along with Lexipan IV 40mg Injection?', 'Yes, it is safe to take painkillers along with Lexipan IV 40mg Injection. Lexipan IV 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Lexipan IV 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(8757, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'Is a single dose of Lexipan IV 40mg Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lexipan IV 40mg Injection you may get relief with the symptoms. Lexipan IV 40mg Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lexipan IV 40mg Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lexipan IV 40mg Injection regularly for 2 weeks as prescribed.'),
(8758, 'Lexipan IV 40mg Injection', 'Biolex Pharmaceutical Private Limited', 'Lexipan IV 40mg Injection', 'What are the long term side effects of Lexipan IV 40mg Injection?', 'If Lexipan IV 40mg Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(8759, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'What is Lexipara 100mg/325mg Tablet?', 'Lexipara 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(8760, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Is it safe to use Lexipara 100mg/325mg Tablet?', 'Lexipara 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(8761, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Can I stop taking Lexipara 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lexipara 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(8762, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Can the use of Lexipara 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexipara 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(8763, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Can the use of Lexipara 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lexipara 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(8764, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lexipara 100mg/325mg Tablet?', 'The use of Lexipara 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8765, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Can Lexipara 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lexipara 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lexipara 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(8766, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Is Lexipara 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lexipara 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(8767, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Can the use of Lexipara 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexipara 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(8768, 'Lexipara 100mg/325mg Tablet', 'Lexiphar Healthcare', 'Lexipara 100mg/325mg Tablet', 'Is it safe to take a higher dose of Lexipara 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lexipara 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(8769, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'What is Lexipara SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(8770, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Is it safe to take Lexipara SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(8771, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Can I stop taking Lexipara SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(8772, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Can Lexipara SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(8773, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Can Lexipara SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(8774, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Lexipara SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(8775, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Can I take Lexipara SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(8776, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Can the use of Lexipara SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(8777, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Lexipara SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8778, 'Lexipara SP 100mg/325mg/15mg Tablet', 'Lexiphar Healthcare', 'Lexipara SP 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Lexipara SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8779, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'Is Lexipod 100mg Tablet safe to use?', 'Lexipod 100mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(8780, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'Can the use of Lexipod 100mg Tablet cause diarrhea?', 'Yes, the use of Lexipod 100mg Tablet can cause diarrhea. Lexipod 100mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8781, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'Is Lexipod 100mg Tablet an antibiotic?', 'Yes, Lexipod 100mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(8782, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'Can Lexipod 100mg Tablet cause constipation?', 'Yes, Lexipod 100mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(8783, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'Can I stop taking Lexipod 100mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lexipod 100mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(8784, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'How long does Lexipod 100mg Tablet take to work?', 'Usually, Lexipod 100mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(8785, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'What if I do not get better after using Lexipod 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8786, 'Lexipod 100mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 100mg Tablet', 'Can Lexipod 100mg Tablet treat UTI?', 'Yes, Lexipod 100mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lexipod 100mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(8787, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'Is Lexipod 200mg Tablet safe to use?', 'Lexipod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(8788, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'Can the use of Lexipod 200mg Tablet cause diarrhea?', 'Yes, the use of Lexipod 200mg Tablet can cause diarrhea. Lexipod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(8789, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'Is Lexipod 200mg Tablet an antibiotic?', 'Yes, Lexipod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(8790, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'Can Lexipod 200mg Tablet cause constipation?', 'Yes, Lexipod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(8791, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'Can I stop taking Lexipod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lexipod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8792, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'How long does Lexipod 200mg Tablet take to work?', 'Usually, Lexipod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(8793, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'What if I do not get better after using Lexipod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(8794, 'Lexipod 200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 200mg Tablet', 'Can Lexipod 200mg Tablet treat UTI?', 'Yes, Lexipod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lexipod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(8795, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'What if I give too much of Lexipod 25mg Oral Drops by mistake?', 'An extra dose of Lexipod 25mg Oral Drops is unlikely to do harm. However, if you think you have given too much of Lexipod 25mg Oral Drops to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(8796, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'Are there any possible serious side effects of Lexipod 25mg Oral Drops?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(8797, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'What other medicines should not be given along with Lexipod 25mg Oral Drops?', 'Avoid giving Lexipod 25mg Oral Drops along with medicines like Aminoglycosides such as amikacin, gentamicin, streptomycin, anticoagulants (blood-thinners) such as warfarin, PPIs like Pentaprozole, and H2 blockers such as Famotidine. Before you start giving Lexipod 25mg Oral Drops to your child, let your child’s doctor know if your child is taking any of the above-mentioned medicines.'),
(8798, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'Can I vaccinate my child while he is taking Lexipod 25mg Oral Drops?', 'It is advised to inform the doctor if your child is taking Lexipod 25mg Oral Drops at the time of vaccinations like BCG, cholera, and typhoid as Lexipod 25mg Oral Drops can neutralize the effect of these vaccines.'),
(8799, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'Which lab tests may my child undergo while taking Lexipod 25mg Oral Drops on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(8800, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8801, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(8802, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(8803, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'Can Lexipod 25mg Oral Drops impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lexipod 25mg Oral Drops may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexipod 25mg Oral Drops, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(8804, 'Lexipod 25mg Oral Drops', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 25mg Oral Drops', 'Can Lexipod 25mg Oral Drops lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lexipod 25mg Oral Drops can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(8805, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'What if I give too much of Lexipod 50mg Dry Syrup by mistake?', 'An extra dose of Lexipod 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lexipod 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(8806, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'Are there any possible serious side effects of Lexipod 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(8807, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'Can other medicines be given at the same time as Lexipod 50mg Dry Syrup?', 'Lexipod 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexipod 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(8808, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lexipod 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8809, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Lexipod 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(8810, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8811, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(8812, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(8813, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'Can Lexipod 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lexipod 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexipod 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(8814, 'Lexipod 50mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Dry Syrup', 'Can Lexipod 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lexipod 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(8815, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'What if I give too much of Lexipod 50mg Tablet by mistake?', 'An extra dose of Lexipod 50mg Tablet is unlikely to do harm. However, if you think you have given too much of Lexipod 50mg Tablet to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(8816, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'Are there any possible serious side effects of Lexipod 50mg Tablet?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(8817, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'Can other medicines be given at the same time as Lexipod 50mg Tablet?', 'Lexipod 50mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexipod 50mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(8818, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'Can I get my child vaccinated while on treatment with Lexipod 50mg Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8819, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'Which lab tests may my child undergo while taking Lexipod 50mg Tablet on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(8820, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8821, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(8822, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(8823, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'Can Lexipod 50mg Tablet impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lexipod 50mg Tablet may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexipod 50mg Tablet, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(8824, 'Lexipod 50mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod 50mg Tablet', 'Can Lexipod 50mg Tablet lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lexipod 50mg Tablet can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(8825, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'Can the use of Lexipod CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lexipod CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8826, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'How long does Lexipod CV 200mg/125mg Tablet takes to work?', 'Usually, Lexipod CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(8827, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'What if I don\'t get better after using Lexipod CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8828, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'Can I stop taking Lexipod CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Lexipod CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8829, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'What is Lexipod CV 200mg/125mg Tablet?', 'Lexipod CV 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(8830, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'Can the use of Lexipod CV 200mg/125mg Tablet cause any serious side effects?', 'Lexipod CV 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(8831, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'Can I stop taking Lexipod CV 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lexipod CV 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8832, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'Can Lexipod CV 200mg/125mg Tablet cause allergic reaction?', 'Yes, Lexipod CV 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(8833, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'Are there any specific contraindications associated with the use of Lexipod CV 200mg/125mg Tablet?', 'The use of Lexipod CV 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Lexipod CV 200mg/125mg Tablet.'),
(8834, 'Lexipod CV 200mg/125mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV 200mg/125mg Tablet', 'Can I take oral contraceptive pills while taking Lexipod CV 200mg/125mg Tablet?', 'No, Lexipod CV 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(8835, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'Can the use of Lexipod CV Dry Syrup cause diarrhea?', 'Yes, the use of Lexipod CV Dry Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8836, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'How long does Lexipod CV Dry Syrup takes to work?', 'Usually, Lexipod CV Dry Syrup starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(8837, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'What if I don\'t get better after using Lexipod CV Dry Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8838, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'Can I stop taking Lexipod CV Dry Syrup when I feel better?', 'No, do not stop taking Lexipod CV Dry Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8839, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'What is Lexipod CV Dry Syrup?', 'Lexipod CV Dry Syrup is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(8840, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'Can the use of Lexipod CV Dry Syrup cause any serious side effects?', 'Lexipod CV Dry Syrup may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(8841, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'Can I stop taking Lexipod CV Dry Syrup when my symptoms are relieved?', 'No, do not stop taking Lexipod CV Dry Syrup and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8842, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'Can Lexipod CV Dry Syrup cause allergic reaction?', 'Yes, Lexipod CV Dry Syrup can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(8843, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'Are there any specific contraindications associated with the use of Lexipod CV Dry Syrup?', 'The use of Lexipod CV Dry Syrup is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Lexipod CV Dry Syrup.'),
(8844, 'Lexipod CV Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod CV Dry Syrup', 'Can I take oral contraceptive pills while taking Lexipod CV Dry Syrup?', 'No, Lexipod CV Dry Syrup can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(8845, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'What if I give too much of Lexipod DS 100mg Dry Syrup by mistake?', 'An extra dose of Lexipod DS 100mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lexipod DS 100mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(8846, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'Are there any possible serious side effects of Lexipod DS 100mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(8847, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'Can other medicines be given at the same time as Lexipod DS 100mg Dry Syrup?', 'Lexipod DS 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexipod DS 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(8848, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lexipod DS 100mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(8849, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'Which lab tests may my child undergo while taking Lexipod DS 100mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(8850, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(8851, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(8852, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(8853, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'Can Lexipod DS 100mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lexipod DS 100mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexipod DS 100mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(8854, 'Lexipod DS 100mg Dry Syrup', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod DS 100mg Dry Syrup', 'Can Lexipod DS 100mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lexipod DS 100mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(8855, 'Lexipod O 200mg/200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod O 200mg/200mg Tablet', 'Can Lexipod O 200mg/200mg Tablet be used to treat viral infections?', 'No, Lexipod O 200mg/200mg Tablet is only indicated to treat bacterial infections. It does not treat viral infections (such as common cold and flu).'),
(8856, 'Lexipod O 200mg/200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod O 200mg/200mg Tablet', 'How to take Lexipod O 200mg/200mg Tablet?', 'Take this medication orally with or without food as directed by your doctor. This medicine is usually taken once a day. Take the medicine for the prescribed period, even if symptoms disappear after a few days.'),
(8857, 'Lexipod O 200mg/200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod O 200mg/200mg Tablet', 'Can the use of Lexipod O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lexipod O 200mg/200mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(8858, 'Lexipod O 200mg/200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod O 200mg/200mg Tablet', 'What are the instructions for the storage and disposal of Lexipod O 200mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(8859, 'Lexipod O 200mg/200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod O 200mg/200mg Tablet', 'Can I stop taking Lexipod O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lexipod O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8860, 'Lexipod O 200mg/200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lexipod O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8861, 'Lexipod O 200mg/200mg Tablet', 'Laxter Pharmaceutical Pvt Ltd', 'Lexipod O 200mg/200mg Tablet', 'What if I don\'t get better after using Lexipod O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8862, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'How long does it take for Lexipram 10mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexipram 10mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8863, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'What are the most common side effects of Lexipram 10mg Tablet?', 'The most common side effects of Lexipram 10mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexipram 10mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8864, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'What is Lexipram 10mg Tablet used for?', 'Lexipram 10mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8865, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'Is Lexipram 10mg Tablet dangerous?', 'The use of Lexipram 10mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexipram 10mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexipram 10mg Tablet.'),
(8866, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'Is Lexipram 10mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexipram 10mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8867, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'Can I stop taking Lexipram 10mg Tablet on my own?', 'Lexipram 10mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8868, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8869, 'Lexipram 10mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 10mg Tablet', 'What if I accidentally take more than the recommended dose of Lexipram 10mg Tablet?', 'If you accidentally take more than the recommended dose of Lexipram 10mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8870, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'How long does it take for Lexipram 20mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lexipram 20mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(8871, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'What are the most common side effects of Lexipram 20mg Tablet?', 'The most common side effects of Lexipram 20mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lexipram 20mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(8872, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'What is Lexipram 20mg Tablet used for?', 'Lexipram 20mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(8873, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'Is Lexipram 20mg Tablet dangerous?', 'The use of Lexipram 20mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lexipram 20mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lexipram 20mg Tablet.'),
(8874, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'Is Lexipram 20mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lexipram 20mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(8875, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'Can I stop taking Lexipram 20mg Tablet on my own?', 'Lexipram 20mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(8876, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(8877, 'Lexipram 20mg Tablet', 'Arches Pharmaceuticals', 'Lexipram 20mg Tablet', 'What if I accidentally take more than the recommended dose of Lexipram 20mg Tablet?', 'If you accidentally take more than the recommended dose of Lexipram 20mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(8878, 'Lexipram Forte Tablet', 'Arches Pharmaceuticals', 'Lexipram Forte Tablet', 'What is Lexipram Forte Tablet?', 'Lexipram Forte Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(8879, 'Lexipram Forte Tablet', 'Arches Pharmaceuticals', 'Lexipram Forte Tablet', 'Can the Lexipram Forte Tablet cause sleepiness or drowsiness?', 'Lexipram Forte Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(8880, 'Lexipram Forte Tablet', 'Arches Pharmaceuticals', 'Lexipram Forte Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexipram Forte Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8881, 'Lexipram Forte Tablet', 'Arches Pharmaceuticals', 'Lexipram Forte Tablet', 'Any special instruction regarding storage and disposal of Lexipram Forte Tablet?', 'Keep Lexipram Forte Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(8882, 'Lexipram Forte Tablet', 'Arches Pharmaceuticals', 'Lexipram Forte Tablet', 'Can I stop taking Lexipram Forte Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexipram Forte Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(8883, 'Lexipram Plus Tablet', 'Arches Pharmaceuticals', 'Lexipram Plus Tablet', 'What is Lexipram Plus Tablet?', 'Lexipram Plus Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(8884, 'Lexipram Plus Tablet', 'Arches Pharmaceuticals', 'Lexipram Plus Tablet', 'Can the Lexipram Plus Tablet cause sleepiness or drowsiness?', 'Lexipram Plus Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(8885, 'Lexipram Plus Tablet', 'Arches Pharmaceuticals', 'Lexipram Plus Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexipram Plus Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8886, 'Lexipram Plus Tablet', 'Arches Pharmaceuticals', 'Lexipram Plus Tablet', 'Any special instruction regarding storage and disposal of Lexipram Plus Tablet?', 'Keep Lexipram Plus Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(8887, 'Lexipram Plus Tablet', 'Arches Pharmaceuticals', 'Lexipram Plus Tablet', 'Can I stop taking Lexipram Plus Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexipram Plus Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(8888, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'What is Lexipre M 750mcg/75mg Capsule?', 'Lexipre M 750mcg/75mg Capsule is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(8889, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'Can I stop taking Lexipre M 750mcg/75mg Capsule when my pain is relieved?', 'No, you should not stop taking Lexipre M 750mcg/75mg Capsule even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lexipre M 750mcg/75mg Capsule, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Lexipre M 750mcg/75mg Capsule before you stop the medication completely.'),
(8890, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'How to manage weight gain associated with the use of Lexipre M 750mcg/75mg Capsule?', 'Lexipre M 750mcg/75mg Capsule can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(8891, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'Can the use of Lexipre M 750mcg/75mg Capsule cause sleepiness or drowsiness?', 'Yes, Lexipre M 750mcg/75mg Capsule may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(8892, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'Are there any serious side effects associated with the use of Lexipre M 750mcg/75mg Capsule?', 'Serious side effects caused because of the use of Lexipre M 750mcg/75mg Capsule are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Lexipre M 750mcg/75mg Capsule and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(8893, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'How long will the Lexipre M 750mcg/75mg Capsule take to act?', 'An initial benefit with Lexipre M 750mcg/75mg Capsule may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(8894, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'What if I forget to take Lexipre M 750mcg/75mg Capsule?', 'If you forget to take the scheduled dose of Lexipre M 750mcg/75mg Capsule and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(8895, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'Will a higher than the recommended dose of Lexipre M 750mcg/75mg Capsule be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8896, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'Can I drink alcohol while taking Lexipre M 750mcg/75mg Capsule?', 'No, do not drink alcohol while taking Lexipre M 750mcg/75mg Capsule. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lexipre M 750mcg/75mg Capsule.'),
(8897, 'Lexipre M 750mcg/75mg Capsule', 'Lexiphar Healthcare', 'Lexipre M 750mcg/75mg Capsule', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Lexipre M 750mcg/75mg Capsule. However, you must consult your doctor if the advised dosage of Lexipre M 750mcg/75mg Capsule does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(8898, 'Lexipred 500 Injection', 'Medlex Biotechnics Private Limited', 'Lexipred 500 Injection', 'How does Lexipred 500 Injection work?', 'Lexipred 500 Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(8899, 'Lexipred 500 Injection', 'Medlex Biotechnics Private Limited', 'Lexipred 500 Injection', 'Is Lexipred 500 Injection a steroid?', 'Yes, Lexipred 500 Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Lexipred 500 Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(8900, 'Lexipred 500 Injection', 'Medlex Biotechnics Private Limited', 'Lexipred 500 Injection', 'What is Lexipred 500 Injection used for?', 'Lexipred 500 Injection has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(8901, 'Lexipred 500 Injection', 'Medlex Biotechnics Private Limited', 'Lexipred 500 Injection', 'How is Lexipred 500 Injection administered?', 'Lexipred 500 Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). The doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Lexipred 500 Injection.'),
(8902, 'Lexipred 500 Injection', 'Medlex Biotechnics Private Limited', 'Lexipred 500 Injection', 'Is Lexipred 500 Injection better than Prednisone?', 'Clinical studies have shown that Lexipred 500 Injection is more strong and efficient than Prednisone. It stays in our body for a longer duration and is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(8903, 'Lexipred 500 Injection', 'Medlex Biotechnics Private Limited', 'Lexipred 500 Injection', 'Does Lexipred 500 Injection cause weight gain?', 'Lexipred 500 Injection can cause weight gain especially when high doses taken for a long time or repeated short courses are taken. Please consult your doctor if you experience weight gain after taking Lexipred 500 Injection.'),
(8904, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. What is Lexirab D 30mg/20mg Capsule?', 'Lexirab D 30mg/20mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(8905, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. What are the contraindications of Lexirab D 30mg/20mg Capsule?', 'The use of Lexirab D 30mg/20mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(8906, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. Can the use of Lexirab D 30mg/20mg Capsule cause dry mouth?', 'Yes, the use of Lexirab D 30mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(8907, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. Can the use of Lexirab D 30mg/20mg Capsule cause diarrhea?', 'Yes, the use of Lexirab D 30mg/20mg Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(8908, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. What is the recommended storage condition for Lexirab D 30mg/20mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8909, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. Is it safe to use Lexirab D 30mg/20mg Capsule?', 'Yes, Lexirab D 30mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(8910, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q.  What is the best time to take Lexirab D 30mg/20mg Capsule?', 'It is best to take Lexirab D 30mg/20mg Capsule before the first meal of the day or on an empty stomach.'),
(8911, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. Can the use of Lexirab D 30mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lexirab D 30mg/20mg Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(8912, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. What is Lexirab D 30mg/20mg Capsule?', 'Lexirab D 30mg/20mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(8913, 'Lexirab D 30mg/20mg Capsule', 'Lexicon Biotech India Ltd', 'Lexirab D 30mg/20mg Capsule', 'Q. What are the contraindications of Lexirab D 30mg/20mg Capsule?', 'The use of Lexirab D 30mg/20mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(8914, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. Is Lexith 150mg Tablet safe?', 'Lexith 150mg Tablet is safe if taken for prescribed duration in prescribed doses as advised by your doctor.'),
(8915, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. Does Lexith 150mg Tablet treat urinary tract infections (UTI)?', 'Lexith 150mg Tablet can be used to treat lower urinary tract infections i.e. infections of the urinary bladder and urethra. However, please consult a doctor before taking any antibiotics for your condition as it is important to diagnose the infection before starting antibiotics.'),
(8916, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. Can the use of Lexith 150mg Tablet cause diarrhea?', 'Yes, the use of Lexith 150mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8917, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. How long does Lexith 150mg Tablet takes to work?', 'Usually, Lexith 150mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(8918, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. What if I don\'t get better after using Lexith 150mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(8919, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. Can I stop taking Lexith 150mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lexith 150mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8920, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. Can the use of Lexith 150mg Tablet cause infertility?', 'There is no firm evidence to suggest that the use of Lexith 150mg Tablet will cause infertility in males or females.'),
(8921, 'Lexith 150mg Tablet', 'Biocin Healthcare', 'Lexith 150mg Tablet', 'Q. Is Lexith 150mg Tablet an antibiotic?', 'Lexith 150mg Tablet is an antibiotic and belongs to the group of antibiotics known as macrolides. Lexith 150mg Tablet prevents bacteria from growing, by interfering with their protein synthesis.'),
(8922, 'Lexivom 20mg/10mg/5mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexivom 20mg/10mg/5mg Tablet', 'What are the instructions for storage and disposal of Lexivom 20mg/10mg/5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it at as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8923, 'Lexivom 20mg/10mg/5mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexivom 20mg/10mg/5mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lexivom 20mg/10mg/5mg Tablet can cause increased side effects. If you are experiencing increased severity of nausea or vomiting, which is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8924, 'Lexivom 20mg/10mg/5mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexivom 20mg/10mg/5mg Tablet', 'Can the use of Lexivom 20mg/10mg/5mg Tablet cause drowsiness or sleepiness?', 'Yes, one of the common side effects of Lexivom 20mg/10mg/5mg Tablet is drowsiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention. Do not drink alcohol or take any medicines that may depress the central nervous system like cough and cold medicines, certain pain medicines, and medicines that help you sleep, while you are taking Lexivom 20mg/10mg/5mg Tablet. Severe drowsiness can happen or it can become worse and cause falls or accidents.'),
(8925, 'Lexivom 20mg/10mg/5mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexivom 20mg/10mg/5mg Tablet', 'Can the use of Lexivom 20mg/10mg/5mg Tablet cause dry mouth?', 'Yes, the use of Lexivom 20mg/10mg/5mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(8926, 'Lexivom 20mg/10mg/5mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexivom 20mg/10mg/5mg Tablet', 'Can a pregnant woman take Lexivom 20mg/10mg/5mg Tablet?', 'Yes, it is safe to take Lexivom 20mg/10mg/5mg Tablet in pregnant women. In fact, this medicine is used to treat nausea and vomiting in pregnant women. It is mainly recommended to those women whose symptoms have not improved after changing their diet or using other non-medicine treatments.'),
(8927, 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Med Lex Pharmaceutical', 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Lexivom Forte 20mg/20mg/2.5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it at as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8928, 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Med Lex Pharmaceutical', 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lexivom Forte 20mg/20mg/2.5mg Tablet can cause increased side effects. If you are experiencing increased severity of nausea or vomiting, which is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(8929, 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Med Lex Pharmaceutical', 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Can the use of Lexivom Forte 20mg/20mg/2.5mg Tablet cause drowsiness or sleepiness?', 'Yes, one of the common side effects of Lexivom Forte 20mg/20mg/2.5mg Tablet is drowsiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention. Do not drink alcohol or take any medicines that may depress the central nervous system like cough and cold medicines, certain pain medicines, and medicines that help you sleep, while you are taking Lexivom Forte 20mg/20mg/2.5mg Tablet. Severe drowsiness can happen or it can become worse and cause falls or accidents.'),
(8930, 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Med Lex Pharmaceutical', 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Can the use of Lexivom Forte 20mg/20mg/2.5mg Tablet cause dry mouth?', 'Yes, the use of Lexivom Forte 20mg/20mg/2.5mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(8931, 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Med Lex Pharmaceutical', 'Lexivom Forte 20mg/20mg/2.5mg Tablet', 'Can a pregnant woman take Lexivom Forte 20mg/20mg/2.5mg Tablet?', 'Yes, it is safe to take Lexivom Forte 20mg/20mg/2.5mg Tablet in pregnant women. In fact, this medicine is used to treat nausea and vomiting in pregnant women. It is mainly recommended to those women whose symptoms have not improved after changing their diet or using other non-medicine treatments.'),
(8932, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'What is the dosage of Lexmet 2 Tablet?', 'The recommended starting dose of Lexmet 2 Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(8933, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'Does Lexmet 2 Tablet make you sleepy?', 'Lexmet 2 Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(8934, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'Is Lexmet 2 Tablet safe for kidneys?', 'Lexmet 2 Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Lexmet 2 Tablet is principally eliminated by the kidneys.'),
(8935, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'Does Lexmet 2 Tablet cause memory loss?', 'No, it is not known that Lexmet 2 Tablet causes memory loss. However, the use of Lexmet 2 Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(8936, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'Who should not take Lexmet 2 Tablet?', 'Lexmet 2 Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Lexmet 2 Tablet.'),
(8937, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'How long does it take for Lexmet 2 Tablet to start working?', 'Lexmet 2 Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(8938, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'How long do I need to take Lexmet 2 Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Lexmet 2 Tablet only controls the sugar levels but does not cure it. Do not stop taking Lexmet 2 Tablet without talking to your doctor. If you stop taking Lexmet 2 Tablet suddenly your diabetes may get worse.'),
(8939, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'What can happen if I take more than the recommended dose of Lexmet 2 Tablet?', 'Lexmet 2 Tablet should be taken strictly as advised by the doctor. Overdose of Lexmet 2 Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(8940, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'Can you take Lexmet 2 Tablet on an empty stomach?', 'No. Taking Lexmet 2 Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Lexmet 2 Tablet.'),
(8941, 'Lexmet 2 Tablet', 'Accilex Diacardo', 'Lexmet 2 Tablet', 'Can Lexmet 2 Tablet cause weight gain?', 'Yes, Lexmet 2 Tablet can cause weight gain. Lexmet 2 Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(8942, 'Lexmet G2 Forte Tablet SR', 'Accilex Diacardo', 'Lexmet G2 Forte Tablet SR', 'What are the recommended storage conditions for Lexmet G2 Forte Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8943, 'Lexmet G2 Forte Tablet SR', 'Accilex Diacardo', 'Lexmet G2 Forte Tablet SR', 'Can the use of Lexmet G2 Forte Tablet SR lead to lactic acidosis?', 'Yes, the use of Lexmet G2 Forte Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lexmet G2 Forte Tablet SR and consult your doctor immediately.'),
(8944, 'Lexmet G2 Forte Tablet SR', 'Accilex Diacardo', 'Lexmet G2 Forte Tablet SR', 'What is Lexmet G2 Forte Tablet SR?', 'Lexmet G2 Forte Tablet SR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(8945, 'Lexmet G2 Forte Tablet SR', 'Accilex Diacardo', 'Lexmet G2 Forte Tablet SR', 'What are the possible side effects of Lexmet G2 Forte Tablet SR?', 'The use of Lexmet G2 Forte Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(8946, 'Lexmet G2 Forte Tablet SR', 'Accilex Diacardo', 'Lexmet G2 Forte Tablet SR', 'Can the use of Lexmet G2 Forte Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Lexmet G2 Forte Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(8947, 'Lexmet G2 Forte Tablet SR', 'Accilex Diacardo', 'Lexmet G2 Forte Tablet SR', 'Can the use of Lexmet G2 Forte Tablet SR cause hypoglycemia?', 'Yes, the use of Lexmet G2 Forte Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(8948, 'Lexmet G2 Forte Tablet SR', 'Accilex Diacardo', 'Lexmet G2 Forte Tablet SR', 'Is it safe to take alcohol while I am also taking Lexmet G2 Forte Tablet SR?', 'No, it is not safe to take Lexmet G2 Forte Tablet SR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(8949, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'What does Lexmet SR 1000 Tablet do exactly?', 'People with type 2 diabetes are not able to respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Lexmet SR 1000 Tablet acts in several ways to reduce the increased levels of sugar in blood. Lexmet SR 1000 Tablet decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(8950, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'Does Lexmet SR 1000 Tablet cause weight loss?', 'Yes, Lexmet SR 1000 Tablet has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(8951, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'What are the benefits of taking Lexmet SR 1000 Tablet?', 'Lexmet SR 1000 Tablet is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Lexmet SR 1000 Tablet when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(8952, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'Can Lexmet SR 1000 Tablet make you sleepy?', 'Lexmet SR 1000 Tablet usually does not cause sleepiness and is well tolerated. However, the use of Lexmet SR 1000 Tablet may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Lexmet SR 1000 Tablet.'),
(8953, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'How to take Lexmet SR 1000 Tablet?', 'Take Lexmet SR 1000 Tablet with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Lexmet SR 1000 Tablet with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(8954, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'What does Lexmet SR 1000 Tablet do exactly?', 'People with type 2 diabetes are not able to make enough insulin or respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Lexmet SR 1000 Tablet acts in several ways to reduce the increased levels of sugar in blood. Lexmet SR 1000 Tablet decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(8955, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'Does Lexmet SR 1000 Tablet cause weight loss?', 'Yes, Lexmet SR 1000 Tablet has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(8956, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'What are the benefits of taking Lexmet SR 1000 Tablet?', 'Lexmet SR 1000 Tablet is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Lexmet SR 1000 Tablet when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(8957, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'Can Lexmet SR 1000 Tablet make you sleepy?', 'Lexmet SR 1000 Tablet usually does not cause sleepiness and is well tolerated. However, the use of Lexmet SR 1000 Tablet may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Lexmet SR 1000 Tablet.'),
(8958, 'Lexmet SR 1000 Tablet', 'Accilex Diacardo', 'Lexmet SR 1000 Tablet', 'How to take Lexmet SR 1000 Tablet?', 'Take Lexmet SR 1000 Tablet with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Lexmet SR 1000 Tablet with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(8959, 'Lexmet-G1 Tablet SR', 'Accilex Diacardo', 'Lexmet-G1 Tablet SR', 'What are the recommended storage conditions for Lexmet-G1 Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8960, 'Lexmet-G1 Tablet SR', 'Accilex Diacardo', 'Lexmet-G1 Tablet SR', 'Can the use of Lexmet-G1 Tablet SR lead to lactic acidosis?', 'Yes, the use of Lexmet-G1 Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lexmet-G1 Tablet SR and consult your doctor immediately.'),
(8961, 'Lexmet-G1 Tablet SR', 'Accilex Diacardo', 'Lexmet-G1 Tablet SR', 'What is Lexmet-G1 Tablet SR?', 'Lexmet-G1 Tablet SR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(8962, 'Lexmet-G1 Tablet SR', 'Accilex Diacardo', 'Lexmet-G1 Tablet SR', 'What are the possible side effects of Lexmet-G1 Tablet SR?', 'The use of Lexmet-G1 Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(8963, 'Lexmet-G1 Tablet SR', 'Accilex Diacardo', 'Lexmet-G1 Tablet SR', 'Can the use of Lexmet-G1 Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Lexmet-G1 Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(8964, 'Lexmet-G1 Tablet SR', 'Accilex Diacardo', 'Lexmet-G1 Tablet SR', 'Can the use of Lexmet-G1 Tablet SR cause hypoglycemia?', 'Yes, the use of Lexmet-G1 Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(8965, 'Lexmet-G1 Tablet SR', 'Accilex Diacardo', 'Lexmet-G1 Tablet SR', 'Is it safe to take alcohol while I am also taking Lexmet-G1 Tablet SR?', 'No, it is not safe to take Lexmet-G1 Tablet SR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(8966, 'Lexmet-G2 Tablet PR', 'Accilex Diacardo', 'Lexmet-G2 Tablet PR', 'What are the recommended storage conditions for Lexmet-G2 Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8967, 'Lexmet-G2 Tablet PR', 'Accilex Diacardo', 'Lexmet-G2 Tablet PR', 'Can the use of Lexmet-G2 Tablet PR lead to lactic acidosis?', 'Yes, the use of Lexmet-G2 Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lexmet-G2 Tablet PR and consult your doctor immediately.'),
(8968, 'Lexmet-G2 Tablet PR', 'Accilex Diacardo', 'Lexmet-G2 Tablet PR', 'What is Lexmet-G2 Tablet PR?', 'Lexmet-G2 Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(8969, 'Lexmet-G2 Tablet PR', 'Accilex Diacardo', 'Lexmet-G2 Tablet PR', 'What are the possible side effects of Lexmet-G2 Tablet PR?', 'The use of Lexmet-G2 Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(8970, 'Lexmet-G2 Tablet PR', 'Accilex Diacardo', 'Lexmet-G2 Tablet PR', 'Can the use of Lexmet-G2 Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Lexmet-G2 Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(8971, 'Lexmet-G2 Tablet PR', 'Accilex Diacardo', 'Lexmet-G2 Tablet PR', 'Can the use of Lexmet-G2 Tablet PR cause hypoglycemia?', 'Yes, the use of Lexmet-G2 Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(8972, 'Lexmet-G2 Tablet PR', 'Accilex Diacardo', 'Lexmet-G2 Tablet PR', 'Is it safe to take alcohol while I am also taking Lexmet-G2 Tablet PR?', 'No, it is not safe to take Lexmet-G2 Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(8973, 'Lexmet-GP 1 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP 1 Tablet SR', 'Can I drink alcohol while taking Lexmet-GP 1 Tablet SR?', 'No, it is not safe to drink alcohol while using Lexmet-GP 1 Tablet SR. Drinking alcohol may lower your blood sugar levels (hypoglycemia). Also, it can increase the chances of lactic acidosis.'),
(8974, 'Lexmet-GP 1 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP 1 Tablet SR', 'What should I inform the doctor before taking Lexmet-GP 1 Tablet SR?', 'Before taking Lexmet-GP 1 Tablet SR inform your doctor if you have congestive heart failure, kidney problems, liver problems, swelling of the back of the eye. Inform the doctor if you are pregnant, breastfeeding or a premenopausal woman. Let the doctor know if you are taking any prescription and non-prescription medicines, vitamins, and herbal supplements.'),
(8975, 'Lexmet-GP 1 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP 1 Tablet SR', 'Can the use of Lexmet-GP 1 Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Lexmet-GP 1 Tablet SR can cause vitamin B12 deficiency as it contains metformin in it. On long-term use, it interferes with absorption of vitamin B12 in the stomach.'),
(8976, 'Lexmet-GP 1 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP 1 Tablet SR', 'Can the use of Lexmet-GP 1 Tablet SR cause hypoglycemia?', 'Yes, the use of Lexmet-GP 1 Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your meal, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always carry some sugary item like a candy or chocolate with you.'),
(8977, 'Lexmet-GP 1 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP 1 Tablet SR', 'What are the instructions for the storage and disposal of Lexmet-GP 1 Tablet SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8978, 'Lexmet-GP2 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP2 Tablet SR', 'Can I drink alcohol while taking Lexmet-GP2 Tablet SR?', 'No, it is not safe to drink alcohol while using Lexmet-GP2 Tablet SR. Drinking alcohol may lower your blood sugar levels (hypoglycemia). Also, it can increase the chances of lactic acidosis.'),
(8979, 'Lexmet-GP2 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP2 Tablet SR', 'What should I inform the doctor before taking Lexmet-GP2 Tablet SR?', 'Before taking Lexmet-GP2 Tablet SR inform your doctor if you have congestive heart failure, kidney problems, liver problems, swelling of the back of the eye. Inform the doctor if you are pregnant, breastfeeding or a premenopausal woman. Let the doctor know if you are taking any prescription and non-prescription medicines, vitamins, and herbal supplements.'),
(8980, 'Lexmet-GP2 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP2 Tablet SR', 'Can the use of Lexmet-GP2 Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Lexmet-GP2 Tablet SR can cause vitamin B12 deficiency as it contains metformin in it. On long-term use, it interferes with absorption of vitamin B12 in the stomach.'),
(8981, 'Lexmet-GP2 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP2 Tablet SR', 'Can the use of Lexmet-GP2 Tablet SR cause hypoglycemia?', 'Yes, the use of Lexmet-GP2 Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your meal, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always carry some sugary item like a candy or chocolate with you.'),
(8982, 'Lexmet-GP2 Tablet SR', 'Accilex Diacardo', 'Lexmet-GP2 Tablet SR', 'What are the instructions for the storage and disposal of Lexmet-GP2 Tablet SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(8983, 'Lexmox LB Capsule', 'Lexus Organics', 'Lexmox LB Capsule', 'What if I miss my dose?', 'Take Lexmox LB Capsule as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(8984, 'Lexmox LB Capsule', 'Lexus Organics', 'Lexmox LB Capsule', 'Can the use of Lexmox LB Capsule cause diarrhea?', 'Yes, the use of Lexmox LB Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(8985, 'Lexmox LB Capsule', 'Lexus Organics', 'Lexmox LB Capsule', 'How long does Lexmox LB Capsule takes to work?', 'Usually, Lexmox LB Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(8986, 'Lexmox LB Capsule', 'Lexus Organics', 'Lexmox LB Capsule', 'Can I stop taking Lexmox LB Capsule when I feel better?', 'No, do not stop taking Lexmox LB Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(8987, 'Lexnerve 1500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 1500mcg Injection', 'What is Lexnerve 1500mcg Injection?', 'Lexnerve 1500mcg Injection is a form of vitamin B12. Vitamin B12 is an essential nutrient which is required by the body to make red blood cells and maintain a healthy nervous system. It is also important for releasing energy from food and using vitamin B11 (folic acid).'),
(8988, 'Lexnerve 1500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 1500mcg Injection', 'Why can’t I get sufficient vitamin B12 in my diet?', 'You can get vitamin B12 from sources like meat, fish, eggs and dairy products. While people who are vegetarian or vegan may not get Vitamin B12 as it is not found naturally in foods such as fruits, vegetables and grains. Therefore, deficiency of Vitamin B12 is usually noticed in vegetarians or vegans.'),
(8989, 'Lexnerve 1500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 1500mcg Injection', 'What happens if I have vitamin B12 deficiency?', 'Deficiency of vitamin B12 may cause tiredness, weakness, constipation, loss of appetite, weight loss and megaloblastic anemia (a condition when red blood cells become larger than normal). It may also lead to nerve problems such as numbness and tingling in the hands and feet. Other symptoms of vitamin B12 deficiency may include problems with balance, depression, confusion, dementia, poor memory and soreness of the mouth or tongue.'),
(8990, 'Lexnerve 1500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 1500mcg Injection', 'Is Lexnerve 1500mcg Injection safe?', 'Lexnerve 1500mcg Injection is generally well tolerated and considered safe. However, in some cases, rare side effects may be observed such as nausea, diarrhea, anorexia and rash. Discontinue taking this medicine immediately if a rash occurs.'),
(8991, 'Lexnerve 1500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 1500mcg Injection', 'How should Lexnerve 1500mcg Injection be given?', 'Lexnerve 1500mcg Injection can be injected directly into a vein (intravenously) or into a muscle (intramuscularly). The usual dose is 1 ampoule (0.5 mg of Lexnerve 1500mcg Injection) and is given 3 times a week. After 2 months, 1 ampoule (0.5 mg of Lexnerve 1500mcg Injection) is given every one to three months as a part of maintenance therapy.'),
(8992, 'Lexnerve 1500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 1500mcg Injection', 'What precautions need to be taken while administering Lexnerve 1500mcg Injection?', 'Avoid taking the injections at the same site every time. If there is intense pain while injecting or if the blood flows back into the syringe, take out the needle and re-insert at a different site.'),
(8993, 'Lexnerve 2500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 2500mcg Injection', 'What is Lexnerve 2500mcg Injection?', 'Lexnerve 2500mcg Injection is a form of vitamin B12. Vitamin B12 is an essential nutrient which is required by the body to make red blood cells and maintain a healthy nervous system. It is also important for releasing energy from food and using vitamin B11 (folic acid).'),
(8994, 'Lexnerve 2500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 2500mcg Injection', 'Why can’t I get sufficient vitamin B12 in my diet?', 'You can get vitamin B12 from sources like meat, fish, eggs and dairy products. While people who are vegetarian or vegan may not get Vitamin B12 as it is not found naturally in foods such as fruits, vegetables and grains. Therefore, deficiency of Vitamin B12 is usually noticed in vegetarians or vegans.'),
(8995, 'Lexnerve 2500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 2500mcg Injection', 'What happens if I have vitamin B12 deficiency?', 'Deficiency of vitamin B12 may cause tiredness, weakness, constipation, loss of appetite, weight loss and megaloblastic anemia (a condition when red blood cells become larger than normal). It may also lead to nerve problems such as numbness and tingling in the hands and feet. Other symptoms of vitamin B12 deficiency may include problems with balance, depression, confusion, dementia, poor memory and soreness of the mouth or tongue.'),
(8996, 'Lexnerve 2500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 2500mcg Injection', 'Is Lexnerve 2500mcg Injection safe?', 'Lexnerve 2500mcg Injection is generally well tolerated and considered safe. However, in some cases, rare side effects may be observed such as nausea, diarrhea, anorexia and rash. Discontinue taking this medicine immediately if a rash occurs.'),
(8997, 'Lexnerve 2500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 2500mcg Injection', 'How should Lexnerve 2500mcg Injection be given?', 'Lexnerve 2500mcg Injection can be injected directly into a vein (intravenously) or into a muscle (intramuscularly). The usual dose is 1 ampoule (0.5 mg of Lexnerve 2500mcg Injection) and is given 3 times a week. After 2 months, 1 ampoule (0.5 mg of Lexnerve 2500mcg Injection) is given every one to three months as a part of maintenance therapy.'),
(8998, 'Lexnerve 2500mcg Injection', 'Lexaro Healthcare', 'Lexnerve 2500mcg Injection', 'What precautions need to be taken while administering Lexnerve 2500mcg Injection?', 'Avoid taking the injections at the same site every time. If there is intense pain while injecting or if the blood flows back into the syringe, take out the needle and re-insert at a different site.'),
(8999, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'What is Lexnerve PG 750mg/75mg Capsule?', 'Lexnerve PG 750mg/75mg Capsule is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(9000, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'Can I stop taking Lexnerve PG 750mg/75mg Capsule when my pain is relieved?', 'No, you should not stop taking Lexnerve PG 750mg/75mg Capsule even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lexnerve PG 750mg/75mg Capsule, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Lexnerve PG 750mg/75mg Capsule before you stop the medication completely.'),
(9001, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'How to manage weight gain associated with the use of Lexnerve PG 750mg/75mg Capsule?', 'Lexnerve PG 750mg/75mg Capsule can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9002, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'Can the use of Lexnerve PG 750mg/75mg Capsule cause sleepiness or drowsiness?', 'Yes, Lexnerve PG 750mg/75mg Capsule may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(9003, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'Are there any serious side effects associated with the use of Lexnerve PG 750mg/75mg Capsule?', 'Serious side effects caused because of the use of Lexnerve PG 750mg/75mg Capsule are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Lexnerve PG 750mg/75mg Capsule and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(9004, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'How long will the Lexnerve PG 750mg/75mg Capsule take to act?', 'An initial benefit with Lexnerve PG 750mg/75mg Capsule may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(9005, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'What if I forget to take Lexnerve PG 750mg/75mg Capsule?', 'If you forget to take the scheduled dose of Lexnerve PG 750mg/75mg Capsule and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(9006, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'Will a higher than the recommended dose of Lexnerve PG 750mg/75mg Capsule be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9007, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'Can I drink alcohol while taking Lexnerve PG 750mg/75mg Capsule?', 'No, do not drink alcohol while taking Lexnerve PG 750mg/75mg Capsule. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lexnerve PG 750mg/75mg Capsule.'),
(9008, 'Lexnerve PG 750mg/75mg Capsule', 'Lexaro Healthcare', 'Lexnerve PG 750mg/75mg Capsule', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Lexnerve PG 750mg/75mg Capsule. However, you must consult your doctor if the advised dosage of Lexnerve PG 750mg/75mg Capsule does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(9009, 'Lexnim SP Tablet', 'Accilex Nutricorp', 'Lexnim SP Tablet', 'Can I stop taking Lexnim SP Tablet when my pain is relieved?', 'Lexnim SP Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if advised by the doctor.'),
(9010, 'Lexnim SP Tablet', 'Accilex Nutricorp', 'Lexnim SP Tablet', 'Can the use of Lexnim SP Tablet cause damage to the liver?', 'Lexnim SP Tablet contains nimesulide and paracetamol, and both these medicines are known to cause harm to the liver especially in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease.'),
(9011, 'Lexnim SP Tablet', 'Accilex Nutricorp', 'Lexnim SP Tablet', 'Can I take a higher than the recommended dose of Lexnim SP Tablet?', 'No, taking a higher than the recommended dose of Lexnim SP Tablet can lead to increased chances of side effects. If the recommended dosage does not relieve your symptoms or you experience increased severity of pain, please consult your doctor for re-evaluation.'),
(9012, 'Lexnim SP Tablet', 'Accilex Nutricorp', 'Lexnim SP Tablet', 'What are the instructions for the storage and disposal of Lexnim SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9013, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'What is Lexnim-P Tablet?', 'Lexnim-P Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(9014, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'Can I stop taking Lexnim-P Tablet when my pain is relieved?', 'Lexnim-P Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(9015, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'Can the use of Lexnim-P Tablet cause nausea and vomiting?', 'Yes, the use of Lexnim-P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(9016, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'Are there any specific contraindications associated with the use of Lexnim-P Tablet?', 'The use of Lexnim-P Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(9017, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'Can I take Lexnim-P Tablet with Vitamin B-complex?', 'Yes, Lexnim-P Tablet can be taken with Vitamin B-complex preparations. While Lexnim-P Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(9018, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'Does Lexnim-P Tablet help in relieving stomach pain?', 'No, Lexnim-P Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(9019, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'Can the use of Lexnim-P Tablet cause damage to the liver?', 'Lexnim-P Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(9020, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'Is it safe to take a higher than the recommended dose of Lexnim-P Tablet?', 'No, you should avoid taking a higher than the recommended dose of Lexnim-P Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9021, 'Lexnim-P Tablet', 'Accilex Nutricorp', 'Lexnim-P Tablet', 'What are the recommended storage conditions for Lexnim-P Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9022, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'What is Lexoace MR 100mg/325mg/250mg Tablet?', 'Lexoace MR 100mg/325mg/250mg Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(9023, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'What can I do along with Lexoace MR 100mg/325mg/250mg Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(9024, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'Can I get addicted to Lexoace MR 100mg/325mg/250mg Tablet?', 'No, there are no reports of any patient getting addicted to Lexoace MR 100mg/325mg/250mg Tablet.'),
(9025, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'Can I stop taking Lexoace MR 100mg/325mg/250mg Tablet when my pain is relieved?', 'Lexoace MR 100mg/325mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lexoace MR 100mg/325mg/250mg Tablet should be continued if you are advised by your doctor to do so.'),
(9026, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'Can the use of Lexoace MR 100mg/325mg/250mg Tablet cause dizziness?', 'Yes, the use of Lexoace MR 100mg/325mg/250mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(9027, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'Can the use of Lexoace MR 100mg/325mg/250mg Tablet cause damage to liver?', 'Lexoace MR 100mg/325mg/250mg Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(9028, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'How long will Lexoace MR 100mg/325mg/250mg Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Lexoace MR 100mg/325mg/250mg Tablet.'),
(9029, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'What if I forget to take Lexoace MR 100mg/325mg/250mg Tablet?', 'If you forget to take the scheduled dose of Lexoace MR 100mg/325mg/250mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(9030, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'Will Lexoace MR 100mg/325mg/250mg Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9031, 'Lexoace MR 100mg/325mg/250mg Tablet', 'Lexaro Healthcare', 'Lexoace MR 100mg/325mg/250mg Tablet', 'Are there any specific contraindications associated with the use of Lexoace MR 100mg/325mg/250mg Tablet?', 'The use of Lexoace MR 100mg/325mg/250mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(9032, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'What is Lexoace P 100mg/325mg Tablet?', 'Lexoace P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(9033, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Is it safe to use Lexoace P 100mg/325mg Tablet?', 'Lexoace P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(9034, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Can I stop taking Lexoace P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lexoace P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(9035, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Can the use of Lexoace P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexoace P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(9036, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Can the use of Lexoace P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lexoace P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(9037, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lexoace P 100mg/325mg Tablet?', 'The use of Lexoace P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(9038, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Can Lexoace P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lexoace P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lexoace P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(9039, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Is Lexoace P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lexoace P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(9040, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Can the use of Lexoace P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lexoace P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(9041, 'Lexoace P 100mg/325mg Tablet', 'Lexaro Healthcare', 'Lexoace P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Lexoace P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lexoace P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(9042, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'What is Lexoace SP 100mg/325mg/10mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(9043, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Is it safe to take Lexoace SP 100mg/325mg/10mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(9044, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Can I stop taking Lexoace SP 100mg/325mg/10mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(9045, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Can Lexoace SP 100mg/325mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(9046, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Can Lexoace SP 100mg/325mg/10mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(9047, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Are there any specific contraindications associated with taking Lexoace SP 100mg/325mg/10mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(9048, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Can I take Lexoace SP 100mg/325mg/10mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(9049, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Can the use of Lexoace SP 100mg/325mg/10mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(9050, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'Can I take a higher dose of Lexoace SP 100mg/325mg/10mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9051, 'Lexoace SP 100mg/325mg/10mg Tablet', 'Lexaro Healthcare', 'Lexoace SP 100mg/325mg/10mg Tablet', 'What are the instructions for storage and disposal of Lexoace SP 100mg/325mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9052, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'How long does it take for Lexoage 10gm Syrup to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Lexoage 10gm Syrup.'),
(9053, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'What is Lexoage 10gm Syrup used for?', 'Lexoage 10gm Syrup is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(9054, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'Is Lexoage 10gm Syrup a laxative?', 'Yes, Lexoage 10gm Syrup is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(9055, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'What are the side effects of taking Lexoage 10gm Syrup?', 'Lexoage 10gm Syrup very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(9056, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'Is it okay to take Lexoage 10gm Syrup every day?', 'You should take Lexoage 10gm Syrup for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(9057, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'Who should not be given Lexoage 10gm Syrup?', 'Lexoage 10gm Syrup should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(9058, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'Can I take other laxatives along with Lexoage 10gm Syrup?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Lexoage 10gm Syrup. The risk of side effects is more with two laxatives.'),
(9059, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'What if I take more than the recommended dose of Lexoage 10gm Syrup?', 'Taking more than the recommended dose of Lexoage 10gm Syrup may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(9060, 'Lexoage 10gm Syrup', 'Allenge India', 'Lexoage 10gm Syrup', 'How should Lexoage 10gm Syrup be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(9061, 'Lexocin 500mg Tablet', 'Bill Cure Pharma Pvt Ltd', 'Lexocin 500mg Tablet', 'Is Lexocin 500mg Tablet safe?', 'Lexocin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9062, 'Lexocin 500mg Tablet', 'Bill Cure Pharma Pvt Ltd', 'Lexocin 500mg Tablet', 'What if I forget to take a dose of Lexocin 500mg Tablet?', 'If you forget a dose of Lexocin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9063, 'Lexocin 500mg Tablet', 'Bill Cure Pharma Pvt Ltd', 'Lexocin 500mg Tablet', 'Can the use of Lexocin 500mg Tablet cause diarrhea?', 'Yes, the use of Lexocin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9064, 'Lexocin 500mg Tablet', 'Bill Cure Pharma Pvt Ltd', 'Lexocin 500mg Tablet', 'Can I stop taking Lexocin 500mg Tablet when I feel better?', 'No, do not stop taking Lexocin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexocin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lexocin 500mg Tablet in the dose and duration advised by the doctor.'),
(9065, 'Lexocin 500mg Tablet', 'Bill Cure Pharma Pvt Ltd', 'Lexocin 500mg Tablet', 'Can the use of Lexocin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lexocin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexocin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9066, 'Lexof 100mg Tablet DT', 'Lexus Organics', 'Lexof 100mg Tablet DT', 'Can the use of Lexof 100mg Tablet DT cause diarrhea?', 'Yes, the use of Lexof 100mg Tablet DT can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9067, 'Lexof 100mg Tablet DT', 'Lexus Organics', 'Lexof 100mg Tablet DT', 'Can I stop taking Lexof 100mg Tablet DT when I feel better?', 'No, do not stop taking Lexof 100mg Tablet DT and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(9068, 'Lexof 100mg Tablet DT', 'Lexus Organics', 'Lexof 100mg Tablet DT', 'Can the use of Lexof 100mg Tablet DT increase the risk of muscle damage?', 'Yes, use of Lexof 100mg Tablet DT is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lexof 100mg Tablet DT. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9069, 'Lexof 200mg Tablet', 'Lexus Organics', 'Lexof 200mg Tablet', 'Can the use of Lexof 200mg Tablet cause diarrhea?', 'Yes, the use of Lexof 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9070, 'Lexof 200mg Tablet', 'Lexus Organics', 'Lexof 200mg Tablet', 'Can I stop taking Lexof 200mg Tablet when I feel better?', 'No, do not stop taking Lexof 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(9071, 'Lexof 200mg Tablet', 'Lexus Organics', 'Lexof 200mg Tablet', 'Can the use of Lexof 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lexof 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lexof 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9072, 'Lexof 400mg Tablet', 'Lexus Organics', 'Lexof 400mg Tablet', 'Can the use of Lexof 400mg Tablet cause diarrhea?', 'Yes, the use of Lexof 400mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9073, 'Lexof 400mg Tablet', 'Lexus Organics', 'Lexof 400mg Tablet', 'Can I stop taking Lexof 400mg Tablet when I feel better?', 'No, do not stop taking Lexof 400mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(9074, 'Lexof 400mg Tablet', 'Lexus Organics', 'Lexof 400mg Tablet', 'Can the use of Lexof 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lexof 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lexof 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9075, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Q. What if I give excess Lexof MZ Oral Suspension by mistake?', 'Although an extra dose of Lexof MZ Oral Suspension will not have any side effects, you must always be vigilant. If you think you have given too much Lexof MZ Oral Suspension to your child, immediately speak to a doctor. Overdose increases the risk of unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heartbeat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(9076, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Q. What should I do if my child shows no improvement even after taking Lexof MZ Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lexof MZ Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic, having more specific action toward the infection-causing bacteria.'),
(9077, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Q. Can other medicines be given at the same time as Lexof MZ Oral Suspension?', 'Lexof MZ Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexof MZ Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9078, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Q. Can I get my child vaccinated while on treatment with Lexof MZ Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9079, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Q. What should I tell the doctor before giving Lexof MZ Oral Suspension to my child?', 'Inform the doctor if your child is suffering from heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lexof MZ Oral Suspension may aggravate these conditions and result in complications.'),
(9080, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Q. My child has been passing red-brown urine ever since he started taking Lexof MZ Oral Suspension. Is it normal?', 'Yes, it is normal. Lexof MZ Oral Suspension contains an active ingredient called metronidazole which can cause red-brown urine. It is a harmless side effect. It will subside once the medicine is stopped after the completion of the treatment.'),
(9081, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Q. My child is having a common cold. Is it safe to give Lexof MZ Oral Suspension along with cough & cold medicines?', 'No, do not give Lexof MZ Oral Suspension with cough and cold medicines as it can interfere with their working.'),
(9082, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'What if I give excess Lexof MZ Oral Suspension by mistake?', 'Although an extra dose of Lexof MZ Oral Suspension will not have any side effects, you must always be vigilant. If you think you have given too much Lexof MZ Oral Suspension to your child, immediately speak to a doctor. Overdose increases the risk of unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heartbeat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(9083, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'What should I do if my child shows no improvement even after taking Lexof MZ Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lexof MZ Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic, having more specific action toward the infection-causing bacteria.'),
(9084, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Can other medicines be given at the same time as Lexof MZ Oral Suspension?', 'Lexof MZ Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexof MZ Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9085, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexof MZ Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9086, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'What should I tell the doctor before giving Lexof MZ Oral Suspension to my child?', 'Inform the doctor if your child is suffering from heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lexof MZ Oral Suspension may aggravate these conditions and result in complications.'),
(9087, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'My child has been passing red-brown urine ever since he started taking Lexof MZ Oral Suspension. Is it normal?', 'Yes, it is normal. Lexof MZ Oral Suspension contains an active ingredient called metronidazole which can cause red-brown urine. It is a harmless side effect. It will subside once the medicine is stopped after the completion of the treatment.'),
(9088, 'Lexof MZ Oral Suspension', 'Lexus Organics', 'Lexof MZ Oral Suspension', 'My child is having a common cold. Is it safe to give Lexof MZ Oral Suspension along with cough & cold medicines?', 'No, do not give Lexof MZ Oral Suspension with cough and cold medicines as it can interfere with their working.'),
(9089, 'Lexof NZ Oral Suspension', 'Lexus Organics', 'Lexof NZ Oral Suspension', 'What should I inform my doctor before taking Lexof NZ Oral Suspension?', 'Inform your doctor about all your medical conditions and the medicines you are taking.'),
(9090, 'Lexof NZ Oral Suspension', 'Lexus Organics', 'Lexof NZ Oral Suspension', 'Can Lexof NZ Oral Suspension cause insomnia?', 'Lexof NZ Oral Suspension contains ofloxacin, which can cause insomnia. Consult your doctor if you have a consistent sleeping problem while taking this medicine.'),
(9091, 'Lexof NZ Oral Suspension', 'Lexus Organics', 'Lexof NZ Oral Suspension', 'Will a higher than the recommended dose of Lexof NZ Oral Suspension be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(9092, 'Lexof NZ Oral Suspension', 'Lexus Organics', 'Lexof NZ Oral Suspension', 'What are the instructions for the storage and disposal of Lexof NZ Oral Suspension?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9093, 'Lexof O Plus Oral Suspension', 'Lexus Organics', 'Lexof O Plus Oral Suspension', 'What if I give too much Lexof O Plus Oral Suspension by mistake?', 'Though an extra dose of Lexof O Plus Oral Suspension is unlikely to harm, you must immediately speak to the doctor Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, unconsciousness, and palpitations (irregularities of heartbeat). So, if you think you have given too much to your child, rush to your child’s doctor on an immediate basis.'),
(9094, 'Lexof O Plus Oral Suspension', 'Lexus Organics', 'Lexof O Plus Oral Suspension', 'My child has milk intolerance. Can I give Lexof O Plus Oral Suspension to my child?', 'It is not advised to give Lexof O Plus Oral Suspension to children who are intolerant to dairy products/milk as Lexof O Plus Oral Suspension contains lactose.'),
(9095, 'Lexof O Plus Oral Suspension', 'Lexus Organics', 'Lexof O Plus Oral Suspension', 'Can other medicines be given at the same time as Lexof O Plus Oral Suspension?', 'Lexof O Plus Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexof O Plus Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9096, 'Lexof O Plus Oral Suspension', 'Lexus Organics', 'Lexof O Plus Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexof O Plus Oral Suspension ?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9097, 'Lexof O Plus Oral Suspension', 'Lexus Organics', 'Lexof O Plus Oral Suspension', 'My child is suffering from long-term (chronic) diarrhea. Can I give Lexof O Plus Oral Suspension?', 'The use of Lexof O Plus Oral Suspension in chronic diarrhea has not been sufficiently studied. Therefore, it is best to consult your child’s doctor before giving any medicine to your child.'),
(9098, 'Lexof O Plus Tablet', 'Lexus Organics', 'Lexof O Plus Tablet', 'What if I miss my dose?', 'Take Lexof O Plus Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(9099, 'Lexof O Plus Tablet', 'Lexus Organics', 'Lexof O Plus Tablet', 'Can I stop taking Lexof O Plus Tablet when I feel better?', 'No, do not stop taking Lexof O Plus Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(9100, 'Lexof Oral Suspension', 'Lexus Organics', 'Lexof Oral Suspension', 'What if I give too much of Lexof Oral Suspension by mistake?', 'An extra dose of Lexof Oral Suspension is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, unconsciousness, and palpitations (irregularities of heartbeat). Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(9101, 'Lexof Oral Suspension', 'Lexus Organics', 'Lexof Oral Suspension', 'What should I do if my child shows no improvement even after taking Lexof Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lexof Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that would be more specific in action. Not all medicines are given by oral route, some may have to be given by IV route (intravenous injection) in the hospital.'),
(9102, 'Lexof Oral Suspension', 'Lexus Organics', 'Lexof Oral Suspension', 'Can other medicines be given at the same time as Lexof Oral Suspension?', 'Lexof Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexof Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9103, 'Lexof Oral Suspension', 'Lexus Organics', 'Lexof Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexof Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9104, 'Lexof Oral Suspension', 'Lexus Organics', 'Lexof Oral Suspension', 'What should I tell the doctor before giving Lexof Oral Suspension to my child?', 'Inform the doctor if your child is suffering from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lexof Oral Suspension may aggravate these conditions and result in complications.'),
(9105, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'Can the use of Lexof TZ 200mg/600mg Tablet cause dryness in the mouth?', 'Yes, the use of Lexof TZ 200mg/600mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9106, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'Is it safe to take Lexof TZ 200mg/600mg Tablet while breastfeeding?', 'Lexof TZ 200mg/600mg Tablet should be used with caution in nursing mothers as it can lead to serious side effects. You should always consult your doctor before taking Lexof TZ 200mg/600mg Tablet.'),
(9107, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'Can the use of Lexof TZ 200mg/600mg Tablet cause metallic taste?', 'Yes, the use of Lexof TZ 200mg/600mg Tablet can cause a temporary metallic taste. This metallic taste can be reduced by chewing sugar-free gum or mints, brushing teeth after the meals and by staying hydrated.'),
(9108, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'Can I take a higher than the recommended dose of Lexof TZ 200mg/600mg Tablet?', 'No, taking a higher than the recommended dose of Lexof TZ 200mg/600mg Tablet can lead to increased side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9109, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'Are there any specific contraindications associated with the use of Lexof TZ 200mg/600mg Tablet?', 'The use of Lexof TZ 200mg/600mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or tinidazole or any other excipient. It should preferably be avoided in patients with a history of any inflammation of the tendons (tendinitis), or tendon rupture seen with the use of ofloxacin or any other medicine which belongs to the same group (quinolone group) of antimicrobial agents and in patients with some neurological disorders.'),
(9110, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'What are the instructions for the storage and disposal of Lexof TZ 200mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9111, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'What if I don\'t get better after using Lexof TZ 200mg/600mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(9112, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'Can I stop taking Lexof TZ 200mg/600mg Tablet when I feel better?', 'No, do not stop taking Lexof TZ 200mg/600mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9113, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'What if I miss my dose?', 'Take Lexof TZ 200mg/600mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(9114, 'Lexof TZ 200mg/600mg Tablet', 'Lexus Organics', 'Lexof TZ 200mg/600mg Tablet', 'For how long should you take Lexof TZ 200mg/600mg Tablet?', 'It is usually taken with or without food, twice a day, for 3 days to 6 weeks. The length of treatment depends on the type of infection being treated. Always consult the doctor before taking the medicine.'),
(9115, 'Lexoflo 200mg Tablet', 'Lexaro Healthcare', 'Lexoflo 200mg Tablet', 'Can the use of Lexoflo 200mg Tablet cause diarrhea?', 'Yes, the use of Lexoflo 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9116, 'Lexoflo 200mg Tablet', 'Lexaro Healthcare', 'Lexoflo 200mg Tablet', 'Can I stop taking Lexoflo 200mg Tablet when I feel better?', 'No, do not stop taking Lexoflo 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(9117, 'Lexoflo 200mg Tablet', 'Lexaro Healthcare', 'Lexoflo 200mg Tablet', 'Can the use of Lexoflo 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lexoflo 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lexoflo 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9118, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'What should I tell the doctor before giving Lexoflo MS Oral Suspension to my child?', 'You must tell the doctor if your child is suffering from heart disease, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, rheumatoid arthritis, or genetic disorders involving blood vessels. This is because there is a possibility that Lexoflo MS Oral Suspension may aggravate these conditions and result in complications.'),
(9119, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'Can Lexoflo MS Oral Suspension be given along with cough and cold medicines?', 'No, do not give Lexoflo MS Oral Suspension with cough and cold medicines. The reason being, one of the ingredients present in Lexoflo MS Oral Suspension can interact with alcohol-containing medicines like cough syrups and can lead to disulfiram reaction, causing nausea, vomiting, flushing, dizziness, etc.'),
(9120, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'What if I give an overdose of Lexoflo MS Oral Suspension by mistake?', 'An extra dose of Lexoflo MS Oral Suspension is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heartbeat. Rush to your child’s doctor if you notice any of these symptoms.'),
(9121, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'What should I do if my child shows no improvement even after taking Lexoflo MS Oral Suspension for the prescribed duration?', 'It could mean that Lexoflo MS Oral Suspension is unable to kill the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that has a higher efficacy against the disease-causing bacteria. Remember, that sometimes, such antibiotics may have to be given by IV route (intravenous injection) in the hospital.'),
(9122, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'Can other medicines be given at the same time as Lexoflo MS Oral Suspension?', 'Lexoflo MS Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexoflo MS Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9123, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'How should Lexoflo MS Oral Suspension be stored?', 'Store Lexoflo MS Oral Suspension at room temperature, in a dry place, away from direct heat and light. Children may accidentally consume medicines if they find them while playing around. So, make sure that all the medicines are kept away from their reach and sight.'),
(9124, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexoflo MS Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9125, 'Lexoflo MS Oral Suspension', 'Lexaro Healthcare', 'Lexoflo MS Oral Suspension', 'My child has been passing red-brown urine ever since he started taking Lexoflo MS Oral Suspension? Is it normal?', 'Lexoflo MS Oral Suspension contains active ingredient metronidazole, which causes red-brown urine. It is not pathogenic but a side effect. It subsides once the medicine is stopped after the completion of the treatment.'),
(9126, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'What is Lexoflo OZ 200mg/500mg Tablet?', 'Lexoflo OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(9127, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'Is it safe to use Lexoflo OZ 200mg/500mg Tablet?', 'Lexoflo OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(9128, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lexoflo OZ 200mg/500mg Tablet?', 'The use of Lexoflo OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(9129, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lexoflo OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9130, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lexoflo OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(9131, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'Can I stop taking Lexoflo OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lexoflo OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(9132, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lexoflo OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(9133, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lexoflo OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lexoflo OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(9134, 'Lexoflo OZ 200mg/500mg Tablet', 'Lexaro Healthcare', 'Lexoflo OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lexoflo OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9135, 'Lexog T JR Syrup', 'Threpsi Solutions Private Limited', 'Lexog T JR Syrup', 'Can Lexog T JR Syrup be used in a dry cough?', 'No, Lexog T JR Syrup is used in wet cough i.e. a cough with mucus production.'),
(9136, 'Lexog T JR Syrup', 'Threpsi Solutions Private Limited', 'Lexog T JR Syrup', 'Are there any contraindications associated with the use of Lexog T JR Syrup?', 'It is not recommended to use Lexog T JR Syrup in patients who are allergic to any of its component. It should also be avoided in patients having heart disease and peptic ulcer.'),
(9137, 'Lexog T JR Syrup', 'Threpsi Solutions Private Limited', 'Lexog T JR Syrup', 'Will a higher than the recommended dose of Lexog T JR Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(9138, 'Lexog T JR Syrup', 'Threpsi Solutions Private Limited', 'Lexog T JR Syrup', 'What are the instructions for the storage and disposal of Lexog T JR Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9139, 'Lexog T Syrup', 'Threpsi Solutions Private Limited', 'Lexog T Syrup', 'Can Lexog T Syrup be used in a dry cough?', 'No, Lexog T Syrup is used in wet cough i.e. a cough with mucus production.'),
(9140, 'Lexog T Syrup', 'Threpsi Solutions Private Limited', 'Lexog T Syrup', 'Are there any contraindications associated with the use of Lexog T Syrup?', 'It is not recommended to use Lexog T Syrup in patients who are allergic to any of its component. It should also be avoided in patients having heart disease and peptic ulcer.'),
(9141, 'Lexog T Syrup', 'Threpsi Solutions Private Limited', 'Lexog T Syrup', 'Will a higher than the recommended dose of Lexog T Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(9142, 'Lexog T Syrup', 'Threpsi Solutions Private Limited', 'Lexog T Syrup', 'What are the instructions for the storage and disposal of Lexog T Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9143, 'Lexogest 100mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 100mg Soft Gelatin Capsule', 'Can you take Lexogest 100mg Soft Gelatin Capsule every day?', 'Yes, Lexogest 100mg Soft Gelatin Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(9144, 'Lexogest 100mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 100mg Soft Gelatin Capsule', 'Does Lexogest 100mg Soft Gelatin Capsule cause weight gain?', 'Yes, taking Lexogest 100mg Soft Gelatin Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Lexogest 100mg Soft Gelatin Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(9145, 'Lexogest 100mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 100mg Soft Gelatin Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Lexogest 100mg Soft Gelatin Capsule (form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(9146, 'Lexogest 200mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 200mg Soft Gelatin Capsule', 'What is Lexogest 200mg Soft Gelatin Capsule?', 'Lexogest 200mg Soft Gelatin Capsule is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Lexogest 200mg Soft Gelatin Capsule in the body and decreases its side effects.'),
(9147, 'Lexogest 200mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 200mg Soft Gelatin Capsule', 'What is Lexogest 200mg Soft Gelatin Capsule used to treat?', 'Lexogest 200mg Soft Gelatin Capsule is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(9148, 'Lexogest 200mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 200mg Soft Gelatin Capsule', 'Can you take Lexogest 200mg Soft Gelatin Capsule every day?', 'Yes, Lexogest 200mg Soft Gelatin Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(9149, 'Lexogest 200mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 200mg Soft Gelatin Capsule', 'Does Lexogest 200mg Soft Gelatin Capsule cause weight gain?', 'Yes, taking Lexogest 200mg Soft Gelatin Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Lexogest 200mg Soft Gelatin Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(9150, 'Lexogest 200mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 200mg Soft Gelatin Capsule', 'Is Lexogest 200mg Soft Gelatin Capsule safe?', 'Yes, Lexogest 200mg Soft Gelatin Capsule is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(9151, 'Lexogest 200mg Soft Gelatin Capsule', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexogest 200mg Soft Gelatin Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Lexogest 200mg Soft Gelatin Capsule (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(9152, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'Is Lexol 100mg Tablet safe?', 'Lexol 100mg Tablet is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Lexol 100mg Tablet occur during the first few weeks of treatment and disappear with time.'),
(9153, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'Why is Lexol 100mg Tablet used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Lexol 100mg Tablet in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(9154, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'Does Lexol 100mg Tablet cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Lexol 100mg Tablet. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(9155, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'Is it safe to use Lexol 100mg Tablet in patients with diabetes?', 'Diabetic patients while using Lexol 100mg Tablet should regularly check the blood sugar levels. Lexol 100mg Tablet may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Lexol 100mg Tablet.'),
(9156, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'Does Lexol 100mg Tablet affect heart rate?', 'Lexol 100mg Tablet slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(9157, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'What can happen if I stop taking Lexol 100mg Tablet?', 'Do not stop taking Lexol 100mg Tablet without talking to your doctor. Stopping Lexol 100mg Tablet suddenly may cause serious heart problems such as angina (chest pain) or even a heart attack. If you need to stop taking Lexol 100mg Tablet, your doctor will reduce the dose slowly over 1 or 2 weeks.'),
(9158, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'Will I need to stop taking Lexol 100mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lexol 100mg Tablet for 24 hours before surgery. This is because Lexol 100mg Tablet can lower your blood pressure too much when its use is combined with some anesthetics. So, tell your doctor that you\'re taking Lexol 100mg Tablet if you\'re going to be put to sleep using a general anesthetic or are scheduled to have any kind of major operation.'),
(9159, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'What happens on taking more than the recommended dose of Lexol 100mg Tablet?', 'Taking more than the recommended dose of Lexol 100mg Tablet can lead to a drop in blood pressure and slowing of the heart rate, difficulty breathing, or a drop in blood sugar, which can cause sweating or confusion. If you take too many tablets, tell your doctor immediately or contact the hospital emergency department nearest to you.'),
(9160, 'Lexol 100mg Tablet', 'Ajanta Pharma Ltd', 'Lexol 100mg Tablet', 'How long does Lexol 100mg Tablet take to work?', 'If you are taking Lexol 100mg Tablet for high blood pressure, it may lower your BP within 1-3 hours of taking it. You may not feel any different, but this does not mean that the medicine is not working, and it is important to keep taking it. On the other hand, if you are taking it for angina, it will probably take a few days for the medicine to reduce the pain. You may still have chest pain during this time or it may get worse.'),
(9161, 'Lexolid 600mg Tablet', 'Eracure Healthcare', 'Lexolid 600mg Tablet (Eracure Healthcare)', 'Can the use of Lexolid 600mg Tablet cause diarrhea?', 'Yes, the use of Lexolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9162, 'Lexolid 600mg Tablet', 'Eracure Healthcare', 'Lexolid 600mg Tablet (Eracure Healthcare)', 'What foods should I avoid while taking Lexolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lexolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(9163, 'Lexolid 600mg Tablet', 'Celaxis Biotech', 'Lexolid 600mg Tablet (Celaxis Biotech)', 'Can the use of Lexolid 600mg Tablet cause diarrhea?', 'Yes, the use of Lexolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9164, 'Lexolid 600mg Tablet', 'Celaxis Biotech', 'Lexolid 600mg Tablet (Celaxis Biotech)', 'What foods should I avoid while taking Lexolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lexolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(9165, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'Can I take Lexom 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lexom 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(9166, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'What should I know before taking Lexom 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(9167, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'Can Lexom 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(9168, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'For how long can Lexom 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(9169, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'Can Lexom 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(9170, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'What are the long term side effects of Lexom 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(9171, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'Does Lexom 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(9172, 'Lexom 20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom 20mg Capsule', 'Can Lexom 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(9173, 'Lexom D 10mg/20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom D 10mg/20mg Capsule', 'Is it safe to use Lexom D 10mg/20mg Capsule?', 'Yes, Lexom D 10mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(9174, 'Lexom D 10mg/20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom D 10mg/20mg Capsule', 'What are the contraindications of Lexom D 10mg/20mg Capsule?', 'The use of Lexom D 10mg/20mg Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(9175, 'Lexom D 10mg/20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom D 10mg/20mg Capsule', 'What is the best time to take Lexom D 10mg/20mg Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(9176, 'Lexom D 10mg/20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom D 10mg/20mg Capsule', 'Can the use of Lexom D 10mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lexom D 10mg/20mg Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(9177, 'Lexom D 10mg/20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom D 10mg/20mg Capsule', 'Does the use of Lexom D 10mg/20mg Capsule lead to dry mouth?', 'Yes, the use of Lexom D 10mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(9178, 'Lexom D 10mg/20mg Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexom D 10mg/20mg Capsule', 'What is the recommended storage condition for Lexom D 10mg/20mg Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9179, 'Lexom Oral Suspension', 'Therawin Formulations', 'Lexom Oral Suspension', 'What is the maximum dose of Lexom Oral Suspension I can give to my child daily?', 'The maximum daily safe dose of Lexom Oral Suspension is 30mg/day. Giving more than this amount can cause heart-related problems in your child.'),
(9180, 'Lexom Oral Suspension', 'Therawin Formulations', 'Lexom Oral Suspension', 'What if my child takes too much Lexom Oral Suspension?', 'Lexom Oral Suspension is unlikely to cause harm if you give an extra dose by mistake. However, you must still speak to your child’s doctor immediately. Sometimes, excessive intake of Lexom Oral Suspension can cause some serious side effects like irregular heartbeats, heart block, agitation, and confusion. If any of these appear, consult the doctor without any delay.'),
(9181, 'Lexom Oral Suspension', 'Therawin Formulations', 'Lexom Oral Suspension', 'How should Lexom Oral Suspension be stored?', 'Store Lexom Oral Suspension at room temperature, in a dry place, away from direct heat and light. Also, keep all the medicines out of the reach and sight of children to avoid any accidental intake.'),
(9182, 'Lexom Oral Suspension', 'Therawin Formulations', 'Lexom Oral Suspension', 'Can other medicines be given at the same time as Lexom Oral Suspension?', 'Lexom Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexom Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9183, 'Lexomef D 80mg/250mg Tablet', 'Lexaro Healthcare', 'Lexomef D 80mg/250mg Tablet', 'What is Lexomef D 80mg/250mg Tablet?', 'Lexomef D 80mg/250mg Tablet is a combination of two medicines: Drotaverine and Mefenamic acid. This medication helps to relieve abdominal pain. Drotaverine relieves muscle spasms associated with smooth muscles in the abdomen. Mefenamic Acid works by blocking the release of certain chemical messengers that cause pain and inflammation (swelling).'),
(9184, 'Lexomef D 80mg/250mg Tablet', 'Lexaro Healthcare', 'Lexomef D 80mg/250mg Tablet', 'Is it safe to use Lexomef D 80mg/250mg Tablet?', 'Yes, Lexomef D 80mg/250mg Tablet is safe for most of the patients with abdominal pain. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, diarrhoea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(9185, 'Lexomef D 80mg/250mg Tablet', 'Lexaro Healthcare', 'Lexomef D 80mg/250mg Tablet', 'Can I stop taking Lexomef D 80mg/250mg Tablet when my pain is relieved?', 'Lexomef D 80mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lexomef D 80mg/250mg Tablet should be continued if your physician has advised you to do so.'),
(9186, 'Lexomef D 80mg/250mg Tablet', 'Lexaro Healthcare', 'Lexomef D 80mg/250mg Tablet', 'Can the use of Lexomef D 80mg/250mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexomef D 80mg/250mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Also, avoid taking fatty or fried foods along with the medicine. Talk to your doctor if you have vomiting persists and you notice any signs of dehydration like less urination with dark coloured and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(9187, 'Lexomef D 80mg/250mg Tablet', 'Lexaro Healthcare', 'Lexomef D 80mg/250mg Tablet', 'Can the use of Lexomef D 80mg/250mg Tablet cause dry mouth?', 'Yes, the use of Lexomef D 80mg/250mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Avoid spicy, salty and acidic foods (like lemons).'),
(9188, 'Lexomef D 80mg/250mg Tablet', 'Lexaro Healthcare', 'Lexomef D 80mg/250mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, do not take a higher than the recommended dose of Lexomef D 80mg/250mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9189, 'Lexomef D 80mg/250mg Tablet', 'Lexaro Healthcare', 'Lexomef D 80mg/250mg Tablet', 'What are the recommended storage conditions for Lexomef D 80mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9190, 'Lexonex 500mg Tablet', 'Therawin Formulations', 'Lexonex 500mg Tablet', 'Is Lexonex 500mg Tablet safe?', 'Lexonex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9191, 'Lexonex 500mg Tablet', 'Therawin Formulations', 'Lexonex 500mg Tablet', 'What if I forget to take a dose of Lexonex 500mg Tablet?', 'If you forget a dose of Lexonex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9192, 'Lexonex 500mg Tablet', 'Therawin Formulations', 'Lexonex 500mg Tablet', 'Can the use of Lexonex 500mg Tablet cause diarrhea?', 'Yes, the use of Lexonex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9193, 'Lexonex 500mg Tablet', 'Therawin Formulations', 'Lexonex 500mg Tablet', 'Can I stop taking Lexonex 500mg Tablet when I feel better?', 'No, do not stop taking Lexonex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexonex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lexonex 500mg Tablet in the dose and duration advised by the doctor.'),
(9194, 'Lexonex 500mg Tablet', 'Therawin Formulations', 'Lexonex 500mg Tablet', 'Can the use of Lexonex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lexonex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexonex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9195, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'What is Lexopan 40 Injection used for?', 'Lexopan 40 Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lexopan 40 Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(9196, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'Can I take antacids along with Lexopan 40 Injection?', 'Yes, you can take antacids along with Lexopan 40 Injection. Take it 2 hours before or after you take Lexopan 40 Injection.'),
(9197, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'How long does it take for Lexopan 40 Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lexopan 40 Injection to work properly so you may still have some symptoms during this time.'),
(9198, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'Does Lexopan 40 Injection cause weight gain?', 'Although rare but long-term treatment with Lexopan 40 Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(9199, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'Can I take alcohol with Lexopan 40 Injection?', 'No, alcohol intake is not advised with Lexopan 40 Injection. Alcohol itself does not affect the working of Lexopan 40 Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(9200, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'What dietary changes should I make to get relief from acidity?', 'Lexopan 40 Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(9201, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'Can I take Lexopan 40 Injection for a long term?', 'Lexopan 40 Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lexopan 40 Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lexopan 40 Injection as advised by your doctor and under their supervision.'),
(9202, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'Are painkillers safe to take along with Lexopan 40 Injection?', 'Yes, it is safe to take painkillers along with Lexopan 40 Injection. Lexopan 40 Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Lexopan 40 Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(9203, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'Is a single dose of Lexopan 40 Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lexopan 40 Injection you may get relief with the symptoms. Lexopan 40 Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lexopan 40 Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lexopan 40 Injection regularly for 2 weeks as prescribed.'),
(9204, 'Lexopan 40 Injection', 'Lexaro Healthcare', 'Lexopan 40 Injection', 'What are the long term side effects of Lexopan 40 Injection?', 'If Lexopan 40 Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(9205, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'What is Lexopan 40mg Tablet used for?', 'Lexopan 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lexopan 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(9206, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'How long does it take for Lexopan 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lexopan 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(9207, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'Is a single dose of Lexopan 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lexopan 40mg Tablet you may get relief with the symptoms. Lexopan 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lexopan 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lexopan 40mg Tablet regularly for 2 weeks as prescribed.'),
(9208, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'Is Lexopan 40mg Tablet safe?', 'Yes, Lexopan 40mg Tablet is relatively safe. Most of the people who take Lexopan 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(9209, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'Can I take Lexopan 40mg Tablet for a long term?', 'Lexopan 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Lexopan 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lexopan 40mg Tablet as advised by your doctor and under their supervision.'),
(9210, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'What are the long term side effects of Lexopan 40mg Tablet?', 'If Lexopan 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(9211, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'What is the best time to take Lexopan 40mg Tablet?', 'Usually, Lexopan 40mg Tablet is taken once a day, first thing in the morning. If you take Lexopan 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(9212, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'Can I stop taking Lexopan 40mg Tablet if I feel better?', 'If you have been taking Lexopan 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lexopan 40mg Tablet.'),
(9213, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'Does Lexopan 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Lexopan 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(9214, 'Lexopan 40mg Tablet', 'Lexaro Healthcare', 'Lexopan 40mg Tablet', 'Can I take alcohol with Lexopan 40mg Tablet?', 'No, alcohol intake is not advised with Lexopan 40mg Tablet. Alcohol itself does not affect the working of Lexopan 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(9215, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'What is Lexopan-D Tablet?', 'Lexopan-D Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(9216, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'Is it safe to use Lexopan-D Tablet?', 'Lexopan-D Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(9217, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'Are there any specific contraindications associated with the use of Lexopan-D Tablet?', 'The use of Lexopan-D Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(9218, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'Can the use of Lexopan-D Tablet cause dry mouth?', 'Yes, the use of Lexopan-D Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9219, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'Can the use of Lexopan-D Tablet cause diarrhea?', 'Yes, the use of Lexopan-D Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(9220, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'What are the instructions for storage and disposal of Lexopan-D Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9221, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'What is Lexopan-D Tablet price?', 'You can get Lexopan-D Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(9222, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'While taking Lexopan-D Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(9223, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'Can I take alcohol while taking Lexopan-D Tablet?', 'No, alcohol intake is not advised with Lexopan-D Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(9224, 'Lexopan-D Tablet', 'Lexaro Healthcare', 'Lexopan-D Tablet', 'Can I stop taking Lexopan-D Tablet if I feel better?', 'If you have been taking Lexopan-D Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(9225, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'What is Lexopan-DSR Capsule?', 'Lexopan-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(9226, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'Is it safe to use Lexopan-DSR Capsule?', 'Lexopan-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(9227, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'Are there any specific contraindications associated with the use of Lexopan-DSR Capsule?', 'The use of Lexopan-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(9228, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'Can the use of Lexopan-DSR Capsule cause dry mouth?', 'Yes, the use of Lexopan-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(9229, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'Can the use of Lexopan-DSR Capsule cause diarrhea?', 'Yes, the use of Lexopan-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(9230, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'What are the instructions for storage and disposal of Lexopan-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9231, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'What is Lexopan-DSR Capsule price?', 'You can get Lexopan-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(9232, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'While taking Lexopan-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(9233, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'Can I take alcohol while taking Lexopan-DSR Capsule?', 'No, alcohol intake is not advised with Lexopan-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(9234, 'Lexopan-DSR Capsule', 'Lexaro Healthcare', 'Lexopan-DSR Capsule', 'Can I stop taking Lexopan-DSR Capsule if I feel better?', 'If you have been taking Lexopan-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(9235, 'Lexopram C 0.5mg/10mg Tablet', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexopram C 0.5mg/10mg Tablet', 'What is Lexopram C 0.5mg/10mg Tablet?', 'Lexopram C 0.5mg/10mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(9236, 'Lexopram C 0.5mg/10mg Tablet', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexopram C 0.5mg/10mg Tablet', 'Can the Lexopram C 0.5mg/10mg Tablet cause sleepiness or drowsiness?', 'Lexopram C 0.5mg/10mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(9237, 'Lexopram C 0.5mg/10mg Tablet', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexopram C 0.5mg/10mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lexopram C 0.5mg/10mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9238, 'Lexopram C 0.5mg/10mg Tablet', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexopram C 0.5mg/10mg Tablet', 'Any special instruction regarding storage and disposal of Lexopram C 0.5mg/10mg Tablet?', 'Keep Lexopram C 0.5mg/10mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(9239, 'Lexopram C 0.5mg/10mg Tablet', 'Farlex Pharmaceuticals Pvt Ltd', 'Lexopram C 0.5mg/10mg Tablet', 'Can I stop taking Lexopram C 0.5mg/10mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lexopram C 0.5mg/10mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(9240, 'Lexor BR 90mg/48mg/100mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor BR 90mg/48mg/100mg Tablet', 'What is Lexor BR 90mg/48mg/100mg Tablet used for?', 'This is a combination of three medicines: Bromelain, Trypsin and Rutoside. Bromelain and Trypsin are enzymes which increase blood supply in the affected area and help the body produce substances that fight pain and swelling. Rutoside is an antioxidant which protects the body from any damage caused by chemicals (free radicals) and further reduces swelling.'),
(9241, 'Lexor BR 90mg/48mg/100mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor BR 90mg/48mg/100mg Tablet', 'Is trypsin a hormone?', 'No, Trypsin is not a hormone. It is an enzyme, a protein and an endopeptidase.'),
(9242, 'Lexor BR 90mg/48mg/100mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor BR 90mg/48mg/100mg Tablet', 'What is the recommended storage condition for Lexor BR 90mg/48mg/100mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9243, 'Lexor Plus Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor Plus Tablet', 'What is Lexor Plus Tablet?', 'Lexor Plus Tablet is a combination of four medicines: Trypsin, Bromelain, Rutoside and Diclofenac. This medication helps in relieving pain and swelling (inflammation). It works by lowering the levels of those chemical substances in the body which cause pain and swelling (inflammation).'),
(9244, 'Lexor Plus Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor Plus Tablet', 'Can the use of Lexor Plus Tablet cause dizziness?', 'Yes, the use of Lexor Plus Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(9245, 'Lexor Plus Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor Plus Tablet', 'Are there any specific contraindications associated with the use of Lexor Plus Tablet?', 'The use of Lexor Plus Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(9246, 'Lexor Plus Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor Plus Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lexor Plus Tablet can increase the risk of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain and swelling which is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(9247, 'Lexor Plus Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor Plus Tablet', 'What is the recommended storage condition for Lexor Plus Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9248, 'Lexor Plus Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor Plus Tablet', 'Can Lexor Plus Tablet be stopped when my pain and swelling (inflammation) are relieved?', 'Lexor Plus Tablet is usually used for short term and can be discontinued when pain and swelling are relieved. However, Lexor Plus Tablet should be continued if the doctor has advised you to do so.'),
(9249, 'Lexor Plus Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor Plus Tablet', 'Can the use of Lexor Plus Tablet cause nausea and vomiting?', 'Yes, the use of Lexor Plus Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(9250, 'Lexor T 100000IU Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor T 100000IU Tablet', 'Can Lexor T 100000IU Tablet be taken after food?', 'No, Lexor T 100000IU Tablet should not be taken after food. This medicine works best when taken about 30 minutes before meals. It should be taken in the dose and duration prescribed by the doctor.'),
(9251, 'Lexor T 100000IU Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor T 100000IU Tablet', 'How long can I take Lexor T 100000IU Tablet?', 'Lexor T 100000IU Tablet is safe to be used for a short-term. Usually it is prescribed for not more than 10 days. However, you should use it in the dose and duration as advised by your doctor. Do not take it unless prescribed and it should not be stopped before talking to your doctor.'),
(9252, 'Lexor T 100000IU Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor T 100000IU Tablet', 'How does Lexor T 100000IU Tablet work?', 'Lexor T 100000IU Tablet acts as a catalyst to relieve the signs of pain and inflammation. It fastens the recovery process and heals your discomfort.'),
(9253, 'Lexor T 100000IU Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor T 100000IU Tablet', 'What happens if I overdose on Lexor T 100000IU Tablet?', 'Lexor T 100000IU Tablet should be used as prescribed by your doctor. Do not use more than the recommended dose. Using more than what is prescribed may increase the side effects caused by the medicine.'),
(9254, 'Lexor T 100000IU Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor T 100000IU Tablet', 'When to avoid this medicine?', 'Lexor T 100000IU Tablet should be avoided if you are allergic to it or any of its components. You must always inform your doctor if you ever had problems with your liver, kidneys or stomach (such as peptic ulcers). It is not recommended in case you suffer from any blood disorders as well. Pregnant or breastfeeding mothers should consult their doctor before taking this medicine.'),
(9255, 'Lexor T 100000IU Tablet', 'Trireme Life Sciences Pvt Ltd', 'Lexor T 100000IU Tablet', 'Is it safe to use Lexor T 100000IU Tablet in pregnancy and breastfeeding?', 'There is not enough data available regarding the safety to use Lexor T 100000IU Tablet in pregnancy and breastfeeding. Therefore, always seek your doctor’s advice before using it while you are pregnant, planning to conceive or breastfeeding.'),
(9256, 'Lexorip BRD Tablet', 'Lexaro Healthcare', 'Lexorip BRD Tablet', 'What is Lexorip BRD Tablet?', 'Lexorip BRD Tablet is a combination of four medicines: Trypsin, Bromelain, Rutoside and Diclofenac. This medication helps in relieving pain and swelling (inflammation). It works by lowering the levels of those chemical substances in the body which cause pain and swelling (inflammation).'),
(9257, 'Lexorip BRD Tablet', 'Lexaro Healthcare', 'Lexorip BRD Tablet', 'Can the use of Lexorip BRD Tablet cause dizziness?', 'Yes, the use of Lexorip BRD Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(9258, 'Lexorip BRD Tablet', 'Lexaro Healthcare', 'Lexorip BRD Tablet', 'Are there any specific contraindications associated with the use of Lexorip BRD Tablet?', 'The use of Lexorip BRD Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(9259, 'Lexorip BRD Tablet', 'Lexaro Healthcare', 'Lexorip BRD Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lexorip BRD Tablet can increase the risk of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain and swelling which is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(9260, 'Lexorip BRD Tablet', 'Lexaro Healthcare', 'Lexorip BRD Tablet', 'What is the recommended storage condition for Lexorip BRD Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9261, 'Lexorip BRD Tablet', 'Lexaro Healthcare', 'Lexorip BRD Tablet', 'Can Lexorip BRD Tablet be stopped when my pain and swelling (inflammation) are relieved?', 'Lexorip BRD Tablet is usually used for short term and can be discontinued when pain and swelling are relieved. However, Lexorip BRD Tablet should be continued if the doctor has advised you to do so.'),
(9262, 'Lexorip BRD Tablet', 'Lexaro Healthcare', 'Lexorip BRD Tablet', 'Can the use of Lexorip BRD Tablet cause nausea and vomiting?', 'Yes, the use of Lexorip BRD Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(9263, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'Is Lexorus 400mg Tablet taken with food?', 'Yes, Lexorus 400mg Tablet can be taken with food. It is recommended to take 1-2 tablets (based on individual needs) thrice daily. It is important to take it with meals because Lexorus 400mg Tablet works by binding to phosphate from food. Take it exactly as advised by your doctor.'),
(9264, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'Can Lexorus 400mg Tablet be crushed?', 'No, you should not crush, chew, or break Lexorus 400mg Tablet into pieces. You should swallow it as a whole with water.'),
(9265, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'Why is it important for me to take Lexorus 400mg Tablet?', 'It is important to take Lexorus 400mg Tablet as patients undergoing dialysis cannot control the phosphate levels in their blood, especially after a meal. When the level of phosphate exceeds above the range in the blood, it may cause problems such as itchy skin, red eyes, high blood pressure, bone pain, and also increase the risk of fractures. These increased serum phosphate levels are reduced by Lexorus 400mg Tablet, as it binds phosphate from food in the digestive tract.'),
(9266, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'Does Lexorus 400mg Tablet cause constipation?', 'A common side effect of Lexorus 400mg Tablet is constipation, though it does not occur in everyone. The other common side effects of the stomach and intestine include diarrhea, indigestion, flatulence, and pain in the abdomen. Immediately consult your doctor if these side effects become severe and disturb you.'),
(9267, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'Who should not take Lexorus 400mg Tablet?', 'Patients who are allergic to Lexorus 400mg Tablet and who have low levels of phosphate in blood should avoid taking Lexorus 400mg Tablet. Additionally, patients having intestinal obstruction should also avoid using Lexorus 400mg Tablet.'),
(9268, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'Can I take ciprofloxacin while I am taking Lexorus 400mg Tablet?', 'Ciprofloxacin may interfere with the working of Lexorus 400mg Tablet and therefore it should not be taken at the same time as Lexorus 400mg Tablet. However, if taken together then a gap of at least 2 hours before or 6 hours after taking Lexorus 400mg Tablet should be maintained.'),
(9269, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'How long do I need to take Lexorus 400mg Tablet?', 'Continue taking Lexorus 400mg Tablet as long as recommended by your doctor. Lexorus 400mg Tablet lowers your dietary phosphate levels but does not cure your disease. Hence, you may have to take it lifelong, as stopping Lexorus 400mg Tablet may increase your phosphate levels.'),
(9270, 'Lexorus 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lexorus 400mg Tablet', 'Do I need to have any tests while taking Lexorus 400mg Tablet?', 'Yes, serum phosphate levels should be monitored regularly while you are taking Lexorus 400mg Tablet. Also, the use of Lexorus 400mg Tablet may decrease the levels of vitamin D, A, E, K, and folic acid and hence the levels need to be monitored during the treatment.'),
(9271, 'Lexovir 400mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexovir 400mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Will I get cured after taking Lexovir 400mg Tablet for shingles?', 'Lexovir 400mg Tablet is an antiviral medicine effective against herpes simplex and varicella zoster viruses. It does not cure infections caused by these viruses but helps to minimize the symptoms and shorten the duration of infection. It does not remove the viruses from the body but prevents the viruses from dividing and spreading.'),
(9272, 'Lexovir 400mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexovir 400mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Does Lexovir 400mg Tablet prevent transmission of infection to others?', 'No, you can infect other people, even while you are being treated with Lexovir 400mg Tablet. Herpes infections are contagious, so avoid letting infected areas come into contact with other people. Avoid touching your eyes after touching an infected area. Wash your hands frequently to prevent transmitting the infection to others. You should practice safe sex by using condoms. You should not have sex if you have genital sores or blisters.'),
(9273, 'Lexovir 400mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexovir 400mg Tablet (Medlex Biotechnics Private Limited)', 'Q. What are the serious side effects of Lexovir 400mg Tablet?', 'Serious side effects are rare, but if you experience them, you should seek medical advice right away. These rare side effects include hives, blistering or peeling rash, yellow skin or eyes, unusual bruising or bleeding, loss of consciousness, fits, difficulty in breathing, hallucinations and swelling of the face, tongue, lips or throat.'),
(9274, 'Lexovir 400mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexovir 400mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Do elderly patients need to be more careful while taking Lexovir 400mg Tablet?', 'Older adults (over age 65 years) tend to experience more side effects when taking Lexovir 400mg Tablet. The reason being, their kidneys do not flush the drug out of their system as quickly as a younger person’s kidneys would do. Elderly patients should drink plenty of water while taking Lexovir 400mg Tablet, and their kidney function should be monitored. These patients should be given a lower dose and should be monitored for neurological problems.'),
(9275, 'Lexovir 400mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexovir 400mg Tablet (Medlex Biotechnics Private Limited)', 'Q. What can happen if somebody takes more than the recommended dose of Lexovir 400mg Tablet accidentally?', 'Accidental, repeated overdoses of oral Lexovir 400mg Tablet over several days have resulted in nausea, vomiting, confusion and headache. Consult your doctor in case of overdose.'),
(9276, 'Lexovir 400mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexovir 400mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Can I get resistant to Lexovir 400mg Tablet treatment?', 'Patients with advanced HIV disease or patients with an impaired immunity have reported resistance to Lexovir 400mg Tablet. If you are not responding to Lexovir 400mg Tablet, the possibility of drug resistance should be checked.'),
(9277, 'Lexovir 400mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexovir 400mg Tablet (Medlex Biotechnics Private Limited)', 'Q. Is hair loss caused due to Lexovir 400mg Tablet permanent?', 'Hair loss is an uncommon side effect of Lexovir 400mg Tablet. It stops when the medicine is discontinued.'),
(9278, 'Lexovir 400mg Tablet', 'Med Lex Pharmaceutical', 'Lexovir 400mg Tablet (Med Lex Pharmaceutical)', 'Will I get cured after taking Lexovir 400mg Tablet for shingles?', 'Lexovir 400mg Tablet is an antiviral medicine effective against herpes simplex and varicella zoster viruses. It does not cure infections caused by these viruses but helps to minimize the symptoms and shorten the duration of infection. It does not remove the viruses from the body but prevents the viruses from dividing and spreading.'),
(9279, 'Lexovir 400mg Tablet', 'Med Lex Pharmaceutical', 'Lexovir 400mg Tablet (Med Lex Pharmaceutical)', 'Does Lexovir 400mg Tablet prevent transmission of infection to others?', 'No, you can infect other people, even while you are being treated with Lexovir 400mg Tablet. Herpes infections are contagious, so avoid letting infected areas come into contact with other people. Avoid touching your eyes after touching an infected area. Wash your hands frequently to prevent transmitting the infection to others. You should practice safe sex by using condoms. You should not have sex if you have genital sores or blisters.'),
(9280, 'Lexovir 400mg Tablet', 'Med Lex Pharmaceutical', 'Lexovir 400mg Tablet (Med Lex Pharmaceutical)', 'What are the serious side effects of Lexovir 400mg Tablet?', 'Serious side effects are rare, but if you experience them, you should seek medical advice right away. These rare side effects include hives, blistering or peeling rash, yellow skin or eyes, unusual bruising or bleeding, loss of consciousness, fits, difficulty in breathing, hallucinations and swelling of the face, tongue, lips or throat.'),
(9281, 'Lexovir 400mg Tablet', 'Med Lex Pharmaceutical', 'Lexovir 400mg Tablet (Med Lex Pharmaceutical)', 'Do elderly patients need to be more careful while taking Lexovir 400mg Tablet?', 'Older adults (over age 65 years) tend to experience more side effects when taking Lexovir 400mg Tablet. The reason being, their kidneys do not flush the drug out of their system as quickly as a younger person’s kidneys would do. Elderly patients should drink plenty of water while taking Lexovir 400mg Tablet, and their kidney function should be monitored. These patients should be given a lower dose and should be monitored for neurological problems.'),
(9282, 'Lexovir 400mg Tablet', 'Med Lex Pharmaceutical', 'Lexovir 400mg Tablet (Med Lex Pharmaceutical)', 'What can happen if somebody takes more than the recommended dose of Lexovir 400mg Tablet accidentally?', 'Accidental, repeated overdoses of oral Lexovir 400mg Tablet over several days have resulted in nausea, vomiting, confusion and headache. Consult your doctor in case of overdose.'),
(9283, 'Lexovir 400mg Tablet', 'Med Lex Pharmaceutical', 'Lexovir 400mg Tablet (Med Lex Pharmaceutical)', 'Can I get resistant to Lexovir 400mg Tablet treatment?', 'Patients with advanced HIV disease or patients with an impaired immunity have reported resistance to Lexovir 400mg Tablet. If you are not responding to Lexovir 400mg Tablet, the possibility of drug resistance should be checked.'),
(9284, 'Lexovir 400mg Tablet', 'Med Lex Pharmaceutical', 'Lexovir 400mg Tablet (Med Lex Pharmaceutical)', 'Is hair loss caused due to Lexovir 400mg Tablet permanent?', 'Hair loss is an uncommon side effect of Lexovir 400mg Tablet. It stops when the medicine is discontinued.'),
(9285, 'Lexoz L 75mg/40mg Capsule SR', 'Diabocare Pharmaceuticals', 'Lexoz L 75mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Lexoz L 75mg/40mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9286, 'Lexoz L 75mg/40mg Capsule SR', 'Diabocare Pharmaceuticals', 'Lexoz L 75mg/40mg Capsule SR', 'What is the best time to take Lexoz L 75mg/40mg Capsule SR?', 'Take Lexoz L 75mg/40mg Capsule SR exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(9287, 'Lexoz L 75mg/40mg Capsule SR', 'Diabocare Pharmaceuticals', 'Lexoz L 75mg/40mg Capsule SR', 'What are the contraindications associated with the use of Lexoz L 75mg/40mg Capsule SR?', 'The use of Lexoz L 75mg/40mg Capsule SR should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(9288, 'Lexoz L 75mg/40mg Capsule SR', 'Diabocare Pharmaceuticals', 'Lexoz L 75mg/40mg Capsule SR', 'Can the use of Lexoz L 75mg/40mg Capsule SR cause dizziness?', 'Yes, the use of Lexoz L 75mg/40mg Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is  better to rest for some time and resume once you feel better.'),
(9289, 'Lexoz L 75mg/40mg Capsule SR', 'Diabocare Pharmaceuticals', 'Lexoz L 75mg/40mg Capsule SR', 'Does the use of Lexoz L 75mg/40mg Capsule SR lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Lexoz L 75mg/40mg Capsule SR may be associated with an increased risk for osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(9290, 'Lexozen 5mg Tablet', 'Axyzen Life Sciences', 'Lexozen 5mg Tablet', 'Is Lexozen 5mg Tablet a steroid? What is it used for?', 'No, Lexozen 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9291, 'Lexozen 5mg Tablet', 'Axyzen Life Sciences', 'Lexozen 5mg Tablet', 'Does Lexozen 5mg Tablet make you tired and drowsy?', 'Yes, Lexozen 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9292, 'Lexozen 5mg Tablet', 'Axyzen Life Sciences', 'Lexozen 5mg Tablet', 'How long does it take for Lexozen 5mg Tablet to work?', 'Lexozen 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9293, 'Lexozen 5mg Tablet', 'Axyzen Life Sciences', 'Lexozen 5mg Tablet', 'Can I take Lexozen 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lexozen 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9294, 'Lexozen 5mg Tablet', 'Axyzen Life Sciences', 'Lexozen 5mg Tablet', 'Is it safe to take Lexozen 5mg Tablet for a long time?', 'Lexozen 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lexozen 5mg Tablet for only as long as you need it.'),
(9295, 'Lexozen 5mg Tablet', 'Axyzen Life Sciences', 'Lexozen 5mg Tablet', 'For how long should I continue Lexozen 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lexozen 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lexozen 5mg Tablet'),
(9296, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'How much Lexp 250mg Oral Suspension should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(9297, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'When will my child’s condition improve after taking Lexp 250mg Oral Suspension?', 'Lexp 250mg Oral Suspension usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(9298, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'My child vomited after taking Lexp 250mg Oral Suspension. What should I do?', 'If your child vomits within 30 minutes of taking Lexp 250mg Oral Suspension, repeat the dose again. If it has been more than 30 minutes after taking Lexp 250mg Oral Suspension and your child vomits, no need to repeat the dose and wait until it is time for the next dose. If you are not sure, consult your doctor.'),
(9299, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'Can I give Lexp 250mg Oral Suspension to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(9300, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'My child’s fever is persistent even after taking Lexp 250mg Oral Suspension. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(9301, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'How much of Lexp 250mg Oral Suspension is considered as an overdose?', 'You should only take four doses of Lexp 250mg Oral Suspension in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(9302, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(9303, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(9304, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'In what conditions Lexp 250mg Oral Suspension must be given with caution?', 'It is advised to use Lexp 250mg Oral Suspension with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(9305, 'Lexp 250mg Oral Suspension', 'Lexaro Healthcare', 'Lexp 250mg Oral Suspension', 'Can I give Lexp 250mg Oral Suspension on a routine basis when my child is taking a vaccine?', 'Lexp 250mg Oral Suspension usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(9306, 'Lexpas 20mg/250mg Tablet', 'Biolex Pharmaceutical Private Limited', 'Lexpas 20mg/250mg Tablet', 'Can Lexpas 20mg/250mg Tablet be taken with food?', 'It is advisable to take Lexpas 20mg/250mg Tablet with food or immediately after food since this medicine may cause stomach upset.'),
(9307, 'Lexpas 20mg/250mg Tablet', 'Biolex Pharmaceutical Private Limited', 'Lexpas 20mg/250mg Tablet', 'Can Lexpas 20mg/250mg Tablet stop menstruation?', 'No, Mefspas does not have any effect on menstrual bleeding, neither does it affect the amount nor the duration of bleeding. It does not affect the menstrual cycle and helps relieve the pain caused due to menstrual cramps.'),
(9308, 'Lexpas 20mg/250mg Tablet', 'Biolex Pharmaceutical Private Limited', 'Lexpas 20mg/250mg Tablet', 'How long should I take Lexpas 20mg/250mg Tablet?', 'Lexpas 20mg/250mg Tablet is not prescribed to be taken on a regular basis. Therefore, it is advised to take Lexpas 20mg/250mg Tablet for the shortest possible time advised by the doctor or only when you experience menstrual pain.'),
(9309, 'Lexpas 20mg/250mg Tablet', 'Biolex Pharmaceutical Private Limited', 'Lexpas 20mg/250mg Tablet', 'Is there any harm if I drive after taking the medicine?', 'Yes, you should try to avoid driving after taking Lexpas 20mg/250mg Tablet as this medicine may cause dizziness or sleepiness. These side effects get worse with the consumption of alcohol. Hence, better to avoid driving or any attention-seeking activity until you know how the medicine affects you.'),
(9310, 'Lexpazo LS 75mg/40mg Tablet', 'Zoydec Pharmaceuticals', 'Lexpazo LS 75mg/40mg Tablet', 'What is the best time to take Lexpazo LS 75mg/40mg Tablet?', 'Take Lexpazo LS 75mg/40mg Tablet exactly as directed by your doctor. It is best to take one capsule on an empty stomach daily.'),
(9311, 'Lexpazo LS 75mg/40mg Tablet', 'Zoydec Pharmaceuticals', 'Lexpazo LS 75mg/40mg Tablet', 'What are the contraindications associated with the use of Lexpazo LS 75mg/40mg Tablet?', 'The use of Lexpazo LS 75mg/40mg Tablet should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(9312, 'Lexpazo LS 75mg/40mg Tablet', 'Zoydec Pharmaceuticals', 'Lexpazo LS 75mg/40mg Tablet', 'Can the use of Lexpazo LS 75mg/40mg Tablet cause dizziness?', 'Yes, the use of Lexpazo LS 75mg/40mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(9313, 'Lexpazo LS 75mg/40mg Tablet', 'Zoydec Pharmaceuticals', 'Lexpazo LS 75mg/40mg Tablet', 'Does the use of Lexpazo LS 75mg/40mg Tablet lead to increased risk of fractures?', 'Several studies in adults suggest that Lexpazo LS 75mg/40mg Tablet may increase the risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was more in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(9314, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Lexpenam 1gm Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Lexpenam 1gm Injection. Medicines like Lexpenam 1gm Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.'),
(9315, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'Even though Lexpenam 1gm Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Lexpenam 1gm Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(9316, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'Is Lexpenam 1gm Injection a strong antibiotic? Which infections does it treat?', 'Lexpenam 1gm Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(9317, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'Is Lexpenam 1gm Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Lexpenam 1gm Injection is effective only against bacteria. It is not effective against virus or fungal infections. Lexpenam 1gm Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.'),
(9318, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'My cousin was receiving Lexpenam 1gm Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Lexpenam 1gm Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Lexpenam 1gm Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(9319, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'For how long will I need to take Lexpenam 1gm Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Lexpenam 1gm Injection. Consult your doctor if you are not sure.'),
(9320, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'What if Lexpenam 1gm Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Lexpenam 1gm Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Lexpenam 1gm Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(9321, 'Lexpenam 1gm Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpenam 1gm Injection', 'Does it matter if I miss or stop Lexpenam 1gm Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Lexpenam 1gm Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(9322, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'How is Lexpera 1000mg Infusion administered?', 'Lexpera 1000mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only. It should not be self-administered. The dose of the medicine will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lexpera 1000mg Infusion.'),
(9323, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'What if I vomit after taking Lexpera 1000mg Infusion?', 'If you vomit in less than 30 minutes after having a dose of Lexpera 1000mg Infusion tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(9324, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'What are the serious side effects of taking an excess of the Lexpera 1000mg Infusion?', 'Overdose of Lexpera 1000mg Infusione may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(9325, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'When will I feel better after taking the Lexpera 1000mg Infusion?', 'Usually, you will start feeling better after about half an hour of taking a Lexpera 1000mg Infusion.'),
(9326, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'Is Lexpera 1000mg Infusion an antibiotic?', 'No, Lexpera 1000mg Infusion is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(9327, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'Is Lexpera 1000mg Infusion safe for children?', 'Lexpera 1000mg Infusion is considered safe for children only when used as directed by the doctor.'),
(9328, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'Can I take Lexpera 1000mg Infusion and ibuprofen together?', 'Ibuprofen and Lexpera 1000mg Infusion are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(9329, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'Does Lexpera 1000mg Infusion make babies sleepy?', 'No, Lexpera 1000mg Infusion does not make babies sleepy. It is a pain-relieving medicine that is also used to control high fever.'),
(9330, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'What if I vomit after taking Lexpera 1000mg Infusion?', 'If you vomit in less than 30 minutes after having a dose of Lexpera 1000mg Infusion tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(9331, 'Lexpera 1000mg Infusion', 'Accilex Nutricorp', 'Lexpera 1000mg Infusion', 'When will I feel better after taking the Lexpera 1000mg Infusion?', 'Usually, you will start feeling better after about half an hour of taking a Lexpera 1000mg Infusion.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9332, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'Is Lexpod 100mg Tablet DT safe to use?', 'Lexpod 100mg Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(9333, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'Can the use of Lexpod 100mg Tablet DT cause diarrhea?', 'Yes, the use of Lexpod 100mg Tablet DT can cause diarrhea. Lexpod 100mg Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(9334, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'Is Lexpod 100mg Tablet DT an antibiotic?', 'Yes, Lexpod 100mg Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(9335, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'Can Lexpod 100mg Tablet DT cause constipation?', 'Yes, Lexpod 100mg Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(9336, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'Can I stop taking Lexpod 100mg Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lexpod 100mg Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(9337, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'How long does Lexpod 100mg Tablet DT take to work?', 'Usually, Lexpod 100mg Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(9338, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'What if I do not get better after using Lexpod 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(9339, 'Lexpod 100mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 100mg Tablet DT', 'Can Lexpod 100mg Tablet DT treat UTI?', 'Yes, Lexpod 100mg Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lexpod 100mg Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(9340, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'Is Lexpod 200mg Tablet DT safe to use?', 'Lexpod 200mg Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(9341, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'Can the use of Lexpod 200mg Tablet DT cause diarrhea?', 'Yes, the use of Lexpod 200mg Tablet DT can cause diarrhea. Lexpod 200mg Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(9342, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'Is Lexpod 200mg Tablet DT an antibiotic?', 'Yes, Lexpod 200mg Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(9343, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'Can Lexpod 200mg Tablet DT cause constipation?', 'Yes, Lexpod 200mg Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(9344, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'Can I stop taking Lexpod 200mg Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lexpod 200mg Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(9345, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'How long does Lexpod 200mg Tablet DT take to work?', 'Usually, Lexpod 200mg Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(9346, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'What if I do not get better after using Lexpod 200mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(9347, 'Lexpod 200mg Tablet DT', 'Med Lex Pharmaceutical', 'Lexpod 200mg Tablet DT (Med Lex Pharmaceutical)', 'Can Lexpod 200mg Tablet DT treat UTI?', 'Yes, Lexpod 200mg Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lexpod 200mg Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(9348, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'Is Lexpod 200mg Tablet DT safe to use?', 'Lexpod 200mg Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(9349, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'Can the use of Lexpod 200mg Tablet DT cause diarrhea?', 'Yes, the use of Lexpod 200mg Tablet DT can cause diarrhea. Lexpod 200mg Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(9350, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'Is Lexpod 200mg Tablet DT an antibiotic?', 'Yes, Lexpod 200mg Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(9351, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'Can Lexpod 200mg Tablet DT cause constipation?', 'Yes, Lexpod 200mg Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(9352, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'Can I stop taking Lexpod 200mg Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lexpod 200mg Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(9353, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'How long does Lexpod 200mg Tablet DT take to work?', 'Usually, Lexpod 200mg Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(9354, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'What if I do not get better after using Lexpod 200mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(9355, 'Lexpod 200mg Tablet DT', 'Medlex Biotechnics Private Limited', 'Lexpod 200mg Tablet DT (Medlex Biotechnics Private Limited)', 'Can Lexpod 200mg Tablet DT treat UTI?', 'Yes, Lexpod 200mg Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lexpod 200mg Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(9356, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'What if I give too much of Lexpod 50mg Dry Syrup by mistake?', 'An extra dose of Lexpod 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lexpod 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(9357, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'Are there any possible serious side effects of Lexpod 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(9358, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'Can other medicines be given at the same time as Lexpod 50mg Dry Syrup?', 'Lexpod 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexpod 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(9359, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lexpod 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9360, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Lexpod 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(9361, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(9362, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(9363, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(9364, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'Can Lexpod 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lexpod 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lexpod 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(9365, 'Lexpod 50mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod 50mg Dry Syrup', 'Can Lexpod 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lexpod 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(9366, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'Is Lexpod Duo 100mg Dry Syrup safe to use?', 'Lexpod Duo 100mg Dry Syrup is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(9367, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'Can the use of Lexpod Duo 100mg Dry Syrup cause diarrhea?', 'Yes, the use of Lexpod Duo 100mg Dry Syrup can cause diarrhea. Lexpod Duo 100mg Dry Syrup is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(9368, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'Is Lexpod Duo 100mg Dry Syrup an antibiotic?', 'Yes, Lexpod Duo 100mg Dry Syrup is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(9369, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'Can Lexpod Duo 100mg Dry Syrup cause constipation?', 'Yes, Lexpod Duo 100mg Dry Syrup may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(9370, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'Can I stop taking Lexpod Duo 100mg Dry Syrup when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lexpod Duo 100mg Dry Syrup before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(9371, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'How long does Lexpod Duo 100mg Dry Syrup take to work?', 'Usually, Lexpod Duo 100mg Dry Syrup starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(9372, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'What if I do not get better after using Lexpod Duo 100mg Dry Syrup?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(9373, 'Lexpod Duo 100mg Dry Syrup', 'Med Lex Pharmaceutical', 'Lexpod Duo 100mg Dry Syrup', 'Can Lexpod Duo 100mg Dry Syrup treat UTI?', 'Yes, Lexpod Duo 100mg Dry Syrup may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lexpod Duo 100mg Dry Syrup. It is advisable to take it only if prescribed by a doctor.'),
(9374, 'Lexpod O 200mg/200mg Tablet', 'Med Lex Pharmaceutical', 'Lexpod O 200mg/200mg Tablet (Med Lex Pharmaceutical)', 'Can Lexpod O 200mg/200mg Tablet be used to treat viral infections?', 'No, Lexpod O 200mg/200mg Tablet is only indicated to treat bacterial infections. It does not treat viral infections (such as common cold and flu).'),
(9375, 'Lexpod O 200mg/200mg Tablet', 'Med Lex Pharmaceutical', 'Lexpod O 200mg/200mg Tablet (Med Lex Pharmaceutical)', 'How to take Lexpod O 200mg/200mg Tablet?', 'Take this medication orally with or without food as directed by your doctor. This medicine is usually taken once a day. Take the medicine for the prescribed period, even if symptoms disappear after a few days.'),
(9376, 'Lexpod O 200mg/200mg Tablet', 'Med Lex Pharmaceutical', 'Lexpod O 200mg/200mg Tablet (Med Lex Pharmaceutical)', 'Can the use of Lexpod O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lexpod O 200mg/200mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(9377, 'Lexpod O 200mg/200mg Tablet', 'Med Lex Pharmaceutical', 'Lexpod O 200mg/200mg Tablet (Med Lex Pharmaceutical)', 'What are the instructions for the storage and disposal of Lexpod O 200mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9378, 'Lexpod O 200mg/200mg Tablet', 'Med Lex Pharmaceutical', 'Lexpod O 200mg/200mg Tablet (Med Lex Pharmaceutical)', 'Can I stop taking Lexpod O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lexpod O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(9379, 'Lexpod O 200mg/200mg Tablet', 'Med Lex Pharmaceutical', 'Lexpod O 200mg/200mg Tablet (Med Lex Pharmaceutical)', 'What if I miss my dose?', 'Take Lexpod O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(9380, 'Lexpod O 200mg/200mg Tablet', 'Med Lex Pharmaceutical', 'Lexpod O 200mg/200mg Tablet (Med Lex Pharmaceutical)', 'What if I don\'t get better after using Lexpod O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(9381, 'Lexpod O 200mg/200mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexpod O 200mg/200mg Tablet (Medlex Biotechnics Private Limited)', 'Can Lexpod O 200mg/200mg Tablet be used to treat viral infections?', 'No, Lexpod O 200mg/200mg Tablet is only indicated to treat bacterial infections. It does not treat viral infections (such as common cold and flu).'),
(9382, 'Lexpod O 200mg/200mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexpod O 200mg/200mg Tablet (Medlex Biotechnics Private Limited)', 'How to take Lexpod O 200mg/200mg Tablet?', 'Take this medication orally with or without food as directed by your doctor. This medicine is usually taken once a day. Take the medicine for the prescribed period, even if symptoms disappear after a few days.'),
(9383, 'Lexpod O 200mg/200mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexpod O 200mg/200mg Tablet (Medlex Biotechnics Private Limited)', 'Can the use of Lexpod O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lexpod O 200mg/200mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(9384, 'Lexpod O 200mg/200mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexpod O 200mg/200mg Tablet (Medlex Biotechnics Private Limited)', 'What are the instructions for the storage and disposal of Lexpod O 200mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9385, 'Lexpod O 200mg/200mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexpod O 200mg/200mg Tablet (Medlex Biotechnics Private Limited)', 'Can I stop taking Lexpod O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lexpod O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(9386, 'Lexpod O 200mg/200mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexpod O 200mg/200mg Tablet (Medlex Biotechnics Private Limited)', 'What if I miss my dose?', 'Take Lexpod O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(9387, 'Lexpod O 200mg/200mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexpod O 200mg/200mg Tablet (Medlex Biotechnics Private Limited)', 'What if I don\'t get better after using Lexpod O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(9388, 'Lexpred 4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpred 4mg Tablet', 'What is Lexpred 4mg Tablet used for?', 'Lexpred 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(9389, 'Lexpred 4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpred 4mg Tablet', 'How does Lexpred 4mg Tablet work?', 'Lexpred 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9390, 'Lexpred 4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpred 4mg Tablet', 'Is Lexpred 4mg Tablet effective?', 'Lexpred 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lexpred 4mg Tablet too early, the symptoms may return or worsen.'),
(9391, 'Lexpred 4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpred 4mg Tablet', 'When will I feel better after taking Lexpred 4mg Tablet?', 'Lexpred 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lexpred 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lexpred 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(9392, 'Lexpred 4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpred 4mg Tablet', 'What if I forget to take a dose of Lexpred 4mg Tablet?', 'If you forget a dose of Lexpred 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9393, 'Lexpred 4mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexpred 4mg Tablet', 'Is Lexpred 4mg Tablet safe?', 'Lexpred 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9394, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'What is Lexslide P 100mg/325mg Tablet?', 'Lexslide P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(9395, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'Can I stop taking Lexslide P 100mg/325mg Tablet when my pain is relieved?', 'Lexslide P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(9396, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'Can the use of Lexslide P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lexslide P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(9397, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lexslide P 100mg/325mg Tablet?', 'The use of Lexslide P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(9398, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'Can I take Lexslide P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Lexslide P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lexslide P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(9399, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'Does Lexslide P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Lexslide P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(9400, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'Can the use of Lexslide P 100mg/325mg Tablet cause damage to the liver?', 'Lexslide P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(9401, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lexslide P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Lexslide P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9402, 'Lexslide P 100mg/325mg Tablet', 'Medlex Biotechnics Private Limited', 'Lexslide P 100mg/325mg Tablet', 'What are the recommended storage conditions for Lexslide P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9403, 'Lextab 50mg Tablet', 'Lexus Organics', 'Lextab 50mg Tablet', 'Can you become addicted to Lextab 50mg Tablet?', 'Yes. If you take Lextab 50mg Tablet too much or for a long time, it may become habit-forming (causing mental or physical dependence) or cause an overdose. So it is important to take it only as directed by your doctor.'),
(9404, 'Lextab 50mg Tablet', 'Lexus Organics', 'Lextab 50mg Tablet', 'What are the risks associated with Lextab 50mg Tablet overdose?', 'Symptoms of an overdose include difficult, fast or slow, or troubled breathing, or pale or blue lips, fingernails, or skin. Call your doctor right away if you notice these symptoms.'),
(9405, 'Lextab 50mg Tablet', 'Lexus Organics', 'Lextab 50mg Tablet', 'What should I avoid while taking Lextab 50mg Tablet?', 'It is advisable to avoid alcohol, driving, or indulging in any hazardous activity while taking this medicine.'),
(9406, 'Lextab 50mg Tablet', 'Lexus Organics', 'Lextab 50mg Tablet', 'Are there any alternatives to Lextab 50mg Tablet?', 'There are many alternatives to this medicine. However, you should always check with your doctor or pharmacist before making any change to the dosage or type of medicine you take.'),
(9407, 'Lextab 50mg Tablet', 'Lexus Organics', 'Lextab 50mg Tablet', 'How to dispose of Lextab 50mg Tablet safely?', 'Since Lextab 50mg Tablet is an opioid medicine, it\'s important you dispose of any unwanted medicine safely as it can lead to inappropriate use. Simply remove the medicine from their original packet and mix them with something undesirable, such as used coffee grounds, dirt, or cat/dog litter. This makes the medicine less appealing to children and pets and unrecognizable to someone who might intentionally go through the trash looking for drugs. After this put the mixture in something you can close (a re-sealable zipper storage bag to prevent the drug from leaking or spilling out. Finally, throw the bag in the garbage.'),
(9408, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'What is Lextam 4000mg/500mg Injection?', 'Lextam 4000mg/500mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(9409, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'Is it safe to use Lextam 4000mg/500mg Injection?', 'Lextam 4000mg/500mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(9410, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'How is Lextam 4000mg/500mg Injection administered?', 'Lextam 4000mg/500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lextam 4000mg/500mg Injection.'),
(9411, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'Are there any specific cautions associated with the use of Lextam 4000mg/500mg Injection?', 'The use of Lextam 4000mg/500mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lextam 4000mg/500mg Injection.'),
(9412, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'Can the use of Lextam 4000mg/500mg Injection cause contraceptive failure?', 'Yes, the use of Lextam 4000mg/500mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lextam 4000mg/500mg Injection.'),
(9413, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'Can I take a higher than the recommended dose of Lextam 4000mg/500mg Injection?', 'No, Lextam 4000mg/500mg Injection should be used in the recommended dose only. Overdose of Lextam 4000mg/500mg Injection can increase the risks of side effects. Lextam 4000mg/500mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(9414, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'What are the instructions for the storage and disposal of Lextam 4000mg/500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9415, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'Can Lextam 4000mg/500mg Injection cause an allergic reaction?', 'Yes, Lextam 4000mg/500mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(9416, 'Lextam 4000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lextam 4000mg/500mg Injection', 'Can the use of Lextam 4000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lextam 4000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(9417, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'How long does it take for Lextar 10mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lextar 10mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(9418, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'What are the most common side effects of Lextar 10mg Tablet?', 'The most common side effects of Lextar 10mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lextar 10mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(9419, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'What is Lextar 10mg Tablet used for?', 'Lextar 10mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(9420, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'Is Lextar 10mg Tablet dangerous?', 'The use of Lextar 10mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lextar 10mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lextar 10mg Tablet.'),
(9421, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'Is Lextar 10mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lextar 10mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(9422, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'Can I stop taking Lextar 10mg Tablet on my own?', 'Lextar 10mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(9423, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(9424, 'Lextar 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 10mg Tablet', 'What if I accidentally take more than the recommended dose of Lextar 10mg Tablet?', 'If you accidentally take more than the recommended dose of Lextar 10mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(9425, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'How long does it take for Lextar 20mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lextar 20mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(9426, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'What are the most common side effects of Lextar 20mg Tablet?', 'The most common side effects of Lextar 20mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lextar 20mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(9427, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'What is Lextar 20mg Tablet used for?', 'Lextar 20mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(9428, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'Is Lextar 20mg Tablet dangerous?', 'The use of Lextar 20mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lextar 20mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lextar 20mg Tablet.'),
(9429, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'Is Lextar 20mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lextar 20mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(9430, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'Can I stop taking Lextar 20mg Tablet on my own?', 'Lextar 20mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(9431, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(9432, 'Lextar 20mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 20mg Tablet', 'What if I accidentally take more than the recommended dose of Lextar 20mg Tablet?', 'If you accidentally take more than the recommended dose of Lextar 20mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(9433, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'How long does it take for Lextar 5mg Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lextar 5mg Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(9434, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'What are the most common side effects of Lextar 5mg Tablet?', 'The most common side effects of Lextar 5mg Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lextar 5mg Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(9435, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'What is Lextar 5mg Tablet used for?', 'Lextar 5mg Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(9436, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'Is Lextar 5mg Tablet dangerous?', 'The use of Lextar 5mg Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lextar 5mg Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lextar 5mg Tablet.'),
(9437, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'Is Lextar 5mg Tablet better taken at night or in the morning?', 'It is usually recommended to take Lextar 5mg Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(9438, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'Can I stop taking Lextar 5mg Tablet on my own?', 'Lextar 5mg Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(9439, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(9440, 'Lextar 5mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar 5mg Tablet', 'What if I accidentally take more than the recommended dose of Lextar 5mg Tablet?', 'If you accidentally take more than the recommended dose of Lextar 5mg Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(9441, 'Lextar Plus 0.5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar Plus 0.5mg/10mg Tablet', 'What is Lextar Plus 0.5mg/10mg Tablet?', 'Lextar Plus 0.5mg/10mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9442, 'Lextar Plus 0.5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar Plus 0.5mg/10mg Tablet', 'Can the Lextar Plus 0.5mg/10mg Tablet cause sleepiness or drowsiness?', 'Lextar Plus 0.5mg/10mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(9443, 'Lextar Plus 0.5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar Plus 0.5mg/10mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lextar Plus 0.5mg/10mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9444, 'Lextar Plus 0.5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar Plus 0.5mg/10mg Tablet', 'Any special instruction regarding storage and disposal of Lextar Plus 0.5mg/10mg Tablet?', 'Keep Lextar Plus 0.5mg/10mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(9445, 'Lextar Plus 0.5mg/10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Lextar Plus 0.5mg/10mg Tablet', 'Can I stop taking Lextar Plus 0.5mg/10mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lextar Plus 0.5mg/10mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(9446, 'Lexter Cough Syrup Sugar Free', 'Reko Medikament', 'Lexter Cough Syrup Sugar Free', 'Can the use of Lexter Cough Syrup Sugar Free cause sleepiness or drowsiness?', 'Yes, Lexter Cough Syrup Sugar Free may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(9447, 'Lexter Cough Syrup Sugar Free', 'Reko Medikament', 'Lexter Cough Syrup Sugar Free', 'Will Lexter Cough Syrup Sugar Free be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9448, 'Lexter Cough Syrup Sugar Free', 'Reko Medikament', 'Lexter Cough Syrup Sugar Free', 'Can I breastfeed while taking Lexter Cough Syrup Sugar Free?', 'No, it is not advisable to breastfeed while using Lexter Cough Syrup Sugar Free. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(9449, 'Lexter Cough Syrup Sugar Free', 'Reko Medikament', 'Lexter Cough Syrup Sugar Free', 'What are the instructions for storage and disposal of Lexter Cough Syrup Sugar Free?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9450, 'Lextroid 16mg Tablet', 'Lexus Organics', 'Lextroid 16mg Tablet', 'What is Lextroid 16mg Tablet used for?', 'Lextroid 16mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(9451, 'Lextroid 16mg Tablet', 'Lexus Organics', 'Lextroid 16mg Tablet', 'How does Lextroid 16mg Tablet work?', 'Lextroid 16mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9452, 'Lextroid 16mg Tablet', 'Lexus Organics', 'Lextroid 16mg Tablet', 'Is Lextroid 16mg Tablet effective?', 'Lextroid 16mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lextroid 16mg Tablet too early, the symptoms may return or worsen.'),
(9453, 'Lextroid 16mg Tablet', 'Lexus Organics', 'Lextroid 16mg Tablet', 'When will I feel better after taking Lextroid 16mg Tablet?', 'Lextroid 16mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lextroid 16mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lextroid 16mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(9454, 'Lextroid 16mg Tablet', 'Lexus Organics', 'Lextroid 16mg Tablet', 'What if I forget to take a dose of Lextroid 16mg Tablet?', 'If you forget a dose of Lextroid 16mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9455, 'Lextroid 16mg Tablet', 'Lexus Organics', 'Lextroid 16mg Tablet', 'Is Lextroid 16mg Tablet safe?', 'Lextroid 16mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9456, 'Lextroid 4mg Tablet', 'Lexus Organics', 'Lextroid 4mg Tablet', 'What is Lextroid 4mg Tablet used for?', 'Lextroid 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(9457, 'Lextroid 4mg Tablet', 'Lexus Organics', 'Lextroid 4mg Tablet', 'How does Lextroid 4mg Tablet work?', 'Lextroid 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9458, 'Lextroid 4mg Tablet', 'Lexus Organics', 'Lextroid 4mg Tablet', 'Is Lextroid 4mg Tablet effective?', 'Lextroid 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lextroid 4mg Tablet too early, the symptoms may return or worsen.'),
(9459, 'Lextroid 4mg Tablet', 'Lexus Organics', 'Lextroid 4mg Tablet', 'When will I feel better after taking Lextroid 4mg Tablet?', 'Lextroid 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lextroid 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lextroid 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(9460, 'Lextroid 4mg Tablet', 'Lexus Organics', 'Lextroid 4mg Tablet', 'What if I forget to take a dose of Lextroid 4mg Tablet?', 'If you forget a dose of Lextroid 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9461, 'Lextroid 4mg Tablet', 'Lexus Organics', 'Lextroid 4mg Tablet', 'Is Lextroid 4mg Tablet safe?', 'Lextroid 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9462, 'Lextroid 8mg Tablet', 'Lexus Organics', 'Lextroid 8mg Tablet', 'What is Lextroid 8mg Tablet used for?', 'Lextroid 8mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(9463, 'Lextroid 8mg Tablet', 'Lexus Organics', 'Lextroid 8mg Tablet', 'How does Lextroid 8mg Tablet work?', 'Lextroid 8mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9464, 'Lextroid 8mg Tablet', 'Lexus Organics', 'Lextroid 8mg Tablet', 'Is Lextroid 8mg Tablet effective?', 'Lextroid 8mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lextroid 8mg Tablet too early, the symptoms may return or worsen.'),
(9465, 'Lextroid 8mg Tablet', 'Lexus Organics', 'Lextroid 8mg Tablet', 'When will I feel better after taking Lextroid 8mg Tablet?', 'Lextroid 8mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lextroid 8mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lextroid 8mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(9466, 'Lextroid 8mg Tablet', 'Lexus Organics', 'Lextroid 8mg Tablet', 'What if I forget to take a dose of Lextroid 8mg Tablet?', 'If you forget a dose of Lextroid 8mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9467, 'Lextroid 8mg Tablet', 'Lexus Organics', 'Lextroid 8mg Tablet', 'Is Lextroid 8mg Tablet safe?', 'Lextroid 8mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9468, 'Lexvom 2mg Injection', 'Celaxis Biotech', 'Lexvom 2mg Injection', 'Q. How quickly does Lexvom 2mg Injection work?', 'Lexvom 2mg Injection starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(9469, 'Lexvom 2mg Injection', 'Celaxis Biotech', 'Lexvom 2mg Injection', 'Q. What are the side effects of Lexvom 2mg Injection?', 'The most common side effects of Lexvom 2mg Injection are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(9470, 'Lexvom 2mg Injection', 'Celaxis Biotech', 'Lexvom 2mg Injection', 'Q. Is Lexvom 2mg Injection a steroid?', 'No, Lexvom 2mg Injection is an antiemetic and not a steroid. Lexvom 2mg Injection is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(9471, 'Lexvom 2mg Injection', 'Celaxis Biotech', 'Lexvom 2mg Injection', 'Q. Does Lexvom 2mg Injection work for seasickness?', 'No, Lexvom 2mg Injection does not work for seasickness. This is because Lexvom 2mg Injection has very little effect on the nausea associated with motion sickness.'),
(9472, 'Lexvom 4mg Tablet', 'Celaxis Biotech', 'Lexvom 4mg Tablet', 'How quickly does Lexvom 4mg Tablet work?', 'Lexvom 4mg Tablet starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(9473, 'Lexvom 4mg Tablet', 'Celaxis Biotech', 'Lexvom 4mg Tablet', 'What are the side effects of Lexvom 4mg Tablet?', 'The most common side effects of Lexvom 4mg Tablet are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(9474, 'Lexvom 4mg Tablet', 'Celaxis Biotech', 'Lexvom 4mg Tablet', 'When should you take Lexvom 4mg Tablet?', 'Lexvom 4mg Tablet should be taken with a full glass of water, with or without food. It should be used exactly as per the dose and duration advised by the doctor. Usually, the first dose of Lexvom 4mg Tablet is taken before the start of your surgery, chemotherapy or radiation treatment.'),
(9475, 'Lexvom 4mg Tablet', 'Celaxis Biotech', 'Lexvom 4mg Tablet', 'Is Lexvom 4mg Tablet a steroid?', 'No, Lexvom 4mg Tablet is an antiemetic and not a steroid. Lexvom 4mg Tablet is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(9476, 'Lexvom 4mg Tablet', 'Celaxis Biotech', 'Lexvom 4mg Tablet', 'Does Lexvom 4mg Tablet work for seasickness?', 'No, Lexvom 4mg Tablet does not work for seasickness. This is because Lexvom 4mg Tablet has very little effect on the nausea associated with motion sickness.'),
(9477, 'Lexxa 500mg Tablet', 'Archicare Limited', 'Lexxa 500mg Tablet', 'Is Lexxa 500mg Tablet safe?', 'Lexxa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9478, 'Lexxa 500mg Tablet', 'Archicare Limited', 'Lexxa 500mg Tablet', 'What if I forget to take a dose of Lexxa 500mg Tablet?', 'If you forget a dose of Lexxa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9479, 'Lexxa 500mg Tablet', 'Archicare Limited', 'Lexxa 500mg Tablet', 'Can the use of Lexxa 500mg Tablet cause diarrhea?', 'Yes, the use of Lexxa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9480, 'Lexxa 500mg Tablet', 'Archicare Limited', 'Lexxa 500mg Tablet', 'Can I stop taking Lexxa 500mg Tablet when I feel better?', 'No, do not stop taking Lexxa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lexxa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lexxa 500mg Tablet in the dose and duration advised by the doctor.'),
(9481, 'Lexxa 500mg Tablet', 'Archicare Limited', 'Lexxa 500mg Tablet', 'Can the use of Lexxa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lexxa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lexxa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9482, 'Lexxa O 250mg/500mg Tablet', 'Archicare Limited', 'Lexxa O 250mg/500mg Tablet', 'What if I don\'t get better after using Lexxa O 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(9483, 'Lexxa O 250mg/500mg Tablet', 'Archicare Limited', 'Lexxa O 250mg/500mg Tablet', 'Can I stop taking Lexxa O 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Lexxa O 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(9484, 'Lexxa O 250mg/500mg Tablet', 'Archicare Limited', 'Lexxa O 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Lexxa O 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(9485, 'Lexy LB 500mg/60Million spores Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexy LB 500mg/60Million spores Capsule', 'Are there any possible serious side effects of Lexy LB 500mg/60Million spores Capsule?', 'Although rare, Lexy LB 500mg/60Million spores Capsule may cause some serious side effects such as persistent vomiting, kidney damage, and allergy. Always consult your child’s doctor for help in such a situation.'),
(9486, 'Lexy LB 500mg/60Million spores Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexy LB 500mg/60Million spores Capsule', 'Can other medicines be given at the same time as Lexy LB 500mg/60Million spores Capsule?', 'Lexy LB 500mg/60Million spores Capsule can sometimes interact with other medicines or substances. Inform your doctor about any other medicines your child is taking before starting Lexy LB 500mg/60Million spores Capsule.'),
(9487, 'Lexy LB 500mg/60Million spores Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexy LB 500mg/60Million spores Capsule', 'Can I get my child vaccinated while on treatment with Lexy LB 500mg/60Million spores Capsule?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they fully recover from the illness. Post recovery from illness, the child can take the vaccine after consulting the doctor.'),
(9488, 'Lexy LB 500mg/60Million spores Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexy LB 500mg/60Million spores Capsule', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'In the common cold, the mucus changes its color and thickens up with time, but this does not mean that your child needs antibiotics. Common cold symptoms often last for 7-10 days. In case they fail to clear up within this duration, reach out to your child’s doctor for guidance.'),
(9489, 'Lexy LB 500mg/60Million spores Capsule', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexy LB 500mg/60Million spores Capsule', 'Is Lexy LB 500mg/60Million spores Capsule safe for children suffering from infectious mononucleosis?', 'No, do not give this medicine to your child in this case as a high percentage of children with infectious mononucleosis develop a skin rash (erythematous rash) while taking Lexy LB 500mg/60Million spores Capsule.'),
(9490, 'Lexzin 5mg Tablet', 'Lexus Organics', 'Lexzin 5mg Tablet', 'Is Lexzin 5mg Tablet a steroid? What is it used for?', 'No, Lexzin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9491, 'Lexzin 5mg Tablet', 'Lexus Organics', 'Lexzin 5mg Tablet', 'Does Lexzin 5mg Tablet make you tired and drowsy?', 'Yes, Lexzin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9492, 'Lexzin 5mg Tablet', 'Lexus Organics', 'Lexzin 5mg Tablet', 'How long does it take for Lexzin 5mg Tablet to work?', 'Lexzin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9493, 'Lexzin 5mg Tablet', 'Lexus Organics', 'Lexzin 5mg Tablet', 'Can I take Lexzin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lexzin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9494, 'Lexzin 5mg Tablet', 'Lexus Organics', 'Lexzin 5mg Tablet', 'Is it safe to take Lexzin 5mg Tablet for a long time?', 'Lexzin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lexzin 5mg Tablet for only as long as you need it.'),
(9495, 'Lexzin 5mg Tablet', 'Lexus Organics', 'Lexzin 5mg Tablet', 'For how long should I continue Lexzin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lexzin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lexzin 5mg Tablet'),
(9496, 'Lexzin FX 10mg/120mg Tablet', 'Lexus Organics', 'Lexzin FX 10mg/120mg Tablet', 'What is Lexzin FX 10mg/120mg Tablet ?', 'Lexzin FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(9497, 'Lexzin FX 10mg/120mg Tablet', 'Lexus Organics', 'Lexzin FX 10mg/120mg Tablet', 'Can Lexzin FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lexzin FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Lexzin FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(9498, 'Lexzin FX 10mg/120mg Tablet', 'Lexus Organics', 'Lexzin FX 10mg/120mg Tablet', 'Can the use of Lexzin FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Lexzin FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(9499, 'Lexzin FX 10mg/120mg Tablet', 'Lexus Organics', 'Lexzin FX 10mg/120mg Tablet', 'What should be avoided in food while taking Lexzin FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Lexzin FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Lexzin FX 10mg/120mg Tablet.'),
(9500, 'Lexzin FX 10mg/120mg Tablet', 'Lexus Organics', 'Lexzin FX 10mg/120mg Tablet', 'Will Lexzin FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9501, 'Lexzin FX 10mg/120mg Tablet', 'Lexus Organics', 'Lexzin FX 10mg/120mg Tablet', 'What is the recommended storage condition for Lexzin FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9502, 'Lexzin MK 5mg/10mg Tablet', 'Lexus Organics', 'Lexzin MK 5mg/10mg Tablet', 'What is Lexzin MK 5mg/10mg Tablet?', 'Lexzin MK 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9503, 'Lexzin MK 5mg/10mg Tablet', 'Lexus Organics', 'Lexzin MK 5mg/10mg Tablet', 'Can the use of Lexzin MK 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lexzin MK 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9504, 'Lexzin MK 5mg/10mg Tablet', 'Lexus Organics', 'Lexzin MK 5mg/10mg Tablet', 'Can Lexzin MK 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lexzin MK 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9505, 'Lexzin MK 5mg/10mg Tablet', 'Lexus Organics', 'Lexzin MK 5mg/10mg Tablet', 'Can the use of Lexzin MK 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lexzin MK 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9506, 'Lexzin MK 5mg/10mg Tablet', 'Lexus Organics', 'Lexzin MK 5mg/10mg Tablet', 'Can I drink alcohol while taking Lexzin MK 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lexzin MK 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lexzin MK 5mg/10mg Tablet.'),
(9507, 'Lexzin MK 5mg/10mg Tablet', 'Lexus Organics', 'Lexzin MK 5mg/10mg Tablet', 'Will Lexzin MK 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lexzin MK 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9508, 'Lexzin MK 5mg/10mg Tablet', 'Lexus Organics', 'Lexzin MK 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lexzin MK 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9509, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(9510, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Lexzin MK Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(9511, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'How should Lexzin MK Kid 2.5mg/4mg Tablet be stored?', 'Lexzin MK Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9512, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Can Lexzin MK Kid 2.5mg/4mg Tablet make my child sleepy?', 'Lexzin MK Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(9513, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lexzin MK Kid 2.5mg/4mg Tablet?', 'No, don’t start Lexzin MK Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Lexzin MK Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(9514, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lexzin MK Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(9515, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Lexzin MK Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Lexzin MK Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(9516, 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Lexus Organics', 'Lexzin MK Kid 2.5mg/4mg Tablet', 'Can I use Lexzin MK Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Lexzin MK Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(9517, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'What if I give too much of Lexzith 200mg Oral Suspension by mistake?', 'Lexzith 200mg Oral Suspension is unlikely to cause any harm if an extra dose is given by mistake. However, if you think you have given too much of Lexzith 200mg Oral Suspension to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(9518, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Are there any possible serious side effects of Lexzith 200mg Oral Suspension?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(9519, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Can other medicines be given at the same time as Lexzith 200mg Oral Suspension?', 'Lexzith 200mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexzith 200mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9520, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexzith 200mg Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9521, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Which all lab tests should my child undergo while taking Lexzith 200mg Oral Suspension on a long term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(9522, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Can Lexzith 200mg Oral Suspension impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking medicines. When antibiotics are given, the good bacteria in their gastrointestinal tract may too get affected.  Lexzith 200mg Oral Suspension may kill off good bacteria along with the bad ones, increasing your child’s risk of developing other infections. So, in case your child is having diarrhea while on Lexzith 200mg Oral Suspension, do not stop the medicine course. Instead, call your child’s doctor to ask the next steps. In some cases, the doctor may alter the dose.'),
(9523, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Why is Lexzith 200mg Oral Suspension given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lexzith 200mg Oral Suspension is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regimen advised by your doctor.'),
(9524, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'What should I avoid while taking Lexzith 200mg Oral Suspension?', 'Generally, it is recommended that patients taking Lexzith 200mg Oral Suspension should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lexzith 200mg Oral Suspension. It is also recommended to avoid exposure to sunlight or tanning beds as Lexzith 200mg Oral Suspension increases the risk of sunburn.'),
(9525, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Is Lexzith 200mg Oral Suspension a strong antibiotic?', 'Lexzith 200mg Oral Suspension is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lexzith 200mg Oral Suspension has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(9526, 'Lexzith 200mg Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith 200mg Oral Suspension', 'Can you get a yeast infection from taking Lexzith 200mg Oral Suspension?', 'Some people may get a fungal or yeast infection known as thrush after taking Lexzith 200mg Oral Suspension. Antibiotics such as Lexzith 200mg Oral Suspension can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lexzith 200mg Oral Suspension or soon after stopping it.'),
(9527, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'What if I give too much of Lexzith Oral Suspension by mistake?', 'Lexzith Oral Suspension is unlikely to cause any harm if an extra dose is given by mistake. However, if you think you have given too much of Lexzith Oral Suspension to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(9528, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Are there any possible serious side effects of Lexzith Oral Suspension?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(9529, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Can other medicines be given at the same time as Lexzith Oral Suspension?', 'Lexzith Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lexzith Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(9530, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Can I get my child vaccinated while on treatment with Lexzith Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(9531, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Which all lab tests should my child undergo while taking Lexzith Oral Suspension on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(9532, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Can Lexzith Oral Suspension impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking medicines. When antibiotics are given, the good bacteria in their gastrointestinal tract may too get affected.  Lexzith Oral Suspension may kill off good bacteria along with the bad ones, increasing your child’s risk of developing other infections. So, in case your child is having diarrhea while on Lexzith Oral Suspension, do not stop the medicine course. Instead, call your child’s doctor to ask the next steps. In some cases, the doctor may alter the dose.'),
(9533, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Why is Lexzith Oral Suspension given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lexzith Oral Suspension is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regimen advised by your doctor.'),
(9534, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'What should I avoid while taking Lexzith Oral Suspension?', 'Generally, it is recommended that patients taking Lexzith Oral Suspension should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lexzith Oral Suspension. It is also recommended to avoid exposure to sunlight or tanning beds as Lexzith Oral Suspension increases the risk of sunburn.'),
(9535, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Is Lexzith Oral Suspension a strong antibiotic?', 'Lexzith Oral Suspension is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lexzith Oral Suspension has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(9536, 'Lexzith Oral Suspension', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzith Oral Suspension', 'Can you get a yeast infection from taking Lexzith Oral Suspension?', 'Some people may get a fungal or yeast infection known as thrush after taking Lexzith Oral Suspension. Antibiotics such as Lexzith Oral Suspension can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lexzith Oral Suspension or soon after stopping it.'),
(9537, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'What is Lexzol-D Capsule PR?', 'Lexzol-D Capsule PR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(9538, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'Is it safe to use Lexzol-D Capsule PR?', 'Lexzol-D Capsule PR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(9539, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'Are there any specific contraindications associated with the use of Lexzol-D Capsule PR?', 'The use of Lexzol-D Capsule PR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(9540, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'Can the use of Lexzol-D Capsule PR cause dry mouth?', 'Yes, the use of Lexzol-D Capsule PR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(9541, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'Can the use of Lexzol-D Capsule PR cause diarrhea?', 'Yes, the use of Lexzol-D Capsule PR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(9542, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'What are the instructions for storage and disposal of Lexzol-D Capsule PR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9543, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'What is Lexzol-D Capsule PR price?', 'You can get Lexzol-D Capsule PR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(9544, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'While taking Lexzol-D Capsule PR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(9545, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'Can I take alcohol while taking Lexzol-D Capsule PR?', 'No, alcohol intake is not advised with Lexzol-D Capsule PR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(9546, 'Lexzol-D Capsule PR', 'Lexmae Pharmaceuticals Pvt Ltd', 'Lexzol-D Capsule PR', 'Can I stop taking Lexzol-D Capsule PR if I feel better?', 'If you have been taking Lexzol-D Capsule PR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(9547, 'Lexzone SB 1000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzone SB 1000mg/500mg Injection', 'What is Lexzone SB 1000mg/500mg Injection?', 'Lexzone SB 1000mg/500mg Injection is a combination of two medicines: Cefoperazone and Sulbactam. Cefoperazone is an antibiotic which works by preventing the formation of the bacterial protective covering which is essential for the survival of bacteria. Sulbactam is a beta-lactamase inhibitor which reduces resistance and enhances the activity of Cefoperazone against bacteria.'),
(9548, 'Lexzone SB 1000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzone SB 1000mg/500mg Injection', 'How long does Lexzone SB 1000mg/500mg Injection takes to work?', 'Usually, Lexzone SB 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(9549, 'Lexzone SB 1000mg/500mg Injection', 'Alexcure Lifesciences Pvt. Ltd.', 'Lexzone SB 1000mg/500mg Injection', 'What if I don\'t get better after using Lexzone SB 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(9550, 'Ley 5mg Tablet', 'Saivay Medilinks', 'Ley 5mg Tablet', 'Is Ley 5mg Tablet a steroid? What is it used for?', 'No, Ley 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9551, 'Ley 5mg Tablet', 'Saivay Medilinks', 'Ley 5mg Tablet', 'Does Ley 5mg Tablet make you tired and drowsy?', 'Yes, Ley 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9552, 'Ley 5mg Tablet', 'Saivay Medilinks', 'Ley 5mg Tablet', 'How long does it take for Ley 5mg Tablet to work?', 'Ley 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9553, 'Ley 5mg Tablet', 'Saivay Medilinks', 'Ley 5mg Tablet', 'Can I take Ley 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Ley 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9554, 'Ley 5mg Tablet', 'Saivay Medilinks', 'Ley 5mg Tablet', 'Is it safe to take Ley 5mg Tablet for a long time?', 'Ley 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Ley 5mg Tablet for only as long as you need it.'),
(9555, 'Ley 5mg Tablet', 'Saivay Medilinks', 'Ley 5mg Tablet', 'For how long should I continue Ley 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Ley 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Ley 5mg Tablet'),
(9556, 'Ley M 5mg/10mg Tablet', 'Saivay Medilinks', 'Ley M 5mg/10mg Tablet', 'What is Ley M 5mg/10mg Tablet?', 'Ley M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9557, 'Ley M 5mg/10mg Tablet', 'Saivay Medilinks', 'Ley M 5mg/10mg Tablet', 'Can the use of Ley M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Ley M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9558, 'Ley M 5mg/10mg Tablet', 'Saivay Medilinks', 'Ley M 5mg/10mg Tablet', 'Can Ley M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Ley M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9559, 'Ley M 5mg/10mg Tablet', 'Saivay Medilinks', 'Ley M 5mg/10mg Tablet', 'Can the use of Ley M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Ley M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9560, 'Ley M 5mg/10mg Tablet', 'Saivay Medilinks', 'Ley M 5mg/10mg Tablet', 'Can I drink alcohol while taking Ley M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Ley M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Ley M 5mg/10mg Tablet.'),
(9561, 'Ley M 5mg/10mg Tablet', 'Saivay Medilinks', 'Ley M 5mg/10mg Tablet', 'Will Ley M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Ley M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9562, 'Ley M 5mg/10mg Tablet', 'Saivay Medilinks', 'Ley M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Ley M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9563, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(9564, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. Can I decrease the dose of Ley M Kid 2.5mg/5mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(9565, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. How should Ley M Kid 2.5mg/5mg Tablet be stored?', 'Ley M Kid 2.5mg/5mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9566, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. Can Ley M Kid 2.5mg/5mg Tablet make my child sleepy?', 'Ley M Kid 2.5mg/5mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(9567, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Ley M Kid 2.5mg/5mg Tablet?', 'No, don’t start Ley M Kid 2.5mg/5mg Tablet without speaking to your child’s doctor. Moreover, Ley M Kid 2.5mg/5mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(9568, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Ley M Kid 2.5mg/5mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(9569, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. My child is suffering from a mood disorder. Is it safe to give Ley M Kid 2.5mg/5mg Tablet to my child?', 'Some studies show that Ley M Kid 2.5mg/5mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(9570, 'Ley M Kid 2.5mg/5mg Tablet', 'Saivay Medilinks', 'Ley M Kid 2.5mg/5mg Tablet', 'Q. Can I use Ley M Kid 2.5mg/5mg Tablet for treating acute asthma attacks in my child?', 'Ley M Kid 2.5mg/5mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(9571, 'Leyes 5mg Tablet', 'Zee Laboratories', 'Leyes 5mg Tablet', 'Q. Is Leyes 5mg Tablet a steroid? What is it used for?', 'No, Leyes 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9572, 'Leyes 5mg Tablet', 'Zee Laboratories', 'Leyes 5mg Tablet', 'Q. Does Leyes 5mg Tablet make you tired and drowsy?', 'Yes, Leyes 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9573, 'Leyes 5mg Tablet', 'Zee Laboratories', 'Leyes 5mg Tablet', 'Q. How long does it take for Leyes 5mg Tablet to work?', 'Leyes 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9574, 'Leyes 5mg Tablet', 'Zee Laboratories', 'Leyes 5mg Tablet', 'Q. Can I take Leyes 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Leyes 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9575, 'Leyes 5mg Tablet', 'Zee Laboratories', 'Leyes 5mg Tablet', 'Q. Is it safe to take Leyes 5mg Tablet for a long time?', 'Leyes 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Leyes 5mg Tablet for only as long as you need it.'),
(9576, 'Leyes 5mg Tablet', 'Zee Laboratories', 'Leyes 5mg Tablet', 'Q. For how long should I continue Leyes 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Leyes 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Leyes 5mg Tablet'),
(9577, 'Leyflaza 30mg Tablet', 'Inox Health Pvt Ltd', 'Leyflaza 30mg Tablet', 'Is Leyflaza 30mg Tablet a steroid?', 'Yes, Leyflaza 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Leyflaza 30mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(9578, 'Leyflaza 30mg Tablet', 'Inox Health Pvt Ltd', 'Leyflaza 30mg Tablet', 'What is Leyflaza 30mg Tablet used for?', 'Leyflaza 30mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(9579, 'Leyflaza 30mg Tablet', 'Inox Health Pvt Ltd', 'Leyflaza 30mg Tablet', 'How does Leyflaza 30mg Tablet work?', 'Leyflaza 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9580, 'Leyflaza 30mg Tablet', 'Inox Health Pvt Ltd', 'Leyflaza 30mg Tablet', 'Is Leyflaza 30mg Tablet better than Prednisone?', 'Clinical studies have shown that Leyflaza 30mg Tablet has a similar effect as that of prednisone. Moreover, Leyflaza 30mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(9581, 'Leyflaza 30mg Tablet', 'Inox Health Pvt Ltd', 'Leyflaza 30mg Tablet', 'Is Leyflaza 30mg Tablet a painkiller?', 'No, Leyflaza 30mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(9582, 'Leyflaza 30mg Tablet', 'Inox Health Pvt Ltd', 'Leyflaza 30mg Tablet', 'Can I take Leyflaza 30mg Tablet with Tamsulosin?', 'Yes, Leyflaza 30mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(9583, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'What is Leygab-NT Tablet?', 'Leygab-NT Tablet is a combination of two medicines: Pregabalin and Nortriptyline. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain. Thereby, decreasing the pain sensation.'),
(9584, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'Can I stop taking Leygab-NT Tablet when my pain is relieved?', 'No, you should not stop taking Leygab-NT Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Leygab-NT Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.'),
(9585, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'How to manage weight gain associated with the use of Leygab-NT Tablet?', 'Leygab-NT Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight.. However, preventing weight gain is easier than losing increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). DO not eat foods that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(9586, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'Can the use of Leygab-NT Tablet cause sleepiness or drowsiness?', 'Yes, Leygab-NT Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(9587, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'Can the use of Leygab-NT Tablet affect my sexual life?', 'The use of Leygab-NT Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Leygab-NT Tablet.'),
(9588, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'Are there any serious side effects associated with the use of Leygab-NT Tablet?', 'Serious side effects because of Leygab-NT Tablet are uncommon and rare. Consult your doctor if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(9589, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'How long will the Leygab-NT Tablet take to act?', 'An initial benefit with Leygab-NT Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months to see full benefit. It may even take longer in some patients.'),
(9590, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'What if I forget to take Leygab-NT Tablet?', 'If you forget to take the scheduled dose of Leygab-NT Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(9591, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Symptoms of an overdose may include drowsiness, weakness, unsteadiness while walking, having double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(9592, 'Leygab-NT Tablet', 'Stanley Medicare Pvt Ltd', 'Leygab-NT Tablet', 'Will Leygab-NT Tablet be more effective if a higher than the recommended dosage is taken?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9593, 'Leyork 500 Tablet', 'Prosem Healthcare Private Limited', 'Leyork 500 Tablet', 'Is Leyork 500 Tablet safe?', 'Leyork 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9594, 'Leyork 500 Tablet', 'Prosem Healthcare Private Limited', 'Leyork 500 Tablet', 'What if I forget to take a dose of Leyork 500 Tablet?', 'If you forget a dose of Leyork 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9595, 'Leyork 500 Tablet', 'Prosem Healthcare Private Limited', 'Leyork 500 Tablet', 'Can the use of Leyork 500 Tablet cause diarrhea?', 'Yes, the use of Leyork 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9596, 'Leyork 500 Tablet', 'Prosem Healthcare Private Limited', 'Leyork 500 Tablet', 'Can I stop taking Leyork 500 Tablet when I feel better?', 'No, do not stop taking Leyork 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Leyork 500 Tablet too early, the symptoms may return or worsen. Continue taking Leyork 500 Tablet in the dose and duration advised by the doctor.'),
(9597, 'Leyork 500 Tablet', 'Prosem Healthcare Private Limited', 'Leyork 500 Tablet', 'Can the use of Leyork 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Leyork 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Leyork 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9598, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'Why have I been prescribed Lez 2.5 Tablet?', 'Lez 2.5 Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(9599, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'How does Lez 2.5 Tablet work?', 'Lez 2.5 Tablet is also known as an anti-estrogen drug. It is called so because it acts by reducing the production of estrogen in your body by blocking the enzyme aromatase, which is responsible for the production of estrogen. Estrogen stimulates the production of certain types of breast cancer in your body. These cancers are called \'__\'estrogen-dependent cancers\'__\'. Reducing the production of estrogen may prevent cancer from growing.'),
(9600, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'For how long should I take Lez 2.5 Tablet?', 'If the breast tumor is in the advanced stage or has spread to other parts of the body, it is recommended that you continue taking Lez 2.5 Tablet till the tumor shows progression. In cases where Lez 2.5 Tablet is given after tamoxifen (another anti-estrogen used for breast cancer) or surgery, it should be given for 5 years or until the tumor comes back, whichever is first. It can also be given as a sequential treatment; 2 years of Lez 2.5 Tablet followed by 3 years of tamoxifen.'),
(9601, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'If I am taking irbesartan to control my blood pressure, can I take Lez 2.5 Tablet?', 'Yes, you can take irbesartan and Lez 2.5 Tablet together. However, be careful and keep a regular check on your blood pressure since Lez 2.5 Tablet may increase your blood pressure. Consult your doctor in case you have problems controlling your blood pressure.'),
(9602, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'Does Lez 2.5 Tablet affect vision?', 'Although it is very uncommon, Lez 2.5 Tablet may cause a cataract. So, if you experience blurred vision or eye irritation, consult your doctor immediately.'),
(9603, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'My friend who is taking Lez 2.5 Tablet often sweats a lot. Is it because of Lez 2.5 Tablet?', 'This could be a sign of hot flushes which is a very common side effect of Lez 2.5 Tablet. It happens due to decreased estrogen levels. The frequency of hot flushes reduces once your body adjusts to Lez 2.5 Tablet. However, in some people, the flushes and sweats may continue during the treatment and stop a few months after the treatment finishes. You can consult your doctor who will provide you a remedy if it is very bothersome.'),
(9604, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'What are the serious side effects of Lez 2.5 Tablet?', 'The serious side effects do not occur in everyone and very few people experience them. The serious side effects of Lez 2.5 Tablet include stroke, angina, heart attack, blood clotting, cataract, osteoporosis, and severe skin reactions.'),
(9605, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'Does Lez 2.5 Tablet cause bone loss?', 'Lez 2.5 Tablet may cause thinning or wasting of your bones (osteoporosis), which is due to the decrease in estrogen levels in your body. Your doctor may decide to measure your bone density (a way of monitoring for osteoporosis) before, during and after treatment.'),
(9606, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'Can I take Lez 2.5 Tablet for induction of ovulation in anovulatory infertility?', 'As per the Ministry of Health and Family Welfare, Lez 2.5 Tablet is restricted for use in induction of ovulation in anovulatory infertility.'),
(9607, 'Lez 2.5 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lez 2.5 Tablet', 'Why have I been prescribed Lez 2.5 Tablet?', 'Lez 2.5 Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(9608, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'Is Lez 250mg Tablet safe?', 'Lez 250mg Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(9609, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Lez 250mg Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(9610, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'Can the use of Lez 250mg Tablet cause diarrhea?', 'Yes, the use of Lez 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9611, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'Can Lez 250mg Tablet be taken at night?', 'Lez 250mg Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Lez 250mg Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(9612, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'How long does it take Lez 250mg Tablet to work?', 'Lez 250mg Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(9613, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'Why is Lez 250mg Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lez 250mg Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(9614, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'What should I avoid while taking Lez 250mg Tablet?', 'Generally, it is recommended that patients taking Lez 250mg Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lez 250mg Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Lez 250mg Tablet increases the risk of sunburn.'),
(9615, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'Is Lez 250mg Tablet a strong antibiotic?', 'Lez 250mg Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lez 250mg Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(9616, 'Lez 250mg Tablet', 'Kaleon Laboratories', 'Lez 250mg Tablet', 'Can you get a yeast infection from taking Lez 250mg Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Lez 250mg Tablet. Antibiotics such as Lez 250mg Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lez 250mg Tablet or soon after stopping it.'),
(9617, 'Lezac 5mg Tablet', 'Mathis Pharma', 'Lezac 5mg Tablet', 'Is Lezac 5mg Tablet a steroid? What is it used for?', 'No, Lezac 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9618, 'Lezac 5mg Tablet', 'Mathis Pharma', 'Lezac 5mg Tablet', 'Does Lezac 5mg Tablet make you tired and drowsy?', 'Yes, Lezac 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9619, 'Lezac 5mg Tablet', 'Mathis Pharma', 'Lezac 5mg Tablet', 'How long does it take for Lezac 5mg Tablet to work?', 'Lezac 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9620, 'Lezac 5mg Tablet', 'Mathis Pharma', 'Lezac 5mg Tablet', 'Can I take Lezac 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezac 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9621, 'Lezac 5mg Tablet', 'Mathis Pharma', 'Lezac 5mg Tablet', 'Is it safe to take Lezac 5mg Tablet for a long time?', 'Lezac 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezac 5mg Tablet for only as long as you need it.'),
(9622, 'Lezac 5mg Tablet', 'Mathis Pharma', 'Lezac 5mg Tablet', 'For how long should I continue Lezac 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezac 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezac 5mg Tablet'),
(9623, 'Lezac F 10mg/120mg Tablet', 'Mathis Pharma', 'Lezac F 10mg/120mg Tablet', 'What is Lezac F 10mg/120mg Tablet ?', 'Lezac F 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(9624, 'Lezac F 10mg/120mg Tablet', 'Mathis Pharma', 'Lezac F 10mg/120mg Tablet', 'Can Lezac F 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezac F 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Lezac F 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(9625, 'Lezac F 10mg/120mg Tablet', 'Mathis Pharma', 'Lezac F 10mg/120mg Tablet', 'Can the use of Lezac F 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Lezac F 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(9626, 'Lezac F 10mg/120mg Tablet', 'Mathis Pharma', 'Lezac F 10mg/120mg Tablet', 'What should be avoided in food while taking Lezac F 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Lezac F 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Lezac F 10mg/120mg Tablet.'),
(9627, 'Lezac F 10mg/120mg Tablet', 'Mathis Pharma', 'Lezac F 10mg/120mg Tablet', 'Will Lezac F 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9628, 'Lezac F 10mg/120mg Tablet', 'Mathis Pharma', 'Lezac F 10mg/120mg Tablet', 'What is the recommended storage condition for Lezac F 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9629, 'Lezac M 5mg/10mg Tablet', 'Mathis Pharma', 'Lezac M 5mg/10mg Tablet', 'What is Lezac M 5mg/10mg Tablet?', 'Lezac M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9630, 'Lezac M 5mg/10mg Tablet', 'Mathis Pharma', 'Lezac M 5mg/10mg Tablet', 'Can the use of Lezac M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezac M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9631, 'Lezac M 5mg/10mg Tablet', 'Mathis Pharma', 'Lezac M 5mg/10mg Tablet', 'Can Lezac M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezac M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9632, 'Lezac M 5mg/10mg Tablet', 'Mathis Pharma', 'Lezac M 5mg/10mg Tablet', 'Can the use of Lezac M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezac M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9633, 'Lezac M 5mg/10mg Tablet', 'Mathis Pharma', 'Lezac M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezac M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezac M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezac M 5mg/10mg Tablet.'),
(9634, 'Lezac M 5mg/10mg Tablet', 'Mathis Pharma', 'Lezac M 5mg/10mg Tablet', 'Will Lezac M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezac M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9635, 'Lezac M 5mg/10mg Tablet', 'Mathis Pharma', 'Lezac M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezac M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9636, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(9637, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Lezac M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(9638, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'How should Lezac M Kid 2.5mg/4mg Tablet be stored?', 'Lezac M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9639, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'Can Lezac M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Lezac M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(9640, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lezac M Kid 2.5mg/4mg Tablet?', 'No, don’t start Lezac M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Lezac M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(9641, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lezac M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(9642, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Lezac M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Lezac M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(9643, 'Lezac M Kid 2.5mg/4mg Tablet', 'Mathis Pharma', 'Lezac M Kid 2.5mg/4mg Tablet', 'Can I use Lezac M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Lezac M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(9644, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'What is Lezace-MR Tablet?', 'Lezace-MR Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(9645, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'What can I do along with Lezace-MR Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(9646, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'Can I get addicted to Lezace-MR Tablet?', 'No, there are no reports of any patient getting addicted to Lezace-MR Tablet.'),
(9647, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'Can I stop taking Lezace-MR Tablet when my pain is relieved?', 'Lezace-MR Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lezace-MR Tablet should be continued if you are advised by your doctor to do so.'),
(9648, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'Can the use of Lezace-MR Tablet cause dizziness?', 'Yes, the use of Lezace-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(9649, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'Can the use of Lezace-MR Tablet cause damage to liver?', 'Lezace-MR Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(9650, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'How long will Lezace-MR Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Lezace-MR Tablet.'),
(9651, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'What if I forget to take Lezace-MR Tablet?', 'If you forget to take the scheduled dose of Lezace-MR Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(9652, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'Will Lezace-MR Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9653, 'Lezace-MR Tablet', 'Lezaa Biotech', 'Lezace-MR Tablet', 'Are there any specific contraindications associated with the use of Lezace-MR Tablet?', 'The use of Lezace-MR Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(9654, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'What is Lezace-P Tablet?', 'Lezace-P Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(9655, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Is it safe to use Lezace-P Tablet?', 'Lezace-P Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(9656, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Can I stop taking Lezace-P Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lezace-P Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(9657, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Can the use of Lezace-P Tablet cause nausea and vomiting?', 'Yes, the use of Lezace-P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(9658, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Can the use of Lezace-P Tablet cause dizziness?', 'Yes, the use of Lezace-P Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(9659, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Are there any specific contraindications associated with the use of Lezace-P Tablet?', 'The use of Lezace-P Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(9660, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Can Lezace-P Tablet be taken with vitamin B-complex?', 'Yes, Lezace-P Tablet can be taken with vitamin B-complex preparations. While Lezace-P Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(9661, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Is Lezace-P Tablet helpful in relieving stomach pain?', 'No, Lezace-P Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(9662, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Can the use of Lezace-P Tablet cause damage to kidneys?', 'Yes, the long-term use of Lezace-P Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(9663, 'Lezace-P Tablet', 'Lezaa Biotech', 'Lezace-P Tablet', 'Is it safe to take a higher dose of Lezace-P Tablet than recommended?', 'No, taking higher than the recommended dose of Lezace-P Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(9664, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'What is Lezace-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(9665, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Is it safe to take Lezace-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(9666, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Can I stop taking Lezace-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9667, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Can Lezace-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(9668, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Can Lezace-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(9669, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Are there any specific contraindications associated with taking Lezace-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(9670, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Can I take Lezace-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(9671, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Can the use of Lezace-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(9672, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'Can I take a higher dose of Lezace-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9673, 'Lezace-SP Tablet', 'Lezaa Biotech', 'Lezace-SP Tablet', 'What are the instructions for storage and disposal of Lezace-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9674, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'What is Lezace-T4 Tablet?', 'Lezace-T4 Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(9675, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'Is it safe to use Lezace-T4 Tablet?', 'Yes, Lezace-T4 Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(9676, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'Can the Lezace-T4 Tablet be stopped when my pain is relieved?', 'Lezace-T4 Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lezace-T4 Tablet should be continued if your doctor has advised you to do so.'),
(9677, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'Can the use of Lezace-T4 Tablet cause dizziness?', 'Yes, the use of Lezace-T4 Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(9678, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'Are there any specific contraindications associated with the use of Lezace-T4 Tablet?', 'The use of Lezace-T4 Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(9679, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'Can Lezace-T4 Tablet be taken with Vitamin B-complex?', 'Yes, Lezace-T4 Tablet can be taken with Vitamin B-complex preparations. While Lezace-T4 Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(9680, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'Can the use of Lezace-T4 Tablet cause damage to kidneys?', 'Yes, the long-term use of Lezace-T4 Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(9681, 'Lezace-T4 Tablet', 'Lezaa Biotech', 'Lezace-T4 Tablet', 'Will Lezace-T4 Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9682, 'Lezacort 6mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lezacort 6mg Tablet', 'Is Lezacort 6mg Tablet a steroid?', 'Yes, Lezacort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezacort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(9683, 'Lezacort 6mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lezacort 6mg Tablet', 'What is Lezacort 6mg Tablet used for?', 'Lezacort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(9684, 'Lezacort 6mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lezacort 6mg Tablet', 'How does Lezacort 6mg Tablet work?', 'Lezacort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9685, 'Lezacort 6mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lezacort 6mg Tablet', 'Is Lezacort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lezacort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lezacort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(9686, 'Lezacort 6mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lezacort 6mg Tablet', 'Is Lezacort 6mg Tablet a painkiller?', 'No, Lezacort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(9687, 'Lezacort 6mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lezacort 6mg Tablet', 'Can I take Lezacort 6mg Tablet with Tamsulosin?', 'Yes, Lezacort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(9688, 'Lezacure 6mg Tablet', 'Kolaz Biotech Pvt Ltd', 'Lezacure 6mg Tablet', 'Is Lezacure 6mg Tablet a steroid?', 'Yes, Lezacure 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezacure 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(9689, 'Lezacure 6mg Tablet', 'Kolaz Biotech Pvt Ltd', 'Lezacure 6mg Tablet', 'What is Lezacure 6mg Tablet used for?', 'Lezacure 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(9690, 'Lezacure 6mg Tablet', 'Kolaz Biotech Pvt Ltd', 'Lezacure 6mg Tablet', 'How does Lezacure 6mg Tablet work?', 'Lezacure 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9691, 'Lezacure 6mg Tablet', 'Kolaz Biotech Pvt Ltd', 'Lezacure 6mg Tablet', 'Is Lezacure 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lezacure 6mg Tablet has a similar effect as that of prednisone. Moreover, Lezacure 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(9692, 'Lezacure 6mg Tablet', 'Kolaz Biotech Pvt Ltd', 'Lezacure 6mg Tablet', 'Is Lezacure 6mg Tablet a painkiller?', 'No, Lezacure 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(9693, 'Lezacure 6mg Tablet', 'Kolaz Biotech Pvt Ltd', 'Lezacure 6mg Tablet', 'Can I take Lezacure 6mg Tablet with Tamsulosin?', 'Yes, Lezacure 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(9694, 'Lezapin 10mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 10mg Tablet', 'Can Lezapin 10mg Tablet be used for anxiety?', 'The treatment of anxiety with Lezapin 10mg Tablet is not an approved indication. Lezapin 10mg Tablet has been studied for treatment of anxiety disorders but the results have not been very convincing. However, it can be used along with anxiolytics in anxiety disorders for better results.'),
(9695, 'Lezapin 10mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 10mg Tablet', 'Is Lezapin 10mg Tablet a sleeping pill?', 'No, Lezapin 10mg Tablet is not a sleeping pill. It belongs to the atypical antipsychotic class of medicines. It is used to treat schizophrenia. Schizophrenia is a mental illness that causes disturbed or unusual thinking, loss of interest in life, and strong or inappropriate emotions. Lezapin 10mg Tablet also helps with bipolar disorder (manic depressive disorder). It is a disease that causes episodes of depression, mania, and other abnormal moods.'),
(9696, 'Lezapin 10mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 10mg Tablet', 'How long does it take for Lezapin 10mg Tablet to kick in?', 'Lezapin 10mg Tablet may start showing initial improvement within 1-2 week of starting. However, for full benefits it may take about 4-6 weeks. You should continue taking it and consult your doctor in case you feel that Lezapin 10mg Tablet is not helping you.'),
(9697, 'Lezapin 10mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 10mg Tablet', 'What is the most important information that I should know about Lezapin 10mg Tablet?', 'Lezapin 10mg Tablet can cause serious side effects which include increased risk of death in elderly people who are confused, have memory loss and have lost touch with reality (dementia-related psychosis). It is important to know that it may increase blood sugar levels in diabetics and also in patients who never had diabetes. Furthermore, it may cause weight gain and high fat levels in the blood which is more common in teenagers.'),
(9698, 'Lezapin 10mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 10mg Tablet', 'Can Lezapin 10mg Tablet be taken during pregnancy?', 'Lezapin 10mg Tablet should be avoided during pregnancy and should only be given if benefits outweigh the risk. Using Lezapin 10mg Tablet during last 3 months of pregnancy may cause unwanted symptoms in the unborn baby. These symptoms include shaking, muscle stiffness and/or weakness, sleepiness, agitation, breathing problems, and difficulty in feeding.'),
(9699, 'Lezapin 10mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 10mg Tablet', 'Can I stop taking Lezapin 10mg Tablet if I am better?', 'You should not stop taking Lezapin 10mg Tablet without consulting your doctor. This is because sudden discontinuation of the medicine may cause unpleasant side effects which include sweating, unable to sleep, tremor, anxiety or nausea, and vomiting. To avoid such effects, your doctor will reduce the dose gradually before stopping the treatment.'),
(9700, 'Lezapin 10mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 10mg Tablet', 'Does smoking or alcohol interfere with working of Lezapin 10mg Tablet?', 'Yes, smoking interferes with working of Lezapin 10mg Tablet causing an increase in its metabolism. One should avoid alcohol while taking Lezapin 10mg Tablet since it may cause more drowsiness. However, if you are a smoker then your doctor may increase your dose depending on your response to treatment.'),
(9701, 'Lezapin 2.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 2.5mg Tablet', 'Can Lezapin 2.5mg Tablet be used for anxiety?', 'The treatment of anxiety with Lezapin 2.5mg Tablet is not an approved indication. Lezapin 2.5mg Tablet has been studied for treatment of anxiety disorders but the results have not been very convincing. However, it can be used along with anxiolytics in anxiety disorders for better results.'),
(9702, 'Lezapin 2.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 2.5mg Tablet', 'Is Lezapin 2.5mg Tablet a sleeping pill?', 'No, Lezapin 2.5mg Tablet is not a sleeping pill. It belongs to the atypical antipsychotic class of medicines. It is used to treat schizophrenia. Schizophrenia is a mental illness that causes disturbed or unusual thinking, loss of interest in life, and strong or inappropriate emotions. Lezapin 2.5mg Tablet also helps with bipolar disorder (manic depressive disorder). It is a disease that causes episodes of depression, mania, and other abnormal moods.'),
(9703, 'Lezapin 2.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 2.5mg Tablet', 'How long does it take for Lezapin 2.5mg Tablet to kick in?', 'Lezapin 2.5mg Tablet may start showing initial improvement within 1-2 week of starting. However, for full benefits it may take about 4-6 weeks. You should continue taking it and consult your doctor in case you feel that Lezapin 2.5mg Tablet is not helping you.'),
(9704, 'Lezapin 2.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 2.5mg Tablet', 'What is the most important information that I should know about Lezapin 2.5mg Tablet?', 'Lezapin 2.5mg Tablet can cause serious side effects which include increased risk of death in elderly people who are confused, have memory loss and have lost touch with reality (dementia-related psychosis). It is important to know that it may increase blood sugar levels in diabetics and also in patients who never had diabetes. Furthermore, it may cause weight gain and high fat levels in the blood which is more common in teenagers.'),
(9705, 'Lezapin 2.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 2.5mg Tablet', 'Can Lezapin 2.5mg Tablet be taken during pregnancy?', 'Lezapin 2.5mg Tablet should be avoided during pregnancy and should only be given if benefits outweigh the risk. Using Lezapin 2.5mg Tablet during last 3 months of pregnancy may cause unwanted symptoms in the unborn baby. These symptoms include shaking, muscle stiffness and/or weakness, sleepiness, agitation, breathing problems, and difficulty in feeding.'),
(9706, 'Lezapin 2.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 2.5mg Tablet', 'Can I stop taking Lezapin 2.5mg Tablet if I am better?', 'You should not stop taking Lezapin 2.5mg Tablet without consulting your doctor. This is because sudden discontinuation of the medicine may cause unpleasant side effects which include sweating, unable to sleep, tremor, anxiety or nausea, and vomiting. To avoid such effects, your doctor will reduce the dose gradually before stopping the treatment.'),
(9707, 'Lezapin 2.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 2.5mg Tablet', 'Does smoking or alcohol interfere with working of Lezapin 2.5mg Tablet?', 'Yes, smoking interferes with working of Lezapin 2.5mg Tablet causing an increase in its metabolism. One should avoid alcohol while taking Lezapin 2.5mg Tablet since it may cause more drowsiness. However, if you are a smoker then your doctor may increase your dose depending on your response to treatment.'),
(9708, 'Lezapin 20mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 20mg Tablet', 'Can Lezapin 20mg Tablet be used for anxiety?', 'The treatment of anxiety with Lezapin 20mg Tablet is not an approved indication. Lezapin 20mg Tablet has been studied for treatment of anxiety disorders but the results have not been very convincing. However, it can be used along with anxiolytics in anxiety disorders for better results.'),
(9709, 'Lezapin 20mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 20mg Tablet', 'Is Lezapin 20mg Tablet a sleeping pill?', 'No, Lezapin 20mg Tablet is not a sleeping pill. It belongs to the atypical antipsychotic class of medicines. It is used to treat schizophrenia. Schizophrenia is a mental illness that causes disturbed or unusual thinking, loss of interest in life, and strong or inappropriate emotions. Lezapin 20mg Tablet also helps with bipolar disorder (manic depressive disorder). It is a disease that causes episodes of depression, mania, and other abnormal moods.'),
(9710, 'Lezapin 20mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 20mg Tablet', 'How long does it take for Lezapin 20mg Tablet to kick in?', 'Lezapin 20mg Tablet may start showing initial improvement within 1-2 week of starting. However, for full benefits it may take about 4-6 weeks. You should continue taking it and consult your doctor in case you feel that Lezapin 20mg Tablet is not helping you.'),
(9711, 'Lezapin 20mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 20mg Tablet', 'What is the most important information that I should know about Lezapin 20mg Tablet?', 'Lezapin 20mg Tablet can cause serious side effects which include increased risk of death in elderly people who are confused, have memory loss and have lost touch with reality (dementia-related psychosis). It is important to know that it may increase blood sugar levels in diabetics and also in patients who never had diabetes. Furthermore, it may cause weight gain and high fat levels in the blood which is more common in teenagers.'),
(9712, 'Lezapin 20mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 20mg Tablet', 'Can Lezapin 20mg Tablet be taken during pregnancy?', 'Lezapin 20mg Tablet should be avoided during pregnancy and should only be given if benefits outweigh the risk. Using Lezapin 20mg Tablet during last 3 months of pregnancy may cause unwanted symptoms in the unborn baby. These symptoms include shaking, muscle stiffness and/or weakness, sleepiness, agitation, breathing problems, and difficulty in feeding.'),
(9713, 'Lezapin 20mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 20mg Tablet', 'Can I stop taking Lezapin 20mg Tablet if I am better?', 'You should not stop taking Lezapin 20mg Tablet without consulting your doctor. This is because sudden discontinuation of the medicine may cause unpleasant side effects which include sweating, unable to sleep, tremor, anxiety or nausea, and vomiting. To avoid such effects, your doctor will reduce the dose gradually before stopping the treatment.'),
(9714, 'Lezapin 20mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 20mg Tablet', 'Does smoking or alcohol interfere with working of Lezapin 20mg Tablet?', 'Yes, smoking interferes with working of Lezapin 20mg Tablet causing an increase in its metabolism. One should avoid alcohol while taking Lezapin 20mg Tablet since it may cause more drowsiness. However, if you are a smoker then your doctor may increase your dose depending on your response to treatment.'),
(9715, 'Lezapin 5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 5mg Tablet', 'Can Lezapin 5mg Tablet be used for anxiety?', 'The treatment of anxiety with Lezapin 5mg Tablet is not an approved indication. Lezapin 5mg Tablet has been studied for treatment of anxiety disorders but the results have not been very convincing. However, it can be used along with anxiolytics in anxiety disorders for better results.'),
(9716, 'Lezapin 5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 5mg Tablet', 'Is Lezapin 5mg Tablet a sleeping pill?', 'No, Lezapin 5mg Tablet is not a sleeping pill. It belongs to the atypical antipsychotic class of medicines. It is used to treat schizophrenia. Schizophrenia is a mental illness that causes disturbed or unusual thinking, loss of interest in life, and strong or inappropriate emotions. Lezapin 5mg Tablet also helps with bipolar disorder (manic depressive disorder). It is a disease that causes episodes of depression, mania, and other abnormal moods.'),
(9717, 'Lezapin 5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 5mg Tablet', 'How long does it take for Lezapin 5mg Tablet to kick in?', 'Lezapin 5mg Tablet may start showing initial improvement within 1-2 week of starting. However, for full benefits it may take about 4-6 weeks. You should continue taking it and consult your doctor in case you feel that Lezapin 5mg Tablet is not helping you.'),
(9718, 'Lezapin 5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 5mg Tablet', 'What is the most important information that I should know about Lezapin 5mg Tablet?', 'Lezapin 5mg Tablet can cause serious side effects which include increased risk of death in elderly people who are confused, have memory loss and have lost touch with reality (dementia-related psychosis). It is important to know that it may increase blood sugar levels in diabetics and also in patients who never had diabetes. Furthermore, it may cause weight gain and high fat levels in the blood which is more common in teenagers.'),
(9719, 'Lezapin 5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 5mg Tablet', 'Can Lezapin 5mg Tablet be taken during pregnancy?', 'Lezapin 5mg Tablet should be avoided during pregnancy and should only be given if benefits outweigh the risk. Using Lezapin 5mg Tablet during last 3 months of pregnancy may cause unwanted symptoms in the unborn baby. These symptoms include shaking, muscle stiffness and/or weakness, sleepiness, agitation, breathing problems, and difficulty in feeding.'),
(9720, 'Lezapin 5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 5mg Tablet', 'Can I stop taking Lezapin 5mg Tablet if I am better?', 'You should not stop taking Lezapin 5mg Tablet without consulting your doctor. This is because sudden discontinuation of the medicine may cause unpleasant side effects which include sweating, unable to sleep, tremor, anxiety or nausea, and vomiting. To avoid such effects, your doctor will reduce the dose gradually before stopping the treatment.'),
(9721, 'Lezapin 5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 5mg Tablet', 'Does smoking or alcohol interfere with working of Lezapin 5mg Tablet?', 'Yes, smoking interferes with working of Lezapin 5mg Tablet causing an increase in its metabolism. One should avoid alcohol while taking Lezapin 5mg Tablet since it may cause more drowsiness. However, if you are a smoker then your doctor may increase your dose depending on your response to treatment.'),
(9722, 'Lezapin 7.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 7.5mg Tablet', 'Can Lezapin 7.5mg Tablet be used for anxiety?', 'The treatment of anxiety with Lezapin 7.5mg Tablet is not an approved indication. Lezapin 7.5mg Tablet has been studied for treatment of anxiety disorders but the results have not been very convincing. However, it can be used along with anxiolytics in anxiety disorders for better results.'),
(9723, 'Lezapin 7.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 7.5mg Tablet', 'Is Lezapin 7.5mg Tablet a sleeping pill?', 'No, Lezapin 7.5mg Tablet is not a sleeping pill. It belongs to the atypical antipsychotic class of medicines. It is used to treat schizophrenia. Schizophrenia is a mental illness that causes disturbed or unusual thinking, loss of interest in life, and strong or inappropriate emotions. Lezapin 7.5mg Tablet also helps with bipolar disorder (manic depressive disorder). It is a disease that causes episodes of depression, mania, and other abnormal moods.'),
(9724, 'Lezapin 7.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 7.5mg Tablet', 'How long does it take for Lezapin 7.5mg Tablet to kick in?', 'Lezapin 7.5mg Tablet may start showing initial improvement within 1-2 week of starting. However, for full benefits it may take about 4-6 weeks. You should continue taking it and consult your doctor in case you feel that Lezapin 7.5mg Tablet is not helping you.'),
(9725, 'Lezapin 7.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 7.5mg Tablet', 'What is the most important information that I should know about Lezapin 7.5mg Tablet?', 'Lezapin 7.5mg Tablet can cause serious side effects which include increased risk of death in elderly people who are confused, have memory loss and have lost touch with reality (dementia-related psychosis). It is important to know that it may increase blood sugar levels in diabetics and also in patients who never had diabetes. Furthermore, it may cause weight gain and high fat levels in the blood which is more common in teenagers.'),
(9726, 'Lezapin 7.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 7.5mg Tablet', 'Can Lezapin 7.5mg Tablet be taken during pregnancy?', 'Lezapin 7.5mg Tablet should be avoided during pregnancy and should only be given if benefits outweigh the risk. Using Lezapin 7.5mg Tablet during last 3 months of pregnancy may cause unwanted symptoms in the unborn baby. These symptoms include shaking, muscle stiffness and/or weakness, sleepiness, agitation, breathing problems, and difficulty in feeding.'),
(9727, 'Lezapin 7.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 7.5mg Tablet', 'Can I stop taking Lezapin 7.5mg Tablet if I am better?', 'You should not stop taking Lezapin 7.5mg Tablet without consulting your doctor. This is because sudden discontinuation of the medicine may cause unpleasant side effects which include sweating, unable to sleep, tremor, anxiety or nausea, and vomiting. To avoid such effects, your doctor will reduce the dose gradually before stopping the treatment.'),
(9728, 'Lezapin 7.5mg Tablet', 'Dycine Pharmaceuticals Ltd', 'Lezapin 7.5mg Tablet', 'Does smoking or alcohol interfere with working of Lezapin 7.5mg Tablet?', 'Yes, smoking interferes with working of Lezapin 7.5mg Tablet causing an increase in its metabolism. One should avoid alcohol while taking Lezapin 7.5mg Tablet since it may cause more drowsiness. However, if you are a smoker then your doctor may increase your dose depending on your response to treatment.'),
(9729, 'Lezatis Tablet', 'Volentis Healthcare Pvt Ltd', 'Lezatis Tablet', 'Is Lezatis Tablet a steroid?', 'Yes, Lezatis Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezatis Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(9730, 'Lezatis Tablet', 'Volentis Healthcare Pvt Ltd', 'Lezatis Tablet', 'What is Lezatis Tablet used for?', 'Lezatis Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(9731, 'Lezatis Tablet', 'Volentis Healthcare Pvt Ltd', 'Lezatis Tablet', 'How does Lezatis Tablet work?', 'Lezatis Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9732, 'Lezatis Tablet', 'Volentis Healthcare Pvt Ltd', 'Lezatis Tablet', 'Is Lezatis Tablet better than Prednisone?', 'Clinical studies have shown that Lezatis Tablet has a similar effect as that of prednisone. Moreover, Lezatis Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(9733, 'Lezatis Tablet', 'Volentis Healthcare Pvt Ltd', 'Lezatis Tablet', 'Is Lezatis Tablet a painkiller?', 'No, Lezatis Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(9734, 'Lezatis Tablet', 'Volentis Healthcare Pvt Ltd', 'Lezatis Tablet', 'Can I take Lezatis Tablet with Tamsulosin?', 'Yes, Lezatis Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(9735, 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Vistica Life Sciences', 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Are there any medicines which I should avoid while taking Lezato IL 1.25mg/500mcg Respules 2ml?', 'It is not recommended to use Lezato IL 1.25mg/500mcg Respules 2ml along with other medicines, such as anticholinergic, beta-adrenergic agents, beta-blockers, diuretics, digoxin, MAO inhibitors or anti-depressants.'),
(9736, 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Vistica Life Sciences', 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Will Lezato IL 1.25mg/500mcg Respules 2ml be more effective if taken in higher doses?', 'No, taking a higher than the recommended dose of this medicine will not make it more effective, rather can lead to increased side effects. If the symptoms do not get relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(9737, 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Vistica Life Sciences', 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Can the use of Lezato IL 1.25mg/500mcg Respules 2ml cause sleepiness or drowsiness?', 'Yes, Lezato IL 1.25mg/500mcg Respules 2ml may make you feel drowsy or sleepy. Avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(9738, 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Vistica Life Sciences', 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Can the use of Lezato IL 1.25mg/500mcg Respules 2ml cause dry mouth?', 'Yes, the use of Lezato IL 1.25mg/500mcg Respules 2ml can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(9739, 'Lezato IL 1.25mg/500mcg Respules 2ml', 'Vistica Life Sciences', 'Lezato IL 1.25mg/500mcg Respules 2ml', 'What are the instructions for storage and disposal of Lezato IL 1.25mg/500mcg Respules 2ml?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9740, 'Lezcort 6 Tablet', 'Aeon Remedies', 'Lezcort 6 Tablet', 'Is Lezcort 6 Tablet a steroid?', 'Yes, Lezcort 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezcort 6 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(9741, 'Lezcort 6 Tablet', 'Aeon Remedies', 'Lezcort 6 Tablet', 'What is Lezcort 6 Tablet used for?', 'Lezcort 6 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(9742, 'Lezcort 6 Tablet', 'Aeon Remedies', 'Lezcort 6 Tablet', 'How does Lezcort 6 Tablet work?', 'Lezcort 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9743, 'Lezcort 6 Tablet', 'Aeon Remedies', 'Lezcort 6 Tablet', 'Is Lezcort 6 Tablet better than Prednisone?', 'Clinical studies have shown that Lezcort 6 Tablet has a similar effect as that of prednisone. Moreover, Lezcort 6 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(9744, 'Lezcort 6 Tablet', 'Aeon Remedies', 'Lezcort 6 Tablet', 'Is Lezcort 6 Tablet a painkiller?', 'No, Lezcort 6 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(9745, 'Lezcort 6 Tablet', 'Aeon Remedies', 'Lezcort 6 Tablet', 'Can I take Lezcort 6 Tablet with Tamsulosin?', 'Yes, Lezcort 6 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(9746, 'Lezcort 6mg Syrup', 'Aeon Remedies', 'Lezcort 6mg Syrup', 'Is Lezcort 6mg Syrup a steroid?', 'Yes, Lezcort 6mg Syrup is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezcort 6mg Syrup increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(9747, 'Lezcort 6mg Syrup', 'Aeon Remedies', 'Lezcort 6mg Syrup', 'What is Lezcort 6mg Syrup used for?', 'Lezcort 6mg Syrup has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(9748, 'Lezcort 6mg Syrup', 'Aeon Remedies', 'Lezcort 6mg Syrup', 'How does Lezcort 6mg Syrup work?', 'Lezcort 6mg Syrup is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9749, 'Lezcort 6mg Syrup', 'Aeon Remedies', 'Lezcort 6mg Syrup', 'Is Lezcort 6mg Syrup better than Prednisone?', 'Clinical studies have shown that Lezcort 6mg Syrup has a similar effect as that of prednisone. Moreover, Lezcort 6mg Syrup is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(9750, 'Lezcort 6mg Syrup', 'Aeon Remedies', 'Lezcort 6mg Syrup', 'Is Lezcort 6mg Syrup a painkiller?', 'No, Lezcort 6mg Syrup is not a painkiller. It belongs to the class of medicines known as steroids.'),
(9751, 'Lezcort 6mg Syrup', 'Aeon Remedies', 'Lezcort 6mg Syrup', 'Can I take Lezcort 6mg Syrup with Tamsulosin?', 'Yes, Lezcort 6mg Syrup can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(9752, 'Lezcort 6mg Tablet', 'Life Guard Pharma', 'Lezcort 6mg Tablet', 'Is Lezcort 6mg Tablet a steroid?', 'Yes, Lezcort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezcort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(9753, 'Lezcort 6mg Tablet', 'Life Guard Pharma', 'Lezcort 6mg Tablet', 'What is Lezcort 6mg Tablet used for?', 'Lezcort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(9754, 'Lezcort 6mg Tablet', 'Life Guard Pharma', 'Lezcort 6mg Tablet', 'How does Lezcort 6mg Tablet work?', 'Lezcort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(9755, 'Lezcort 6mg Tablet', 'Life Guard Pharma', 'Lezcort 6mg Tablet', 'Is Lezcort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lezcort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lezcort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(9756, 'Lezcort 6mg Tablet', 'Life Guard Pharma', 'Lezcort 6mg Tablet', 'Is Lezcort 6mg Tablet a painkiller?', 'No, Lezcort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(9757, 'Lezcort 6mg Tablet', 'Life Guard Pharma', 'Lezcort 6mg Tablet', 'Can I take Lezcort 6mg Tablet with Tamsulosin?', 'Yes, Lezcort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(9758, 'Lezee 5mg Tablet', 'Saillon Pharma ', 'Lezee 5mg Tablet (Saillon Pharma )', 'Is Lezee 5mg Tablet a steroid? What is it used for?', 'No, Lezee 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9759, 'Lezee 5mg Tablet', 'Saillon Pharma ', 'Lezee 5mg Tablet (Saillon Pharma )', 'Does Lezee 5mg Tablet make you tired and drowsy?', 'Yes, Lezee 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9760, 'Lezee 5mg Tablet', 'Saillon Pharma ', 'Lezee 5mg Tablet (Saillon Pharma )', 'How long does it take for Lezee 5mg Tablet to work?', 'Lezee 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9761, 'Lezee 5mg Tablet', 'Saillon Pharma ', 'Lezee 5mg Tablet (Saillon Pharma )', 'Can I take Lezee 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezee 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9762, 'Lezee 5mg Tablet', 'Saillon Pharma ', 'Lezee 5mg Tablet (Saillon Pharma )', 'Is it safe to take Lezee 5mg Tablet for a long time?', 'Lezee 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezee 5mg Tablet for only as long as you need it.'),
(9763, 'Lezee 5mg Tablet', 'Saillon Pharma ', 'Lezee 5mg Tablet (Saillon Pharma )', 'For how long should I continue Lezee 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezee 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezee 5mg Tablet'),
(9764, 'Lezee 5mg Tablet', 'Carrel Pharmaceuticals', 'Lezee 5mg Tablet (Carrel Pharmaceuticals)', 'Is Lezee 5mg Tablet a steroid? What is it used for?', 'No, Lezee 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9765, 'Lezee 5mg Tablet', 'Carrel Pharmaceuticals', 'Lezee 5mg Tablet (Carrel Pharmaceuticals)', 'Does Lezee 5mg Tablet make you tired and drowsy?', 'Yes, Lezee 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9766, 'Lezee 5mg Tablet', 'Carrel Pharmaceuticals', 'Lezee 5mg Tablet (Carrel Pharmaceuticals)', 'How long does it take for Lezee 5mg Tablet to work?', 'Lezee 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9767, 'Lezee 5mg Tablet', 'Carrel Pharmaceuticals', 'Lezee 5mg Tablet (Carrel Pharmaceuticals)', 'Can I take Lezee 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezee 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9768, 'Lezee 5mg Tablet', 'Carrel Pharmaceuticals', 'Lezee 5mg Tablet (Carrel Pharmaceuticals)', 'Is it safe to take Lezee 5mg Tablet for a long time?', 'Lezee 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezee 5mg Tablet for only as long as you need it.'),
(9769, 'Lezee 5mg Tablet', 'Carrel Pharmaceuticals', 'Lezee 5mg Tablet (Carrel Pharmaceuticals)', 'For how long should I continue Lezee 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezee 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezee 5mg Tablet'),
(9770, 'Lezen 500mg Tablet', 'Vantage Biotech Pvt Ltd', 'Lezen 500mg Tablet', 'Is Lezen 500mg Tablet safe?', 'Lezen 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9771, 'Lezen 500mg Tablet', 'Vantage Biotech Pvt Ltd', 'Lezen 500mg Tablet', 'What if I forget to take a dose of Lezen 500mg Tablet?', 'If you forget a dose of Lezen 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9772, 'Lezen 500mg Tablet', 'Vantage Biotech Pvt Ltd', 'Lezen 500mg Tablet', 'Can the use of Lezen 500mg Tablet cause diarrhea?', 'Yes, the use of Lezen 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9773, 'Lezen 500mg Tablet', 'Vantage Biotech Pvt Ltd', 'Lezen 500mg Tablet', 'Can I stop taking Lezen 500mg Tablet when I feel better?', 'No, do not stop taking Lezen 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lezen 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lezen 500mg Tablet in the dose and duration advised by the doctor.'),
(9774, 'Lezen 500mg Tablet', 'Vantage Biotech Pvt Ltd', 'Lezen 500mg Tablet', 'Can the use of Lezen 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lezen 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lezen 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9775, 'Lezen 5mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lezen 5mg Tablet', 'Is Lezen 5mg Tablet a steroid? What is it used for?', 'No, Lezen 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9776, 'Lezen 5mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lezen 5mg Tablet', 'Does Lezen 5mg Tablet make you tired and drowsy?', 'Yes, Lezen 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9777, 'Lezen 5mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lezen 5mg Tablet', 'How long does it take for Lezen 5mg Tablet to work?', 'Lezen 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9778, 'Lezen 5mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lezen 5mg Tablet', 'Can I take Lezen 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezen 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9779, 'Lezen 5mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lezen 5mg Tablet', 'Is it safe to take Lezen 5mg Tablet for a long time?', 'Lezen 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezen 5mg Tablet for only as long as you need it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9780, 'Lezen 5mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lezen 5mg Tablet', 'For how long should I continue Lezen 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezen 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezen 5mg Tablet'),
(9781, 'Lezend 5mg Tablet', 'Delwis Healthcare Pvt Ltd', 'Lezend 5mg Tablet', 'Is Lezend 5mg Tablet a steroid? What is it used for?', 'No, Lezend 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9782, 'Lezend 5mg Tablet', 'Delwis Healthcare Pvt Ltd', 'Lezend 5mg Tablet', 'Does Lezend 5mg Tablet make you tired and drowsy?', 'Yes, Lezend 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9783, 'Lezend 5mg Tablet', 'Delwis Healthcare Pvt Ltd', 'Lezend 5mg Tablet', 'How long does it take for Lezend 5mg Tablet to work?', 'Lezend 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9784, 'Lezend 5mg Tablet', 'Delwis Healthcare Pvt Ltd', 'Lezend 5mg Tablet', 'Can I take Lezend 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezend 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9785, 'Lezend 5mg Tablet', 'Delwis Healthcare Pvt Ltd', 'Lezend 5mg Tablet', 'Is it safe to take Lezend 5mg Tablet for a long time?', 'Lezend 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezend 5mg Tablet for only as long as you need it.'),
(9786, 'Lezend 5mg Tablet', 'Delwis Healthcare Pvt Ltd', 'Lezend 5mg Tablet', 'For how long should I continue Lezend 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezend 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezend 5mg Tablet'),
(9787, 'Lezer 5mg Syrup', 'Zytras Life Sciences', 'Lezer 5mg Syrup', 'Is Lezer 5mg Syrup a steroid? What is it used for?', 'No, Lezer 5mg Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9788, 'Lezer 5mg Syrup', 'Zytras Life Sciences', 'Lezer 5mg Syrup', 'Does Lezer 5mg Syrup make you tired and drowsy?', 'Yes, Lezer 5mg Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9789, 'Lezer 5mg Syrup', 'Zytras Life Sciences', 'Lezer 5mg Syrup', 'How long does it take for Lezer 5mg Syrup to work?', 'Lezer 5mg Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9790, 'Lezer 5mg Syrup', 'Zytras Life Sciences', 'Lezer 5mg Syrup', 'Can I take Lezer 5mg Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezer 5mg Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9791, 'Lezer 5mg Syrup', 'Zytras Life Sciences', 'Lezer 5mg Syrup', 'Is it safe to take Lezer 5mg Syrup for a long time?', 'Lezer 5mg Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezer 5mg Syrup for only as long as you need it.'),
(9792, 'Lezer 5mg Syrup', 'Zytras Life Sciences', 'Lezer 5mg Syrup', 'For how long should I continue Lezer 5mg Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezer 5mg Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Lezer 5mg Syrup'),
(9793, 'Lezer 5mg Tablet', 'Zytras Life Sciences', 'Lezer 5mg Tablet', 'Is Lezer 5mg Tablet a steroid? What is it used for?', 'No, Lezer 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9794, 'Lezer 5mg Tablet', 'Zytras Life Sciences', 'Lezer 5mg Tablet', 'Does Lezer 5mg Tablet make you tired and drowsy?', 'Yes, Lezer 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9795, 'Lezer 5mg Tablet', 'Zytras Life Sciences', 'Lezer 5mg Tablet', 'How long does it take for Lezer 5mg Tablet to work?', 'Lezer 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9796, 'Lezer 5mg Tablet', 'Zytras Life Sciences', 'Lezer 5mg Tablet', 'Can I take Lezer 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezer 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9797, 'Lezer 5mg Tablet', 'Zytras Life Sciences', 'Lezer 5mg Tablet', 'Is it safe to take Lezer 5mg Tablet for a long time?', 'Lezer 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezer 5mg Tablet for only as long as you need it.'),
(9798, 'Lezer 5mg Tablet', 'Zytras Life Sciences', 'Lezer 5mg Tablet', 'For how long should I continue Lezer 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezer 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezer 5mg Tablet'),
(9799, 'Lezest 2.5mg Syrup', 'Innovative Pharmaceuticals', 'Lezest 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Lezest 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(9800, 'Lezest 2.5mg Syrup', 'Innovative Pharmaceuticals', 'Lezest 2.5mg Syrup', 'Can other medicines be given at the same time as Lezest 2.5mg Syrup?', 'Lezest 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lezest 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(9801, 'Lezest 2.5mg Syrup', 'Innovative Pharmaceuticals', 'Lezest 2.5mg Syrup', 'How much Lezest 2.5mg Syrup should I give to my child?', 'Lezest 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(9802, 'Lezest 2.5mg Syrup', 'Innovative Pharmaceuticals', 'Lezest 2.5mg Syrup', 'What if I give too much of Lezest 2.5mg Syrup by mistake?', 'Although Lezest 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(9803, 'Lezest 2.5mg Syrup', 'Innovative Pharmaceuticals', 'Lezest 2.5mg Syrup', 'How should Lezest 2.5mg Syrup be stored?', 'Store Lezest 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9804, 'Lezest 2.5mg Syrup', 'Innovative Pharmaceuticals', 'Lezest 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(9805, 'Lezest 5mg Tablet', 'Innovative Pharmaceuticals', 'Lezest 5mg Tablet', 'Is Lezest 5mg Tablet a steroid? What is it used for?', 'No, Lezest 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9806, 'Lezest 5mg Tablet', 'Innovative Pharmaceuticals', 'Lezest 5mg Tablet', 'Does Lezest 5mg Tablet make you tired and drowsy?', 'Yes, Lezest 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9807, 'Lezest 5mg Tablet', 'Innovative Pharmaceuticals', 'Lezest 5mg Tablet', 'How long does it take for Lezest 5mg Tablet to work?', 'Lezest 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9808, 'Lezest 5mg Tablet', 'Innovative Pharmaceuticals', 'Lezest 5mg Tablet', 'Can I take Lezest 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezest 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9809, 'Lezest 5mg Tablet', 'Innovative Pharmaceuticals', 'Lezest 5mg Tablet', 'Is it safe to take Lezest 5mg Tablet for a long time?', 'Lezest 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezest 5mg Tablet for only as long as you need it.'),
(9810, 'Lezest 5mg Tablet', 'Innovative Pharmaceuticals', 'Lezest 5mg Tablet', 'For how long should I continue Lezest 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezest 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezest 5mg Tablet'),
(9811, 'LEZEST MB 75mg/5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'LEZEST MB 75mg/5mg/10mg Tablet', 'Can the use of LEZEST MB 75mg/5mg/10mg Tablet cause dry mouth?', 'Yes, the use of LEZEST MB 75mg/5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(9812, 'LEZEST MB 75mg/5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'LEZEST MB 75mg/5mg/10mg Tablet', 'Can I use LEZEST MB 75mg/5mg/10mg Tablet while breastfeeding?', 'No, LEZEST MB 75mg/5mg/10mg Tablet should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(9813, 'LEZEST MB 75mg/5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'LEZEST MB 75mg/5mg/10mg Tablet', 'Can I drink alcohol while taking LEZEST MB 75mg/5mg/10mg Tablet?', 'No, avoid drinking alcohol while taking LEZEST MB 75mg/5mg/10mg Tablet. Drinking alcohol will increase the risk of serious side effects caused by LEZEST MB 75mg/5mg/10mg Tablet.'),
(9814, 'LEZEST MB 75mg/5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'LEZEST MB 75mg/5mg/10mg Tablet', 'What are the instructions for the storage and disposal of LEZEST MB 75mg/5mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(9815, 'Lezest-M 5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'Lezest-M 5mg/10mg Tablet', 'What is Lezest-M 5mg/10mg Tablet?', 'Lezest-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9816, 'Lezest-M 5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'Lezest-M 5mg/10mg Tablet', 'Can the use of Lezest-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezest-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9817, 'Lezest-M 5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'Lezest-M 5mg/10mg Tablet', 'Can Lezest-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezest-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9818, 'Lezest-M 5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'Lezest-M 5mg/10mg Tablet', 'Can the use of Lezest-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezest-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9819, 'Lezest-M 5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'Lezest-M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezest-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezest-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezest-M 5mg/10mg Tablet.'),
(9820, 'Lezest-M 5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'Lezest-M 5mg/10mg Tablet', 'Will Lezest-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezest-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9821, 'Lezest-M 5mg/10mg Tablet', 'Innovative Pharmaceuticals', 'Lezest-M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezest-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9822, 'Lezet 5mg Tablet', 'Rosette Aeon Lifecare', 'Lezet 5mg Tablet', 'Is Lezet 5mg Tablet a steroid? What is it used for?', 'No, Lezet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9823, 'Lezet 5mg Tablet', 'Rosette Aeon Lifecare', 'Lezet 5mg Tablet', 'Does Lezet 5mg Tablet make you tired and drowsy?', 'Yes, Lezet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9824, 'Lezet 5mg Tablet', 'Rosette Aeon Lifecare', 'Lezet 5mg Tablet', 'How long does it take for Lezet 5mg Tablet to work?', 'Lezet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9825, 'Lezet 5mg Tablet', 'Rosette Aeon Lifecare', 'Lezet 5mg Tablet', 'Can I take Lezet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9826, 'Lezet 5mg Tablet', 'Rosette Aeon Lifecare', 'Lezet 5mg Tablet', 'Is it safe to take Lezet 5mg Tablet for a long time?', 'Lezet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezet 5mg Tablet for only as long as you need it.'),
(9827, 'Lezet 5mg Tablet', 'Rosette Aeon Lifecare', 'Lezet 5mg Tablet', 'For how long should I continue Lezet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezet 5mg Tablet'),
(9828, 'Lezi 0.5mg/10mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Lezi 0.5mg/10mg Tablet', 'What is Lezi 0.5mg/10mg Tablet?', 'Lezi 0.5mg/10mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(9829, 'Lezi 0.5mg/10mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Lezi 0.5mg/10mg Tablet', 'Can the Lezi 0.5mg/10mg Tablet cause sleepiness or drowsiness?', 'Lezi 0.5mg/10mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(9830, 'Lezi 0.5mg/10mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Lezi 0.5mg/10mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lezi 0.5mg/10mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(9831, 'Lezi 0.5mg/10mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Lezi 0.5mg/10mg Tablet', 'Any special instruction regarding storage and disposal of Lezi 0.5mg/10mg Tablet?', 'Keep Lezi 0.5mg/10mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(9832, 'Lezi 0.5mg/10mg Tablet', 'Pleasant Pharmaceuticals Pvt Ltd', 'Lezi 0.5mg/10mg Tablet', 'Can I stop taking Lezi 0.5mg/10mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lezi 0.5mg/10mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(9833, 'Lezid 600mg Tablet', 'Unimarck Healthcare Ltd', 'Lezid 600mg Tablet', 'Can the use of Lezid 600mg Tablet cause diarrhea?', 'Yes, the use of Lezid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9834, 'Lezid 600mg Tablet', 'Unimarck Healthcare Ltd', 'Lezid 600mg Tablet', 'What foods should I avoid while taking Lezid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lezid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(9835, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'What is Lezide M 80mg/500mg Tablet?', 'Lezide M 80mg/500mg Tablet is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(9836, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'What are the possible side effects of Lezide M 80mg/500mg Tablet?', 'The use of Lezide M 80mg/500mg Tablet is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(9837, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'Can the use of Lezide M 80mg/500mg Tablet cause hypoglycemia?', 'Yes, the use of Lezide M 80mg/500mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(9838, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'Can the use of Lezide M 80mg/500mg Tablet cause lactic acidosis?', 'Yes, the use of Lezide M 80mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin associated lactic acidosis). It is a rare side effect associated with the use of metformin. It is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lezide M 80mg/500mg Tablet and immediately consult your doctor.'),
(9839, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'Can the use of Lezide M 80mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Lezide M 80mg/500mg Tablet can cause vitamin B12 deficiency on long-term use. The deficiency occurs as the medicine interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can have tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(9840, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'Are there any specific conditions in which Lezide M 80mg/500mg Tablet should not to be taken?', 'The use of Lezide M 80mg/500mg Tablet should be avoided in patients with known allergy to any of the component or excipients of this medicine. It is also avoided in patients with moderate to severe kidney disease or with underlying metabolic acidosis including diabetic ketoacidosis.'),
(9841, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'Is it safe to take alcohol while I am also taking Lezide M 80mg/500mg Tablet?', 'No, it is not safe to take alcohol along with Lezide M 80mg/500mg Tablet. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(9842, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'What is Lezide M 80mg/500mg Tablet?', 'Lezide M 80mg/500mg Tablet is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(9843, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'What are the possible side effects of Lezide M 80mg/500mg Tablet?', 'The use of Lezide M 80mg/500mg Tablet is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(9844, 'Lezide M 80mg/500mg Tablet', 'Lexus Organics', 'Lezide M 80mg/500mg Tablet', 'Can the use of Lezide M 80mg/500mg Tablet cause hypoglycemia?', 'Yes, the use of Lezide M 80mg/500mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(9845, 'Lezil 5mg Tablet', 'Sygnus Biotech', 'Lezil 5mg Tablet', 'Is Lezil 5mg Tablet a steroid? What is it used for?', 'No, Lezil 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9846, 'Lezil 5mg Tablet', 'Sygnus Biotech', 'Lezil 5mg Tablet', 'Does Lezil 5mg Tablet make you tired and drowsy?', 'Yes, Lezil 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9847, 'Lezil 5mg Tablet', 'Sygnus Biotech', 'Lezil 5mg Tablet', 'How long does it take for Lezil 5mg Tablet to work?', 'Lezil 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9848, 'Lezil 5mg Tablet', 'Sygnus Biotech', 'Lezil 5mg Tablet', 'Can I take Lezil 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezil 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9849, 'Lezil 5mg Tablet', 'Sygnus Biotech', 'Lezil 5mg Tablet', 'Is it safe to take Lezil 5mg Tablet for a long time?', 'Lezil 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezil 5mg Tablet for only as long as you need it.'),
(9850, 'Lezil 5mg Tablet', 'Sygnus Biotech', 'Lezil 5mg Tablet', 'For how long should I continue Lezil 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezil 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezil 5mg Tablet'),
(9851, 'Lezil M 5mg/10mg Tablet', 'Sygnus Biotech', 'Lezil M 5mg/10mg Tablet', 'What is Lezil M 5mg/10mg Tablet?', 'Lezil M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9852, 'Lezil M 5mg/10mg Tablet', 'Sygnus Biotech', 'Lezil M 5mg/10mg Tablet', 'Can the use of Lezil M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezil M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9853, 'Lezil M 5mg/10mg Tablet', 'Sygnus Biotech', 'Lezil M 5mg/10mg Tablet', 'Can Lezil M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezil M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9854, 'Lezil M 5mg/10mg Tablet', 'Sygnus Biotech', 'Lezil M 5mg/10mg Tablet', 'Can the use of Lezil M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezil M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9855, 'Lezil M 5mg/10mg Tablet', 'Sygnus Biotech', 'Lezil M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezil M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezil M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezil M 5mg/10mg Tablet.'),
(9856, 'Lezil M 5mg/10mg Tablet', 'Sygnus Biotech', 'Lezil M 5mg/10mg Tablet', 'Will Lezil M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezil M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9857, 'Lezil M 5mg/10mg Tablet', 'Sygnus Biotech', 'Lezil M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezil M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9858, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(9859, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'Can I decrease the dose of Lezil M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(9860, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'How should Lezil M Syrup be stored?', 'Lezil M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9861, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'Can Lezil M Syrup make my child sleepy?', 'Lezil M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(9862, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lezil M Syrup?', 'No, don’t start Lezil M Syrup without speaking to your child’s doctor. Moreover, Lezil M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(9863, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lezil M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(9864, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lezil M Syrup to my child?', 'Some studies show that Lezil M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(9865, 'Lezil M Syrup', 'Sygnus Biotech', 'Lezil M Syrup', 'Can I use Lezil M Syrup for treating acute asthma attacks in my child?', 'Lezil M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(9866, 'Lezin 2.5mg Syrup', 'Aeon Remedies', 'Lezin 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Lezin 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(9867, 'Lezin 2.5mg Syrup', 'Aeon Remedies', 'Lezin 2.5mg Syrup', 'Can other medicines be given at the same time as Lezin 2.5mg Syrup?', 'Lezin 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lezin 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(9868, 'Lezin 2.5mg Syrup', 'Aeon Remedies', 'Lezin 2.5mg Syrup', 'How much Lezin 2.5mg Syrup should I give to my child?', 'Lezin 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(9869, 'Lezin 2.5mg Syrup', 'Aeon Remedies', 'Lezin 2.5mg Syrup', 'What if I give too much of Lezin 2.5mg Syrup by mistake?', 'Although Lezin 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(9870, 'Lezin 2.5mg Syrup', 'Aeon Remedies', 'Lezin 2.5mg Syrup', 'How should Lezin 2.5mg Syrup be stored?', 'Store Lezin 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9871, 'Lezin 2.5mg Syrup', 'Aeon Remedies', 'Lezin 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(9872, 'Lezin 5mg Tablet', 'Inex Medicaments Pvt Ltd', 'Lezin 5mg Tablet (Inex Medicaments Pvt Ltd)', 'Is Lezin 5mg Tablet a steroid? What is it used for?', 'No, Lezin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9873, 'Lezin 5mg Tablet', 'Inex Medicaments Pvt Ltd', 'Lezin 5mg Tablet (Inex Medicaments Pvt Ltd)', 'Does Lezin 5mg Tablet make you tired and drowsy?', 'Yes, Lezin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9874, 'Lezin 5mg Tablet', 'Inex Medicaments Pvt Ltd', 'Lezin 5mg Tablet (Inex Medicaments Pvt Ltd)', 'How long does it take for Lezin 5mg Tablet to work?', 'Lezin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9875, 'Lezin 5mg Tablet', 'Inex Medicaments Pvt Ltd', 'Lezin 5mg Tablet (Inex Medicaments Pvt Ltd)', 'Can I take Lezin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9876, 'Lezin 5mg Tablet', 'Inex Medicaments Pvt Ltd', 'Lezin 5mg Tablet (Inex Medicaments Pvt Ltd)', 'Is it safe to take Lezin 5mg Tablet for a long time?', 'Lezin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezin 5mg Tablet for only as long as you need it.'),
(9877, 'Lezin 5mg Tablet', 'Inex Medicaments Pvt Ltd', 'Lezin 5mg Tablet (Inex Medicaments Pvt Ltd)', 'For how long should I continue Lezin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezin 5mg Tablet'),
(9878, 'Lezin 5mg Tablet', 'Alcare Laboratories Pvt Ltd', 'Lezin 5mg Tablet (Alcare Laboratories Pvt Ltd)', 'Is Lezin 5mg Tablet a steroid? What is it used for?', 'No, Lezin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9879, 'Lezin 5mg Tablet', 'Alcare Laboratories Pvt Ltd', 'Lezin 5mg Tablet (Alcare Laboratories Pvt Ltd)', 'Does Lezin 5mg Tablet make you tired and drowsy?', 'Yes, Lezin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9880, 'Lezin 5mg Tablet', 'Alcare Laboratories Pvt Ltd', 'Lezin 5mg Tablet (Alcare Laboratories Pvt Ltd)', 'How long does it take for Lezin 5mg Tablet to work?', 'Lezin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9881, 'Lezin 5mg Tablet', 'Alcare Laboratories Pvt Ltd', 'Lezin 5mg Tablet (Alcare Laboratories Pvt Ltd)', 'Can I take Lezin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9882, 'Lezin 5mg Tablet', 'Alcare Laboratories Pvt Ltd', 'Lezin 5mg Tablet (Alcare Laboratories Pvt Ltd)', 'Is it safe to take Lezin 5mg Tablet for a long time?', 'Lezin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezin 5mg Tablet for only as long as you need it.'),
(9883, 'Lezin 5mg Tablet', 'Alcare Laboratories Pvt Ltd', 'Lezin 5mg Tablet (Alcare Laboratories Pvt Ltd)', 'For how long should I continue Lezin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezin 5mg Tablet'),
(9884, 'Lezin M 5mg/10mg Tablet', 'Rain Remedies', 'Lezin M 5mg/10mg Tablet', 'What is Lezin M 5mg/10mg Tablet?', 'Lezin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9885, 'Lezin M 5mg/10mg Tablet', 'Rain Remedies', 'Lezin M 5mg/10mg Tablet', 'Can the use of Lezin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9886, 'Lezin M 5mg/10mg Tablet', 'Rain Remedies', 'Lezin M 5mg/10mg Tablet', 'Can Lezin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9887, 'Lezin M 5mg/10mg Tablet', 'Rain Remedies', 'Lezin M 5mg/10mg Tablet', 'Can the use of Lezin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9888, 'Lezin M 5mg/10mg Tablet', 'Rain Remedies', 'Lezin M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezin M 5mg/10mg Tablet.'),
(9889, 'Lezin M 5mg/10mg Tablet', 'Rain Remedies', 'Lezin M 5mg/10mg Tablet', 'Will Lezin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9890, 'Lezin M 5mg/10mg Tablet', 'Rain Remedies', 'Lezin M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(9891, 'Lezin Plus 5mg/10mg Tablet', 'Pifer Pharmaceuticals Pvt Ltd', 'Lezin Plus 5mg/10mg Tablet', 'What is Lezin Plus 5mg/10mg Tablet?', 'Lezin Plus 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9892, 'Lezin Plus 5mg/10mg Tablet', 'Pifer Pharmaceuticals Pvt Ltd', 'Lezin Plus 5mg/10mg Tablet', 'Can the use of Lezin Plus 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezin Plus 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9893, 'Lezin Plus 5mg/10mg Tablet', 'Pifer Pharmaceuticals Pvt Ltd', 'Lezin Plus 5mg/10mg Tablet', 'Can Lezin Plus 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezin Plus 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9894, 'Lezin Plus 5mg/10mg Tablet', 'Pifer Pharmaceuticals Pvt Ltd', 'Lezin Plus 5mg/10mg Tablet', 'Can the use of Lezin Plus 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezin Plus 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9895, 'Lezin Plus 5mg/10mg Tablet', 'Pifer Pharmaceuticals Pvt Ltd', 'Lezin Plus 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezin Plus 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezin Plus 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezin Plus 5mg/10mg Tablet.'),
(9896, 'Lezin Plus 5mg/10mg Tablet', 'Pifer Pharmaceuticals Pvt Ltd', 'Lezin Plus 5mg/10mg Tablet', 'Will Lezin Plus 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezin Plus 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9897, 'Lezin Plus 5mg/10mg Tablet', 'Pifer Pharmaceuticals Pvt Ltd', 'Lezin Plus 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezin Plus 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9898, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'Does Lezine 10mg Tablet DT make you tired and drowsy?', 'Yes, Lezine 10mg Tablet DT can make you feel tired, sleepy, and weak. If you have these symptoms, you should avoid driving or operating heavy machinery.'),
(9899, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'Is Lezine 10mg Tablet DT a steroid? What is it used for?', 'Lezine 10mg Tablet DT is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(9900, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'How long does it take for Lezine 10mg Tablet DT to work?', 'You will notice an improvement within an hour of taking Lezine 10mg Tablet DT. However, it may take a little longer to notice the full benefits.'),
(9901, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'Can I take Lezine 10mg Tablet DT and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezine 10mg Tablet DT during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(9902, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'For how long should I continue Lezine 10mg Tablet DT?', 'The duration for which the medicine needs to be taken depends on the problem being treated. If you are taking it for an insect bite, you may need it for a day or two. Similarly, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of the nose) or chronic urticaria, you may need to take Lezine 10mg Tablet DT for a longer time. Talk to your doctor if you are unsure about the duration of using Lezine 10mg Tablet DT.'),
(9903, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'Is it safe to take Lezine 10mg Tablet DT daily for a long time?', 'Lezine 10mg Tablet DT is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezine 10mg Tablet DT for only as long as you need it.'),
(9904, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'Does Lezine 10mg Tablet DT make you tired and drowsy?', 'Yes, Lezine 10mg Tablet DT can make you feel tired, sleepy, and weak.'),
(9905, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'Is Lezine 10mg Tablet DT a steroid? What is it used for?', 'Lezine 10mg Tablet DT is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(9906, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'How long does it take for Lezine 10mg Tablet DT to work?', 'You will notice an improvement within an hour of taking Lezine 10mg Tablet DT. However, it may take a little longer to notice the full benefits.'),
(9907, 'Lezine 10mg Tablet DT', 'Lexus Organics', 'Lezine 10mg Tablet DT', 'Can I take Lezine 10mg Tablet DT and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezine 10mg Tablet DT during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(9908, 'Lezine 5mg Tablet', 'PLG Pharmaceutical', 'Lezine 5mg Tablet (PLG Pharmaceutical)', 'Is Lezine 5mg Tablet a steroid? What is it used for?', 'No, Lezine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9909, 'Lezine 5mg Tablet', 'PLG Pharmaceutical', 'Lezine 5mg Tablet (PLG Pharmaceutical)', 'Does Lezine 5mg Tablet make you tired and drowsy?', 'Yes, Lezine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9910, 'Lezine 5mg Tablet', 'PLG Pharmaceutical', 'Lezine 5mg Tablet (PLG Pharmaceutical)', 'How long does it take for Lezine 5mg Tablet to work?', 'Lezine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9911, 'Lezine 5mg Tablet', 'PLG Pharmaceutical', 'Lezine 5mg Tablet (PLG Pharmaceutical)', 'Can I take Lezine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9912, 'Lezine 5mg Tablet', 'PLG Pharmaceutical', 'Lezine 5mg Tablet (PLG Pharmaceutical)', 'Is it safe to take Lezine 5mg Tablet for a long time?', 'Lezine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezine 5mg Tablet for only as long as you need it.'),
(9913, 'Lezine 5mg Tablet', 'PLG Pharmaceutical', 'Lezine 5mg Tablet (PLG Pharmaceutical)', 'For how long should I continue Lezine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezine 5mg Tablet'),
(9914, 'Lezine 5mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lezine 5mg Tablet (Orchid Chemicals & Pharmaceuticals Ltd)', 'Is Lezine 5mg Tablet a steroid? What is it used for?', 'No, Lezine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9915, 'Lezine 5mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lezine 5mg Tablet (Orchid Chemicals & Pharmaceuticals Ltd)', 'Does Lezine 5mg Tablet make you tired and drowsy?', 'Yes, Lezine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9916, 'Lezine 5mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lezine 5mg Tablet (Orchid Chemicals & Pharmaceuticals Ltd)', 'How long does it take for Lezine 5mg Tablet to work?', 'Lezine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9917, 'Lezine 5mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lezine 5mg Tablet (Orchid Chemicals & Pharmaceuticals Ltd)', 'Can I take Lezine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9918, 'Lezine 5mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lezine 5mg Tablet (Orchid Chemicals & Pharmaceuticals Ltd)', 'Is it safe to take Lezine 5mg Tablet for a long time?', 'Lezine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezine 5mg Tablet for only as long as you need it.'),
(9919, 'Lezine 5mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lezine 5mg Tablet (Orchid Chemicals & Pharmaceuticals Ltd)', 'For how long should I continue Lezine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezine 5mg Tablet'),
(9920, 'Lezine 5mg Tablet', 'Acron Pharmaceuticals', 'Lezine 5mg Tablet (Acron Pharmaceuticals)', 'Is Lezine 5mg Tablet a steroid? What is it used for?', 'No, Lezine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9921, 'Lezine 5mg Tablet', 'Acron Pharmaceuticals', 'Lezine 5mg Tablet (Acron Pharmaceuticals)', 'Does Lezine 5mg Tablet make you tired and drowsy?', 'Yes, Lezine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9922, 'Lezine 5mg Tablet', 'Acron Pharmaceuticals', 'Lezine 5mg Tablet (Acron Pharmaceuticals)', 'How long does it take for Lezine 5mg Tablet to work?', 'Lezine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9923, 'Lezine 5mg Tablet', 'Acron Pharmaceuticals', 'Lezine 5mg Tablet (Acron Pharmaceuticals)', 'Can I take Lezine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9924, 'Lezine 5mg Tablet', 'Acron Pharmaceuticals', 'Lezine 5mg Tablet (Acron Pharmaceuticals)', 'Is it safe to take Lezine 5mg Tablet for a long time?', 'Lezine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezine 5mg Tablet for only as long as you need it.'),
(9925, 'Lezine 5mg Tablet', 'Acron Pharmaceuticals', 'Lezine 5mg Tablet (Acron Pharmaceuticals)', 'For how long should I continue Lezine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezine 5mg Tablet'),
(9926, 'Lezine 5mg Tablet', 'Elixir Pharmacon', 'Lezine 5mg Tablet (Elixir Pharmacon)', 'Is Lezine 5mg Tablet a steroid? What is it used for?', 'No, Lezine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9927, 'Lezine 5mg Tablet', 'Elixir Pharmacon', 'Lezine 5mg Tablet (Elixir Pharmacon)', 'Does Lezine 5mg Tablet make you tired and drowsy?', 'Yes, Lezine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9928, 'Lezine 5mg Tablet', 'Elixir Pharmacon', 'Lezine 5mg Tablet (Elixir Pharmacon)', 'How long does it take for Lezine 5mg Tablet to work?', 'Lezine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9929, 'Lezine 5mg Tablet', 'Elixir Pharmacon', 'Lezine 5mg Tablet (Elixir Pharmacon)', 'Can I take Lezine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9930, 'Lezine 5mg Tablet', 'Elixir Pharmacon', 'Lezine 5mg Tablet (Elixir Pharmacon)', 'Is it safe to take Lezine 5mg Tablet for a long time?', 'Lezine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezine 5mg Tablet for only as long as you need it.'),
(9931, 'Lezine 5mg Tablet', 'Elixir Pharmacon', 'Lezine 5mg Tablet (Elixir Pharmacon)', 'For how long should I continue Lezine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezine 5mg Tablet'),
(9932, 'Lezine M 2.5mg/4mg Tablet', 'PLG Pharmaceutical', 'Lezine M 2.5mg/4mg Tablet', 'What is Lezine M 2.5mg/4mg Tablet?', 'Lezine M 2.5mg/4mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9933, 'Lezine M 2.5mg/4mg Tablet', 'PLG Pharmaceutical', 'Lezine M 2.5mg/4mg Tablet', 'Can the use of Lezine M 2.5mg/4mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezine M 2.5mg/4mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9934, 'Lezine M 2.5mg/4mg Tablet', 'PLG Pharmaceutical', 'Lezine M 2.5mg/4mg Tablet', 'Can Lezine M 2.5mg/4mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezine M 2.5mg/4mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9935, 'Lezine M 2.5mg/4mg Tablet', 'PLG Pharmaceutical', 'Lezine M 2.5mg/4mg Tablet', 'Can the use of Lezine M 2.5mg/4mg Tablet cause dry mouth?', 'Yes, the use of Lezine M 2.5mg/4mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9936, 'Lezine M 2.5mg/4mg Tablet', 'PLG Pharmaceutical', 'Lezine M 2.5mg/4mg Tablet', 'Can I drink alcohol while taking Lezine M 2.5mg/4mg Tablet?', 'No, do not take alcohol while taking Lezine M 2.5mg/4mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezine M 2.5mg/4mg Tablet.'),
(9937, 'Lezine M 2.5mg/4mg Tablet', 'PLG Pharmaceutical', 'Lezine M 2.5mg/4mg Tablet', 'Will Lezine M 2.5mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezine M 2.5mg/4mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9938, 'Lezine M 2.5mg/4mg Tablet', 'PLG Pharmaceutical', 'Lezine M 2.5mg/4mg Tablet', 'What are the instructions for storage and disposal of Lezine M 2.5mg/4mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9939, 'Lezine M 5mg/10mg Tablet', 'Jpee Healthcare', 'Lezine M 5mg/10mg Tablet (Jpee Healthcare)', 'What is Lezine M 5mg/10mg Tablet?', 'Lezine M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9940, 'Lezine M 5mg/10mg Tablet', 'Jpee Healthcare', 'Lezine M 5mg/10mg Tablet (Jpee Healthcare)', 'Can the use of Lezine M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezine M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9941, 'Lezine M 5mg/10mg Tablet', 'Jpee Healthcare', 'Lezine M 5mg/10mg Tablet (Jpee Healthcare)', 'Can Lezine M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezine M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9942, 'Lezine M 5mg/10mg Tablet', 'Jpee Healthcare', 'Lezine M 5mg/10mg Tablet (Jpee Healthcare)', 'Can the use of Lezine M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezine M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9943, 'Lezine M 5mg/10mg Tablet', 'Jpee Healthcare', 'Lezine M 5mg/10mg Tablet (Jpee Healthcare)', 'Can I drink alcohol while taking Lezine M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezine M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezine M 5mg/10mg Tablet.'),
(9944, 'Lezine M 5mg/10mg Tablet', 'Jpee Healthcare', 'Lezine M 5mg/10mg Tablet (Jpee Healthcare)', 'Will Lezine M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezine M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9945, 'Lezine M 5mg/10mg Tablet', 'Jpee Healthcare', 'Lezine M 5mg/10mg Tablet (Jpee Healthcare)', 'What are the instructions for storage and disposal of Lezine M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9946, 'Lezine M 5mg/10mg Tablet', 'Elixir Pharmacon', 'Lezine M 5mg/10mg Tablet (Elixir Pharmacon)', 'What is Lezine M 5mg/10mg Tablet?', 'Lezine M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9947, 'Lezine M 5mg/10mg Tablet', 'Elixir Pharmacon', 'Lezine M 5mg/10mg Tablet (Elixir Pharmacon)', 'Can the use of Lezine M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezine M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9948, 'Lezine M 5mg/10mg Tablet', 'Elixir Pharmacon', 'Lezine M 5mg/10mg Tablet (Elixir Pharmacon)', 'Can Lezine M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezine M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9949, 'Lezine M 5mg/10mg Tablet', 'Elixir Pharmacon', 'Lezine M 5mg/10mg Tablet (Elixir Pharmacon)', 'Can the use of Lezine M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezine M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9950, 'Lezine M 5mg/10mg Tablet', 'Elixir Pharmacon', 'Lezine M 5mg/10mg Tablet (Elixir Pharmacon)', 'Can I drink alcohol while taking Lezine M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezine M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezine M 5mg/10mg Tablet.'),
(9951, 'Lezine M 5mg/10mg Tablet', 'Elixir Pharmacon', 'Lezine M 5mg/10mg Tablet (Elixir Pharmacon)', 'Will Lezine M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezine M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9952, 'Lezine M 5mg/10mg Tablet', 'Elixir Pharmacon', 'Lezine M 5mg/10mg Tablet (Elixir Pharmacon)', 'What are the instructions for storage and disposal of Lezine M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9953, 'Lezkast 5mg Tablet', 'Stenhill Labs', 'Lezkast 5mg Tablet', 'Is Lezkast 5mg Tablet a steroid? What is it used for?', 'No, Lezkast 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(9954, 'Lezkast 5mg Tablet', 'Stenhill Labs', 'Lezkast 5mg Tablet', 'Does Lezkast 5mg Tablet make you tired and drowsy?', 'Yes, Lezkast 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(9955, 'Lezkast 5mg Tablet', 'Stenhill Labs', 'Lezkast 5mg Tablet', 'How long does it take for Lezkast 5mg Tablet to work?', 'Lezkast 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(9956, 'Lezkast 5mg Tablet', 'Stenhill Labs', 'Lezkast 5mg Tablet', 'Can I take Lezkast 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezkast 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(9957, 'Lezkast 5mg Tablet', 'Stenhill Labs', 'Lezkast 5mg Tablet', 'Is it safe to take Lezkast 5mg Tablet for a long time?', 'Lezkast 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezkast 5mg Tablet for only as long as you need it.'),
(9958, 'Lezkast 5mg Tablet', 'Stenhill Labs', 'Lezkast 5mg Tablet', 'For how long should I continue Lezkast 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezkast 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezkast 5mg Tablet'),
(9959, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(9960, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'Can I decrease the dose of Lezkast M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(9961, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'How should Lezkast M Syrup be stored?', 'Lezkast M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9962, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'Can Lezkast M Syrup make my child sleepy?', 'Lezkast M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(9963, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lezkast M Syrup?', 'No, don’t start Lezkast M Syrup without speaking to your child’s doctor. Moreover, Lezkast M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(9964, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lezkast M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(9965, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lezkast M Syrup to my child?', 'Some studies show that Lezkast M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(9966, 'Lezkast M Syrup', 'Stenhill Labs', 'Lezkast M Syrup', 'Can I use Lezkast M Syrup for treating acute asthma attacks in my child?', 'Lezkast M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(9967, 'Lezkast-M Tablet', 'Stenhill Labs', 'Lezkast-M Tablet', 'What is Lezkast-M Tablet?', 'Lezkast-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9968, 'Lezkast-M Tablet', 'Stenhill Labs', 'Lezkast-M Tablet', 'Can the use of Lezkast-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezkast-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9969, 'Lezkast-M Tablet', 'Stenhill Labs', 'Lezkast-M Tablet', 'Can Lezkast-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lezkast-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9970, 'Lezkast-M Tablet', 'Stenhill Labs', 'Lezkast-M Tablet', 'Can the use of Lezkast-M Tablet cause dry mouth?', 'Yes, the use of Lezkast-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9971, 'Lezkast-M Tablet', 'Stenhill Labs', 'Lezkast-M Tablet', 'Can I drink alcohol while taking Lezkast-M Tablet?', 'No, do not take alcohol while taking Lezkast-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezkast-M Tablet.'),
(9972, 'Lezkast-M Tablet', 'Stenhill Labs', 'Lezkast-M Tablet', 'Will Lezkast-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezkast-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9973, 'Lezkast-M Tablet', 'Stenhill Labs', 'Lezkast-M Tablet', 'What are the instructions for storage and disposal of Lezkast-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9974, 'Lezlox 500mg Tablet', 'Moderik Healthcare', 'Lezlox 500mg Tablet', 'Is Lezlox 500mg Tablet safe?', 'Lezlox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(9975, 'Lezlox 500mg Tablet', 'Moderik Healthcare', 'Lezlox 500mg Tablet', 'What if I forget to take a dose of Lezlox 500mg Tablet?', 'If you forget a dose of Lezlox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(9976, 'Lezlox 500mg Tablet', 'Moderik Healthcare', 'Lezlox 500mg Tablet', 'Can the use of Lezlox 500mg Tablet cause diarrhea?', 'Yes, the use of Lezlox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(9977, 'Lezlox 500mg Tablet', 'Moderik Healthcare', 'Lezlox 500mg Tablet', 'Can I stop taking Lezlox 500mg Tablet when I feel better?', 'No, do not stop taking Lezlox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lezlox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lezlox 500mg Tablet in the dose and duration advised by the doctor.'),
(9978, 'Lezlox 500mg Tablet', 'Moderik Healthcare', 'Lezlox 500mg Tablet', 'Can the use of Lezlox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lezlox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lezlox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(9979, 'Lezmo 5mg/10mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo 5mg/10mg Tablet', 'What is Lezmo 5mg/10mg Tablet?', 'Lezmo 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(9980, 'Lezmo 5mg/10mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo 5mg/10mg Tablet', 'Can the use of Lezmo 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezmo 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(9981, 'Lezmo 5mg/10mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo 5mg/10mg Tablet', 'Can Lezmo 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezmo 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(9982, 'Lezmo 5mg/10mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo 5mg/10mg Tablet', 'Can the use of Lezmo 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezmo 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(9983, 'Lezmo 5mg/10mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezmo 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezmo 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezmo 5mg/10mg Tablet.'),
(9984, 'Lezmo 5mg/10mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo 5mg/10mg Tablet', 'Will Lezmo 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezmo 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(9985, 'Lezmo 5mg/10mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezmo 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(9986, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(9987, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Lezmo Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(9988, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'How should Lezmo Kid 2.5mg/4mg Tablet be stored?', 'Lezmo Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9989, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'Can Lezmo Kid 2.5mg/4mg Tablet make my child sleepy?', 'Lezmo Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(9990, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lezmo Kid 2.5mg/4mg Tablet?', 'No, don’t start Lezmo Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Lezmo Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(9991, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lezmo Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(9992, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Lezmo Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Lezmo Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(9993, 'Lezmo Kid 2.5mg/4mg Tablet', 'Vasu Organics Pvt Ltd', 'Lezmo Kid 2.5mg/4mg Tablet', 'Can I use Lezmo Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Lezmo Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(9994, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(9995, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'Can I decrease the dose of Lezmo Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(9996, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'How should Lezmo Oral Suspension be stored?', 'Lezmo Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(9997, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'Can Lezmo Oral Suspension make my child sleepy?', 'Lezmo Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(9998, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lezmo Oral Suspension?', 'No, don’t start Lezmo Oral Suspension without speaking to your child’s doctor. Moreover, Lezmo Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(9999, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lezmo Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(10000, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Lezmo Oral Suspension to my child?', 'Some studies show that Lezmo Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(10001, 'Lezmo Oral Suspension', 'Vasu Organics Pvt Ltd', 'Lezmo Oral Suspension', 'Can I use Lezmo Oral Suspension for treating acute asthma attacks in my child?', 'Lezmo Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(10002, 'Lezmox 500mg Capsule', 'Legend Pharma Technologies', 'Lezmox 500mg Capsule', 'What if I miss my dose?', 'Take Lezmox 500mg Capsule as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(10003, 'Lezmox 500mg Capsule', 'Legend Pharma Technologies', 'Lezmox 500mg Capsule', 'Can the use of Lezmox 500mg Capsule cause diarrhea?', 'Yes, the use of Lezmox 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10004, 'Lezmox 500mg Capsule', 'Legend Pharma Technologies', 'Lezmox 500mg Capsule', 'How long does Lezmox 500mg Capsule takes to work?', 'Usually, Lezmox 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(10005, 'Lezmox 500mg Capsule', 'Legend Pharma Technologies', 'Lezmox 500mg Capsule', 'Can I stop taking Lezmox 500mg Capsule when I feel better?', 'No, do not stop taking Lezmox 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10006, 'Lezo 30mg Capsule', 'Cadila Pharmaceuticals Ltd', 'Lezo 30mg Capsule', 'What is Lezo 30mg Capsule? What is it used for?', 'Lezo 30mg Capsule belongs to a class of medicines known as proton pump inhibitors. Lezo 30mg Capsule is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(10007, 'Lezo 30mg Capsule', 'Cadila Pharmaceuticals Ltd', 'Lezo 30mg Capsule', 'How is Lezo 30mg Capsule given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Lezo 30mg Capsule through the nasogastric (NG) tube. Open the Lezo 30mg Capsule capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(10008, 'Lezo 30mg Capsule', 'Cadila Pharmaceuticals Ltd', 'Lezo 30mg Capsule', 'Should Lezo 30mg Capsule be taken empty stomach or with food?', 'Usually, Lezo 30mg Capsule is taken once a day, first thing in the morning, on an empty stomach. If you take Lezo 30mg Capsule twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(10009, 'Lezo 30mg Capsule', 'Cadila Pharmaceuticals Ltd', 'Lezo 30mg Capsule', 'While taking Lezo 30mg Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(10010, 'Lezo 30mg Capsule', 'Cadila Pharmaceuticals Ltd', 'Lezo 30mg Capsule', 'Is Lezo 30mg Capsule used for children?', 'Yes, Lezo 30mg Capsule is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Lezo 30mg Capsule are established only in children between 1 to 17 years of age.'),
(10011, 'Lezo 5mg Tablet MD', 'Cadila Pharmaceuticals Ltd', 'Lezo 5mg Tablet MD', 'Is Lezo 5mg Tablet MD a steroid? What is it used for?', 'No, Lezo 5mg Tablet MD is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10012, 'Lezo 5mg Tablet MD', 'Cadila Pharmaceuticals Ltd', 'Lezo 5mg Tablet MD', 'Does Lezo 5mg Tablet MD make you tired and drowsy?', 'Yes, Lezo 5mg Tablet MD can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10013, 'Lezo 5mg Tablet MD', 'Cadila Pharmaceuticals Ltd', 'Lezo 5mg Tablet MD', 'How long does it take for Lezo 5mg Tablet MD to work?', 'Lezo 5mg Tablet MD starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10014, 'Lezo 5mg Tablet MD', 'Cadila Pharmaceuticals Ltd', 'Lezo 5mg Tablet MD', 'Can I take Lezo 5mg Tablet MD and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezo 5mg Tablet MD during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10015, 'Lezo 5mg Tablet MD', 'Cadila Pharmaceuticals Ltd', 'Lezo 5mg Tablet MD', 'Is it safe to take Lezo 5mg Tablet MD for a long time?', 'Lezo 5mg Tablet MD is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezo 5mg Tablet MD for only as long as you need it.'),
(10016, 'Lezo 5mg Tablet MD', 'Cadila Pharmaceuticals Ltd', 'Lezo 5mg Tablet MD', 'For how long should I continue Lezo 5mg Tablet MD?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezo 5mg Tablet MD for a longer time. Talk to your doctor if you are unsure about the duration of using Lezo 5mg Tablet MD'),
(10017, 'Lezob M 5mg/4mg Tablet', 'Malvern Pharma', 'Lezob M 5mg/4mg Tablet', 'What is Lezob M 5mg/4mg Tablet?', 'Lezob M 5mg/4mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10018, 'Lezob M 5mg/4mg Tablet', 'Malvern Pharma', 'Lezob M 5mg/4mg Tablet', 'Can the use of Lezob M 5mg/4mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezob M 5mg/4mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10019, 'Lezob M 5mg/4mg Tablet', 'Malvern Pharma', 'Lezob M 5mg/4mg Tablet', 'Can Lezob M 5mg/4mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezob M 5mg/4mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10020, 'Lezob M 5mg/4mg Tablet', 'Malvern Pharma', 'Lezob M 5mg/4mg Tablet', 'Can the use of Lezob M 5mg/4mg Tablet cause dry mouth?', 'Yes, the use of Lezob M 5mg/4mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10021, 'Lezob M 5mg/4mg Tablet', 'Malvern Pharma', 'Lezob M 5mg/4mg Tablet', 'Can I drink alcohol while taking Lezob M 5mg/4mg Tablet?', 'No, do not take alcohol while taking Lezob M 5mg/4mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezob M 5mg/4mg Tablet.'),
(10022, 'Lezob M 5mg/4mg Tablet', 'Malvern Pharma', 'Lezob M 5mg/4mg Tablet', 'Will Lezob M 5mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezob M 5mg/4mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10023, 'Lezob M 5mg/4mg Tablet', 'Malvern Pharma', 'Lezob M 5mg/4mg Tablet', 'What are the instructions for storage and disposal of Lezob M 5mg/4mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10024, 'Lezocard 200mg Infusion', 'Cucard Pharma', 'Lezocard 200mg Infusion', 'Can the use of Lezocard 200mg Infusion cause diarrhea?', 'Yes, the use of Lezocard 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10025, 'Lezocard 200mg Infusion', 'Cucard Pharma', 'Lezocard 200mg Infusion', 'What foods should I avoid while taking Lezocard 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lezocard 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(10026, 'Lezofin-M Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezofin-M Tablet', 'What is Lezofin-M Tablet?', 'Lezofin-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10027, 'Lezofin-M Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezofin-M Tablet', 'Can the use of Lezofin-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezofin-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10028, 'Lezofin-M Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezofin-M Tablet', 'Can Lezofin-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lezofin-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10029, 'Lezofin-M Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezofin-M Tablet', 'Can the use of Lezofin-M Tablet cause dry mouth?', 'Yes, the use of Lezofin-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10030, 'Lezofin-M Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezofin-M Tablet', 'Can I drink alcohol while taking Lezofin-M Tablet?', 'No, do not take alcohol while taking Lezofin-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezofin-M Tablet.'),
(10031, 'Lezofin-M Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezofin-M Tablet', 'Will Lezofin-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezofin-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10032, 'Lezofin-M Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezofin-M Tablet', 'What are the instructions for storage and disposal of Lezofin-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10033, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'What is Lezoflam-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(10034, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Is it safe to take Lezoflam-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(10035, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Can I stop taking Lezoflam-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(10036, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Can Lezoflam-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(10037, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Can Lezoflam-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(10038, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Are there any specific contraindications associated with taking Lezoflam-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(10039, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Can I take Lezoflam-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(10040, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Can the use of Lezoflam-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(10041, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'Can I take a higher dose of Lezoflam-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(10042, 'Lezoflam-SP Tablet', 'Lezire Healthcare Pvt Ltd', 'Lezoflam-SP Tablet', 'What are the instructions for storage and disposal of Lezoflam-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10043, 'Lezoflox 500 Tablet', 'Biogenius Labs', 'Lezoflox 500 Tablet', 'Is Lezoflox 500 Tablet safe?', 'Lezoflox 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10044, 'Lezoflox 500 Tablet', 'Biogenius Labs', 'Lezoflox 500 Tablet', 'What if I forget to take a dose of Lezoflox 500 Tablet?', 'If you forget a dose of Lezoflox 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10045, 'Lezoflox 500 Tablet', 'Biogenius Labs', 'Lezoflox 500 Tablet', 'Can the use of Lezoflox 500 Tablet cause diarrhea?', 'Yes, the use of Lezoflox 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10046, 'Lezoflox 500 Tablet', 'Biogenius Labs', 'Lezoflox 500 Tablet', 'Can I stop taking Lezoflox 500 Tablet when I feel better?', 'No, do not stop taking Lezoflox 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lezoflox 500 Tablet too early, the symptoms may return or worsen. Continue taking Lezoflox 500 Tablet in the dose and duration advised by the doctor.'),
(10047, 'Lezoflox 500 Tablet', 'Biogenius Labs', 'Lezoflox 500 Tablet', 'Can the use of Lezoflox 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Lezoflox 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lezoflox 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10048, 'Lezoflox 500mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Lezoflox 500mg Tablet', 'Is Lezoflox 500mg Tablet safe?', 'Lezoflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10049, 'Lezoflox 500mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Lezoflox 500mg Tablet', 'What if I forget to take a dose of Lezoflox 500mg Tablet?', 'If you forget a dose of Lezoflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10050, 'Lezoflox 500mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Lezoflox 500mg Tablet', 'Can the use of Lezoflox 500mg Tablet cause diarrhea?', 'Yes, the use of Lezoflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10051, 'Lezoflox 500mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Lezoflox 500mg Tablet', 'Can I stop taking Lezoflox 500mg Tablet when I feel better?', 'No, do not stop taking Lezoflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lezoflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lezoflox 500mg Tablet in the dose and duration advised by the doctor.'),
(10052, 'Lezoflox 500mg Tablet', 'Dalcon Drugs Pvt Ltd', 'Lezoflox 500mg Tablet', 'Can the use of Lezoflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lezoflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lezoflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10053, 'Lezojoy 600mg Tablet', 'Lifejoy Healthcare', 'Lezojoy 600mg Tablet', 'Can the use of Lezojoy 600mg Tablet cause diarrhea?', 'Yes, the use of Lezojoy 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10054, 'Lezojoy 600mg Tablet', 'Lifejoy Healthcare', 'Lezojoy 600mg Tablet', 'What foods should I avoid while taking Lezojoy 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lezojoy 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(10055, 'Lezol 30mg Tablet', 'Vasphar India', 'Lezol 30mg Tablet', 'What is Lezol 30mg Tablet? What is it used for?', 'Lezol 30mg Tablet belongs to a class of medicines known as proton pump inhibitors. Lezol 30mg Tablet is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(10056, 'Lezol 30mg Tablet', 'Vasphar India', 'Lezol 30mg Tablet', 'How is Lezol 30mg Tablet given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Lezol 30mg Tablet through the nasogastric (NG) tube. Open the Lezol 30mg Tablet capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(10057, 'Lezol 30mg Tablet', 'Vasphar India', 'Lezol 30mg Tablet', 'Should Lezol 30mg Tablet be taken empty stomach or with food?', 'Usually, Lezol 30mg Tablet is taken once a day, first thing in the morning, on an empty stomach. If you take Lezol 30mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(10058, 'Lezol 30mg Tablet', 'Vasphar India', 'Lezol 30mg Tablet', 'While taking Lezol 30mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(10059, 'Lezol 30mg Tablet', 'Vasphar India', 'Lezol 30mg Tablet', 'Is Lezol 30mg Tablet used for children?', 'Yes, Lezol 30mg Tablet is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Lezol 30mg Tablet are established only in children between 1 to 17 years of age.'),
(10060, 'Lezole 1% Cream', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lezole 1% Cream', 'Is Lezole 1% Cream safe in pregnancy?', 'Lezole 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lezole 1% Cream.'),
(10061, 'Lezole 1% Cream', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lezole 1% Cream', 'Is Lezole 1% Cream fungicidal or Fungistatic?', 'Lezole 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(10062, 'Lezole 1% Cream', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lezole 1% Cream', 'How to use Lezole 1% Cream?', 'Use Lezole 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(10063, 'Lezole 1% Cream', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lezole 1% Cream', 'How long does it take for Lezole 1% Cream to work?', 'For different ailments, Lezole 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(10064, 'Lezole 1% Cream', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lezole 1% Cream', 'How should I store Lezole 1% Cream?', 'Keep Lezole 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(10065, 'Lezole 1% Cream', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lezole 1% Cream', 'Is Lezole 1% Cream safe to use in children?', 'Yes, Lezole 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(10066, 'Lezone 1000mg Injection', 'LifeCare Formulation Pvt Ltd', 'Lezone 1000mg Injection', 'Is Lezone 1000mg Injection safe?', 'Lezone 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10067, 'Lezone 1000mg Injection', 'LifeCare Formulation Pvt Ltd', 'Lezone 1000mg Injection', 'How long does Lezone 1000mg Injection take to work?', 'Usually, Lezone 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(10068, 'Lezone 1000mg Injection', 'LifeCare Formulation Pvt Ltd', 'Lezone 1000mg Injection', 'Who should not take Lezone 1000mg Injection?', 'Lezone 1000mg Injection should not be prescribed to people who are allergic to Lezone 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Lezone 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(10069, 'Lezone 1000mg Injection', 'LifeCare Formulation Pvt Ltd', 'Lezone 1000mg Injection', 'What if I do not get better after using Lezone 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10070, 'Lezone 1000mg Injection', 'LifeCare Formulation Pvt Ltd', 'Lezone 1000mg Injection', 'For how long does Lezone 1000mg Injection stay in the body?', 'Usually, Lezone 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(10071, 'Lezone 1000mg Injection', 'LifeCare Formulation Pvt Ltd', 'Lezone 1000mg Injection', 'Is Lezone 1000mg Injection effective?', 'Lezone 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lezone 1000mg Injection too early, the symptoms may return or worsen.'),
(10072, 'Lezone 1000mg Injection', 'LifeCare Formulation Pvt Ltd', 'Lezone 1000mg Injection', 'How is Lezone 1000mg Injection administered?', 'Lezone 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lezone 1000mg Injection.'),
(10073, 'Lezone 100mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 100mg Tablet', 'How long should I take Lezone 100mg Tablet?', 'Lezone 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(10074, 'Lezone 100mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 100mg Tablet', 'What if I do not get better after using Lezone 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10075, 'Lezone 100mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 100mg Tablet', 'Can the use of Lezone 100mg Tablet cause diarrhea?', 'Yes, the use of Lezone 100mg Tablet can cause diarrhea. Lezone 100mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(10076, 'Lezone 100mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 100mg Tablet', 'Is Lezone 100mg Tablet effective?', 'Lezone 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lezone 100mg Tablet too early, the symptoms may return or worsen.'),
(10077, 'Lezone 100mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 100mg Tablet', 'What if I forget to take a dose of Lezone 100mg Tablet?', 'If you forget a dose of Lezone 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10078, 'Lezone 100mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 100mg Tablet', 'Is Lezone 100mg Tablet safe for the kidneys?', 'Yes, Lezone 100mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(10079, 'Lezone 100mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 100mg Tablet', 'How long should I take Lezone 100mg Tablet?', 'Lezone 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(10080, 'Lezone 200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 200mg Tablet', 'Q. How long should I take Lezone 200mg Tablet?', 'Lezone 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(10081, 'Lezone 200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 200mg Tablet', 'Q. What if I do not get better after using Lezone 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10082, 'Lezone 200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 200mg Tablet', 'Q. Can the use of Lezone 200mg Tablet cause diarrhea?', 'Yes, the use of Lezone 200mg Tablet can cause diarrhea. Lezone 200mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(10083, 'Lezone 200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 200mg Tablet', 'Q. Is Lezone 200mg Tablet effective?', 'Lezone 200mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lezone 200mg Tablet too early, the symptoms may return or worsen.'),
(10084, 'Lezone 200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 200mg Tablet', 'Q. What if I forget to take a dose of Lezone 200mg Tablet?', 'If you forget a dose of Lezone 200mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10085, 'Lezone 200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 200mg Tablet', 'Q. Is Lezone 200mg Tablet safe for the kidneys?', 'Yes, Lezone 200mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(10086, 'Lezone 200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone 200mg Tablet', 'Q. How long should I take Lezone 200mg Tablet?', 'Lezone 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(10087, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. What if I give too much of Lezone 50mg Dry Syrup by mistake?', 'An extra dose of Lezone 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lezone 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(10088, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. Are there any possible serious side effects of Lezone 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(10089, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. Can other medicines be given at the same time as Lezone 50mg Dry Syrup?', 'Lezone 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lezone 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(10090, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. Can I get my child vaccinated while on treatment with Lezone 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(10091, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. Which lab tests may my child undergo while taking Lezone 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(10092, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(10093, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(10094, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. Can Lezone 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lezone 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lezone 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(10095, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. Can Lezone 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Lezone 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(10096, 'Lezone 50mg Dry Syrup', 'LifeCare Formulation Pvt Ltd', 'Lezone 50mg Dry Syrup', 'Q. How long should I take Lezone 50mg Dry Syrup?', 'Lezone 50mg Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(10097, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'Is Lezone O 100mg Tablet safe to use?', 'Lezone O 100mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(10098, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'Can the use of Lezone O 100mg Tablet cause diarrhea?', 'Yes, the use of Lezone O 100mg Tablet can cause diarrhea. Lezone O 100mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(10099, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'Is Lezone O 100mg Tablet an antibiotic?', 'Yes, Lezone O 100mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(10100, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'Can Lezone O 100mg Tablet cause constipation?', 'Yes, Lezone O 100mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(10101, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'Can I stop taking Lezone O 100mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lezone O 100mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(10102, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'How long does Lezone O 100mg Tablet take to work?', 'Usually, Lezone O 100mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(10103, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'What if I do not get better after using Lezone O 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10104, 'Lezone O 100mg Tablet', 'Lee Benz Life Science', 'Lezone O 100mg Tablet', 'Can Lezone O 100mg Tablet treat UTI?', 'Yes, Lezone O 100mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lezone O 100mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(10105, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'Is Lezone O 200mg Tablet safe to use?', 'Lezone O 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(10106, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'Can the use of Lezone O 200mg Tablet cause diarrhea?', 'Yes, the use of Lezone O 200mg Tablet can cause diarrhea. Lezone O 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(10107, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'Is Lezone O 200mg Tablet an antibiotic?', 'Yes, Lezone O 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(10108, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'Can Lezone O 200mg Tablet cause constipation?', 'Yes, Lezone O 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(10109, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'Can I stop taking Lezone O 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lezone O 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(10110, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'How long does Lezone O 200mg Tablet take to work?', 'Usually, Lezone O 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(10111, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'What if I do not get better after using Lezone O 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10112, 'Lezone O 200mg Tablet', 'Lee Benz Life Science', 'Lezone O 200mg Tablet', 'Can Lezone O 200mg Tablet treat UTI?', 'Yes, Lezone O 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lezone O 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(10113, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'Can I stop taking Lezone O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lezone O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10114, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lezone O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(10115, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'Can the use of Lezone O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lezone O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10116, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'What if I don\'t get better after using Lezone O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(10117, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'Does the use of Lezone O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lezone O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(10118, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(10119, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'Can I drive while I am taking Lezone O 200mg/200mg Tablet?', 'No, taking Lezone O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(10120, 'Lezone O 200mg/200mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lezone O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Lezone O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10121, 'LEZONE S 1000mg/500mg Injection', 'LifeCare Formulation Pvt Ltd', 'LEZONE S 1000mg/500mg Injection', 'Can the use of LEZONE S 1000mg/500mg Injection cause allergic reaction?', 'Yes, LEZONE S 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(10122, 'LEZONE S 1000mg/500mg Injection', 'LifeCare Formulation Pvt Ltd', 'LEZONE S 1000mg/500mg Injection', 'Can the use of LEZONE S 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of LEZONE S 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10123, 'LEZONE S 1000mg/500mg Injection', 'LifeCare Formulation Pvt Ltd', 'LEZONE S 1000mg/500mg Injection', 'How long does LEZONE S 1000mg/500mg Injection takes to work?', 'Usually, LEZONE S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(10124, 'LEZONE S 1000mg/500mg Injection', 'LifeCare Formulation Pvt Ltd', 'LEZONE S 1000mg/500mg Injection', 'What if I don\'t get better after using LEZONE S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10125, 'LEZONE S 1000mg/500mg Injection', 'LifeCare Formulation Pvt Ltd', 'LEZONE S 1000mg/500mg Injection', 'Can I stop taking LEZONE S 1000mg/500mg Injection when I feel better?', 'No, do not stop taking LEZONE S 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10126, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'What is Lezopan D 30mg/40mg Capsule SR?', 'Lezopan D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(10127, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'Is it safe to use Lezopan D 30mg/40mg Capsule SR?', 'Lezopan D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(10128, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'Are there any specific contraindications associated with the use of Lezopan D 30mg/40mg Capsule SR?', 'The use of Lezopan D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10129, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'Can the use of Lezopan D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Lezopan D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(10130, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'Can the use of Lezopan D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Lezopan D 30mg/40mg Capsule SR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(10131, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Lezopan D 30mg/40mg Capsule SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10132, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'What is Lezopan D 30mg/40mg Capsule SR price?', 'You can get Lezopan D 30mg/40mg Capsule SR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(10133, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'While taking Lezopan D 30mg/40mg Capsule SR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(10134, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'Can I take alcohol while taking Lezopan D 30mg/40mg Capsule SR?', 'No, alcohol intake is not advised with Lezopan D 30mg/40mg Capsule SR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(10135, 'Lezopan D 30mg/40mg Capsule SR', 'Superlative Healthcare', 'Lezopan D 30mg/40mg Capsule SR', 'Can I stop taking Lezopan D 30mg/40mg Capsule SR if I feel better?', 'If you have been taking Lezopan D 30mg/40mg Capsule SR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(10136, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'What is Lezorab 20 Tablet used for?', 'Lezorab 20 Tablet is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis, or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Lezorab 20 Tablet also prevents acidity associated with the use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES).'),
(10137, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'How long does it take for Lezorab 20 Tablet to work?', 'Lezorab 20 Tablet starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(10138, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'What is the best time to take Lezorab 20 Tablet?', 'It is best to take Lezorab 20 Tablet before your breakfast. If you are taking two doses, take it in the morning and evening. Lezorab 20 Tablet is more effective when it is taken an hour before your food.'),
(10139, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'Can I stop taking Lezorab 20 Tablet if I feel better?', 'No, do not stop taking Lezorab 20 Tablet before completing the full course of treatment. You will start to feel better before your treatment is complete.'),
(10140, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'Does Lezorab 20 Tablet cause bone problems?', 'Yes, long-term use of Lezorab 20 Tablet can cause thinning of bones, which is called osteoporosis. Lezorab 20 Tablet decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(10141, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'How is Lezorab 20 Tablet useful in the treatment of H. pylori infection?', 'Lezorab 20 Tablet is used along with antibiotics for the treatment of H.Pylori infection. It works by decreasing stomach acid volume and decreasing breakdown and washout of antibiotics leading to an increased antibiotic concentration and tissue penetration. It also helps in symptomatic relief by decreasing associated acidity, reflux, and heartburn.'),
(10142, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'Can I take Lezorab 20 Tablet with vitamin D?', 'Yes, vitamin D can be taken along with Lezorab 20 Tablet. Vitamin D is generally advised to be taken as a supplement with Lezorab 20 Tablet as the long-term use of Lezorab 20 Tablet decreases the absorption of calcium and may lead to calcium deficiency. This can lead to osteoporosis (thinning of bones) and increase the risk of bone fractures like hip, wrist, and spine fractures. Please consult your doctor to know about ways to prevent this.'),
(10143, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'Can long term use of Lezorab 20 Tablet cause magnesium deficiency?', 'Long-term use of Lezorab 20 Tablet can lower magnesium levels in patients taking multiple daily doses for 3 months or longer. Get your magnesium levels checked at regular intervals. Tell your doctor if you experience seizures (fits), dizziness, abnormal or fast heartbeat, jitteriness, jerking movements or shaking (tremors), muscle weakness, spasms of the hands and feet, cramps, muscle aches.'),
(10144, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'Is it safe to use Lezorab 20 Tablet for a long period of time?', 'Lezorab 20 Tablet should be used for as long as it has been prescribed by your doctor. Lezorab 20 Tablet is usually considered to be safe when taken in the recommended dose and duration. If Lezorab 20 Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood, making you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, subacute cutaneous lupus erythematosus, osteoporosis, and vitamin B12 deficiency.'),
(10145, 'Lezorab 20 Tablet', 'Superlative Healthcare', 'Lezorab 20 Tablet', 'Can I take alcohol with Lezorab 20 Tablet?', 'No, alcohol intake is not advised with Lezorab 20 Tablet. Alcohol itself does not affect the working of Lezorab 20 Tablet, but it can increase acid production. This may further cause worsening of your symptoms.'),
(10146, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'What is Lezorab-DSR Capsule?', 'Lezorab-DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10147, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'What are the contraindications of Lezorab-DSR Capsule?', 'The use of Lezorab-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10148, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'Can the use of Lezorab-DSR Capsule cause dry mouth?', 'Yes, the use of Lezorab-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(10149, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'Can the use of Lezorab-DSR Capsule cause diarrhea?', 'Yes, the use of Lezorab-DSR Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(10150, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'What is the recommended storage condition for Lezorab-DSR Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10151, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'Is it safe to use Lezorab-DSR Capsule?', 'Yes, Lezorab-DSR Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10152, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'What is the best time to take Lezorab-DSR Capsule?', 'It is best to take Lezorab-DSR Capsule before the first meal of the day or on an empty stomach.'),
(10153, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'Can the use of Lezorab-DSR Capsule cause abnormal heartbeat?', 'Yes, the use of Lezorab-DSR Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(10154, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'What is Lezorab-DSR Capsule?', 'Lezorab-DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10155, 'Lezorab-DSR Capsule', 'Superlative Healthcare', 'Lezorab-DSR Capsule', 'What are the contraindications of Lezorab-DSR Capsule?', 'The use of Lezorab-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10156, 'Lezorab-L Capsule SR', 'Superlative Healthcare', 'Lezorab-L Capsule SR', 'Which is the best time to take Lezorab-L Capsule SR?', 'Take the Lezorab-L Capsule SR exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(10157, 'Lezorab-L Capsule SR', 'Superlative Healthcare', 'Lezorab-L Capsule SR', 'What are the contraindications associated with the use of Lezorab-L Capsule SR?', 'Use of Lezorab-L Capsule SR should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(10158, 'Lezorab-L Capsule SR', 'Superlative Healthcare', 'Lezorab-L Capsule SR', 'Can the use of Lezorab-L Capsule SR cause dizziness?', 'Yes, the use of Lezorab-L Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(10159, 'Lezorab-L Capsule SR', 'Superlative Healthcare', 'Lezorab-L Capsule SR', 'Does the use of Lezorab-L Capsule SR lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Lezorab-L Capsule SR may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(10160, 'Lezorab-L Capsule SR', 'Superlative Healthcare', 'Lezorab-L Capsule SR', 'Can I drive while taking Lezorab-L Capsule SR?', 'No, taking Lezorab-L Capsule SR may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(10161, 'Lezorab-L Capsule SR', 'Superlative Healthcare', 'Lezorab-L Capsule SR', 'What are the instructions for the storage and disposal of Lezorab-L Capsule SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10162, 'Lezoryp 600mg Tablet', 'Aplonis Healthcare', 'Lezoryp 600mg Tablet', 'Can the use of Lezoryp 600mg Tablet cause diarrhea?', 'Yes, the use of Lezoryp 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10163, 'Lezoryp 600mg Tablet', 'Aplonis Healthcare', 'Lezoryp 600mg Tablet', 'What foods should I avoid while taking Lezoryp 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lezoryp 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(10164, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'Can I take Lezosec 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lezosec 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(10165, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'What should I know before taking Lezosec 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(10166, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'Can Lezosec 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(10167, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'For how long can Lezosec 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(10168, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'Can Lezosec 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(10169, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'What are the long term side effects of Lezosec 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(10170, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'Does Lezosec 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(10171, 'Lezosec 20mg Capsule', 'Baxton Pharmacia', 'Lezosec 20mg Capsule', 'Can Lezosec 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(10172, 'Lezosec D 10mg/20mg Capsule', 'Baxton Pharmacia', 'Lezosec D 10mg/20mg Capsule', 'Is it safe to use Lezosec D 10mg/20mg Capsule?', 'Yes, Lezosec D 10mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10173, 'Lezosec D 10mg/20mg Capsule', 'Baxton Pharmacia', 'Lezosec D 10mg/20mg Capsule', 'What are the contraindications of Lezosec D 10mg/20mg Capsule?', 'The use of Lezosec D 10mg/20mg Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(10174, 'Lezosec D 10mg/20mg Capsule', 'Baxton Pharmacia', 'Lezosec D 10mg/20mg Capsule', 'What is the best time to take Lezosec D 10mg/20mg Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(10175, 'Lezosec D 10mg/20mg Capsule', 'Baxton Pharmacia', 'Lezosec D 10mg/20mg Capsule', 'Can the use of Lezosec D 10mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lezosec D 10mg/20mg Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(10176, 'Lezosec D 10mg/20mg Capsule', 'Baxton Pharmacia', 'Lezosec D 10mg/20mg Capsule', 'Does the use of Lezosec D 10mg/20mg Capsule lead to dry mouth?', 'Yes, the use of Lezosec D 10mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(10177, 'Lezosec D 10mg/20mg Capsule', 'Baxton Pharmacia', 'Lezosec D 10mg/20mg Capsule', 'What is the recommended storage condition for Lezosec D 10mg/20mg Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10178, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'What is Lezosole D 30mg/20mg Capsule SR?', 'Lezosole D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10179, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'What are the contraindications of Lezosole D 30mg/20mg Capsule SR?', 'The use of Lezosole D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10180, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'Can the use of Lezosole D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Lezosole D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(10181, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'Can the use of Lezosole D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Lezosole D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(10182, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Lezosole D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10183, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'Is it safe to use Lezosole D 30mg/20mg Capsule SR?', 'Yes, Lezosole D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10184, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'What is the best time to take Lezosole D 30mg/20mg Capsule SR?', 'It is best to take Lezosole D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(10185, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'Can the use of Lezosole D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Lezosole D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(10186, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'What is Lezosole D 30mg/20mg Capsule SR?', 'Lezosole D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10187, 'Lezosole D 30mg/20mg Capsule SR', 'Superlative Healthcare', 'Lezosole D 30mg/20mg Capsule SR', 'What are the contraindications of Lezosole D 30mg/20mg Capsule SR?', 'The use of Lezosole D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10188, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. What is the best time to take Lezosom 20 Tablet?', 'Usually, Lezosom 20 Tablet is taken once a day, first thing in the morning. If you take Lezosom 20 Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(10189, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Can I take Lezosom 20 Tablet with domperidone?', 'Yes, Lezosom 20 Tablet can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lezosom 20 Tablet decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(10190, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Can I take antacids along with Lezosom 20 Tablet?', 'Yes, you can take antacids along with Lezosom 20 Tablet. Take it 2 hours before or after you take Lezosom 20 Tablet.'),
(10191, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Can I take Lezosom 20 Tablet for a long term?', 'Lezosom 20 Tablet is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lezosom 20 Tablet may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lezosom 20 Tablet as advised by your doctor and under their supervision.'),
(10192, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. What are the long term side effects of Lezosom 20 Tablet?', 'If Lezosom 20 Tablet is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(10193, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Can I stop taking Lezosom 20 Tablet if I feel better?', 'If you have been taking Lezosom 20 Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lezosom 20 Tablet.'),
(10194, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Can Lezosom 20 Tablet cause weight gain?', 'Weight gain is reported in less than 1% of the patients taking Lezosom 20 Tablet but the exact cause is unknown. One possible explanation is higher food intake once the reflux symptoms are relieved. Lifestyle modifications such as proper diet and exercise can help to prevent weight gain.'),
(10195, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Is Lezosom 20 Tablet safe to use?', 'Yes, Lezosom 20 Tablet is relatively safe to use. Most of the people who take Lezosom 20 Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefit.'),
(10196, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Can I take Lezosom 20 Tablet with ranitidine?', 'Yes, Lezosom 20 Tablet can be taken with ranitidine. According to research reports, there are no significant interactions seen between Lezosom 20 Tablet and ranitidine. However, you must take them together only if prescribed by the doctor.'),
(10197, 'Lezosom 20 Tablet', 'Superlative Healthcare', 'Lezosom 20 Tablet', 'Q. Can I take alcohol with Lezosom 20 Tablet?', 'No, alcohol intake is not advised with Lezosom 20 Tablet. Alcohol itself does not affect the working of Lezosom 20 Tablet, but it can increase the acid production. This may further cause worsening of your symptoms'),
(10198, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'What is Lezosom-DSR Capsule?', 'Lezosom-DSR Capsule is a combination of two medicines: Domperidone and Esomeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10199, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'Is it safe to use Lezosom-DSR Capsule?', 'Yes, Lezosom-DSR Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhoea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10200, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'What is the best time to take Lezosom-DSR Capsule?', 'It is best to take Lezosom-DSR Capsule before the first meal of the day or on an empty stomach.'),
(10201, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'Can the use of Lezosom-DSR Capsule cause abnormal heartbeat?', 'Yes, the use of Lezosom-DSR Capsule can increase the risk of irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(10202, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'What are the contraindications associated with the use of Lezosom-DSR Capsule?', 'The use of Lezosom-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10203, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'Can the use of Lezosom-DSR Capsule cause dry mouth?', 'Yes, the use of Lezosom-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(10204, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'Can the use of Lezosom-DSR Capsule cause diarrhea?', 'Yes, the use of Lezosom-DSR Capsule can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and if you notice signs of dehydration, like less frequency of urination and dark colored and strong-smelling urine. Avoid taking fatty or fried foods with this medication. Also, do not take any medicines without consulting the doctor.'),
(10205, 'Lezosom-DSR Capsule', 'Superlative Healthcare', 'Lezosom-DSR Capsule', 'What are the storage conditions for Lezosom-DSR Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10206, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'Why have I been prescribed Lezosy 2.5mg Tablet?', 'Lezosy 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(10207, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'How does Lezosy 2.5mg Tablet work?', 'Lezosy 2.5mg Tablet is also known as an anti-estrogen drug. It is called so because it acts by reducing the production of estrogen in your body by blocking the enzyme aromatase, which is responsible for the production of estrogen. Estrogen stimulates the production of certain types of breast cancer in your body. These cancers are called \'__\'estrogen-dependent cancers\'__\'. Reducing the production of estrogen may prevent cancer from growing.'),
(10208, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'For how long should I take Lezosy 2.5mg Tablet?', 'If the breast tumor is in the advanced stage or has spread to other parts of the body, it is recommended that you continue taking Lezosy 2.5mg Tablet till the tumor shows progression. In cases where Lezosy 2.5mg Tablet is given after tamoxifen (another anti-estrogen used for breast cancer) or surgery, it should be given for 5 years or until the tumor comes back, whichever is first. It can also be given as a sequential treatment; 2 years of Lezosy 2.5mg Tablet followed by 3 years of tamoxifen.'),
(10209, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'If I am taking irbesartan to control my blood pressure, can I take Lezosy 2.5mg Tablet?', 'Yes, you can take irbesartan and Lezosy 2.5mg Tablet together. However, be careful and keep a regular check on your blood pressure since Lezosy 2.5mg Tablet may increase your blood pressure. Consult your doctor in case you have problems controlling your blood pressure.'),
(10210, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'Does Lezosy 2.5mg Tablet affect vision?', 'Although it is very uncommon, Lezosy 2.5mg Tablet may cause a cataract. So, if you experience blurred vision or eye irritation, consult your doctor immediately.'),
(10211, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'My friend who is taking Lezosy 2.5mg Tablet often sweats a lot. Is it because of Lezosy 2.5mg Tablet?', 'This could be a sign of hot flushes which is a very common side effect of Lezosy 2.5mg Tablet. It happens due to decreased estrogen levels. The frequency of hot flushes reduces once your body adjusts to Lezosy 2.5mg Tablet. However, in some people, the flushes and sweats may continue during the treatment and stop a few months after the treatment finishes. You can consult your doctor who will provide you a remedy if it is very bothersome.'),
(10212, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'What are the serious side effects of Lezosy 2.5mg Tablet?', 'The serious side effects do not occur in everyone and very few people experience them. The serious side effects of Lezosy 2.5mg Tablet include stroke, angina, heart attack, blood clotting, cataract, osteoporosis, and severe skin reactions.'),
(10213, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'Does Lezosy 2.5mg Tablet cause bone loss?', 'Lezosy 2.5mg Tablet may cause thinning or wasting of your bones (osteoporosis), which is due to the decrease in estrogen levels in your body. Your doctor may decide to measure your bone density (a way of monitoring for osteoporosis) before, during and after treatment.'),
(10214, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'Can I take Lezosy 2.5mg Tablet for induction of ovulation in anovulatory infertility?', 'As per the Ministry of Health and Family Welfare, Lezosy 2.5mg Tablet is restricted for use in induction of ovulation in anovulatory infertility.'),
(10215, 'Lezosy 2.5mg Tablet', 'Biosys Medisciences', 'Lezosy 2.5mg Tablet', 'Why have I been prescribed Lezosy 2.5mg Tablet?', 'Lezosy 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(10216, 'Lezot 500mg Tablet', 'Srb Life Science', 'Lezot 500mg Tablet', 'Is Lezot 500mg Tablet safe?', 'Lezot 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10217, 'Lezot 500mg Tablet', 'Srb Life Science', 'Lezot 500mg Tablet', 'What if I forget to take a dose of Lezot 500mg Tablet?', 'If you forget a dose of Lezot 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10218, 'Lezot 500mg Tablet', 'Srb Life Science', 'Lezot 500mg Tablet', 'Can the use of Lezot 500mg Tablet cause diarrhea?', 'Yes, the use of Lezot 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10219, 'Lezot 500mg Tablet', 'Srb Life Science', 'Lezot 500mg Tablet', 'Can I stop taking Lezot 500mg Tablet when I feel better?', 'No, do not stop taking Lezot 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lezot 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lezot 500mg Tablet in the dose and duration advised by the doctor.'),
(10220, 'Lezot 500mg Tablet', 'Srb Life Science', 'Lezot 500mg Tablet', 'Can the use of Lezot 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lezot 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lezot 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10221, 'Lezowyn 600mg Tablet', 'Norwynn Healthcare', 'Lezowyn 600mg Tablet', 'Can the use of Lezowyn 600mg Tablet cause diarrhea?', 'Yes, the use of Lezowyn 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10222, 'Lezowyn 600mg Tablet', 'Norwynn Healthcare', 'Lezowyn 600mg Tablet', 'What foods should I avoid while taking Lezowyn 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lezowyn 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(10223, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'What if I give an excess of Lezowynn 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(10224, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lezowynn 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(10225, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lezowynn 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lezowynn 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(10226, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'Can Lezowynn 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lezowynn 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(10227, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'Can other medicines be given at the same time as Lezowynn 100mg Dry Syrup?', 'Lezowynn 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lezowynn 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(10228, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lezowynn 100mg Dry Syrup?', 'For children receiving Lezowynn 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(10229, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lezowynn 100mg Dry Syrup to my child?', 'Avoid giving Lezowynn 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lezowynn 100mg Dry Syrup to your child.'),
(10230, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'What food items should my child avoid while taking Lezowynn 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lezowynn 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(10231, 'Lezowynn 100mg Dry Syrup', 'Norwynn Healthcare', 'Lezowynn 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lezowynn 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lezowynn 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(10232, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'What if I give an excess of Lezox Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10233, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lezox Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(10234, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'What should I do if my child shows no improvement even after taking Lezox Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lezox Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(10235, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'Can Lezox Oral Suspension be given for a long duration?', 'Prolonged use of Lezox Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(10236, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'Can other medicines be given at the same time as Lezox Oral Suspension?', 'Lezox Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lezox Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(10237, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Lezox Oral Suspension?', 'For children receiving Lezox Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(10238, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'In which disease conditions should I avoid giving Lezox Oral Suspension to my child?', 'Avoid giving Lezox Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lezox Oral Suspension to your child.'),
(10239, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'What food items should my child avoid while taking Lezox Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lezox Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(10240, 'Lezox Oral Suspension', 'MRG Pharmaceuticals', 'Lezox Oral Suspension', 'Can I get my child vaccinated while on treatment with Lezox Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Lezox Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(10241, 'Lezrick 6 Tablet', 'Moderik Healthcare', 'Lezrick 6 Tablet', 'Is Lezrick 6 Tablet a steroid?', 'Yes, Lezrick 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezrick 6 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(10242, 'Lezrick 6 Tablet', 'Moderik Healthcare', 'Lezrick 6 Tablet', 'What is Lezrick 6 Tablet used for?', 'Lezrick 6 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(10243, 'Lezrick 6 Tablet', 'Moderik Healthcare', 'Lezrick 6 Tablet', 'How does Lezrick 6 Tablet work?', 'Lezrick 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(10244, 'Lezrick 6 Tablet', 'Moderik Healthcare', 'Lezrick 6 Tablet', 'Is Lezrick 6 Tablet better than Prednisone?', 'Clinical studies have shown that Lezrick 6 Tablet has a similar effect as that of prednisone. Moreover, Lezrick 6 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(10245, 'Lezrick 6 Tablet', 'Moderik Healthcare', 'Lezrick 6 Tablet', 'Is Lezrick 6 Tablet a painkiller?', 'No, Lezrick 6 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(10246, 'Lezrick 6 Tablet', 'Moderik Healthcare', 'Lezrick 6 Tablet', 'Can I take Lezrick 6 Tablet with Tamsulosin?', 'Yes, Lezrick 6 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(10247, 'Lezrick Oral Suspension', 'Moderik Healthcare', 'Lezrick Oral Suspension', 'Is Lezrick Oral Suspension a steroid?', 'Yes, Lezrick Oral Suspension is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lezrick Oral Suspension increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(10248, 'Lezrick Oral Suspension', 'Moderik Healthcare', 'Lezrick Oral Suspension', 'In what conditions should I avoid giving Lezrick Oral Suspension to my child?', 'Avoid giving Lezrick Oral Suspension to your child if they have conditions like cardiac disease or congestive heart failure (except in the presence of active rheumatic carditis), hypertension, thromboembolic disorders, or diabetes mellitus. Lezrick Oral Suspension should also be avoided if your child has a family history of active TB, active herpes infection, osteoporosis, myasthenia gravis, or renal insufficiency.'),
(10249, 'Lezrick Oral Suspension', 'Moderik Healthcare', 'Lezrick Oral Suspension', 'What do I need to know about Lezrick Oral Suspension and my child’s immunizations?', 'For certain vaccines (live or live-attenuated vaccines), your child will need to wait 4 to 6 weeks before starting Lezrick Oral Suspension. Hence, your child needs to receive all immunizations according to immunization guidelines before they start taking Lezrick Oral Suspension.'),
(10250, 'Lezrick Oral Suspension', 'Moderik Healthcare', 'Lezrick Oral Suspension', 'How can I store Lezrick Oral Suspension at home?', 'Keep the medicine in a cool dry place out of the reach of children and pets. This will help avoid any accidental intake.'),
(10251, 'Lezrick Oral Suspension', 'Moderik Healthcare', 'Lezrick Oral Suspension', 'My child is suffering from a seizure disorder. Is it safe to give Lezrick Oral Suspension to my child?', 'Ans: Prolonged intake of Lezrick Oral Suspension can lead to mental illness as well as a seizure disorder. Therefore, any child who is already suffering from seizure disorder should not take Lezrick Oral Suspension.'),
(10252, 'Lezvo Tablet DT', 'Vasu Organics Pvt Ltd', 'Lezvo Tablet DT', 'Is Lezvo Tablet DT a steroid? What is it used for?', 'No, Lezvo Tablet DT is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10253, 'Lezvo Tablet DT', 'Vasu Organics Pvt Ltd', 'Lezvo Tablet DT', 'Does Lezvo Tablet DT make you tired and drowsy?', 'Yes, Lezvo Tablet DT can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10254, 'Lezvo Tablet DT', 'Vasu Organics Pvt Ltd', 'Lezvo Tablet DT', 'How long does it take for Lezvo Tablet DT to work?', 'Lezvo Tablet DT starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10255, 'Lezvo Tablet DT', 'Vasu Organics Pvt Ltd', 'Lezvo Tablet DT', 'Can I take Lezvo Tablet DT and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezvo Tablet DT during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10256, 'Lezvo Tablet DT', 'Vasu Organics Pvt Ltd', 'Lezvo Tablet DT', 'Is it safe to take Lezvo Tablet DT for a long time?', 'Lezvo Tablet DT is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezvo Tablet DT for only as long as you need it.'),
(10257, 'Lezvo Tablet DT', 'Vasu Organics Pvt Ltd', 'Lezvo Tablet DT', 'For how long should I continue Lezvo Tablet DT?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezvo Tablet DT for a longer time. Talk to your doctor if you are unsure about the duration of using Lezvo Tablet DT'),
(10258, 'Lezyncet 10 Tablet DT', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 10 Tablet DT', 'Is Lezyncet 10 Tablet DT a steroid? What is it used for?', 'No, Lezyncet 10 Tablet DT is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10259, 'Lezyncet 10 Tablet DT', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 10 Tablet DT', 'Does Lezyncet 10 Tablet DT make you tired and drowsy?', 'Yes, Lezyncet 10 Tablet DT can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10260, 'Lezyncet 10 Tablet DT', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 10 Tablet DT', 'How long does it take for Lezyncet 10 Tablet DT to work?', 'Lezyncet 10 Tablet DT starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10261, 'Lezyncet 10 Tablet DT', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 10 Tablet DT', 'Can I take Lezyncet 10 Tablet DT and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezyncet 10 Tablet DT during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10262, 'Lezyncet 10 Tablet DT', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 10 Tablet DT', 'Is it safe to take Lezyncet 10 Tablet DT for a long time?', 'Lezyncet 10 Tablet DT is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezyncet 10 Tablet DT for only as long as you need it.'),
(10263, 'Lezyncet 10 Tablet DT', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 10 Tablet DT', 'For how long should I continue Lezyncet 10 Tablet DT?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezyncet 10 Tablet DT for a longer time. Talk to your doctor if you are unsure about the duration of using Lezyncet 10 Tablet DT'),
(10264, 'Lezyncet 2.5mg/5ml Syrup', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 2.5mg/5ml Syrup', 'My child is restless and unable to sleep properly at night. Can I give Lezyncet 2.5mg/5ml Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(10265, 'Lezyncet 2.5mg/5ml Syrup', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 2.5mg/5ml Syrup', 'Can other medicines be given at the same time as Lezyncet 2.5mg/5ml Syrup?', 'Lezyncet 2.5mg/5ml Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lezyncet 2.5mg/5ml Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(10266, 'Lezyncet 2.5mg/5ml Syrup', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 2.5mg/5ml Syrup', 'How much Lezyncet 2.5mg/5ml Syrup should I give to my child?', 'Lezyncet 2.5mg/5ml Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(10267, 'Lezyncet 2.5mg/5ml Syrup', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 2.5mg/5ml Syrup', 'What if I give too much of Lezyncet 2.5mg/5ml Syrup by mistake?', 'Although Lezyncet 2.5mg/5ml Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(10268, 'Lezyncet 2.5mg/5ml Syrup', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 2.5mg/5ml Syrup', 'How should Lezyncet 2.5mg/5ml Syrup be stored?', 'Store Lezyncet 2.5mg/5ml Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10269, 'Lezyncet 2.5mg/5ml Syrup', 'Torrent Pharmaceuticals Ltd', 'Lezyncet 2.5mg/5ml Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(10270, 'Lezyncet D Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet D Tablet', 'Can the use of Lezyncet D Tablet cause sleepiness or drowsiness?', 'Yes, Lezyncet D Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(10271, 'Lezyncet D Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet D Tablet', 'Would a higher than the recommended dose of Lezyncet D Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(10272, 'Lezyncet D Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet D Tablet', 'Can I breastfeed while taking Lezyncet D Tablet?', 'No, you should not breastfeed while using Lezyncet D Tablet. This medicine can pass into your breast milk and may harm your baby. Inform your doctor that you are breastfeeding a baby if the doctor prescribes this medicine.'),
(10273, 'Lezyncet D Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet D Tablet', 'Can I take Lezyncet D Tablet with high blood pressure?', 'Lezyncet D Tablet can raise blood pressure or stimulate fast heart rate.  Anyone with heart conditions or high blood pressure, before taking this medicine, should consult their doctor to see if they can safely take such medicines.'),
(10274, 'Lezyncet D Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet D Tablet', 'Can the use of Lezyncet D Tablet cause dry mouth?', 'Yes, the use of Lezyncet D Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(10275, 'Lezyncet D Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet D Tablet', 'What are the instructions for the storage and disposal of Lezyncet D Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10276, 'Lezyncet Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet Tablet', 'Is Lezyncet Tablet a steroid? What is it used for?', 'No, Lezyncet Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10277, 'Lezyncet Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet Tablet', 'Does Lezyncet Tablet make you tired and drowsy?', 'Yes, Lezyncet Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10278, 'Lezyncet Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet Tablet', 'How long does it take for Lezyncet Tablet to work?', 'Lezyncet Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10279, 'Lezyncet Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet Tablet', 'Can I take Lezyncet Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezyncet Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10280, 'Lezyncet Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet Tablet', 'Is it safe to take Lezyncet Tablet for a long time?', 'Lezyncet Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezyncet Tablet for only as long as you need it.'),
(10281, 'Lezyncet Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet Tablet', 'For how long should I continue Lezyncet Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezyncet Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezyncet Tablet'),
(10282, 'Lezyncet-M Suspension', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Suspension', 'What is Lezyncet-M Suspension?', 'Lezyncet-M Suspension is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10283, 'Lezyncet-M Suspension', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Suspension', 'Can the use of Lezyncet-M Suspension cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezyncet-M Suspension is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10284, 'Lezyncet-M Suspension', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Suspension', 'Can Lezyncet-M Suspension be stopped when allergy symptoms are relieved?', 'No, Lezyncet-M Suspension should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10285, 'Lezyncet-M Suspension', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Suspension', 'Can the use of Lezyncet-M Suspension cause dry mouth?', 'Yes, the use of Lezyncet-M Suspension can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10286, 'Lezyncet-M Suspension', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Suspension', 'Can I drink alcohol while taking Lezyncet-M Suspension?', 'No, do not take alcohol while taking Lezyncet-M Suspension. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezyncet-M Suspension.'),
(10287, 'Lezyncet-M Suspension', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Suspension', 'Will Lezyncet-M Suspension be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezyncet-M Suspension can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10288, 'Lezyncet-M Suspension', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Suspension', 'What are the instructions for storage and disposal of Lezyncet-M Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10289, 'Lezyncet-M Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Tablet', 'What is Lezyncet-M Tablet?', 'Lezyncet-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10290, 'Lezyncet-M Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Tablet', 'Can the use of Lezyncet-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezyncet-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10291, 'Lezyncet-M Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Tablet', 'Can Lezyncet-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lezyncet-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10292, 'Lezyncet-M Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Tablet', 'Can the use of Lezyncet-M Tablet cause dry mouth?', 'Yes, the use of Lezyncet-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10293, 'Lezyncet-M Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Tablet', 'Can I drink alcohol while taking Lezyncet-M Tablet?', 'No, do not take alcohol while taking Lezyncet-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezyncet-M Tablet.'),
(10294, 'Lezyncet-M Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Tablet', 'Will Lezyncet-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezyncet-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10295, 'Lezyncet-M Tablet', 'Torrent Pharmaceuticals Ltd', 'Lezyncet-M Tablet', 'What are the instructions for storage and disposal of Lezyncet-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10296, 'Lezyne 5mg Tablet', 'Disan Pharma', 'Lezyne 5mg Tablet', 'Is Lezyne 5mg Tablet a steroid? What is it used for?', 'No, Lezyne 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10297, 'Lezyne 5mg Tablet', 'Disan Pharma', 'Lezyne 5mg Tablet', 'Does Lezyne 5mg Tablet make you tired and drowsy?', 'Yes, Lezyne 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10298, 'Lezyne 5mg Tablet', 'Disan Pharma', 'Lezyne 5mg Tablet', 'How long does it take for Lezyne 5mg Tablet to work?', 'Lezyne 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10299, 'Lezyne 5mg Tablet', 'Disan Pharma', 'Lezyne 5mg Tablet', 'Can I take Lezyne 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezyne 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10300, 'Lezyne 5mg Tablet', 'Disan Pharma', 'Lezyne 5mg Tablet', 'Is it safe to take Lezyne 5mg Tablet for a long time?', 'Lezyne 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezyne 5mg Tablet for only as long as you need it.'),
(10301, 'Lezyne 5mg Tablet', 'Disan Pharma', 'Lezyne 5mg Tablet', 'For how long should I continue Lezyne 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezyne 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezyne 5mg Tablet'),
(10302, 'Lezyne M 5mg/10mg Tablet', 'Disan Pharma', 'Lezyne M 5mg/10mg Tablet', 'What is Lezyne M 5mg/10mg Tablet?', 'Lezyne M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10303, 'Lezyne M 5mg/10mg Tablet', 'Disan Pharma', 'Lezyne M 5mg/10mg Tablet', 'Can the use of Lezyne M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezyne M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10304, 'Lezyne M 5mg/10mg Tablet', 'Disan Pharma', 'Lezyne M 5mg/10mg Tablet', 'Can Lezyne M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezyne M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10305, 'Lezyne M 5mg/10mg Tablet', 'Disan Pharma', 'Lezyne M 5mg/10mg Tablet', 'Can the use of Lezyne M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezyne M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10306, 'Lezyne M 5mg/10mg Tablet', 'Disan Pharma', 'Lezyne M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezyne M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezyne M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezyne M 5mg/10mg Tablet.'),
(10307, 'Lezyne M 5mg/10mg Tablet', 'Disan Pharma', 'Lezyne M 5mg/10mg Tablet', 'Will Lezyne M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezyne M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10308, 'Lezyne M 5mg/10mg Tablet', 'Disan Pharma', 'Lezyne M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezyne M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10309, 'Lezz 5mg Tablet', 'Abron Healthcare', 'Lezz 5mg Tablet', 'Is Lezz 5mg Tablet a steroid? What is it used for?', 'No, Lezz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10310, 'Lezz 5mg Tablet', 'Abron Healthcare', 'Lezz 5mg Tablet', 'Does Lezz 5mg Tablet make you tired and drowsy?', 'Yes, Lezz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10311, 'Lezz 5mg Tablet', 'Abron Healthcare', 'Lezz 5mg Tablet', 'How long does it take for Lezz 5mg Tablet to work?', 'Lezz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10312, 'Lezz 5mg Tablet', 'Abron Healthcare', 'Lezz 5mg Tablet', 'Can I take Lezz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lezz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10313, 'Lezz 5mg Tablet', 'Abron Healthcare', 'Lezz 5mg Tablet', 'Is it safe to take Lezz 5mg Tablet for a long time?', 'Lezz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lezz 5mg Tablet for only as long as you need it.'),
(10314, 'Lezz 5mg Tablet', 'Abron Healthcare', 'Lezz 5mg Tablet', 'For how long should I continue Lezz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lezz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lezz 5mg Tablet'),
(10315, 'Lezz MS 5mg/10mg Tablet', 'Abron Healthcare', 'Lezz MS 5mg/10mg Tablet', 'What is Lezz MS 5mg/10mg Tablet?', 'Lezz MS 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10316, 'Lezz MS 5mg/10mg Tablet', 'Abron Healthcare', 'Lezz MS 5mg/10mg Tablet', 'Can the use of Lezz MS 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lezz MS 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10317, 'Lezz MS 5mg/10mg Tablet', 'Abron Healthcare', 'Lezz MS 5mg/10mg Tablet', 'Can Lezz MS 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lezz MS 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10318, 'Lezz MS 5mg/10mg Tablet', 'Abron Healthcare', 'Lezz MS 5mg/10mg Tablet', 'Can the use of Lezz MS 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lezz MS 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10319, 'Lezz MS 5mg/10mg Tablet', 'Abron Healthcare', 'Lezz MS 5mg/10mg Tablet', 'Can I drink alcohol while taking Lezz MS 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lezz MS 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lezz MS 5mg/10mg Tablet.'),
(10320, 'Lezz MS 5mg/10mg Tablet', 'Abron Healthcare', 'Lezz MS 5mg/10mg Tablet', 'Will Lezz MS 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lezz MS 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10321, 'Lezz MS 5mg/10mg Tablet', 'Abron Healthcare', 'Lezz MS 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lezz MS 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10322, 'LF 500mg Tablet', 'Finecure Pharmaceuticals Ltd.', 'LF 500mg Tablet', 'Is LF 500mg Tablet safe?', 'LF 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10323, 'LF 500mg Tablet', 'Finecure Pharmaceuticals Ltd.', 'LF 500mg Tablet', 'What if I forget to take a dose of LF 500mg Tablet?', 'If you forget a dose of LF 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10324, 'LF 500mg Tablet', 'Finecure Pharmaceuticals Ltd.', 'LF 500mg Tablet', 'Can the use of LF 500mg Tablet cause diarrhea?', 'Yes, the use of LF 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10325, 'LF 500mg Tablet', 'Finecure Pharmaceuticals Ltd.', 'LF 500mg Tablet', 'Can I stop taking LF 500mg Tablet when I feel better?', 'No, do not stop taking LF 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using LF 500mg Tablet too early, the symptoms may return or worsen. Continue taking LF 500mg Tablet in the dose and duration advised by the doctor.'),
(10326, 'LF 500mg Tablet', 'Finecure Pharmaceuticals Ltd.', 'LF 500mg Tablet', 'Can the use of LF 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of LF 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take LF 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10327, 'Lfast 5mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lfast 5mg Tablet', 'Is Lfast 5mg Tablet a steroid? What is it used for?', 'No, Lfast 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10328, 'Lfast 5mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lfast 5mg Tablet', 'Does Lfast 5mg Tablet make you tired and drowsy?', 'Yes, Lfast 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10329, 'Lfast 5mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lfast 5mg Tablet', 'How long does it take for Lfast 5mg Tablet to work?', 'Lfast 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10330, 'Lfast 5mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lfast 5mg Tablet', 'Can I take Lfast 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lfast 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10331, 'Lfast 5mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lfast 5mg Tablet', 'Is it safe to take Lfast 5mg Tablet for a long time?', 'Lfast 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lfast 5mg Tablet for only as long as you need it.'),
(10332, 'Lfast 5mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lfast 5mg Tablet', 'For how long should I continue Lfast 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lfast 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lfast 5mg Tablet'),
(10333, 'LFC 500mg Tablet', 'Prime Life Science Pvt Ltd', 'LFC 500mg Tablet', 'Is LFC 500mg Tablet safe?', 'LFC 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10334, 'LFC 500mg Tablet', 'Prime Life Science Pvt Ltd', 'LFC 500mg Tablet', 'What if I forget to take a dose of LFC 500mg Tablet?', 'If you forget a dose of LFC 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10335, 'LFC 500mg Tablet', 'Prime Life Science Pvt Ltd', 'LFC 500mg Tablet', 'Can the use of LFC 500mg Tablet cause diarrhea?', 'Yes, the use of LFC 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10336, 'LFC 500mg Tablet', 'Prime Life Science Pvt Ltd', 'LFC 500mg Tablet', 'Can I stop taking LFC 500mg Tablet when I feel better?', 'No, do not stop taking LFC 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using LFC 500mg Tablet too early, the symptoms may return or worsen. Continue taking LFC 500mg Tablet in the dose and duration advised by the doctor.'),
(10337, 'LFC 500mg Tablet', 'Prime Life Science Pvt Ltd', 'LFC 500mg Tablet', 'Can the use of LFC 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of LFC 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take LFC 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10338, 'Lfine 1% Lotion', 'Omni Lifesciences Pvt Ltd', 'Lfine 1% Lotion', 'Is Lfine 1% Lotion safe in pregnancy?', 'Lfine 1% Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lfine 1% Lotion.'),
(10339, 'Lfine 1% Lotion', 'Omni Lifesciences Pvt Ltd', 'Lfine 1% Lotion', 'Is Lfine 1% Lotion fungicidal or Fungistatic?', 'Lfine 1% Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(10340, 'Lfine 1% Lotion', 'Omni Lifesciences Pvt Ltd', 'Lfine 1% Lotion', 'How to use Lfine 1% Lotion?', 'Use Lfine 1% Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(10341, 'Lfine 1% Lotion', 'Omni Lifesciences Pvt Ltd', 'Lfine 1% Lotion', 'How long does it take for Lfine 1% Lotion to work?', 'For different ailments, Lfine 1% Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(10342, 'Lfine 1% Lotion', 'Omni Lifesciences Pvt Ltd', 'Lfine 1% Lotion', 'How should I store Lfine 1% Lotion?', 'Keep Lfine 1% Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(10343, 'Lfine 1% Lotion', 'Omni Lifesciences Pvt Ltd', 'Lfine 1% Lotion', 'Is Lfine 1% Lotion safe to use in children?', 'Yes, Lfine 1% Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(10344, 'L-Flox IV Infusion', 'Lupin Ltd', 'L-Flox IV Infusion', 'Is L-Flox IV Infusion safe?', 'L-Flox IV Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10345, 'L-Flox IV Infusion', 'Lupin Ltd', 'L-Flox IV Infusion', 'Can the use of L-Flox IV Infusion cause diarrhea?', 'Yes, the use of L-Flox IV Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10346, 'L-Flox IV Infusion', 'Lupin Ltd', 'L-Flox IV Infusion', 'Can the use of L-Flox IV Infusion increase the risk of muscle damage?', 'Yes, the use of L-Flox IV Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take L-Flox IV Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10347, 'L-Flox IV Infusion', 'Lupin Ltd', 'L-Flox IV Infusion', 'How is L-Flox IV Infusion administered?', 'L-Flox IV Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from L-Flox IV Infusion.'),
(10348, 'L-Flox IV Infusion', 'Lupin Ltd', 'L-Flox IV Infusion', 'Is L-Flox IV Infusion effective?', 'L-Flox IV Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using L-Flox IV Infusion too early, the symptoms may return or worsen.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10349, 'Lflox OZ Oral Suspension', 'MRG Pharmaceuticals', 'Lflox OZ Oral Suspension', 'What if I don\'t get better after using Lflox OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(10350, 'Lflox OZ Oral Suspension', 'MRG Pharmaceuticals', 'Lflox OZ Oral Suspension', 'Can I stop taking Lflox OZ Oral Suspension when I feel better?', 'No, do not stop taking Lflox OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(10351, 'Lflox OZ Oral Suspension', 'MRG Pharmaceuticals', 'Lflox OZ Oral Suspension', 'What if I miss my dose?', 'Take Lflox OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(10352, 'Lfloxa 500mg Tablet', 'Neolina Pharmaceuticals', 'Lfloxa 500mg Tablet', 'Is Lfloxa 500mg Tablet safe?', 'Lfloxa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10353, 'Lfloxa 500mg Tablet', 'Neolina Pharmaceuticals', 'Lfloxa 500mg Tablet', 'What if I forget to take a dose of Lfloxa 500mg Tablet?', 'If you forget a dose of Lfloxa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10354, 'Lfloxa 500mg Tablet', 'Neolina Pharmaceuticals', 'Lfloxa 500mg Tablet', 'Can the use of Lfloxa 500mg Tablet cause diarrhea?', 'Yes, the use of Lfloxa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10355, 'Lfloxa 500mg Tablet', 'Neolina Pharmaceuticals', 'Lfloxa 500mg Tablet', 'Can I stop taking Lfloxa 500mg Tablet when I feel better?', 'No, do not stop taking Lfloxa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lfloxa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lfloxa 500mg Tablet in the dose and duration advised by the doctor.'),
(10356, 'Lfloxa 500mg Tablet', 'Neolina Pharmaceuticals', 'Lfloxa 500mg Tablet', 'Can the use of Lfloxa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lfloxa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lfloxa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10357, 'LFT Plus Tablet', 'Senechio Pharma Pvt Ltd', 'LFT Plus Tablet', 'When should I take LFT Plus Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. LFT Plus Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(10358, 'LFT Plus Tablet', 'Senechio Pharma Pvt Ltd', 'LFT Plus Tablet', 'Is LFT Plus Tablet safe?', 'LFT Plus Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(10359, 'LFT Plus Tablet', 'Senechio Pharma Pvt Ltd', 'LFT Plus Tablet', 'How does LFT Plus Tablet help the liver?', 'LFT Plus Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(10360, 'LFT Plus Tablet', 'Senechio Pharma Pvt Ltd', 'LFT Plus Tablet', 'Does LFT Plus Tablet cause weight gain?', 'Yes, there is a chance of weight gain with LFT Plus Tablet, but it is not common. The use of LFT Plus Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(10361, 'LFT Plus Tablet', 'Senechio Pharma Pvt Ltd', 'LFT Plus Tablet', 'What should I avoid while taking LFT Plus Tablet?', 'While taking LFT Plus Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of LFT Plus Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of LFT Plus Tablet. So, ask your doctor about the time gap that should be maintained between LFT Plus Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the LFT Plus Tablet.'),
(10362, 'Lfx 250mg Tablet', 'Skymax Life Science Pvt Ltd', 'Lfx 250mg Tablet', 'Is Lfx 250mg Tablet safe?', 'Lfx 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10363, 'Lfx 250mg Tablet', 'Skymax Life Science Pvt Ltd', 'Lfx 250mg Tablet', 'What if I forget to take a dose of Lfx 250mg Tablet?', 'If you forget a dose of Lfx 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10364, 'Lfx 250mg Tablet', 'Skymax Life Science Pvt Ltd', 'Lfx 250mg Tablet', 'Can the use of Lfx 250mg Tablet cause diarrhea?', 'Yes, the use of Lfx 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10365, 'Lfx 250mg Tablet', 'Skymax Life Science Pvt Ltd', 'Lfx 250mg Tablet', 'Can I stop taking Lfx 250mg Tablet when I feel better?', 'No, do not stop taking Lfx 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lfx 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lfx 250mg Tablet in the dose and duration advised by the doctor.'),
(10366, 'Lfx 250mg Tablet', 'Skymax Life Science Pvt Ltd', 'Lfx 250mg Tablet', 'Can the use of Lfx 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lfx 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lfx 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10367, 'LFX 500mg Tablet', 'Merkury Arena Labs', 'LFX 500mg Tablet', 'Is LFX 500mg Tablet safe?', 'LFX 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10368, 'LFX 500mg Tablet', 'Merkury Arena Labs', 'LFX 500mg Tablet', 'What if I forget to take a dose of LFX 500mg Tablet?', 'If you forget a dose of LFX 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10369, 'LFX 500mg Tablet', 'Merkury Arena Labs', 'LFX 500mg Tablet', 'Can the use of LFX 500mg Tablet cause diarrhea?', 'Yes, the use of LFX 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10370, 'LFX 500mg Tablet', 'Merkury Arena Labs', 'LFX 500mg Tablet', 'Can I stop taking LFX 500mg Tablet when I feel better?', 'No, do not stop taking LFX 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using LFX 500mg Tablet too early, the symptoms may return or worsen. Continue taking LFX 500mg Tablet in the dose and duration advised by the doctor.'),
(10371, 'LFX 500mg Tablet', 'Merkury Arena Labs', 'LFX 500mg Tablet', 'Can the use of LFX 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of LFX 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take LFX 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10372, 'Lg 5mg Tablet', 'United Lifecare Pvt Ltd', 'Lg 5mg Tablet', 'Is Lg 5mg Tablet a steroid? What is it used for?', 'No, Lg 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10373, 'Lg 5mg Tablet', 'United Lifecare Pvt Ltd', 'Lg 5mg Tablet', 'Does Lg 5mg Tablet make you tired and drowsy?', 'Yes, Lg 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10374, 'Lg 5mg Tablet', 'United Lifecare Pvt Ltd', 'Lg 5mg Tablet', 'How long does it take for Lg 5mg Tablet to work?', 'Lg 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10375, 'Lg 5mg Tablet', 'United Lifecare Pvt Ltd', 'Lg 5mg Tablet', 'Can I take Lg 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lg 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10376, 'Lg 5mg Tablet', 'United Lifecare Pvt Ltd', 'Lg 5mg Tablet', 'Is it safe to take Lg 5mg Tablet for a long time?', 'Lg 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lg 5mg Tablet for only as long as you need it.'),
(10377, 'Lg 5mg Tablet', 'United Lifecare Pvt Ltd', 'Lg 5mg Tablet', 'For how long should I continue Lg 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lg 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lg 5mg Tablet'),
(10378, 'LG Flox Syrup', 'LA Grande Pvt Ltd', 'LG Flox Syrup', 'What if I give too much of LG Flox Syrup by mistake?', 'An extra dose of LG Flox Syrup is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, unconsciousness, and palpitations (irregularities of heartbeat). Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(10379, 'LG Flox Syrup', 'LA Grande Pvt Ltd', 'LG Flox Syrup', 'What should I do if my child shows no improvement even after taking LG Flox Syrup for the prescribed duration?', 'Ineffective treatment with LG Flox Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that would be more specific in action. Not all medicines are given by oral route, some may have to be given by IV route (intravenous injection) in the hospital.'),
(10380, 'LG Flox Syrup', 'LA Grande Pvt Ltd', 'LG Flox Syrup', 'Can other medicines be given at the same time as LG Flox Syrup?', 'LG Flox Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting LG Flox Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(10381, 'LG Flox Syrup', 'LA Grande Pvt Ltd', 'LG Flox Syrup', 'Can I get my child vaccinated while on treatment with LG Flox Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(10382, 'LG Flox Syrup', 'LA Grande Pvt Ltd', 'LG Flox Syrup', 'What should I tell the doctor before giving LG Flox Syrup to my child?', 'Inform the doctor if your child is suffering from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that LG Flox Syrup may aggravate these conditions and result in complications.'),
(10383, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'What is Lg Rab D 30mg/20mg Capsule?', 'Lg Rab D 30mg/20mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10384, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'What are the contraindications of Lg Rab D 30mg/20mg Capsule?', 'The use of Lg Rab D 30mg/20mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10385, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'Can the use of Lg Rab D 30mg/20mg Capsule cause dry mouth?', 'Yes, the use of Lg Rab D 30mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(10386, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'Can the use of Lg Rab D 30mg/20mg Capsule cause diarrhea?', 'Yes, the use of Lg Rab D 30mg/20mg Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(10387, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'What is the recommended storage condition for Lg Rab D 30mg/20mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10388, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'Is it safe to use Lg Rab D 30mg/20mg Capsule?', 'Yes, Lg Rab D 30mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10389, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'What is the best time to take Lg Rab D 30mg/20mg Capsule?', 'It is best to take Lg Rab D 30mg/20mg Capsule before the first meal of the day or on an empty stomach.'),
(10390, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'Can the use of Lg Rab D 30mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lg Rab D 30mg/20mg Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(10391, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'What is Lg Rab D 30mg/20mg Capsule?', 'Lg Rab D 30mg/20mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10392, 'Lg Rab D 30mg/20mg Capsule', 'LG Household & Health Care Ltd.', 'Lg Rab D 30mg/20mg Capsule', 'What are the contraindications of Lg Rab D 30mg/20mg Capsule?', 'The use of Lg Rab D 30mg/20mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10393, 'Lgcef CV 500 Tablet', 'Lifegen Pharmaceuticals', 'Lgcef CV 500 Tablet', 'Can Lgcef CV 500 Tablet be used to treat viral infections?', 'No, Lgcef CV 500 Tablet is only indicated to treat bacterial infections. It does not treat viral infections such as common cold, flu.'),
(10394, 'Lgcef CV 500 Tablet', 'Lifegen Pharmaceuticals', 'Lgcef CV 500 Tablet', 'What are the contraindications associated with the use of Lgcef CV 500 Tablet?', 'The use of Lgcef CV 500 Tablet should be avoided in patients with known allergy to any constituents of this medicine. Inform your doctor about your medical history before taking this medicine to avoid any side effects.'),
(10395, 'Lgcef CV 500 Tablet', 'Lifegen Pharmaceuticals', 'Lgcef CV 500 Tablet', 'Can the use of Lgcef CV 500 Tablet cause diarrhea?', 'Yes, the use of Lgcef CV 500 Tablet can cause diarrhea. Antibiotics can kill good, or helpful bacteria in your stomach and can cause diarrhea. If you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if you have persistent diarrhea. Do not take any other medicines without consulting a doctor.'),
(10396, 'Lgcef CV 500 Tablet', 'Lifegen Pharmaceuticals', 'Lgcef CV 500 Tablet', 'Can I stop taking Lgcef CV 500 Tablet when I feel better?', 'No, do not stop taking Lgcef CV 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10397, 'Lgcef CV 500 Tablet', 'Lifegen Pharmaceuticals', 'Lgcef CV 500 Tablet', 'What are the instructions for the storage and disposal of Lgcef CV 500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10398, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'What is Lgclav 625 Tablet?', 'Lgclav 625 Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(10399, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Is it safe to use Lgclav 625 Tablet?', 'Lgclav 625 Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(10400, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Are there any specific cautions associated with the use of Lgclav 625 Tablet?', 'The use of Lgclav 625 Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(10401, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Can the use of Lgclav 625 Tablet cause contraceptive failure?', 'Yes, the use of Lgclav 625 Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lgclav 625 Tablet.'),
(10402, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Can I take a higher than the recommended dose of Lgclav 625 Tablet?', 'No, taking a higher than the recommended dose of Lgclav 625 Tablet can increase the risks of side effects. Lgclav 625 Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(10403, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'What are the instructions for the storage and disposal of Lgclav 625 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10404, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Can I stop taking Lgclav 625 Tablet when my symptoms are relieved?', 'No, do not stop taking Lgclav 625 Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(10405, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Can Lgclav 625 Tablet cause an allergic reaction?', 'Yes, Lgclav 625 Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(10406, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Can the use of Lgclav 625 Tablet cause diarrhea?', 'Yes, the use of Lgclav 625 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(10407, 'Lgclav 625 Tablet', 'Lifegen Pharmaceuticals', 'Lgclav 625 Tablet', 'Can I take Lgclav 625 Tablet to treat cold and flu?', 'No, Lgclav 625 Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(10408, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'My child is restless and unable to sleep properly at night. Can I give Lgnil 5mg/5ml Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(10409, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'Can other medicines be given at the same time as Lgnil 5mg/5ml Syrup?', 'Lgnil 5mg/5ml Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lgnil 5mg/5ml Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(10410, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'How much Lgnil 5mg/5ml Syrup should I give to my child?', 'Lgnil 5mg/5ml Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(10411, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'What if I give too much of Lgnil 5mg/5ml Syrup by mistake?', 'Although Lgnil 5mg/5ml Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(10412, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'How should Lgnil 5mg/5ml Syrup be stored?', 'Store Lgnil 5mg/5ml Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10413, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(10414, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'Does Lgnil 5mg/5ml Syrup make you tired and drowsy?', 'Yes, Lgnil 5mg/5ml Syrup can make you feel tired, sleepy, and weak.'),
(10415, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'Is Lgnil 5mg/5ml Syrup a steroid? What is it used for?', 'Lgnil 5mg/5ml Syrup is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(10416, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'How long does it take for Lgnil 5mg/5ml Syrup to work?', 'You will notice an improvement within an hour of taking Lgnil 5mg/5ml Syrup. However, it may take a little longer to notice the full benefits.'),
(10417, 'Lgnil 5mg/5ml Syrup', 'Cadila Pharmaceuticals Ltd', 'Lgnil 5mg/5ml Syrup', 'Can I take Lgnil 5mg/5ml Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lgnil 5mg/5ml Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(10418, 'LGP 100mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP 100mg Capsule', 'Can you take LGP 100mg Capsule every day?', 'Yes, LGP 100mg Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(10419, 'LGP 100mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP 100mg Capsule', 'Does LGP 100mg Capsule cause weight gain?', 'Yes, taking LGP 100mg Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if LGP 100mg Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(10420, 'LGP 100mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP 100mg Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. LGP 100mg Capsule (form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(10421, 'LGP 200mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP 200mg Capsule', 'Can you take LGP 200mg Capsule every day?', 'Yes, LGP 200mg Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(10422, 'LGP 200mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP 200mg Capsule', 'Does LGP 200mg Capsule cause weight gain?', 'Yes, taking LGP 200mg Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if LGP 200mg Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(10423, 'LGP 200mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP 200mg Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. LGP 200mg Capsule (form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(10424, 'LGP H 250mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 250mg Injection', 'What is LGP H 250mg Injection? What is it used for?', 'LGP H 250mg Injection is a type of female sex hormone called progesterone. It helps to lower the risk of preterm delivery (early birth) in a pregnant woman, who had delivered a preterm baby in the past.'),
(10425, 'LGP H 250mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 250mg Injection', 'How and in what dose should I use LGP H 250mg Injection?', 'LGP H 250mg Injection is given as an injection, by a doctor or trained nurse. The dose will be decided by your doctor, depending on your exact medical condition.'),
(10426, 'LGP H 250mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 250mg Injection', 'What if I miss a dose of LGP H 250mg Injection?', 'Ideally, you should try not to miss any dose. However, if you miss a dose consult with your doctor as soon as you remember.'),
(10427, 'LGP H 250mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 250mg Injection', 'Who should not receive LGP H 250mg Injection?', 'LGP H 250mg Injection should not be used if you have:u003cbr>-blood clots or other blood clotting problems now or in the pastu003cbr>-high blood pressure that is not controlledu003cbr>-liver problems, including liver tumorsu003cbr>-breast cancer or other hormone-sensitive cancers now or in the pastu003cbr>-unusual vaginal bleeding not related to your current pregnancyu003cbr>-yellowing of your skin due to liver problems during your pregnancy.'),
(10428, 'LGP H 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 500mg Injection', 'What is LGP H 500mg Injection? What is it used for?', 'LGP H 500mg Injection is a type of female sex hormone called progesterone. It helps to lower the risk of preterm delivery (early birth) in a pregnant woman, who had delivered a preterm baby in the past.'),
(10429, 'LGP H 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 500mg Injection', 'How and in what dose should I use LGP H 500mg Injection?', 'LGP H 500mg Injection is given as an injection, by a doctor or trained nurse. The dose will be decided by your doctor, depending on your exact medical condition.'),
(10430, 'LGP H 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 500mg Injection', 'What if I miss a dose of LGP H 500mg Injection?', 'Ideally, you should try not to miss any dose. However, if you miss a dose consult with your doctor as soon as you remember.'),
(10431, 'LGP H 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'LGP H 500mg Injection', 'Who should not receive LGP H 500mg Injection?', 'LGP H 500mg Injection should not be used if you have:u003cbr>-blood clots or other blood clotting problems now or in the pastu003cbr>-high blood pressure that is not controlledu003cbr>-liver problems, including liver tumorsu003cbr>-breast cancer or other hormone-sensitive cancers now or in the pastu003cbr>-unusual vaginal bleeding not related to your current pregnancyu003cbr>-yellowing of your skin due to liver problems during your pregnancy.'),
(10432, 'Lgpin M 1000mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/2.5mg Tablet', 'Can the use of Lgpin M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lgpin M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpin M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(10433, 'Lgpin M 1000mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/2.5mg Tablet', 'What are the possible side effects of Lgpin M 1000mg/2.5mg Tablet?', 'The use of Lgpin M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(10434, 'Lgpin M 1000mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Lgpin M 1000mg/2.5mg Tablet should not be taken?', 'The use of Lgpin M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lgpin M 1000mg/2.5mg Tablet.'),
(10435, 'Lgpin M 1000mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lgpin M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Lgpin M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(10436, 'Lgpin M 1000mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lgpin M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10437, 'Lgpin M 1000mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/2.5mg Tablet', 'Can the use of Lgpin M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lgpin M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(10438, 'Lgpin M 1000mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/2.5mg Tablet', 'Can the use of Lgpin M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lgpin M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(10439, 'Lgpin M 1000mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/20mg Tablet SR', 'Is it safe to use Lgpin M 1000mg/20mg Tablet SR?', 'Yes, it is safe to use Lgpin M 1000mg/20mg Tablet SR if you take it for the prescribed duration and according to the dosage advised by the doctor. However, despite taking the prescribed dosage you might experience common side effects like nausea, diarrhea, vomiting, stomach upset, headache, nasal congestion, sore throat, respiratory tract infection and hypoglycemia (low blood sugar level). Hypoglycemia is relatively common in patients who are taking Lgpin M 1000mg/20mg Tablet SR in combination with insulin or Sulfonylurea. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10440, 'Lgpin M 1000mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/20mg Tablet SR', 'Can the use of Lgpin M 1000mg/20mg Tablet SR lead to hypoglycemia?', 'The use of Lgpin M 1000mg/20mg Tablet SR does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(10441, 'Lgpin M 1000mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/20mg Tablet SR', 'Can the use of Lgpin M 1000mg/20mg Tablet SR cause nausea and vomiting?', 'Yes, the use of Lgpin M 1000mg/20mg Tablet SR can cause nausea and vomiting. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without consulting a doctor.'),
(10442, 'Lgpin M 1000mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/20mg Tablet SR', 'Are there any specific contraindications associated with the use of Lgpin M 1000mg/20mg Tablet SR?', 'The use of Lgpin M 1000mg/20mg Tablet SR should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also considered to be harmful for patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis.'),
(10443, 'Lgpin M 1000mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/20mg Tablet SR', 'Can the use of Lgpin M 1000mg/20mg Tablet SR cause lactic acidosis?', 'Yes, the use of Lgpin M 1000mg/20mg Tablet SR can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpin M 1000mg/20mg Tablet SR and immediately consult your doctor.'),
(10444, 'Lgpin M 1000mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/20mg Tablet SR', 'Can the use of Lgpin M 1000mg/20mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Lgpin M 1000mg/20mg Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. Deficiency of B12 may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(10445, 'Lgpin M 1000mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 1000mg/20mg Tablet SR', 'What is the storage condition for the Lgpin M 1000mg/20mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10446, 'Lgpin M 500mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/2.5mg Tablet', 'Can the use of Lgpin M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lgpin M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpin M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(10447, 'Lgpin M 500mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/2.5mg Tablet', 'What are the possible side effects of Lgpin M 500mg/2.5mg Tablet?', 'The use of Lgpin M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(10448, 'Lgpin M 500mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Lgpin M 500mg/2.5mg Tablet should not be taken?', 'The use of Lgpin M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lgpin M 500mg/2.5mg Tablet.'),
(10449, 'Lgpin M 500mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lgpin M 500mg/2.5mg Tablet?', 'No, it is not safe to take Lgpin M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(10450, 'Lgpin M 500mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lgpin M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10451, 'Lgpin M 500mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/2.5mg Tablet', 'Can the use of Lgpin M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lgpin M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(10452, 'Lgpin M 500mg/2.5mg Tablet', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/2.5mg Tablet', 'Can the use of Lgpin M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lgpin M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(10453, 'Lgpin M 500mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/20mg Tablet SR', 'Is it safe to use Lgpin M 500mg/20mg Tablet SR?', 'Yes, it is safe to use Lgpin M 500mg/20mg Tablet SR if you take it for the prescribed duration and according to the dosage advised by the doctor. However, despite taking the prescribed dosage you might experience common side effects like nausea, diarrhea, vomiting, stomach upset, headache, nasal congestion, sore throat, respiratory tract infection and hypoglycemia (low blood sugar level). Hypoglycemia is relatively common in patients who are taking Lgpin M 500mg/20mg Tablet SR in combination with insulin or Sulfonylurea. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10454, 'Lgpin M 500mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/20mg Tablet SR', 'Can the use of Lgpin M 500mg/20mg Tablet SR lead to hypoglycemia?', 'The use of Lgpin M 500mg/20mg Tablet SR does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(10455, 'Lgpin M 500mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/20mg Tablet SR', 'Can the use of Lgpin M 500mg/20mg Tablet SR cause nausea and vomiting?', 'Yes, the use of Lgpin M 500mg/20mg Tablet SR can cause nausea and vomiting. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without consulting a doctor.'),
(10456, 'Lgpin M 500mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/20mg Tablet SR', 'Are there any specific contraindications associated with the use of Lgpin M 500mg/20mg Tablet SR?', 'The use of Lgpin M 500mg/20mg Tablet SR should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also considered to be harmful for patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis.'),
(10457, 'Lgpin M 500mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/20mg Tablet SR', 'Can the use of Lgpin M 500mg/20mg Tablet SR cause lactic acidosis?', 'Yes, the use of Lgpin M 500mg/20mg Tablet SR can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpin M 500mg/20mg Tablet SR and immediately consult your doctor.'),
(10458, 'Lgpin M 500mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/20mg Tablet SR', 'Can the use of Lgpin M 500mg/20mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Lgpin M 500mg/20mg Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. Deficiency of B12 may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(10459, 'Lgpin M 500mg/20mg Tablet SR', 'Medicamen Lifesciences Pvt Ltd', 'Lgpin M 500mg/20mg Tablet SR', 'What is the storage condition for the Lgpin M 500mg/20mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10460, 'Lgpride M 1 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Forte Tablet PR', 'What are the recommended storage conditions for Lgpride M 1 Forte Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10461, 'Lgpride M 1 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Forte Tablet PR', 'Can the use of Lgpride M 1 Forte Tablet PR lead to lactic acidosis?', 'Yes, the use of Lgpride M 1 Forte Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpride M 1 Forte Tablet PR and consult your doctor immediately.'),
(10462, 'Lgpride M 1 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Forte Tablet PR', 'What is Lgpride M 1 Forte Tablet PR?', 'Lgpride M 1 Forte Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(10463, 'Lgpride M 1 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Forte Tablet PR', 'What are the possible side effects of Lgpride M 1 Forte Tablet PR?', 'The use of Lgpride M 1 Forte Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(10464, 'Lgpride M 1 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Forte Tablet PR', 'Can the use of Lgpride M 1 Forte Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Lgpride M 1 Forte Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(10465, 'Lgpride M 1 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Forte Tablet PR', 'Can the use of Lgpride M 1 Forte Tablet PR cause hypoglycemia?', 'Yes, the use of Lgpride M 1 Forte Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(10466, 'Lgpride M 1 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Forte Tablet PR', 'Is it safe to take alcohol while I am also taking Lgpride M 1 Forte Tablet PR?', 'No, it is not safe to take Lgpride M 1 Forte Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(10467, 'Lgpride M 1 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Tablet PR', 'What are the recommended storage conditions for Lgpride M 1 Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10468, 'Lgpride M 1 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Tablet PR', 'Can the use of Lgpride M 1 Tablet PR lead to lactic acidosis?', 'Yes, the use of Lgpride M 1 Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpride M 1 Tablet PR and consult your doctor immediately.'),
(10469, 'Lgpride M 1 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Tablet PR', 'What is Lgpride M 1 Tablet PR?', 'Lgpride M 1 Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(10470, 'Lgpride M 1 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Tablet PR', 'What are the possible side effects of Lgpride M 1 Tablet PR?', 'The use of Lgpride M 1 Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(10471, 'Lgpride M 1 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Tablet PR', 'Can the use of Lgpride M 1 Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Lgpride M 1 Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(10472, 'Lgpride M 1 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Tablet PR', 'Can the use of Lgpride M 1 Tablet PR cause hypoglycemia?', 'Yes, the use of Lgpride M 1 Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(10473, 'Lgpride M 1 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 1 Tablet PR', 'Is it safe to take alcohol while I am also taking Lgpride M 1 Tablet PR?', 'No, it is not safe to take Lgpride M 1 Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(10474, 'Lgpride M 2 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Forte Tablet PR', 'What are the recommended storage conditions for Lgpride M 2 Forte Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10475, 'Lgpride M 2 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Forte Tablet PR', 'Can the use of Lgpride M 2 Forte Tablet PR lead to lactic acidosis?', 'Yes, the use of Lgpride M 2 Forte Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpride M 2 Forte Tablet PR and consult your doctor immediately.'),
(10476, 'Lgpride M 2 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Forte Tablet PR', 'What is Lgpride M 2 Forte Tablet PR?', 'Lgpride M 2 Forte Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(10477, 'Lgpride M 2 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Forte Tablet PR', 'What are the possible side effects of Lgpride M 2 Forte Tablet PR?', 'The use of Lgpride M 2 Forte Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(10478, 'Lgpride M 2 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Forte Tablet PR', 'Can the use of Lgpride M 2 Forte Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Lgpride M 2 Forte Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(10479, 'Lgpride M 2 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Forte Tablet PR', 'Can the use of Lgpride M 2 Forte Tablet PR cause hypoglycemia?', 'Yes, the use of Lgpride M 2 Forte Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(10480, 'Lgpride M 2 Forte Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Forte Tablet PR', 'Is it safe to take alcohol while I am also taking Lgpride M 2 Forte Tablet PR?', 'No, it is not safe to take Lgpride M 2 Forte Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(10481, 'Lgpride M 2 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Tablet PR', 'What are the recommended storage conditions for Lgpride M 2 Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10482, 'Lgpride M 2 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Tablet PR', 'Can the use of Lgpride M 2 Tablet PR lead to lactic acidosis?', 'Yes, the use of Lgpride M 2 Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lgpride M 2 Tablet PR and consult your doctor immediately.'),
(10483, 'Lgpride M 2 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Tablet PR', 'What is Lgpride M 2 Tablet PR?', 'Lgpride M 2 Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(10484, 'Lgpride M 2 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Tablet PR', 'What are the possible side effects of Lgpride M 2 Tablet PR?', 'The use of Lgpride M 2 Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(10485, 'Lgpride M 2 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Tablet PR', 'Can the use of Lgpride M 2 Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Lgpride M 2 Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(10486, 'Lgpride M 2 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Tablet PR', 'Can the use of Lgpride M 2 Tablet PR cause hypoglycemia?', 'Yes, the use of Lgpride M 2 Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(10487, 'Lgpride M 2 Tablet PR', 'Lifegen Pharmaceuticals', 'Lgpride M 2 Tablet PR', 'Is it safe to take alcohol while I am also taking Lgpride M 2 Tablet PR?', 'No, it is not safe to take Lgpride M 2 Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(10488, 'LH 5 Tablet', 'Rozer Pharmaceuticals Pvt Ltd', 'LH 5 Tablet', 'Is LH 5 Tablet a steroid? What is it used for?', 'No, LH 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10489, 'LH 5 Tablet', 'Rozer Pharmaceuticals Pvt Ltd', 'LH 5 Tablet', 'Does LH 5 Tablet make you tired and drowsy?', 'Yes, LH 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10490, 'LH 5 Tablet', 'Rozer Pharmaceuticals Pvt Ltd', 'LH 5 Tablet', 'How long does it take for LH 5 Tablet to work?', 'LH 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10491, 'LH 5 Tablet', 'Rozer Pharmaceuticals Pvt Ltd', 'LH 5 Tablet', 'Can I take LH 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking LH 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10492, 'LH 5 Tablet', 'Rozer Pharmaceuticals Pvt Ltd', 'LH 5 Tablet', 'Is it safe to take LH 5 Tablet for a long time?', 'LH 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take LH 5 Tablet for only as long as you need it.'),
(10493, 'LH 5 Tablet', 'Rozer Pharmaceuticals Pvt Ltd', 'LH 5 Tablet', 'For how long should I continue LH 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take LH 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using LH 5 Tablet'),
(10494, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'Does Lhd 5mg Tablet raise blood sugar?', 'Yes, Lhd 5mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Lhd 5mg Tablet.'),
(10495, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'What are the side effects of Lhd 5mg Tablet?', 'The common side effects of Lhd 5mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Lhd 5mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(10496, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'Does Lhd 5mg Tablet increase creatinine?', 'Yes, Lhd 5mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(10497, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'Does Lhd 5mg Tablet cause loss of potassium?', 'Lhd 5mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(10498, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'My blood pressure is controlled now. Can I stop taking Lhd 5mg Tablet?', 'Do not stop taking Lhd 5mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(10499, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'How should Lhd 5mg Tablet be taken?', 'Take Lhd 5mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Lhd 5mg Tablet once daily preferably at the same time each day. Lhd 5mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(10500, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'Is Lhd 5mg Tablet stronger than furosemide?', 'Both Lhd 5mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Lhd 5mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(10501, 'Lhd 5mg Tablet', 'Ipca Laboratories Ltd', 'Lhd 5mg Tablet', 'How long does it take for Lhd 5mg Tablet to show its effects?', 'Lhd 5mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(10502, 'L-Hist Mont FX Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont FX Tablet', 'What is L-Hist Mont FX Tablet ?', 'L-Hist Mont FX Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(10503, 'L-Hist Mont FX Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont FX Tablet', 'Can L-Hist Mont FX Tablet be stopped when allergy symptoms are relieved?', 'No, L-Hist Mont FX Tablet should be continued as advised by the doctor. If any problems are experienced due to L-Hist Mont FX Tablet, consult the doctor for re-evaluation.'),
(10504, 'L-Hist Mont FX Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont FX Tablet', 'Can the use of L-Hist Mont FX Tablet cause dizziness?', 'Yes, the use of L-Hist Mont FX Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(10505, 'L-Hist Mont FX Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont FX Tablet', 'What should be avoided in food while taking L-Hist Mont FX Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking L-Hist Mont FX Tablet as it might increase the severity of drowsiness or sleepiness caused by L-Hist Mont FX Tablet.'),
(10506, 'L-Hist Mont FX Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont FX Tablet', 'Will L-Hist Mont FX Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10507, 'L-Hist Mont FX Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont FX Tablet', 'What is the recommended storage condition for L-Hist Mont FX Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10508, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(10509, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'Can I decrease the dose of L-Hist Mont Junior Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(10510, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'How should L-Hist Mont Junior Tablet DT be stored?', 'L-Hist Mont Junior Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10511, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'Can L-Hist Mont Junior Tablet DT make my child sleepy?', 'L-Hist Mont Junior Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(10512, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of L-Hist Mont Junior Tablet DT?', 'No, don’t start L-Hist Mont Junior Tablet DT without speaking to your child’s doctor. Moreover, L-Hist Mont Junior Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(10513, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of L-Hist Mont Junior Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(10514, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'My child is suffering from a mood disorder. Is it safe to give L-Hist Mont Junior Tablet DT to my child?', 'Some studies show that L-Hist Mont Junior Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(10515, 'L-Hist Mont Junior Tablet DT', 'Alkem Laboratories Ltd', 'L-Hist Mont Junior Tablet DT', 'Can I use L-Hist Mont Junior Tablet DT for treating acute asthma attacks in my child?', 'L-Hist Mont Junior Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(10516, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(10517, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. Can I decrease the dose of L-Hist Mont Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(10518, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. How should L-Hist Mont Syrup be stored?', 'L-Hist Mont Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10519, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. Can L-Hist Mont Syrup make my child sleepy?', 'L-Hist Mont Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(10520, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of L-Hist Mont Syrup?', 'No, don’t start L-Hist Mont Syrup without speaking to your child’s doctor. Moreover, L-Hist Mont Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(10521, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of L-Hist Mont Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(10522, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. My child is suffering from a mood disorder. Is it safe to give L-Hist Mont Syrup to my child?', 'Some studies show that L-Hist Mont Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(10523, 'L-Hist Mont Syrup', 'Alkem Laboratories Ltd', 'L-Hist Mont Syrup', 'Q. Can I use L-Hist Mont Syrup for treating acute asthma attacks in my child?', 'L-Hist Mont Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(10524, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Q. What is L-Hist Mont Tablet?', 'L-Hist Mont Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10525, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Q. Can the use of L-Hist Mont Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-Hist Mont Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10526, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Q. Can L-Hist Mont Tablet be stopped when allergy symptoms are relieved?', 'No, L-Hist Mont Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10527, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Q. Can the use of L-Hist Mont Tablet cause dry mouth?', 'Yes, the use of L-Hist Mont Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10528, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Q. Can I drink alcohol while taking L-Hist Mont Tablet?', 'No, do not take alcohol while taking L-Hist Mont Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-Hist Mont Tablet.'),
(10529, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Q. Will L-Hist Mont Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-Hist Mont Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10530, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Q. What are the instructions for storage and disposal of L-Hist Mont Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10531, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'What is L-Hist Mont Tablet?', 'L-Hist Mont Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10532, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Can the use of L-Hist Mont Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-Hist Mont Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10533, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Can L-Hist Mont Tablet be stopped when allergy symptoms are relieved?', 'No, L-Hist Mont Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10534, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Can the use of L-Hist Mont Tablet cause dry mouth?', 'Yes, the use of L-Hist Mont Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10535, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Can I drink alcohol while taking L-Hist Mont Tablet?', 'No, do not take alcohol while taking L-Hist Mont Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-Hist Mont Tablet.'),
(10536, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'Will L-Hist Mont Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-Hist Mont Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10537, 'L-Hist Mont Tablet', 'Alkem Laboratories Ltd', 'L-Hist Mont Tablet', 'What are the instructions for storage and disposal of L-Hist Mont Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10538, 'L-Hist Syrup', 'Alkem Laboratories Ltd', 'L-Hist Syrup', 'My child is restless and unable to sleep properly at night. Can I give L-Hist Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(10539, 'L-Hist Syrup', 'Alkem Laboratories Ltd', 'L-Hist Syrup', 'Can other medicines be given at the same time as L-Hist Syrup?', 'L-Hist Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting L-Hist Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(10540, 'L-Hist Syrup', 'Alkem Laboratories Ltd', 'L-Hist Syrup', 'How much L-Hist Syrup should I give to my child?', 'L-Hist Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(10541, 'L-Hist Syrup', 'Alkem Laboratories Ltd', 'L-Hist Syrup', 'What if I give too much of L-Hist Syrup by mistake?', 'Although L-Hist Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(10542, 'L-Hist Syrup', 'Alkem Laboratories Ltd', 'L-Hist Syrup', 'How should L-Hist Syrup be stored?', 'Store L-Hist Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10543, 'L-Hist Syrup', 'Alkem Laboratories Ltd', 'L-Hist Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(10544, 'L-Hist Total Tablet', 'Alkem Laboratories Ltd', 'L-Hist Total Tablet', 'What is L-Hist Total Tablet?', 'L-Hist Total Tablet is the combination of Ambroxol, Levocetirizine, Paracetamol / Acetaminophen and Phenylephrine and is used in the treatment of common cold.'),
(10545, 'L-Hist Total Tablet', 'Alkem Laboratories Ltd', 'L-Hist Total Tablet', 'Can the use of L-Hist Total Tablet cause nausea and vomiting?', 'Yes, the use of L-Hist Total Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(10546, 'L-Hist Total Tablet', 'Alkem Laboratories Ltd', 'L-Hist Total Tablet', 'Can the use of L-Hist Total Tablet cause dizziness?', 'Yes, the use of L-Hist Total Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(10547, 'L-Hist Total Tablet', 'Alkem Laboratories Ltd', 'L-Hist Total Tablet', 'Are there any specific contraindications associated with the use of L-Hist Total Tablet?', 'The use of L-Hist Total Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine and in patients with gastric ulcers, liver or kidney problems.'),
(10548, 'L-Hist Total Tablet', 'Alkem Laboratories Ltd', 'L-Hist Total Tablet', 'What are the recommended storage conditions for L-Hist Total Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10549, 'Lhistriz M 5mg/10mg Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz M 5mg/10mg Tablet', 'What is Lhistriz M 5mg/10mg Tablet?', 'Lhistriz M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10550, 'Lhistriz M 5mg/10mg Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz M 5mg/10mg Tablet', 'Can the use of Lhistriz M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lhistriz M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10551, 'Lhistriz M 5mg/10mg Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz M 5mg/10mg Tablet', 'Can Lhistriz M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lhistriz M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10552, 'Lhistriz M 5mg/10mg Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz M 5mg/10mg Tablet', 'Can the use of Lhistriz M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lhistriz M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10553, 'Lhistriz M 5mg/10mg Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lhistriz M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lhistriz M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lhistriz M 5mg/10mg Tablet.'),
(10554, 'Lhistriz M 5mg/10mg Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz M 5mg/10mg Tablet', 'Will Lhistriz M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lhistriz M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10555, 'Lhistriz M 5mg/10mg Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lhistriz M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10556, 'Lhistriz Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz Tablet', 'Is Lhistriz Tablet a steroid? What is it used for?', 'No, Lhistriz Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10557, 'Lhistriz Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz Tablet', 'Does Lhistriz Tablet make you tired and drowsy?', 'Yes, Lhistriz Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10558, 'Lhistriz Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz Tablet', 'How long does it take for Lhistriz Tablet to work?', 'Lhistriz Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10559, 'Lhistriz Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz Tablet', 'Can I take Lhistriz Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lhistriz Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10560, 'Lhistriz Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz Tablet', 'Is it safe to take Lhistriz Tablet for a long time?', 'Lhistriz Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lhistriz Tablet for only as long as you need it.'),
(10561, 'Lhistriz Tablet', 'Theo Pharma Pvt Ltd', 'Lhistriz Tablet', 'For how long should I continue Lhistriz Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lhistriz Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lhistriz Tablet'),
(10562, 'LHRH 22.5 Combipack Injection', 'Medrhans Pharmaceuticals Private Limited', 'LHRH 22.5 Combipack Injection', 'Is LHRH 22.5 Combipack Injection a chemotherapy medicine?', 'No, LHRH 22.5 Combipack Injection is not a chemotherapy medicine. LHRH 22.5 Combipack Injection is a synthetic hormone analogue medicine which is used for the treatment of hormone-dependent conditions in men and women.'),
(10563, 'LHRH 22.5 Combipack Injection', 'Medrhans Pharmaceuticals Private Limited', 'LHRH 22.5 Combipack Injection', 'Does LHRH 22.5 Combipack Injection stop periods?', 'Yes, the periods tend to stop while taking LHRH 22.5 Combipack Injection injections as this medicine alters the reproductive hormones in females. Sometimes, there can be vaginal bleeding in few cases. If this occurs, please contact your doctor to get yourself assessed and follow the direction of your doctor.'),
(10564, 'LHRH 22.5 Combipack Injection', 'Medrhans Pharmaceuticals Private Limited', 'LHRH 22.5 Combipack Injection', 'Is LHRH 22.5 Combipack Injection a hormonal medicine and can it be given in pregnancy?', 'Yes, LHRH 22.5 Combipack Injection is a hormonal medicine which alters the reproductive hormones when given in females. This medication is not recommended for use in women who are or may become pregnant because this can harm the fetus in the womb. Using this medicine during pregnancy may also lead to abortion of the baby. Do inform your doctor if you are pregnant or are planning to get pregnant before starting this medication.'),
(10565, 'LHRH 22.5 Combipack Injection', 'Medrhans Pharmaceuticals Private Limited', 'LHRH 22.5 Combipack Injection', 'Can taking LHRH 22.5 Combipack Injection affect my bones?', 'Yes, there are chances of LHRH 22.5 Combipack Injection affecting your bones. Using LHRH 22.5 Combipack Injection may cause a decrease in bone mineral density and make the bones weaker. In women, bone density should be assessed before starting the treatment. Special care and monitoring should be done in women with increased risk of osteoporosis. If at all needed, additional medicines may be given to prevent the development of osteoporosis in patients with decreased bone mineral density.'),
(10566, 'LHRH 22.5 Combipack Injection', 'Medrhans Pharmaceuticals Private Limited', 'LHRH 22.5 Combipack Injection', 'Can LHRH 22.5 Combipack Injection cause diabetes or increased blood sugar?', 'Yes, LHRH 22.5 Combipack Injection may cause an increase in blood sugar levels, worsening the blood glucose control in patients with diabetes. It can even increase the risk of developing diabetes. Therefore, you must monitor the blood glucose and/or glycosylated hemoglobin (HbA1c) from time to time to keep a track of the glucose control and inform your doctor in case you develop any problem. Diabetic patients when prescribed this medication should monitor the sugar levels more frequently while taking this treatment.'),
(10567, 'Lht M 5mg/10mg Tablet', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lht M 5mg/10mg Tablet', 'What is Lht M 5mg/10mg Tablet?', 'Lht M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10568, 'Lht M 5mg/10mg Tablet', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lht M 5mg/10mg Tablet', 'Can the use of Lht M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lht M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10569, 'Lht M 5mg/10mg Tablet', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lht M 5mg/10mg Tablet', 'Can Lht M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lht M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10570, 'Lht M 5mg/10mg Tablet', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lht M 5mg/10mg Tablet', 'Can the use of Lht M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lht M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10571, 'Lht M 5mg/10mg Tablet', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lht M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lht M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lht M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lht M 5mg/10mg Tablet.'),
(10572, 'Lht M 5mg/10mg Tablet', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lht M 5mg/10mg Tablet', 'Will Lht M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lht M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10573, 'Lht M 5mg/10mg Tablet', 'Catholicon Pharmaceuticals Pvt Ltd', 'Lht M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lht M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10574, 'LI 150mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 150mg Tablet', 'How quickly does LI 150mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking LI 150mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of LI 150mg Tablet. Do not stop taking LI 150mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(10575, 'LI 150mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 150mg Tablet', 'Does LI 150mg Tablet make you sleepy?', 'Yes, LI 150mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(10576, 'LI 150mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 150mg Tablet', 'Is LI 150mg Tablet bad for kidneys?', 'Yes, LI 150mg Tablet may cause kidney problems. LI 150mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with LI 150mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During LI 150mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(10577, 'LI 150mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 150mg Tablet', 'Can LI 150mg Tablet cause gain in weight?', 'LI 150mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during LI 150mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to LI 150mg Tablet or some other reason.'),
(10578, 'LI 150mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 150mg Tablet', 'What is the most important information I should know about LI 150mg Tablet?', 'LI 150mg Tablet therapy should only be started if adequate facilities for assessing LI 150mg Tablet levels are available. This is because LI 150mg Tablet toxicity is related to increased levels of LI 150mg Tablet in blood. LI 150mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your LI 150mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(10579, 'LI 150mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 150mg Tablet', 'How should LI 150mg Tablet be taken?', 'Take LI 150mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of LI 150mg Tablet levels.'),
(10580, 'LI 150mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 150mg Tablet', 'Which medicines decrease LI 150mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting LI 150mg Tablet since many medicines interfere with the working of LI 150mg Tablet. Some medicines decrease the levels of LI 150mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(10581, 'LI 300mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 300mg Tablet', 'How quickly does LI 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking LI 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of LI 300mg Tablet. Do not stop taking LI 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(10582, 'LI 300mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 300mg Tablet', 'Does LI 300mg Tablet make you sleepy?', 'Yes, LI 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(10583, 'LI 300mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 300mg Tablet', 'Is LI 300mg Tablet bad for kidneys?', 'Yes, LI 300mg Tablet may cause kidney problems. LI 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with LI 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During LI 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(10584, 'LI 300mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 300mg Tablet', 'Can LI 300mg Tablet cause gain in weight?', 'LI 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during LI 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to LI 300mg Tablet or some other reason.'),
(10585, 'LI 300mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 300mg Tablet', 'What is the most important information I should know about LI 300mg Tablet?', 'LI 300mg Tablet therapy should only be started if adequate facilities for assessing LI 300mg Tablet levels are available. This is because LI 300mg Tablet toxicity is related to increased levels of LI 300mg Tablet in blood. LI 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your LI 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(10586, 'LI 300mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 300mg Tablet', 'How should LI 300mg Tablet be taken?', 'Take LI 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of LI 300mg Tablet levels.'),
(10587, 'LI 300mg Tablet', 'Alteus Biogenics Pvt Ltd', 'LI 300mg Tablet', 'Which medicines decrease LI 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting LI 300mg Tablet since many medicines interfere with the working of LI 300mg Tablet. Some medicines decrease the levels of LI 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(10588, 'LI SR Tablet', 'Alteus Biogenics Pvt Ltd', 'LI SR Tablet', 'How quickly does LI SR Tablet work?', 'It takes some time before you see improvement in your symptoms after taking LI SR Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of LI SR Tablet. Do not stop taking LI SR Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(10589, 'LI SR Tablet', 'Alteus Biogenics Pvt Ltd', 'LI SR Tablet', 'Does LI SR Tablet make you sleepy?', 'Yes, LI SR Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(10590, 'LI SR Tablet', 'Alteus Biogenics Pvt Ltd', 'LI SR Tablet', 'Is LI SR Tablet bad for kidneys?', 'Yes, LI SR Tablet may cause kidney problems. LI SR Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with LI SR Tablet, your doctor will get blood tests done to see if your kidney function is normal. During LI SR Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(10591, 'LI SR Tablet', 'Alteus Biogenics Pvt Ltd', 'LI SR Tablet', 'Can LI SR Tablet cause gain in weight?', 'LI SR Tablet can cause both weight gain or weight loss. You should keep a check on your weight during LI SR Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to LI SR Tablet or some other reason.'),
(10592, 'LI SR Tablet', 'Alteus Biogenics Pvt Ltd', 'LI SR Tablet', 'What is the most important information I should know about LI SR Tablet?', 'LI SR Tablet therapy should only be started if adequate facilities for assessing LI SR Tablet levels are available. This is because LI SR Tablet toxicity is related to increased levels of LI SR Tablet in blood. LI SR Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your LI SR Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(10593, 'LI SR Tablet', 'Alteus Biogenics Pvt Ltd', 'LI SR Tablet', 'How should LI SR Tablet be taken?', 'Take LI SR Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of LI SR Tablet levels.'),
(10594, 'LI SR Tablet', 'Alteus Biogenics Pvt Ltd', 'LI SR Tablet', 'Which medicines decrease LI SR Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting LI SR Tablet since many medicines interfere with the working of LI SR Tablet. Some medicines decrease the levels of LI SR Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(10595, 'Li Zot M 5mg/10mg Tablet', 'Zootax Biotec Inc.', 'Li Zot M 5mg/10mg Tablet', 'What is Li Zot M 5mg/10mg Tablet?', 'Li Zot M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10596, 'Li Zot M 5mg/10mg Tablet', 'Zootax Biotec Inc.', 'Li Zot M 5mg/10mg Tablet', 'Can the use of Li Zot M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Li Zot M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10597, 'Li Zot M 5mg/10mg Tablet', 'Zootax Biotec Inc.', 'Li Zot M 5mg/10mg Tablet', 'Can Li Zot M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Li Zot M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10598, 'Li Zot M 5mg/10mg Tablet', 'Zootax Biotec Inc.', 'Li Zot M 5mg/10mg Tablet', 'Can the use of Li Zot M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Li Zot M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10599, 'Li Zot M 5mg/10mg Tablet', 'Zootax Biotec Inc.', 'Li Zot M 5mg/10mg Tablet', 'Can I drink alcohol while taking Li Zot M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Li Zot M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Li Zot M 5mg/10mg Tablet.'),
(10600, 'Li Zot M 5mg/10mg Tablet', 'Zootax Biotec Inc.', 'Li Zot M 5mg/10mg Tablet', 'Will Li Zot M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Li Zot M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10601, 'Li Zot M 5mg/10mg Tablet', 'Zootax Biotec Inc.', 'Li Zot M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Li Zot M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10602, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(10603, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'Can I decrease the dose of Li Zot M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(10604, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'How should Li Zot M Oral Suspension be stored?', 'Li Zot M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10605, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'Can Li Zot M Oral Suspension make my child sleepy?', 'Li Zot M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(10606, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Li Zot M Oral Suspension?', 'No, don’t start Li Zot M Oral Suspension without speaking to your child’s doctor. Moreover, Li Zot M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(10607, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Li Zot M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(10608, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Li Zot M Oral Suspension to my child?', 'Some studies show that Li Zot M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(10609, 'Li Zot M Oral Suspension', 'Zootax Biotec Inc.', 'Li Zot M Oral Suspension', 'Can I use Li Zot M Oral Suspension for treating acute asthma attacks in my child?', 'Li Zot M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(10610, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'Can the use of Liacep-CP Tablet cause diarrhea?', 'Yes, the use of Liacep-CP Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10611, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'How long does Liacep-CP Tablet takes to work?', 'Usually, Liacep-CP Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(10612, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'What if I don\'t get better after using Liacep-CP Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(10613, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'Can I stop taking Liacep-CP Tablet when I feel better?', 'No, do not stop taking Liacep-CP Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10614, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'What is Liacep-CP Tablet?', 'Liacep-CP Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(10615, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'Can the use of Liacep-CP Tablet cause any serious side effects?', 'Liacep-CP Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(10616, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'Can I stop taking Liacep-CP Tablet when my symptoms are relieved?', 'No, do not stop taking Liacep-CP Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10617, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'Can Liacep-CP Tablet cause allergic reaction?', 'Yes, Liacep-CP Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(10618, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'Are there any specific contraindications associated with the use of Liacep-CP Tablet?', 'The use of Liacep-CP Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Liacep-CP Tablet.'),
(10619, 'Liacep-CP Tablet', 'Ahen Pharmaceuticals', 'Liacep-CP Tablet', 'Can I take oral contraceptive pills while taking Liacep-CP Tablet?', 'No, Liacep-CP Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(10620, 'Liacet 1.5 Injection', 'Ahen Pharmaceuticals', 'Liacet 1.5 Injection', 'Can the use of Liacet 1.5 Injection cause allergic reaction?', 'Yes, Liacet 1.5 Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(10621, 'Liacet 1.5 Injection', 'Ahen Pharmaceuticals', 'Liacet 1.5 Injection', 'Can the use of Liacet 1.5 Injection cause diarrhea?', 'Yes, the use of Liacet 1.5 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10622, 'Liacet 1.5 Injection', 'Ahen Pharmaceuticals', 'Liacet 1.5 Injection', 'How long does Liacet 1.5 Injection takes to work?', 'Usually, Liacet 1.5 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(10623, 'Liacet 1.5 Injection', 'Ahen Pharmaceuticals', 'Liacet 1.5 Injection', 'What if I don\'t get better after using Liacet 1.5 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(10624, 'Liacet 1.5 Injection', 'Ahen Pharmaceuticals', 'Liacet 1.5 Injection', 'Can I stop taking Liacet 1.5 Injection when I feel better?', 'No, do not stop taking Liacet 1.5 Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10625, 'Liam 0.25mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.25mg Tablet', 'Q. Does Liam 0.25mg Tablet have abuse potential?', 'Yes, there are several reports mentioning the abuse potential of Liam 0.25mg Tablet. Therefore, it should be used with caution in patients prone to drug abuse.'),
(10626, 'Liam 0.25mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.25mg Tablet', 'Q. What are the advantages of Liam 0.25mg Tablet over other benzodiazepines (BZDs)?', 'As compared to other benzodiazepines, Liam 0.25mg Tablet has lesser sedative effects, lower dependence, and lower tolerance. However, long-term use can reduce the effectivity of the medicine and may cause dependence and addiction.'),
(10627, 'Liam 0.25mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.25mg Tablet', 'Q. What happens if you stop taking Liam 0.25mg Tablet suddenly?', 'Stopping Liam 0.25mg Tablet suddenly may cause withdrawal symptoms which may include anxiety, insomnia, headache, dizziness, ringing sound in ear (tinnitus), eating disorder (anorexia), vomiting, nausea, tremor, weakness, excessive sweating (perspiration), irritability, hypersensitivity to visual and auditory stimuli. Stopping the medicine suddenly may also cause palpitations, fast heart rate and postural hypotension (drop in blood pressure on standing). In severe and rare cases of withdrawal from high doses, patients may develop seizures, mental disorder (psychosis), agitation, confusion, and hallucinations.'),
(10628, 'Liam 0.25mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.25mg Tablet', 'Q. How long does Liam 0.25mg Tablet take to work?', 'Oral doses of Liam 0.25mg Tablet begin working within 30-60 minutes and peak at 3-4 hours. The medicine remains in the body for 6-8 hours although higher doses can last longer.'),
(10629, 'Liam 0.25mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.25mg Tablet', 'Q. Is Liam 0.25mg Tablet a muscle relaxant?', 'Yes, like benzodiazepines, it causes muscle relaxation, but otherwise it is mainly used for anxiety.'),
(10630, 'Liam 0.25mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.25mg Tablet', 'Q. Is Liam 0.25mg Tablet good for sleep?', 'Like other benzodiazepines, it causes sleepiness but is mainly used for anxiety disorder. It increases total sleep time and decreases the proportion of rapid eye movement (REM) sleep, wherein your eyes move quickly in different directions. Liam 0.25mg Tablet had no effect on sleep latency (amount of time it takes you to go from being fully awake to being asleep).'),
(10631, 'Liam 0.25mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.25mg Tablet', 'Q. Is Liam 0.25mg Tablet an antidepressant?', 'No, Liam 0.25mg Tablet is not an antidepressant. It is used for the treatment of generalized anxiety disorder with depressive symptoms. But, it may affect patient\'s mood.'),
(10632, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Q. Does Liam 0.5 Tablet have abuse potential?', 'Yes, there are several reports mentioning the abuse potential of Liam 0.5 Tablet. Therefore, it should be used with caution in patients prone to drug abuse.'),
(10633, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Q. What are the advantages of Liam 0.5 Tablet over other benzodiazepines (BZDs)?', 'As compared to other benzodiazepines, Liam 0.5 Tablet has lesser sedative effects, lower dependence, and lower tolerance. However, long-term use can reduce the effectivity of the medicine and may cause dependence and addiction.'),
(10634, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Q. What happens if you stop taking Liam 0.5 Tablet suddenly?', 'Stopping Liam 0.5 Tablet suddenly may cause withdrawal symptoms which may include anxiety, insomnia, headache, dizziness, ringing sound in ear (tinnitus), eating disorder (anorexia), vomiting, nausea, tremor, weakness, excessive sweating (perspiration), irritability, hypersensitivity to visual and auditory stimuli. Stopping the medicine suddenly may also cause palpitations, fast heart rate and postural hypotension (drop in blood pressure on standing). In severe and rare cases of withdrawal from high doses, patients may develop seizures, mental disorder (psychosis), agitation, confusion, and hallucinations.'),
(10635, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Q. How long does Liam 0.5 Tablet take to work?', 'Oral doses of Liam 0.5 Tablet begin working within 30-60 minutes and peak at 3-4 hours. The medicine remains in the body for 6-8 hours although higher doses can last longer.'),
(10636, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Q. Is Liam 0.5 Tablet a muscle relaxant?', 'Yes, like benzodiazepines, it causes muscle relaxation, but otherwise it is mainly used for anxiety.'),
(10637, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Q. Is Liam 0.5 Tablet good for sleep?', 'Like other benzodiazepines, it causes sleepiness but is mainly used for anxiety disorder. It increases total sleep time and decreases the proportion of rapid eye movement (REM) sleep, wherein your eyes move quickly in different directions. Liam 0.5 Tablet had no effect on sleep latency (amount of time it takes you to go from being fully awake to being asleep).'),
(10638, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Q. Is Liam 0.5 Tablet an antidepressant?', 'No, Liam 0.5 Tablet is not an antidepressant. It is used for the treatment of generalized anxiety disorder with depressive symptoms. But, it may affect patient\'s mood.'),
(10639, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Does Liam 0.5 Tablet have abuse potential?', 'Yes, there are several reports mentioning the abuse potential of Liam 0.5 Tablet. Therefore, it should be used with caution in patients prone to drug abuse.'),
(10640, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'What are the advantages of Liam 0.5 Tablet over other benzodiazepines (BZDs)?', 'As compared to other benzodiazepines, Liam 0.5 Tablet has lesser sedative effects, lower dependence, and lower tolerance. However, long-term use can reduce the effectivity of the medicine and may cause dependence and addiction.'),
(10641, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'What happens if you stop taking Liam 0.5 Tablet suddenly?', 'Stopping Liam 0.5 Tablet suddenly may cause withdrawal symptoms which may include anxiety, insomnia, headache, dizziness, ringing sound in ear (tinnitus), eating disorder (anorexia), vomiting, nausea, tremor, weakness, excessive sweating (perspiration), irritability, hypersensitivity to visual and auditory stimuli. Stopping the medicine suddenly may also cause palpitations, fast heart rate and postural hypotension (drop in blood pressure on standing). In severe and rare cases of withdrawal from high doses, patients may develop seizures, mental disorder (psychosis), agitation, confusion, and hallucinations.'),
(10642, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'How long does Liam 0.5 Tablet take to work?', 'Oral doses of Liam 0.5 Tablet begin working within 30-60 minutes and peak at 3-4 hours. The medicine remains in the body for 6-8 hours although higher doses can last longer.'),
(10643, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Is Liam 0.5 Tablet a muscle relaxant?', 'Yes, like benzodiazepines, it causes muscle relaxation, but otherwise it is mainly used for anxiety.'),
(10644, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Is Liam 0.5 Tablet good for sleep?', 'Like other benzodiazepines, it causes sleepiness but is mainly used for anxiety disorder. It increases total sleep time and decreases the proportion of rapid eye movement (REM) sleep, wherein your eyes move quickly in different directions. Liam 0.5 Tablet had no effect on sleep latency (amount of time it takes you to go from being fully awake to being asleep).'),
(10645, 'Liam 0.5 Tablet', 'Alteus Biogenics Pvt Ltd', 'Liam 0.5 Tablet', 'Is Liam 0.5 Tablet an antidepressant?', 'No, Liam 0.5 Tablet is not an antidepressant. It is used for the treatment of generalized anxiety disorder with depressive symptoms. But, it may affect patient\'s mood.'),
(10646, 'Liancet MT 5mg/10mg Tablet', 'Azilliane Healthcare', 'Liancet MT 5mg/10mg Tablet', 'What is Liancet MT 5mg/10mg Tablet?', 'Liancet MT 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10647, 'Liancet MT 5mg/10mg Tablet', 'Azilliane Healthcare', 'Liancet MT 5mg/10mg Tablet', 'Can the use of Liancet MT 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liancet MT 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10648, 'Liancet MT 5mg/10mg Tablet', 'Azilliane Healthcare', 'Liancet MT 5mg/10mg Tablet', 'Can Liancet MT 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Liancet MT 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10649, 'Liancet MT 5mg/10mg Tablet', 'Azilliane Healthcare', 'Liancet MT 5mg/10mg Tablet', 'Can the use of Liancet MT 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Liancet MT 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10650, 'Liancet MT 5mg/10mg Tablet', 'Azilliane Healthcare', 'Liancet MT 5mg/10mg Tablet', 'Can I drink alcohol while taking Liancet MT 5mg/10mg Tablet?', 'No, do not take alcohol while taking Liancet MT 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liancet MT 5mg/10mg Tablet.'),
(10651, 'Liancet MT 5mg/10mg Tablet', 'Azilliane Healthcare', 'Liancet MT 5mg/10mg Tablet', 'Will Liancet MT 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liancet MT 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10652, 'Liancet MT 5mg/10mg Tablet', 'Azilliane Healthcare', 'Liancet MT 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Liancet MT 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10653, 'Liapro 40mg Tablet SR', 'Zennar Life Sciences', 'Liapro 40mg Tablet SR', 'What is Liapro 40mg Tablet SR and what is it used for?', 'Liapro 40mg Tablet SR belongs to the group of medicines called vasodilators and uterine relaxants. It is used in the treatment of premature labor, a condition when the uterus starts contracting too early than usual. It may also be used in the treatment of peripheral vascular diseases.'),
(10654, 'Liapro 40mg Tablet SR', 'Zennar Life Sciences', 'Liapro 40mg Tablet SR', 'How and in what dose should I take Liapro 40mg Tablet SR?', 'Take this medicine, as per the advice of your doctor. The dose and duration depend on your exact medical condition. However take it at the same time of each day, to help you remember it.'),
(10655, 'Liapro 40mg Tablet SR', 'Zennar Life Sciences', 'Liapro 40mg Tablet SR', 'What precautions do I need to take while taking Liapro 40mg Tablet SR?', 'You should consult your doctor, immediately if your contractions begin again or your water breaks.'),
(10656, 'Liapro 40mg Tablet SR', 'Zennar Life Sciences', 'Liapro 40mg Tablet SR', ' What are the possible side effects of using Liapro 40mg Tablet SR?', 'The common side effects of Liapro 40mg Tablet SR are trembling, nervousness, weakness, dizziness, flushing, tachycardia, chest pain, nausea, and vomiting. If any of these side effects bother you, consult with your doctor.'),
(10657, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'Can Liator-Asp Capsule affect the liver?', 'Yes, Liator-Asp Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(10658, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'What are the recommended storage conditions for Liator-Asp Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10659, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'Can the Liator-Asp Capsule cause muscle pain?', 'Yes, Liator-Asp Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(10660, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'Will I need to stop Liator-Asp Capsule before surgery or dental procedure?', 'Liator-Asp Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Liator-Asp Capsule. You should not stop taking Liator-Asp Capsule on your own.'),
(10661, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'What are the lifestyle changes one should adopt while taking Liator-Asp Capsule?', 'Making lifestyle changes can boost your health while taking Liator-Asp Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(10662, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'Which painkiller is safe while taking Liator-Asp Capsule?', 'Paracetamol is safe to use while taking Liator-Asp Capsule for reducing pain. Avoid the use of other painkillers while taking Liator-Asp Capsule, as they may increase the risk of bleeding.'),
(10663, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'Which medicines should I avoid while taking Liator-Asp Capsule?', 'Liator-Asp Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Liator-Asp Capsule before taking any prescription or non-prescription medicine.'),
(10664, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'Can Liator-Asp Capsule affect the liver?', 'Yes, Liator-Asp Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(10665, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'What are the recommended storage conditions for Liator-Asp Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10666, 'Liator-Asp Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-Asp Capsule', 'Can the Liator-Asp Capsule cause muscle pain?', 'Yes, Liator-Asp Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10667, 'Liator-CV Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-CV Capsule', 'Can Liator-CV Capsule cause muscle pain?', 'Yes, Liator-CV Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Liator-CV Capsule.'),
(10668, 'Liator-CV Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-CV Capsule', 'Will I need to stop Liator-CV Capsule before surgery or dental procedure?', 'Liator-CV Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Liator-CV Capsule. But, you should not stop taking Liator-CV Capsule on your own.'),
(10669, 'Liator-CV Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-CV Capsule', 'What lifestyle changes should be adopted while taking Liator-CV Capsule?', 'Making lifestyle changes can boost your health while taking Liator-CV Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(10670, 'Liator-CV Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-CV Capsule', 'Which painkiller is safe while taking Liator-CV Capsule?', 'Paracetamol is safe to use while taking Liator-CV Capsule for relieving pain. Avoid the use of other painkillers while taking Liator-CV Capsule, as they may increase the risk of bleeding.'),
(10671, 'Liator-CV Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-CV Capsule', 'Can the use of Liator-CV Capsule increase the risk of bleeding?', 'Yes, Liator-CV Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(10672, 'Liator-CV Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-CV Capsule', 'What medicines should I avoid while taking Liator-CV Capsule?', 'Liator-CV Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Liator-CV Capsule before taking any prescription or non-prescription medicine.'),
(10673, 'Liator-CV Capsule', 'Liaise Pharmaceuticals Pvt Ltd', 'Liator-CV Capsule', 'What are the instructions for the storage and disposal of Liator-CV Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10674, 'Liaz 5mg Tablet', 'Lezaa Biotech', 'Liaz 5mg Tablet', 'Is Liaz 5mg Tablet a steroid? What is it used for?', 'No, Liaz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(10675, 'Liaz 5mg Tablet', 'Lezaa Biotech', 'Liaz 5mg Tablet', 'Does Liaz 5mg Tablet make you tired and drowsy?', 'Yes, Liaz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(10676, 'Liaz 5mg Tablet', 'Lezaa Biotech', 'Liaz 5mg Tablet', 'How long does it take for Liaz 5mg Tablet to work?', 'Liaz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(10677, 'Liaz 5mg Tablet', 'Lezaa Biotech', 'Liaz 5mg Tablet', 'Can I take Liaz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liaz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(10678, 'Liaz 5mg Tablet', 'Lezaa Biotech', 'Liaz 5mg Tablet', 'Is it safe to take Liaz 5mg Tablet for a long time?', 'Liaz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liaz 5mg Tablet for only as long as you need it.'),
(10679, 'Liaz 5mg Tablet', 'Lezaa Biotech', 'Liaz 5mg Tablet', 'For how long should I continue Liaz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liaz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liaz 5mg Tablet'),
(10680, 'Liaz-M Tablet', 'Lezaa Biotech', 'Liaz-M Tablet', 'What is Liaz-M Tablet?', 'Liaz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(10681, 'Liaz-M Tablet', 'Lezaa Biotech', 'Liaz-M Tablet', 'Can the use of Liaz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liaz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(10682, 'Liaz-M Tablet', 'Lezaa Biotech', 'Liaz-M Tablet', 'Can Liaz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Liaz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(10683, 'Liaz-M Tablet', 'Lezaa Biotech', 'Liaz-M Tablet', 'Can the use of Liaz-M Tablet cause dry mouth?', 'Yes, the use of Liaz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(10684, 'Liaz-M Tablet', 'Lezaa Biotech', 'Liaz-M Tablet', 'Can I drink alcohol while taking Liaz-M Tablet?', 'No, do not take alcohol while taking Liaz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liaz-M Tablet.'),
(10685, 'Liaz-M Tablet', 'Lezaa Biotech', 'Liaz-M Tablet', 'Will Liaz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liaz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(10686, 'Liaz-M Tablet', 'Lezaa Biotech', 'Liaz-M Tablet', 'What are the instructions for storage and disposal of Liaz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10687, 'Lib CT 10mg Tablet', 'East India Pharmaceutical Works Ltd', 'Lib CT 10mg Tablet', 'Does Lib CT 10mg Tablet work and what does Lib CT 10mg Tablet treat?', 'Lib CT 10mg Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(10688, 'Lib CT 10mg Tablet', 'East India Pharmaceutical Works Ltd', 'Lib CT 10mg Tablet', 'Is Lib CT 10mg Tablet addictive?', 'Yes. Lib CT 10mg Tablet is not recommended for long term use as it may increase the risk of dependence'),
(10689, 'Lib CT 10mg Tablet', 'East India Pharmaceutical Works Ltd', 'Lib CT 10mg Tablet', 'Is Lib CT 10mg Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Lib CT 10mg Tablet called benzodiazepines. Lib CT 10mg Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(10690, 'Lib CT 10mg Tablet', 'East India Pharmaceutical Works Ltd', 'Lib CT 10mg Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(10691, 'Lib CT 10mg Tablet', 'East India Pharmaceutical Works Ltd', 'Lib CT 10mg Tablet', 'Does Lib CT 10mg Tablet make you sleepy?', 'Yes, Lib CT 10mg Tablet may make you sleepy'),
(10692, 'Lib CT 10mg Tablet', 'East India Pharmaceutical Works Ltd', 'Lib CT 10mg Tablet', 'Does Lib CT 10mg Tablet get you high?', 'Lib CT 10mg Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(10693, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'What is Lib OZ 200mg/500mg Tablet?', 'Lib OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(10694, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'Is it safe to use Lib OZ 200mg/500mg Tablet?', 'Lib OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(10695, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lib OZ 200mg/500mg Tablet?', 'The use of Lib OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(10696, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lib OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(10697, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lib OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(10698, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'Can I stop taking Lib OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lib OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(10699, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lib OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(10700, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lib OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lib OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(10701, 'Lib OZ 200mg/500mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Lib OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lib OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10702, 'Libact 250mg Tablet', 'Prayas Pharmaceuticals', 'Libact 250mg Tablet', 'Is Libact 250mg Tablet safe?', 'Libact 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10703, 'Libact 250mg Tablet', 'Prayas Pharmaceuticals', 'Libact 250mg Tablet', 'What if I forget to take a dose of Libact 250mg Tablet?', 'If you forget a dose of Libact 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(10704, 'Libact 250mg Tablet', 'Prayas Pharmaceuticals', 'Libact 250mg Tablet', 'Can the use of Libact 250mg Tablet cause diarrhea?', 'Yes, the use of Libact 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10705, 'Libact 250mg Tablet', 'Prayas Pharmaceuticals', 'Libact 250mg Tablet', 'Can I stop taking Libact 250mg Tablet when I feel better?', 'No, do not stop taking Libact 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Libact 250mg Tablet too early, the symptoms may return or worsen. Continue taking Libact 250mg Tablet in the dose and duration advised by the doctor.'),
(10706, 'Libact 250mg Tablet', 'Prayas Pharmaceuticals', 'Libact 250mg Tablet', 'Can the use of Libact 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Libact 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Libact 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(10707, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'Is Libadex 100mg Tablet safe to use?', 'Libadex 100mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(10708, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'Can the use of Libadex 100mg Tablet cause diarrhea?', 'Yes, the use of Libadex 100mg Tablet can cause diarrhea. Libadex 100mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(10709, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'Is Libadex 100mg Tablet an antibiotic?', 'Yes, Libadex 100mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(10710, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'Can Libadex 100mg Tablet cause constipation?', 'Yes, Libadex 100mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(10711, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'Can I stop taking Libadex 100mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Libadex 100mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(10712, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'How long does Libadex 100mg Tablet take to work?', 'Usually, Libadex 100mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(10713, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'What if I do not get better after using Libadex 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10714, 'Libadex 100mg Tablet', 'Libra Drugs  India', 'Libadex 100mg Tablet', 'Can Libadex 100mg Tablet treat UTI?', 'Yes, Libadex 100mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Libadex 100mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(10715, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'Is Libadex 200mg Capsule safe to use?', 'Libadex 200mg Capsule is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(10716, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'Can the use of Libadex 200mg Capsule cause diarrhea?', 'Yes, the use of Libadex 200mg Capsule can cause diarrhea. Libadex 200mg Capsule is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(10717, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'Is Libadex 200mg Capsule an antibiotic?', 'Yes, Libadex 200mg Capsule is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(10718, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'Can Libadex 200mg Capsule cause constipation?', 'Yes, Libadex 200mg Capsule may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(10719, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'Can I stop taking Libadex 200mg Capsule when my symptoms are relieved or when I feel better?', 'No, do not stop taking Libadex 200mg Capsule before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(10720, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'How long does Libadex 200mg Capsule take to work?', 'Usually, Libadex 200mg Capsule starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(10721, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'What if I do not get better after using Libadex 200mg Capsule?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10722, 'Libadex 200mg Capsule', 'Libra Drugs  India', 'Libadex 200mg Capsule', 'Can Libadex 200mg Capsule treat UTI?', 'Yes, Libadex 200mg Capsule may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Libadex 200mg Capsule. It is advisable to take it only if prescribed by a doctor.'),
(10723, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'What if I give too much of Libadex 50mg Suspension by mistake?', 'An extra dose of Libadex 50mg Suspension is unlikely to do harm. However, if you think you have given too much of Libadex 50mg Suspension to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(10724, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'Are there any possible serious side effects of Libadex 50mg Suspension?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(10725, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'Can other medicines be given at the same time as Libadex 50mg Suspension?', 'Libadex 50mg Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Libadex 50mg Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(10726, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'Can I get my child vaccinated while on treatment with Libadex 50mg Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(10727, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'Which lab tests may my child undergo while taking Libadex 50mg Suspension on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(10728, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(10729, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(10730, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(10731, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'Can Libadex 50mg Suspension impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Libadex 50mg Suspension may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Libadex 50mg Suspension, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(10732, 'Libadex 50mg Suspension', 'Libra Drugs  India', 'Libadex 50mg Suspension', 'Can Libadex 50mg Suspension lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Libadex 50mg Suspension can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(10733, 'Libadrox 250mg Capsule', 'Libra Drugs  India', 'Libadrox 250mg Capsule', 'Can the use of Libadrox 250mg Capsule cause diarrhea?', 'Yes, the use of Libadrox 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10734, 'Libadrox 250mg Capsule', 'Libra Drugs  India', 'Libadrox 250mg Capsule', 'Can I stop taking Libadrox 250mg Capsule when I feel better?', 'No, do not stop taking Libadrox 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10735, 'Libadrox 250mg Capsule', 'Libra Drugs  India', 'Libadrox 250mg Capsule', 'What if I miss my dose?', 'Take Libadrox 250mg Capsule as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(10736, 'Libadrox 250mg Capsule', 'Libra Drugs  India', 'Libadrox 250mg Capsule', 'What if I don\'t get better after using Libadrox 250mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(10737, 'Libamox 250mg Capsule', 'Libra Drugs  India', 'Libamox 250mg Capsule', 'What if I miss my dose?', 'Take Libamox 250mg Capsule as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(10738, 'Libamox 250mg Capsule', 'Libra Drugs  India', 'Libamox 250mg Capsule', 'Can the use of Libamox 250mg Capsule cause diarrhea?', 'Yes, the use of Libamox 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10739, 'Libamox 250mg Capsule', 'Libra Drugs  India', 'Libamox 250mg Capsule', 'How long does Libamox 250mg Capsule takes to work?', 'Usually, Libamox 250mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(10740, 'Libamox 250mg Capsule', 'Libra Drugs  India', 'Libamox 250mg Capsule', 'Can I stop taking Libamox 250mg Capsule when I feel better?', 'No, do not stop taking Libamox 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10741, 'Libamox 500mg Tablet', 'Libra Drugs  India', 'Libamox 500mg Tablet', 'What if I miss my dose?', 'Take Libamox 500mg Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(10742, 'Libamox 500mg Tablet', 'Libra Drugs  India', 'Libamox 500mg Tablet', 'Can the use of Libamox 500mg Tablet cause diarrhea?', 'Yes, the use of Libamox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10743, 'Libamox 500mg Tablet', 'Libra Drugs  India', 'Libamox 500mg Tablet', 'How long does Libamox 500mg Tablet takes to work?', 'Usually, Libamox 500mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(10744, 'Libamox 500mg Tablet', 'Libra Drugs  India', 'Libamox 500mg Tablet', 'Can I stop taking Libamox 500mg Tablet when I feel better?', 'No, do not stop taking Libamox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10745, 'Libcar Gold Capsule', 'Avin Pharmaceuticals', 'Libcar Gold Capsule', 'What are the instructions for the storage and disposal of Libcar Gold Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10746, 'Libcar Gold Capsule', 'Avin Pharmaceuticals', 'Libcar Gold Capsule', 'Will I need to stop Libcar Gold Capsule before surgery or dental procedure?', 'Libcar Gold Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Libcar Gold Capsule. However, do not stop taking Libcar Gold Capsule on your own.'),
(10747, 'Libcar Gold Capsule', 'Avin Pharmaceuticals', 'Libcar Gold Capsule', 'What are the lifestyle changes to adapt while taking Libcar Gold Capsule?', 'Making lifestyle changes can boost your health while taking Libcar Gold Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(10748, 'Libcar Gold Capsule', 'Avin Pharmaceuticals', 'Libcar Gold Capsule', 'Which painkiller is safe while taking Libcar Gold Capsule?', 'Paracetamol is safe to use while taking Libcar Gold Capsule for relieving pain. Avoid the use of other painkillers while taking Libcar Gold Capsule, as they may increase the risk of bleeding.'),
(10749, 'Libcar Gold Capsule', 'Avin Pharmaceuticals', 'Libcar Gold Capsule', 'Can the use of Libcar Gold Capsule increase the risk of bleeding?', 'Yes, Libcar Gold Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(10750, 'Libcef 1000mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 1000mg Injection', 'Is Libcef 1000mg Injection safe?', 'Libcef 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10751, 'Libcef 1000mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 1000mg Injection', 'How long does Libcef 1000mg Injection take to work?', 'Usually, Libcef 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(10752, 'Libcef 1000mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 1000mg Injection', 'Who should not take Libcef 1000mg Injection?', 'Libcef 1000mg Injection should not be prescribed to people who are allergic to Libcef 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Libcef 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(10753, 'Libcef 1000mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 1000mg Injection', 'What if I do not get better after using Libcef 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10754, 'Libcef 1000mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 1000mg Injection', 'For how long does Libcef 1000mg Injection stay in the body?', 'Usually, Libcef 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(10755, 'Libcef 1000mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 1000mg Injection', 'Is Libcef 1000mg Injection effective?', 'Libcef 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Libcef 1000mg Injection too early, the symptoms may return or worsen.'),
(10756, 'Libcef 1000mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 1000mg Injection', 'How is Libcef 1000mg Injection administered?', 'Libcef 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Libcef 1000mg Injection.'),
(10757, 'Libcef 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 500mg Injection', 'Is Libcef 500mg Injection safe?', 'Libcef 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10758, 'Libcef 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 500mg Injection', 'How long does Libcef 500mg Injection take to work?', 'Usually, Libcef 500mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(10759, 'Libcef 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 500mg Injection', 'Who should not take Libcef 500mg Injection?', 'Libcef 500mg Injection should not be prescribed to people who are allergic to Libcef 500mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Libcef 500mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(10760, 'Libcef 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 500mg Injection', 'What if I do not get better after using Libcef 500mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(10761, 'Libcef 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 500mg Injection', 'For how long does Libcef 500mg Injection stay in the body?', 'Usually, Libcef 500mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(10762, 'Libcef 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 500mg Injection', 'Is Libcef 500mg Injection effective?', 'Libcef 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Libcef 500mg Injection too early, the symptoms may return or worsen.'),
(10763, 'Libcef 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef 500mg Injection', 'How is Libcef 500mg Injection administered?', 'Libcef 500mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Libcef 500mg Injection.'),
(10764, 'Libcef SB 1000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef SB 1000mg/500mg Injection', 'Can the use of Libcef SB 1000mg/500mg Injection cause allergic reaction?', 'Yes, Libcef SB 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(10765, 'Libcef SB 1000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef SB 1000mg/500mg Injection', 'Can the use of Libcef SB 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Libcef SB 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(10766, 'Libcef SB 1000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef SB 1000mg/500mg Injection', 'How long does Libcef SB 1000mg/500mg Injection takes to work?', 'Usually, Libcef SB 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(10767, 'Libcef SB 1000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef SB 1000mg/500mg Injection', 'What if I don\'t get better after using Libcef SB 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(10768, 'Libcef SB 1000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcef SB 1000mg/500mg Injection', 'Can I stop taking Libcef SB 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Libcef SB 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(10769, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'For how long can Libcin 500mg Injection be taken?', 'The usual course of treatment with Libcin 500mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Libcin 500mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(10770, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'Is Libcin 500mg Injection safe?', 'Libcin 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(10771, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'How is Libcin 500mg Injection administered?', 'Libcin 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Libcin 500mg Injection.'),
(10772, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Libcin 500mg Injection should be taken in the recommended dose only. Overdose of Libcin 500mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(10773, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'What are the instructions for the storage and disposal of Libcin 500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(10774, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'What if I don\'t get better after using Libcin 500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(10775, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'Can I stop taking Libcin 500mg Injection when I feel better?', 'No, do not stop taking Libcin 500mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(10776, 'Libcin 500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libcin 500mg Injection', 'Can I take alcohol while on Libcin 500mg Injection?', 'You should avoid alcohol while being on treatment with Libcin 500mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Libcin 500mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(10777, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'What is Libcool D 30mg/20mg Capsule SR?', 'Libcool D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10778, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'What are the contraindications of Libcool D 30mg/20mg Capsule SR?', 'The use of Libcool D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10779, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'Can the use of Libcool D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Libcool D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(10780, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'Can the use of Libcool D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Libcool D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(10781, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Libcool D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10782, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'Is it safe to use Libcool D 30mg/20mg Capsule SR?', 'Yes, Libcool D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(10783, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'What is the best time to take Libcool D 30mg/20mg Capsule SR?', 'It is best to take Libcool D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(10784, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'Can the use of Libcool D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Libcool D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(10785, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'What is Libcool D 30mg/20mg Capsule SR?', 'Libcool D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(10786, 'Libcool D 30mg/20mg Capsule SR', 'DR. LBR Medi Care & Research Private Limited', 'Libcool D 30mg/20mg Capsule SR', 'What are the contraindications of Libcool D 30mg/20mg Capsule SR?', 'The use of Libcool D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(10787, 'Libcool O Syrup', 'DR. LBR Medi Care & Research Private Limited', 'Libcool O Syrup', 'Why is Libcool O Syrup prescribed?', 'Libcool O Syrup is prescribed for the treatment of acidity, heartburn and stomach ulcers.'),
(10788, 'Libcool O Syrup', 'DR. LBR Medi Care & Research Private Limited', 'Libcool O Syrup', 'How should I take Libcool O Syrup?', 'Take Libcool O Syrup on an empty stomach, at least 1 hour before or 2 hours after a meal.'),
(10789, 'Libcool O Syrup', 'DR. LBR Medi Care & Research Private Limited', 'Libcool O Syrup', 'Can I drink water after taking Libcool O Syrup?', 'Avoid drinking anything immediately after taking Libcool O Syrup as that can reduce the effectiveness of this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10790, 'Libcool O Syrup', 'DR. LBR Medi Care & Research Private Limited', 'Libcool O Syrup', 'Can the use of Libcool O Syrup cause constipation?', 'Yes, Libcool O Syrup contains Sucralfate, which can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits and cereals. Drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or take a short walk. Talk to your doctor about treating constipation if it persists for a long time.'),
(10791, 'Libcool O Syrup', 'DR. LBR Medi Care & Research Private Limited', 'Libcool O Syrup', 'Can I stop taking Libcool O Syrup when my symptoms are relieved?', 'No, take Libcool O Syrup for the full prescribed length of time even if you feel better. Do not stop taking this medication without consulting your doctor.'),
(10792, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'What is Liberache 100mg/325mg Tablet?', 'Liberache 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(10793, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Is it safe to use Liberache 100mg/325mg Tablet?', 'Liberache 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(10794, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Can I stop taking Liberache 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Liberache 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(10795, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Can the use of Liberache 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Liberache 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(10796, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Can the use of Liberache 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Liberache 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(10797, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Liberache 100mg/325mg Tablet?', 'The use of Liberache 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(10798, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Can Liberache 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Liberache 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Liberache 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(10799, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Is Liberache 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Liberache 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(10800, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Can the use of Liberache 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Liberache 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(10801, 'Liberache 100mg/325mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache 100mg/325mg Tablet', 'Is it safe to take a higher dose of Liberache 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Liberache 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(10802, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'What is Liberache MR 100mg/325mg/250mg Tablet?', 'Liberache MR 100mg/325mg/250mg Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(10803, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'What can I do along with Liberache MR 100mg/325mg/250mg Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(10804, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'Can I get addicted to Liberache MR 100mg/325mg/250mg Tablet?', 'No, there are no reports of any patient getting addicted to Liberache MR 100mg/325mg/250mg Tablet.'),
(10805, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'Can I stop taking Liberache MR 100mg/325mg/250mg Tablet when my pain is relieved?', 'Liberache MR 100mg/325mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Liberache MR 100mg/325mg/250mg Tablet should be continued if you are advised by your doctor to do so.'),
(10806, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'Can the use of Liberache MR 100mg/325mg/250mg Tablet cause dizziness?', 'Yes, the use of Liberache MR 100mg/325mg/250mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(10807, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'Can the use of Liberache MR 100mg/325mg/250mg Tablet cause damage to liver?', 'Liberache MR 100mg/325mg/250mg Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(10808, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'How long will Liberache MR 100mg/325mg/250mg Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Liberache MR 100mg/325mg/250mg Tablet.'),
(10809, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'What if I forget to take Liberache MR 100mg/325mg/250mg Tablet?', 'If you forget to take the scheduled dose of Liberache MR 100mg/325mg/250mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(10810, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'Will Liberache MR 100mg/325mg/250mg Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(10811, 'Liberache MR 100mg/325mg/250mg Tablet', 'Gifert Biosciences Pvt Ltd', 'Liberache MR 100mg/325mg/250mg Tablet', 'Are there any specific contraindications associated with the use of Liberache MR 100mg/325mg/250mg Tablet?', 'The use of Liberache MR 100mg/325mg/250mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(10812, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'What is Libero PG 750mcg/75mg Tablet?', 'Libero PG 750mcg/75mg Tablet is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(10813, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'Can I stop taking Libero PG 750mcg/75mg Tablet when my pain is relieved?', 'No, you should not stop taking Libero PG 750mcg/75mg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Libero PG 750mcg/75mg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Libero PG 750mcg/75mg Tablet before you stop the medication completely.'),
(10814, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'How to manage weight gain associated with the use of Libero PG 750mcg/75mg Tablet?', 'Libero PG 750mcg/75mg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(10815, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'Can the use of Libero PG 750mcg/75mg Tablet cause sleepiness or drowsiness?', 'Yes, Libero PG 750mcg/75mg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(10816, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'Are there any serious side effects associated with the use of Libero PG 750mcg/75mg Tablet?', 'Serious side effects caused because of the use of Libero PG 750mcg/75mg Tablet are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Libero PG 750mcg/75mg Tablet and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(10817, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'How long will the Libero PG 750mcg/75mg Tablet take to act?', 'An initial benefit with Libero PG 750mcg/75mg Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(10818, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'What if I forget to take Libero PG 750mcg/75mg Tablet?', 'If you forget to take the scheduled dose of Libero PG 750mcg/75mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(10819, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'Will a higher than the recommended dose of Libero PG 750mcg/75mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(10820, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'Can I drink alcohol while taking Libero PG 750mcg/75mg Tablet?', 'No, do not drink alcohol while taking Libero PG 750mcg/75mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libero PG 750mcg/75mg Tablet.'),
(10821, 'Libero PG 750mcg/75mg Tablet', 'Healthy India Pharmaceuticals', 'Libero PG 750mcg/75mg Tablet', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Libero PG 750mcg/75mg Tablet. However, you must consult your doctor if the advised dosage of Libero PG 750mcg/75mg Tablet does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(10822, 'Liberta 0.25mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.25mg Tablet', 'Is Liberta 0.25mg Tablet a sleeping pill?', 'Liberta 0.25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(10823, 'Liberta 0.25mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.25mg Tablet', 'Does Liberta 0.25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Liberta 0.25mg Tablet?', 'Yes, Liberta 0.25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Liberta 0.25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(10824, 'Liberta 0.25mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.25mg Tablet', 'For how long should I take Liberta 0.25mg Tablet?', 'The duration of treatment with Liberta 0.25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(10825, 'Liberta 0.25mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.25mg Tablet', 'Is it safe to take Liberta 0.25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Liberta 0.25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Liberta 0.25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(10826, 'Liberta 0.25mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.25mg Tablet', 'Is Liberta 0.25mg Tablet addictive?', 'People taking Liberta 0.25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Liberta 0.25mg Tablet. Therefore, Liberta 0.25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(10827, 'Liberta 0.25mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.25mg Tablet', 'Can I stop taking Liberta 0.25mg Tablet if I start feeling better?', 'No, do not stop taking Liberta 0.25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(10828, 'Liberta 0.25mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.25mg Tablet', 'Are there any foods we need to avoid while taking Liberta 0.25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Liberta 0.25mg Tablet. This is because caffeine stimulates your brain and Liberta 0.25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Liberta 0.25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Liberta 0.25mg Tablet.'),
(10829, 'Liberta 0.5mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.5mg Tablet', 'Is Liberta 0.5mg Tablet a sleeping pill?', 'Liberta 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(10830, 'Liberta 0.5mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.5mg Tablet', 'Does Liberta 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Liberta 0.5mg Tablet?', 'Yes, Liberta 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Liberta 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(10831, 'Liberta 0.5mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.5mg Tablet', 'For how long should I take Liberta 0.5mg Tablet?', 'The duration of treatment with Liberta 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(10832, 'Liberta 0.5mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.5mg Tablet', 'Is it safe to take Liberta 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Liberta 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Liberta 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(10833, 'Liberta 0.5mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.5mg Tablet', 'Is Liberta 0.5mg Tablet addictive?', 'People taking Liberta 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Liberta 0.5mg Tablet. Therefore, Liberta 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(10834, 'Liberta 0.5mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.5mg Tablet', 'Can I stop taking Liberta 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Liberta 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(10835, 'Liberta 0.5mg Tablet', 'UCB India Pvt Ltd', 'Liberta 0.5mg Tablet', 'Are there any foods we need to avoid while taking Liberta 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Liberta 0.5mg Tablet. This is because caffeine stimulates your brain and Liberta 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Liberta 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Liberta 0.5mg Tablet.'),
(10836, 'Liberta 1mg Tablet', 'UCB India Pvt Ltd', 'Liberta 1mg Tablet', 'Is Liberta 1mg Tablet a sleeping pill?', 'Liberta 1mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(10837, 'Liberta 1mg Tablet', 'UCB India Pvt Ltd', 'Liberta 1mg Tablet', 'Does Liberta 1mg Tablet cause sleepiness? If yes, then should I stop driving while taking Liberta 1mg Tablet?', 'Yes, Liberta 1mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Liberta 1mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(10838, 'Liberta 1mg Tablet', 'UCB India Pvt Ltd', 'Liberta 1mg Tablet', 'For how long should I take Liberta 1mg Tablet?', 'The duration of treatment with Liberta 1mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(10839, 'Liberta 1mg Tablet', 'UCB India Pvt Ltd', 'Liberta 1mg Tablet', 'Is it safe to take Liberta 1mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Liberta 1mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Liberta 1mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(10840, 'Liberta 1mg Tablet', 'UCB India Pvt Ltd', 'Liberta 1mg Tablet', 'Is Liberta 1mg Tablet addictive?', 'People taking Liberta 1mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Liberta 1mg Tablet. Therefore, Liberta 1mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(10841, 'Liberta 1mg Tablet', 'UCB India Pvt Ltd', 'Liberta 1mg Tablet', 'Can I stop taking Liberta 1mg Tablet if I start feeling better?', 'No, do not stop taking Liberta 1mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(10842, 'Liberta 1mg Tablet', 'UCB India Pvt Ltd', 'Liberta 1mg Tablet', 'Are there any foods we need to avoid while taking Liberta 1mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Liberta 1mg Tablet. This is because caffeine stimulates your brain and Liberta 1mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Liberta 1mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Liberta 1mg Tablet.'),
(10843, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'Is Libetor 100mg Tablet safe?', 'Libetor 100mg Tablet is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Libetor 100mg Tablet occur during the first few weeks of treatment and disappear with time.'),
(10844, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'Why is Libetor 100mg Tablet used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Libetor 100mg Tablet in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(10845, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'Does Libetor 100mg Tablet cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Libetor 100mg Tablet. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(10846, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'Is it safe to use Libetor 100mg Tablet in patients with diabetes?', 'Diabetic patients while using Libetor 100mg Tablet should regularly check the blood sugar levels. Libetor 100mg Tablet may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Libetor 100mg Tablet.'),
(10847, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'Does Libetor 100mg Tablet affect heart rate?', 'Libetor 100mg Tablet slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(10848, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'What can happen if I stop taking Libetor 100mg Tablet?', 'Do not stop taking Libetor 100mg Tablet without talking to your doctor. Stopping Libetor 100mg Tablet suddenly may cause serious heart problems such as angina (chest pain) or even a heart attack. If you need to stop taking Libetor 100mg Tablet, your doctor will reduce the dose slowly over 1 or 2 weeks.'),
(10849, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'Will I need to stop taking Libetor 100mg Tablet before surgery?', 'Your doctor may advise you to stop taking Libetor 100mg Tablet for 24 hours before surgery. This is because Libetor 100mg Tablet can lower your blood pressure too much when its use is combined with some anesthetics. So, tell your doctor that you\'re taking Libetor 100mg Tablet if you\'re going to be put to sleep using a general anesthetic or are scheduled to have any kind of major operation.'),
(10850, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'What happens on taking more than the recommended dose of Libetor 100mg Tablet?', 'Taking more than the recommended dose of Libetor 100mg Tablet can lead to a drop in blood pressure and slowing of the heart rate, difficulty breathing, or a drop in blood sugar, which can cause sweating or confusion. If you take too many tablets, tell your doctor immediately or contact the hospital emergency department nearest to you.'),
(10851, 'Libetor 100mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Libetor 100mg Tablet', 'How long does Libetor 100mg Tablet take to work?', 'If you are taking Libetor 100mg Tablet for high blood pressure, it may lower your BP within 1-3 hours of taking it. You may not feel any different, but this does not mean that the medicine is not working, and it is important to keep taking it. On the other hand, if you are taking it for angina, it will probably take a few days for the medicine to reduce the pain. You may still have chest pain during this time or it may get worse.'),
(10852, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'Can the use of Libi 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Libi 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(10853, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Libi 5mg/2.5mg Tablet?', 'The use of Libi 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Libi 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(10854, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'What precautions do I need to take while using Libi 5mg/2.5mg Tablet?', 'Libi 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libi 5mg/2.5mg Tablet.'),
(10855, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Libi 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(10856, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'Can the use of Libi 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Libi 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(10857, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'Can the use of Libi 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Libi 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(10858, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Libi 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Libi 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(10859, 'Libi 5mg/2.5mg Tablet', 'German Remedies', 'Libi 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Libi 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10860, 'Libit 4mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Injection', 'Q. How quickly does Libit 4mg Injection work?', 'Libit 4mg Injection starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(10861, 'Libit 4mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Injection', 'Q. What are the side effects of Libit 4mg Injection?', 'The most common side effects of Libit 4mg Injection are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(10862, 'Libit 4mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Injection', 'Q. Is Libit 4mg Injection a steroid?', 'No, Libit 4mg Injection is an antiemetic and not a steroid. Libit 4mg Injection is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(10863, 'Libit 4mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Injection', 'Q. Does Libit 4mg Injection work for seasickness?', 'No, Libit 4mg Injection does not work for seasickness. This is because Libit 4mg Injection has very little effect on the nausea associated with motion sickness.'),
(10864, 'Libit 4mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Tablet', 'Q. How quickly does Libit 4mg Tablet work?', 'Libit 4mg Tablet starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(10865, 'Libit 4mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Tablet', 'Q. What are the side effects of Libit 4mg Tablet?', 'The most common side effects of Libit 4mg Tablet are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(10866, 'Libit 4mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Tablet', 'Q. When should you take Libit 4mg Tablet?', 'Libit 4mg Tablet should be taken with a full glass of water, with or without food. It should be used exactly as per the dose and duration advised by the doctor. Usually, the first dose of Libit 4mg Tablet is taken before the start of your surgery, chemotherapy or radiation treatment.'),
(10867, 'Libit 4mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Tablet', 'Q. Is Libit 4mg Tablet a steroid?', 'No, Libit 4mg Tablet is an antiemetic and not a steroid. Libit 4mg Tablet is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(10868, 'Libit 4mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libit 4mg Tablet', 'Q. Does Libit 4mg Tablet work for seasickness?', 'No, Libit 4mg Tablet does not work for seasickness. This is because Libit 4mg Tablet has very little effect on the nausea associated with motion sickness.'),
(10869, 'Libitus Plus Syrup', 'Leben Life Sciences Pvt Ltd', 'Libitus Plus Syrup', 'Will Libitus Plus Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(10870, 'Libitus Plus Syrup', 'Leben Life Sciences Pvt Ltd', 'Libitus Plus Syrup', 'What are the instructions for storage and disposal of Libitus Plus Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10871, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'What is the best time to take Libiz 5mg Tablet?', 'Take Libiz 5mg Tablet before meals or exactly as instructed by your doctor. There is evidence stating that Libiz 5mg Tablet works best at controlling post meal high blood sugar levels when taken 30 minutes before breakfast. So, if you are supposed to take it once daily, take it in the morning before breakfast with a glass of water.'),
(10872, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Is Libiz 5mg Tablet the same as metformin?', 'No, Libiz 5mg Tablet is not the same as metformin. Although both these oral medicines are used in the treatment of type 2 diabetes, the way they work to reduce the sugar levels are different. While Libiz 5mg Tablet acts by increasing the secretion of insulin by the pancreas, metformin acts by improving the functioning and effectiveness of the insulin already available in the body.'),
(10873, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Is Libiz 5mg Tablet bad for kidneys?', 'No, Libiz 5mg Tablet is not harmful if your kidney function is normal. Any previous case of kidney problem should be informed to the doctor, so that the use of Libiz 5mg Tablet can be assessed. This is done in order to analyze whether Libiz 5mg Tablet can be given or not because it is principally excreted by the kidney. If you have kidney problems you will be started at a lower dose.'),
(10874, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Does Libiz 5mg Tablet make you sleepy?', 'Libiz 5mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(10875, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Can I take Libiz 5mg Tablet with insulin?', 'Libiz 5mg Tablet, when used with insulin, can help to control high blood sugar levels. Taking them together can help to lower the dose of insulin but there could also be an increased risk of hypoglycemia. Dose of these medicines may need to be adjusted along with regular blood sugar level monitoring.'),
(10876, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Does Libiz 5mg Tablet cause weight gain?', 'Yes, Libiz 5mg Tablet can cause weight gain. It is advisable to closely monitor your diet and do regular exercise while taking this medicine. Avoid skipping your meal as it can cause very low blood sugar levels and you may end up snacking or taking a lot of sugars.'),
(10877, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Is Libiz 5mg Tablet a Thiazolidinedione?', 'No, Libiz 5mg Tablet is not a Thiazolidinedione, it is a sulfonylurea. However, both are antidiabetic medicines but belong to a different group of medicines.'),
(10878, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Who should not take Libiz 5mg Tablet?', 'Libiz 5mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells), or are due to have surgery. Along with that, patients who are trying to get pregnant, are pregnant, or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should also avoid taking Libiz 5mg Tablet.'),
(10879, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'What can happen if I take more than the recommended dose of Libiz 5mg Tablet?', 'Overdose of Libiz 5mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you have taken an excess dose then you should instantly consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma are cases of medical emergency requiring immediate medical attention.'),
(10880, 'Libiz 5mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz 5mg Tablet', 'Can I skip Libiz 5mg Tablet for a few days?', 'No, Libiz 5mg Tablet should not be skipped, as it can make your diabetes worse. If, you miss the dose by mistake, take it as soon as you remember.'),
(10881, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'What is Libiz M 5mg/500mg Tablet?', 'Libiz M 5mg/500mg Tablet is a combination of two medicines: Glipizide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glipizide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(10882, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'What are the possible side effects of Libiz M 5mg/500mg Tablet?', 'The use of Libiz M 5mg/500mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to Vitamin B12 deficiency.'),
(10883, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'Can the use of Libiz M 5mg/500mg Tablet cause hypoglycemia?', 'Yes, the use of Libiz M 5mg/500mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always carry some glucose tablets, honey or fruit juice with you.'),
(10884, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'Can the use of Libiz M 5mg/500mg Tablet cause lactic acidosis?', 'Yes, the use of Libiz M 5mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Libiz M 5mg/500mg Tablet and immediately consult your doctor.'),
(10885, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'Can the use of Libiz M 5mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Libiz M 5mg/500mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can feel a tingling sensation and numbness in the hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(10886, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'Are there any specific conditions in which Libiz M 5mg/500mg Tablet should not to be taken?', 'The use of Libiz M 5mg/500mg Tablet should be avoided in patients with known allergy to any of the components or excipients of this medicine. It should also be avoided in patients with moderate to severe kidney disease and in patients with underlying metabolic acidosis including diabetic ketoacidosis.'),
(10887, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'Is it safe to take alcohol while I am also taking Libiz M 5mg/500mg Tablet?', 'No, it is not safe to take Libiz M 5mg/500mg Tablet along with alcohol, as it may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(10888, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'What are the instructions for storage and disposal of Libiz M 5mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10889, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'What is Libiz M 5mg/500mg Tablet?', 'Libiz M 5mg/500mg Tablet is a combination of two medicines: Glipizide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glipizide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(10890, 'Libiz M 5mg/500mg Tablet', 'Baroque Pharmaceuticals Pvt Ltd', 'Libiz M 5mg/500mg Tablet', 'What are the possible side effects of Libiz M 5mg/500mg Tablet?', 'The use of Libiz M 5mg/500mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to Vitamin B12 deficiency.'),
(10891, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'Can the use of Libking 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Libking 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(10892, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Libking 5mg/2.5mg Tablet?', 'The use of Libking 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Libking 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(10893, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'What precautions do I need to take while using Libking 5mg/2.5mg Tablet?', 'Libking 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libking 5mg/2.5mg Tablet.'),
(10894, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Libking 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(10895, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'Can the use of Libking 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Libking 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(10896, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'Can the use of Libking 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Libking 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(10897, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Libking 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Libking 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(10898, 'Libking 5mg/2.5mg Tablet', 'Amazing Reaserch Laboratories Ltd', 'Libking 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Libking 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10899, 'Libmet 50mg Tablet XL', 'Daffohils Laboratories Pvt Ltd', 'Libmet 50mg Tablet XL', 'How long does Libmet 50mg Tablet XL take to work?', 'The time taken by Libmet 50mg Tablet XL to start working varies from person to person. Usually, Libmet 50mg Tablet XL starts working within 15 minutes. However, in some patients, it may take up to 2 hours to start working. It starts acting slowly and the maximum or full effect is usually experienced within a span of 1 week. In case you do not feel any difference while taking Libmet 50mg Tablet XL, do not panic. The medicine exerts its beneficial effects when taken for a long time.'),
(10900, 'Libmet 50mg Tablet XL', 'Daffohils Laboratories Pvt Ltd', 'Libmet 50mg Tablet XL', 'Is taking Libmet 50mg Tablet XL dangerous?', 'Libmet 50mg Tablet XL is usually safe when taken as per the doctor’s prescription. This medicine exhibits dangerous effects if the medicine is stopped suddenly. Stopping the medicine suddenly can cause an abrupt increase in the heart rate and affect its activity, which can be dangerous for heart failure patients and can even lead to a heart attack in some patients. So, do not stop the medicine suddenly and take it for the prescribed duration.'),
(10901, 'Libmet 50mg Tablet XL', 'Daffohils Laboratories Pvt Ltd', 'Libmet 50mg Tablet XL', 'Does Libmet 50mg Tablet XL help you sleep better?', 'Libmet 50mg Tablet XL belongs to the beta-blockers class of medicine. Though their effect on sleep varies from person to person, it has been found that these medicines are known to alter the sleep pattern and disturb sleep in few patients. On the other hand, it has also been seen to promote better sleep in patients with increased heart rate and anxiety by calming down the heart and nerves. Do consult your doctor in case you have any sleep disturbances.'),
(10902, 'Libmet 50mg Tablet XL', 'Daffohils Laboratories Pvt Ltd', 'Libmet 50mg Tablet XL', 'Can I take alcohol after taking Libmet 50mg Tablet XL?', 'No, you should not consume alcohol after taking Libmet 50mg Tablet XL. Alcohol may increase the blood-pressure-lowering effects of this medicine and lead to low blood pressure.'),
(10903, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'Can the use of Libnam 5 mg/2.5 mg Tablet cause physical dependence?', 'Yes, Libnam 5 mg/2.5 mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(10904, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'Are there any specific contraindications associated with the use of Libnam 5 mg/2.5 mg Tablet?', 'The use of Libnam 5 mg/2.5 mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Libnam 5 mg/2.5 mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(10905, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'What precautions do I need to take while using Libnam 5 mg/2.5 mg Tablet?', 'Libnam 5 mg/2.5 mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libnam 5 mg/2.5 mg Tablet.'),
(10906, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'What are the symptoms of an overdose of Libnam 5 mg/2.5 mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(10907, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'Can the use of Libnam 5 mg/2.5 mg Tablet cause sleepiness or drowsiness?', 'Yes, Libnam 5 mg/2.5 mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(10908, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'Can the use of Libnam 5 mg/2.5 mg Tablet cause constipation?', 'Yes, the use of Libnam 5 mg/2.5 mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(10909, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'Can I drink alcohol while taking Libnam 5 mg/2.5 mg Tablet?', 'No, avoid drinking alcohol while you are taking Libnam 5 mg/2.5 mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(10910, 'Libnam 5 mg/2.5 mg Tablet', 'Mankind Pharma Ltd', 'Libnam 5 mg/2.5 mg Tablet', 'What are the instructions for storage and disposal of Libnam 5 mg/2.5 mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10911, 'Libnif 100mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libnif 100mg Tablet SR', 'How long does Libnif 100mg Tablet SR take to work on a UTI?', 'Libnif 100mg Tablet SR starts acting quickly, but you will not start feeling better immediately after taking it. It may take a few days (2-3 days) before you see any improvement in your symptoms. If you do not start feeling better within 3 days of starting Libnif 100mg Tablet SR or your condition worsens, contact your doctor. It is important to complete the full course of Libnif 100mg Tablet SR as advised by your doctor, even if you start feeling better.'),
(10912, 'Libnif 100mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libnif 100mg Tablet SR', 'What happens if you take Libnif 100mg Tablet SR without food?', 'You should take Libnif 100mg Tablet SR with your meal or straightaway after the meal. Taking with food helps in absorption of medicine so that it works better. If you take it without food, you are likely to get an upset stomach. The symptoms include nausea, vomiting, diarrhoea, and loss of appetite may also occur. Therefore, to avoid unpleasant side effects, take it exactly as prescribed by your doctor.'),
(10913, 'Libnif 100mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libnif 100mg Tablet SR', 'Does Libnif 100mg Tablet SR make your urine orange?', 'Libnif 100mg Tablet SR may turn your urine brown or dark yellow in colour. However, you need not worry as this is usually temporary and completely harmless effect. It will disappear once you stop taking Libnif 100mg Tablet SR. Consult your doctor if you are not sure or still have any concern, but do not stop taking Libnif 100mg Tablet SR.'),
(10914, 'Libnif 100mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libnif 100mg Tablet SR', 'Can Libnif 100mg Tablet SR give you a yeast infection?', 'Yes, some people may get a fungal or yeast infection known as ‘thrush’ after taking Libnif 100mg Tablet SR. This is because antibiotics kill the ‘good bacteria’ which help in preventing thrush. You should inform your doctor if you get vaginal itching or discharge after taking Libnif 100mg Tablet SR or soon after stopping it.'),
(10915, 'Libnif 100mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libnif 100mg Tablet SR', 'Is Libnif 100mg Tablet SR a strong antibiotic?', 'Yes, Libnif 100mg Tablet SR is a strong antibiotic (or broad spectrum antibiotic), which means that it is effective against a wide variety of urinary bacteria. It is important that Libnif 100mg Tablet SR should be given to treat or prevent infections that are proven to be caused by susceptible bacteria. This is usually evaluated by a culture test which demonstrates a range of bacteria which cannot grow in the prence of an antibiotic. Libnif 100mg Tablet SR has seen to be effective against UTI caused by Escherichia coli, Enteroccus faecalis, Klebsiella species, Enterobacter species, Staphylococcus species: (eg S. aureus, S. saprophyticus, S. epidermidis). Some strains of Enterobacter and Klebsiella are resistant to Libnif 100mg Tablet SR.'),
(10916, 'Liboce 0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce 0.3mg Tablet', 'Does Liboce 0.3mg Tablet cause weight loss?', 'There is evidence that normal doses of Liboce 0.3mg Tablet do not cause significant weight loss. However, very high doses of this medicine can affect the absorption of food, thereby causing weight loss. Do not take this medication for weight loss as it is not approved for the treatment of obesity. Do consult your doctor before starting this medication.'),
(10917, 'Liboce 0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce 0.3mg Tablet', 'How should you take Liboce 0.3mg Tablet?', 'Liboce 0.3mg Tablet is usually prescribed to be taken orally three times daily immediately before each meal. Liboce 0.3mg Tablet may be given along with a controlled diet. However, in case Liboce 0.3mg Tablet does not work alone, it may be given along with a proper diet and other antidiabetic medicines. Your doctor may further increase your doses if the given doses do not provide sufficient control over the blood sugar levels. Do not take this medication by yourself and consult your doctor before starting this medication.'),
(10918, 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'What is Liboce Trio 1mg/500mg/0.2mg Tablet SR?', 'Liboce Trio 1mg/500mg/0.2mg Tablet SR is a combination of three medicines: Glimepiride, Metformin and Voglibose. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. Voglibose is an alpha-glucosidase inhibitor which lowers the postprandial (after meals) glucose levels in the body. This combination is not indicated for the treatment of Type 1 DM.'),
(10919, 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'What are the possible side effects of Liboce Trio 1mg/500mg/0.2mg Tablet SR?', 'The use of Liboce Trio 1mg/500mg/0.2mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), nausea, diarrhea, altered taste, flatulence, stomach pain, headache, skin rash and respiratory tract infection.'),
(10920, 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Are there any specific conditions in which Liboce Trio 1mg/500mg/0.2mg Tablet SR should not be taken?', 'The use of Liboce Trio 1mg/500mg/0.2mg Tablet SR should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also avoided in patients with moderate to severe kidney disease and in patients with inflammatory bowel disease, colonic ulcerations and underlying metabolic acidosis including diabetic ketoacidosis.'),
(10921, 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Is it safe to take alcohol while I am also taking Liboce Trio 1mg/500mg/0.2mg Tablet SR?', 'No, it is not safe to take Liboce Trio 1mg/500mg/0.2mg Tablet SR along with alcohol. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(10922, 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Can the use of Liboce Trio 1mg/500mg/0.2mg Tablet SR cause hypoglycemia?', 'Yes, the use of Liboce Trio 1mg/500mg/0.2mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(10923, 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.2mg Tablet SR', 'What are the instructions for the storage and disposal of Liboce Trio 1mg/500mg/0.2mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10924, 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'What is Liboce Trio 1mg/500mg/0.3mg Tablet?', 'Liboce Trio 1mg/500mg/0.3mg Tablet is a combination of three medicines: Glimepiride, Metformin and Voglibose. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. Voglibose is an alpha-glucosidase inhibitor which lowers the postprandial (after meals) glucose levels in the body. This combination is not indicated for the treatment of Type 1 DM.'),
(10925, 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'What are the possible side effects of Liboce Trio 1mg/500mg/0.3mg Tablet?', 'The use of Liboce Trio 1mg/500mg/0.3mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), nausea, diarrhea, altered taste, flatulence, stomach pain, headache, skin rash and respiratory tract infection.'),
(10926, 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Are there any specific conditions in which Liboce Trio 1mg/500mg/0.3mg Tablet should not be taken?', 'The use of Liboce Trio 1mg/500mg/0.3mg Tablet should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also avoided in patients with moderate to severe kidney disease and in patients with inflammatory bowel disease, colonic ulcerations and underlying metabolic acidosis including diabetic ketoacidosis.'),
(10927, 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Is it safe to take alcohol while I am also taking Liboce Trio 1mg/500mg/0.3mg Tablet?', 'No, it is not safe to take Liboce Trio 1mg/500mg/0.3mg Tablet along with alcohol. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(10928, 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Can the use of Liboce Trio 1mg/500mg/0.3mg Tablet cause hypoglycemia?', 'Yes, the use of Liboce Trio 1mg/500mg/0.3mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(10929, 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'Syntonic Lifesciences', 'Liboce Trio 1mg/500mg/0.3mg Tablet', 'What are the instructions for the storage and disposal of Liboce Trio 1mg/500mg/0.3mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10930, 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'S9 Pharma', 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'Q. What is Liboce Trio 1mg/500mg/0.3mg Tablet SR?', 'Liboce Trio 1mg/500mg/0.3mg Tablet SR is a combination of three medicines: Glimepiride, Metformin and Voglibose. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. Voglibose is an alpha-glucosidase inhibitor which lowers the postprandial (after meals) glucose levels in the body. This combination is not indicated for the treatment of Type 1 DM.'),
(10931, 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'S9 Pharma', 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'Q. What are the possible side effects of Liboce Trio 1mg/500mg/0.3mg Tablet SR?', 'The use of Liboce Trio 1mg/500mg/0.3mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), nausea, diarrhea, altered taste, flatulence, stomach pain, headache, skin rash and respiratory tract infection.'),
(10932, 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'S9 Pharma', 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'Q. Are there any specific conditions in which Liboce Trio 1mg/500mg/0.3mg Tablet SR should not be taken?', 'The use of Liboce Trio 1mg/500mg/0.3mg Tablet SR should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also avoided in patients with moderate to severe kidney disease and in patients with inflammatory bowel disease, colonic ulcerations and underlying metabolic acidosis including diabetic ketoacidosis.'),
(10933, 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'S9 Pharma', 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'Q. Is it safe to take alcohol while I am also taking Liboce Trio 1mg/500mg/0.3mg Tablet SR?', 'No, it is not safe to take Liboce Trio 1mg/500mg/0.3mg Tablet SR along with alcohol. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(10934, 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'S9 Pharma', 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'Q. Can the use of Liboce Trio 1mg/500mg/0.3mg Tablet SR cause hypoglycemia?', 'Yes, the use of Liboce Trio 1mg/500mg/0.3mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(10935, 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'S9 Pharma', 'Liboce Trio 1mg/500mg/0.3mg Tablet SR', 'Q. What are the instructions for the storage and disposal of Liboce Trio 1mg/500mg/0.3mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10936, 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'What is Liboce Trio 2mg/500mg/0.2mg Tablet SR?', 'Liboce Trio 2mg/500mg/0.2mg Tablet SR is a combination of three medicines: Glimepiride, Metformin and Voglibose. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. Voglibose is an alpha-glucosidase inhibitor which lowers the postprandial (after meals) glucose levels in the body. This combination is not indicated for the treatment of Type 1 DM.'),
(10937, 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'What are the possible side effects of Liboce Trio 2mg/500mg/0.2mg Tablet SR?', 'The use of Liboce Trio 2mg/500mg/0.2mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), nausea, diarrhea, altered taste, flatulence, stomach pain, headache, skin rash and respiratory tract infection.'),
(10938, 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Are there any specific conditions in which Liboce Trio 2mg/500mg/0.2mg Tablet SR should not be taken?', 'The use of Liboce Trio 2mg/500mg/0.2mg Tablet SR should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also avoided in patients with moderate to severe kidney disease and in patients with inflammatory bowel disease, colonic ulcerations and underlying metabolic acidosis including diabetic ketoacidosis.'),
(10939, 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Is it safe to take alcohol while I am also taking Liboce Trio 2mg/500mg/0.2mg Tablet SR?', 'No, it is not safe to take Liboce Trio 2mg/500mg/0.2mg Tablet SR along with alcohol. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(10940, 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Can the use of Liboce Trio 2mg/500mg/0.2mg Tablet SR cause hypoglycemia?', 'Yes, the use of Liboce Trio 2mg/500mg/0.2mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(10941, 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.2mg Tablet SR', 'What are the instructions for the storage and disposal of Liboce Trio 2mg/500mg/0.2mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10942, 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'What is Liboce Trio 2mg/500mg/0.3mg Tablet SR?', 'Liboce Trio 2mg/500mg/0.3mg Tablet SR is a combination of three medicines: Glimepiride, Metformin and Voglibose. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. Voglibose is an alpha-glucosidase inhibitor which lowers the postprandial (after meals) glucose levels in the body. This combination is not indicated for the treatment of Type 1 DM.'),
(10943, 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'What are the possible side effects of Liboce Trio 2mg/500mg/0.3mg Tablet SR?', 'The use of Liboce Trio 2mg/500mg/0.3mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), nausea, diarrhea, altered taste, flatulence, stomach pain, headache, skin rash and respiratory tract infection.'),
(10944, 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Are there any specific conditions in which Liboce Trio 2mg/500mg/0.3mg Tablet SR should not be taken?', 'The use of Liboce Trio 2mg/500mg/0.3mg Tablet SR should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also avoided in patients with moderate to severe kidney disease and in patients with inflammatory bowel disease, colonic ulcerations and underlying metabolic acidosis including diabetic ketoacidosis.'),
(10945, 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Is it safe to take alcohol while I am also taking Liboce Trio 2mg/500mg/0.3mg Tablet SR?', 'No, it is not safe to take Liboce Trio 2mg/500mg/0.3mg Tablet SR along with alcohol. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(10946, 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Can the use of Liboce Trio 2mg/500mg/0.3mg Tablet SR cause hypoglycemia?', 'Yes, the use of Liboce Trio 2mg/500mg/0.3mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(10947, 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio 2mg/500mg/0.3mg Tablet SR', 'What are the instructions for the storage and disposal of Liboce Trio 2mg/500mg/0.3mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10948, 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'What is Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR?', 'Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR is a combination of three medicines: Glimepiride, Metformin and Voglibose. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves the blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. Voglibose is an alpha-glucosidase inhibitor which lowers the postprandial (after meals) glucose levels in the body. This combination is not indicated for the treatment of Type 1 DM.'),
(10949, 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'What are the possible side effects of Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR?', 'The use of Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), nausea, diarrhea, altered taste, flatulence, stomach pain, headache, skin rash and respiratory tract infection.'),
(10950, 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Are there any specific conditions in which Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR should not be taken?', 'The use of Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also avoided in patients with moderate to severe kidney disease and in patients with inflammatory bowel disease, colonic ulcerations and underlying metabolic acidosis including diabetic ketoacidosis.'),
(10951, 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Is it safe to take alcohol while I am also taking Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR?', 'No, it is not safe to take Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR along with alcohol. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(10952, 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Can the use of Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR cause hypoglycemia?', 'Yes, the use of Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(10953, 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'Syntonic Lifesciences', 'Liboce Trio Forte 2mg/1000mg/0.3mg Tablet SR', 'What are the instructions for the storage and disposal of Liboce Trio Forte  2mg/1000mg/0.3mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10954, 'Libocfen 10mg Tablet', 'Syntonic Lifesciences', 'Libocfen 10mg Tablet', 'Q. Can Libocfen 10mg Tablet make you sleepy?', 'Yes, Libocfen 10mg Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Libocfen 10mg Tablet affects you.'),
(10955, 'Libocfen 10mg Tablet', 'Syntonic Lifesciences', 'Libocfen 10mg Tablet', 'Q. Does Libocfen 10mg Tablet help anxiety?', 'Though Libocfen 10mg Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(10956, 'Libocfen 10mg Tablet', 'Syntonic Lifesciences', 'Libocfen 10mg Tablet', 'Q. Can I take Libocfen 10mg Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Libocfen 10mg Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(10957, 'Libocfen 10mg Tablet', 'Syntonic Lifesciences', 'Libocfen 10mg Tablet', 'Q. Does Libocfen 10mg Tablet have any effect on kidneys?', 'Libocfen 10mg Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(10958, 'Libocfen 10mg Tablet', 'Syntonic Lifesciences', 'Libocfen 10mg Tablet', 'Q. How should Libocfen 10mg Tablet be taken?', 'Take Libocfen 10mg Tablet exactly as directed by your doctor. If a person experiences nausea while taking Libocfen 10mg Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(10959, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Q. When will my child feel better?', 'You may be required to give Liboflam P Syrup to your child for a few days to weeks, depending upon the severity of the infection. Continue to give this medicine to your child in the dose and frequency advised by the doctor. You will soon notice that the pain or fever will reduce and your child will start feeling better. Do consult the doctor if your child continues to feel unwell even after completion of the full prescribed course of the medicine.'),
(10960, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Q. My child’s fever is persistent even after taking Liboflam P Syrup. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(10961, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Q. Can I increase or decrease the dose of Liboflam P Syrup for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unrequired increase in the dose may lead to toxicity, a sudden decrease may bring back the symptoms. So, instead of making alterations by yourself, speak to your child’s doctor if you feel a change in dose may be needed.'),
(10962, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Q. How should Liboflam P Syrup be stored?', 'Liboflam P Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10963, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Q. Can all children be given the same dose of Liboflam P Syrup?', 'No. Liboflam P Syrup cannot be given to everyone in the same dose. Even your child will not need the same dose once they grow up. The doctor decides the appropriate dose of Liboflam P Syrup based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(10964, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Q. Can I give Liboflam P Syrup on a routine basis when my child is taking a vaccine?', 'It is always suggested not to give Liboflam P Syrup with vaccines that lead to fever. According to the studies, doing so can reduce the efficacy of the vaccine.'),
(10965, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Q. Are there any serious side effects of Liboflam P Syrup for my child?', 'Although Liboflam P Syrup is well-tolerated by children, if you notice your child experiencing any intolerable episodes like persistent vomiting, body swelling,  paleness, weakness, decreased urine frequency, or serious allergic reaction, rush to your doctor on an immediate basis.'),
(10966, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'When will my child feel better?', 'You may be required to give Liboflam P Syrup to your child for a few days to weeks, depending upon the severity of the infection. Continue to give this medicine to your child in the dose and frequency advised by the doctor. You will soon notice that the pain or fever will reduce and your child will start feeling better. Do consult the doctor if your child continues to feel unwell even after completion of the full prescribed course of the medicine.'),
(10967, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'My child’s fever is persistent even after taking Liboflam P Syrup. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(10968, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Can I increase or decrease the dose of Liboflam P Syrup for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unrequired increase in the dose may lead to toxicity, a sudden decrease may bring back the symptoms. So, instead of making alterations by yourself, speak to your child’s doctor if you feel a change in dose may be needed.'),
(10969, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'How should Liboflam P Syrup be stored?', 'Liboflam P Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(10970, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Can all children be given the same dose of Liboflam P Syrup?', 'No. Liboflam P Syrup cannot be given to everyone in the same dose. Even your child will not need the same dose once they grow up. The doctor decides the appropriate dose of Liboflam P Syrup based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(10971, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Can I give Liboflam P Syrup on a routine basis when my child is taking a vaccine?', 'It is always suggested not to give Liboflam P Syrup with vaccines that lead to fever. According to the studies, doing so can reduce the efficacy of the vaccine.'),
(10972, 'Liboflam P Syrup', 'Syntonic Lifesciences', 'Liboflam P Syrup', 'Are there any serious side effects of Liboflam P Syrup for my child?', 'Although Liboflam P Syrup is well-tolerated by children, if you notice your child experiencing any intolerable episodes like persistent vomiting, body swelling,  paleness, weakness, decreased urine frequency, or serious allergic reaction, rush to your doctor on an immediate basis.'),
(10973, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'Can the use of Libopil 5 mg/2.5 mg Tablet cause physical dependence?', 'Yes, Libopil 5 mg/2.5 mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(10974, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'Are there any specific contraindications associated with the use of Libopil 5 mg/2.5 mg Tablet?', 'The use of Libopil 5 mg/2.5 mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Libopil 5 mg/2.5 mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(10975, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'What precautions do I need to take while using Libopil 5 mg/2.5 mg Tablet?', 'Libopil 5 mg/2.5 mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libopil 5 mg/2.5 mg Tablet.'),
(10976, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'What are the symptoms of an overdose of Libopil 5 mg/2.5 mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(10977, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'Can the use of Libopil 5 mg/2.5 mg Tablet cause sleepiness or drowsiness?', 'Yes, Libopil 5 mg/2.5 mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(10978, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'Can the use of Libopil 5 mg/2.5 mg Tablet cause constipation?', 'Yes, the use of Libopil 5 mg/2.5 mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(10979, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'Can I drink alcohol while taking Libopil 5 mg/2.5 mg Tablet?', 'No, avoid drinking alcohol while you are taking Libopil 5 mg/2.5 mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(10980, 'Libopil 5 mg/2.5 mg Tablet', 'Psychotropics India Ltd', 'Libopil 5 mg/2.5 mg Tablet', 'What are the instructions for storage and disposal of Libopil 5 mg/2.5 mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10981, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'Are there any important warnings associated with use of Libotrip DS 25 Tablet?', 'During the first few months of treatment, Libotrip DS 25 Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(10982, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'Can I stop taking Libotrip DS 25 Tablet when my symptoms are relieved?', 'No, you should continue to take Libotrip DS 25 Tablet, even if you feel well. If you stop Libotrip DS 25 Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(10983, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'How to manage weight gain associated with the use of Libotrip DS 25 Tablet?', 'There are reports which suggest that the use of Libotrip DS 25 Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(10984, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'What are the instructions for storage and disposal of Libotrip DS 25 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10985, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'Can the use of Libotrip DS 25 Tablet cause sleepiness?', 'Yes, Libotrip DS 25 Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(10986, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'Can the use of Libotrip DS 25 Tablet affect my sexual life?', 'The use of Libotrip DS 25 Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(10987, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'Can I drink alcohol while taking Libotrip DS 25 Tablet?', 'No, do not drink alcohol while you are taking Libotrip DS 25 Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libotrip DS 25 Tablet.'),
(10988, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'Can the use of Libotrip DS 25 Tablet change the color of urine?', 'Yes, Libotrip DS 25 Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libotrip DS 25 Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libotrip DS 25 Tablet.'),
(10989, 'Libotrip DS 25 Tablet', 'Wockhardt Ltd', 'Libotrip DS 25 Tablet', 'How long does Libotrip DS 25 Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libotrip DS 25 Tablet, although some people will start to feel better sooner. When taking Libotrip DS 25 Tablet, it is important to give it time to work.'),
(10990, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'Are there any important warnings associated with use of Libotryp 12.5 mg/5 mg Tablet?', 'During the first few months of treatment, Libotryp 12.5 mg/5 mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(10991, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'Can I stop taking Libotryp 12.5 mg/5 mg Tablet when my symptoms are relieved?', 'No, you should continue to take Libotryp 12.5 mg/5 mg Tablet, even if you feel well. If you stop Libotryp 12.5 mg/5 mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(10992, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'How to manage weight gain associated with the use of Libotryp 12.5 mg/5 mg Tablet?', 'There are reports which suggest that the use of Libotryp 12.5 mg/5 mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(10993, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'What are the instructions for storage and disposal of Libotryp 12.5 mg/5 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(10994, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'Can the use of Libotryp 12.5 mg/5 mg Tablet cause sleepiness?', 'Yes, Libotryp 12.5 mg/5 mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(10995, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'Can the use of Libotryp 12.5 mg/5 mg Tablet affect my sexual life?', 'The use of Libotryp 12.5 mg/5 mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(10996, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'Can I drink alcohol while taking Libotryp 12.5 mg/5 mg Tablet?', 'No, do not drink alcohol while you are taking Libotryp 12.5 mg/5 mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libotryp 12.5 mg/5 mg Tablet.'),
(10997, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'Can the use of Libotryp 12.5 mg/5 mg Tablet change the color of urine?', 'Yes, Libotryp 12.5 mg/5 mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libotryp 12.5 mg/5 mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libotryp 12.5 mg/5 mg Tablet.'),
(10998, 'Libotryp 12.5 mg/5 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 12.5 mg/5 mg Tablet', 'How long does Libotryp 12.5 mg/5 mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libotryp 12.5 mg/5 mg Tablet, although some people will start to feel better sooner. When taking Libotryp 12.5 mg/5 mg Tablet, it is important to give it time to work.'),
(10999, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'Are there any important warnings associated with use of Libotryp 25mg/10mg Tablet?', 'During the first few months of treatment, Libotryp 25mg/10mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(11000, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'Can I stop taking Libotryp 25mg/10mg Tablet when my symptoms are relieved?', 'No, you should continue to take Libotryp 25mg/10mg Tablet, even if you feel well. If you stop Libotryp 25mg/10mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(11001, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'How to manage weight gain associated with the use of Libotryp 25mg/10mg Tablet?', 'There are reports which suggest that the use of Libotryp 25mg/10mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(11002, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'What are the instructions for storage and disposal of Libotryp 25mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11003, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'Can the use of Libotryp 25mg/10mg Tablet cause sleepiness?', 'Yes, Libotryp 25mg/10mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(11004, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'Can the use of Libotryp 25mg/10mg Tablet affect my sexual life?', 'The use of Libotryp 25mg/10mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(11005, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'Can I drink alcohol while taking Libotryp 25mg/10mg Tablet?', 'No, do not drink alcohol while you are taking Libotryp 25mg/10mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libotryp 25mg/10mg Tablet.'),
(11006, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'Can the use of Libotryp 25mg/10mg Tablet change the color of urine?', 'Yes, Libotryp 25mg/10mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libotryp 25mg/10mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libotryp 25mg/10mg Tablet.'),
(11007, 'Libotryp 25mg/10mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp 25mg/10mg Tablet', 'How long does Libotryp 25mg/10mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libotryp 25mg/10mg Tablet, although some people will start to feel better sooner. When taking Libotryp 25mg/10mg Tablet, it is important to give it time to work.'),
(11008, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'Are there any important warnings associated with use of Libotryp DS 25 mg/10 mg Tablet?', 'During the first few months of treatment, Libotryp DS 25 mg/10 mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(11009, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'Can I stop taking Libotryp DS 25 mg/10 mg Tablet when my symptoms are relieved?', 'No, you should continue to take Libotryp DS 25 mg/10 mg Tablet, even if you feel well. If you stop Libotryp DS 25 mg/10 mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(11010, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'How to manage weight gain associated with the use of Libotryp DS 25 mg/10 mg Tablet?', 'There are reports which suggest that the use of Libotryp DS 25 mg/10 mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(11011, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'What are the instructions for storage and disposal of Libotryp DS 25 mg/10 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11012, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'Can the use of Libotryp DS 25 mg/10 mg Tablet cause sleepiness?', 'Yes, Libotryp DS 25 mg/10 mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(11013, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'Can the use of Libotryp DS 25 mg/10 mg Tablet affect my sexual life?', 'The use of Libotryp DS 25 mg/10 mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(11014, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'Can I drink alcohol while taking Libotryp DS 25 mg/10 mg Tablet?', 'No, do not drink alcohol while you are taking Libotryp DS 25 mg/10 mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libotryp DS 25 mg/10 mg Tablet.'),
(11015, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'Can the use of Libotryp DS 25 mg/10 mg Tablet change the color of urine?', 'Yes, Libotryp DS 25 mg/10 mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libotryp DS 25 mg/10 mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libotryp DS 25 mg/10 mg Tablet.'),
(11016, 'Libotryp DS 25 mg/10 mg Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp DS 25 mg/10 mg Tablet', 'How long does Libotryp DS 25 mg/10 mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libotryp DS 25 mg/10 mg Tablet, although some people will start to feel better sooner. When taking Libotryp DS 25 mg/10 mg Tablet, it is important to give it time to work.'),
(11017, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'Are there any important warnings associated with use of Libotryp XL 25 Tablet?', 'During the first few months of treatment, Libotryp XL 25 Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(11018, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'Can I stop taking Libotryp XL 25 Tablet when my symptoms are relieved?', 'No, you should continue to take Libotryp XL 25 Tablet, even if you feel well. If you stop Libotryp XL 25 Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(11019, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'How to manage weight gain associated with the use of Libotryp XL 25 Tablet?', 'There are reports which suggest that the use of Libotryp XL 25 Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(11020, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'What are the instructions for storage and disposal of Libotryp XL 25 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11021, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'Can the use of Libotryp XL 25 Tablet cause sleepiness?', 'Yes, Libotryp XL 25 Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(11022, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'Can the use of Libotryp XL 25 Tablet affect my sexual life?', 'The use of Libotryp XL 25 Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(11023, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'Can I drink alcohol while taking Libotryp XL 25 Tablet?', 'No, do not drink alcohol while you are taking Libotryp XL 25 Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libotryp XL 25 Tablet.'),
(11024, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'Can the use of Libotryp XL 25 Tablet change the color of urine?', 'Yes, Libotryp XL 25 Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libotryp XL 25 Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libotryp XL 25 Tablet.'),
(11025, 'Libotryp XL 25 Tablet', 'Dr Reddy\'s Laboratories Ltd', 'Libotryp XL 25 Tablet', 'How long does Libotryp XL 25 Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libotryp XL 25 Tablet, although some people will start to feel better sooner. When taking Libotryp XL 25 Tablet, it is important to give it time to work.'),
(11026, 'Libra M 5mg/10mg Tablet', 'Man Serve Pharma', 'Libra M 5mg/10mg Tablet', 'What is Libra M 5mg/10mg Tablet?', 'Libra M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(11027, 'Libra M 5mg/10mg Tablet', 'Man Serve Pharma', 'Libra M 5mg/10mg Tablet', 'Can the use of Libra M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Libra M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(11028, 'Libra M 5mg/10mg Tablet', 'Man Serve Pharma', 'Libra M 5mg/10mg Tablet', 'Can Libra M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Libra M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(11029, 'Libra M 5mg/10mg Tablet', 'Man Serve Pharma', 'Libra M 5mg/10mg Tablet', 'Can the use of Libra M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Libra M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11030, 'Libra M 5mg/10mg Tablet', 'Man Serve Pharma', 'Libra M 5mg/10mg Tablet', 'Can I drink alcohol while taking Libra M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Libra M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Libra M 5mg/10mg Tablet.'),
(11031, 'Libra M 5mg/10mg Tablet', 'Man Serve Pharma', 'Libra M 5mg/10mg Tablet', 'Will Libra M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Libra M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(11032, 'Libra M 5mg/10mg Tablet', 'Man Serve Pharma', 'Libra M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Libra M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11033, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'Are there any important warnings associated with use of Libral 12.5 mg/5 mg Tablet?', 'During the first few months of treatment, Libral 12.5 mg/5 mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(11034, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'Can I stop taking Libral 12.5 mg/5 mg Tablet when my symptoms are relieved?', 'No, you should continue to take Libral 12.5 mg/5 mg Tablet, even if you feel well. If you stop Libral 12.5 mg/5 mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(11035, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'How to manage weight gain associated with the use of Libral 12.5 mg/5 mg Tablet?', 'There are reports which suggest that the use of Libral 12.5 mg/5 mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(11036, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'What are the instructions for storage and disposal of Libral 12.5 mg/5 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11037, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'Can the use of Libral 12.5 mg/5 mg Tablet cause sleepiness?', 'Yes, Libral 12.5 mg/5 mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(11038, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'Can the use of Libral 12.5 mg/5 mg Tablet affect my sexual life?', 'The use of Libral 12.5 mg/5 mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(11039, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'Can I drink alcohol while taking Libral 12.5 mg/5 mg Tablet?', 'No, do not drink alcohol while you are taking Libral 12.5 mg/5 mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libral 12.5 mg/5 mg Tablet.'),
(11040, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'Can the use of Libral 12.5 mg/5 mg Tablet change the color of urine?', 'Yes, Libral 12.5 mg/5 mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libral 12.5 mg/5 mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libral 12.5 mg/5 mg Tablet.'),
(11041, 'Libral 12.5 mg/5 mg Tablet', 'Scorsis Laboratories', 'Libral 12.5 mg/5 mg Tablet', 'How long does Libral 12.5 mg/5 mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libral 12.5 mg/5 mg Tablet, although some people will start to feel better sooner. When taking Libral 12.5 mg/5 mg Tablet, it is important to give it time to work.'),
(11042, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'Are there any important warnings associated with use of Libral Kid Tablet?', 'During the first few months of treatment, Libral Kid Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(11043, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'Can I stop taking Libral Kid Tablet when my symptoms are relieved?', 'No, you should continue to take Libral Kid Tablet, even if you feel well. If you stop Libral Kid Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(11044, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'How to manage weight gain associated with the use of Libral Kid Tablet?', 'There are reports which suggest that the use of Libral Kid Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(11045, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'What are the instructions for storage and disposal of Libral Kid Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11046, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'Can the use of Libral Kid Tablet cause sleepiness?', 'Yes, Libral Kid Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(11047, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'Can the use of Libral Kid Tablet affect my sexual life?', 'The use of Libral Kid Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(11048, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'Can I drink alcohol while taking Libral Kid Tablet?', 'No, do not drink alcohol while you are taking Libral Kid Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libral Kid Tablet.'),
(11049, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'Can the use of Libral Kid Tablet change the color of urine?', 'Yes, Libral Kid Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libral Kid Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libral Kid Tablet.'),
(11050, 'Libral Kid Tablet', 'Scorsis Laboratories', 'Libral Kid Tablet', 'How long does Libral Kid Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libral Kid Tablet, although some people will start to feel better sooner. When taking Libral Kid Tablet, it is important to give it time to work.'),
(11051, 'Librate 10mg Tablet', 'Talent India ', 'Librate 10mg Tablet', 'Does Librate 10mg Tablet work and what does Librate 10mg Tablet treat?', 'Librate 10mg Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(11052, 'Librate 10mg Tablet', 'Talent India ', 'Librate 10mg Tablet', 'Is Librate 10mg Tablet addictive?', 'Yes. Librate 10mg Tablet is not recommended for long term use as it may increase the risk of dependence'),
(11053, 'Librate 10mg Tablet', 'Talent India ', 'Librate 10mg Tablet', 'Is Librate 10mg Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Librate 10mg Tablet called benzodiazepines. Librate 10mg Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(11054, 'Librate 10mg Tablet', 'Talent India ', 'Librate 10mg Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(11055, 'Librate 10mg Tablet', 'Talent India ', 'Librate 10mg Tablet', 'Does Librate 10mg Tablet make you sleepy?', 'Yes, Librate 10mg Tablet may make you sleepy'),
(11056, 'Librate 10mg Tablet', 'Talent India ', 'Librate 10mg Tablet', 'Does Librate 10mg Tablet get you high?', 'Librate 10mg Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(11057, 'Librate 25mg Tablet', 'Talent India ', 'Librate 25mg Tablet', 'Does Librate 25mg Tablet work and what does Librate 25mg Tablet treat?', 'Librate 25mg Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(11058, 'Librate 25mg Tablet', 'Talent India ', 'Librate 25mg Tablet', 'Is Librate 25mg Tablet addictive?', 'Yes. Librate 25mg Tablet is not recommended for long term use as it may increase the risk of dependence'),
(11059, 'Librate 25mg Tablet', 'Talent India ', 'Librate 25mg Tablet', 'Is Librate 25mg Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Librate 25mg Tablet called benzodiazepines. Librate 25mg Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(11060, 'Librate 25mg Tablet', 'Talent India ', 'Librate 25mg Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(11061, 'Librate 25mg Tablet', 'Talent India ', 'Librate 25mg Tablet', 'Does Librate 25mg Tablet make you sleepy?', 'Yes, Librate 25mg Tablet may make you sleepy'),
(11062, 'Librate 25mg Tablet', 'Talent India ', 'Librate 25mg Tablet', 'Does Librate 25mg Tablet get you high?', 'Librate 25mg Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(11063, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. Can the use of Libratex Tablet cause physical dependence?', 'Yes, Libratex Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11064, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. Are there any specific contraindications associated with the use of Libratex Tablet?', 'The use of Libratex Tablet is not recommended to patients with known allergy to any of the components or excipients of Libratex Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11065, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. What precautions do I need to take while using Libratex Tablet?', 'Libratex Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libratex Tablet.'),
(11066, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. What are the symptoms of an overdose of Libratex Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11067, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. Can the use of Libratex Tablet cause sleepiness or drowsiness?', 'Yes, Libratex Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11068, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. Can the use of Libratex Tablet cause constipation?', 'Yes, the use of Libratex Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11069, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. Can I drink alcohol while taking Libratex Tablet?', 'No, avoid drinking alcohol while you are taking Libratex Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11070, 'Libratex Tablet', 'Talent India ', 'Libratex Tablet', 'Q. What are the instructions for storage and disposal of Libratex Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11071, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'Can the use of Librax 5 mg/2.5 mg Tablet cause physical dependence?', 'Yes, Librax 5 mg/2.5 mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11072, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'Are there any specific contraindications associated with the use of Librax 5 mg/2.5 mg Tablet?', 'The use of Librax 5 mg/2.5 mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Librax 5 mg/2.5 mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11073, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'What precautions do I need to take while using Librax 5 mg/2.5 mg Tablet?', 'Librax 5 mg/2.5 mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Librax 5 mg/2.5 mg Tablet.'),
(11074, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'What are the symptoms of an overdose of Librax 5 mg/2.5 mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11075, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'Can the use of Librax 5 mg/2.5 mg Tablet cause sleepiness or drowsiness?', 'Yes, Librax 5 mg/2.5 mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11076, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'Can the use of Librax 5 mg/2.5 mg Tablet cause constipation?', 'Yes, the use of Librax 5 mg/2.5 mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11077, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'Can I drink alcohol while taking Librax 5 mg/2.5 mg Tablet?', 'No, avoid drinking alcohol while you are taking Librax 5 mg/2.5 mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11078, 'Librax 5 mg/2.5 mg Tablet', 'Abbott', 'Librax 5 mg/2.5 mg Tablet', 'What are the instructions for storage and disposal of Librax 5 mg/2.5 mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11079, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'What is Libreb 20mg Injection used for?', 'Libreb 20mg Injection is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Libreb 20mg Injection also prevents acidity associated with use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). Libreb 20mg Injection is also helpful as a preanesthetic medication (medicine given just before anesthesia) to reduce the chances of aspiration related complications like lung injury.'),
(11080, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Libreb 20mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. It also helps to cut down on caffeinated drinks such as tea, coffee, and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(11081, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'Does Libreb 20mg Injection cause bone problems?', 'Yes, long-term use of Libreb 20mg Injection can cause thinning of bones, which is called osteoporosis. Libreb 20mg Injection decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(11082, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'What other lifestyle changes should I make to get maximum benefit of Libreb 20mg Injection?', 'You make see better results if you make certain dietary and lifestyle changes while taking Libreb 20mg Injection. Exercise regularly and eat healthily. You can consult your dietician to get a diet chart that suits you best. Eat at least 3 hours before sleeping to reduce the chances of aggravation of your symptoms at night. You should avoid spicy and fatty foods while taking this medicine. Refrain from caffeinated drinks such as tea, coffee, and cola. Alcohol intake and smoking should also be avoided as they may worsen your symptoms.'),
(11083, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'Can I take alcohol with Libreb 20mg Injection?', 'No, alcohol intake is not advised with Libreb 20mg Injection. Alcohol itself does not affect the working of Libreb 20mg Injection, but it can increase acid production. This may further cause worsening of your symptoms.'),
(11084, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'Can I take antacids along with Libreb 20mg Injection?', 'Yes, you can take antacids along with Libreb 20mg Injection. Take it 2 hours before or after you take Libreb 20mg Injection.'),
(11085, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'How long does it take for Libreb 20mg Injection to work?', 'Libreb 20mg Injection starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(11086, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'Can I stop taking Libreb 20mg Injection if I feel better?', 'No, do not stop taking Rekool before completing the full course of treatment. You will start to feel better before your treatment is complete. Libreb 20mg Injection is given into a vein, only if oral administration is not possible, for upto 7 days. As soon as the person is able to take it orally, intravenous administration is stopped and oral form is prescribed. Take Libreb 20mg Injection only as prescribed by your doctor to get maximum benefit.'),
(11087, 'Libreb 20mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libreb 20mg Injection', 'Is Libreb 20mg Injection safe?', 'Yes, Libreb 20mg Injection is relatively safe. Most of the people who take Libreb 20mg Injection do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(11088, 'Librin 10mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 10mg Tablet', 'Does Librin 10mg Tablet work and what does Librin 10mg Tablet treat?', 'Librin 10mg Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(11089, 'Librin 10mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 10mg Tablet', 'Is Librin 10mg Tablet addictive?', 'Yes. Librin 10mg Tablet is not recommended for long term use as it may increase the risk of dependence'),
(11090, 'Librin 10mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 10mg Tablet', 'Is Librin 10mg Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Librin 10mg Tablet called benzodiazepines. Librin 10mg Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(11091, 'Librin 10mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 10mg Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(11092, 'Librin 10mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 10mg Tablet', 'Does Librin 10mg Tablet make you sleepy?', 'Yes, Librin 10mg Tablet may make you sleepy'),
(11093, 'Librin 10mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 10mg Tablet', 'Does Librin 10mg Tablet get you high?', 'Librin 10mg Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(11094, 'Librin 25mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 25mg Tablet', 'Does Librin 25mg Tablet work and what does Librin 25mg Tablet treat?', 'Librin 25mg Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(11095, 'Librin 25mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 25mg Tablet', 'Is Librin 25mg Tablet addictive?', 'Yes. Librin 25mg Tablet is not recommended for long term use as it may increase the risk of dependence'),
(11096, 'Librin 25mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 25mg Tablet', 'Is Librin 25mg Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Librin 25mg Tablet called benzodiazepines. Librin 25mg Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(11097, 'Librin 25mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 25mg Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(11098, 'Librin 25mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 25mg Tablet', 'Does Librin 25mg Tablet make you sleepy?', 'Yes, Librin 25mg Tablet may make you sleepy'),
(11099, 'Librin 25mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin 25mg Tablet', 'Does Librin 25mg Tablet get you high?', 'Librin 25mg Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(11100, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'Can the use of Librin-C 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Librin-C 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11101, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Librin-C 5mg/2.5mg Tablet?', 'The use of Librin-C 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Librin-C 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11102, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'What precautions do I need to take while using Librin-C 5mg/2.5mg Tablet?', 'Librin-C 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Librin-C 5mg/2.5mg Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11103, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Librin-C 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11104, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'Can the use of Librin-C 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Librin-C 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11105, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'Can the use of Librin-C 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Librin-C 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11106, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Librin-C 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Librin-C 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11107, 'Librin-C 5mg/2.5mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Librin-C 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Librin-C 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11108, 'Librium 10 Tablet', 'Abbott', 'Librium 10 Tablet', 'Does Librium 10 Tablet work and what does Librium 10 Tablet treat?', 'Librium 10 Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(11109, 'Librium 10 Tablet', 'Abbott', 'Librium 10 Tablet', 'Is Librium 10 Tablet addictive?', 'Yes. Librium 10 Tablet is not recommended for long term use as it may increase the risk of dependence'),
(11110, 'Librium 10 Tablet', 'Abbott', 'Librium 10 Tablet', 'Is Librium 10 Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Librium 10 Tablet called benzodiazepines. Librium 10 Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(11111, 'Librium 10 Tablet', 'Abbott', 'Librium 10 Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(11112, 'Librium 10 Tablet', 'Abbott', 'Librium 10 Tablet', 'Does Librium 10 Tablet make you sleepy?', 'Yes, Librium 10 Tablet may make you sleepy'),
(11113, 'Librium 10 Tablet', 'Abbott', 'Librium 10 Tablet', 'Does Librium 10 Tablet get you high?', 'Librium 10 Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(11114, 'Librium 25 Tablet', 'Abbott', 'Librium 25 Tablet', 'Does Librium 25 Tablet work and what does Librium 25 Tablet treat?', 'Librium 25 Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(11115, 'Librium 25 Tablet', 'Abbott', 'Librium 25 Tablet', 'Is Librium 25 Tablet addictive?', 'Yes. Librium 25 Tablet is not recommended for long term use as it may increase the risk of dependence'),
(11116, 'Librium 25 Tablet', 'Abbott', 'Librium 25 Tablet', 'Is Librium 25 Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Librium 25 Tablet called benzodiazepines. Librium 25 Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(11117, 'Librium 25 Tablet', 'Abbott', 'Librium 25 Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(11118, 'Librium 25 Tablet', 'Abbott', 'Librium 25 Tablet', 'Does Librium 25 Tablet make you sleepy?', 'Yes, Librium 25 Tablet may make you sleepy'),
(11119, 'Librium 25 Tablet', 'Abbott', 'Librium 25 Tablet', 'Does Librium 25 Tablet get you high?', 'Librium 25 Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(11120, 'Librium 5mg Tablet', 'Abbott', 'Librium 5mg Tablet', 'Does Librium 5mg Tablet work and what does Librium 5mg Tablet treat?', 'Librium 5mg Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(11121, 'Librium 5mg Tablet', 'Abbott', 'Librium 5mg Tablet', 'Is Librium 5mg Tablet addictive?', 'Yes. Librium 5mg Tablet is not recommended for long term use as it may increase the risk of dependence'),
(11122, 'Librium 5mg Tablet', 'Abbott', 'Librium 5mg Tablet', 'Is Librium 5mg Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Librium 5mg Tablet called benzodiazepines. Librium 5mg Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(11123, 'Librium 5mg Tablet', 'Abbott', 'Librium 5mg Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(11124, 'Librium 5mg Tablet', 'Abbott', 'Librium 5mg Tablet', 'Does Librium 5mg Tablet make you sleepy?', 'Yes, Librium 5mg Tablet may make you sleepy'),
(11125, 'Librium 5mg Tablet', 'Abbott', 'Librium 5mg Tablet', 'Does Librium 5mg Tablet get you high?', 'Librium 5mg Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(11126, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'Are there any important warnings associated with use of Libro 10mg/12.5mg Tablet?', 'During the first few months of treatment, Libro 10mg/12.5mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(11127, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'Can I stop taking Libro 10mg/12.5mg Tablet when my symptoms are relieved?', 'No, you should continue to take Libro 10mg/12.5mg Tablet, even if you feel well. If you stop Libro 10mg/12.5mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(11128, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'How to manage weight gain associated with the use of Libro 10mg/12.5mg Tablet?', 'There are reports which suggest that the use of Libro 10mg/12.5mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(11129, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'What are the instructions for storage and disposal of Libro 10mg/12.5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11130, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'Can the use of Libro 10mg/12.5mg Tablet cause sleepiness?', 'Yes, Libro 10mg/12.5mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(11131, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'Can the use of Libro 10mg/12.5mg Tablet affect my sexual life?', 'The use of Libro 10mg/12.5mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(11132, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'Can I drink alcohol while taking Libro 10mg/12.5mg Tablet?', 'No, do not drink alcohol while you are taking Libro 10mg/12.5mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Libro 10mg/12.5mg Tablet.'),
(11133, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'Can the use of Libro 10mg/12.5mg Tablet change the color of urine?', 'Yes, Libro 10mg/12.5mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Libro 10mg/12.5mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Libro 10mg/12.5mg Tablet.'),
(11134, 'Libro 10mg/12.5mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Libro 10mg/12.5mg Tablet', 'How long does Libro 10mg/12.5mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Libro 10mg/12.5mg Tablet, although some people will start to feel better sooner. When taking Libro 10mg/12.5mg Tablet, it is important to give it time to work.'),
(11135, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'Are there any important warnings associated with use of Librodep 12.5mg/5mg Tablet?', 'During the first few months of treatment, Librodep 12.5mg/5mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(11136, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'Can I stop taking Librodep 12.5mg/5mg Tablet when my symptoms are relieved?', 'No, you should continue to take Librodep 12.5mg/5mg Tablet, even if you feel well. If you stop Librodep 12.5mg/5mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(11137, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'How to manage weight gain associated with the use of Librodep 12.5mg/5mg Tablet?', 'There are reports which suggest that the use of Librodep 12.5mg/5mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(11138, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'What are the instructions for storage and disposal of Librodep 12.5mg/5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11139, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'Can the use of Librodep 12.5mg/5mg Tablet cause sleepiness?', 'Yes, Librodep 12.5mg/5mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(11140, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'Can the use of Librodep 12.5mg/5mg Tablet affect my sexual life?', 'The use of Librodep 12.5mg/5mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(11141, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'Can I drink alcohol while taking Librodep 12.5mg/5mg Tablet?', 'No, do not drink alcohol while you are taking Librodep 12.5mg/5mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Librodep 12.5mg/5mg Tablet.'),
(11142, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'Can the use of Librodep 12.5mg/5mg Tablet change the color of urine?', 'Yes, Librodep 12.5mg/5mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Librodep 12.5mg/5mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Librodep 12.5mg/5mg Tablet.'),
(11143, 'Librodep 12.5mg/5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librodep 12.5mg/5mg Tablet', 'How long does Librodep 12.5mg/5mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Librodep 12.5mg/5mg Tablet, although some people will start to feel better sooner. When taking Librodep 12.5mg/5mg Tablet, it is important to give it time to work.'),
(11144, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'Can the use of Libromeg 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Libromeg 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11145, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Libromeg 5mg/2.5mg Tablet?', 'The use of Libromeg 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Libromeg 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11146, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'What precautions do I need to take while using Libromeg 5mg/2.5mg Tablet?', 'Libromeg 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libromeg 5mg/2.5mg Tablet.'),
(11147, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Libromeg 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11148, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'Can the use of Libromeg 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Libromeg 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11149, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'Can the use of Libromeg 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Libromeg 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11150, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Libromeg 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Libromeg 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11151, 'Libromeg 5mg/2.5mg Tablet', 'Ridhima Biocare', 'Libromeg 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Libromeg 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11152, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'Can the use of Libroscan Tablet cause physical dependence?', 'Yes, Libroscan Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11153, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'Are there any specific contraindications associated with the use of Libroscan Tablet?', 'The use of Libroscan Tablet is not recommended to patients with known allergy to any of the components or excipients of Libroscan Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11154, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'What precautions do I need to take while using Libroscan Tablet?', 'Libroscan Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libroscan Tablet.'),
(11155, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'What are the symptoms of an overdose of Libroscan Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11156, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'Can the use of Libroscan Tablet cause sleepiness or drowsiness?', 'Yes, Libroscan Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11157, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'Can the use of Libroscan Tablet cause constipation?', 'Yes, the use of Libroscan Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11158, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'Can I drink alcohol while taking Libroscan Tablet?', 'No, avoid drinking alcohol while you are taking Libroscan Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11159, 'Libroscan Tablet', 'Medishri Healthcare', 'Libroscan Tablet', 'What are the instructions for storage and disposal of Libroscan Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11160, 'Librose D 2.5mg/5mg/10mg Tablet', 'Mandevis Pharma', 'Librose D 2.5mg/5mg/10mg Tablet', 'Is it safe to use Librose D 2.5mg/5mg/10mg Tablet?', 'Librose D 2.5mg/5mg/10mg Tablet is safe for most of the patients when taken as per the doctor\'s advice. However, in some patients it may cause common side effects like nausea, constipation, nervousness, dryness in the mouth, difficulty in urination, confusion, sleepiness, weakness, dizziness, blurred vision, impaired coordination and other uncommon or rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(11161, 'Librose D 2.5mg/5mg/10mg Tablet', 'Mandevis Pharma', 'Librose D 2.5mg/5mg/10mg Tablet', 'Can the use of Librose D 2.5mg/5mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Librose D 2.5mg/5mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(11162, 'Librose D 2.5mg/5mg/10mg Tablet', 'Mandevis Pharma', 'Librose D 2.5mg/5mg/10mg Tablet', 'Can the use of Librose D 2.5mg/5mg/10mg Tablet cause dryness in mouth?', 'Yes, the use of Librose D 2.5mg/5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11163, 'Librose D 2.5mg/5mg/10mg Tablet', 'Mandevis Pharma', 'Librose D 2.5mg/5mg/10mg Tablet', 'Can the use of Librose D 2.5mg/5mg/10mg Tablet cause dizziness?', 'Yes, the use of Librose D 2.5mg/5mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(11164, 'Librospas 10mg/250mg Tablet', 'Athens Wellness', 'Librospas 10mg/250mg Tablet', 'Can Librospas 10mg/250mg Tablet be taken with food?', 'It is advisable to take Librospas 10mg/250mg Tablet with food or immediately after food since this medicine may cause stomach upset.'),
(11165, 'Librospas 10mg/250mg Tablet', 'Athens Wellness', 'Librospas 10mg/250mg Tablet', 'Can Librospas 10mg/250mg Tablet stop menstruation?', 'No, Mefspas does not have any effect on menstrual bleeding, neither does it affect the amount nor the duration of bleeding. It does not affect the menstrual cycle and helps relieve the pain caused due to menstrual cramps.'),
(11166, 'Librospas 10mg/250mg Tablet', 'Athens Wellness', 'Librospas 10mg/250mg Tablet', 'How long should I take Librospas 10mg/250mg Tablet?', 'Librospas 10mg/250mg Tablet is not prescribed to be taken on a regular basis. Therefore, it is advised to take Librospas 10mg/250mg Tablet for the shortest possible time advised by the doctor or only when you experience menstrual pain.'),
(11167, 'Librospas 10mg/250mg Tablet', 'Athens Wellness', 'Librospas 10mg/250mg Tablet', 'Is there any harm if I drive after taking the medicine?', 'Yes, you should try to avoid driving after taking Librospas 10mg/250mg Tablet as this medicine may cause dizziness or sleepiness. These side effects get worse with the consumption of alcohol. Hence, better to avoid driving or any attention-seeking activity until you know how the medicine affects you.'),
(11168, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'Can the use of Librospas 5mg/12.5mg Tablet cause physical dependence?', 'Yes, Librospas 5mg/12.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11169, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'Are there any specific contraindications associated with the use of Librospas 5mg/12.5mg Tablet?', 'The use of Librospas 5mg/12.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Librospas 5mg/12.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11170, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'What precautions do I need to take while using Librospas 5mg/12.5mg Tablet?', 'Librospas 5mg/12.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Librospas 5mg/12.5mg Tablet.'),
(11171, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'What are the symptoms of an overdose of Librospas 5mg/12.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11172, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'Can the use of Librospas 5mg/12.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Librospas 5mg/12.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11173, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'Can the use of Librospas 5mg/12.5mg Tablet cause constipation?', 'Yes, the use of Librospas 5mg/12.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11174, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'Can I drink alcohol while taking Librospas 5mg/12.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Librospas 5mg/12.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11175, 'Librospas 5mg/12.5mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Librospas 5mg/12.5mg Tablet', 'What are the instructions for storage and disposal of Librospas 5mg/12.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11176, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'What is Librt 500mcg/75mg Capsule?', 'Librt 500mcg/75mg Capsule is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(11177, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'Can I stop taking Librt 500mcg/75mg Capsule when my pain is relieved?', 'No, you should not stop taking Librt 500mcg/75mg Capsule even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Librt 500mcg/75mg Capsule, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Librt 500mcg/75mg Capsule before you stop the medication completely.'),
(11178, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'How to manage weight gain associated with the use of Librt 500mcg/75mg Capsule?', 'Librt 500mcg/75mg Capsule can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(11179, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'Can the use of Librt 500mcg/75mg Capsule cause sleepiness or drowsiness?', 'Yes, Librt 500mcg/75mg Capsule may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11180, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'Are there any serious side effects associated with the use of Librt 500mcg/75mg Capsule?', 'Serious side effects caused because of the use of Librt 500mcg/75mg Capsule are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Librt 500mcg/75mg Capsule and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(11181, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'How long will the Librt 500mcg/75mg Capsule take to act?', 'An initial benefit with Librt 500mcg/75mg Capsule may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(11182, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'What if I forget to take Librt 500mcg/75mg Capsule?', 'If you forget to take the scheduled dose of Librt 500mcg/75mg Capsule and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(11183, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'Will a higher than the recommended dose of Librt 500mcg/75mg Capsule be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(11184, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'Can I drink alcohol while taking Librt 500mcg/75mg Capsule?', 'No, do not drink alcohol while taking Librt 500mcg/75mg Capsule. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Librt 500mcg/75mg Capsule.'),
(11185, 'Librt 500mcg/75mg Capsule', 'Himeros Pharmaceuticals Pvt Ltd', 'Librt 500mcg/75mg Capsule', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Librt 500mcg/75mg Capsule. However, you must consult your doctor if the advised dosage of Librt 500mcg/75mg Capsule does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(11186, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'Can the use of Librum 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Librum 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11187, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Librum 5mg/2.5mg Tablet?', 'The use of Librum 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Librum 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11188, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'What precautions do I need to take while using Librum 5mg/2.5mg Tablet?', 'Librum 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Librum 5mg/2.5mg Tablet.'),
(11189, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Librum 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11190, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'Can the use of Librum 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Librum 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11191, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'Can the use of Librum 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Librum 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11192, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Librum 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Librum 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11193, 'Librum 5mg/2.5mg Tablet', 'Stetho Pharma', 'Librum 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Librum 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11194, 'Librum D 2.5mg/5mg/10mg Tablet', 'Stetho Pharma', 'Librum D 2.5mg/5mg/10mg Tablet', 'Is it safe to use Librum D 2.5mg/5mg/10mg Tablet?', 'Librum D 2.5mg/5mg/10mg Tablet is safe for most of the patients when taken as per the doctor\'s advice. However, in some patients it may cause common side effects like nausea, constipation, nervousness, dryness in the mouth, difficulty in urination, confusion, sleepiness, weakness, dizziness, blurred vision, impaired coordination and other uncommon or rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(11195, 'Librum D 2.5mg/5mg/10mg Tablet', 'Stetho Pharma', 'Librum D 2.5mg/5mg/10mg Tablet', 'Can the use of Librum D 2.5mg/5mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Librum D 2.5mg/5mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(11196, 'Librum D 2.5mg/5mg/10mg Tablet', 'Stetho Pharma', 'Librum D 2.5mg/5mg/10mg Tablet', 'Can the use of Librum D 2.5mg/5mg/10mg Tablet cause dryness in mouth?', 'Yes, the use of Librum D 2.5mg/5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11197, 'Librum D 2.5mg/5mg/10mg Tablet', 'Stetho Pharma', 'Librum D 2.5mg/5mg/10mg Tablet', 'Can the use of Librum D 2.5mg/5mg/10mg Tablet cause dizziness?', 'Yes, the use of Librum D 2.5mg/5mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(11198, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'Can the use of Libsana 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Libsana 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11199, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Libsana 5mg/2.5mg Tablet?', 'The use of Libsana 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Libsana 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11200, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'What precautions do I need to take while using Libsana 5mg/2.5mg Tablet?', 'Libsana 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libsana 5mg/2.5mg Tablet.'),
(11201, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Libsana 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11202, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'Can the use of Libsana 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Libsana 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11203, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'Can the use of Libsana 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Libsana 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11204, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Libsana 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Libsana 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11205, 'Libsana 5mg/2.5mg Tablet', 'Ryon Pharma', 'Libsana 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Libsana 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11206, 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Ryon Pharma', 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Is it safe to use Libsana Forte 2.5mg/5mg/10mg Tablet?', 'Libsana Forte 2.5mg/5mg/10mg Tablet is safe for most of the patients when taken as per the doctor\'s advice. However, in some patients it may cause common side effects like nausea, constipation, nervousness, dryness in the mouth, difficulty in urination, confusion, sleepiness, weakness, dizziness, blurred vision, impaired coordination and other uncommon or rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(11207, 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Ryon Pharma', 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Can the use of Libsana Forte 2.5mg/5mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Libsana Forte 2.5mg/5mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(11208, 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Ryon Pharma', 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Can the use of Libsana Forte 2.5mg/5mg/10mg Tablet cause dryness in mouth?', 'Yes, the use of Libsana Forte 2.5mg/5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11209, 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Ryon Pharma', 'Libsana Forte 2.5mg/5mg/10mg Tablet', 'Can the use of Libsana Forte 2.5mg/5mg/10mg Tablet cause dizziness?', 'Yes, the use of Libsana Forte 2.5mg/5mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(11210, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'Is Libset Tablet a chemotherapy medicine?', 'No, this is a targeted drug that belongs to a class of anti-cancer medicines. They are more specific than chemotherapy in their mechanisms of action. Libset Tablet belongs to the tyrosine kinase inhibitors group of medicines. It works by blocking the action of the abnormal protein that signals cancer cells to multiply. This helps stop or slow the spread of cancer cells.'),
(11211, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'Can Libset Tablet be given in combination with other anti-cancer drug?', 'Yes, Libset Tablet can be used with other anti-cancer drugs. Generally, it is used in combination with capecitabine to treat advanced breast cancer in patients who have already been treated with chemotherapy. Libset Tablet is also used with letrozole to treat breast cancer in post-menopausal women.'),
(11212, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'How should I take Libset Tablet?', 'You should take Libset Tablet exactly as advised by your doctor. Swallow Libset Tablet tablets whole with a glass of water, at the same time each day. You must take Libset Tablet 1 hour before or 1 hour after meals and at the same time concerning food each day (e.g., you could always take your tablet one hour before breakfast).'),
(11213, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'Does Libset Tablet have any effect on liver?', 'Libset Tablet may cause liver damage which can be severe or life-threatening. Liver damage can occur as soon as several days or as late as several months after the start of treatment with Libset Tablet. Inform your doctor if you have or had liver disease. If you experience any of the symptoms such as itching, change in color of the skin or eyes (yellowing), discoloration of urine, pain in the upper right part of the stomach, unusual bleeding or bruising, or pale or dark stools, call your doctor immediately.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11214, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'How should I manage diarrhea while taking Libset Tablet?', 'If you suffer from diarrhea while taking Libset Tablet, you should drink plenty of fluids (8 to 10 glasses a day) such as water, sports drinks, or other clear liquids. You should eat low-fat, high protein foods instead of fatty or spicy foods. Eating cooked vegetables instead of raw vegetables and removing the skin from fruits before eating can also be helpful. Try to avoid milk and milk products (including ice cream) and herbal supplements (some may cause diarrhoea). Inform the doctor, if the condition persists, who may interrupt the treatment depending on the severity of diarrhea.'),
(11215, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'How can I take care of my skin while on Libset Tablet?', 'Your doctor will check your skin before and during the treatment. If you have sensitive skin, use a soap-free cleanser and beauty products that are fragrance-free and hypoallergenic. It is also advised that you use sunscreen with an SPF (Sun Protection Factor) of 30 or higher. Inform your doctor immediately if you get a rash.'),
(11216, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'What tests will the doctor advise before starting Libset Tablet?', 'You may need extra tests to check that your heart and liver are working properly. Libset Tablet may change the way your heart beats and pumps blood through your body. Your doctor will monitor you carefully to see whether Libset Tablet has affected your heart. Along with that, your doctor will get your liver function investigated. Based on the results of these tests, the doctor will decide whether dose adjustment or discontinuation of treatment is required.'),
(11217, 'Libset Tablet', 'Intas Pharmaceuticals Ltd', 'Libset Tablet', 'How long after Libset Tablet can I plan pregnancy?', 'Use an effective method of contraception to avoid pregnancy while you are taking Libset Tablet and continue for at least 1 week after the last dose. Inform your doctor if you become pregnant, who will decide whether to stop or continue treatment.'),
(11218, 'Libsu 40mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libsu 40mg Tablet SR', 'What is Libsu 40mg Tablet SR and what is it used for?', 'Libsu 40mg Tablet SR belongs to the group of medicines called vasodilators and uterine relaxants. It is used in the treatment of premature labor, a condition when the uterus starts contracting too early than usual. It may also be used in the treatment of peripheral vascular diseases.'),
(11219, 'Libsu 40mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libsu 40mg Tablet SR', 'How and in what dose should I take Libsu 40mg Tablet SR?', 'Take this medicine, as per the advice of your doctor. The dose and duration depend on your exact medical condition. However take it at the same time of each day, to help you remember it.'),
(11220, 'Libsu 40mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libsu 40mg Tablet SR', 'What precautions do I need to take while taking Libsu 40mg Tablet SR?', 'You should consult your doctor, immediately if your contractions begin again or your water breaks.'),
(11221, 'Libsu 40mg Tablet SR', 'DR. LBR Medi Care & Research Private Limited', 'Libsu 40mg Tablet SR', ' What are the possible side effects of using Libsu 40mg Tablet SR?', 'The common side effects of Libsu 40mg Tablet SR are trembling, nervousness, weakness, dizziness, flushing, tachycardia, chest pain, nausea, and vomiting. If any of these side effects bother you, consult with your doctor.'),
(11222, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'Should Libta 40mg Tablet be taken in the morning or at night?', 'Libta 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(11223, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'How long does it take for Libta 40mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(11224, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'My blood pressure is now controlled. Can I stop taking Libta 40mg Tablet now?', 'No, do not stop taking Libta 40mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Libta 40mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(11225, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'If I have some kidney problem, can I take Libta 40mg Tablet? Can it further deteriorate my kidney function?', 'You can take Libta 40mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Libta 40mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(11226, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'I am overweight and the doctor has prescribed me Libta 40mg Tablet for blood pressure control. I am bothered that Libta 40mg Tablet can increase my weight. Is it true?', 'No, do not worry since Libta 40mg Tablet is not known to cause weight gain. In fact in animal studies Libta 40mg Tablet has been found to decrease fat tissue.'),
(11227, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'Does Libta 40mg Tablet affect blood glucose levels in diabetics?', 'Libta 40mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(11228, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'Can the use of Libta 40mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Libta 40mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(11229, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'Does Libta 40mg Tablet work by causing excessive urination?', 'No, Libta 40mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Libta 40mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(11230, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Libta 40mg Tablet together?', 'If you are taking ibuprofen and Libta 40mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Libta 40mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Libta 40mg Tablet for heart failure. Ibuprofen may interfere with the working of Libta 40mg Tablet and decrease its efficiency at lowering blood pressure.'),
(11231, 'Libta 40mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta 40mg Tablet', 'Should Libta 40mg Tablet be taken in the morning or at night?', 'Libta 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(11232, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'What should I avoid while taking Libta AM 40mg/5mg Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(11233, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'What happens if I take too much of Libta AM 40mg/5mg Tablet?', 'If you accidentally take too much of Libta AM 40mg/5mg Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any of such symptoms contact your doctor immediately and seek medical help.'),
(11234, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'Can I come off Libta AM 40mg/5mg Tablet when my blood pressure is under control or normal?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Libta AM 40mg/5mg Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it. You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or stroke.'),
(11235, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'What happens if I forget to take Libta AM 40mg/5mg Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure then you can consult your doctor for other ways to help you remember.'),
(11236, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'What will happen if I stop taking Libta AM 40mg/5mg Tablet?', 'You should not stop taking Libta AM 40mg/5mg Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea, etc., talk to your doctor.'),
(11237, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'Is it safe to take Libta AM 40mg/5mg Tablet for a long time?', 'Libta AM 40mg/5mg Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(11238, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'How long will I be taking Libta AM 40mg/5mg Tablet for?', 'You may have to take Libta AM 40mg/5mg Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(11239, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'What if Libta AM 40mg/5mg Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(11240, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'Can Libta AM 40mg/5mg Tablet affect my fertility or sex life?', 'Libta AM 40mg/5mg Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep track of your blood pressure.'),
(11241, 'Libta AM 40mg/5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta AM 40mg/5mg Tablet', 'What other lifestyle changes should I make while taking Libta AM 40mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Libta AM 40mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Libta AM 40mg/5mg Tablet and to keep yourself healthy.'),
(11242, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'What should I avoid while taking Libta H 40mg/12.5mg Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(11243, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'What happens if I take too much of Libta H 40mg/12.5mg Tablet?', 'If you accidentally take too much of Libta H 40mg/12.5mg Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any such symptoms, contact your doctor immediately and seek medical help.'),
(11244, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'Can I come off Libta H 40mg/12.5mg Tablet when my blood pressure is under control or normal?', 'Remember, Libta H 40mg/12.5mg Tablet does not cure your hypertension (high blood pressure) but helps normalize it. You should continue taking this medicine even if your blood pressure is controlled. If you stop taking Libta H 40mg/12.5mg Tablet, your blood pressure could rise back up again. Generally, blood pressure-lowering medicines are to be taken for the rest of your life. It is important to know that by keeping your blood pressure controlled you are reducing your risk of having a heart attack or a stroke.'),
(11245, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'What happens if I forget to take Libta H 40mg/12.5mg Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure, consult your doctor for other ways to help you remember.'),
(11246, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'What will happen if I stop taking Libta H 40mg/12.5mg Tablet?', 'You should not stop taking Libta H 40mg/12.5mg Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea etc., talk to your doctor.'),
(11247, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'Is it safe to take Libta H 40mg/12.5mg Tablet for a long time?', 'Libta H 40mg/12.5mg Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(11248, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'How long will I be taking Libta H 40mg/12.5mg Tablet for?', 'You may have to take Libta H 40mg/12.5mg Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(11249, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'What if Libta H 40mg/12.5mg Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(11250, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'Can Libta H 40mg/12.5mg Tablet affect my fertility or sex life?', 'Libta H 40mg/12.5mg Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep a track of your blood pressure.'),
(11251, 'Libta H 40mg/12.5mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libta H 40mg/12.5mg Tablet', 'What other lifestyle changes should I make while taking Libta H 40mg/12.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Libta H 40mg/12.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Libta H 40mg/12.5mg Tablet and to keep yourself healthy.'),
(11252, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'What is Libtaz 4000mg/500mg Injection?', 'Libtaz 4000mg/500mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(11253, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'Is it safe to use Libtaz 4000mg/500mg Injection?', 'Libtaz 4000mg/500mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(11254, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'How is Libtaz 4000mg/500mg Injection administered?', 'Libtaz 4000mg/500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Libtaz 4000mg/500mg Injection.'),
(11255, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'Are there any specific cautions associated with the use of Libtaz 4000mg/500mg Injection?', 'The use of Libtaz 4000mg/500mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Libtaz 4000mg/500mg Injection.'),
(11256, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'Can the use of Libtaz 4000mg/500mg Injection cause contraceptive failure?', 'Yes, the use of Libtaz 4000mg/500mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Libtaz 4000mg/500mg Injection.'),
(11257, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'Can I take a higher than the recommended dose of Libtaz 4000mg/500mg Injection?', 'No, Libtaz 4000mg/500mg Injection should be used in the recommended dose only. Overdose of Libtaz 4000mg/500mg Injection can increase the risks of side effects. Libtaz 4000mg/500mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(11258, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'What are the instructions for the storage and disposal of Libtaz 4000mg/500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11259, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'Can Libtaz 4000mg/500mg Injection cause an allergic reaction?', 'Yes, Libtaz 4000mg/500mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(11260, 'Libtaz 4000mg/500mg Injection', 'DR. LBR Medi Care & Research Private Limited', 'Libtaz 4000mg/500mg Injection', 'Can the use of Libtaz 4000mg/500mg Injection cause diarrhea?', 'Yes, the use of Libtaz 4000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(11261, 'Libtra 500mg/250mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libtra 500mg/250mg Tablet', 'What is Libtra 500mg/250mg Tablet?', 'Libtra 500mg/250mg Tablet is a combination of two medicines: Tranexamic Acid and Mefenamic Acid. This medication is used to treat pain and is used to treat heavy bleeding during menstrual cycle (monthly periods) in women.'),
(11262, 'Libtra 500mg/250mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libtra 500mg/250mg Tablet', 'Are there any specific contraindications associated with the use of Libtra 500mg/250mg Tablet?', 'Yes, it is considered to be harmful for patients with severe kidney failure, active intravascular clotting (obstruction in the blood flow due to blood clots), and color vision disorders.'),
(11263, 'Libtra 500mg/250mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Libtra 500mg/250mg Tablet', 'What is the recommended storage condition for Libtra 500mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11264, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. What is Libure 135mg Tablet/Colospa/Colospa retard/ Mebaspa/Mebiz-SR/Morease used for?', 'Colospa/Colospa retard/ Mebaspa/Mebiz-SR/Morease are all trade name for the active medicine Libure 135mg Tablet. It is mainly used to treat and relieve symptoms of inflammatory bowel syndrome such as cramps in the abdomen, pain, gas, bloating and changes in bowel habits'),
(11265, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Can Libure 135mg Tablet be used for period pain?', 'Libure 135mg Tablet mainly acts on the smooth muscles of the intestine. Hence, it is used to relieve cramps or spasms of the stomach and intestines (gut). It is particularly useful in treating irritable bowel syndrome (IBS) and similar conditions. It is not known whether it can be used for period pain'),
(11266, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Can I take Libure 135mg Tablet with buscopan?', 'Buscopan contains butylscopolamine which is also an antispasmodic like Libure 135mg Tablet. Taking Libure 135mg Tablet and buscopan together will provide added effect, but can cause additive side-effects. Consult your doctor before taking Libure 135mg Tablet and buscopan together'),
(11267, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Can I take mebeverine with Omeprazole/Lansoprazole?', 'There are no known serious drug interactions between mebeverine and omeprazole/lansoprazole. Consult your doctor about all medications currently taken before starting and while on mebeverine'),
(11268, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Can I take Libure 135mg Tablet with Imodium/Loperamide?', 'There are no known serious drug interactions between Libure 135mg Tablet and Imodium/ Loperamide. Consult your doctor about all medications currently taken before starting and while on mebeverine'),
(11269, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Can I take Libure 135mg Tablet with paracetamol/ Co codamol?', 'There are no known serious drug interactions between Libure 135mg Tablet and paracetamol and co codamol preparation which contains codeine with paracetamol. Consult your doctor about all medications currently taken before starting and while on mebeverine'),
(11270, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Can I take Libure 135mg Tablet with antibiotics?', 'There are no known serious drug interactions between Libure 135mg Tablet and antibiotics. Consult your doctor about all medications currently taken before starting and while on Libure 135mg Tablet'),
(11271, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Is Libure 135mg Tablet a laxative?', 'No, Libure 135mg Tablet is not a laxative; it belongs to a group of medicines called antispasmodics. It acts as a direct relaxant of the smooth muscles of the gut and relieves painfull contractions'),
(11272, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Does Libure 135mg Tablet help constipation or stop diarrhea?', 'Libure 135mg Tablet may cause constipation; however, it has no known effects on stopping diarrhea'),
(11273, 'Libure 135mg Tablet', 'Aamorb Pharmaceuticals Pvt Ltd', 'Libure 135mg Tablet', 'Q. Does Libure 135mg Tablet reduce bloating?', 'Yes, Libure 135mg Tablet reduces all symptoms of inflammatory bowel syndrome such as abdominal cramps, pain, gas, and bloating'),
(11274, 'Libure-M 2.5/500 Tablet', 'WinNexa Health Sciences Pvt Ltd', 'Libure-M 2.5/500 Tablet', 'Can the use of Libure-M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Libure-M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Libure-M 2.5/500 Tablet and immediately consult your doctor.'),
(11275, 'Libure-M 2.5/500 Tablet', 'WinNexa Health Sciences Pvt Ltd', 'Libure-M 2.5/500 Tablet', 'What are the possible side effects of Libure-M 2.5/500 Tablet?', 'The use of Libure-M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(11276, 'Libure-M 2.5/500 Tablet', 'WinNexa Health Sciences Pvt Ltd', 'Libure-M 2.5/500 Tablet', 'Are there any specific conditions in which Libure-M 2.5/500 Tablet should not be taken?', 'The use of Libure-M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Libure-M 2.5/500 Tablet.'),
(11277, 'Libure-M 2.5/500 Tablet', 'WinNexa Health Sciences Pvt Ltd', 'Libure-M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Libure-M 2.5/500 Tablet?', 'No, it is not safe to take Libure-M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(11278, 'Libure-M 2.5/500 Tablet', 'WinNexa Health Sciences Pvt Ltd', 'Libure-M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Libure-M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11279, 'Libure-M 2.5/500 Tablet', 'WinNexa Health Sciences Pvt Ltd', 'Libure-M 2.5/500 Tablet', 'Can the use of Libure-M 2.5/500 Tablet cause hypoglycemia?', 'The use of Libure-M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(11280, 'Libure-M 2.5/500 Tablet', 'WinNexa Health Sciences Pvt Ltd', 'Libure-M 2.5/500 Tablet', 'Can the use of Libure-M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Libure-M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(11281, 'Libya-Derm Cream', 'Medifaith Biotech', 'Libya-Derm Cream', 'Is Libya-Derm Cream safe in pregnancy?', 'Libya-Derm Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Libya-Derm Cream.'),
(11282, 'Libya-Derm Cream', 'Medifaith Biotech', 'Libya-Derm Cream', 'Is Libya-Derm Cream fungicidal or Fungistatic?', 'Libya-Derm Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11283, 'Libya-Derm Cream', 'Medifaith Biotech', 'Libya-Derm Cream', 'How to use Libya-Derm Cream?', 'Use Libya-Derm Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11284, 'Libya-Derm Cream', 'Medifaith Biotech', 'Libya-Derm Cream', 'How long does it take for Libya-Derm Cream to work?', 'For different ailments, Libya-Derm Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11285, 'Libya-Derm Cream', 'Medifaith Biotech', 'Libya-Derm Cream', 'How should I store Libya-Derm Cream?', 'Keep Libya-Derm Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11286, 'Libya-Derm Cream', 'Medifaith Biotech', 'Libya-Derm Cream', 'Is Libya-Derm Cream safe to use in children?', 'Yes, Libya-Derm Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11287, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'Can the use of Libzide 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Libzide 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(11288, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Libzide 5mg/2.5mg Tablet?', 'The use of Libzide 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Libzide 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(11289, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'What precautions do I need to take while using Libzide 5mg/2.5mg Tablet?', 'Libzide 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Libzide 5mg/2.5mg Tablet.'),
(11290, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Libzide 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(11291, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'Can the use of Libzide 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Libzide 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(11292, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'Can the use of Libzide 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Libzide 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(11293, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Libzide 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Libzide 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(11294, 'Libzide 5mg/2.5mg Tablet', 'Ikon Remedies Pvt Ltd', 'Libzide 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Libzide 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11295, 'Lic 300mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Lic 300mg Tablet', 'When should I take Lic 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Lic 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(11296, 'Lic 300mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Lic 300mg Tablet', 'Is Lic 300mg Tablet safe?', 'Lic 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(11297, 'Lic 300mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Lic 300mg Tablet', 'How does Lic 300mg Tablet help the liver?', 'Lic 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(11298, 'Lic 300mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Lic 300mg Tablet', 'Does Lic 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Lic 300mg Tablet, but it is not common. The use of Lic 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(11299, 'Lic 300mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Lic 300mg Tablet', 'What should I avoid while taking Lic 300mg Tablet?', 'While taking Lic 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Lic 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Lic 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Lic 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Lic 300mg Tablet.'),
(11300, 'LIC 5mg Tablet', 'Incus Pharmaceuticals Pvt Ltd', 'LIC 5mg Tablet', 'Is LIC 5mg Tablet a steroid? What is it used for?', 'No, LIC 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(11301, 'LIC 5mg Tablet', 'Incus Pharmaceuticals Pvt Ltd', 'LIC 5mg Tablet', 'Does LIC 5mg Tablet make you tired and drowsy?', 'Yes, LIC 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(11302, 'LIC 5mg Tablet', 'Incus Pharmaceuticals Pvt Ltd', 'LIC 5mg Tablet', 'How long does it take for LIC 5mg Tablet to work?', 'LIC 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(11303, 'LIC 5mg Tablet', 'Incus Pharmaceuticals Pvt Ltd', 'LIC 5mg Tablet', 'Can I take LIC 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking LIC 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(11304, 'LIC 5mg Tablet', 'Incus Pharmaceuticals Pvt Ltd', 'LIC 5mg Tablet', 'Is it safe to take LIC 5mg Tablet for a long time?', 'LIC 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take LIC 5mg Tablet for only as long as you need it.'),
(11305, 'LIC 5mg Tablet', 'Incus Pharmaceuticals Pvt Ltd', 'LIC 5mg Tablet', 'For how long should I continue LIC 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take LIC 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using LIC 5mg Tablet'),
(11306, 'Lic M 5mg/10mg Tablet', 'Blue Chem Lifesciences', 'Lic M 5mg/10mg Tablet', 'What is Lic M 5mg/10mg Tablet?', 'Lic M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(11307, 'Lic M 5mg/10mg Tablet', 'Blue Chem Lifesciences', 'Lic M 5mg/10mg Tablet', 'Can the use of Lic M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lic M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(11308, 'Lic M 5mg/10mg Tablet', 'Blue Chem Lifesciences', 'Lic M 5mg/10mg Tablet', 'Can Lic M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lic M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(11309, 'Lic M 5mg/10mg Tablet', 'Blue Chem Lifesciences', 'Lic M 5mg/10mg Tablet', 'Can the use of Lic M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lic M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11310, 'Lic M 5mg/10mg Tablet', 'Blue Chem Lifesciences', 'Lic M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lic M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lic M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lic M 5mg/10mg Tablet.'),
(11311, 'Lic M 5mg/10mg Tablet', 'Blue Chem Lifesciences', 'Lic M 5mg/10mg Tablet', 'Will Lic M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lic M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(11312, 'Lic M 5mg/10mg Tablet', 'Blue Chem Lifesciences', 'Lic M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lic M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11313, 'Licab Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab Tablet', 'How quickly does Licab Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Licab Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Licab Tablet. Do not stop taking Licab Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(11314, 'Licab Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab Tablet', 'Does Licab Tablet make you sleepy?', 'Yes, Licab Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11315, 'Licab Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab Tablet', 'Is Licab Tablet bad for kidneys?', 'Yes, Licab Tablet may cause kidney problems. Licab Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Licab Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Licab Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(11316, 'Licab Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab Tablet', 'Can Licab Tablet cause gain in weight?', 'Licab Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Licab Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Licab Tablet or some other reason.'),
(11317, 'Licab Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab Tablet', 'What is the most important information I should know about Licab Tablet?', 'Licab Tablet therapy should only be started if adequate facilities for assessing Licab Tablet levels are available. This is because Licab Tablet toxicity is related to increased levels of Licab Tablet in blood. Licab Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Licab Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(11318, 'Licab Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab Tablet', 'How should Licab Tablet be taken?', 'Take Licab Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Licab Tablet levels.'),
(11319, 'Licab Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab Tablet', 'Which medicines decrease Licab Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Licab Tablet since many medicines interfere with the working of Licab Tablet. Some medicines decrease the levels of Licab Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(11320, 'Licab XL Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab XL Tablet', 'How quickly does Licab XL Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Licab XL Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Licab XL Tablet. Do not stop taking Licab XL Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(11321, 'Licab XL Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab XL Tablet', 'Does Licab XL Tablet make you sleepy?', 'Yes, Licab XL Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(11322, 'Licab XL Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab XL Tablet', 'Is Licab XL Tablet bad for kidneys?', 'Yes, Licab XL Tablet may cause kidney problems. Licab XL Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Licab XL Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Licab XL Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(11323, 'Licab XL Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab XL Tablet', 'Can Licab XL Tablet cause gain in weight?', 'Licab XL Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Licab XL Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Licab XL Tablet or some other reason.'),
(11324, 'Licab XL Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab XL Tablet', 'What is the most important information I should know about Licab XL Tablet?', 'Licab XL Tablet therapy should only be started if adequate facilities for assessing Licab XL Tablet levels are available. This is because Licab XL Tablet toxicity is related to increased levels of Licab XL Tablet in blood. Licab XL Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Licab XL Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(11325, 'Licab XL Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab XL Tablet', 'How should Licab XL Tablet be taken?', 'Take Licab XL Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Licab XL Tablet levels.'),
(11326, 'Licab XL Tablet', 'Torrent Pharmaceuticals Ltd', 'Licab XL Tablet', 'Which medicines decrease Licab XL Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Licab XL Tablet since many medicines interfere with the working of Licab XL Tablet. Some medicines decrease the levels of Licab XL Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(11327, 'Licar 400mg Tablet PR', 'Psycogen Captab', 'Licar 400mg Tablet PR', 'How quickly does Licar 400mg Tablet PR work?', 'It takes some time before you see improvement in your symptoms after taking Licar 400mg Tablet PR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Licar 400mg Tablet PR. Do not stop taking Licar 400mg Tablet PR if you feel you are not improving. Instead, discuss it with your doctor.'),
(11328, 'Licar 400mg Tablet PR', 'Psycogen Captab', 'Licar 400mg Tablet PR', 'Does Licar 400mg Tablet PR make you sleepy?', 'Yes, Licar 400mg Tablet PR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(11329, 'Licar 400mg Tablet PR', 'Psycogen Captab', 'Licar 400mg Tablet PR', 'Is Licar 400mg Tablet PR bad for kidneys?', 'Yes, Licar 400mg Tablet PR may cause kidney problems. Licar 400mg Tablet PR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Licar 400mg Tablet PR, your doctor will get blood tests done to see if your kidney function is normal. During Licar 400mg Tablet PR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(11330, 'Licar 400mg Tablet PR', 'Psycogen Captab', 'Licar 400mg Tablet PR', 'Can Licar 400mg Tablet PR cause gain in weight?', 'Licar 400mg Tablet PR can cause both weight gain or weight loss. You should keep a check on your weight during Licar 400mg Tablet PR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Licar 400mg Tablet PR or some other reason.'),
(11331, 'Licar 400mg Tablet PR', 'Psycogen Captab', 'Licar 400mg Tablet PR', 'What is the most important information I should know about Licar 400mg Tablet PR?', 'Licar 400mg Tablet PR therapy should only be started if adequate facilities for assessing Licar 400mg Tablet PR levels are available. This is because Licar 400mg Tablet PR toxicity is related to increased levels of Licar 400mg Tablet PR in blood. Licar 400mg Tablet PR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Licar 400mg Tablet PR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(11332, 'Licar 400mg Tablet PR', 'Psycogen Captab', 'Licar 400mg Tablet PR', 'How should Licar 400mg Tablet PR be taken?', 'Take Licar 400mg Tablet PR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Licar 400mg Tablet PR levels.'),
(11333, 'Licar 400mg Tablet PR', 'Psycogen Captab', 'Licar 400mg Tablet PR', 'Which medicines decrease Licar 400mg Tablet PR levels?', 'You should inform your doctor about the medicines you are taking before starting Licar 400mg Tablet PR since many medicines interfere with the working of Licar 400mg Tablet PR. Some medicines decrease the levels of Licar 400mg Tablet PR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(11334, 'Licarmeg 1000mg Injection', 'Ridhima Biocare', 'Licarmeg 1000mg Injection', 'Is Licarmeg 1000mg Injection a steroid?', 'Licarmeg 1000mg Injection is not a steroid. It contains Levo-carnitine which is a type of protein (made from the amino acids lysine and methionine). It helps in transporting fats to the cells, where fats get metabolized in order to produce energy. It is used to treat primary and secondary Levo-carnitine deficiency.'),
(11335, 'Licarmeg 1000mg Injection', 'Ridhima Biocare', 'Licarmeg 1000mg Injection', 'When can a carnitine deficiency occur?', 'Carnitine deficiency may be of two types, primary and secondary. Primary is genetic and may show symptoms by five years of age. Whereas, secondary may occur due to certain disorders like kidney problems (chronic kidney failure) and use of antibiotics that reduces its absorption and increases its excretion.'),
(11336, 'Licarmeg 1000mg Injection', 'Ridhima Biocare', 'Licarmeg 1000mg Injection', 'Does warfarin have any effect on Licarmeg 1000mg Injection?', 'In some patients, warfarin when taken along with Licarmeg 1000mg Injection may increase the time required for the formation of blood clot. Hence, before starting Licarmeg 1000mg Injection, inform your doctor if you are taking warfarin.'),
(11337, 'Licaspar 200mg Tablet', 'Semsun Pharma Pvt Ltd', 'Licaspar 200mg Tablet', 'Can the use of Licaspar 200mg Tablet cause diarrhea?', 'Yes, the use of Licaspar 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11338, 'Licaspar 200mg Tablet', 'Semsun Pharma Pvt Ltd', 'Licaspar 200mg Tablet', 'Can I stop taking Licaspar 200mg Tablet when I feel better?', 'No, do not stop taking Licaspar 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(11339, 'Licaspar 200mg Tablet', 'Semsun Pharma Pvt Ltd', 'Licaspar 200mg Tablet', 'Can the use of Licaspar 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Licaspar 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Licaspar 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(11340, 'Licazol 1% Dusting Powder', 'Alicanto Drugs Pvt Ltd', 'Licazol 1% Dusting Powder', 'Is Licazol 1% Dusting Powder safe in pregnancy?', 'Licazol 1% Dusting Powder should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licazol 1% Dusting Powder.'),
(11341, 'Licazol 1% Dusting Powder', 'Alicanto Drugs Pvt Ltd', 'Licazol 1% Dusting Powder', 'Is Licazol 1% Dusting Powder fungicidal or Fungistatic?', 'Licazol 1% Dusting Powder has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11342, 'Licazol 1% Dusting Powder', 'Alicanto Drugs Pvt Ltd', 'Licazol 1% Dusting Powder', 'How to use Licazol 1% Dusting Powder?', 'Use Licazol 1% Dusting Powder exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11343, 'Licazol 1% Dusting Powder', 'Alicanto Drugs Pvt Ltd', 'Licazol 1% Dusting Powder', 'How long does it take for Licazol 1% Dusting Powder to work?', 'For different ailments, Licazol 1% Dusting Powder works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11344, 'Licazol 1% Dusting Powder', 'Alicanto Drugs Pvt Ltd', 'Licazol 1% Dusting Powder', 'How should I store Licazol 1% Dusting Powder?', 'Keep Licazol 1% Dusting Powder in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11345, 'Licazol 1% Dusting Powder', 'Alicanto Drugs Pvt Ltd', 'Licazol 1% Dusting Powder', 'Is Licazol 1% Dusting Powder safe to use in children?', 'Yes, Licazol 1% Dusting Powder is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11346, 'Licehept Syrup', 'Alicia Healthcare', 'Licehept Syrup', 'Can the use of Licehept Syrup cause dryness in mouth?', 'Yes, the use of Licehept Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11347, 'Licehept Syrup', 'Alicia Healthcare', 'Licehept Syrup', 'Can the use of Licehept Syrup cause dizziness?', 'Yes, the use of Licehept Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(11348, 'Licehept Syrup', 'Alicia Healthcare', 'Licehept Syrup', '\\What is the recommended storage condition for Licehept Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11349, 'Licekuf-AM Syrup Sugar Free', 'Alicia Healthcare', 'Licekuf-AM Syrup Sugar Free', 'Will a higher than the recommended dose of Licekuf-AM Syrup Sugar Free be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Licekuf-AM Syrup Sugar Free, please consult your doctor.'),
(11350, 'Licekuf-AM Syrup Sugar Free', 'Alicia Healthcare', 'Licekuf-AM Syrup Sugar Free', 'In which type of cough will the doctor prescribe Licekuf-AM Syrup Sugar Free?', 'Licekuf-AM Syrup Sugar Free is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(11351, 'Licekuf-AM Syrup Sugar Free', 'Alicia Healthcare', 'Licekuf-AM Syrup Sugar Free', 'Are there any contraindications associated with use of Licekuf-AM Syrup Sugar Free?', 'It is not recommended to use Licekuf-AM Syrup Sugar Free if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(11352, 'Licekuf-AM Syrup Sugar Free', 'Alicia Healthcare', 'Licekuf-AM Syrup Sugar Free', 'What are the instructions for the storage and disposal of Licekuf-AM Syrup Sugar Free?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11353, 'Licekuf-DX Syrup', 'Alicia Healthcare', 'Licekuf-DX Syrup', 'Can the use of Licekuf-DX Syrup cause sleepiness or drowsiness?', 'Yes, Licekuf-DX Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(11354, 'Licekuf-DX Syrup', 'Alicia Healthcare', 'Licekuf-DX Syrup', 'Will Licekuf-DX Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(11355, 'Licekuf-DX Syrup', 'Alicia Healthcare', 'Licekuf-DX Syrup', 'Can I breastfeed while taking Licekuf-DX Syrup?', 'No, it is not advisable to breastfeed while using Licekuf-DX Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(11356, 'Licekuf-DX Syrup', 'Alicia Healthcare', 'Licekuf-DX Syrup', 'What are the instructions for storage and disposal of Licekuf-DX Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11357, 'Licenil 5% Soap', 'Shinto Organics (P) Limited', 'Licenil 5% Soap', 'What should I do if I forget to use Licenil 5% Soap?', 'If you forget to use Licenil 5% Soap, do not worry and continue using Licenil 5% Soap as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(11358, 'Licenil 5% Soap', 'Shinto Organics (P) Limited', 'Licenil 5% Soap', 'Can I stop using Licenil 5% Soap when I feel better?', 'No, do not stop using Licenil 5% Soap without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(11359, 'Licenil 5% Soap', 'Shinto Organics (P) Limited', 'Licenil 5% Soap', 'Is Licenil 5% Soap safe?', 'Licenil 5% Soap is safe if used in the dose and duration advised by your doctor. Use it exactly as directed by the doctor to get the most benefit. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11360, 'Licerid 1% Soap', 'Ajanta Pharma Ltd', 'Licerid 1% Soap', 'What should I do if I forget to use Licerid 1% Soap?', 'If you forget to use Licerid 1% Soap, do not worry and continue using Licerid 1% Soap as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(11361, 'Licerid 1% Soap', 'Ajanta Pharma Ltd', 'Licerid 1% Soap', 'Can I stop using Licerid 1% Soap when I feel better?', 'No, do not stop using Licerid 1% Soap without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(11362, 'Licerid 1% Soap', 'Ajanta Pharma Ltd', 'Licerid 1% Soap', 'Is Licerid 1% Soap safe?', 'Licerid 1% Soap is safe if used in the dose and duration advised by your doctor. Use it exactly as directed by the doctor to get the most benefit. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11363, 'Licezid 600 Tablet', 'Alicia Healthcare', 'Licezid 600 Tablet', 'Can the use of Licezid 600 Tablet cause diarrhea?', 'Yes, the use of Licezid 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11364, 'Licezid 600 Tablet', 'Alicia Healthcare', 'Licezid 600 Tablet', 'What foods should I avoid while taking Licezid 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Licezid 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(11365, 'Licezon 1gm Injection', 'Alicia Healthcare', 'Licezon 1gm Injection', 'Is Licezon 1gm Injection safe?', 'Licezon 1gm Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11366, 'Licezon 1gm Injection', 'Alicia Healthcare', 'Licezon 1gm Injection', 'How long does Licezon 1gm Injection take to work?', 'Usually, Licezon 1gm Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(11367, 'Licezon 1gm Injection', 'Alicia Healthcare', 'Licezon 1gm Injection', 'Who should not take Licezon 1gm Injection?', 'Licezon 1gm Injection should not be prescribed to people who are allergic to Licezon 1gm Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Licezon 1gm Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(11368, 'Licezon 1gm Injection', 'Alicia Healthcare', 'Licezon 1gm Injection', 'What if I do not get better after using Licezon 1gm Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(11369, 'Licezon 1gm Injection', 'Alicia Healthcare', 'Licezon 1gm Injection', 'For how long does Licezon 1gm Injection stay in the body?', 'Usually, Licezon 1gm Injection stays in the body for around 2 days after completely stopping the medicine.'),
(11370, 'Licezon 1gm Injection', 'Alicia Healthcare', 'Licezon 1gm Injection', 'Is Licezon 1gm Injection effective?', 'Licezon 1gm Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Licezon 1gm Injection too early, the symptoms may return or worsen.'),
(11371, 'Licezon 1gm Injection', 'Alicia Healthcare', 'Licezon 1gm Injection', 'How is Licezon 1gm Injection administered?', 'Licezon 1gm Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Licezon 1gm Injection.'),
(11372, 'Licezon 250 Injection', 'Alicia Healthcare', 'Licezon 250 Injection', 'Is Licezon 250 Injection safe?', 'Licezon 250 Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11373, 'Licezon 250 Injection', 'Alicia Healthcare', 'Licezon 250 Injection', 'How long does Licezon 250 Injection take to work?', 'Usually, Licezon 250 Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(11374, 'Licezon 250 Injection', 'Alicia Healthcare', 'Licezon 250 Injection', 'Who should not take Licezon 250 Injection?', 'Licezon 250 Injection should not be prescribed to people who are allergic to Licezon 250 Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Licezon 250 Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(11375, 'Licezon 250 Injection', 'Alicia Healthcare', 'Licezon 250 Injection', 'What if I do not get better after using Licezon 250 Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(11376, 'Licezon 250 Injection', 'Alicia Healthcare', 'Licezon 250 Injection', 'For how long does Licezon 250 Injection stay in the body?', 'Usually, Licezon 250 Injection stays in the body for around 2 days after completely stopping the medicine.'),
(11377, 'Licezon 250 Injection', 'Alicia Healthcare', 'Licezon 250 Injection', 'Is Licezon 250 Injection effective?', 'Licezon 250 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Licezon 250 Injection too early, the symptoms may return or worsen.'),
(11378, 'Licezon 250 Injection', 'Alicia Healthcare', 'Licezon 250 Injection', 'How is Licezon 250 Injection administered?', 'Licezon 250 Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Licezon 250 Injection.'),
(11379, 'Licezon 500 Injection', 'Alicia Healthcare', 'Licezon 500 Injection', 'Is Licezon 500 Injection safe?', 'Licezon 500 Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11380, 'Licezon 500 Injection', 'Alicia Healthcare', 'Licezon 500 Injection', 'How long does Licezon 500 Injection take to work?', 'Usually, Licezon 500 Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(11381, 'Licezon 500 Injection', 'Alicia Healthcare', 'Licezon 500 Injection', 'Who should not take Licezon 500 Injection?', 'Licezon 500 Injection should not be prescribed to people who are allergic to Licezon 500 Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Licezon 500 Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(11382, 'Licezon 500 Injection', 'Alicia Healthcare', 'Licezon 500 Injection', 'What if I do not get better after using Licezon 500 Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(11383, 'Licezon 500 Injection', 'Alicia Healthcare', 'Licezon 500 Injection', 'For how long does Licezon 500 Injection stay in the body?', 'Usually, Licezon 500 Injection stays in the body for around 2 days after completely stopping the medicine.'),
(11384, 'Licezon 500 Injection', 'Alicia Healthcare', 'Licezon 500 Injection', 'Is Licezon 500 Injection effective?', 'Licezon 500 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Licezon 500 Injection too early, the symptoms may return or worsen.'),
(11385, 'Licezon 500 Injection', 'Alicia Healthcare', 'Licezon 500 Injection', 'How is Licezon 500 Injection administered?', 'Licezon 500 Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Licezon 500 Injection.'),
(11386, 'Licezon-S 1.5 Injection', 'Alicia Healthcare', 'Licezon-S 1.5 Injection', 'Can the use of Licezon-S 1.5 Injection cause allergic reaction?', 'Yes, Licezon-S 1.5 Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(11387, 'Licezon-S 1.5 Injection', 'Alicia Healthcare', 'Licezon-S 1.5 Injection', 'Can the use of Licezon-S 1.5 Injection cause diarrhea?', 'Yes, the use of Licezon-S 1.5 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11388, 'Licezon-S 1.5 Injection', 'Alicia Healthcare', 'Licezon-S 1.5 Injection', 'How long does Licezon-S 1.5 Injection takes to work?', 'Usually, Licezon-S 1.5 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(11389, 'Licezon-S 1.5 Injection', 'Alicia Healthcare', 'Licezon-S 1.5 Injection', 'What if I don\'t get better after using Licezon-S 1.5 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(11390, 'Licezon-S 1.5 Injection', 'Alicia Healthcare', 'Licezon-S 1.5 Injection', 'Can I stop taking Licezon-S 1.5 Injection when I feel better?', 'No, do not stop taking Licezon-S 1.5 Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(11391, 'Licezon-S 375 Injection', 'Alicia Healthcare', 'Licezon-S 375 Injection', 'Can the use of Licezon-S 375 Injection cause allergic reaction?', 'Yes, Licezon-S 375 Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(11392, 'Licezon-S 375 Injection', 'Alicia Healthcare', 'Licezon-S 375 Injection', 'Can the use of Licezon-S 375 Injection cause diarrhea?', 'Yes, the use of Licezon-S 375 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11393, 'Licezon-S 375 Injection', 'Alicia Healthcare', 'Licezon-S 375 Injection', 'How long does Licezon-S 375 Injection takes to work?', 'Usually, Licezon-S 375 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(11394, 'Licezon-S 375 Injection', 'Alicia Healthcare', 'Licezon-S 375 Injection', 'What if I don\'t get better after using Licezon-S 375 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(11395, 'Licezon-S 375 Injection', 'Alicia Healthcare', 'Licezon-S 375 Injection', 'Can I stop taking Licezon-S 375 Injection when I feel better?', 'No, do not stop taking Licezon-S 375 Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(11396, 'Licezon-TZ 1.125 Injection', 'Alicia Healthcare', 'Licezon-TZ 1.125 Injection', 'How long does Licezon-TZ 1.125 Injection takes to work?', 'Usually, Licezon-TZ 1.125 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(11397, 'Licezon-TZ 1.125 Injection', 'Alicia Healthcare', 'Licezon-TZ 1.125 Injection', 'What if I don\'t get better after using Licezon-TZ 1.125 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(11398, 'Licit 5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Licit 5mg Tablet', 'Is Licit 5mg Tablet a steroid? What is it used for?', 'No, Licit 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(11399, 'Licit 5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Licit 5mg Tablet', 'Does Licit 5mg Tablet make you tired and drowsy?', 'Yes, Licit 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(11400, 'Licit 5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Licit 5mg Tablet', 'How long does it take for Licit 5mg Tablet to work?', 'Licit 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(11401, 'Licit 5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Licit 5mg Tablet', 'Can I take Licit 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Licit 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(11402, 'Licit 5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Licit 5mg Tablet', 'Is it safe to take Licit 5mg Tablet for a long time?', 'Licit 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Licit 5mg Tablet for only as long as you need it.'),
(11403, 'Licit 5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Licit 5mg Tablet', 'For how long should I continue Licit 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Licit 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Licit 5mg Tablet'),
(11404, 'Liclafect 80mg Tablet', 'Esma Formulations', 'Liclafect 80mg Tablet', 'What is the best time to take Liclafect 80mg Tablet?', 'Take Liclafect 80mg Tablet before meals or exactly as instructed by your doctor. There is evidence stating that Liclafect 80mg Tablet works best at controlling post meal high blood sugar levels when taken 30 minutes before breakfast. So, if you are supposed to take it once daily, take it in the morning with breakfast with a glass of water.'),
(11405, 'Liclafect 80mg Tablet', 'Esma Formulations', 'Liclafect 80mg Tablet', 'Is Liclafect 80mg Tablet the same as metformin?', 'No, Liclafect 80mg Tablet is not the same as metformin. Although both these oral medicines are used in the treatment of type 2 diabetes, the way they work to reduce the sugar levels are different. While Liclafect 80mg Tablet acts by increasing the secretion of insulin by the pancreas, metformin acts by improving the functioning and effectiveness of the insulin already available in the body.'),
(11406, 'Liclafect 80mg Tablet', 'Esma Formulations', 'Liclafect 80mg Tablet', 'Can you take metformin and Liclafect 80mg Tablet at the same time?', 'Yes, Liclafect 80mg Tablet and metformin can be taken at the same time but only if prescribed by the doctor. Your doctor may have prescribed taking the two together to control your uncontrolled sugar levels. However, taking the two together may cause low blood sugar which may also occur if you delay or miss a meal, exercise more than usual or take it with insulin. Follow the instructions given by your doctor strictly to avoid such complications.'),
(11407, 'Liclafect 80mg Tablet', 'Esma Formulations', 'Liclafect 80mg Tablet', 'Is Liclafect 80mg Tablet bad for kidneys?', 'No, Liclafect 80mg Tablet is not harmful if your kidney function is normal. Any previous case of kidney problem should be informed to the doctor, so that the use of Liclafect 80mg Tablet can be assessed. This is done in order to analyze whether Liclafect 80mg Tablet can be given or not because it is principally excreted by the kidney. If you have kidney problems you will be started at a lower dose.'),
(11408, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'What is Licod Plus 10mg/40mg Tablet?', 'Licod Plus 10mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(11409, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'Is it safe to use Licod Plus 10mg/40mg Tablet?', 'Licod Plus 10mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(11410, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Licod Plus 10mg/40mg Tablet?', 'The use of Licod Plus 10mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(11411, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'Can the use of Licod Plus 10mg/40mg Tablet cause dry mouth?', 'Yes, the use of Licod Plus 10mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(11412, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'Can the use of Licod Plus 10mg/40mg Tablet cause diarrhea?', 'Yes, the use of Licod Plus 10mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(11413, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'What are the instructions for storage and disposal of Licod Plus 10mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11414, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'What is Licod Plus 10mg/40mg Tablet price?', 'You can get Licod Plus 10mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(11415, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'While taking Licod Plus 10mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(11416, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'Can I take alcohol while taking Licod Plus 10mg/40mg Tablet?', 'No, alcohol intake is not advised with Licod Plus 10mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(11417, 'Licod Plus 10mg/40mg Tablet', 'Derris Pharmaceutical Llp', 'Licod Plus 10mg/40mg Tablet', 'Can I stop taking Licod Plus 10mg/40mg Tablet if I feel better?', 'If you have been taking Licod Plus 10mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(11418, 'Licoderm Cream', 'Biogenius Labs', 'Licoderm Cream', 'Is Licoderm Cream safe in pregnancy?', 'Licoderm Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licoderm Cream.'),
(11419, 'Licoderm Cream', 'Biogenius Labs', 'Licoderm Cream', 'Is Licoderm Cream fungicidal or Fungistatic?', 'Licoderm Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11420, 'Licoderm Cream', 'Biogenius Labs', 'Licoderm Cream', 'How to use Licoderm Cream?', 'Use Licoderm Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11421, 'Licoderm Cream', 'Biogenius Labs', 'Licoderm Cream', 'How long does it take for Licoderm Cream to work?', 'For different ailments, Licoderm Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11422, 'Licoderm Cream', 'Biogenius Labs', 'Licoderm Cream', 'How should I store Licoderm Cream?', 'Keep Licoderm Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11423, 'Licoderm Cream', 'Biogenius Labs', 'Licoderm Cream', 'Is Licoderm Cream safe to use in children?', 'Yes, Licoderm Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11424, 'Licoderm Lotion', 'Biogenius Labs', 'Licoderm Lotion', 'Is Licoderm Lotion safe in pregnancy?', 'Licoderm Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licoderm Lotion.'),
(11425, 'Licoderm Lotion', 'Biogenius Labs', 'Licoderm Lotion', 'Is Licoderm Lotion fungicidal or Fungistatic?', 'Licoderm Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11426, 'Licoderm Lotion', 'Biogenius Labs', 'Licoderm Lotion', 'How to use Licoderm Lotion?', 'Use Licoderm Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11427, 'Licoderm Lotion', 'Biogenius Labs', 'Licoderm Lotion', 'How long does it take for Licoderm Lotion to work?', 'For different ailments, Licoderm Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11428, 'Licoderm Lotion', 'Biogenius Labs', 'Licoderm Lotion', 'How should I store Licoderm Lotion?', 'Keep Licoderm Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11429, 'Licoderm Lotion', 'Biogenius Labs', 'Licoderm Lotion', 'Is Licoderm Lotion safe to use in children?', 'Yes, Licoderm Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11430, 'Licofer 100 Injection', 'Vintek Pharmaceuticals', 'Licofer 100 Injection', 'How long can I take Licofer 100 Injection for?', 'Licofer 100 Injection is used to regulate hemoglobin levels in the human body. It is usually given to patients who have iron deficient anemia or iron deficiency. The doctor may suggest using this medicine till the hemoglobin level becomes normal. Do consult your doctor to understand the usage of this medicine properly.'),
(11431, 'Licofer 100 Injection', 'Vintek Pharmaceuticals', 'Licofer 100 Injection', 'How is Licofer 100 Injection administered?', 'Licofer 100 Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Licofer 100 Injection.'),
(11432, 'Licofer 100 Injection', 'Vintek Pharmaceuticals', 'Licofer 100 Injection', 'Can I take Licofer 100 Injection for anemia and iron deficiency?', 'Yes, Licofer 100 Injection can be taken for iron deficiency anemia and iron deficiency. However, its use for other types of anemia is not recommended. Take Licofer 100 Injection in the dose and duration advised by your doctor.'),
(11433, 'Licofer 100 Injection', 'Vintek Pharmaceuticals', 'Licofer 100 Injection', 'What types of food items should I take other than Licofer 100 Injection?', 'You can consume food items that are rich in iron content (like red meat, pork, poultry and seafood). Other food items which contain rich iron content include beans, dark green leafy vegetables (like spinach), peas, dried fruit (raisins and apricots), iron-fortified cereals, breads and pastas. You can also try iron supplements (tablets or capsules) available at pharmacy stores for iron deficient anemia.'),
(11434, 'Licofer 100 Injection', 'Vintek Pharmaceuticals', 'Licofer 100 Injection', 'Does Licofer 100 Injection increase weight?', 'Yes, Licofer 100 Injection can increase weight. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. You should consult your doctor if you need any further help to manage your weight.'),
(11435, 'Licoflox 500 Tablet', 'Focus Healthcare', 'Licoflox 500 Tablet', 'Is Licoflox 500 Tablet safe?', 'Licoflox 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11436, 'Licoflox 500 Tablet', 'Focus Healthcare', 'Licoflox 500 Tablet', 'What if I forget to take a dose of Licoflox 500 Tablet?', 'If you forget a dose of Licoflox 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(11437, 'Licoflox 500 Tablet', 'Focus Healthcare', 'Licoflox 500 Tablet', 'Can the use of Licoflox 500 Tablet cause diarrhea?', 'Yes, the use of Licoflox 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11438, 'Licoflox 500 Tablet', 'Focus Healthcare', 'Licoflox 500 Tablet', 'Can I stop taking Licoflox 500 Tablet when I feel better?', 'No, do not stop taking Licoflox 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Licoflox 500 Tablet too early, the symptoms may return or worsen. Continue taking Licoflox 500 Tablet in the dose and duration advised by the doctor.'),
(11439, 'Licoflox 500 Tablet', 'Focus Healthcare', 'Licoflox 500 Tablet', 'Can the use of Licoflox 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Licoflox 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Licoflox 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(11440, 'Licolate 0.2mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Licolate 0.2mg Injection', 'Is Licolate 0.2mg Injection a narcotic?', 'No, Licolate 0.2mg Injection is not a narcotic.'),
(11441, 'Licolate 0.2mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Licolate 0.2mg Injection', 'Does Licolate 0.2mg Injection cause tachycardia?', 'Yes, Licolate 0.2mg Injection has its action on the heart which increases the heart rate (tachycardia). This property of the medication is utilized during surgery to prevent the fall of heart rate due to various other supplemental anesthetic medications.'),
(11442, 'Licolate 0.2mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Licolate 0.2mg Injection', 'Can Licolate 0.2mg Injection cause constipation?', 'Yes, Licolate 0.2mg Injection can cause constipation because of its action on the intestine. It decreases the intestinal secretions and also decreases the gut motility which can result in constipation.'),
(11443, 'Licolate 0.2mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Licolate 0.2mg Injection', 'Does Licolate 0.2mg Injection increase blood pressure?', 'Yes, Licolate 0.2mg Injection can sometimes lead to an increase in blood pressure. There are evidences where it has led to increased blood pressure. Therefore, when injected into a patient during a surgery, the heart rate and blood pressure are continuously monitored.'),
(11444, 'Licolate 0.2mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Licolate 0.2mg Injection', 'I am on antidepressants currently. Can I take Licolate 0.2mg Injection?', 'Some classes of antidepressant medicines can worsen the side effects of Licolate 0.2mg Injection and cause uneasiness for the patient. These antidepressant medicines may include tricyclic antidepressants (amitriptyline or imipramine), phenelzine, tranylcypromine, clozapine, etc. Therefore, do inform your doctor about your previous illness and the medicines you are taking before you take this medication. Your doctor may make the necessary adjustments.'),
(11445, 'Licolin 1% Cream', 'Sonika Life Sciences Ltd', 'Licolin 1% Cream', 'Is Licolin 1% Cream safe in pregnancy?', 'Licolin 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licolin 1% Cream.'),
(11446, 'Licolin 1% Cream', 'Sonika Life Sciences Ltd', 'Licolin 1% Cream', 'Is Licolin 1% Cream fungicidal or Fungistatic?', 'Licolin 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11447, 'Licolin 1% Cream', 'Sonika Life Sciences Ltd', 'Licolin 1% Cream', 'How to use Licolin 1% Cream?', 'Use Licolin 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11448, 'Licolin 1% Cream', 'Sonika Life Sciences Ltd', 'Licolin 1% Cream', 'How long does it take for Licolin 1% Cream to work?', 'For different ailments, Licolin 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11449, 'Licolin 1% Cream', 'Sonika Life Sciences Ltd', 'Licolin 1% Cream', 'How should I store Licolin 1% Cream?', 'Keep Licolin 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11450, 'Licolin 1% Cream', 'Sonika Life Sciences Ltd', 'Licolin 1% Cream', 'Is Licolin 1% Cream safe to use in children?', 'Yes, Licolin 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11451, 'Licomine Syrup', 'The Pharmed Research Lab Pvt Ltd', 'Licomine Syrup', 'How long does Licomine Syrup take to work?', 'Usually, Licomine Syrup starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(11452, 'Licomine Syrup', 'The Pharmed Research Lab Pvt Ltd', 'Licomine Syrup', 'What if I don\'t get better after using Licomine Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(11453, 'Licomine Syrup', 'The Pharmed Research Lab Pvt Ltd', 'Licomine Syrup', 'Is Licomine Syrup effective?', 'Licomine Syrup is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Licomine Syrup is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Licomine Syrup too early, the symptoms may return or worsen.'),
(11454, 'Licomine Syrup', 'The Pharmed Research Lab Pvt Ltd', 'Licomine Syrup', 'Can I stop taking Licomine Syrup when I feel better?', 'No, do not stop taking Licomine Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(11455, 'Licomine Syrup', 'The Pharmed Research Lab Pvt Ltd', 'Licomine Syrup', 'Can the use of Licomine Syrup cause diarrhea?', 'Yes, the use of Licomine Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11456, 'Licomine Syrup', 'The Pharmed Research Lab Pvt Ltd', 'Licomine Syrup', 'Is Licomine Syrup safe?', 'Licomine Syrup is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(11457, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'What is Licomox 375 Tablet?', 'Licomox 375 Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(11458, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Is it safe to use Licomox 375 Tablet?', 'Licomox 375 Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(11459, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Are there any specific cautions associated with the use of Licomox 375 Tablet?', 'The use of Licomox 375 Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(11460, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Can the use of Licomox 375 Tablet cause contraceptive failure?', 'Yes, the use of Licomox 375 Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Licomox 375 Tablet.'),
(11461, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Can I take a higher than the recommended dose of Licomox 375 Tablet?', 'No, taking a higher than the recommended dose of Licomox 375 Tablet can increase the risks of side effects. Licomox 375 Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(11462, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'What are the instructions for the storage and disposal of Licomox 375 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11463, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Can I stop taking Licomox 375 Tablet when my symptoms are relieved?', 'No, do not stop taking Licomox 375 Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(11464, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Can Licomox 375 Tablet cause an allergic reaction?', 'Yes, Licomox 375 Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(11465, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Can the use of Licomox 375 Tablet cause diarrhea?', 'Yes, the use of Licomox 375 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(11466, 'Licomox 375 Tablet', 'Focus Healthcare', 'Licomox 375 Tablet', 'Can I take Licomox 375 Tablet to treat cold and flu?', 'No, Licomox 375 Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(11467, 'Licomox-LB Tablet', 'Focus Healthcare', 'Licomox-LB Tablet', 'What are the contraindications associated with the use of Licomox-LB Tablet?', 'Licomox-LB Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(11468, 'Licomox-LB Tablet', 'Focus Healthcare', 'Licomox-LB Tablet', 'Which is the best time to take Licomox-LB Tablet?', 'Licomox-LB Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(11469, 'Licomox-LB Tablet', 'Focus Healthcare', 'Licomox-LB Tablet', 'Can I stop Licomox-LB Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(11470, 'Licomox-LB Tablet', 'Focus Healthcare', 'Licomox-LB Tablet', 'Can I take Licomox-LB Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(11471, 'Licomox-LB Tablet', 'Focus Healthcare', 'Licomox-LB Tablet', 'What are the instructions for the storage and disposal of Licomox-LB Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11472, 'Licona 1% Cream', 'LCB Pharma', 'Licona 1% Cream', 'Is Licona 1% Cream safe in pregnancy?', 'Licona 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licona 1% Cream.'),
(11473, 'Licona 1% Cream', 'LCB Pharma', 'Licona 1% Cream', 'Is Licona 1% Cream fungicidal or Fungistatic?', 'Licona 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11474, 'Licona 1% Cream', 'LCB Pharma', 'Licona 1% Cream', 'How to use Licona 1% Cream?', 'Use Licona 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11475, 'Licona 1% Cream', 'LCB Pharma', 'Licona 1% Cream', 'How long does it take for Licona 1% Cream to work?', 'For different ailments, Licona 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11476, 'Licona 1% Cream', 'LCB Pharma', 'Licona 1% Cream', 'How should I store Licona 1% Cream?', 'Keep Licona 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11477, 'Licona 1% Cream', 'LCB Pharma', 'Licona 1% Cream', 'Is Licona 1% Cream safe to use in children?', 'Yes, Licona 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11478, 'Liconafin 1% Cream', 'Iva Healthcare Pvt. Ltd.', 'Liconafin 1% Cream', 'Is Liconafin 1% Cream safe in pregnancy?', 'Liconafin 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Liconafin 1% Cream.'),
(11479, 'Liconafin 1% Cream', 'Iva Healthcare Pvt. Ltd.', 'Liconafin 1% Cream', 'Is Liconafin 1% Cream fungicidal or Fungistatic?', 'Liconafin 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11480, 'Liconafin 1% Cream', 'Iva Healthcare Pvt. Ltd.', 'Liconafin 1% Cream', 'How to use Liconafin 1% Cream?', 'Use Liconafin 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11481, 'Liconafin 1% Cream', 'Iva Healthcare Pvt. Ltd.', 'Liconafin 1% Cream', 'How long does it take for Liconafin 1% Cream to work?', 'For different ailments, Liconafin 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11482, 'Liconafin 1% Cream', 'Iva Healthcare Pvt. Ltd.', 'Liconafin 1% Cream', 'How should I store Liconafin 1% Cream?', 'Keep Liconafin 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11483, 'Liconafin 1% Cream', 'Iva Healthcare Pvt. Ltd.', 'Liconafin 1% Cream', 'Is Liconafin 1% Cream safe to use in children?', 'Yes, Liconafin 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11484, 'Liconpride Cream', 'Care Pride Pharma', 'Liconpride Cream', 'Is Liconpride Cream safe in pregnancy?', 'Liconpride Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Liconpride Cream.'),
(11485, 'Liconpride Cream', 'Care Pride Pharma', 'Liconpride Cream', 'Is Liconpride Cream fungicidal or Fungistatic?', 'Liconpride Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11486, 'Liconpride Cream', 'Care Pride Pharma', 'Liconpride Cream', 'How to use Liconpride Cream?', 'Use Liconpride Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11487, 'Liconpride Cream', 'Care Pride Pharma', 'Liconpride Cream', 'How long does it take for Liconpride Cream to work?', 'For different ailments, Liconpride Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11488, 'Liconpride Cream', 'Care Pride Pharma', 'Liconpride Cream', 'How should I store Liconpride Cream?', 'Keep Liconpride Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11489, 'Liconpride Cream', 'Care Pride Pharma', 'Liconpride Cream', 'Is Liconpride Cream safe to use in children?', 'Yes, Liconpride Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11490, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'Should Licopin 40 Tablet be taken in the morning or at night?', 'Licopin 40 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(11491, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'How long does it take for Licopin 40 Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(11492, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'My blood pressure is now controlled. Can I stop taking Licopin 40 Tablet now?', 'No, do not stop taking Licopin 40 Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Licopin 40 Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(11493, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'If I have some kidney problem, can I take Licopin 40 Tablet? Can it further deteriorate my kidney function?', 'You can take Licopin 40 Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Licopin 40 Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(11494, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'I am overweight and the doctor has prescribed me Licopin 40 Tablet for blood pressure control. I am bothered that Licopin 40 Tablet can increase my weight. Is it true?', 'No, do not worry since Licopin 40 Tablet is not known to cause weight gain. In fact in animal studies Licopin 40 Tablet has been found to decrease fat tissue.'),
(11495, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'Does Licopin 40 Tablet affect blood glucose levels in diabetics?', 'Licopin 40 Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(11496, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'Can the use of Licopin 40 Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Licopin 40 Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(11497, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'Does Licopin 40 Tablet work by causing excessive urination?', 'No, Licopin 40 Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Licopin 40 Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(11498, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'Do I need to follow any precautions if I take ibuprofen and Licopin 40 Tablet together?', 'If you are taking ibuprofen and Licopin 40 Tablet together, you should continuously keep a check on your blood pressure and kidney function. Licopin 40 Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Licopin 40 Tablet for heart failure. Ibuprofen may interfere with the working of Licopin 40 Tablet and decrease its efficiency at lowering blood pressure.'),
(11499, 'Licopin 40 Tablet', 'Focus Healthcare', 'Licopin 40 Tablet', 'Should Licopin 40 Tablet be taken in the morning or at night?', 'Licopin 40 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(11500, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'How long does it take for Licopin 5mg Tablet to work?', 'Licopin 5mg Tablet starts working on the day it is taken. However, it may take weeks to see the full effect. You should continue taking the medicine even if you feel better or if you do not notice any considerable difference. Consult your doctor if you have any concerns or you feel worse after taking the medicine.'),
(11501, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'Does Licopin 5mg Tablet cause itching?', 'Licopin 5mg Tablet may cause itching in some patients, though it is an uncommon side effect. However, if you experience severe itching contact your doctor.'),
(11502, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'Is Licopin 5mg Tablet bad for the kidneys?', 'No, there is no evidence that Licopin 5mg Tablet causes deterioration of kidney problems. Licopin 5mg Tablet can be used in normal doses in patients with kidney problems. In fact, its blood pressure-lowering effect, it helps to prevent injury to the kidneys due to hypertension.'),
(11503, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'Should I take Licopin 5mg Tablet in the morning or at night?', 'Licopin 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(11504, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'For how long do I need to take Licopin 5mg Tablet?', 'You should keep on taking Licopin 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Licopin 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(11505, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'Is Licopin 5mg Tablet a beta-blocker?', 'No, Licopin 5mg Tablet is not a beta-blocker. It belongs to a class of medicines known as calcium channel blockers. It lowers blood pressure by relaxing the blood vessels so that blood can easily flow through the blood vessels.'),
(11506, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'What are the serious side effects of Licopin 5mg Tablet?', 'Licopin 5mg Tablet may cause some serious side effects such as liver problems (yellowing of skin, nausea, vomiting, and loss of appetite), pancreatitis (severe stomach pain, nausea, and vomiting), and recurrent chest pain which may be indicative of a heart attack. However, these side effects are rarely seen. Remember that your doctor has prescribed this medicine to you because the benefit to you is greater than the risk of any potential side effects. Follow your doctor\'s advice.'),
(11507, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'What should I avoid while taking Licopin 5mg Tablet?', 'Consult your doctor first before starting any new prescription or non-prescription medicines or supplements. Take low sodium and low-fat diet, and adhere to the lifestyle changes as advised by your doctor. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Licopin 5mg Tablet. Stop smoking and taking alcohol as this helps to lower your blood pressure and prevents heart problems.'),
(11508, 'Licopin 5mg Tablet', 'Focus Healthcare', 'Licopin 5mg Tablet', 'I have developed ankle edema and swelling over my feet after using a Licopin 5mg Tablet. What should I do?', 'Licopin 5mg Tablet can cause ankle or foot swelling. To reduce swelling raise your legs while you are sitting down. Talk to your doctor if it does not go away.'),
(11509, 'Licopin BP 5mg/50mg Tablet', 'Focus Healthcare', 'Licopin BP 5mg/50mg Tablet', 'What lifestyle changes should be made while using Licopin BP 5mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Licopin BP 5mg/50mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(11510, 'Licopin BP 5mg/50mg Tablet', 'Focus Healthcare', 'Licopin BP 5mg/50mg Tablet', 'Can I stop taking Licopin BP 5mg/50mg Tablet if I feel well?', 'No, keep using Licopin BP 5mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Licopin BP 5mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(11511, 'Licopin BP 5mg/50mg Tablet', 'Focus Healthcare', 'Licopin BP 5mg/50mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11512, 'Licopin BP 5mg/50mg Tablet', 'Focus Healthcare', 'Licopin BP 5mg/50mg Tablet', 'What are the contraindications associated with the use of Licopin BP 5mg/50mg Tablet?', 'Licopin BP 5mg/50mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(11513, 'Licopin BP 5mg/50mg Tablet', 'Focus Healthcare', 'Licopin BP 5mg/50mg Tablet', 'Can the use of Licopin BP 5mg/50mg Tablet cause headache?', 'Yes, the use of Licopin BP 5mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(11514, 'Licopin BP 5mg/50mg Tablet', 'Focus Healthcare', 'Licopin BP 5mg/50mg Tablet', 'Can I feel dizzy after taking Licopin BP 5mg/50mg Tablet?', 'Yes, the use of Licopin BP 5mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(11515, 'Licopin LT 50mg/5mg Tablet', 'Focus Healthcare', 'Licopin LT 50mg/5mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11516, 'Licopin LT 50mg/5mg Tablet', 'Focus Healthcare', 'Licopin LT 50mg/5mg Tablet', 'Can I feel dizzy after taking Licopin LT 50mg/5mg Tablet?', 'Yes, the use of Licopin LT 50mg/5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(11517, 'Licopin LT 50mg/5mg Tablet', 'Focus Healthcare', 'Licopin LT 50mg/5mg Tablet', 'Can I use Licopin LT 50mg/5mg Tablet in pregnancy?', 'No, Licopin LT 50mg/5mg Tablet should be avoided in pregnancy. Its use can cause injury and even endanger the baby. If you conceive while using Licopin LT 50mg/5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend to you other ways to lower the blood pressure.'),
(11518, 'Licopin LT 50mg/5mg Tablet', 'Focus Healthcare', 'Licopin LT 50mg/5mg Tablet', 'What are some of the lifestyle changes I should make while using Licopin LT 50mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Licopin LT 50mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Licopin LT 50mg/5mg Tablet and to keep yourself healthy.'),
(11519, 'Licopin LT 50mg/5mg Tablet', 'Focus Healthcare', 'Licopin LT 50mg/5mg Tablet', 'Can I stop taking Licopin LT 50mg/5mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping Licopin LT 50mg/5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(11520, 'Licopin-CR Cream', 'Focus Healthcare', 'Licopin-CR Cream', 'Is Licopin-CR Cream safe in pregnancy?', 'Licopin-CR Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licopin-CR Cream.'),
(11521, 'Licopin-CR Cream', 'Focus Healthcare', 'Licopin-CR Cream', 'Is Licopin-CR Cream fungicidal or Fungistatic?', 'Licopin-CR Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11522, 'Licopin-CR Cream', 'Focus Healthcare', 'Licopin-CR Cream', 'How to use Licopin-CR Cream?', 'Use Licopin-CR Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11523, 'Licopin-CR Cream', 'Focus Healthcare', 'Licopin-CR Cream', 'How long does it take for Licopin-CR Cream to work?', 'For different ailments, Licopin-CR Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11524, 'Licopin-CR Cream', 'Focus Healthcare', 'Licopin-CR Cream', 'How should I store Licopin-CR Cream?', 'Keep Licopin-CR Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11525, 'Licopin-CR Cream', 'Focus Healthcare', 'Licopin-CR Cream', 'Is Licopin-CR Cream safe to use in children?', 'Yes, Licopin-CR Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11526, 'Licoril 10mg Tablet', 'Astonea Labs Private Limited', 'Licoril 10mg Tablet', 'Can Licoril 10mg Tablet cause weight loss?', 'Yes, Licoril 10mg Tablet may cause weight loss as a common side effect. However, weight loss due to this medicine is usually insignificant. The reason for this reduction in weight could be due to accompanying loss of appetite. Consult your doctor if your weight loss is significant.'),
(11527, 'Licoril 10mg Tablet', 'Astonea Labs Private Limited', 'Licoril 10mg Tablet', 'When should patients notify their doctor?', 'The doctor should be informed if one has lung problems like cough, shortness of breath or if one observes symptoms of infection like fever, weakens, and flu-like symptoms. Along with that, if a person experiences allergic reactions like hives rashes and liver problems like yellowing of skin, loss of appetite then it should be consulted with the doctor. One should also inform the doctor if there is a decrease in blood cell count causing easy bruising and recurrent infections. In addition to that, the doctor should be informed if one becomes pregnant during the course of treatment.'),
(11528, 'Licoril 10mg Tablet', 'Astonea Labs Private Limited', 'Licoril 10mg Tablet', 'Can I plan pregnancy after stopping Licoril 10mg Tablet?', 'Licoril 10mg Tablet takes fairly long time to get flushed out of your system. Hence, you should not plan pregnancy for at least 2 years after stopping Licoril 10mg Tablet. This extensive time duration may be reduced to a few weeks by taking certain medicines which can help speed up the removal of Licoril 10mg Tablet from your body.'),
(11529, 'Licoril 10mg Tablet', 'Astonea Labs Private Limited', 'Licoril 10mg Tablet', 'How long does it take to see improvement after starting Licoril 10mg Tablet?', 'Licoril 10mg Tablet may take about 4 weeks or longer to show improvement in the condition. It may even take 4-6 months to show full benefits. Hence, the medicine should not be stopped  if there is no significant improvement. For any further query consult your doctor who will analyze the condition.'),
(11530, 'Licoril 10mg Tablet', 'Astonea Labs Private Limited', 'Licoril 10mg Tablet', 'Can Licoril 10mg Tablet cause cancer?', 'Licoril 10mg Tablet may increase your chances of cancer especially of lymph system, but this is very rare. The reason could be decreased strength of the immune system caused by Licoril 10mg Tablet. Discuss with your doctor if you have concerns regarding it.'),
(11531, 'Licoril 20mg Tablet', 'Astonea Labs Private Limited', 'Licoril 20mg Tablet', 'Can Licoril 20mg Tablet cause weight loss?', 'Yes, Licoril 20mg Tablet may cause weight loss as a common side effect. However, weight loss due to this medicine is usually insignificant. The reason for this reduction in weight could be due to accompanying loss of appetite. Consult your doctor if your weight loss is significant.'),
(11532, 'Licoril 20mg Tablet', 'Astonea Labs Private Limited', 'Licoril 20mg Tablet', 'When should patients notify their doctor?', 'The doctor should be informed if one has lung problems like cough, shortness of breath or if one observes symptoms of infection like fever, weakens, and flu-like symptoms. Along with that, if a person experiences allergic reactions like hives rashes and liver problems like yellowing of skin, loss of appetite then it should be consulted with the doctor. One should also inform the doctor if there is a decrease in blood cell count causing easy bruising and recurrent infections. In addition to that, the doctor should be informed if one becomes pregnant during the course of treatment.'),
(11533, 'Licoril 20mg Tablet', 'Astonea Labs Private Limited', 'Licoril 20mg Tablet', 'Can I plan pregnancy after stopping Licoril 20mg Tablet?', 'Licoril 20mg Tablet takes fairly long time to get flushed out of your system. Hence, you should not plan pregnancy for at least 2 years after stopping Licoril 20mg Tablet. This extensive time duration may be reduced to a few weeks by taking certain medicines which can help speed up the removal of Licoril 20mg Tablet from your body.'),
(11534, 'Licoril 20mg Tablet', 'Astonea Labs Private Limited', 'Licoril 20mg Tablet', 'How long does it take to see improvement after starting Licoril 20mg Tablet?', 'Licoril 20mg Tablet may take about 4 weeks or longer to show improvement in the condition. It may even take 4-6 months to show full benefits. Hence, the medicine should not be stopped  if there is no significant improvement. For any further query consult your doctor who will analyze the condition.'),
(11535, 'Licoril 20mg Tablet', 'Astonea Labs Private Limited', 'Licoril 20mg Tablet', 'Can Licoril 20mg Tablet cause cancer?', 'Licoril 20mg Tablet may increase your chances of cancer especially of lymph system, but this is very rare. The reason could be decreased strength of the immune system caused by Licoril 20mg Tablet. Discuss with your doctor if you have concerns regarding it.'),
(11536, 'Licort 30mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 30mg Tablet', 'Is Licort 30mg Tablet a steroid?', 'Yes, Licort 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Licort 30mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(11537, 'Licort 30mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 30mg Tablet', 'What is Licort 30mg Tablet used for?', 'Licort 30mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(11538, 'Licort 30mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 30mg Tablet', 'How does Licort 30mg Tablet work?', 'Licort 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(11539, 'Licort 30mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 30mg Tablet', 'Is Licort 30mg Tablet better than Prednisone?', 'Clinical studies have shown that Licort 30mg Tablet has a similar effect as that of prednisone. Moreover, Licort 30mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(11540, 'Licort 30mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 30mg Tablet', 'Is Licort 30mg Tablet a painkiller?', 'No, Licort 30mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(11541, 'Licort 30mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 30mg Tablet', 'Can I take Licort 30mg Tablet with Tamsulosin?', 'Yes, Licort 30mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(11542, 'Licort 6mg Tablet', 'Yodley Life Sciences Private Limited', 'Licort 6mg Tablet (Yodley Life Sciences Private Limited)', 'Is Licort 6mg Tablet a steroid?', 'Yes, Licort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Licort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(11543, 'Licort 6mg Tablet', 'Yodley Life Sciences Private Limited', 'Licort 6mg Tablet (Yodley Life Sciences Private Limited)', 'What is Licort 6mg Tablet used for?', 'Licort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(11544, 'Licort 6mg Tablet', 'Yodley Life Sciences Private Limited', 'Licort 6mg Tablet (Yodley Life Sciences Private Limited)', 'How does Licort 6mg Tablet work?', 'Licort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11545, 'Licort 6mg Tablet', 'Yodley Life Sciences Private Limited', 'Licort 6mg Tablet (Yodley Life Sciences Private Limited)', 'Is Licort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Licort 6mg Tablet has a similar effect as that of prednisone. Moreover, Licort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(11546, 'Licort 6mg Tablet', 'Yodley Life Sciences Private Limited', 'Licort 6mg Tablet (Yodley Life Sciences Private Limited)', 'Is Licort 6mg Tablet a painkiller?', 'No, Licort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(11547, 'Licort 6mg Tablet', 'Yodley Life Sciences Private Limited', 'Licort 6mg Tablet (Yodley Life Sciences Private Limited)', 'Can I take Licort 6mg Tablet with Tamsulosin?', 'Yes, Licort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(11548, 'Licort 6mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 6mg Tablet (Blismed Pharmaceuticals Pvt. Ltd)', 'Is Licort 6mg Tablet a steroid?', 'Yes, Licort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Licort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(11549, 'Licort 6mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 6mg Tablet (Blismed Pharmaceuticals Pvt. Ltd)', 'What is Licort 6mg Tablet used for?', 'Licort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(11550, 'Licort 6mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 6mg Tablet (Blismed Pharmaceuticals Pvt. Ltd)', 'How does Licort 6mg Tablet work?', 'Licort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(11551, 'Licort 6mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 6mg Tablet (Blismed Pharmaceuticals Pvt. Ltd)', 'Is Licort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Licort 6mg Tablet has a similar effect as that of prednisone. Moreover, Licort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(11552, 'Licort 6mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 6mg Tablet (Blismed Pharmaceuticals Pvt. Ltd)', 'Is Licort 6mg Tablet a painkiller?', 'No, Licort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(11553, 'Licort 6mg Tablet', 'Blismed Pharmaceuticals Pvt. Ltd', 'Licort 6mg Tablet (Blismed Pharmaceuticals Pvt. Ltd)', 'Can I take Licort 6mg Tablet with Tamsulosin?', 'Yes, Licort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(11554, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'Can I feel dizzy after taking Licosar 50mg Tablet?', 'Yes, the use of Licosar 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(11555, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'Is Licosar 50mg Tablet a good blood pressure medicine?', 'Licosar 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(11556, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'What are some of the lifestyle changes I should make while using Licosar 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Licosar 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Licosar 50mg Tablet and to keep yourself healthy.'),
(11557, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'For how long do I need to take Licosar 50mg Tablet?', 'You may have to take Licosar 50mg Tablet for a long term, even life long. Licosar 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Licosar 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(11558, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'Does Licosar 50mg Tablet cause weight gain?', 'No, Licosar 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(11559, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'What are the long-term side effects of Licosar 50mg Tablet?', 'Long-term use of Licosar 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Licosar 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(11560, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'Is Licosar 50mg Tablet bad for the kidneys?', 'Yes, Licosar 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Licosar 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(11561, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'How long does Licosar 50mg Tablet take to work?', 'The blood pressure-lowering effect of Licosar 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(11562, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'When and how should Licosar 50mg Tablet be taken?', 'Take Licosar 50mg Tablet exactly as per your doctor’s advice. Licosar 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(11563, 'Licosar 50mg Tablet', 'Focus Healthcare', 'Licosar 50mg Tablet', 'What is the most important information that I need to know about Licosar 50mg Tablet?', 'Taking Licosar 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Licosar 50mg Tablet, stop taking Licosar 50mg Tablet and call your doctor immediately.'),
(11564, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'I have been taking Licotar 100 Tablet since nine months and haven’t had any seizures till now. Can I stop taking it now?', 'No, you should not stop taking Licotar 100 Tablet even if you start feeling better. Stopping this medicine suddenly may lead to seizures which can be difficult to control. Consult your doctor if you experience any problems while being on treatment with Licotar 100 Tablet. The doctor may adjust the dose or gradually reduce the dose.'),
(11565, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'Is it safe to drive if I am taking Licotar 100 Tablet?', 'No, you need to be careful while driving or operating heavy machinery until and unless you know how Licotar 100 Tablet affects you. You may experience dizziness or drowsiness and blurred vision, especially during the initial days of treatment. These side effects can also be observed if the dose is increased.'),
(11566, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'What should I do if I forget a dose of Licotar 100 Tablet?', 'If you miss a dose of Licotar 100 Tablet within 6 hours of the scheduled time, take it as soon as you remember. However, if you have forgotten to take the dose for more than 6 hours of the scheduled time then skip the dose and take the next one as scheduled. Do not double the dose to make up for the  missed dose.'),
(11567, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'Is Licotar 100 Tablet a habit-forming medicine?', 'No, Licotar 100 Tablet is not habit forming. There are no reports which suggest occurrence of withdrawal symptoms following its discontinuation. Licotar 100 Tablet may cause euphoria (patients may feel extremely happy and overwhelmed) in some individuals who may then take it merely for fun (drug abuse). It is possible that such individuals may become psychologically dependent on this medicine.'),
(11568, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'Does Licotar 100 Tablet have any effect on fertility?', 'Licotar 100 Tablet has not been reported to affect fertility in males or females. However, if you are concerned, consult the doctor.'),
(11569, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'Can I take Licotar 100 Tablet if I am pregnant or breastfeeding?', 'Though no potential side effects have been reported with the use of Licotar 100 Tablet during pregnancy and breastfeeding, it is best to avoid Licotar 100 Tablet during pregnancy and breastfeeding.'),
(11570, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'For how long do I need to continue Licotar 100 Tablet?', 'Licotar 100 Tablet is generally prescribed for long-term use. Keep taking the medicine as advised by your doctor’s advice. However, if you experience any bothersome side effects, talk to your doctor.'),
(11571, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'What if somebody takes excess of Licotar 100 Tablet?', 'Excess of Licotar 100 Tablet may cause dizziness, nausea, vomiting, seizures, shock, heart problems and even coma. If such a situation arises, seek emergency medical support in a nearby hospital.'),
(11572, 'Licotar 100 Tablet', 'Micro Labs Ltd', 'Licotar 100 Tablet', 'Is it safe to take Licotar 100 Tablet if I am on Ritonavir therapy?', 'Be cautious if you are taking Licotar 100 Tablet while on Ritonavir therapy. It is advised to inform your doctor before starting Licotar 100 Tablet. This is because if you are taking Ritonavir for liver or kidney problems then the dose of Licotar 100 Tablet should be modified or reduced.'),
(11573, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'I have been taking Licotar 50 Tablet since nine months and haven’t had any seizures till now. Can I stop taking it now?', 'No, you should not stop taking Licotar 50 Tablet even if you start feeling better. Stopping this medicine suddenly may lead to seizures which can be difficult to control. Consult your doctor if you experience any problems while being on treatment with Licotar 50 Tablet. The doctor may adjust the dose or gradually reduce the dose.'),
(11574, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'Is it safe to drive if I am taking Licotar 50 Tablet?', 'No, you need to be careful while driving or operating heavy machinery until and unless you know how Licotar 50 Tablet affects you. You may experience dizziness or drowsiness and blurred vision, especially during the initial days of treatment. These side effects can also be observed if the dose is increased.'),
(11575, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'What should I do if I forget a dose of Licotar 50 Tablet?', 'If you miss a dose of Licotar 50 Tablet within 6 hours of the scheduled time, take it as soon as you remember. However, if you have forgotten to take the dose for more than 6 hours of the scheduled time then skip the dose and take the next one as scheduled. Do not double the dose to make up for the  missed dose.'),
(11576, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'Is Licotar 50 Tablet a habit-forming medicine?', 'No, Licotar 50 Tablet is not habit forming. There are no reports which suggest occurrence of withdrawal symptoms following its discontinuation. Licotar 50 Tablet may cause euphoria (patients may feel extremely happy and overwhelmed) in some individuals who may then take it merely for fun (drug abuse). It is possible that such individuals may become psychologically dependent on this medicine.'),
(11577, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'Does Licotar 50 Tablet have any effect on fertility?', 'Licotar 50 Tablet has not been reported to affect fertility in males or females. However, if you are concerned, consult the doctor.'),
(11578, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'Can I take Licotar 50 Tablet if I am pregnant or breastfeeding?', 'Though no potential side effects have been reported with the use of Licotar 50 Tablet during pregnancy and breastfeeding, it is best to avoid Licotar 50 Tablet during pregnancy and breastfeeding.'),
(11579, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'For how long do I need to continue Licotar 50 Tablet?', 'Licotar 50 Tablet is generally prescribed for long-term use. Keep taking the medicine as advised by your doctor’s advice. However, if you experience any bothersome side effects, talk to your doctor.'),
(11580, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'What if somebody takes excess of Licotar 50 Tablet?', 'Excess of Licotar 50 Tablet may cause dizziness, nausea, vomiting, seizures, shock, heart problems and even coma. If such a situation arises, seek emergency medical support in a nearby hospital.'),
(11581, 'Licotar 50 Tablet', 'Micro Labs Ltd', 'Licotar 50 Tablet', 'Is it safe to take Licotar 50 Tablet if I am on Ritonavir therapy?', 'Be cautious if you are taking Licotar 50 Tablet while on Ritonavir therapy. It is advised to inform your doctor before starting Licotar 50 Tablet. This is because if you are taking Ritonavir for liver or kidney problems then the dose of Licotar 50 Tablet should be modified or reduced.'),
(11582, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'What is Licotop 40 Injection used for?', 'Licotop 40 Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Licotop 40 Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(11583, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'Can I take antacids along with Licotop 40 Injection?', 'Yes, you can take antacids along with Licotop 40 Injection. Take it 2 hours before or after you take Licotop 40 Injection.'),
(11584, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'How long does it take for Licotop 40 Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Licotop 40 Injection to work properly so you may still have some symptoms during this time.'),
(11585, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'Does Licotop 40 Injection cause weight gain?', 'Although rare but long-term treatment with Licotop 40 Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(11586, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'Can I take alcohol with Licotop 40 Injection?', 'No, alcohol intake is not advised with Licotop 40 Injection. Alcohol itself does not affect the working of Licotop 40 Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(11587, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'What dietary changes should I make to get relief from acidity?', 'Licotop 40 Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(11588, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'Can I take Licotop 40 Injection for a long term?', 'Licotop 40 Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Licotop 40 Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Licotop 40 Injection as advised by your doctor and under their supervision.'),
(11589, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'Are painkillers safe to take along with Licotop 40 Injection?', 'Yes, it is safe to take painkillers along with Licotop 40 Injection. Licotop 40 Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Licotop 40 Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(11590, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'Is a single dose of Licotop 40 Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Licotop 40 Injection you may get relief with the symptoms. Licotop 40 Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Licotop 40 Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Licotop 40 Injection regularly for 2 weeks as prescribed.'),
(11591, 'Licotop 40 Injection', 'Focus Healthcare', 'Licotop 40 Injection', 'What are the long term side effects of Licotop 40 Injection?', 'If Licotop 40 Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(11592, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'What is Licotop 40 Tablet used for?', 'Licotop 40 Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Licotop 40 Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(11593, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'How long does it take for Licotop 40 Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Licotop 40 Tablet to work properly so you may still have some symptoms during this time.'),
(11594, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'Is a single dose of Licotop 40 Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Licotop 40 Tablet you may get relief with the symptoms. Licotop 40 Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Licotop 40 Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Licotop 40 Tablet regularly for 2 weeks as prescribed.'),
(11595, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'Is Licotop 40 Tablet safe?', 'Yes, Licotop 40 Tablet is relatively safe. Most of the people who take Licotop 40 Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(11596, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'Can I take Licotop 40 Tablet for a long term?', 'Licotop 40 Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Licotop 40 Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Licotop 40 Tablet as advised by your doctor and under their supervision.'),
(11597, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'What are the long term side effects of Licotop 40 Tablet?', 'If Licotop 40 Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(11598, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'What is the best time to take Licotop 40 Tablet?', 'Usually, Licotop 40 Tablet is taken once a day, first thing in the morning. If you take Licotop 40 Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(11599, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'Can I stop taking Licotop 40 Tablet if I feel better?', 'If you have been taking Licotop 40 Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Licotop 40 Tablet.'),
(11600, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'Does Licotop 40 Tablet cause weight gain?', 'Although rare but long-term treatment with Licotop 40 Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(11601, 'Licotop 40 Tablet', 'Focus Healthcare', 'Licotop 40 Tablet', 'Can I take alcohol with Licotop 40 Tablet?', 'No, alcohol intake is not advised with Licotop 40 Tablet. Alcohol itself does not affect the working of Licotop 40 Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(11602, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'What is Licotop DM 10mg/40mg Tablet?', 'Licotop DM 10mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(11603, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'Is it safe to use Licotop DM 10mg/40mg Tablet?', 'Licotop DM 10mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(11604, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Licotop DM 10mg/40mg Tablet?', 'The use of Licotop DM 10mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(11605, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'Can the use of Licotop DM 10mg/40mg Tablet cause dry mouth?', 'Yes, the use of Licotop DM 10mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(11606, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'Can the use of Licotop DM 10mg/40mg Tablet cause diarrhea?', 'Yes, the use of Licotop DM 10mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(11607, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'What are the instructions for storage and disposal of Licotop DM 10mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11608, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'What is Licotop DM 10mg/40mg Tablet price?', 'You can get Licotop DM 10mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(11609, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'While taking Licotop DM 10mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(11610, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'Can I take alcohol while taking Licotop DM 10mg/40mg Tablet?', 'No, alcohol intake is not advised with Licotop DM 10mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(11611, 'Licotop DM 10mg/40mg Tablet', 'Focus Healthcare', 'Licotop DM 10mg/40mg Tablet', 'Can I stop taking Licotop DM 10mg/40mg Tablet if I feel better?', 'If you have been taking Licotop DM 10mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(11612, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'What is Licotop-DSR Capsule?', 'Licotop-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(11613, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'Is it safe to use Licotop-DSR Capsule?', 'Licotop-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(11614, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'Are there any specific contraindications associated with the use of Licotop-DSR Capsule?', 'The use of Licotop-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(11615, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'Can the use of Licotop-DSR Capsule cause dry mouth?', 'Yes, the use of Licotop-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(11616, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'Can the use of Licotop-DSR Capsule cause diarrhea?', 'Yes, the use of Licotop-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(11617, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'What are the instructions for storage and disposal of Licotop-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11618, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'What is Licotop-DSR Capsule price?', 'You can get Licotop-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(11619, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'While taking Licotop-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(11620, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'Can I take alcohol while taking Licotop-DSR Capsule?', 'No, alcohol intake is not advised with Licotop-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(11621, 'Licotop-DSR Capsule', 'Focus Healthcare', 'Licotop-DSR Capsule', 'Can I stop taking Licotop-DSR Capsule if I feel better?', 'If you have been taking Licotop-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(11622, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Can other medicines be given at the same time as Licox Dry Syrup?', 'Licox Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Licox Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(11623, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Can I get my child vaccinated while on treatment with Licox Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(11624, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Which lab tests may my child undergo while taking Licox Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(11625, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Can I give a higher than the recommended dose of Licox Dry Syrup to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(11626, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Can I stop giving Licox Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(11627, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Can the use of Licox Dry Syrup cause diarrhea?', 'Yes, Licox Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(11628, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(11629, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(11630, 'Licox Dry Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Licox Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(11631, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'What is Licoxia 90 Tablet used for?', 'Licoxia 90 Tablet is used to reduce the pain and swelling (inflammation) in the joints and muscles of people 16 years of age and older with rheumatoid arthritis, ankylosing spondylitis and gout. Licoxia 90 Tablet is also used for the short term treatment of moderate pain after dental surgery in people 16 years of age and older.'),
(11632, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Is it safe to use Licoxia 90 Tablet?', 'Licoxia 90 Tablet is safe for most patients. However, in some patients, it may cause some unwanted side effects like nausea, vomiting, stomach pain, fatigue, diarrhea, etc. Inform your doctor if you experience any persistent problem due to this medication.'),
(11633, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Can I stop taking Licoxia 90 Tablet when my pain is relieved?', 'Licoxia 90 Tablet should be continued as advised by your doctor, if you are using the medicine for a condition associated with long-term pain. It can be discontinued if you are using it for short-term pain relief.'),
(11634, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Can the use of Licoxia 90 Tablet cause nausea and vomiting?', 'Yes, the use of Licoxia 90 Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(11635, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Can the use of Licoxia 90 Tablet cause dizziness?', 'Yes, the use of Licoxia 90 Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for sometime and resume once you feel better.'),
(11636, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Are there any specific contraindications associated with the use of Licoxia 90 Tablet?', 'The use of Licoxia 90 Tablet is considered to be harmful for patients with known allergy to any of the components of this medicine. It should be avoided in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active or recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(11637, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Is Licoxia 90 Tablet helpful in relieving stomach pain?', 'No, Licoxia 90 Tablet should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(11638, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Can the use of Licoxia 90 Tablet cause damage to kidneys?', 'Yes, the long-term use of Licoxia 90 Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lowers the levels of prostaglandins in the body, leading to kidney damage because of long-term use. Therefore, the use of painkillers is not recommended in patients with underlying kidney disease.'),
(11639, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Is it safe to take a higher than the recommended dose of Licoxia 90 Tablet ?', 'No, taking a higher than the recommended dose of Licoxia 90 Tablet can increase the risks of side effects like stomach pain, nausea, vomiting, indigestion and diarrhea. In fact, using this medicine for a long-term can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(11640, 'Licoxia 90 Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia 90 Tablet', 'Can Licoxia 90 Tablet cause high blood pressure?', 'Yes. Licoxia 90 Tablet can increase blood pressure in some people, especially in high doses, and your doctor may advise you to check your blood pressure at home or even monitor it from time to time. If you have high blood pressure that has not been controlled by treatment, you must inform your doctor before starting treatment with Licoxia 90 Tablet, to avoid any mishap.'),
(11641, 'Licoxia-MR Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia-MR Tablet', 'Can I stop taking Licoxia-MR Tablet when my pain is relieved?', 'Licoxia-MR Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(11642, 'Licoxia-MR Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia-MR Tablet', 'Can the use of Licoxia-MR Tablet cause dizziness?', 'Yes, the use of Licoxia-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(11643, 'Licoxia-MR Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia-MR Tablet', 'Are there any specific contraindications associated with the use of Licoxia-MR Tablet?', 'The use of Licoxia-MR Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDS) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(11644, 'Licoxia-MR Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia-MR Tablet', 'Can I take Licoxia-MR Tablet with Vitamin B-complex?', 'Yes, Licoxia-MR Tablet can be taken with Vitamin B-complex preparations. While Licoxia-MR Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(11645, 'Licoxia-MR Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia-MR Tablet', 'Can the use of Licoxia-MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Licoxia-MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(11646, 'Licoxia-MR Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia-MR Tablet', 'Will Licoxia-MR Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(11647, 'Licoxia-MR Tablet', 'Lairis Healthcare Pvt Ltd', 'Licoxia-MR Tablet', 'What is the recommended storage condition for Licoxia-MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11648, 'Licozac Powder', 'Ajanta Pharma Ltd', 'Licozac Powder', 'Is Licozac Powder safe in pregnancy?', 'Licozac Powder should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licozac Powder.'),
(11649, 'Licozac Powder', 'Ajanta Pharma Ltd', 'Licozac Powder', 'Is Licozac Powder fungicidal or Fungistatic?', 'Licozac Powder has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11650, 'Licozac Powder', 'Ajanta Pharma Ltd', 'Licozac Powder', 'How to use Licozac Powder?', 'Use Licozac Powder exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11651, 'Licozac Powder', 'Ajanta Pharma Ltd', 'Licozac Powder', 'How long does it take for Licozac Powder to work?', 'For different ailments, Licozac Powder works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11652, 'Licozac Powder', 'Ajanta Pharma Ltd', 'Licozac Powder', 'How should I store Licozac Powder?', 'Keep Licozac Powder in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11653, 'Licozac Powder', 'Ajanta Pharma Ltd', 'Licozac Powder', 'Is Licozac Powder safe to use in children?', 'Yes, Licozac Powder is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11654, 'Licozine 5mg Tablet', 'Focus Healthcare', 'Licozine 5mg Tablet', 'Is Licozine 5mg Tablet a steroid? What is it used for?', 'No, Licozine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(11655, 'Licozine 5mg Tablet', 'Focus Healthcare', 'Licozine 5mg Tablet', 'Does Licozine 5mg Tablet make you tired and drowsy?', 'Yes, Licozine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(11656, 'Licozine 5mg Tablet', 'Focus Healthcare', 'Licozine 5mg Tablet', 'How long does it take for Licozine 5mg Tablet to work?', 'Licozine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11657, 'Licozine 5mg Tablet', 'Focus Healthcare', 'Licozine 5mg Tablet', 'Can I take Licozine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Licozine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(11658, 'Licozine 5mg Tablet', 'Focus Healthcare', 'Licozine 5mg Tablet', 'Is it safe to take Licozine 5mg Tablet for a long time?', 'Licozine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Licozine 5mg Tablet for only as long as you need it.'),
(11659, 'Licozine 5mg Tablet', 'Focus Healthcare', 'Licozine 5mg Tablet', 'For how long should I continue Licozine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Licozine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Licozine 5mg Tablet'),
(11660, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(11661, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'Can I decrease the dose of Licozine-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(11662, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'How should Licozine-M Syrup be stored?', 'Licozine-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(11663, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'Can Licozine-M Syrup make my child sleepy?', 'Licozine-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(11664, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Licozine-M Syrup?', 'No, don’t start Licozine-M Syrup without speaking to your child’s doctor. Moreover, Licozine-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(11665, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Licozine-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(11666, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Licozine-M Syrup to my child?', 'Some studies show that Licozine-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(11667, 'Licozine-M Syrup', 'Focus Healthcare', 'Licozine-M Syrup', 'Can I use Licozine-M Syrup for treating acute asthma attacks in my child?', 'Licozine-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(11668, 'Licozine-M Tablet', 'Focus Healthcare', 'Licozine-M Tablet', 'What is Licozine-M Tablet?', 'Licozine-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(11669, 'Licozine-M Tablet', 'Focus Healthcare', 'Licozine-M Tablet', 'Can the use of Licozine-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Licozine-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(11670, 'Licozine-M Tablet', 'Focus Healthcare', 'Licozine-M Tablet', 'Can Licozine-M Tablet be stopped when allergy symptoms are relieved?', 'No, Licozine-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(11671, 'Licozine-M Tablet', 'Focus Healthcare', 'Licozine-M Tablet', 'Can the use of Licozine-M Tablet cause dry mouth?', 'Yes, the use of Licozine-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11672, 'Licozine-M Tablet', 'Focus Healthcare', 'Licozine-M Tablet', 'Can I drink alcohol while taking Licozine-M Tablet?', 'No, do not take alcohol while taking Licozine-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Licozine-M Tablet.'),
(11673, 'Licozine-M Tablet', 'Focus Healthcare', 'Licozine-M Tablet', 'Will Licozine-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Licozine-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(11674, 'Licozine-M Tablet', 'Focus Healthcare', 'Licozine-M Tablet', 'What are the instructions for storage and disposal of Licozine-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11675, 'Licozole 1% Cream', 'Inovin Pharmaceuticals Private Limited', 'Licozole 1% Cream', 'Is Licozole 1% Cream safe in pregnancy?', 'Licozole 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licozole 1% Cream.'),
(11676, 'Licozole 1% Cream', 'Inovin Pharmaceuticals Private Limited', 'Licozole 1% Cream', 'Is Licozole 1% Cream fungicidal or Fungistatic?', 'Licozole 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11677, 'Licozole 1% Cream', 'Inovin Pharmaceuticals Private Limited', 'Licozole 1% Cream', 'How to use Licozole 1% Cream?', 'Use Licozole 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11678, 'Licozole 1% Cream', 'Inovin Pharmaceuticals Private Limited', 'Licozole 1% Cream', 'How long does it take for Licozole 1% Cream to work?', 'For different ailments, Licozole 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11679, 'Licozole 1% Cream', 'Inovin Pharmaceuticals Private Limited', 'Licozole 1% Cream', 'How should I store Licozole 1% Cream?', 'Keep Licozole 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11680, 'Licozole 1% Cream', 'Inovin Pharmaceuticals Private Limited', 'Licozole 1% Cream', 'Is Licozole 1% Cream safe to use in children?', 'Yes, Licozole 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11681, 'Licozole 1% Dusting Powder', 'Biocore Pharmaceuticals', 'Licozole 1% Dusting Powder', 'Is Licozole 1% Dusting Powder safe in pregnancy?', 'Licozole 1% Dusting Powder should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licozole 1% Dusting Powder.'),
(11682, 'Licozole 1% Dusting Powder', 'Biocore Pharmaceuticals', 'Licozole 1% Dusting Powder', 'Is Licozole 1% Dusting Powder fungicidal or Fungistatic?', 'Licozole 1% Dusting Powder has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11683, 'Licozole 1% Dusting Powder', 'Biocore Pharmaceuticals', 'Licozole 1% Dusting Powder', 'How to use Licozole 1% Dusting Powder?', 'Use Licozole 1% Dusting Powder exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11684, 'Licozole 1% Dusting Powder', 'Biocore Pharmaceuticals', 'Licozole 1% Dusting Powder', 'How long does it take for Licozole 1% Dusting Powder to work?', 'For different ailments, Licozole 1% Dusting Powder works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11685, 'Licozole 1% Dusting Powder', 'Biocore Pharmaceuticals', 'Licozole 1% Dusting Powder', 'How should I store Licozole 1% Dusting Powder?', 'Keep Licozole 1% Dusting Powder in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11686, 'Licozole 1% Dusting Powder', 'Biocore Pharmaceuticals', 'Licozole 1% Dusting Powder', 'Is Licozole 1% Dusting Powder safe to use in children?', 'Yes, Licozole 1% Dusting Powder is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11687, 'Licozole 1% Lotion', 'Biocore Pharmaceuticals', 'Licozole 1% Lotion', 'Is Licozole 1% Lotion safe in pregnancy?', 'Licozole 1% Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licozole 1% Lotion.'),
(11688, 'Licozole 1% Lotion', 'Biocore Pharmaceuticals', 'Licozole 1% Lotion', 'Is Licozole 1% Lotion fungicidal or Fungistatic?', 'Licozole 1% Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11689, 'Licozole 1% Lotion', 'Biocore Pharmaceuticals', 'Licozole 1% Lotion', 'How to use Licozole 1% Lotion?', 'Use Licozole 1% Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11690, 'Licozole 1% Lotion', 'Biocore Pharmaceuticals', 'Licozole 1% Lotion', 'How long does it take for Licozole 1% Lotion to work?', 'For different ailments, Licozole 1% Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11691, 'Licozole 1% Lotion', 'Biocore Pharmaceuticals', 'Licozole 1% Lotion', 'How should I store Licozole 1% Lotion?', 'Keep Licozole 1% Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11692, 'Licozole 1% Lotion', 'Biocore Pharmaceuticals', 'Licozole 1% Lotion', 'Is Licozole 1% Lotion safe to use in children?', 'Yes, Licozole 1% Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11693, 'Licozole 1% Ointment', 'Biocore Pharmaceuticals', 'Licozole 1% Ointment', 'Is Licozole 1% Ointment safe in pregnancy?', 'Licozole 1% Ointment should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licozole 1% Ointment.'),
(11694, 'Licozole 1% Ointment', 'Biocore Pharmaceuticals', 'Licozole 1% Ointment', 'Is Licozole 1% Ointment fungicidal or Fungistatic?', 'Licozole 1% Ointment has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11695, 'Licozole 1% Ointment', 'Biocore Pharmaceuticals', 'Licozole 1% Ointment', 'How to use Licozole 1% Ointment?', 'Use Licozole 1% Ointment exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11696, 'Licozole 1% Ointment', 'Biocore Pharmaceuticals', 'Licozole 1% Ointment', 'How long does it take for Licozole 1% Ointment to work?', 'For different ailments, Licozole 1% Ointment works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11697, 'Licozole 1% Ointment', 'Biocore Pharmaceuticals', 'Licozole 1% Ointment', 'How should I store Licozole 1% Ointment?', 'Keep Licozole 1% Ointment in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11698, 'Licozole 1% Ointment', 'Biocore Pharmaceuticals', 'Licozole 1% Ointment', 'Is Licozole 1% Ointment safe to use in children?', 'Yes, Licozole 1% Ointment is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11699, 'Lictum A Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum A Syrup', 'Q. My child has a cough with no mucus. Can I give Lictum A Syrup?', 'No, Lictum A Syrup is advised for the treatment of wet cough. It aims to expel the mucus from the airway tract, thereby relieving your child from throat irritation, congestion and rendering him a soothing effect. Whereas, for a dry cough, cough suppressants are a better option. So, it will be wise to ask your child’s doctor before giving any medicine to your child.'),
(11700, 'Lictum A Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum A Syrup', 'Q. What if my child takes too much Lictum A Syrup?', 'An overdose or a prolonged intake of Lictum A Syrup may cause serious side effects like seizures, rapid heart rate, and excess salivation. Make sure to give this medicine to your child strictly as per the prescribed dose, time, and way. You must also ensure not to stop the medication abruptly even if your child starts to feel better. Sudden withdrawal of this medicine may worsen your child’s condition.'),
(11701, 'Lictum A Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum A Syrup', 'Q. My child has a severe cough. Can I give him two cough medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by your child’s doctor. In case of confusion, always consult your child’s doctor before giving any medications to your child.'),
(11702, 'Lictum A Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum A Syrup', 'Q. Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines that have been formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before giving it to your child. Follow the prescribed dose strictly.'),
(11703, 'Lictum A Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum A Syrup', 'Q. How should Lictum A Syrup be stored?', 'Lictum A Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(11704, 'Lictum Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum Syrup', 'Can Lictum Syrup be used in a dry cough?', 'No, Lictum Syrup is used in wet cough i.e. a cough with mucus production.'),
(11705, 'Lictum Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum Syrup', 'Are there any contraindications associated with the use of Lictum Syrup?', 'It is not recommended to use Lictum Syrup in patients who are allergic to any of its component. It should also be avoided in patients having heart disease and peptic ulcer.'),
(11706, 'Lictum Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum Syrup', 'Will a higher than the recommended dose of Lictum Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(11707, 'Lictum Syrup', 'Perk Pharmaceuticals Ltd', 'Lictum Syrup', 'What are the instructions for the storage and disposal of Lictum Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11708, 'Licwadm 1% Cream', 'Anglica Healthcare', 'Licwadm 1% Cream', 'Is Licwadm 1% Cream safe in pregnancy?', 'Licwadm 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licwadm 1% Cream.'),
(11709, 'Licwadm 1% Cream', 'Anglica Healthcare', 'Licwadm 1% Cream', 'Is Licwadm 1% Cream fungicidal or Fungistatic?', 'Licwadm 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11710, 'Licwadm 1% Cream', 'Anglica Healthcare', 'Licwadm 1% Cream', 'How to use Licwadm 1% Cream?', 'Use Licwadm 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11711, 'Licwadm 1% Cream', 'Anglica Healthcare', 'Licwadm 1% Cream', 'How long does it take for Licwadm 1% Cream to work?', 'For different ailments, Licwadm 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11712, 'Licwadm 1% Cream', 'Anglica Healthcare', 'Licwadm 1% Cream', 'How should I store Licwadm 1% Cream?', 'Keep Licwadm 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11713, 'Licwadm 1% Cream', 'Anglica Healthcare', 'Licwadm 1% Cream', 'Is Licwadm 1% Cream safe to use in children?', 'Yes, Licwadm 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11714, 'Licwazol 1% Lotion', 'Dysnec Pharma', 'Licwazol 1% Lotion', 'Is Licwazol 1% Lotion safe in pregnancy?', 'Licwazol 1% Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Licwazol 1% Lotion.'),
(11715, 'Licwazol 1% Lotion', 'Dysnec Pharma', 'Licwazol 1% Lotion', 'Is Licwazol 1% Lotion fungicidal or Fungistatic?', 'Licwazol 1% Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11716, 'Licwazol 1% Lotion', 'Dysnec Pharma', 'Licwazol 1% Lotion', 'How to use Licwazol 1% Lotion?', 'Use Licwazol 1% Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11717, 'Licwazol 1% Lotion', 'Dysnec Pharma', 'Licwazol 1% Lotion', 'How long does it take for Licwazol 1% Lotion to work?', 'For different ailments, Licwazol 1% Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11718, 'Licwazol 1% Lotion', 'Dysnec Pharma', 'Licwazol 1% Lotion', 'How should I store Licwazol 1% Lotion?', 'Keep Licwazol 1% Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11719, 'Licwazol 1% Lotion', 'Dysnec Pharma', 'Licwazol 1% Lotion', 'Is Licwazol 1% Lotion safe to use in children?', 'Yes, Licwazol 1% Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11720, 'Licy 5mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy 5mg Tablet', 'Is Licy 5mg Tablet a steroid? What is it used for?', 'No, Licy 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(11721, 'Licy 5mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy 5mg Tablet', 'Does Licy 5mg Tablet make you tired and drowsy?', 'Yes, Licy 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(11722, 'Licy 5mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy 5mg Tablet', 'How long does it take for Licy 5mg Tablet to work?', 'Licy 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(11723, 'Licy 5mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy 5mg Tablet', 'Can I take Licy 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Licy 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(11724, 'Licy 5mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy 5mg Tablet', 'Is it safe to take Licy 5mg Tablet for a long time?', 'Licy 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Licy 5mg Tablet for only as long as you need it.'),
(11725, 'Licy 5mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy 5mg Tablet', 'For how long should I continue Licy 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Licy 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Licy 5mg Tablet'),
(11726, 'Licy M 5mg/10mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M 5mg/10mg Tablet', 'What is Licy M 5mg/10mg Tablet?', 'Licy M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(11727, 'Licy M 5mg/10mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M 5mg/10mg Tablet', 'Can the use of Licy M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Licy M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(11728, 'Licy M 5mg/10mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M 5mg/10mg Tablet', 'Can Licy M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Licy M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(11729, 'Licy M 5mg/10mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M 5mg/10mg Tablet', 'Can the use of Licy M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Licy M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11730, 'Licy M 5mg/10mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M 5mg/10mg Tablet', 'Can I drink alcohol while taking Licy M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Licy M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Licy M 5mg/10mg Tablet.'),
(11731, 'Licy M 5mg/10mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M 5mg/10mg Tablet', 'Will Licy M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Licy M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(11732, 'Licy M 5mg/10mg Tablet', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Licy M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11733, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(11734, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'Can I decrease the dose of Licy M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(11735, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'How should Licy M Oral Suspension be stored?', 'Licy M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(11736, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'Can Licy M Oral Suspension make my child sleepy?', 'Licy M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(11737, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Licy M Oral Suspension?', 'No, don’t start Licy M Oral Suspension without speaking to your child’s doctor. Moreover, Licy M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(11738, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Licy M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(11739, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Licy M Oral Suspension to my child?', 'Some studies show that Licy M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(11740, 'Licy M Oral Suspension', 'Aarotax Pharmaceutical Pvt Ltd', 'Licy M Oral Suspension', 'Can I use Licy M Oral Suspension for treating acute asthma attacks in my child?', 'Licy M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(11741, 'Liczet 5mg Tablet', 'Morgen Healthcare', 'Liczet 5mg Tablet', 'Is Liczet 5mg Tablet a steroid? What is it used for?', 'No, Liczet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(11742, 'Liczet 5mg Tablet', 'Morgen Healthcare', 'Liczet 5mg Tablet', 'Does Liczet 5mg Tablet make you tired and drowsy?', 'Yes, Liczet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(11743, 'Liczet 5mg Tablet', 'Morgen Healthcare', 'Liczet 5mg Tablet', 'How long does it take for Liczet 5mg Tablet to work?', 'Liczet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(11744, 'Liczet 5mg Tablet', 'Morgen Healthcare', 'Liczet 5mg Tablet', 'Can I take Liczet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liczet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(11745, 'Liczet 5mg Tablet', 'Morgen Healthcare', 'Liczet 5mg Tablet', 'Is it safe to take Liczet 5mg Tablet for a long time?', 'Liczet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liczet 5mg Tablet for only as long as you need it.'),
(11746, 'Liczet 5mg Tablet', 'Morgen Healthcare', 'Liczet 5mg Tablet', 'For how long should I continue Liczet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liczet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liczet 5mg Tablet'),
(11747, 'Liczet M 5mg/10mg Tablet', 'Morgen Healthcare', 'Liczet M 5mg/10mg Tablet', 'What is Liczet M 5mg/10mg Tablet?', 'Liczet M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(11748, 'Liczet M 5mg/10mg Tablet', 'Morgen Healthcare', 'Liczet M 5mg/10mg Tablet', 'Can the use of Liczet M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liczet M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(11749, 'Liczet M 5mg/10mg Tablet', 'Morgen Healthcare', 'Liczet M 5mg/10mg Tablet', 'Can Liczet M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Liczet M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(11750, 'Liczet M 5mg/10mg Tablet', 'Morgen Healthcare', 'Liczet M 5mg/10mg Tablet', 'Can the use of Liczet M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Liczet M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11751, 'Liczet M 5mg/10mg Tablet', 'Morgen Healthcare', 'Liczet M 5mg/10mg Tablet', 'Can I drink alcohol while taking Liczet M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Liczet M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liczet M 5mg/10mg Tablet.'),
(11752, 'Liczet M 5mg/10mg Tablet', 'Morgen Healthcare', 'Liczet M 5mg/10mg Tablet', 'Will Liczet M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liczet M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(11753, 'Liczet M 5mg/10mg Tablet', 'Morgen Healthcare', 'Liczet M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Liczet M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11754, 'Liczide 80mg Tablet', 'Axis Life Science Pvt Ltd', 'Liczide 80mg Tablet', 'What is the best time to take Liczide 80mg Tablet?', 'Take Liczide 80mg Tablet before meals or exactly as instructed by your doctor. There is evidence stating that Liczide 80mg Tablet works best at controlling post meal high blood sugar levels when taken 30 minutes before breakfast. So, if you are supposed to take it once daily, take it in the morning with breakfast with a glass of water.'),
(11755, 'Liczide 80mg Tablet', 'Axis Life Science Pvt Ltd', 'Liczide 80mg Tablet', 'Is Liczide 80mg Tablet the same as metformin?', 'No, Liczide 80mg Tablet is not the same as metformin. Although both these oral medicines are used in the treatment of type 2 diabetes, the way they work to reduce the sugar levels are different. While Liczide 80mg Tablet acts by increasing the secretion of insulin by the pancreas, metformin acts by improving the functioning and effectiveness of the insulin already available in the body.'),
(11756, 'Liczide 80mg Tablet', 'Axis Life Science Pvt Ltd', 'Liczide 80mg Tablet', 'Can you take metformin and Liczide 80mg Tablet at the same time?', 'Yes, Liczide 80mg Tablet and metformin can be taken at the same time but only if prescribed by the doctor. Your doctor may have prescribed taking the two together to control your uncontrolled sugar levels. However, taking the two together may cause low blood sugar which may also occur if you delay or miss a meal, exercise more than usual or take it with insulin. Follow the instructions given by your doctor strictly to avoid such complications.'),
(11757, 'Liczide 80mg Tablet', 'Axis Life Science Pvt Ltd', 'Liczide 80mg Tablet', 'Is Liczide 80mg Tablet bad for kidneys?', 'No, Liczide 80mg Tablet is not harmful if your kidney function is normal. Any previous case of kidney problem should be informed to the doctor, so that the use of Liczide 80mg Tablet can be assessed. This is done in order to analyze whether Liczide 80mg Tablet can be given or not because it is principally excreted by the kidney. If you have kidney problems you will be started at a lower dose.'),
(11758, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'What is Liczide M 80mg/500mg Tablet SR?', 'Liczide M 80mg/500mg Tablet SR is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(11759, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'What are the possible side effects of Liczide M 80mg/500mg Tablet SR?', 'The use of Liczide M 80mg/500mg Tablet SR is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(11760, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'Can the use of Liczide M 80mg/500mg Tablet SR cause hypoglycemia?', 'Yes, the use of Liczide M 80mg/500mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(11761, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'Can the use of Liczide M 80mg/500mg Tablet SR cause lactic acidosis?', 'Yes, the use of Liczide M 80mg/500mg Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin associated lactic acidosis). It is a rare side effect associated with the use of metformin. It is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Liczide M 80mg/500mg Tablet SR and immediately consult your doctor.'),
(11762, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'Can the use of Liczide M 80mg/500mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Liczide M 80mg/500mg Tablet SR can cause vitamin B12 deficiency on long-term use. The deficiency occurs as the medicine interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can have tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(11763, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'Are there any specific conditions in which Liczide M 80mg/500mg Tablet SR should not to be taken?', 'The use of Liczide M 80mg/500mg Tablet SR should be avoided in patients with known allergy to any of the component or excipients of this medicine. It is also avoided in patients with moderate to severe kidney disease or with underlying metabolic acidosis including diabetic ketoacidosis.'),
(11764, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'Is it safe to take alcohol while I am also taking Liczide M 80mg/500mg Tablet SR?', 'No, it is not safe to take alcohol along with Liczide M 80mg/500mg Tablet SR. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(11765, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'What is Liczide M 80mg/500mg Tablet SR?', 'Liczide M 80mg/500mg Tablet SR is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(11766, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'What are the possible side effects of Liczide M 80mg/500mg Tablet SR?', 'The use of Liczide M 80mg/500mg Tablet SR is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(11767, 'Liczide M 80mg/500mg Tablet SR', 'Axis Life Science Pvt Ltd', 'Liczide M 80mg/500mg Tablet SR', 'Can the use of Liczide M 80mg/500mg Tablet SR cause hypoglycemia?', 'Yes, the use of Liczide M 80mg/500mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(11768, 'Lidaglip Tablet', 'Cure & Care Therapeutics', 'Lidaglip Tablet', 'When should I take Lidaglip Tablet?', 'You can take Lidaglip Tablet tablets before, with or after meals. If you have been prescribed to take this medicine once daily, then take it in the morning. In case you have to take it twice daily, then you should prefer taking the first dose in the morning and the second dose in the evening.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11769, 'Lidaglip Tablet', 'Cure & Care Therapeutics', 'Lidaglip Tablet', 'Does Lidaglip Tablet cause hypoglycemia?', 'Yes, Lidaglip Tablet may cause hypoglycemia (low blood sugar), but the chances are lesser as compared to other antidiabetic drugs. Evidence suggests that treatment with Lidaglip Tablet has been shown to cause hypoglycemia in very rare cases. The risk is low even in those who are prone to hypoglycemia like elderly people or people being treated with insulin. However, the chance of hypoglycemia increases if Lidaglip Tablet is taken along with other antidiabetic drugs.'),
(11770, 'Lidaglip Tablet', 'Cure & Care Therapeutics', 'Lidaglip Tablet', 'Does Lidaglip Tablet cause weight gain?', 'No, Lidaglip Tablet does not cause weight gain. Moreover, medicines, such as Lidaglip Tablet, are generally supposed to decrease weight since they act by increasing satiety (feeling of fullness) and delaying emptying of the stomach. This further decreases hunger, restricting the patient from eating more than required.'),
(11771, 'Lidaglip Tablet', 'Cure & Care Therapeutics', 'Lidaglip Tablet', 'Is Lidaglip Tablet the same as sitagliptin?', 'No, Lidaglip Tablet is not the same as Sitagliptin, but both drugs belong to the same class. Additionally, these two drugs have a similar mechanism of decreasing blood glucose levels.'),
(11772, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'Can the use of Lidaglip-M Tablet lead to hypoglycemia?', 'The use of Lidaglip-M Tablet does not usually cause hypoglycemia (low blood sugar level) alone. But it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise, or take any other antidiabetic medicine along with it. So, regular monitoring of blood sugar levels is important. It is recommended to always carry glucose tablets, honey, or fruit juice with you.'),
(11773, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'Can the use of Lidaglip-M Tablet cause nausea and vomiting?', 'Yes, the use of Lidaglip-M Tablet can cause nausea and vomiting. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark-colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(11774, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'Are there any specific contraindications associated with the use of Lidaglip-M Tablet?', 'The use of Lidaglip-M Tablet should be avoided in patients with known allergies to any of the components or excipients of this medicine. The use of this medicine is also considered to be harmful to patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis, or diabetic ketoacidosis.'),
(11775, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'What is the storage condition for the Lidaglip-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11776, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'What is Lidaglip-M Tablet?', 'Lidaglip-M Tablet is a combination of two anti-diabetic drugs: Metformin and Vildagliptin. Metformin is an anti-diabetic medicine and belongs to the class of biguanides. It lowers the glucose production in the liver, delays glucose absorption from the intestines, and increases the body\'s sensitivity to insulin. Vildagliptin inhibits the enzyme DPP4 inhibitor and increases the release of insulin from the pancreas. This combination is not advised for patients below 18 years of age.'),
(11777, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'Can the use of Lidaglip-M Tablet cause lactic acidosis?', 'Yes, the use of Lidaglip-M Tablet can lead to lactic acidosis. It is a medical emergency that is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a very rare side effect associated with the use of metformin and therefore, it is avoided in patients with underlying kidney disease, old age patients, or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain, or slow heart rate. If you have these symptoms, stop taking Lidaglip-M Tablet and immediately consult your doctor.'),
(11778, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'Can the use of Lidaglip-M Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Lidaglip-M Tablet can cause Vitamin B12 deficiency with long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems.'),
(11779, 'Lidaglip-M Tablet', 'Cure & Care Therapeutics', 'Lidaglip-M Tablet', 'Is it safe to use Lidaglip-M Tablet?', 'Yes, it is safe to use Lidaglip-M Tablet if you take it for the prescribed duration and according to the dosage advised by the doctor. However, despite taking the prescribed dosage you might experience common side effects like nausea, diarrhea, vomiting, stomach upset, headache, nasal congestion, sore throat, respiratory tract infection, hypoglycemia (low blood sugar level) in combination with insulin or sulphonylurea. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(11780, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'What is Lidamol 100mg/500mg Tablet?', 'Lidamol 100mg/500mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(11781, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'Can I stop taking Lidamol 100mg/500mg Tablet when my pain is relieved?', 'Lidamol 100mg/500mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(11782, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'Can the use of Lidamol 100mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Lidamol 100mg/500mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(11783, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lidamol 100mg/500mg Tablet?', 'The use of Lidamol 100mg/500mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(11784, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'Can I take Lidamol 100mg/500mg Tablet with Vitamin B-complex?', 'Yes, Lidamol 100mg/500mg Tablet can be taken with Vitamin B-complex preparations. While Lidamol 100mg/500mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(11785, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'Does Lidamol 100mg/500mg Tablet help in relieving stomach pain?', 'No, Lidamol 100mg/500mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(11786, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'Can the use of Lidamol 100mg/500mg Tablet cause damage to the liver?', 'Lidamol 100mg/500mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(11787, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'Is it safe to take a higher than the recommended dose of Lidamol 100mg/500mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Lidamol 100mg/500mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(11788, 'Lidamol 100mg/500mg Tablet', 'Paradigm Healthcare', 'Lidamol 100mg/500mg Tablet', 'What are the recommended storage conditions for Lidamol 100mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11789, 'Lidayn Topical Mint', 'Global Dent Aids Pvt Ltd', 'Lidayn Topical Mint', 'What is Lidayn Topical Mint used for?', 'This medication is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(11790, 'Lidayn Topical Mint', 'Global Dent Aids Pvt Ltd', 'Lidayn Topical Mint', 'Is Lidayn Topical Mint toxic?', 'If Lidayn Topical Mint is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(11791, 'Lidayn Topical Mint', 'Global Dent Aids Pvt Ltd', 'Lidayn Topical Mint', 'How long does it take for Lidayn Topical Mint to work?', 'Lidayn Topical Mint is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(11792, 'Lidayn Topical Mint', 'Global Dent Aids Pvt Ltd', 'Lidayn Topical Mint', 'Who should not be given Lidayn Topical Mint?', 'Lidayn Topical Mint should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(11793, 'Lidayn Topical Mint', 'Global Dent Aids Pvt Ltd', 'Lidayn Topical Mint', 'Is Lidayn Topical Mint safe?', 'Lidayn Topical Mint is safe for usage when applied topically as instructed by a doctor. Lidayn Topical Mint in injectable formulation must not be self-medicated. Always follow the doctor\'s advice regarding its use.'),
(11794, 'Lidayn Topical Mint', 'Global Dent Aids Pvt Ltd', 'Lidayn Topical Mint', 'Can I take this medicine before eating food?', 'Yes, but you should keep a minimum gap of 60 minutes between  drug use and subsequent food intake.'),
(11795, 'Lidayn Topical Mint', 'Global Dent Aids Pvt Ltd', 'Lidayn Topical Mint', 'Can this medicine be used in children?', 'No, this medicine is not approved for use in children below 18 years of age. It is advised to consult your doctor before giving this medicine to children.'),
(11796, 'Lidbac 1200mg Tablet SR', 'Norgam Medicaments Pvt Ltd', 'Lidbac 1200mg Tablet SR', 'Can the use of Lidbac 1200mg Tablet SR cause diarrhea?', 'Yes, the use of Lidbac 1200mg Tablet SR can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11797, 'Lidbac 1200mg Tablet SR', 'Norgam Medicaments Pvt Ltd', 'Lidbac 1200mg Tablet SR', 'What foods should I avoid while taking Lidbac 1200mg Tablet SR?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lidbac 1200mg Tablet SR can result in elevation of blood pressure, which may result in an emergency situation.'),
(11798, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Is Lide 100mg Tablet an antibiotic?', 'Lide 100mg Tablet is not an antibiotic, it belongs to the class of medicines known as non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug) which helps in relieving pain associated with various disease conditions.'),
(11799, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Can I take Lide 100mg Tablet with paracetamol?', 'Lide 100mg Tablet and paracetamol belong to the same class of medicines known as non-steroidal anti-inflammatory drugs (NSAIDs; pain-relieving drugs). Taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding. However, please consult your doctor before using the two medicines together.'),
(11800, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Does Lide 100mg Tablet contain aspirin?', 'Lide 100mg Tablet is a non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug). It does not contain aspirin.'),
(11801, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Is Lide 100mg Tablet safe?', 'Lide 100mg Tablet is safe to use if taken at prescribed dose and duration as advised by your doctor.'),
(11802, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Can I take Lide 100mg Tablet for headache?', 'Lide 100mg Tablet can be taken for a headache only when advised by your doctor.'),
(11803, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Does Lide 100mg Tablet make you drowsy (feeling sleepy)?', 'Lide 100mg Tablet does not make you feel drowsy at prescribed doses. However, an overdose of Lide 100mg Tablet can make you drowsy (feeling sleepy).'),
(11804, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Does Lide 100mg Tablet contain sulphur?', 'No, Lide 100mg Tablet does not contain sulphur.'),
(11805, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'What does Lide 100mg Tablet treat or used for?', 'Lide 100mg Tablet is used to treat acute pain, painful osteoarthritis (degeneration of joints) and primary dysmenorrhea (painful menstruation) in adolescents and adults above 12 years old.'),
(11806, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Can I take Lide 100mg Tablet with ibuprofen?', 'Lide 100mg Tablet can be taken with ibuprofen. No drug-drug interactions have been reported between the two. However, taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding.  Please consult your doctor before taking the two medicines together.u003cbr>'),
(11807, 'Lide 100mg Tablet', 'Jpee Drugs', 'Lide 100mg Tablet', 'Can I take Lide 100mg Tablet with aspirin?', 'Lide 100mg Tablet can be taken with aspirin. No drug-drug interactions have been clinically observed between the two. However, this does not mean that interactions cannot occur. Please consult your doctor before taking the two medicines together.'),
(11808, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Is Lide 200mg Tablet an antibiotic?', 'Lide 200mg Tablet is not an antibiotic, it belongs to the class of medicines known as non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug) which helps in relieving pain associated with various disease conditions.'),
(11809, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Can I take Lide 200mg Tablet with paracetamol?', 'Lide 200mg Tablet and paracetamol belong to the same class of medicines known as non-steroidal anti-inflammatory drugs (NSAIDs; pain-relieving drugs). Taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding. However, please consult your doctor before using the two medicines together.'),
(11810, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Does Lide 200mg Tablet contain aspirin?', 'Lide 200mg Tablet is a non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug). It does not contain aspirin.'),
(11811, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Is Lide 200mg Tablet safe?', 'Lide 200mg Tablet is safe to use if taken at prescribed dose and duration as advised by your doctor.'),
(11812, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Can I take Lide 200mg Tablet for headache?', 'Lide 200mg Tablet can be taken for a headache only when advised by your doctor.'),
(11813, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Does Lide 200mg Tablet make you drowsy (feeling sleepy)?', 'Lide 200mg Tablet does not make you feel drowsy at prescribed doses. However, an overdose of Lide 200mg Tablet can make you drowsy (feeling sleepy).'),
(11814, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Does Lide 200mg Tablet contain sulphur?', 'No, Lide 200mg Tablet does not contain sulphur.'),
(11815, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'What does Lide 200mg Tablet treat or used for?', 'Lide 200mg Tablet is used to treat acute pain, painful osteoarthritis (degeneration of joints) and primary dysmenorrhea (painful menstruation) in adolescents and adults above 12 years old.'),
(11816, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Can I take Lide 200mg Tablet with ibuprofen?', 'Lide 200mg Tablet can be taken with ibuprofen. No drug-drug interactions have been reported between the two. However, taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding.  Please consult your doctor before taking the two medicines together.u003cbr>'),
(11817, 'Lide 200mg Tablet', 'Jpee Drugs', 'Lide 200mg Tablet', 'Can I take Lide 200mg Tablet with aspirin?', 'Lide 200mg Tablet can be taken with aspirin. No drug-drug interactions have been clinically observed between the two. However, this does not mean that interactions cannot occur. Please consult your doctor before taking the two medicines together.'),
(11818, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'What is Lide P 100mg/325mg Tablet?', 'Lide P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(11819, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'Can I stop taking Lide P 100mg/325mg Tablet when my pain is relieved?', 'Lide P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(11820, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'Can the use of Lide P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lide P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(11821, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lide P 100mg/325mg Tablet?', 'The use of Lide P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(11822, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'Can I take Lide P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Lide P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lide P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(11823, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'Does Lide P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Lide P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(11824, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'Can the use of Lide P 100mg/325mg Tablet cause damage to the liver?', 'Lide P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(11825, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lide P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Lide P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(11826, 'Lide P 100mg/325mg Tablet', 'Mahawat Healthcare Pvt Ltd', 'Lide P 100mg/325mg Tablet', 'What are the recommended storage conditions for Lide P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11827, 'Lidep 300mg Tablet', 'Osho Pharma Pvt Ltd', 'Lidep 300mg Tablet', 'How quickly does Lidep 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lidep 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lidep 300mg Tablet. Do not stop taking Lidep 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(11828, 'Lidep 300mg Tablet', 'Osho Pharma Pvt Ltd', 'Lidep 300mg Tablet', 'Does Lidep 300mg Tablet make you sleepy?', 'Yes, Lidep 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(11829, 'Lidep 300mg Tablet', 'Osho Pharma Pvt Ltd', 'Lidep 300mg Tablet', 'Is Lidep 300mg Tablet bad for kidneys?', 'Yes, Lidep 300mg Tablet may cause kidney problems. Lidep 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lidep 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lidep 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(11830, 'Lidep 300mg Tablet', 'Osho Pharma Pvt Ltd', 'Lidep 300mg Tablet', 'Can Lidep 300mg Tablet cause gain in weight?', 'Lidep 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lidep 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lidep 300mg Tablet or some other reason.'),
(11831, 'Lidep 300mg Tablet', 'Osho Pharma Pvt Ltd', 'Lidep 300mg Tablet', 'What is the most important information I should know about Lidep 300mg Tablet?', 'Lidep 300mg Tablet therapy should only be started if adequate facilities for assessing Lidep 300mg Tablet levels are available. This is because Lidep 300mg Tablet toxicity is related to increased levels of Lidep 300mg Tablet in blood. Lidep 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lidep 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(11832, 'Lidep 300mg Tablet', 'Osho Pharma Pvt Ltd', 'Lidep 300mg Tablet', 'How should Lidep 300mg Tablet be taken?', 'Take Lidep 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lidep 300mg Tablet levels.'),
(11833, 'Lidep 300mg Tablet', 'Osho Pharma Pvt Ltd', 'Lidep 300mg Tablet', 'Which medicines decrease Lidep 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lidep 300mg Tablet since many medicines interfere with the working of Lidep 300mg Tablet. Some medicines decrease the levels of Lidep 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(11834, 'Lidfast 2% Injection', 'Samarth Life Sciences Pvt Ltd', 'Lidfast 2% Injection', 'Q. How long does the effect of Lidfast 2% Injection lasts?', 'The anesthetic effect of Lidfast 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(11835, 'Lidfast 2% Injection', 'Samarth Life Sciences Pvt Ltd', 'Lidfast 2% Injection', 'Q. Is Lidfast 2% Injection injection painful?', 'No, Lidfast 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Lidfast 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(11836, 'Lidfast 2% Injection', 'Samarth Life Sciences Pvt Ltd', 'Lidfast 2% Injection', 'Q. Who should not be given Lidfast 2% Injection?', 'Lidfast 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(11837, 'Lidfast 2% Injection', 'Samarth Life Sciences Pvt Ltd', 'Lidfast 2% Injection', 'Q. Can Lidfast 2% Injection be abused?', 'No, abuse of Lidfast 2% Injection has not been observed yet. There are very rare reports of Lidfast 2% Injection injection causing any euphoric effect. However, Lidfast 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(11838, 'Lidfast 2% Jelly', 'Samarth Life Sciences Pvt Ltd', 'Lidfast 2% Jelly', 'What is Lidfast 2% Jelly used for?', 'Lidfast 2% Jelly is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(11839, 'Lidfast 2% Jelly', 'Samarth Life Sciences Pvt Ltd', 'Lidfast 2% Jelly', 'How long does it take for Lidfast 2% Jelly to work?', 'Lidfast 2% Jelly is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(11840, 'Lidfast 2% Jelly', 'Samarth Life Sciences Pvt Ltd', 'Lidfast 2% Jelly', 'Is Lidfast 2% Jelly toxic?', 'If Lidfast 2% Jelly is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(11841, 'Lidking Tablet', 'MaxRelief Pharmaceuticals', 'Lidking Tablet', 'Can the use of Lidking Tablet cause diarrhea?', 'Yes, the use of Lidking Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11842, 'Lidking Tablet', 'MaxRelief Pharmaceuticals', 'Lidking Tablet', 'What foods should I avoid while taking Lidking Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lidking Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(11843, 'Lidmax 600mg Tablet', 'Skymax Life Science Pvt Ltd', 'Lidmax 600mg Tablet', 'Can the use of Lidmax 600mg Tablet cause diarrhea?', 'Yes, the use of Lidmax 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11844, 'Lidmax 600mg Tablet', 'Skymax Life Science Pvt Ltd', 'Lidmax 600mg Tablet', 'What foods should I avoid while taking Lidmax 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lidmax 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(11845, 'Lidmed 10mg Capsule', 'Arechar Healthcare', 'Lidmed 10mg Capsule', 'Can I take Lidmed 10mg Capsule empty stomach?', 'Lidmed 10mg Capsule may be taken with or without food. Always take it exactly as prescribed by your doctor. Do not crush, cut or chew the capsules. Swallow it whole with water. You should take Lidmed 10mg Capsule at about the same time on the scheduled days.'),
(11846, 'Lidmed 10mg Capsule', 'Arechar Healthcare', 'Lidmed 10mg Capsule', 'Can Lidmed 10mg Capsule be given to patients who are on dialysis?', 'Yes, Lidmed 10mg Capsule is given to dialysis patients after the dialysis is done. However, the doctor may adjust the dose if needed in patients undergoing.'),
(11847, 'Lidmed 10mg Capsule', 'Arechar Healthcare', 'Lidmed 10mg Capsule', 'What are the side effects of Lidmed 10mg Capsule?', 'Lidmed 10mg Capsule may cause side effects which include diarrhea, constipation, stomach pain, loss of appetite, weight loss, weakness, dizziness, change in ability to taste, and pain or burning of the tongue, mouth, or throat. The medicine may also cause decreased sense of touch, burning or tingling in the hands or feet, difficulty falling asleep or staying asleep, depression, and joint, muscle, bone, or back pain. You may also experience sweating, dry skin, abnormal hair growth in women, uncontrollable shaking of a part of the body, decrease in sexual desire or ability or  painful, frequent, or urgent urination. Tell your doctor if any of these symptoms are severe or do not go away.'),
(11848, 'Lidmed 10mg Capsule', 'Arechar Healthcare', 'Lidmed 10mg Capsule', 'Can Lidmed 10mg Capsule cause cancer?', 'People with multiple myeloma (a form of cancer that begins in plasma cells, a type of white blood cell) who receive melphalan (chemotherapy) and a blood stem cell transplant with the addition of Lidmed 10mg Capsule have a higher risk of developing new cancers. These types of cancers may include certain blood cancers (acute myelogenous leukemia or AML) and a type of lymphoma called Hodgkin lymphoma. Talk to your doctor about your risk of developing new cancers if you are taking Lidmed 10mg Capsule.'),
(11849, 'Lidmed 10mg Capsule', 'Arechar Healthcare', 'Lidmed 10mg Capsule', 'Do I need to get any blood tests done while on Lidmed 10mg Capsule?', 'Your doctor will ask you to have a blood test before treatment and every week for the first 8 weeks of treatment. You may need to continue taking the blood tests at least every month after treatment with Lidmed 10mg Capsule ends. Frequent blood tests are important as Lidmed 10mg Capsule may decrease the blood cells that help fight infection (white blood cells) and help the blood to clot (platelets).'),
(11850, 'Lidmed 10mg Capsule', 'Arechar Healthcare', 'Lidmed 10mg Capsule', 'Do I need to use birth control methods while using Lidmed 10mg Capsule?', 'Women who can become pregnant must use two acceptable forms of birth control for 4 weeks before they begin taking Lidmed 10mg Capsule. Continue using contraceptives during your treatment, including the times when your doctor tells you to temporarily stop taking Lidmed 10mg Capsule, and for 4 weeks after your final dose. In men, Lidmed 10mg Capsule may pass into the semen while they are on treatment. Therefore, men must always use a latex condom every time they have sexual contact, even if they have had a vasectomy (surgery that prevents a man from causing a pregnancy). Use the contraceptive while you are taking Lidmed 10mg Capsule, during any breaks in your treatment, and for 4 weeks after your final dose.'),
(11851, 'Lidmed 25mg Capsule', 'Arechar Healthcare', 'Lidmed 25mg Capsule', 'Can I take Lidmed 25mg Capsule empty stomach?', 'Lidmed 25mg Capsule may be taken with or without food. Always take it exactly as prescribed by your doctor. Do not crush, cut or chew the capsules. Swallow it whole with water. You should take Lidmed 25mg Capsule at about the same time on the scheduled days.'),
(11852, 'Lidmed 25mg Capsule', 'Arechar Healthcare', 'Lidmed 25mg Capsule', 'Can Lidmed 25mg Capsule be given to patients who are on dialysis?', 'Yes, Lidmed 25mg Capsule is given to dialysis patients after the dialysis is done. However, the doctor may adjust the dose if needed in patients undergoing.'),
(11853, 'Lidmed 25mg Capsule', 'Arechar Healthcare', 'Lidmed 25mg Capsule', 'What are the side effects of Lidmed 25mg Capsule?', 'Lidmed 25mg Capsule may cause side effects which include diarrhea, constipation, stomach pain, loss of appetite, weight loss, weakness, dizziness, change in ability to taste, and pain or burning of the tongue, mouth, or throat. The medicine may also cause decreased sense of touch, burning or tingling in the hands or feet, difficulty falling asleep or staying asleep, depression, and joint, muscle, bone, or back pain. You may also experience sweating, dry skin, abnormal hair growth in women, uncontrollable shaking of a part of the body, decrease in sexual desire or ability or  painful, frequent, or urgent urination. Tell your doctor if any of these symptoms are severe or do not go away.'),
(11854, 'Lidmed 25mg Capsule', 'Arechar Healthcare', 'Lidmed 25mg Capsule', 'Can Lidmed 25mg Capsule cause cancer?', 'People with multiple myeloma (a form of cancer that begins in plasma cells, a type of white blood cell) who receive melphalan (chemotherapy) and a blood stem cell transplant with the addition of Lidmed 25mg Capsule have a higher risk of developing new cancers. These types of cancers may include certain blood cancers (acute myelogenous leukemia or AML) and a type of lymphoma called Hodgkin lymphoma. Talk to your doctor about your risk of developing new cancers if you are taking Lidmed 25mg Capsule.'),
(11855, 'Lidmed 25mg Capsule', 'Arechar Healthcare', 'Lidmed 25mg Capsule', 'Do I need to get any blood tests done while on Lidmed 25mg Capsule?', 'Your doctor will ask you to have a blood test before treatment and every week for the first 8 weeks of treatment. You may need to continue taking the blood tests at least every month after treatment with Lidmed 25mg Capsule ends. Frequent blood tests are important as Lidmed 25mg Capsule may decrease the blood cells that help fight infection (white blood cells) and help the blood to clot (platelets).'),
(11856, 'Lidmed 25mg Capsule', 'Arechar Healthcare', 'Lidmed 25mg Capsule', 'Do I need to use birth control methods while using Lidmed 25mg Capsule?', 'Women who can become pregnant must use two acceptable forms of birth control for 4 weeks before they begin taking Lidmed 25mg Capsule. Continue using contraceptives during your treatment, including the times when your doctor tells you to temporarily stop taking Lidmed 25mg Capsule, and for 4 weeks after your final dose. In men, Lidmed 25mg Capsule may pass into the semen while they are on treatment. Therefore, men must always use a latex condom every time they have sexual contact, even if they have had a vasectomy (surgery that prevents a man from causing a pregnancy). Use the contraceptive while you are taking Lidmed 25mg Capsule, during any breaks in your treatment, and for 4 weeks after your final dose.'),
(11857, 'Lidnox Solution', 'Yurekha Laboratories', 'Lidnox Solution', 'What is Lidnox Solution used for?', 'Lidnox Solution is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(11858, 'Lidnox Solution', 'Yurekha Laboratories', 'Lidnox Solution', 'How long does it take for Lidnox Solution to work?', 'Lidnox Solution is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(11859, 'Lidnox Solution', 'Yurekha Laboratories', 'Lidnox Solution', 'Is Lidnox Solution toxic?', 'If Lidnox Solution is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(11860, 'Lidocaine 1% Injection', 'Sunways India Pvt Ltd', 'Lidocaine 1% Injection', 'How long does the effect of Lidocaine 1% Injection lasts?', 'The anesthetic effect of Lidocaine 1% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(11861, 'Lidocaine 1% Injection', 'Sunways India Pvt Ltd', 'Lidocaine 1% Injection', 'Is Lidocaine 1% Injection injection painful?', 'No, Lidocaine 1% Injection injection does not cause pain except when it is given as spinal anesthesia. Lidocaine 1% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(11862, 'Lidocaine 1% Injection', 'Sunways India Pvt Ltd', 'Lidocaine 1% Injection', 'Who should not be given Lidocaine 1% Injection?', 'Lidocaine 1% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(11863, 'Lidocaine 1% Injection', 'Sunways India Pvt Ltd', 'Lidocaine 1% Injection', 'Can Lidocaine 1% Injection be abused?', 'No, abuse of Lidocaine 1% Injection has not been observed yet. There are very rare reports of Lidocaine 1% Injection injection causing any euphoric effect. However, Lidocaine 1% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(11864, 'Lidocane Oral Solution', 'AMPS Biotech Pvt Ltd', 'Lidocane Oral Solution', 'Can Lidocane Oral Solution be used for dental anesthesia?', 'Your dentist may sometimes use Lidocane Oral Solution during dental procedures. It helps prevent the pain or discomfort caused by some dental procedures such as deep scaling, when giving you an injection, or when fitting your new dentures.'),
(11865, 'Lidocyn Plus Injection', 'Harson Laboratories', 'Lidocyn Plus Injection', 'How long does the effect of Lidocyn Plus Injection lasts?', 'The anesthetic effect of Lidocyn Plus Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(11866, 'Lidocyn Plus Injection', 'Harson Laboratories', 'Lidocyn Plus Injection', 'Is Lidocyn Plus Injection injection painful?', 'No, Lidocyn Plus Injection injection does not cause pain except when it is given as spinal anesthesia. Lidocyn Plus Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(11867, 'Lidocyn Plus Injection', 'Harson Laboratories', 'Lidocyn Plus Injection', 'Who should not be given Lidocyn Plus Injection?', 'Lidocyn Plus Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(11868, 'Lidocyn Plus Injection', 'Harson Laboratories', 'Lidocyn Plus Injection', 'Can Lidocyn Plus Injection be abused?', 'No, abuse of Lidocyn Plus Injection has not been observed yet. There are very rare reports of Lidocyn Plus Injection injection causing any euphoric effect. However, Lidocyn Plus Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(11869, 'Li-Dof 5mg Tablet', 'Doff Biotech Pvt Ltd', 'Li-Dof 5mg Tablet', 'Is Li-Dof 5mg Tablet a steroid? What is it used for?', 'No, Li-Dof 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(11870, 'Li-Dof 5mg Tablet', 'Doff Biotech Pvt Ltd', 'Li-Dof 5mg Tablet', 'Does Li-Dof 5mg Tablet make you tired and drowsy?', 'Yes, Li-Dof 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(11871, 'Li-Dof 5mg Tablet', 'Doff Biotech Pvt Ltd', 'Li-Dof 5mg Tablet', 'How long does it take for Li-Dof 5mg Tablet to work?', 'Li-Dof 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(11872, 'Li-Dof 5mg Tablet', 'Doff Biotech Pvt Ltd', 'Li-Dof 5mg Tablet', 'Can I take Li-Dof 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Li-Dof 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(11873, 'Li-Dof 5mg Tablet', 'Doff Biotech Pvt Ltd', 'Li-Dof 5mg Tablet', 'Is it safe to take Li-Dof 5mg Tablet for a long time?', 'Li-Dof 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Li-Dof 5mg Tablet for only as long as you need it.'),
(11874, 'Li-Dof 5mg Tablet', 'Doff Biotech Pvt Ltd', 'Li-Dof 5mg Tablet', 'For how long should I continue Li-Dof 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Li-Dof 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Li-Dof 5mg Tablet'),
(11875, 'Lidofix 2% Injection', 'Varenyam Healthcare Pvt Ltd', 'Lidofix 2% Injection', 'How long does the effect of Lidofix 2% Injection lasts?', 'The anesthetic effect of Lidofix 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(11876, 'Lidofix 2% Injection', 'Varenyam Healthcare Pvt Ltd', 'Lidofix 2% Injection', 'Is Lidofix 2% Injection injection painful?', 'No, Lidofix 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Lidofix 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(11877, 'Lidofix 2% Injection', 'Varenyam Healthcare Pvt Ltd', 'Lidofix 2% Injection', 'Who should not be given Lidofix 2% Injection?', 'Lidofix 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(11878, 'Lidofix 2% Injection', 'Varenyam Healthcare Pvt Ltd', 'Lidofix 2% Injection', 'Can Lidofix 2% Injection be abused?', 'No, abuse of Lidofix 2% Injection has not been observed yet. There are very rare reports of Lidofix 2% Injection injection causing any euphoric effect. However, Lidofix 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(11879, 'Lidon 500mg Capsule', 'Donnel Healthcare Pvt Ltd', 'Lidon 500mg Capsule', 'How long does Lidon 500mg Capsule take to work?', 'Usually, Lidon 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(11880, 'Lidon 500mg Capsule', 'Donnel Healthcare Pvt Ltd', 'Lidon 500mg Capsule', 'What if I don\'t get better after using Lidon 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11881, 'Lidon 500mg Capsule', 'Donnel Healthcare Pvt Ltd', 'Lidon 500mg Capsule', 'Is Lidon 500mg Capsule effective?', 'Lidon 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lidon 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lidon 500mg Capsule too early, the symptoms may return or worsen.'),
(11882, 'Lidon 500mg Capsule', 'Donnel Healthcare Pvt Ltd', 'Lidon 500mg Capsule', 'Can I stop taking Lidon 500mg Capsule when I feel better?', 'No, do not stop taking Lidon 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(11883, 'Lidon 500mg Capsule', 'Donnel Healthcare Pvt Ltd', 'Lidon 500mg Capsule', 'Can the use of Lidon 500mg Capsule cause diarrhea?', 'Yes, the use of Lidon 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11884, 'Lidon 500mg Capsule', 'Donnel Healthcare Pvt Ltd', 'Lidon 500mg Capsule', 'Is Lidon 500mg Capsule safe?', 'Lidon 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(11885, 'Lidorinse Oral Solution', 'Makshi Healthcare', 'Lidorinse Oral Solution', 'Can Lidorinse Oral Solution be used for dental anesthesia?', 'Your dentist may sometimes use Lidorinse Oral Solution during dental procedures. It helps prevent the pain or discomfort caused by some dental procedures such as deep scaling, when giving you an injection, or when fitting your new dentures.'),
(11886, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'Is Lidox 200 Tablet DT safe to use?', 'Lidox 200 Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(11887, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'Can the use of Lidox 200 Tablet DT cause diarrhea?', 'Yes, the use of Lidox 200 Tablet DT can cause diarrhea. Lidox 200 Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(11888, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'Is Lidox 200 Tablet DT an antibiotic?', 'Yes, Lidox 200 Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(11889, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'Can Lidox 200 Tablet DT cause constipation?', 'Yes, Lidox 200 Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(11890, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'Can I stop taking Lidox 200 Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lidox 200 Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(11891, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'How long does Lidox 200 Tablet DT take to work?', 'Usually, Lidox 200 Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(11892, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'What if I do not get better after using Lidox 200 Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(11893, 'Lidox 200 Tablet DT', 'Liza Life Sciences', 'Lidox 200 Tablet DT', 'Can Lidox 200 Tablet DT treat UTI?', 'Yes, Lidox 200 Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lidox 200 Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(11894, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'What if I give too much of Lidox Dry Syrup by mistake?', 'An extra dose of Lidox Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lidox Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(11895, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'Are there any possible serious side effects of Lidox Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(11896, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'Can other medicines be given at the same time as Lidox Dry Syrup?', 'Lidox Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lidox Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(11897, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'Can I get my child vaccinated while on treatment with Lidox Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(11898, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'Which lab tests may my child undergo while taking Lidox Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(11899, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(11900, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(11901, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(11902, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'Can Lidox Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lidox Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lidox Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(11903, 'Lidox Dry Syrup', 'Liza Life Sciences', 'Lidox Dry Syrup', 'Can Lidox Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lidox Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(11904, 'Lidoxy LB 100mg Capsule', 'Alpha Nova Pharmaceuticals', 'Lidoxy LB 100mg Capsule', 'What is Lidoxy LB 100mg Capsule?', 'Lidoxy LB 100mg Capsule is a combination of two medicines: Doxycycline and Lactobacillus. Doxycycline is an antibiotic medicine belonging to the class called \'__\'tetracyclines”. It is used to treat bacterial infections in many different parts of the body. On the other hand, Lactobacillus is a live microorganism which restores the balance of good bacteria in the intestine that may get upset with the use of antibiotics.'),
(11905, 'Lidoxy LB 100mg Capsule', 'Alpha Nova Pharmaceuticals', 'Lidoxy LB 100mg Capsule', 'Can I drink milk while taking Lidoxy LB 100mg Capsule?', 'No, you should avoid using milk and milk products while taking Lidoxy LB 100mg Capsule. Consuming dairy products along with Lidoxy LB 100mg Capsule can decrease its absorption from the stomach, which may lead to inadequate affect of this medicine.'),
(11906, 'Lidoxy LB 100mg Capsule', 'Alpha Nova Pharmaceuticals', 'Lidoxy LB 100mg Capsule', 'What is the recommended storage condition for Lidoxy LB 100mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11907, 'Lidoxy LB 100mg Capsule', 'Alpha Nova Pharmaceuticals', 'Lidoxy LB 100mg Capsule', 'How long after taking Lidoxy LB 100mg Capsule can I eat?', 'It is best to wait for 2 hours after consuming Lidoxy LB 100mg Capsule. Consuming food along with Lidoxy LB 100mg Capsule may decrease its absorption from the stomach.'),
(11908, 'Lidoxy LB 100mg Capsule', 'Alpha Nova Pharmaceuticals', 'Lidoxy LB 100mg Capsule', 'Can I take Lidoxy LB 100mg Capsule with food if its causing stomach upset?', 'Yes, you can take Lidoxy LB 100mg Capsule with food if its causing you stomach upset. However, avoid consuming milk and milk products 1 hr before and 2 hr after taking this medicine.'),
(11909, 'Lidrin 2.5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 2.5 Tablet', 'Can I take Lidrin 2.5 Tablet for excessive salivation?', 'Yes, Lidrin 2.5 Tablet can be used as it is helpful in cases of excessive salivation and drooling which can be seen in Parkinson’s disease or due to medicines (neuroleptics). It should be taken only if prescribed by your doctor.'),
(11910, 'Lidrin 2.5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 2.5 Tablet', 'Can Lidrin 2.5 Tablet cause addiction?', 'Yes, Lidrin 2.5 Tablet may cause addiction as it has abuse potential though it occurs rarely. The doctors are usually cautious while prescribing this medicine and do not prescribe this medicine to patients whose symptoms are not genuine.'),
(11911, 'Lidrin 2.5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 2.5 Tablet', 'What should I avoid while taking Lidrin 2.5 Tablet?', 'Avoid driving or operating machines if Lidrin 2.5 Tablet causes blurred vision or makes you feel dizzy, confused or disorientated. You should also avoid taking alcohol as it may increase your drowsiness. Taking this medicine may affect your body’s ability to regulate its temperature. As a result, your body temperature may rise more than normal. So, you should also avoid areas with high humidity and high temperature.'),
(11912, 'Lidrin 2.5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 2.5 Tablet', 'Who should not take Lidrin 2.5 Tablet?', 'Patients who are allergic to Lidrin 2.5 Tablet or any of the other ingredients of this medicine should not take Lidrin 2.5 Tablet. This medicine should be avoided in cases of glaucoma (increased pressure in the eye) in patients who have a blockage in the intestine (gut). In addition, patients who are facing difficulty, or are unable to, pass urine and are not currently receiving any form of treatment for this, should avoid taking Lidrin 2.5 Tablet.'),
(11913, 'Lidrin 2.5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 2.5 Tablet', 'How can I identify overdose symptoms?', 'In case of an overdose, you may experience fast heartbeat, agitation, restlessness, confusion, insomnia (severe inability to sleep), excitement (although occasionally people may feel anxious and aggressive), and disorientation. If eyes are exposed to light then the pupils in the eye may not open or close and hallucinations (seeing or hearing things that are not real) may also occur. In severe cases, you may feel very sleepy, fall into unconsciousness, or into a coma. If you experience any such symptoms contact your doctor or seek immediate help from the nearest hospital emergency department.'),
(11914, 'Lidrin 2.5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 2.5 Tablet', 'How long does Lidrin 2.5 Tablet take to work?', 'After an hour of starting Lidrin 2.5 Tablet most people start experiencing the effects. However, the medicine may take some time for showing full benefits. Consult your doctor if you do not see improvement.'),
(11915, 'Lidrin 2.5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 2.5 Tablet', 'Can I stop taking Lidrin 2.5 Tablet?', 'No, you should not stop taking Lidrin 2.5 Tablet suddenly as rebound parkinsonian symptoms may occur. Take the medicine as long as symptoms are there. Your doctor will decide the probable duration required for the medicine.'),
(11916, 'Lidrin 5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 5 Tablet', 'Can I take Lidrin 5 Tablet for excessive salivation?', 'Yes, Lidrin 5 Tablet can be used as it is helpful in cases of excessive salivation and drooling which can be seen in Parkinson’s disease or due to medicines (neuroleptics). It should be taken only if prescribed by your doctor.'),
(11917, 'Lidrin 5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 5 Tablet', 'Can Lidrin 5 Tablet cause addiction?', 'Yes, Lidrin 5 Tablet may cause addiction as it has abuse potential though it occurs rarely. The doctors are usually cautious while prescribing this medicine and do not prescribe this medicine to patients whose symptoms are not genuine.'),
(11918, 'Lidrin 5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 5 Tablet', 'What should I avoid while taking Lidrin 5 Tablet?', 'Avoid driving or operating machines if Lidrin 5 Tablet causes blurred vision or makes you feel dizzy, confused or disorientated. You should also avoid taking alcohol as it may increase your drowsiness. Taking this medicine may affect your body’s ability to regulate its temperature. As a result, your body temperature may rise more than normal. So, you should also avoid areas with high humidity and high temperature.'),
(11919, 'Lidrin 5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 5 Tablet', 'Who should not take Lidrin 5 Tablet?', 'Patients who are allergic to Lidrin 5 Tablet or any of the other ingredients of this medicine should not take Lidrin 5 Tablet. This medicine should be avoided in cases of glaucoma (increased pressure in the eye) in patients who have a blockage in the intestine (gut). In addition, patients who are facing difficulty, or are unable to, pass urine and are not currently receiving any form of treatment for this, should avoid taking Lidrin 5 Tablet.'),
(11920, 'Lidrin 5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 5 Tablet', 'How can I identify overdose symptoms?', 'In case of an overdose, you may experience fast heartbeat, agitation, restlessness, confusion, insomnia (severe inability to sleep), excitement (although occasionally people may feel anxious and aggressive), and disorientation. If eyes are exposed to light then the pupils in the eye may not open or close and hallucinations (seeing or hearing things that are not real) may also occur. In severe cases, you may feel very sleepy, fall into unconsciousness, or into a coma. If you experience any such symptoms contact your doctor or seek immediate help from the nearest hospital emergency department.'),
(11921, 'Lidrin 5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 5 Tablet', 'How long does Lidrin 5 Tablet take to work?', 'After an hour of starting Lidrin 5 Tablet most people start experiencing the effects. However, the medicine may take some time for showing full benefits. Consult your doctor if you do not see improvement.'),
(11922, 'Lidrin 5 Tablet', 'Solarium Pharmaceuticals', 'Lidrin 5 Tablet', 'Can I stop taking Lidrin 5 Tablet?', 'No, you should not stop taking Lidrin 5 Tablet suddenly as rebound parkinsonian symptoms may occur. Take the medicine as long as symptoms are there. Your doctor will decide the probable duration required for the medicine.'),
(11923, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'What if I miss my dose?', 'Take Lidsol Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(11924, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'Can I stop taking Lidsol Tablet when I feel better?', 'No, do not stop taking Lidsol Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(11925, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'What is Lidsol Tablet used for?', 'Lidsol Tablet is used in the treatment of bacterial infections. Cefuroxime treats infections of acute or chronic bronchitis, tonsillitis,  gonorrhea, syphilis, pneumonia, and urinary tract infection. Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(11926, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'Does the use of Lidsol Tablet help to treat UTI?', 'Urinary tract infections (UTIs) are among the most common infections people suffer from. The use of Lidsol Tablet is usually helpful in treating urinary tract infection.'),
(11927, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'Can the use of Lidsol Tablet cause diarrhea?', 'Yes, the use of Lidsol Tablet can cause diarrhea. Antibiotics can kill good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(11928, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'Is the use of Lidsol Tablet helpful in the treatment of bronchitis?', 'Yes, Lidsol Tablet is helpful in the treatment of bronchitis.'),
(11929, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'Is the use of Lidsol Tablet contraindicated in patients with the impaired kidney?', 'The drug is eliminated by the renal mechanisms and a patient with impaired renal function will clear it more slowly. This can prove harmful for the patient. Therefore, caution is advised when administering Lidsol Tablet to patients with renal impairment or renal failure.'),
(11930, 'Lidsol Tablet', 'Medsol India Overseas Pvt Ltd', 'Lidsol Tablet', 'What are the instructions for the storage and disposal of Lidsol Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(11931, 'Lidzin 600 Tablet', 'Signa Medisolutions Pvt Ltd', 'Lidzin 600 Tablet', 'Q. Can the use of Lidzin 600 Tablet cause diarrhea?', 'Yes, the use of Lidzin 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11932, 'Lidzin 600 Tablet', 'Signa Medisolutions Pvt Ltd', 'Lidzin 600 Tablet', 'Q. What foods should I avoid while taking Lidzin 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lidzin 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(11933, 'Lidzole 1% Cream', 'SBM Pharmaceuticals', 'Lidzole 1% Cream', 'Is Lidzole 1% Cream safe in pregnancy?', 'Lidzole 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lidzole 1% Cream.'),
(11934, 'Lidzole 1% Cream', 'SBM Pharmaceuticals', 'Lidzole 1% Cream', 'Is Lidzole 1% Cream fungicidal or Fungistatic?', 'Lidzole 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(11935, 'Lidzole 1% Cream', 'SBM Pharmaceuticals', 'Lidzole 1% Cream', 'How to use Lidzole 1% Cream?', 'Use Lidzole 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(11936, 'Lidzole 1% Cream', 'SBM Pharmaceuticals', 'Lidzole 1% Cream', 'How long does it take for Lidzole 1% Cream to work?', 'For different ailments, Lidzole 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(11937, 'Lidzole 1% Cream', 'SBM Pharmaceuticals', 'Lidzole 1% Cream', 'How should I store Lidzole 1% Cream?', 'Keep Lidzole 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(11938, 'Lidzole 1% Cream', 'SBM Pharmaceuticals', 'Lidzole 1% Cream', 'Is Lidzole 1% Cream safe to use in children?', 'Yes, Lidzole 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(11939, 'Lidzon 600mg Tablet', 'Snu Biocare', 'Lidzon 600mg Tablet', 'Can the use of Lidzon 600mg Tablet cause diarrhea?', 'Yes, the use of Lidzon 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11940, 'Lidzon 600mg Tablet', 'Snu Biocare', 'Lidzon 600mg Tablet', 'What foods should I avoid while taking Lidzon 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lidzon 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(11941, 'Liecet Kid 2.5mg Oral Suspension', 'Mits Healthcare Pvt Ltd', 'Liecet Kid 2.5mg Oral Suspension', 'My child is restless and unable to sleep properly at night. Can I give Liecet Kid  2.5mg Oral Suspension?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(11942, 'Liecet Kid 2.5mg Oral Suspension', 'Mits Healthcare Pvt Ltd', 'Liecet Kid 2.5mg Oral Suspension', 'Can other medicines be given at the same time as Liecet Kid  2.5mg Oral Suspension?', 'Liecet Kid  2.5mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Liecet Kid  2.5mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(11943, 'Liecet Kid 2.5mg Oral Suspension', 'Mits Healthcare Pvt Ltd', 'Liecet Kid 2.5mg Oral Suspension', 'How much Liecet Kid  2.5mg Oral Suspension should I give to my child?', 'Liecet Kid  2.5mg Oral Suspension should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(11944, 'Liecet Kid 2.5mg Oral Suspension', 'Mits Healthcare Pvt Ltd', 'Liecet Kid 2.5mg Oral Suspension', 'What if I give too much of Liecet Kid  2.5mg Oral Suspension by mistake?', 'Although Liecet Kid  2.5mg Oral Suspension is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(11945, 'Liecet Kid 2.5mg Oral Suspension', 'Mits Healthcare Pvt Ltd', 'Liecet Kid 2.5mg Oral Suspension', 'How should Liecet Kid  2.5mg Oral Suspension be stored?', 'Store Liecet Kid  2.5mg Oral Suspension at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(11946, 'Liecet Kid 2.5mg Oral Suspension', 'Mits Healthcare Pvt Ltd', 'Liecet Kid 2.5mg Oral Suspension', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(11947, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(11948, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'Can I decrease the dose of Liecet M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(11949, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'How should Liecet M Syrup be stored?', 'Liecet M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(11950, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'Can Liecet M Syrup make my child sleepy?', 'Liecet M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(11951, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Liecet M Syrup?', 'No, don’t start Liecet M Syrup without speaking to your child’s doctor. Moreover, Liecet M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(11952, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Liecet M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(11953, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Liecet M Syrup to my child?', 'Some studies show that Liecet M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(11954, 'Liecet M Syrup', 'Mits Healthcare Pvt Ltd', 'Liecet M Syrup', 'Can I use Liecet M Syrup for treating acute asthma attacks in my child?', 'Liecet M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(11955, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'What if I give an excess of Lienon 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(11956, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lienon 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(11957, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lienon 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lienon 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(11958, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'Can Lienon 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lienon 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(11959, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'Can other medicines be given at the same time as Lienon 100mg Dry Syrup?', 'Lienon 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lienon 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(11960, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lienon 100mg Dry Syrup?', 'For children receiving Lienon 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(11961, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lienon 100mg Dry Syrup to my child?', 'Avoid giving Lienon 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lienon 100mg Dry Syrup to your child.'),
(11962, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'What food items should my child avoid while taking Lienon 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lienon 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(11963, 'Lienon 100mg Dry Syrup', 'Kerwin Formulations', 'Lienon 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lienon 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lienon 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(11964, 'Lienon 600mg Infusion', 'Kerwin Formulations', 'Lienon 600mg Infusion', 'Can the use of Lienon 600mg Infusion cause diarrhea?', 'Yes, the use of Lienon 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11965, 'Lienon 600mg Infusion', 'Kerwin Formulations', 'Lienon 600mg Infusion', 'What foods should I avoid while taking Lienon 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lienon 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(11966, 'Lievo 250mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 250mg Tablet', 'Is Lievo 250mg Tablet safe?', 'Lievo 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11967, 'Lievo 250mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 250mg Tablet', 'What if I forget to take a dose of Lievo 250mg Tablet?', 'If you forget a dose of Lievo 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(11968, 'Lievo 250mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 250mg Tablet', 'Can the use of Lievo 250mg Tablet cause diarrhea?', 'Yes, the use of Lievo 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11969, 'Lievo 250mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 250mg Tablet', 'Can I stop taking Lievo 250mg Tablet when I feel better?', 'No, do not stop taking Lievo 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lievo 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lievo 250mg Tablet in the dose and duration advised by the doctor.'),
(11970, 'Lievo 250mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 250mg Tablet', 'Can the use of Lievo 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lievo 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lievo 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(11971, 'Lievo 500mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 500mg Tablet', 'Is Lievo 500mg Tablet safe?', 'Lievo 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11972, 'Lievo 500mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 500mg Tablet', 'What if I forget to take a dose of Lievo 500mg Tablet?', 'If you forget a dose of Lievo 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(11973, 'Lievo 500mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 500mg Tablet', 'Can the use of Lievo 500mg Tablet cause diarrhea?', 'Yes, the use of Lievo 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(11974, 'Lievo 500mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 500mg Tablet', 'Can I stop taking Lievo 500mg Tablet when I feel better?', 'No, do not stop taking Lievo 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lievo 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lievo 500mg Tablet in the dose and duration advised by the doctor.'),
(11975, 'Lievo 500mg Tablet', 'Hamax Pharmaceuticals', 'Lievo 500mg Tablet', 'Can the use of Lievo 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lievo 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lievo 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(11976, 'Liezen-M Tablet', 'Lumaire Labs Pvt Ltd', 'Liezen-M Tablet', 'What is Liezen-M Tablet?', 'Liezen-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(11977, 'Liezen-M Tablet', 'Lumaire Labs Pvt Ltd', 'Liezen-M Tablet', 'Can the use of Liezen-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liezen-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(11978, 'Liezen-M Tablet', 'Lumaire Labs Pvt Ltd', 'Liezen-M Tablet', 'Can Liezen-M Tablet be stopped when allergy symptoms are relieved?', 'No, Liezen-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(11979, 'Liezen-M Tablet', 'Lumaire Labs Pvt Ltd', 'Liezen-M Tablet', 'Can the use of Liezen-M Tablet cause dry mouth?', 'Yes, the use of Liezen-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(11980, 'Liezen-M Tablet', 'Lumaire Labs Pvt Ltd', 'Liezen-M Tablet', 'Can I drink alcohol while taking Liezen-M Tablet?', 'No, do not take alcohol while taking Liezen-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liezen-M Tablet.'),
(11981, 'Liezen-M Tablet', 'Lumaire Labs Pvt Ltd', 'Liezen-M Tablet', 'Will Liezen-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liezen-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(11982, 'Liezen-M Tablet', 'Lumaire Labs Pvt Ltd', 'Liezen-M Tablet', 'What are the instructions for storage and disposal of Liezen-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11983, 'Lif Taz Injection', 'Emcure Pharmaceuticals Ltd', 'Lif Taz Injection', 'How long does Lif Taz Injection takes to work?', 'Usually, Lif Taz Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(11984, 'Lif Taz Injection', 'Emcure Pharmaceuticals Ltd', 'Lif Taz Injection', 'What if I don\'t get better after using Lif Taz Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(11985, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'For how long can Lifacin 500mg Injection be taken?', 'The usual course of treatment with Lifacin 500mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lifacin 500mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(11986, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'Is Lifacin 500mg Injection safe?', 'Lifacin 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(11987, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'How is Lifacin 500mg Injection administered?', 'Lifacin 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lifacin 500mg Injection.'),
(11988, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lifacin 500mg Injection should be taken in the recommended dose only. Overdose of Lifacin 500mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(11989, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'What are the instructions for the storage and disposal of Lifacin 500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(11990, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'What if I don\'t get better after using Lifacin 500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(11991, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'Can I stop taking Lifacin 500mg Injection when I feel better?', 'No, do not stop taking Lifacin 500mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(11992, 'Lifacin 500mg Injection', 'Iscon Life Sciences', 'Lifacin 500mg Injection', 'Can I take alcohol while on Lifacin 500mg Injection?', 'You should avoid alcohol while being on treatment with Lifacin 500mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lifacin 500mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(11993, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'What is Lifalide Forte 50mg/10mg Tablet?', 'Lifalide Forte 50mg/10mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(11994, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'Is it safe to use Lifalide Forte 50mg/10mg Tablet?', 'Yes, Lifalide Forte 50mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(11995, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'Can I stop taking Lifalide Forte 50mg/10mg Tablet when my pain is relieved?', 'Lifalide Forte 50mg/10mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lifalide Forte 50mg/10mg Tablet should be continued if  your physician has advised you to do so.'),
(11996, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'Can the use of Lifalide Forte 50mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Lifalide Forte 50mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(11997, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'Can the use of Lifalide Forte 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Lifalide Forte 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(11998, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Lifalide Forte 50mg/10mg Tablet?', 'The use of Lifalide Forte 50mg/10mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(11999, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'Can I take Lifalide Forte 50mg/10mg Tablet with Vitamin B-complex?', 'Lifalide Forte 50mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Lifalide Forte 50mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(12000, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'Can I take Lifalide Forte 50mg/10mg Tablet for stomach pain?', 'No, Lifalide Forte 50mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(12001, 'Lifalide Forte 50mg/10mg Tablet', 'Signit Laboratories Pvt Ltd', 'Lifalide Forte 50mg/10mg Tablet', 'What is the storage condition for the Lifalide Forte 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12002, 'Lifart 50mg Tablet', 'Iscon Life Sciences', 'Lifart 50mg Tablet', 'Who should not use Lifart 50mg Tablet?', 'Use of Lifart 50mg Tablet should be avoided in patients who are allergic to Lifart 50mg Tablet or any of its components. However, if you are not aware of any allergy or if you are using Lifart 50mg Tablet for the first time, consult your doctor.'),
(12003, 'Lifart 50mg Tablet', 'Iscon Life Sciences', 'Lifart 50mg Tablet', 'What should I tell my doctor before starting treatment with Lifart 50mg Tablet?', 'Before starting treatment with Lifart 50mg Tablet, inform your doctor if you have any other health conditions like kidney- or heart-related problems. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(12004, 'Lifart 50mg Tablet', 'Iscon Life Sciences', 'Lifart 50mg Tablet', 'Is Lifart 50mg Tablet safe?', 'Lifart 50mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12005, 'Lifart 50mg Tablet', 'Iscon Life Sciences', 'Lifart 50mg Tablet', 'What if I forget to take a dose of Lifart 50mg Tablet?', 'If you forget a dose of Lifart 50mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12006, 'Lifart 50mg Tablet', 'Iscon Life Sciences', 'Lifart 50mg Tablet', 'Can I stop taking Lifart 50mg Tablet when I feel better?', 'No, do not stop taking Lifart 50mg Tablet without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(12007, 'Lifart 60mg Injection', 'Iscon Life Sciences', 'Lifart 60mg Injection', 'Who should not use Lifart 60mg Injection?', 'Use of Lifart 60mg Injection should be avoided in patients who are allergic to Lifart 60mg Injection or any of its components. However, if you are not aware of any allergy or if you are using Lifart 60mg Injection for the first time, consult your doctor.'),
(12008, 'Lifart 60mg Injection', 'Iscon Life Sciences', 'Lifart 60mg Injection', 'What should I tell my doctor before starting treatment with Lifart 60mg Injection?', 'Before starting treatment with Lifart 60mg Injection, inform your doctor if you have any other health conditions like a kidney- or heart-related problem. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(12009, 'Lifart 60mg Injection', 'Iscon Life Sciences', 'Lifart 60mg Injection', 'Is Lifart 60mg Injection safe?', 'Lifart 60mg Injection is safe if used in the dose and duration advised by your doctor. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12010, 'Lifart 60mg Injection', 'Iscon Life Sciences', 'Lifart 60mg Injection', 'How is Lifart 60mg Injection administered?', 'Lifart 60mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lifart 60mg Injection.'),
(12011, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'What is Lifaxo 180mg Tablet used for?', 'Lifaxo 180mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(12012, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'Can other medicines be given at the same time as Lifaxo 180mg Tablet?', 'Lifaxo 180mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifaxo 180mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(12013, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'Can I take Lifaxo 180mg Tablet along with juices?', 'Avoid taking Lifaxo 180mg Tablet with fatty meals and fruit juices as both can reduce the absorption of the medicine from the gut. If you need to take it, ensure a gap of at least 4 hours to decrease any possible medicine-food interaction.'),
(12014, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'How much Lifaxo 180mg Tablet should I take?', 'Lifaxo 180mg Tablet should be taken strictly as prescribed by your doctor. The dose of the medicine is calculated according to your body\'s weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your condition.'),
(12015, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'How should Lifaxo 180mg Tablet be stored?', 'Keep Lifaxo 180mg Tablet at room temperature, in a dry place, away from direct heat and light. Always keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(12016, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'Who should not take Lifaxo 180mg Tablet?', 'Lifaxo 180mg Tablet should not be given to patients with known allergies to any ingredients of this medicine. Signs of an allergic reaction may include an itchy skin rash, shortness of breath, and swelling of the face or tongue'),
(12017, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'What is Lifaxo 180mg Tablet used for?', 'Lifaxo 180mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(12018, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'What should I tell my doctor before starting treatment with Lifaxo 180mg Tablet?', 'Before starting treatment with Lifaxo 180mg Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(12019, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'What if I forget to take a dose of Lifaxo 180mg Tablet?', 'If you forget a dose of Lifaxo 180mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12020, 'Lifaxo 180mg Tablet', 'Cure World Pharmaceutical', 'Lifaxo 180mg Tablet', 'Can I stop taking Lifaxo 180mg Tablet if I feel better?', 'No. You should not stop taking Lifaxo 180mg Tablet even if you feel better unless your doctor tells you to stop taking it. This is because, stopping the medicine suddenly, without completing your full course of treatment may cause the returning of your symptoms and it can even worsen your condition. Consult your doctor if you are not sure.'),
(12021, 'Lifbact 250mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 250mg Tablet', 'Is Lifbact 250mg Tablet safe?', 'Lifbact 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12022, 'Lifbact 250mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 250mg Tablet', 'What if I forget to take a dose of Lifbact 250mg Tablet?', 'If you forget a dose of Lifbact 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12023, 'Lifbact 250mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 250mg Tablet', 'Can the use of Lifbact 250mg Tablet cause diarrhea?', 'Yes, the use of Lifbact 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12024, 'Lifbact 250mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 250mg Tablet', 'Can I stop taking Lifbact 250mg Tablet when I feel better?', 'No, do not stop taking Lifbact 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifbact 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lifbact 250mg Tablet in the dose and duration advised by the doctor.'),
(12025, 'Lifbact 250mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 250mg Tablet', 'Can the use of Lifbact 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lifbact 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifbact 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12026, 'Lifbact 500mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 500mg Tablet', 'Is Lifbact 500mg Tablet safe?', 'Lifbact 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12027, 'Lifbact 500mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 500mg Tablet', 'What if I forget to take a dose of Lifbact 500mg Tablet?', 'If you forget a dose of Lifbact 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12028, 'Lifbact 500mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 500mg Tablet', 'Can the use of Lifbact 500mg Tablet cause diarrhea?', 'Yes, the use of Lifbact 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12029, 'Lifbact 500mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 500mg Tablet', 'Can I stop taking Lifbact 500mg Tablet when I feel better?', 'No, do not stop taking Lifbact 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifbact 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lifbact 500mg Tablet in the dose and duration advised by the doctor.'),
(12030, 'Lifbact 500mg Tablet', 'Amcare Pharmaceuticals', 'Lifbact 500mg Tablet', 'Can the use of Lifbact 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lifbact 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifbact 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12031, 'Lifcef LB 200mg Tablet DT', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB 200mg Tablet DT', 'What if I miss my dose?', 'Take Lifcef LB 200mg Tablet DT as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12032, 'Lifcef LB 200mg Tablet DT', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB 200mg Tablet DT', 'How long does Lifcef LB 200mg Tablet DT take to work?', 'Usually, Lifcef LB 200mg Tablet DT starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12033, 'Lifcef LB 200mg Tablet DT', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB 200mg Tablet DT', 'What if I don\'t get better after using Lifcef LB 200mg Tablet DT?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12034, 'Lifcef LB 200mg Tablet DT', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB 200mg Tablet DT', 'Can I stop taking Lifcef LB 200mg Tablet DT when I feel better?', 'No, do not stop taking Lifcef LB 200mg Tablet DT and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12035, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'What if I give too much of Lifcef LB DS Dry Syrup by mistake?', 'An extra dose of Lifcef LB DS Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lifcef LB DS Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(12036, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'Are there any possible serious side effects of Lifcef LB DS Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(12037, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'Can other medicines be given at the same time as Lifcef LB DS Dry Syrup?', 'Lifcef LB DS Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifcef LB DS Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(12038, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'Can I get my child vaccinated while on treatment with Lifcef LB DS Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(12039, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'Which lab tests may my child undergo while taking Lifcef LB DS Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(12040, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(12041, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(12042, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'Can Lifcef LB DS Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lifcef LB DS Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lifcef LB DS Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(12043, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'Can Lifcef LB DS Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Lifcef LB DS Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(12044, 'Lifcef LB DS Dry Syrup', 'Hazecure Pharma Pvt Ltd', 'Lifcef LB DS Dry Syrup', 'How long should I take Lifcef LB DS Dry Syrup?', 'Lifcef LB DS Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12045, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'Can I stop taking Lifcef O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lifcef O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12046, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lifcef O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12047, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'Can the use of Lifcef O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lifcef O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12048, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'What if I don\'t get better after using Lifcef O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12049, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'Does the use of Lifcef O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lifcef O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(12050, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(12051, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'Can I drive while I am taking Lifcef O 200mg/200mg Tablet?', 'No, taking Lifcef O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(12052, 'Lifcef O 200mg/200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcef O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Lifcef O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12053, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'Does Lifcet 10mg Tablet make you tired and drowsy?', 'Yes, Lifcet 10mg Tablet can make you feel tired, sleepy, and weak. If you have these symptoms, you should avoid driving or operating heavy machinery.'),
(12054, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'Is Lifcet 10mg Tablet a steroid? What is it used for?', 'Lifcet 10mg Tablet is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(12055, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'How long does it take for Lifcet 10mg Tablet to work?', 'You will notice an improvement within an hour of taking Lifcet 10mg Tablet. However, it may take a little longer to notice the full benefits.'),
(12056, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'Can I take Lifcet 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lifcet 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(12057, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'For how long should I continue Lifcet 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. If you are taking it for an insect bite, you may need it for a day or two. Similarly, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of the nose) or chronic urticaria, you may need to take Lifcet 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lifcet 10mg Tablet.'),
(12058, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'Is it safe to take Lifcet 10mg Tablet daily for a long time?', 'Lifcet 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lifcet 10mg Tablet for only as long as you need it.'),
(12059, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'Does Lifcet 10mg Tablet make you tired and drowsy?', 'Yes, Lifcet 10mg Tablet can make you feel tired, sleepy, and weak.'),
(12060, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'Is Lifcet 10mg Tablet a steroid? What is it used for?', 'Lifcet 10mg Tablet is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(12061, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'How long does it take for Lifcet 10mg Tablet to work?', 'You will notice an improvement within an hour of taking Lifcet 10mg Tablet. However, it may take a little longer to notice the full benefits.'),
(12062, 'Lifcet 10mg Tablet', 'Iscon Life Sciences', 'Lifcet 10mg Tablet', 'Can I take Lifcet 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lifcet 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(12063, 'Lifcet-LV 5mg Tablet', 'Iscon Life Sciences', 'Lifcet-LV 5mg Tablet', 'Is Lifcet-LV 5mg Tablet a steroid? What is it used for?', 'No, Lifcet-LV 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(12064, 'Lifcet-LV 5mg Tablet', 'Iscon Life Sciences', 'Lifcet-LV 5mg Tablet', 'Does Lifcet-LV 5mg Tablet make you tired and drowsy?', 'Yes, Lifcet-LV 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(12065, 'Lifcet-LV 5mg Tablet', 'Iscon Life Sciences', 'Lifcet-LV 5mg Tablet', 'How long does it take for Lifcet-LV 5mg Tablet to work?', 'Lifcet-LV 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(12066, 'Lifcet-LV 5mg Tablet', 'Iscon Life Sciences', 'Lifcet-LV 5mg Tablet', 'Can I take Lifcet-LV 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lifcet-LV 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(12067, 'Lifcet-LV 5mg Tablet', 'Iscon Life Sciences', 'Lifcet-LV 5mg Tablet', 'Is it safe to take Lifcet-LV 5mg Tablet for a long time?', 'Lifcet-LV 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lifcet-LV 5mg Tablet for only as long as you need it.'),
(12068, 'Lifcet-LV 5mg Tablet', 'Iscon Life Sciences', 'Lifcet-LV 5mg Tablet', 'For how long should I continue Lifcet-LV 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lifcet-LV 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lifcet-LV 5mg Tablet'),
(12069, 'Lifcin 200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin 200mg Tablet', 'Can the use of Lifcin 200mg Tablet cause diarrhea?', 'Yes, the use of Lifcin 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12070, 'Lifcin 200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin 200mg Tablet', 'Can I stop taking Lifcin 200mg Tablet when I feel better?', 'No, do not stop taking Lifcin 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12071, 'Lifcin 200mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin 200mg Tablet', 'Can the use of Lifcin 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lifcin 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lifcin 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12072, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'What is Lifcin OZ 200mg/500mg Tablet?', 'Lifcin OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(12073, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'Is it safe to use Lifcin OZ 200mg/500mg Tablet?', 'Lifcin OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(12074, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lifcin OZ 200mg/500mg Tablet?', 'The use of Lifcin OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(12075, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lifcin OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12076, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lifcin OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12077, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'Can I stop taking Lifcin OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lifcin OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12078, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lifcin OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12079, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lifcin OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lifcin OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(12080, 'Lifcin OZ 200mg/500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcin OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lifcin OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12081, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'What is Lifcold P Tablet?', 'Lifcold P Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(12082, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'Are there any foods which I have to avoid while taking Lifcold P Tablet?', 'Lifcold P Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(12083, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'Can the use of Lifcold P Tablet cause sleepiness or drowsiness?', 'Yes, Lifcold P Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.'),
(12084, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'Are there any serious side effects associated with the use of Lifcold P Tablet?', 'Serious side effects with Lifcold P Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(12085, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'Can I breastfeed while taking Lifcold P Tablet?', 'No, it is not advisable to breastfeed while using Lifcold P Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(12086, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'Will a higher than the recommended dose of Lifcold P Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(12087, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'Are there any contraindications associated with use of Lifcold P Tablet?', 'It is not recommended to use Lifcold P Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Lifcold P Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(12088, 'Lifcold P Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifcold P Tablet', 'What are the instructions for the storage and disposal of Lifcold P Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12089, 'Lifcorcet-M Tablet', 'Bkyula Biotech', 'Lifcorcet-M Tablet', 'What is Lifcorcet-M Tablet?', 'Lifcorcet-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(12090, 'Lifcorcet-M Tablet', 'Bkyula Biotech', 'Lifcorcet-M Tablet', 'Can the use of Lifcorcet-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lifcorcet-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(12091, 'Lifcorcet-M Tablet', 'Bkyula Biotech', 'Lifcorcet-M Tablet', 'Can Lifcorcet-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lifcorcet-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(12092, 'Lifcorcet-M Tablet', 'Bkyula Biotech', 'Lifcorcet-M Tablet', 'Can the use of Lifcorcet-M Tablet cause dry mouth?', 'Yes, the use of Lifcorcet-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(12093, 'Lifcorcet-M Tablet', 'Bkyula Biotech', 'Lifcorcet-M Tablet', 'Can I drink alcohol while taking Lifcorcet-M Tablet?', 'No, do not take alcohol while taking Lifcorcet-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lifcorcet-M Tablet.'),
(12094, 'Lifcorcet-M Tablet', 'Bkyula Biotech', 'Lifcorcet-M Tablet', 'Will Lifcorcet-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lifcorcet-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(12095, 'Lifcorcet-M Tablet', 'Bkyula Biotech', 'Lifcorcet-M Tablet', 'What are the instructions for storage and disposal of Lifcorcet-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(12096, 'Life Call 500mg Tablet', 'Life Line Biotech Ltd', 'Life Call 500mg Tablet', 'For how long should I take Life Call 500mg Tablet to cure my epilepsy completely?', 'Life Call 500mg Tablet does not cure your condition, it only prevents the seizures from occurring. Therefore, you will have to keep on taking it, maybe for years. Consult your doctor if you face any problems while taking this medicine.'),
(12097, 'Life Call 500mg Tablet', 'Life Line Biotech Ltd', 'Life Call 500mg Tablet', 'What happens if I stop taking Life Call 500mg Tablet?', 'You should not stop taking Life Call 500mg Tablet suddenly. It should be discontinued gradually. Stopping it suddenly may increase the chances of recurrence of seizures. Always consult your doctor if you feel the need to stop taking this medicine.'),
(12098, 'Life Call 500mg Tablet', 'Life Line Biotech Ltd', 'Life Call 500mg Tablet', 'I have gained weight after I started using Life Call 500mg Tablet. Is it because of this medicine? What should I do?', 'Yes, weight gain can occur with the use of Life Call 500mg Tablet. To control your weight, you should have a healthy balanced diet and exercise regularly. Talk to your doctor if you have any other concerns.'),
(12099, 'Life Call 500mg Tablet', 'Life Line Biotech Ltd', 'Life Call 500mg Tablet', 'Does Life Call 500mg Tablet affect the working of birth control pills?', 'Yes, Life Call 500mg Tablet does not have any effect on the working of birth control pills. However, contraceptives (birth control pills) may interfere with the working of Life Call 500mg Tablet and seizures may occur. It is important that you inform your doctor that you are using birth control pills. Your doctor will keep a track on your response to the treatment and monitor the Life Call 500mg Tablet levels in your blood levels.'),
(12100, 'Life Call 500mg Tablet', 'Life Line Biotech Ltd', 'Life Call 500mg Tablet', 'Is it safe to take Life Call 500mg Tablet for long term?', 'Many patients can safely take Life Call 500mg Tablet for a long time. Rarely, long-term use of Life Call 500mg Tablet may weaken your bones, thereby increasing their chances of breaking easily (osteoporosis and osteopenia). If you are taking Life Call 500mg Tablet  for a long time, get regular check ups done for bone health.'),
(12101, 'Life Call 500mg Tablet', 'Life Line Biotech Ltd', 'Life Call 500mg Tablet', 'I am concerned because I have heard that Life Call 500mg Tablet causes hair loss. Is it true?', 'Life Call 500mg Tablet may cause thinning of hair, change of hair colour and even hair loss. If you are concerned, talk to your doctor if it is possible to reduce the dose of Life Call 500mg Tablet. Your hair may regrow after either reducing your dose or switching to a different medicine.'),
(12102, 'Life DX Syrup', 'Life Guard Pharma', 'Life DX Syrup', 'Can the use of Life DX Syrup cause sleepiness or drowsiness?', 'Yes, Life DX Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(12103, 'Life DX Syrup', 'Life Guard Pharma', 'Life DX Syrup', 'Will Life DX Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12104, 'Life DX Syrup', 'Life Guard Pharma', 'Life DX Syrup', 'Can I breastfeed while taking Life DX Syrup?', 'No, it is not advisable to breastfeed while using Life DX Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(12105, 'Life DX Syrup', 'Life Guard Pharma', 'Life DX Syrup', 'What are the instructions for storage and disposal of Life DX Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12106, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'What is the dosage of Life Pride 1mg Tablet?', 'The recommended starting dose of Life Pride 1mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(12107, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'Does Life Pride 1mg Tablet make you sleepy?', 'Life Pride 1mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(12108, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'Is Life Pride 1mg Tablet safe for kidneys?', 'Life Pride 1mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Life Pride 1mg Tablet is principally eliminated by the kidneys.'),
(12109, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'Does Life Pride 1mg Tablet cause memory loss?', 'No, it is not known that Life Pride 1mg Tablet causes memory loss. However, the use of Life Pride 1mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(12110, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'Who should not take Life Pride 1mg Tablet?', 'Life Pride 1mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Life Pride 1mg Tablet.'),
(12111, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'How long does it take for Life Pride 1mg Tablet to start working?', 'Life Pride 1mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(12112, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'How long do I need to take Life Pride 1mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Life Pride 1mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Life Pride 1mg Tablet without talking to your doctor. If you stop taking Life Pride 1mg Tablet suddenly your diabetes may get worse.'),
(12113, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'What can happen if I take more than the recommended dose of Life Pride 1mg Tablet?', 'Life Pride 1mg Tablet should be taken strictly as advised by the doctor. Overdose of Life Pride 1mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12114, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'Can you take Life Pride 1mg Tablet on an empty stomach?', 'No. Taking Life Pride 1mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Life Pride 1mg Tablet.'),
(12115, 'Life Pride 1mg Tablet', 'Bharti Life Sciences', 'Life Pride 1mg Tablet', 'Can Life Pride 1mg Tablet cause weight gain?', 'Yes, Life Pride 1mg Tablet can cause weight gain. Life Pride 1mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(12116, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'What is the dosage of Life Pride 2mg Tablet?', 'The recommended starting dose of Life Pride 2mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(12117, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'Does Life Pride 2mg Tablet make you sleepy?', 'Life Pride 2mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(12118, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'Is Life Pride 2mg Tablet safe for kidneys?', 'Life Pride 2mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Life Pride 2mg Tablet is principally eliminated by the kidneys.'),
(12119, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'Does Life Pride 2mg Tablet cause memory loss?', 'No, it is not known that Life Pride 2mg Tablet causes memory loss. However, the use of Life Pride 2mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(12120, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'Who should not take Life Pride 2mg Tablet?', 'Life Pride 2mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Life Pride 2mg Tablet.'),
(12121, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'How long does it take for Life Pride 2mg Tablet to start working?', 'Life Pride 2mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(12122, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'How long do I need to take Life Pride 2mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Life Pride 2mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Life Pride 2mg Tablet without talking to your doctor. If you stop taking Life Pride 2mg Tablet suddenly your diabetes may get worse.'),
(12123, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'What can happen if I take more than the recommended dose of Life Pride 2mg Tablet?', 'Life Pride 2mg Tablet should be taken strictly as advised by the doctor. Overdose of Life Pride 2mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(12124, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'Can you take Life Pride 2mg Tablet on an empty stomach?', 'No. Taking Life Pride 2mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Life Pride 2mg Tablet.'),
(12125, 'Life Pride 2mg Tablet', 'Bharti Life Sciences', 'Life Pride 2mg Tablet', 'Can Life Pride 2mg Tablet cause weight gain?', 'Yes, Life Pride 2mg Tablet can cause weight gain. Life Pride 2mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(12126, 'Life Pride M 1mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 1mg/500mg Tablet SR', 'What are the recommended storage conditions for Life Pride M 1mg/500mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12127, 'Life Pride M 1mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 1mg/500mg Tablet SR', 'Can the use of Life Pride M 1mg/500mg Tablet SR lead to lactic acidosis?', 'Yes, the use of Life Pride M 1mg/500mg Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Life Pride M 1mg/500mg Tablet SR and consult your doctor immediately.'),
(12128, 'Life Pride M 1mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 1mg/500mg Tablet SR', 'What is Life Pride M 1mg/500mg Tablet SR?', 'Life Pride M 1mg/500mg Tablet SR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(12129, 'Life Pride M 1mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 1mg/500mg Tablet SR', 'What are the possible side effects of Life Pride M 1mg/500mg Tablet SR?', 'The use of Life Pride M 1mg/500mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(12130, 'Life Pride M 1mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 1mg/500mg Tablet SR', 'Can the use of Life Pride M 1mg/500mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Life Pride M 1mg/500mg Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(12131, 'Life Pride M 1mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 1mg/500mg Tablet SR', 'Can the use of Life Pride M 1mg/500mg Tablet SR cause hypoglycemia?', 'Yes, the use of Life Pride M 1mg/500mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(12132, 'Life Pride M 1mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 1mg/500mg Tablet SR', 'Is it safe to take alcohol while I am also taking Life Pride M 1mg/500mg Tablet SR?', 'No, it is not safe to take Life Pride M 1mg/500mg Tablet SR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(12133, 'Life Pride M 2mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 2mg/500mg Tablet SR', 'What are the recommended storage conditions for Life Pride M 2mg/500mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12134, 'Life Pride M 2mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 2mg/500mg Tablet SR', 'Can the use of Life Pride M 2mg/500mg Tablet SR lead to lactic acidosis?', 'Yes, the use of Life Pride M 2mg/500mg Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Life Pride M 2mg/500mg Tablet SR and consult your doctor immediately.'),
(12135, 'Life Pride M 2mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 2mg/500mg Tablet SR', 'What is Life Pride M 2mg/500mg Tablet SR?', 'Life Pride M 2mg/500mg Tablet SR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(12136, 'Life Pride M 2mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 2mg/500mg Tablet SR', 'What are the possible side effects of Life Pride M 2mg/500mg Tablet SR?', 'The use of Life Pride M 2mg/500mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(12137, 'Life Pride M 2mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 2mg/500mg Tablet SR', 'Can the use of Life Pride M 2mg/500mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Life Pride M 2mg/500mg Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(12138, 'Life Pride M 2mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 2mg/500mg Tablet SR', 'Can the use of Life Pride M 2mg/500mg Tablet SR cause hypoglycemia?', 'Yes, the use of Life Pride M 2mg/500mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(12139, 'Life Pride M 2mg/500mg Tablet SR', 'Bharti Life Sciences', 'Life Pride M 2mg/500mg Tablet SR', 'Is it safe to take alcohol while I am also taking Life Pride M 2mg/500mg Tablet SR?', 'No, it is not safe to take Life Pride M 2mg/500mg Tablet SR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(12140, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'What is Lifebu 40mg Tablet used for?', 'Lifebu 40mg Tablet is used to treat gout in adults. It is mainly used in patients who did not respond to the treatment with allopurinol or who are not able to take allopurinol. Gout is a type of arthritis in which uric acid, a naturally occurring substance in the body, builds up in the joints. It causes sudden attacks of redness, swelling, pain, and heat in one or more joints.'),
(12141, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'What are the side effects of Lifebu 40mg Tablet?', 'Lifebu 40mg Tablet may cause common side effects such as abnormal liver test results, diarrhea, headache, rash, nausea, and even an increase in gout symptoms and localized swelling due to retention of fluids in tissues (edema). Whereas, the serious side effects of Lifebu 40mg Tablet include heart problems, gout flares, liver problems, and severe skin and allergic reactions. Immediately inform your doctor if you experience any serious side effects.'),
(12142, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'How long should I take Lifebu 40mg Tablet?', 'The dose and duration of Lifebu 40mg Tablet vary from person to person and are decided by your doctor. It may take several months before Lifebu 40mg Tablet begins to prevent gout attacks. Do not stop taking Lifebu 40mg Tablet without the advice of your doctor even if you feel better.'),
(12143, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'What is the best time to take Lifebu 40mg Tablet?', 'Lifebu 40mg Tablet is advised to be taken once a day. It can be taken at any time of the day, but preferably at the same time each day so that you remember to take it every day. This will help maintain the levels of Lifebu 40mg Tablet in the body. You can take this medicine with or without food.'),
(12144, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'Can Lifebu 40mg Tablet cause kidney damage?', 'Lifebu 40mg Tablet may affect kidneys in different ways, though it is quite uncommon. You may experience blood in the urine, frequent urination, kidney stones, abnormal urine tests (increased level of proteins in the urine), and a reduction in the ability of the kidneys to function properly. Rarely, it may cause changes or decrease in urine amount due to inflammation in the kidneys (tubulointerstitial nephritis). Consult your doctor if your kidney functions get further affected.'),
(12145, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'Can I stop taking Lifebu 40mg Tablet on my own if I am fine and have no pain or swelling in joints?', 'No, do not stop taking Lifebu 40mg Tablet without your doctor\'s advice even if you feel better. Discontinuation of medicine may increase the levels of uric acid. It may also worsen your symptoms due to the formation of new crystals of urate in and around your joints and kidneys.'),
(12146, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'What are the things which I need to know while taking Lifebu 40mg Tablet?', 'You should be aware that Lifebu 40mg Tablet may cause serious heart problems which can be life-threatening in some cases. The symptoms of heart problems include chest pain, shortness of breath or trouble breathing, dizziness, fainting or feeling light-headed, rapid or irregular heartbeat. It may also cause numbness or weakness in one side of your body, slurring of speech and sudden blurry vision, or sudden severe headache. Immediately inform your doctor and seek medical help if you experience any of these symptoms.'),
(12147, 'Lifebu 40mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 40mg Tablet', 'Can Lifebu 40mg Tablet cause any liver problems?', 'Yes, Lifebu 40mg Tablet use may cause liver problems. Your doctor may advise you to get regular blood tests done before and during treatment with Lifebu 40mg Tablet to check how well your liver was working before and while taking this medicine. Inform your doctor if you notice symptoms such as fatigue, pain, or tenderness on the right side of the abdomen or loss of appetite for several days or longer. It may also cause changes in the color of urine (dark or tea-colored) and may make your skin or the white part of your eyes turn yellow (jaundice).'),
(12148, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'What is Lifebu 80mg Tablet used for?', 'Lifebu 80mg Tablet is used to treat gout in adults. It is mainly used in patients who did not respond to the treatment with allopurinol or who are not able to take allopurinol. Gout is a type of arthritis in which uric acid, a naturally occurring substance in the body, builds up in the joints. It causes sudden attacks of redness, swelling, pain, and heat in one or more joints.'),
(12149, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'What are the side effects of Lifebu 80mg Tablet?', 'Lifebu 80mg Tablet may cause common side effects such as abnormal liver test results, diarrhea, headache, rash, nausea, and even an increase in gout symptoms and localized swelling due to retention of fluids in tissues (edema). Whereas, the serious side effects of Lifebu 80mg Tablet include heart problems, gout flares, liver problems, and severe skin and allergic reactions. Immediately inform your doctor if you experience any serious side effects.'),
(12150, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'How long should I take Lifebu 80mg Tablet?', 'The dose and duration of Lifebu 80mg Tablet vary from person to person and are decided by your doctor. It may take several months before Lifebu 80mg Tablet begins to prevent gout attacks. Do not stop taking Lifebu 80mg Tablet without the advice of your doctor even if you feel better.'),
(12151, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'What is the best time to take Lifebu 80mg Tablet?', 'Lifebu 80mg Tablet is advised to be taken once a day. It can be taken at any time of the day, but preferably at the same time each day so that you remember to take it every day. This will help maintain the levels of Lifebu 80mg Tablet in the body. You can take this medicine with or without food.'),
(12152, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'Can Lifebu 80mg Tablet cause kidney damage?', 'Lifebu 80mg Tablet may affect kidneys in different ways, though it is quite uncommon. You may experience blood in the urine, frequent urination, kidney stones, abnormal urine tests (increased level of proteins in the urine), and a reduction in the ability of the kidneys to function properly. Rarely, it may cause changes or decrease in urine amount due to inflammation in the kidneys (tubulointerstitial nephritis). Consult your doctor if your kidney functions get further affected.'),
(12153, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'Can I stop taking Lifebu 80mg Tablet on my own if I am fine and have no pain or swelling in joints?', 'No, do not stop taking Lifebu 80mg Tablet without your doctor\'s advice even if you feel better. Discontinuation of medicine may increase the levels of uric acid. It may also worsen your symptoms due to the formation of new crystals of urate in and around your joints and kidneys.'),
(12154, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'What are the things which I need to know while taking Lifebu 80mg Tablet?', 'You should be aware that Lifebu 80mg Tablet may cause serious heart problems which can be life-threatening in some cases. The symptoms of heart problems include chest pain, shortness of breath or trouble breathing, dizziness, fainting or feeling light-headed, rapid or irregular heartbeat. It may also cause numbness or weakness in one side of your body, slurring of speech and sudden blurry vision, or sudden severe headache. Immediately inform your doctor and seek medical help if you experience any of these symptoms.'),
(12155, 'Lifebu 80mg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifebu 80mg Tablet', 'Can Lifebu 80mg Tablet cause any liver problems?', 'Yes, Lifebu 80mg Tablet use may cause liver problems. Your doctor may advise you to get regular blood tests done before and during treatment with Lifebu 80mg Tablet to check how well your liver was working before and while taking this medicine. Inform your doctor if you notice symptoms such as fatigue, pain, or tenderness on the right side of the abdomen or loss of appetite for several days or longer. It may also cause changes in the color of urine (dark or tea-colored) and may make your skin or the white part of your eyes turn yellow (jaundice).'),
(12156, 'Lifecare 500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare 500mg Injection', 'Is Lifecare 500mg Injection safe?', 'Lifecare 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12157, 'Lifecare 500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare 500mg Injection', 'How long does Lifecare 500mg Injection take to work?', 'Usually, Lifecare 500mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(12158, 'Lifecare 500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare 500mg Injection', 'Who should not take Lifecare 500mg Injection?', 'Lifecare 500mg Injection should not be prescribed to people who are allergic to Lifecare 500mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Lifecare 500mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(12159, 'Lifecare 500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare 500mg Injection', 'What if I do not get better after using Lifecare 500mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12160, 'Lifecare 500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare 500mg Injection', 'For how long does Lifecare 500mg Injection stay in the body?', 'Usually, Lifecare 500mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(12161, 'Lifecare 500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare 500mg Injection', 'Is Lifecare 500mg Injection effective?', 'Lifecare 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifecare 500mg Injection too early, the symptoms may return or worsen.'),
(12162, 'Lifecare 500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare 500mg Injection', 'How is Lifecare 500mg Injection administered?', 'Lifecare 500mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lifecare 500mg Injection.'),
(12163, 'Lifecare A 100mg/125mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare A 100mg/125mg Injection', 'How long does Lifecare A 100mg/125mg Injection takes to work?', 'Usually, Lifecare A 100mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12164, 'Lifecare A 100mg/125mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare A 100mg/125mg Injection', 'What if I don\'t get better after using Lifecare A 100mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12165, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'What is Lifecare Atropine Sulphate 0.6mg Injection used for in an emergency?', 'Lifecare Atropine Sulphate 0.6mg Injection is used in emergency situations when the heart beats too slowly, as an antidote to insecticide or mushroom poisoning. It can be used as part of the premedication before general anesthesia. It is also used in combination with other drugs to reverse the effect of muscle relaxants used during surgery.'),
(12166, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'Who should not take Lifecare Atropine Sulphate 0.6mg Injection?', 'Inform your doctor if you have high blood pressure, lung disease, stomach ulcers, liver problems, and thyroid disorders before taking this medicine.'),
(12167, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'Where is Lifecare Atropine Sulphate 0.6mg Injection injected?', 'This medicine is injected into a muscle, under the skin, or as an infusion into a vein. A healthcare provider will give you this injection in a hospital setting only.'),
(12168, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'What happens if you are given Lifecare Atropine Sulphate 0.6mg Injection in excess?', 'Some of the signs of overdose are dilation of the pupils, difficulty in swallowing, hot dry skin, flushing, inability to pass urine, rapid breathing, increased heart rate, and hyperactivity. However, this rarely happens as Lifecare Atropine Sulphate 0.6mg Injection is administered under the care of a highly trained doctor. If you suspect you have been given this medicine in excess, you should tell the doctor immediately.'),
(12169, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'What should I avoid while receiving Lifecare Atropine Sulphate 0.6mg Injection?', 'Avoid becoming overheated or dehydrated during exercise and in hot weather. Lifecare Atropine Sulphate 0.6mg Injection can decrease sweating and you may be more prone to heatstroke. Drink lots of fluids to stop fluid loss.'),
(12170, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'Can Lifecare Atropine Sulphate 0.6mg Injection be given to pregnant women?', 'No, Lifecare Atropine Sulphate 0.6mg Injection should not be given during pregnancy since the medicine may cross the placental barrier and may cause tachycardia (rapid heartbeat) in the fetus.'),
(12171, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'Does Lifecare Atropine Sulphate 0.6mg Injection cause dryness in the mouth?', 'Yes, dry mouth is a common side-effect of this medicine. Frequent mouth rinses, good oral hygiene, increased water intake and sucking sugarless candy may help.'),
(12172, 'Lifecare Atropine Sulphate 0.6mg Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Atropine Sulphate 0.6mg Injection', 'Does Lifecare Atropine Sulphate 0.6mg Injection make you sleepy?', 'This medicine may cause drowsiness and blurred vision. Do not drive or do anything else that could be dangerous until you know how this medicine affects you. Do not drive until your pupils are no longer dilated.'),
(12173, 'Lifecare C 250mg/31.25mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare C 250mg/31.25mg Injection', 'How long does Lifecare C 250mg/31.25mg Injection takes to work?', 'Usually, Lifecare C 250mg/31.25mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12174, 'Lifecare C 250mg/31.25mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare C 250mg/31.25mg Injection', 'What if I don\'t get better after using Lifecare C 250mg/31.25mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12175, 'Lifecare Potassium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Potassium Chloride Injection', 'Can Lifecare Potassium Chloride Injection cause hyperkalemia?', 'Yes, the use of potassium supplements like Lifecare Potassium Chloride Injection may increase potassium levels leading to hyperkalemia. Your doctor will prescribe tests to monitor your potassium levels so that an optimum level is maintained.'),
(12176, 'Lifecare Potassium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Potassium Chloride Injection', 'What should I avoid taking while on treatment with Lifecare Potassium Chloride Injection?', 'It is advisable to avoid taking low-sodium foods and salt substitutes during your treatment with potassium chloride. These foods contain potassium, and eating them can increase the level of potassium in your blood.'),
(12177, 'Lifecare Potassium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Potassium Chloride Injection', 'What happens if I have too much potassium chloride in my blood?', 'An excess of potassium chloride can cause stomach pain, nausea, vomiting, diarrhea, fatigue, and lightheadedness.'),
(12178, 'Lifecare Potassium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Potassium Chloride Injection', 'Does Lifecare Potassium Chloride Injection affect your blood pressure?', 'Studies suggest that an excess of potassium chloride can result in low blood pressure.'),
(12179, 'Lifecare Potassium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Potassium Chloride Injection', 'What happens if a patient with kidney disease is administered Lifecare Potassium Chloride Injection?', 'A patient with kidney disease should not be given Lifecare Potassium Chloride Injection since it may result in an increase in potassium levels in the body.'),
(12180, 'Lifecare Sodium Bicarbonate Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Bicarbonate Injection', 'Q. What is the use of Lifecare Sodium Bicarbonate Injection?', 'Lifecare Sodium Bicarbonate Injection is used to make your blood or urine less acidic. High levels of acid in blood can be caused by diabetes, hepatitis, heart and kidney problems, shock, severe dehydration or diarrhoea, Addison‘s disease, and malnutrition.'),
(12181, 'Lifecare Sodium Bicarbonate Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Bicarbonate Injection', 'Q. Is Lifecare Sodium Bicarbonate Injection harmful?', 'Lifecare Sodium Bicarbonate Injection is safe if used as a medication and as prescribed by the doctor. However, excess of Lifecare Sodium Bicarbonate Injection can disturb the fine balance of electrolytes (like sodium, potassium, carbonate, etc.) that is needed by the body to function properly. As a result, it can cause unwanted side effects.'),
(12182, 'Lifecare Sodium Bicarbonate Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Bicarbonate Injection', 'Q. In which conditions should Lifecare Sodium Bicarbonate Injection be avoided?', 'The use of Lifecare Sodium Bicarbonate Injection should be avoided in patients who have kidney disease or kidney stones, heart disease, or high blood pressure or high blood pressure due to pregnancy. Additionally, it should also be avoided in patients who have excess sodium in the blood, swelling due to excess fluid, and low levels of potassium or chloride in the blood.'),
(12183, 'Lifecare Sodium Bicarbonate Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Bicarbonate Injection', 'What is the use of Lifecare Sodium Bicarbonate Injection?', 'Lifecare Sodium Bicarbonate Injection is used to make your blood or urine less acidic. High levels of acid in blood can be caused by diabetes, hepatitis, heart and kidney problems, shock, severe dehydration or diarrhoea, Addison‘s disease, and malnutrition.'),
(12184, 'Lifecare Sodium Bicarbonate Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Bicarbonate Injection', 'Is Lifecare Sodium Bicarbonate Injection harmful?', 'Lifecare Sodium Bicarbonate Injection is safe if used as a medication and as prescribed by the doctor. However, excess of Lifecare Sodium Bicarbonate Injection can disturb the fine balance of electrolytes (like sodium, potassium, carbonate, etc.) that is needed by the body to function properly. As a result, it can cause unwanted side effects.'),
(12185, 'Lifecare Sodium Bicarbonate Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Bicarbonate Injection', 'In which conditions should Lifecare Sodium Bicarbonate Injection be avoided?', 'The use of Lifecare Sodium Bicarbonate Injection should be avoided in patients who have kidney disease or kidney stones, heart disease, or high blood pressure or high blood pressure due to pregnancy. Additionally, it should also be avoided in patients who have excess sodium in the blood, swelling due to excess fluid, and low levels of potassium or chloride in the blood.'),
(12186, 'Lifecare Sodium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Chloride Injection', 'Q. Is Lifecare Sodium Chloride Injection harmful to humans?', 'Normally Lifecare Sodium Chloride Injection is an indispensable component of the human body. If given in required amount, it is very beneficial. However, it can be harmful when given in more than the required amount or concentration. In high doses, it can lead to fluid overload, swelling of feet and legs, and  sodium accumulation in the body.'),
(12187, 'Lifecare Sodium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Chloride Injection', 'Q. What does Lifecare Sodium Chloride Injection do to the body?', 'Lifecare Sodium Chloride Injection is normally present in your body. Sodium and chloride ions help maintain the fluid and electrolyte balance in the body. Sodium is an electrolyte which maintains the water balance in your body and keeps your body hydrated. It helps in maintaining normal functioning of the nerves, heart and other organs. Lifecare Sodium Chloride Injection is used to treat or prevent sodium loss caused by dehydration, diarrhea or other causes.'),
(12188, 'Lifecare Sodium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Chloride Injection', 'Q. Is Lifecare Sodium Chloride Injection used to clean wounds?', 'Yes, Lifecare Sodium Chloride Injection is used to clean wounds. It serves as a very good solution which can be used to irrigate and wash or clean body cavities, tissues or wounds. It also serves as a solvent for various medicines to be used in various conditions.  It is for external use only and should not be swallowed.'),
(12189, 'Lifecare Sodium Chloride Injection', 'Life Care Pharmaceuticals Private Limited', 'Lifecare Sodium Chloride Injection', 'Q. Do we need to be cautious while taking Lifecare Sodium Chloride Injection?', 'Yes, you should be cautious if you have certain conditions, such as heart disease or heart failure, impaired kidney function, or diabetes. Also, stay cautious if you have swelling in various parts of your body like feet and ankles. It usually does not cause any major side effects but you should be cautious and should give your doctor a proper history before you take Lifecare Sodium Chloride Injection.'),
(12190, 'Lifecare-SB 1000mg/500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 1000mg/500mg Injection', 'Can the use of Lifecare-SB 1000mg/500mg Injection cause allergic reaction?', 'Yes, Lifecare-SB 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(12191, 'Lifecare-SB 1000mg/500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 1000mg/500mg Injection', 'Can the use of Lifecare-SB 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lifecare-SB 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12192, 'Lifecare-SB 1000mg/500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 1000mg/500mg Injection', 'How long does Lifecare-SB 1000mg/500mg Injection takes to work?', 'Usually, Lifecare-SB 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12193, 'Lifecare-SB 1000mg/500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 1000mg/500mg Injection', 'What if I don\'t get better after using Lifecare-SB 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12194, 'Lifecare-SB 1000mg/500mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 1000mg/500mg Injection', 'Can I stop taking Lifecare-SB 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Lifecare-SB 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12195, 'Lifecare-SB 125mg/62.5mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 125mg/62.5mg Injection', 'Can the use of Lifecare-SB 125mg/62.5mg Injection cause allergic reaction?', 'Yes, Lifecare-SB 125mg/62.5mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(12196, 'Lifecare-SB 125mg/62.5mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 125mg/62.5mg Injection', 'Can the use of Lifecare-SB 125mg/62.5mg Injection cause diarrhea?', 'Yes, the use of Lifecare-SB 125mg/62.5mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12197, 'Lifecare-SB 125mg/62.5mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 125mg/62.5mg Injection', 'How long does Lifecare-SB 125mg/62.5mg Injection takes to work?', 'Usually, Lifecare-SB 125mg/62.5mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12198, 'Lifecare-SB 125mg/62.5mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 125mg/62.5mg Injection', 'What if I don\'t get better after using Lifecare-SB 125mg/62.5mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12199, 'Lifecare-SB 125mg/62.5mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 125mg/62.5mg Injection', 'Can I stop taking Lifecare-SB 125mg/62.5mg Injection when I feel better?', 'No, do not stop taking Lifecare-SB 125mg/62.5mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12200, 'Lifecare-SB 250mg/125mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 250mg/125mg Injection', 'Can the use of Lifecare-SB 250mg/125mg Injection cause allergic reaction?', 'Yes, Lifecare-SB 250mg/125mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(12201, 'Lifecare-SB 250mg/125mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 250mg/125mg Injection', 'Can the use of Lifecare-SB 250mg/125mg Injection cause diarrhea?', 'Yes, the use of Lifecare-SB 250mg/125mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12202, 'Lifecare-SB 250mg/125mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 250mg/125mg Injection', 'How long does Lifecare-SB 250mg/125mg Injection takes to work?', 'Usually, Lifecare-SB 250mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12203, 'Lifecare-SB 250mg/125mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 250mg/125mg Injection', 'What if I don\'t get better after using Lifecare-SB 250mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12204, 'Lifecare-SB 250mg/125mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 250mg/125mg Injection', 'Can I stop taking Lifecare-SB 250mg/125mg Injection when I feel better?', 'No, do not stop taking Lifecare-SB 250mg/125mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12205, 'Lifecare-SB 500mg/250mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 500mg/250mg Injection', 'Can the use of Lifecare-SB 500mg/250mg Injection cause allergic reaction?', 'Yes, Lifecare-SB 500mg/250mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(12206, 'Lifecare-SB 500mg/250mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 500mg/250mg Injection', 'Can the use of Lifecare-SB 500mg/250mg Injection cause diarrhea?', 'Yes, the use of Lifecare-SB 500mg/250mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12207, 'Lifecare-SB 500mg/250mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 500mg/250mg Injection', 'How long does Lifecare-SB 500mg/250mg Injection takes to work?', 'Usually, Lifecare-SB 500mg/250mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12208, 'Lifecare-SB 500mg/250mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 500mg/250mg Injection', 'What if I don\'t get better after using Lifecare-SB 500mg/250mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12209, 'Lifecare-SB 500mg/250mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-SB 500mg/250mg Injection', 'Can I stop taking Lifecare-SB 500mg/250mg Injection when I feel better?', 'No, do not stop taking Lifecare-SB 500mg/250mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12210, 'Lifecare-T 500mg/62.5mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-T 500mg/62.5mg Injection', 'How long does Lifecare-T 500mg/62.5mg Injection takes to work?', 'Usually, Lifecare-T 500mg/62.5mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12211, 'Lifecare-T 500mg/62.5mg Injection', 'Solitaire Pharmacia Pvt Ltd', 'Lifecare-T 500mg/62.5mg Injection', 'What if I don\'t get better after using Lifecare-T 500mg/62.5mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12212, 'Lifecef CP 500mg/125mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifecef CP 500mg/125mg Tablet', 'Can Lifecef CP 500mg/125mg Tablet be used to treat viral infections?', 'No, Lifecef CP 500mg/125mg Tablet is only indicated to treat bacterial infections. It does not treat viral infections such as common cold, flu.'),
(12213, 'Lifecef CP 500mg/125mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifecef CP 500mg/125mg Tablet', 'What are the contraindications associated with the use of Lifecef CP 500mg/125mg Tablet?', 'The use of Lifecef CP 500mg/125mg Tablet should be avoided in patients with known allergy to any constituents of this medicine. Inform your doctor about your medical history before taking this medicine to avoid any side effects.'),
(12214, 'Lifecef CP 500mg/125mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifecef CP 500mg/125mg Tablet', 'Can the use of Lifecef CP 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lifecef CP 500mg/125mg Tablet can cause diarrhea. Antibiotics can kill good, or helpful bacteria in your stomach and can cause diarrhea. If you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if you have persistent diarrhea. Do not take any other medicines without consulting a doctor.'),
(12215, 'Lifecef CP 500mg/125mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifecef CP 500mg/125mg Tablet', 'Can I stop taking Lifecef CP 500mg/125mg Tablet when I feel better?', 'No, do not stop taking Lifecef CP 500mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12216, 'Lifecef CP 500mg/125mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifecef CP 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lifecef CP 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12217, 'Lifecif 100mg Tablet DT', 'Life Guard Pharma', 'Lifecif 100mg Tablet DT', 'How long should I take Lifecif 100mg Tablet DT?', 'Lifecif 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12218, 'Lifecif 100mg Tablet DT', 'Life Guard Pharma', 'Lifecif 100mg Tablet DT', 'What if I do not get better after using Lifecif 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12219, 'Lifecif 100mg Tablet DT', 'Life Guard Pharma', 'Lifecif 100mg Tablet DT', 'Can the use of Lifecif 100mg Tablet DT cause diarrhea?', 'Yes, the use of Lifecif 100mg Tablet DT can cause diarrhea. Lifecif 100mg Tablet DT is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(12220, 'Lifecif 100mg Tablet DT', 'Life Guard Pharma', 'Lifecif 100mg Tablet DT', 'Is Lifecif 100mg Tablet DT effective?', 'Lifecif 100mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifecif 100mg Tablet DT too early, the symptoms may return or worsen.'),
(12221, 'Lifecif 100mg Tablet DT', 'Life Guard Pharma', 'Lifecif 100mg Tablet DT', 'What if I forget to take a dose of Lifecif 100mg Tablet DT?', 'If you forget a dose of Lifecif 100mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12222, 'Lifecif 100mg Tablet DT', 'Life Guard Pharma', 'Lifecif 100mg Tablet DT', 'Is Lifecif 100mg Tablet DT safe for the kidneys?', 'Yes, Lifecif 100mg Tablet DT is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(12223, 'Lifecif 100mg Tablet DT', 'Life Guard Pharma', 'Lifecif 100mg Tablet DT', 'How long should I take Lifecif 100mg Tablet DT?', 'Lifecif 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12224, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'What is Lifecilin 500mg/125mg Tablet?', 'Lifecilin 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(12225, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Is it safe to use Lifecilin 500mg/125mg Tablet?', 'Lifecilin 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(12226, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Lifecilin 500mg/125mg Tablet?', 'The use of Lifecilin 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(12227, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Can the use of Lifecilin 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Lifecilin 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lifecilin 500mg/125mg Tablet.'),
(12228, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Lifecilin 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Lifecilin 500mg/125mg Tablet can increase the risks of side effects. Lifecilin 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(12229, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lifecilin 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12230, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Can I stop taking Lifecilin 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lifecilin 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(12231, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Can Lifecilin 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Lifecilin 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(12232, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Can the use of Lifecilin 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lifecilin 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(12233, 'Lifecilin 500mg/125mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin 500mg/125mg Tablet', 'Can I take Lifecilin 500mg/125mg Tablet to treat cold and flu?', 'No, Lifecilin 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(12234, 'Lifecilin OZ 250mg/500mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Lifecilin OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12235, 'Lifecilin OZ 250mg/500mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin OZ 250mg/500mg Tablet', 'Can I stop taking Lifecilin OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Lifecilin OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12236, 'Lifecilin OZ 250mg/500mg Tablet', 'Nodysis Pharma Pvt Ltd', 'Lifecilin OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Lifecilin OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12237, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'For how long can Lifecin 100mg Injection be taken?', 'The usual course of treatment with Lifecin 100mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lifecin 100mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(12238, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'Is Lifecin 100mg Injection safe?', 'Lifecin 100mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12239, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'How is Lifecin 100mg Injection administered?', 'Lifecin 100mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lifecin 100mg Injection.'),
(12240, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lifecin 100mg Injection should be taken in the recommended dose only. Overdose of Lifecin 100mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(12241, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'What are the instructions for the storage and disposal of Lifecin 100mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(12242, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'What if I don\'t get better after using Lifecin 100mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(12243, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'Can I stop taking Lifecin 100mg Injection when I feel better?', 'No, do not stop taking Lifecin 100mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12244, 'Lifecin 100mg Injection', 'Life Guard Pharma', 'Lifecin 100mg Injection', 'Can I take alcohol while on Lifecin 100mg Injection?', 'You should avoid alcohol while being on treatment with Lifecin 100mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lifecin 100mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(12245, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'For how long can Lifecin 250mg Injection be taken?', 'The usual course of treatment with Lifecin 250mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lifecin 250mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(12246, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'Is Lifecin 250mg Injection safe?', 'Lifecin 250mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12247, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'How is Lifecin 250mg Injection administered?', 'Lifecin 250mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lifecin 250mg Injection.'),
(12248, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lifecin 250mg Injection should be taken in the recommended dose only. Overdose of Lifecin 250mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(12249, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'What are the instructions for the storage and disposal of Lifecin 250mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(12250, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'What if I don\'t get better after using Lifecin 250mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(12251, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'Can I stop taking Lifecin 250mg Injection when I feel better?', 'No, do not stop taking Lifecin 250mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12252, 'Lifecin 250mg Injection', 'Life Guard Pharma', 'Lifecin 250mg Injection', 'Can I take alcohol while on Lifecin 250mg Injection?', 'You should avoid alcohol while being on treatment with Lifecin 250mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lifecin 250mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(12253, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'For how long can Lifecin 500mg Injection be taken?', 'The usual course of treatment with Lifecin 500mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lifecin 500mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(12254, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'Is Lifecin 500mg Injection safe?', 'Lifecin 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12255, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'How is Lifecin 500mg Injection administered?', 'Lifecin 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lifecin 500mg Injection.'),
(12256, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lifecin 500mg Injection should be taken in the recommended dose only. Overdose of Lifecin 500mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(12257, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'What are the instructions for the storage and disposal of Lifecin 500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(12258, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'What if I don\'t get better after using Lifecin 500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(12259, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'Can I stop taking Lifecin 500mg Injection when I feel better?', 'No, do not stop taking Lifecin 500mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12260, 'Lifecin 500mg Injection', 'Life Guard Pharma', 'Lifecin 500mg Injection', 'Can I take alcohol while on Lifecin 500mg Injection?', 'You should avoid alcohol while being on treatment with Lifecin 500mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lifecin 500mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(12261, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. Can the use of Lifecitam 250 Tablet cause sleepiness?', 'Yes, Lifecitam 250 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(12262, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. Will the use of Lifecitam 250 Tablet affect my fertility?', 'Lifecitam 250 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(12263, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. I have gained weight since I started taking Lifecitam 250 Tablet. Is it because of Lifecitam 250 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Lifecitam 250 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(12264, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. How long does Lifecitam 250 Tablet take to show its effect?', 'Lifecitam 250 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Lifecitam 250 Tablet starts working completely.'),
(12265, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. For how long do I need to take Lifecitam 250 Tablet?', 'You should continue to take Lifecitam 250 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(12266, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. Will I get addicted to Lifecitam 250 Tablet if I use it for a long time?', 'No, Lifecitam 250 Tablet is not habit-forming. No physical or psychological dependence has been reported with Lifecitam 250 Tablet. Consult your doctor if you experience any side effects.'),
(12267, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. What symptoms can occur if someone takes an excess of Lifecitam 250 Tablet?', 'Taking an excess of Lifecitam 250 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(12268, 'Lifecitam 250 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 250 Tablet', 'Q. How do I come off Lifecitam 250 Tablet?', 'The dose of Lifecitam 250 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Lifecitam 250 Tablet straight away, even if you have epilepsy.'),
(12269, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'Can the use of Lifecitam 500 Tablet cause sleepiness?', 'Yes, Lifecitam 500 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(12270, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'Will the use of Lifecitam 500 Tablet affect my fertility?', 'Lifecitam 500 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(12271, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'I have gained weight since I started taking Lifecitam 500 Tablet. Is it because of Lifecitam 500 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Lifecitam 500 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(12272, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'How long does Lifecitam 500 Tablet take to show its effect?', 'Lifecitam 500 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Lifecitam 500 Tablet starts working completely.'),
(12273, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'For how long do I need to take Lifecitam 500 Tablet?', 'You should continue to take Lifecitam 500 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(12274, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'Will I get addicted to Lifecitam 500 Tablet if I use it for a long time?', 'No, Lifecitam 500 Tablet is not habit-forming. No physical or psychological dependence has been reported with Lifecitam 500 Tablet. Consult your doctor if you experience any side effects.'),
(12275, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'What symptoms can occur if someone takes an excess of Lifecitam 500 Tablet?', 'Taking an excess of Lifecitam 500 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(12276, 'Lifecitam 500 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 500 Tablet', 'How do I come off Lifecitam 500 Tablet?', 'The dose of Lifecitam 500 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Lifecitam 500 Tablet straight away, even if you have epilepsy.'),
(12277, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. Can the use of Lifecitam 750 Tablet cause sleepiness?', 'Yes, Lifecitam 750 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(12278, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. Will the use of Lifecitam 750 Tablet affect my fertility?', 'Lifecitam 750 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(12279, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. I have gained weight since I started taking Lifecitam 750 Tablet. Is it because of Lifecitam 750 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Lifecitam 750 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(12280, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. How long does Lifecitam 750 Tablet take to show its effect?', 'Lifecitam 750 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Lifecitam 750 Tablet starts working completely.'),
(12281, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. For how long do I need to take Lifecitam 750 Tablet?', 'You should continue to take Lifecitam 750 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(12282, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. Will I get addicted to Lifecitam 750 Tablet if I use it for a long time?', 'No, Lifecitam 750 Tablet is not habit-forming. No physical or psychological dependence has been reported with Lifecitam 750 Tablet. Consult your doctor if you experience any side effects.'),
(12283, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. What symptoms can occur if someone takes an excess of Lifecitam 750 Tablet?', 'Taking an excess of Lifecitam 750 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(12284, 'Lifecitam 750 Tablet', 'Fibovil Pharmaceuticals Pvt Ltd', 'Lifecitam 750 Tablet', 'Q. How do I come off Lifecitam 750 Tablet?', 'The dose of Lifecitam 750 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Lifecitam 750 Tablet straight away, even if you have epilepsy.'),
(12285, 'Lifeclox 250mg/250mg Tablet', 'Life Guard Pharma', 'Lifeclox 250mg/250mg Tablet', 'How long does Lifeclox 250mg/250mg Tablet takes to work?', 'Usually, Lifeclox 250mg/250mg Tablet starts working soon after using it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12286, 'Lifeclox 250mg/250mg Tablet', 'Life Guard Pharma', 'Lifeclox 250mg/250mg Tablet', 'Can I stop taking Lifeclox 250mg/250mg Tablet when I feel better?', 'No, do not stop taking Lifeclox 250mg/250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12287, 'Lifecort 6mg Tablet', 'Biowell Life Sciences', 'Lifecort 6mg Tablet (Biowell Life Sciences)', 'Is Lifecort 6mg Tablet a steroid?', 'Yes, Lifecort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lifecort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(12288, 'Lifecort 6mg Tablet', 'Biowell Life Sciences', 'Lifecort 6mg Tablet (Biowell Life Sciences)', 'What is Lifecort 6mg Tablet used for?', 'Lifecort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(12289, 'Lifecort 6mg Tablet', 'Biowell Life Sciences', 'Lifecort 6mg Tablet (Biowell Life Sciences)', 'How does Lifecort 6mg Tablet work?', 'Lifecort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(12290, 'Lifecort 6mg Tablet', 'Biowell Life Sciences', 'Lifecort 6mg Tablet (Biowell Life Sciences)', 'Is Lifecort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lifecort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lifecort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(12291, 'Lifecort 6mg Tablet', 'Biowell Life Sciences', 'Lifecort 6mg Tablet (Biowell Life Sciences)', 'Is Lifecort 6mg Tablet a painkiller?', 'No, Lifecort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(12292, 'Lifecort 6mg Tablet', 'Biowell Life Sciences', 'Lifecort 6mg Tablet (Biowell Life Sciences)', 'Can I take Lifecort 6mg Tablet with Tamsulosin?', 'Yes, Lifecort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(12293, 'Lifecort 6mg Tablet', 'Welcare Pharma Pvt Ltd', 'Lifecort 6mg Tablet (Welcare Pharma Pvt Ltd)', 'Is Lifecort 6mg Tablet a steroid?', 'Yes, Lifecort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lifecort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(12294, 'Lifecort 6mg Tablet', 'Welcare Pharma Pvt Ltd', 'Lifecort 6mg Tablet (Welcare Pharma Pvt Ltd)', 'What is Lifecort 6mg Tablet used for?', 'Lifecort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(12295, 'Lifecort 6mg Tablet', 'Welcare Pharma Pvt Ltd', 'Lifecort 6mg Tablet (Welcare Pharma Pvt Ltd)', 'How does Lifecort 6mg Tablet work?', 'Lifecort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(12296, 'Lifecort 6mg Tablet', 'Welcare Pharma Pvt Ltd', 'Lifecort 6mg Tablet (Welcare Pharma Pvt Ltd)', 'Is Lifecort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lifecort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lifecort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(12297, 'Lifecort 6mg Tablet', 'Welcare Pharma Pvt Ltd', 'Lifecort 6mg Tablet (Welcare Pharma Pvt Ltd)', 'Is Lifecort 6mg Tablet a painkiller?', 'No, Lifecort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(12298, 'Lifecort 6mg Tablet', 'Welcare Pharma Pvt Ltd', 'Lifecort 6mg Tablet (Welcare Pharma Pvt Ltd)', 'Can I take Lifecort 6mg Tablet with Tamsulosin?', 'Yes, Lifecort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(12299, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'How long does Lifederm Cream takes to work?', 'Usually, Lifederm Cream starts working soon after applying it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12300, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'Is it safe to use Lifederm Cream?', 'Yes, Lifederm Cream is safe when used according to your doctor’s advice and for limited duration of time. However, in some patients it may cause some unwanted side effects like transient burning, itching and irritation at the application site. It may also cause other uncommon or rare side effects. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(12301, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'Can I stop taking Lifederm Cream when my symptoms are relieved?', 'No, do not stop taking Lifederm Cream and complete the full course of treatment, even if you feel better. Your symptoms may improve before the skin infection is completely cured.'),
(12302, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'What are the precautions needed to be taken while using Lifederm Cream?', 'Lifederm Cream should not be used on the face. Do not use the medication for longer than the advised periods of time. Do not apply a bandage or dressing to the area being treated, as this will increase the absorption of the preparation and increase the risk of side effects. This medicine should only be used by the patient and never be given to other people even if their condition appears to be the same.'),
(12303, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'How to use Lifederm Cream?', 'Follow the directions given by the healthcare provider on the medication. Apply the medication thinly and in sufficient quantity to cover the affected area completely. Lifederm Cream is usually applied two or three times a day on the affected areas of skin. Wash your hands after using Lifederm Cream, unless it is used for treating skin infection on the hands.'),
(12304, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'Can I overuse Lifederm Cream?', 'No, do not overuse Lifederm Cream for long periods or on large areas of skin. It can cause over-absorption of the medicine into the body which may further lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(12305, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'What is the storage condition for the Lifederm Cream?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12306, 'Lifederm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifederm Cream', 'Can I stop using Lifederm Cream when I feel better?', 'No, do not stop using Lifederm Cream and finish the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cleared.'),
(12307, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'What is Lifedol-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(12308, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Is it safe to take Lifedol-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(12309, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Can I stop taking Lifedol-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(12310, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Can Lifedol-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(12311, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Can Lifedol-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(12312, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Are there any specific contraindications associated with taking Lifedol-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(12313, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Can I take Lifedol-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(12314, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Can the use of Lifedol-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(12315, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'Can I take a higher dose of Lifedol-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12316, 'Lifedol-SP Tablet', 'Lifegrace Pharmaceuticals Pvt Ltd', 'Lifedol-SP Tablet', 'What are the instructions for storage and disposal of Lifedol-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12317, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'What is Lifemec PG 750mcg/75mg Capsule?', 'Lifemec PG 750mcg/75mg Capsule is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(12318, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'Can I stop taking Lifemec PG 750mcg/75mg Capsule when my pain is relieved?', 'No, you should not stop taking Lifemec PG 750mcg/75mg Capsule even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lifemec PG 750mcg/75mg Capsule, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Lifemec PG 750mcg/75mg Capsule before you stop the medication completely.'),
(12319, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'How to manage weight gain associated with the use of Lifemec PG 750mcg/75mg Capsule?', 'Lifemec PG 750mcg/75mg Capsule can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(12320, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'Can the use of Lifemec PG 750mcg/75mg Capsule cause sleepiness or drowsiness?', 'Yes, Lifemec PG 750mcg/75mg Capsule may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(12321, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'Are there any serious side effects associated with the use of Lifemec PG 750mcg/75mg Capsule?', 'Serious side effects caused because of the use of Lifemec PG 750mcg/75mg Capsule are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Lifemec PG 750mcg/75mg Capsule and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(12322, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'How long will the Lifemec PG 750mcg/75mg Capsule take to act?', 'An initial benefit with Lifemec PG 750mcg/75mg Capsule may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(12323, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'What if I forget to take Lifemec PG 750mcg/75mg Capsule?', 'If you forget to take the scheduled dose of Lifemec PG 750mcg/75mg Capsule and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(12324, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'Will a higher than the recommended dose of Lifemec PG 750mcg/75mg Capsule be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12325, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'Can I drink alcohol while taking Lifemec PG 750mcg/75mg Capsule?', 'No, do not drink alcohol while taking Lifemec PG 750mcg/75mg Capsule. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lifemec PG 750mcg/75mg Capsule.'),
(12326, 'Lifemec PG 750mcg/75mg Capsule', 'Anabolic Remedies Pvt Ltd', 'Lifemec PG 750mcg/75mg Capsule', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Lifemec PG 750mcg/75mg Capsule. However, you must consult your doctor if the advised dosage of Lifemec PG 750mcg/75mg Capsule does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(12327, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Lifemero 1000mg Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Lifemero 1000mg Injection. Medicines like Lifemero 1000mg Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12328, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'Even though Lifemero 1000mg Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Lifemero 1000mg Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(12329, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'Is Lifemero 1000mg Injection a strong antibiotic? Which infections does it treat?', 'Lifemero 1000mg Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(12330, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'Is Lifemero 1000mg Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Lifemero 1000mg Injection is effective only against bacteria. It is not effective against virus or fungal infections. Lifemero 1000mg Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.'),
(12331, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'My cousin was receiving Lifemero 1000mg Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Lifemero 1000mg Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Lifemero 1000mg Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(12332, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'For how long will I need to take Lifemero 1000mg Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Lifemero 1000mg Injection. Consult your doctor if you are not sure.'),
(12333, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'What if Lifemero 1000mg Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Lifemero 1000mg Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Lifemero 1000mg Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(12334, 'Lifemero 1000mg Injection', 'Solar Life Sciences Medicare Pvt Ltd', 'Lifemero 1000mg Injection', 'Does it matter if I miss or stop Lifemero 1000mg Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Lifemero 1000mg Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(12335, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Is it safe to use Lifemol P Oral Suspension?', 'Yes, Lifemol P Oral Suspension is safe to use in most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(12336, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Can Lifemol P Oral Suspension be stopped when the pain is relieved?', 'Lifemol P Oral Suspension is usually used for short term and can be discontinued when the pain is relieved. However, if advised by the doctor, it should be continued for the recommended time period.'),
(12337, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Can the use of Lifemol P Oral Suspension cause nausea and vomiting?', 'Yes, the use of Lifemol P Oral Suspension can cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with the medicine. In the case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to the doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(12338, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Can the use of Lifemol P Oral Suspension cause dizziness?', 'Yes, the use of Lifemol P Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(12339, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Are there any specific contraindications associated with the use of Lifemol P Oral Suspension?', 'The use of Lifemol P Oral Suspension is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of liver or kidney disease.'),
(12340, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Can I take Lifemol P Oral Suspension with vitamin B-complex?', 'Yes, Lifemol P Oral Suspension can be taken with Vitamin B-complex preparations. While Lifemol P Oral Suspension helps to relieve pain, Vitamin B-complex can help correct the vitamin deficiency that might be causing the underlying painful condition.'),
(12341, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Can the use of Lifemol P Oral Suspension cause damage to kidneys?', 'Yes, the long-term use of Lifemol P Oral Suspension can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(12342, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'Is it safe to take a higher than the recommended dose of Lifemol P Oral Suspension?', 'No, taking a higher than the recommended dose of Lifemol P Oral Suspension can increase the risks of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage the kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12343, 'Lifemol P Oral Suspension', 'LifeCare Formulation Pvt Ltd', 'Lifemol P Oral Suspension', 'What are the storage condition for Lifemol P Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12344, 'Lifenor FM 0.5mg/10mg Tablet', 'Claribel Pharmaceuticals Pvt Ltd', 'Lifenor FM 0.5mg/10mg Tablet', 'What is Lifenor FM 0.5mg/10mg Tablet?', 'Lifenor FM 0.5mg/10mg Tablet is a combination of two medicines: Flupenthixol and Melitracen. This medicine is used to treat various forms of mood disorders. It works by balancing the amount of certain natural substances in the brain that are responsible for mood swings.'),
(12345, 'Lifenor FM 0.5mg/10mg Tablet', 'Claribel Pharmaceuticals Pvt Ltd', 'Lifenor FM 0.5mg/10mg Tablet', 'Can Lifenor FM 0.5mg/10mg Tablet be stopped when symptoms are relieved?', 'No, Lifenor FM 0.5mg/10mg Tablet should be continued even if the patient feels well. Instead of stopping the dosage yourself, consult your doctor who might gradually decrease the dosage.'),
(12346, 'Lifenor FM 0.5mg/10mg Tablet', 'Claribel Pharmaceuticals Pvt Ltd', 'Lifenor FM 0.5mg/10mg Tablet', 'Can the Lifenor FM 0.5mg/10mg Tablet cause sleepiness or drowsiness?', 'Lifenor FM 0.5mg/10mg Tablet may make you drowsy or may cause you to suddenly fall asleep during your daily activities. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. If you suddenly fall asleep while you are doing something such as watching television, talking, eating or riding a car, or if you become very drowsy, especially during the daytime, call your doctor.'),
(12347, 'Lifenox 400mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 400mg Injection', 'How do you administer Lifenox 400mg Injection?', 'Lifenox 400mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(12348, 'Lifenox 400mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 400mg Injection', 'What are the conditions where I should be cautious before taking Lifenox 400mg Injection?', 'You must give a proper history to your doctor before you start taking Lifenox 400mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(12349, 'Lifenox 400mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 400mg Injection', 'How to store Lifenox 400mg Injection injections?', 'Store Lifenox 400mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(12350, 'Lifenox 400mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 400mg Injection', 'Can Lifenox 400mg Injection be used in heart attack?', 'Yes, Lifenox 400mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(12351, 'Lifenox 400mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 400mg Injection', 'Is it ok to inject the air bubble in Lifenox 400mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(12352, 'Lifenox 60mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 60mg Injection', 'How do you administer Lifenox 60mg Injection?', 'Lifenox 60mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(12353, 'Lifenox 60mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 60mg Injection', 'What are the conditions where I should be cautious before taking Lifenox 60mg Injection?', 'You must give a proper history to your doctor before you start taking Lifenox 60mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(12354, 'Lifenox 60mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 60mg Injection', 'How to store Lifenox 60mg Injection injections?', 'Store Lifenox 60mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(12355, 'Lifenox 60mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 60mg Injection', 'Can Lifenox 60mg Injection be used in heart attack?', 'Yes, Lifenox 60mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(12356, 'Lifenox 60mg Injection', 'Aprica Pharmaceuticals Pvt Ltd', 'Lifenox 60mg Injection', 'Is it ok to inject the air bubble in Lifenox 60mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(12357, 'Lifeone SB 1000mg/500mg Injection', 'Indlife Traders and Marketing Private Limited', 'Lifeone SB 1000mg/500mg Injection', 'Can the use of Lifeone SB 1000mg/500mg Injection cause allergic reaction?', 'Yes, Lifeone SB 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(12358, 'Lifeone SB 1000mg/500mg Injection', 'Indlife Traders and Marketing Private Limited', 'Lifeone SB 1000mg/500mg Injection', 'Can the use of Lifeone SB 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lifeone SB 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12359, 'Lifeone SB 1000mg/500mg Injection', 'Indlife Traders and Marketing Private Limited', 'Lifeone SB 1000mg/500mg Injection', 'How long does Lifeone SB 1000mg/500mg Injection takes to work?', 'Usually, Lifeone SB 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12360, 'Lifeone SB 1000mg/500mg Injection', 'Indlife Traders and Marketing Private Limited', 'Lifeone SB 1000mg/500mg Injection', 'What if I don\'t get better after using Lifeone SB 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12361, 'Lifeone SB 1000mg/500mg Injection', 'Indlife Traders and Marketing Private Limited', 'Lifeone SB 1000mg/500mg Injection', 'Can I stop taking Lifeone SB 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Lifeone SB 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12362, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'What is Lifeovit PG 750mcg/75mg Tablet?', 'Lifeovit PG 750mcg/75mg Tablet is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(12363, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'Can I stop taking Lifeovit PG 750mcg/75mg Tablet when my pain is relieved?', 'No, you should not stop taking Lifeovit PG 750mcg/75mg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lifeovit PG 750mcg/75mg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Lifeovit PG 750mcg/75mg Tablet before you stop the medication completely.'),
(12364, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'How to manage weight gain associated with the use of Lifeovit PG 750mcg/75mg Tablet?', 'Lifeovit PG 750mcg/75mg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(12365, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'Can the use of Lifeovit PG 750mcg/75mg Tablet cause sleepiness or drowsiness?', 'Yes, Lifeovit PG 750mcg/75mg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(12366, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'Are there any serious side effects associated with the use of Lifeovit PG 750mcg/75mg Tablet?', 'Serious side effects caused because of the use of Lifeovit PG 750mcg/75mg Tablet are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Lifeovit PG 750mcg/75mg Tablet and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(12367, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'How long will the Lifeovit PG 750mcg/75mg Tablet take to act?', 'An initial benefit with Lifeovit PG 750mcg/75mg Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(12368, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'What if I forget to take Lifeovit PG 750mcg/75mg Tablet?', 'If you forget to take the scheduled dose of Lifeovit PG 750mcg/75mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(12369, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'Will a higher than the recommended dose of Lifeovit PG 750mcg/75mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12370, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'Can I drink alcohol while taking Lifeovit PG 750mcg/75mg Tablet?', 'No, do not drink alcohol while taking Lifeovit PG 750mcg/75mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lifeovit PG 750mcg/75mg Tablet.'),
(12371, 'Lifeovit PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit PG 750mcg/75mg Tablet', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Lifeovit PG 750mcg/75mg Tablet. However, you must consult your doctor if the advised dosage of Lifeovit PG 750mcg/75mg Tablet does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(12372, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'What is Lifeovit-PG 750mcg/75mg Tablet?', 'Lifeovit-PG 750mcg/75mg Tablet is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(12373, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'Can I stop taking Lifeovit-PG 750mcg/75mg Tablet when my pain is relieved?', 'No, you should not stop taking Lifeovit-PG 750mcg/75mg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lifeovit-PG 750mcg/75mg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Lifeovit-PG 750mcg/75mg Tablet before you stop the medication completely.'),
(12374, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'How to manage weight gain associated with the use of Lifeovit-PG 750mcg/75mg Tablet?', 'Lifeovit-PG 750mcg/75mg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(12375, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'Can the use of Lifeovit-PG 750mcg/75mg Tablet cause sleepiness or drowsiness?', 'Yes, Lifeovit-PG 750mcg/75mg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(12376, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'Are there any serious side effects associated with the use of Lifeovit-PG 750mcg/75mg Tablet?', 'Serious side effects caused because of the use of Lifeovit-PG 750mcg/75mg Tablet are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Lifeovit-PG 750mcg/75mg Tablet and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(12377, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'How long will the Lifeovit-PG 750mcg/75mg Tablet take to act?', 'An initial benefit with Lifeovit-PG 750mcg/75mg Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(12378, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'What if I forget to take Lifeovit-PG 750mcg/75mg Tablet?', 'If you forget to take the scheduled dose of Lifeovit-PG 750mcg/75mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(12379, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'Will a higher than the recommended dose of Lifeovit-PG 750mcg/75mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12380, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'Can I drink alcohol while taking Lifeovit-PG 750mcg/75mg Tablet?', 'No, do not drink alcohol while taking Lifeovit-PG 750mcg/75mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lifeovit-PG 750mcg/75mg Tablet.'),
(12381, 'Lifeovit-PG 750mcg/75mg Tablet', 'Lifekyor Pharmaceuticals', 'Lifeovit-PG 750mcg/75mg Tablet', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Lifeovit-PG 750mcg/75mg Tablet. However, you must consult your doctor if the advised dosage of Lifeovit-PG 750mcg/75mg Tablet does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(12382, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'What is Life-Pan-DSR Capsule?', 'Life-Pan-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(12383, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'Is it safe to use Life-Pan-DSR Capsule?', 'Life-Pan-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(12384, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'Are there any specific contraindications associated with the use of Life-Pan-DSR Capsule?', 'The use of Life-Pan-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(12385, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'Can the use of Life-Pan-DSR Capsule cause dry mouth?', 'Yes, the use of Life-Pan-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(12386, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'Can the use of Life-Pan-DSR Capsule cause diarrhea?', 'Yes, the use of Life-Pan-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(12387, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'What are the instructions for storage and disposal of Life-Pan-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12388, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'What is Life-Pan-DSR Capsule price?', 'You can get Life-Pan-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(12389, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'While taking Life-Pan-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(12390, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'Can I take alcohol while taking Life-Pan-DSR Capsule?', 'No, alcohol intake is not advised with Life-Pan-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(12391, 'Life-Pan-DSR Capsule', 'New Life Global Healthcare', 'Life-Pan-DSR Capsule', 'Can I stop taking Life-Pan-DSR Capsule if I feel better?', 'If you have been taking Life-Pan-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(12392, 'Lifepearl 200UM 8LP2S200 Injection', 'Terumo India Private Limited', 'Lifepearl 200UM 8LP2S200 Injection', 'What is Lifepearl 200UM 8LP2S200 Injection used for?', 'Lifepearl 200UM 8LP2S200 Injection is a medicine used to treat constipation and for intestine preparation before surgical procedures. It works by pulling more water into the intestines, which is called osmosis. When there is more water in the intestines, the stool becomes softer or even watery and is easier to pass.'),
(12393, 'Lifepearl 200UM 8LP2S200 Injection', 'Terumo India Private Limited', 'Lifepearl 200UM 8LP2S200 Injection', 'What are the side effects of Lifepearl 200UM 8LP2S200 Injection?', 'The side effects of Lifepearl 200UM 8LP2S200 Injection are stomach pain, nausea, and diarrhea. However, these are usually not bothersome, but if they do not resolve, please consult your doctor.'),
(12394, 'Lifepearl 200UM 8LP2S200 Injection', 'Terumo India Private Limited', 'Lifepearl 200UM 8LP2S200 Injection', 'How long does Lifepearl 200UM 8LP2S200 Injection take to work?', 'Lifepearl 200UM 8LP2S200 Injection usually takes 2 to 3 days to start working. It works by increasing the fluid in the small intestine, thus making stools softer and easier to pass. As a result, a bowel movement is stimulated by causing a watery diarrhea.'),
(12395, 'Lifepearl 200UM 8LP2S200 Injection', 'Terumo India Private Limited', 'Lifepearl 200UM 8LP2S200 Injection', 'What types of food to eat when you feel constipated?', 'You must take a fiber-rich diet such as vegetables, fresh fruits and whole grains if you have constipation. Drink plenty of water and avoid taking alcohol. This will ensure that your stools are soft and easy to pass. You may also take laxatives or fiber supplements if you are facing issues with digestion. If still your symptoms do not improve, please consult your doctor.'),
(12396, 'Lifepearl 200UM 8LP2S200 Injection', 'Terumo India Private Limited', 'Lifepearl 200UM 8LP2S200 Injection', 'Is it OK to take Lifepearl 200UM 8LP2S200 Injection every day?', 'It is advised not to take Lifepearl 200UM 8LP2S200 Injection for more than 7 days days. If your symptoms do not improve within a week, please consult your doctor.'),
(12397, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'What is Lifepen 40mg Injection used for?', 'Lifepen 40mg Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lifepen 40mg Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(12398, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'Can I take antacids along with Lifepen 40mg Injection?', 'Yes, you can take antacids along with Lifepen 40mg Injection. Take it 2 hours before or after you take Lifepen 40mg Injection.'),
(12399, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'How long does it take for Lifepen 40mg Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lifepen 40mg Injection to work properly so you may still have some symptoms during this time.'),
(12400, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'Does Lifepen 40mg Injection cause weight gain?', 'Although rare but long-term treatment with Lifepen 40mg Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(12401, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'Can I take alcohol with Lifepen 40mg Injection?', 'No, alcohol intake is not advised with Lifepen 40mg Injection. Alcohol itself does not affect the working of Lifepen 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(12402, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Lifepen 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(12403, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'Can I take Lifepen 40mg Injection for a long term?', 'Lifepen 40mg Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lifepen 40mg Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lifepen 40mg Injection as advised by your doctor and under their supervision.'),
(12404, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'Are painkillers safe to take along with Lifepen 40mg Injection?', 'Yes, it is safe to take painkillers along with Lifepen 40mg Injection. Lifepen 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Lifepen 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(12405, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'Is a single dose of Lifepen 40mg Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lifepen 40mg Injection you may get relief with the symptoms. Lifepen 40mg Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lifepen 40mg Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lifepen 40mg Injection regularly for 2 weeks as prescribed.'),
(12406, 'Lifepen 40mg Injection', 'Allcure Lifesciences', 'Lifepen 40mg Injection', 'What are the long term side effects of Lifepen 40mg Injection?', 'If Lifepen 40mg Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(12407, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'What is Lifepen 40mg Tablet used for?', 'Lifepen 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lifepen 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(12408, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'How long does it take for Lifepen 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lifepen 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(12409, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'Is a single dose of Lifepen 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lifepen 40mg Tablet you may get relief with the symptoms. Lifepen 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lifepen 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lifepen 40mg Tablet regularly for 2 weeks as prescribed.'),
(12410, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'Is Lifepen 40mg Tablet safe?', 'Yes, Lifepen 40mg Tablet is relatively safe. Most of the people who take Lifepen 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(12411, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'Can I take Lifepen 40mg Tablet for a long term?', 'Lifepen 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Lifepen 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lifepen 40mg Tablet as advised by your doctor and under their supervision.'),
(12412, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'What are the long term side effects of Lifepen 40mg Tablet?', 'If Lifepen 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(12413, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'What is the best time to take Lifepen 40mg Tablet?', 'Usually, Lifepen 40mg Tablet is taken once a day, first thing in the morning. If you take Lifepen 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(12414, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'Can I stop taking Lifepen 40mg Tablet if I feel better?', 'If you have been taking Lifepen 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lifepen 40mg Tablet.'),
(12415, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'Does Lifepen 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Lifepen 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(12416, 'Lifepen 40mg Tablet', 'Allcure Lifesciences', 'Lifepen 40mg Tablet', 'Can I take alcohol with Lifepen 40mg Tablet?', 'No, alcohol intake is not advised with Lifepen 40mg Tablet. Alcohol itself does not affect the working of Lifepen 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(12417, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'What is Lifepen D 10mg/40mg Tablet?', 'Lifepen D 10mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(12418, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'Is it safe to use Lifepen D 10mg/40mg Tablet?', 'Lifepen D 10mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(12419, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Lifepen D 10mg/40mg Tablet?', 'The use of Lifepen D 10mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(12420, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'Can the use of Lifepen D 10mg/40mg Tablet cause dry mouth?', 'Yes, the use of Lifepen D 10mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(12421, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'Can the use of Lifepen D 10mg/40mg Tablet cause diarrhea?', 'Yes, the use of Lifepen D 10mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(12422, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'What are the instructions for storage and disposal of Lifepen D 10mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12423, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'What is Lifepen D 10mg/40mg Tablet price?', 'You can get Lifepen D 10mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12424, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'While taking Lifepen D 10mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(12425, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'Can I take alcohol while taking Lifepen D 10mg/40mg Tablet?', 'No, alcohol intake is not advised with Lifepen D 10mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(12426, 'Lifepen D 10mg/40mg Tablet', 'Allcure Lifesciences', 'Lifepen D 10mg/40mg Tablet', 'Can I stop taking Lifepen D 10mg/40mg Tablet if I feel better?', 'If you have been taking Lifepen D 10mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(12427, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'What is Lifepen D 30mg/40mg Capsule SR?', 'Lifepen D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(12428, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'Is it safe to use Lifepen D 30mg/40mg Capsule SR?', 'Lifepen D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(12429, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'Are there any specific contraindications associated with the use of Lifepen D 30mg/40mg Capsule SR?', 'The use of Lifepen D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(12430, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'Can the use of Lifepen D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Lifepen D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(12431, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'Can the use of Lifepen D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Lifepen D 30mg/40mg Capsule SR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(12432, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Lifepen D 30mg/40mg Capsule SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12433, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'What is Lifepen D 30mg/40mg Capsule SR price?', 'You can get Lifepen D 30mg/40mg Capsule SR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(12434, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'While taking Lifepen D 30mg/40mg Capsule SR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(12435, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'Can I take alcohol while taking Lifepen D 30mg/40mg Capsule SR?', 'No, alcohol intake is not advised with Lifepen D 30mg/40mg Capsule SR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(12436, 'Lifepen D 30mg/40mg Capsule SR', 'Allcure Lifesciences', 'Lifepen D 30mg/40mg Capsule SR', 'Can I stop taking Lifepen D 30mg/40mg Capsule SR if I feel better?', 'If you have been taking Lifepen D 30mg/40mg Capsule SR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(12437, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Lifepenem 500mg Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Lifepenem 500mg Injection. Medicines like Lifepenem 500mg Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.'),
(12438, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. Even though Lifepenem 500mg Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Lifepenem 500mg Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(12439, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. Is Lifepenem 500mg Injection a strong antibiotic? Which infections does it treat?', 'Lifepenem 500mg Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(12440, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. Is Lifepenem 500mg Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Lifepenem 500mg Injection is effective only against bacteria. It is not effective against virus or fungal infections. Lifepenem 500mg Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.'),
(12441, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. My cousin was receiving Lifepenem 500mg Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Lifepenem 500mg Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Lifepenem 500mg Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(12442, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. For how long will I need to take Lifepenem 500mg Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Lifepenem 500mg Injection. Consult your doctor if you are not sure.'),
(12443, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. What if Lifepenem 500mg Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Lifepenem 500mg Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Lifepenem 500mg Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(12444, 'Lifepenem 500mg Injection', 'Metta Life Sciences Private Limited', 'Lifepenem 500mg Injection', 'Q. Does it matter if I miss or stop Lifepenem 500mg Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Lifepenem 500mg Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(12445, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'Is Lifepod 200mg Tablet safe to use?', 'Lifepod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(12446, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'Can the use of Lifepod 200mg Tablet cause diarrhea?', 'Yes, the use of Lifepod 200mg Tablet can cause diarrhea. Lifepod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(12447, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'Is Lifepod 200mg Tablet an antibiotic?', 'Yes, Lifepod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(12448, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'Can Lifepod 200mg Tablet cause constipation?', 'Yes, Lifepod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(12449, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'Can I stop taking Lifepod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lifepod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(12450, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'How long does Lifepod 200mg Tablet take to work?', 'Usually, Lifepod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(12451, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'What if I do not get better after using Lifepod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12452, 'Lifepod 200mg Tablet', 'Life Organics Bpl', 'Lifepod 200mg Tablet', 'Can Lifepod 200mg Tablet treat UTI?', 'Yes, Lifepod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lifepod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(12453, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'Can the use of Lifepod CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lifepod CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12454, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'How long does Lifepod CV 200mg/125mg Tablet takes to work?', 'Usually, Lifepod CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12455, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'What if I don\'t get better after using Lifepod CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12456, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'Can I stop taking Lifepod CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Lifepod CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12457, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'What is Lifepod CV 200mg/125mg Tablet?', 'Lifepod CV 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(12458, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'Can the use of Lifepod CV 200mg/125mg Tablet cause any serious side effects?', 'Lifepod CV 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(12459, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'Can I stop taking Lifepod CV 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lifepod CV 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12460, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'Can Lifepod CV 200mg/125mg Tablet cause allergic reaction?', 'Yes, Lifepod CV 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(12461, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'Are there any specific contraindications associated with the use of Lifepod CV 200mg/125mg Tablet?', 'The use of Lifepod CV 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Lifepod CV 200mg/125mg Tablet.'),
(12462, 'Lifepod CV 200mg/125mg Tablet', 'Life Organics Bpl', 'Lifepod CV 200mg/125mg Tablet', 'Can I take oral contraceptive pills while taking Lifepod CV 200mg/125mg Tablet?', 'No, Lifepod CV 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(12463, 'Lifepred 125mg Injection', 'Willpro Healthcare Private Limited', 'Lifepred 125mg Injection', 'How does Lifepred 125mg Injection work?', 'Lifepred 125mg Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(12464, 'Lifepred 125mg Injection', 'Willpro Healthcare Private Limited', 'Lifepred 125mg Injection', 'Is Lifepred 125mg Injection a steroid?', 'Yes, Lifepred 125mg Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Lifepred 125mg Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(12465, 'Lifepred 125mg Injection', 'Willpro Healthcare Private Limited', 'Lifepred 125mg Injection', 'What is Lifepred 125mg Injection used for?', 'Lifepred 125mg Injection has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(12466, 'Lifepred 125mg Injection', 'Willpro Healthcare Private Limited', 'Lifepred 125mg Injection', 'How is Lifepred 125mg Injection administered?', 'Lifepred 125mg Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). The doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Lifepred 125mg Injection.'),
(12467, 'Lifepred 125mg Injection', 'Willpro Healthcare Private Limited', 'Lifepred 125mg Injection', 'Is Lifepred 125mg Injection better than Prednisone?', 'Clinical studies have shown that Lifepred 125mg Injection is more strong and efficient than Prednisone. It stays in our body for a longer duration and is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(12468, 'Lifepred 125mg Injection', 'Willpro Healthcare Private Limited', 'Lifepred 125mg Injection', 'Does Lifepred 125mg Injection cause weight gain?', 'Lifepred 125mg Injection can cause weight gain especially when high doses taken for a long time or repeated short courses are taken. Please consult your doctor if you experience weight gain after taking Lifepred 125mg Injection.'),
(12469, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'What is the dosage of Lifepride 1mg Tablet?', 'The recommended starting dose of Lifepride 1mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(12470, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'Does Lifepride 1mg Tablet make you sleepy?', 'Lifepride 1mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(12471, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'Is Lifepride 1mg Tablet safe for kidneys?', 'Lifepride 1mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Lifepride 1mg Tablet is principally eliminated by the kidneys.'),
(12472, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'Does Lifepride 1mg Tablet cause memory loss?', 'No, it is not known that Lifepride 1mg Tablet causes memory loss. However, the use of Lifepride 1mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(12473, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'Who should not take Lifepride 1mg Tablet?', 'Lifepride 1mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Lifepride 1mg Tablet.'),
(12474, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'How long does it take for Lifepride 1mg Tablet to start working?', 'Lifepride 1mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(12475, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'How long do I need to take Lifepride 1mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Lifepride 1mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Lifepride 1mg Tablet without talking to your doctor. If you stop taking Lifepride 1mg Tablet suddenly your diabetes may get worse.'),
(12476, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'What can happen if I take more than the recommended dose of Lifepride 1mg Tablet?', 'Lifepride 1mg Tablet should be taken strictly as advised by the doctor. Overdose of Lifepride 1mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(12477, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'Can you take Lifepride 1mg Tablet on an empty stomach?', 'No. Taking Lifepride 1mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Lifepride 1mg Tablet.'),
(12478, 'Lifepride 1mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 1mg Tablet', 'Can Lifepride 1mg Tablet cause weight gain?', 'Yes, Lifepride 1mg Tablet can cause weight gain. Lifepride 1mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(12479, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'What is the dosage of Lifepride 2mg Tablet?', 'The recommended starting dose of Lifepride 2mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(12480, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'Does Lifepride 2mg Tablet make you sleepy?', 'Lifepride 2mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(12481, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'Is Lifepride 2mg Tablet safe for kidneys?', 'Lifepride 2mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Lifepride 2mg Tablet is principally eliminated by the kidneys.'),
(12482, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'Does Lifepride 2mg Tablet cause memory loss?', 'No, it is not known that Lifepride 2mg Tablet causes memory loss. However, the use of Lifepride 2mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(12483, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'Who should not take Lifepride 2mg Tablet?', 'Lifepride 2mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Lifepride 2mg Tablet.'),
(12484, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'How long does it take for Lifepride 2mg Tablet to start working?', 'Lifepride 2mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(12485, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'How long do I need to take Lifepride 2mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Lifepride 2mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Lifepride 2mg Tablet without talking to your doctor. If you stop taking Lifepride 2mg Tablet suddenly your diabetes may get worse.'),
(12486, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'What can happen if I take more than the recommended dose of Lifepride 2mg Tablet?', 'Lifepride 2mg Tablet should be taken strictly as advised by the doctor. Overdose of Lifepride 2mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(12487, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'Can you take Lifepride 2mg Tablet on an empty stomach?', 'No. Taking Lifepride 2mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Lifepride 2mg Tablet.'),
(12488, 'Lifepride 2mg Tablet', 'Regenix Drugs Ltd', 'Lifepride 2mg Tablet', 'Can Lifepride 2mg Tablet cause weight gain?', 'Yes, Lifepride 2mg Tablet can cause weight gain. Lifepride 2mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(12489, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'I have been diagnosed with heart failure and the doctor has prescribed me Lifepril 5mg Tablet. Why?', 'Lifepril 5mg Tablet belongs to the angiotensin-converting enzyme (ACE) inhibitor group of drugs. It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it is beneficial in heart failure. Additionally, it is also used to lower blood pressure and prevent stroke.'),
(12490, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'Can Lifepril 5mg Tablet increase potassium levels? If yes, what should be done?', 'Lifepril 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems, and dehydration. Potassium levels may also increase in patients using potassium salts or medicines which increase potassium levels or are aged more than 70 years of age. If you have any of these conditions and are using Lifepril 5mg Tablet, you need to be careful and get regular blood tests done to monitor potassium levels.'),
(12491, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'When can I expect my blood pressure to be normal after starting Lifepril 5mg Tablet?', 'Lifepril 5mg Tablet takes a few hours to reduce high blood pressure but since there are no symptoms, you will not notice any difference. It takes a few weeks for the blood pressure to get fully controlled. Do not stop taking the medicine. Keep taking it even if you feel better or if your blood pressure is normalized.'),
(12492, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'Ever since I started taking Lifepril 5mg Tablet, I noticed that I have developed a dry cough which is very irritating and is not relieved by any medicine. Why is it?', 'Lifepril 5mg Tablet commonly is responsible for dry cough which can be persistent and is not relieved by any medicine. Talk to your doctor if it bothers you or you have trouble sleeping, as another medicine may be better. Even if you stop taking Lifepril 5mg Tablet, the cough may take a few days to a month to go away.'),
(12493, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'I accidentally took a 25 mg Lifepril 5mg Tablet tablet instead of one 5 mg. Will it have any harmful effects?', 'Yes, you may feel lightheaded, dizzy, your pulse may become slow and you may even faint. You should take the help of a relative or friend for an emergency or seek immediate medical support.'),
(12494, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'Will there be any problem if I am taking Lifepril 5mg Tablet and I have surgery scheduled in a  week?', 'Inform your doctor that you are taking Lifepril 5mg Tablet. Lifepril 5mg Tablet can reduce your blood pressure when it is used with a general anesthetic. Your doctor may advise you to stop taking it 24 hours before surgery.'),
(12495, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'Can Lifepril 5mg Tablet affect my fertility?', 'There is no evidence that Lifepril 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, talk to your doctor first because Lifepril 5mg Tablet is not recommended in pregnancy.'),
(12496, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'I have diabetes. Does Lifepril 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lifepril 5mg Tablet may have some effect on antidiabetic medicines and insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(12497, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'I have been using Lifepril 5mg Tablet for blood pressure for some time, but now I have noticed that I often have a sore throat along with fever. I want to stop Lifepril 5mg Tablet and see if this goes, can I stop Lifepril 5mg Tablet?', 'No, you should not stop Lifepril 5mg Tablet suddenly as this may cause a sudden increase in your blood pressure which may be harmful to you. In addition to this, Lifepril 5mg Tablet can very rarely decrease your white blood cell count which is important to fight infections in your body. Consult your doctor and get a blood test done. If your white cell count is decreased, it could be due to Lifepril 5mg Tablet. Ask your doctor for alternative medicine for blood pressure. You can continue taking Lifepril 5mg Tablet if your investigations are normal.'),
(12498, 'Lifepril 5mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifepril 5mg Tablet', 'Is it safe to take Lifepril 5mg Tablet for a long time?', 'Yes, Lifepril 5mg Tablet is safe and works best if taken for a long time. But, taking Lifepril 5mg Tablet for a long time can sometimes affect the working of your kidneys. To keep track of this, your doctor will get regular blood tests done and check how well your kidneys are working.'),
(12499, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'What is Lifequin EC 250mg Tablet and what it is used for?', 'Lifequin EC 250mg Tablet is an anti-malarial medicine that is used for the treatment and prevention of malaria.'),
(12500, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'How long does it take for malaria symptoms to show?', 'Symptoms of malaria can develop as quickly as 7 days after you are bitten by an infected mosquito. Usually, the symptoms may take up to 7 to 18 days to appear (incubation periods) from the day of the infection. Initial symptoms of malaria are flu-like which include feeling hot and shivery, fever, muscle pains, vomiting, headaches, and diarrhea.'),
(12501, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'Is it safe to use Lifequin EC 250mg Tablet for a long period of time?', 'If your doctor has prescribed you Lifequin EC 250mg Tablet for a longer period of time, you should get your eyes checked regularly. This is because chloroquine present in this medicine might cause blurred vision, difficulty reading (due to words disappearing), and a rare eye condition called retinopathy if taken for a longer period of time.'),
(12502, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'Who should not use Lifequin EC 250mg Tablet?', 'Inform your doctor if you have psoriasis before taking Lifequin EC 250mg Tablet since it may make your condition worse.'),
(12503, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'What are the side effects of Lifequin EC 250mg Tablet?', 'Some of the most common side effects of this medicine are stomach pain, nausea, vomiting, and headache. These side effects can often be reduced by taking the medicine with food.'),
(12504, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'Can chloroquine cure coronavirus (COVID-19)?', 'There is not enough medical data to prove that chloroquine is effective in treating COVID-19. Therefore it is advisable not to take Lifequin EC 250mg Tablet without consulting your doctor for treating COVID-19.'),
(12505, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'Can I take antacids along with Lifequin EC 250mg Tablet?', 'If you take an antacid, give a gap of at least 4 hours between the two medications.'),
(12506, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'What is the difference between hydroxychloroquine and chloroquine?', 'Hydroxychloroquine and chloroquine were both first approved for malaria. However, chloroquine tends to cause many more side effects than hydroxychloroquine. As a result, hydroxychloroquine is more commonly used today. Hydroxychloroquine is also approved to treat rheumatoid arthritis and lupus, while chloroquine is not.'),
(12507, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'How can you prevent yourself from getting malaria?', 'Malaria can be prevented by taking certain precautionary steps like covering your arms and legs to prevent mosquito bites, using a mosquito net, and insect repellent. Check with your doctor whether you need to take malaria prevention tablets. If you do, make sure you take the right antimalarial tablets at the right dose and finish the proper course of treatment.'),
(12508, 'Lifequin EC 250mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 250mg Tablet', 'What is Lifequin EC 250mg Tablet and what it is used for?', 'Lifequin EC 250mg Tablet is an anti-malarial medicine that is used for the treatment and prevention of malaria.'),
(12509, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'What is Lifequin EC 500mg Tablet and what it is used for?', 'Lifequin EC 500mg Tablet is an anti-malarial medicine that is used for the treatment and prevention of malaria.'),
(12510, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'How long does it take for malaria symptoms to show?', 'Symptoms of malaria can develop as quickly as 7 days after you are bitten by an infected mosquito. Usually, the symptoms may take up to 7 to 18 days to appear (incubation periods) from the day of the infection. Initial symptoms of malaria are flu-like which include feeling hot and shivery, fever, muscle pains, vomiting, headaches, and diarrhea.'),
(12511, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'Is it safe to use Lifequin EC 500mg Tablet for a long period of time?', 'If your doctor has prescribed you Lifequin EC 500mg Tablet for a longer period of time, you should get your eyes checked regularly. This is because chloroquine present in this medicine might cause blurred vision, difficulty reading (due to words disappearing), and a rare eye condition called retinopathy if taken for a longer period of time.'),
(12512, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'Who should not use Lifequin EC 500mg Tablet?', 'Inform your doctor if you have psoriasis before taking Lifequin EC 500mg Tablet since it may make your condition worse.'),
(12513, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'What are the side effects of Lifequin EC 500mg Tablet?', 'Some of the most common side effects of this medicine are stomach pain, nausea, vomiting, and headache. These side effects can often be reduced by taking the medicine with food.'),
(12514, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'Can chloroquine cure coronavirus (COVID-19)?', 'There is not enough medical data to prove that chloroquine is effective in treating COVID-19. Therefore it is advisable not to take Lifequin EC 500mg Tablet without consulting your doctor for treating COVID-19.'),
(12515, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'Can I take antacids along with Lifequin EC 500mg Tablet?', 'If you take an antacid, give a gap of at least 4 hours between the two medications.'),
(12516, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'What is the difference between hydroxychloroquine and chloroquine?', 'Hydroxychloroquine and chloroquine were both first approved for malaria. However, chloroquine tends to cause many more side effects than hydroxychloroquine. As a result, hydroxychloroquine is more commonly used today. Hydroxychloroquine is also approved to treat rheumatoid arthritis and lupus, while chloroquine is not.'),
(12517, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'How can you prevent yourself from getting malaria?', 'Malaria can be prevented by taking certain precautionary steps like covering your arms and legs to prevent mosquito bites, using a mosquito net, and insect repellent. Check with your doctor whether you need to take malaria prevention tablets. If you do, make sure you take the right antimalarial tablets at the right dose and finish the proper course of treatment.'),
(12518, 'Lifequin EC 500mg Tablet', 'Leo Pharmaceuticals', 'Lifequin EC 500mg Tablet', 'What is Lifequin EC 500mg Tablet and what it is used for?', 'Lifequin EC 500mg Tablet is an anti-malarial medicine that is used for the treatment and prevention of malaria.'),
(12519, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'What is Liferb 20mg Tablet used for?', 'Liferb 20mg Tablet is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis, or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Liferb 20mg Tablet also prevents acidity associated with the use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES).'),
(12520, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'How long does it take for Liferb 20mg Tablet to work?', 'Liferb 20mg Tablet starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(12521, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'What is the best time to take Liferb 20mg Tablet?', 'It is best to take Liferb 20mg Tablet before your breakfast. If you are taking two doses, take it in the morning and evening. Liferb 20mg Tablet is more effective when it is taken an hour before your food.'),
(12522, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'Can I stop taking Liferb 20mg Tablet if I feel better?', 'No, do not stop taking Liferb 20mg Tablet before completing the full course of treatment. You will start to feel better before your treatment is complete.'),
(12523, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'Does Liferb 20mg Tablet cause bone problems?', 'Yes, long-term use of Liferb 20mg Tablet can cause thinning of bones, which is called osteoporosis. Liferb 20mg Tablet decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(12524, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'How is Liferb 20mg Tablet useful in the treatment of H. pylori infection?', 'Liferb 20mg Tablet is used along with antibiotics for the treatment of H.Pylori infection. It works by decreasing stomach acid volume and decreasing breakdown and washout of antibiotics leading to an increased antibiotic concentration and tissue penetration. It also helps in symptomatic relief by decreasing associated acidity, reflux, and heartburn.'),
(12525, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'Can I take Liferb 20mg Tablet with vitamin D?', 'Yes, vitamin D can be taken along with Liferb 20mg Tablet. Vitamin D is generally advised to be taken as a supplement with Liferb 20mg Tablet as the long-term use of Liferb 20mg Tablet decreases the absorption of calcium and may lead to calcium deficiency. This can lead to osteoporosis (thinning of bones) and increase the risk of bone fractures like hip, wrist, and spine fractures. Please consult your doctor to know about ways to prevent this.'),
(12526, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'Can long term use of Liferb 20mg Tablet cause magnesium deficiency?', 'Long-term use of Liferb 20mg Tablet can lower magnesium levels in patients taking multiple daily doses for 3 months or longer. Get your magnesium levels checked at regular intervals. Tell your doctor if you experience seizures (fits), dizziness, abnormal or fast heartbeat, jitteriness, jerking movements or shaking (tremors), muscle weakness, spasms of the hands and feet, cramps, muscle aches.'),
(12527, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'Is it safe to use Liferb 20mg Tablet for a long period of time?', 'Liferb 20mg Tablet should be used for as long as it has been prescribed by your doctor. Liferb 20mg Tablet is usually considered to be safe when taken in the recommended dose and duration. If Liferb 20mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood, making you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, subacute cutaneous lupus erythematosus, osteoporosis, and vitamin B12 deficiency.'),
(12528, 'Liferb 20mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb 20mg Tablet', 'Can I take alcohol with Liferb 20mg Tablet?', 'No, alcohol intake is not advised with Liferb 20mg Tablet. Alcohol itself does not affect the working of Liferb 20mg Tablet, but it can increase acid production. This may further cause worsening of your symptoms.'),
(12529, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'What is Liferb-D 30mg/20mg Capsule?', 'Liferb-D 30mg/20mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(12530, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'What are the contraindications of Liferb-D 30mg/20mg Capsule?', 'The use of Liferb-D 30mg/20mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(12531, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'Can the use of Liferb-D 30mg/20mg Capsule cause dry mouth?', 'Yes, the use of Liferb-D 30mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12532, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'Can the use of Liferb-D 30mg/20mg Capsule cause diarrhea?', 'Yes, the use of Liferb-D 30mg/20mg Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(12533, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'What is the recommended storage condition for Liferb-D 30mg/20mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12534, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'Is it safe to use Liferb-D 30mg/20mg Capsule?', 'Yes, Liferb-D 30mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(12535, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'What is the best time to take Liferb-D 30mg/20mg Capsule?', 'It is best to take Liferb-D 30mg/20mg Capsule before the first meal of the day or on an empty stomach.'),
(12536, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'Can the use of Liferb-D 30mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Liferb-D 30mg/20mg Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(12537, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'What is Liferb-D 30mg/20mg Capsule?', 'Liferb-D 30mg/20mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(12538, 'Liferb-D 30mg/20mg Capsule', 'Life Science Bio-Tech India Pvt Ltd', 'Liferb-D 30mg/20mg Capsule', 'What are the contraindications of Liferb-D 30mg/20mg Capsule?', 'The use of Liferb-D 30mg/20mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(12539, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'What is Lifeser D 50mg/10mg Tablet?', 'Lifeser D 50mg/10mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(12540, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'Is it safe to use Lifeser D 50mg/10mg Tablet?', 'Yes, Lifeser D 50mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(12541, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'Can I stop taking Lifeser D 50mg/10mg Tablet when my pain is relieved?', 'Lifeser D 50mg/10mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lifeser D 50mg/10mg Tablet should be continued if  your physician has advised you to do so.'),
(12542, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'Can the use of Lifeser D 50mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Lifeser D 50mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(12543, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'Can the use of Lifeser D 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Lifeser D 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(12544, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Lifeser D 50mg/10mg Tablet?', 'The use of Lifeser D 50mg/10mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(12545, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'Can I take Lifeser D 50mg/10mg Tablet with Vitamin B-complex?', 'Lifeser D 50mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Lifeser D 50mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(12546, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'Can I take Lifeser D 50mg/10mg Tablet for stomach pain?', 'No, Lifeser D 50mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(12547, 'Lifeser D 50mg/10mg Tablet', 'Lifecare Neuro Products Ltd', 'Lifeser D 50mg/10mg Tablet', 'What is the storage condition for the Lifeser D 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12548, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(12549, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Can Lifestin 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lifestin 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(12550, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Is Lifestin 20mg Tablet used for lowering cholesterol?', 'Lifestin 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lifestin 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lifestin 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(12551, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Can Lifestin 20mg Tablet be prescribed to children?', 'Lifestin 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(12552, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Is Lifestin 20mg Tablet a blood thinner?', 'No, Lifestin 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(12553, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Will taking Lifestin 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lifestin 20mg Tablet may increase this risk slightly. This is because Lifestin 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(12554, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'For how long do I need to take Lifestin 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lifestin 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lifestin 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(12555, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Does Lifestin 20mg Tablet cause weight loss?', 'No, Lifestin 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lifestin 20mg Tablet.'),
(12556, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Can I stop taking Lifestin 20mg Tablet?', 'No, you should not stop taking Lifestin 20mg Tablet without consulting your doctor. If you think that Lifestin 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(12557, 'Lifestin 20mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lifestin 20mg Tablet', 'Can I take alcohol with Lifestin 20mg Tablet?', 'No, it is not advised to take alcohol with Lifestin 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lifestin 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lifestin 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(12558, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'Should Lifetel 40 Tablet be taken in the morning or at night?', 'Lifetel 40 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(12559, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'How long does it take for Lifetel 40 Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(12560, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'My blood pressure is now controlled. Can I stop taking Lifetel 40 Tablet now?', 'No, do not stop taking Lifetel 40 Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Lifetel 40 Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(12561, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'If I have some kidney problem, can I take Lifetel 40 Tablet? Can it further deteriorate my kidney function?', 'You can take Lifetel 40 Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Lifetel 40 Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(12562, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'I am overweight and the doctor has prescribed me Lifetel 40 Tablet for blood pressure control. I am bothered that Lifetel 40 Tablet can increase my weight. Is it true?', 'No, do not worry since Lifetel 40 Tablet is not known to cause weight gain. In fact in animal studies Lifetel 40 Tablet has been found to decrease fat tissue.'),
(12563, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'Does Lifetel 40 Tablet affect blood glucose levels in diabetics?', 'Lifetel 40 Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(12564, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'Can the use of Lifetel 40 Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Lifetel 40 Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(12565, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'Does Lifetel 40 Tablet work by causing excessive urination?', 'No, Lifetel 40 Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Lifetel 40 Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(12566, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'Do I need to follow any precautions if I take ibuprofen and Lifetel 40 Tablet together?', 'If you are taking ibuprofen and Lifetel 40 Tablet together, you should continuously keep a check on your blood pressure and kidney function. Lifetel 40 Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Lifetel 40 Tablet for heart failure. Ibuprofen may interfere with the working of Lifetel 40 Tablet and decrease its efficiency at lowering blood pressure.'),
(12567, 'Lifetel 40 Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel 40 Tablet', 'Should Lifetel 40 Tablet be taken in the morning or at night?', 'Lifetel 40 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(12568, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'Should Lifetel 40mg Tablet be taken in the morning or at night?', 'Lifetel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(12569, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'How long does it take for Lifetel 40mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(12570, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'My blood pressure is now controlled. Can I stop taking Lifetel 40mg Tablet now?', 'No, do not stop taking Lifetel 40mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Lifetel 40mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(12571, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'If I have some kidney problem, can I take Lifetel 40mg Tablet? Can it further deteriorate my kidney function?', 'You can take Lifetel 40mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Lifetel 40mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(12572, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'I am overweight and the doctor has prescribed me Lifetel 40mg Tablet for blood pressure control. I am bothered that Lifetel 40mg Tablet can increase my weight. Is it true?', 'No, do not worry since Lifetel 40mg Tablet is not known to cause weight gain. In fact in animal studies Lifetel 40mg Tablet has been found to decrease fat tissue.'),
(12573, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'Does Lifetel 40mg Tablet affect blood glucose levels in diabetics?', 'Lifetel 40mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(12574, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'Can the use of Lifetel 40mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Lifetel 40mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(12575, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'Does Lifetel 40mg Tablet work by causing excessive urination?', 'No, Lifetel 40mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Lifetel 40mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(12576, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Lifetel 40mg Tablet together?', 'If you are taking ibuprofen and Lifetel 40mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Lifetel 40mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Lifetel 40mg Tablet for heart failure. Ibuprofen may interfere with the working of Lifetel 40mg Tablet and decrease its efficiency at lowering blood pressure.'),
(12577, 'Lifetel 40mg Tablet', 'Life Science Bio-Tech India Pvt Ltd', 'Lifetel 40mg Tablet', 'Should Lifetel 40mg Tablet be taken in the morning or at night?', 'Lifetel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(12578, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'What should I avoid while taking Lifetel-AM Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(12579, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'What happens if I take too much of Lifetel-AM Tablet?', 'If you accidentally take too much of Lifetel-AM Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any of such symptoms contact your doctor immediately and seek medical help.'),
(12580, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'Can I come off Lifetel-AM Tablet when my blood pressure is under control or normal?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Lifetel-AM Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it. You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or stroke.'),
(12581, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'What happens if I forget to take Lifetel-AM Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure then you can consult your doctor for other ways to help you remember.'),
(12582, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'What will happen if I stop taking Lifetel-AM Tablet?', 'You should not stop taking Lifetel-AM Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea, etc., talk to your doctor.'),
(12583, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'Is it safe to take Lifetel-AM Tablet for a long time?', 'Lifetel-AM Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(12584, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'How long will I be taking Lifetel-AM Tablet for?', 'You may have to take Lifetel-AM Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(12585, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'What if Lifetel-AM Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(12586, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'Can Lifetel-AM Tablet affect my fertility or sex life?', 'Lifetel-AM Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep track of your blood pressure.'),
(12587, 'Lifetel-AM Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-AM Tablet', 'What other lifestyle changes should I make while taking Lifetel-AM Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lifetel-AM Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lifetel-AM Tablet and to keep yourself healthy.'),
(12588, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'What should I avoid while taking Lifetel-H Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(12589, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'What happens if I take too much of Lifetel-H Tablet?', 'If you accidentally take too much of Lifetel-H Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any such symptoms, contact your doctor immediately and seek medical help.'),
(12590, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'Can I come off Lifetel-H Tablet when my blood pressure is under control or normal?', 'Remember, Lifetel-H Tablet does not cure your hypertension (high blood pressure) but helps normalize it. You should continue taking this medicine even if your blood pressure is controlled. If you stop taking Lifetel-H Tablet, your blood pressure could rise back up again. Generally, blood pressure-lowering medicines are to be taken for the rest of your life. It is important to know that by keeping your blood pressure controlled you are reducing your risk of having a heart attack or a stroke.'),
(12591, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'What happens if I forget to take Lifetel-H Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure, consult your doctor for other ways to help you remember.'),
(12592, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'What will happen if I stop taking Lifetel-H Tablet?', 'You should not stop taking Lifetel-H Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea etc., talk to your doctor.'),
(12593, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'Is it safe to take Lifetel-H Tablet for a long time?', 'Lifetel-H Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(12594, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'How long will I be taking Lifetel-H Tablet for?', 'You may have to take Lifetel-H Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(12595, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'What if Lifetel-H Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(12596, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'Can Lifetel-H Tablet affect my fertility or sex life?', 'Lifetel-H Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep a track of your blood pressure.'),
(12597, 'Lifetel-H Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lifetel-H Tablet', 'What other lifestyle changes should I make while taking Lifetel-H Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lifetel-H Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lifetel-H Tablet and to keep yourself healthy.'),
(12598, 'Lifether L 80mg/480mg Tablet', 'Raptakos Brett & Co Ltd', 'Lifether L 80mg/480mg Tablet', 'How to take Lifether L 80mg/480mg Tablet?', 'Take Lifether L 80mg/480mg Tablet with food, exactly as prescribed by your doctor. This medicine is usually taken twice a day with a meal for 3 days, or as directed. On your first day of treatment, take your first dose with food, followed by your second dose 8 hours later. Then for the next 2 days, take one dose in the morning and one dose in the evening. Patients should be encouraged to resume normal eating as soon as food can be tolerated, since this improves the absorption of the medicine.'),
(12599, 'Lifether L 80mg/480mg Tablet', 'Raptakos Brett & Co Ltd', 'Lifether L 80mg/480mg Tablet', 'Can I take Lifether L 80mg/480mg Tablet while I am pregnant?', 'No, Lifether L 80mg/480mg Tablet is considered to be harmful for women in their first trimester of pregnancy. The reason being, it increases the chances of fetal loss.'),
(12600, 'Lifether L 80mg/480mg Tablet', 'Raptakos Brett & Co Ltd', 'Lifether L 80mg/480mg Tablet', 'Are there any specific contraindications associated with the use of Lifether L 80mg/480mg Tablet?', 'The use of Lifether L 80mg/480mg Tablet is considered to be harmful for patients with a known hypersensitivity to any of the active or inactive ingredients of the medicine. Caution is advised in patients with cases of severe malaria and in the first trimester of pregnancy.'),
(12601, 'Lifether L 80mg/480mg Tablet', 'Raptakos Brett & Co Ltd', 'Lifether L 80mg/480mg Tablet', 'What should I know about the storage and disposal of Lifether L 80mg/480mg Tablet?', 'It is advised to keep this medicine in the container it came in, tightly closed. It should be kept out of reach of children. Store it at room temperature and away from excess heat and moisture.'),
(12602, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'What is Lifex M 80mg/500mg Tablet?', 'Lifex M 80mg/500mg Tablet is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(12603, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'What are the possible side effects of Lifex M 80mg/500mg Tablet?', 'The use of Lifex M 80mg/500mg Tablet is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(12604, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'Can the use of Lifex M 80mg/500mg Tablet cause hypoglycemia?', 'Yes, the use of Lifex M 80mg/500mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(12605, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'Can the use of Lifex M 80mg/500mg Tablet cause lactic acidosis?', 'Yes, the use of Lifex M 80mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin associated lactic acidosis). It is a rare side effect associated with the use of metformin. It is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lifex M 80mg/500mg Tablet and immediately consult your doctor.'),
(12606, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'Can the use of Lifex M 80mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Lifex M 80mg/500mg Tablet can cause vitamin B12 deficiency on long-term use. The deficiency occurs as the medicine interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can have tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(12607, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'Are there any specific conditions in which Lifex M 80mg/500mg Tablet should not to be taken?', 'The use of Lifex M 80mg/500mg Tablet should be avoided in patients with known allergy to any of the component or excipients of this medicine. It is also avoided in patients with moderate to severe kidney disease or with underlying metabolic acidosis including diabetic ketoacidosis.'),
(12608, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'Is it safe to take alcohol while I am also taking Lifex M 80mg/500mg Tablet?', 'No, it is not safe to take alcohol along with Lifex M 80mg/500mg Tablet. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(12609, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'What is Lifex M 80mg/500mg Tablet?', 'Lifex M 80mg/500mg Tablet is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(12610, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'What are the possible side effects of Lifex M 80mg/500mg Tablet?', 'The use of Lifex M 80mg/500mg Tablet is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(12611, 'Lifex M 80mg/500mg Tablet', 'Base Pharmaceuticals Pvt Ltd', 'Lifex M 80mg/500mg Tablet', 'Can the use of Lifex M 80mg/500mg Tablet cause hypoglycemia?', 'Yes, the use of Lifex M 80mg/500mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(12612, 'Lifexime-200 LB Tablet DT', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexime-200 LB Tablet DT', 'What if I miss my dose?', 'Take Lifexime-200 LB Tablet DT as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12613, 'Lifexime-200 LB Tablet DT', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexime-200 LB Tablet DT', 'How long does Lifexime-200 LB Tablet DT take to work?', 'Usually, Lifexime-200 LB Tablet DT starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12614, 'Lifexime-200 LB Tablet DT', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexime-200 LB Tablet DT', 'What if I don\'t get better after using Lifexime-200 LB Tablet DT?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12615, 'Lifexime-200 LB Tablet DT', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexime-200 LB Tablet DT', 'Can I stop taking Lifexime-200 LB Tablet DT when I feel better?', 'No, do not stop taking Lifexime-200 LB Tablet DT and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12616, 'Lifexone 1000 Injection', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexone 1000 Injection', 'Is Lifexone 1000 Injection safe?', 'Lifexone 1000 Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12617, 'Lifexone 1000 Injection', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexone 1000 Injection', 'How long does Lifexone 1000 Injection take to work?', 'Usually, Lifexone 1000 Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(12618, 'Lifexone 1000 Injection', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexone 1000 Injection', 'Who should not take Lifexone 1000 Injection?', 'Lifexone 1000 Injection should not be prescribed to people who are allergic to Lifexone 1000 Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Lifexone 1000 Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(12619, 'Lifexone 1000 Injection', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexone 1000 Injection', 'What if I do not get better after using Lifexone 1000 Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12620, 'Lifexone 1000 Injection', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexone 1000 Injection', 'For how long does Lifexone 1000 Injection stay in the body?', 'Usually, Lifexone 1000 Injection stays in the body for around 2 days after completely stopping the medicine.'),
(12621, 'Lifexone 1000 Injection', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexone 1000 Injection', 'Is Lifexone 1000 Injection effective?', 'Lifexone 1000 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifexone 1000 Injection too early, the symptoms may return or worsen.'),
(12622, 'Lifexone 1000 Injection', 'Lifeline Antidotes Pvt. Ltd.', 'Lifexone 1000 Injection', 'How is Lifexone 1000 Injection administered?', 'Lifexone 1000 Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lifexone 1000 Injection.'),
(12623, 'Lifexone 250mg Tablet', 'Life Medicare & Biotech Pvt Ltd', 'Lifexone 250mg Tablet', 'Is Lifexone 250mg Tablet safe/dangerous?', 'Yes, Lifexone 250mg Tablet is safe if used at prescribed doses for the prescribed duration in a hospital or specialized clinic as advised by your special doctor'),
(12624, 'Lifexone 250mg Tablet', 'Life Medicare & Biotech Pvt Ltd', 'Lifexone 250mg Tablet', 'Is Lifexone 250mg Tablet over-the-counter medicine?', 'No, Lifexone 250mg Tablet is not an over-the-counter medicine. Lifexone 250mg Tablet treatment for alcohol withdrawal should be initiated only in a hospital or specialized clinic and by experienced doctors only. Patients should follow advice of the doctor regarding its use'),
(12625, 'Lifexone 250mg Tablet', 'Life Medicare & Biotech Pvt Ltd', 'Lifexone 250mg Tablet', 'Is Lifexone 250mg Tablet addictive?', 'No, Lifexone 250mg Tablet is not addictive. It is used to treat alcohol addiction and chronic alcoholism'),
(12626, 'Lifexone 250mg Tablet', 'Life Medicare & Biotech Pvt Ltd', 'Lifexone 250mg Tablet', 'Does Lifexone 250mg Tablet work?', 'Yes, Lifexone 250mg Tablet works. Lifexone 250mg Tablet is an aldehyde dehydrogenase inhibitor. It works by blocking the processing of alcohol in the body causing unpleasant feeling leading to alcohol withdrawal'),
(12627, 'Lifexone 250mg Tablet', 'Life Medicare & Biotech Pvt Ltd', 'Lifexone 250mg Tablet', 'Does Lifexone 250mg Tablet work for everyone?', 'Lifexone 250mg Tablet works for chronic alcoholics who are cooperative and willing to give up alcoholism. Patients should follow advice of the doctor regarding its use'),
(12628, 'Lifexone 250mg Tablet', 'Life Medicare & Biotech Pvt Ltd', 'Lifexone 250mg Tablet', 'Does Lifexone 250mg Tablet stops cravings?', 'Lifexone 250mg Tablet blocks the processing of alcohol in the body causing unpleasant feeling due to these unpleasant episodes, alcoholics abstain from alcohol Therefore, patients may avoid consuming alcohol to avoid unpleasant reactions upon consuming alcohol even days after stopping Lifexone 250mg Tablet. It may not have any direct effects on cravings'),
(12629, 'Lifexone 250mg Tablet', 'Life Medicare & Biotech Pvt Ltd', 'Lifexone 250mg Tablet', 'Does Lifexone 250mg Tablet work immediately?', 'Yes, Lifexone 250mg Tablet works on alcohol withdrawal as soon as you start the treatment'),
(12630, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'What is Liffclav 500mg/125mg Tablet?', 'Liffclav 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(12631, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Is it safe to use Liffclav 500mg/125mg Tablet?', 'Liffclav 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(12632, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Liffclav 500mg/125mg Tablet?', 'The use of Liffclav 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(12633, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Can the use of Liffclav 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Liffclav 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Liffclav 500mg/125mg Tablet.'),
(12634, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Liffclav 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Liffclav 500mg/125mg Tablet can increase the risks of side effects. Liffclav 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12635, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Liffclav 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12636, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Can I stop taking Liffclav 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Liffclav 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(12637, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Can Liffclav 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Liffclav 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(12638, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Can the use of Liffclav 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Liffclav 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(12639, 'Liffclav 500mg/125mg Tablet', 'Healthy Life Medicare', 'Liffclav 500mg/125mg Tablet', 'Can I take Liffclav 500mg/125mg Tablet to treat cold and flu?', 'No, Liffclav 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(12640, 'Liffi 200 Tablet', 'Healthy Life Medicare', 'Liffi 200 Tablet', 'How long should I take Liffi 200 Tablet?', 'Liffi 200 Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12641, 'Liffi 200 Tablet', 'Healthy Life Medicare', 'Liffi 200 Tablet', 'What if I do not get better after using Liffi 200 Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12642, 'Liffi 200 Tablet', 'Healthy Life Medicare', 'Liffi 200 Tablet', 'Can the use of Liffi 200 Tablet cause diarrhea?', 'Yes, the use of Liffi 200 Tablet can cause diarrhea. Liffi 200 Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(12643, 'Liffi 200 Tablet', 'Healthy Life Medicare', 'Liffi 200 Tablet', 'Is Liffi 200 Tablet effective?', 'Liffi 200 Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Liffi 200 Tablet too early, the symptoms may return or worsen.'),
(12644, 'Liffi 200 Tablet', 'Healthy Life Medicare', 'Liffi 200 Tablet', 'What if I forget to take a dose of Liffi 200 Tablet?', 'If you forget a dose of Liffi 200 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12645, 'Liffi 200 Tablet', 'Healthy Life Medicare', 'Liffi 200 Tablet', 'Is Liffi 200 Tablet safe for the kidneys?', 'Yes, Liffi 200 Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(12646, 'Liffi 200 Tablet', 'Healthy Life Medicare', 'Liffi 200 Tablet', 'How long should I take Liffi 200 Tablet?', 'Liffi 200 Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12647, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'Can I stop taking Liffi-OF Tablet when I feel better?', 'No, do not stop taking Liffi-OF Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12648, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'What if I miss my dose?', 'Take Liffi-OF Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12649, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'Can the use of Liffi-OF Tablet cause diarrhea?', 'Yes, the use of Liffi-OF Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12650, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'What if I don\'t get better after using Liffi-OF Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12651, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'Does the use of Liffi-OF Tablet help treat Urinary tract infections (UTIs)?', 'The use of Liffi-OF Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(12652, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(12653, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'Can I drive while I am taking Liffi-OF Tablet?', 'No, taking Liffi-OF Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(12654, 'Liffi-OF Tablet', 'Healthy Life Medicare', 'Liffi-OF Tablet', 'What are the instructions for storage and disposal of Liffi-OF Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12655, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'Does Lificrof 10mg Tablet cause weight loss?', 'Yes, Lificrof 10mg Tablet may cause weight loss in some patients. However, it is an uncommon side effect. If you experience sudden weight gain or have any concerns regarding your weight, discuss it with your doctor.'),
(12656, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'What are the side effects of Lificrof 10mg Tablet?', 'The use of Lificrof 10mg Tablet may cause symptoms such as stuffy or runny nose, sore throat, vaginal yeast infections, and yeast infections of the penis. In addition to that, one may experience frequent urination throughout the day or at night, and changes in quantity of urine.'),
(12657, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'What is Lificrof 10mg Tablet used for?', 'Lificrof 10mg Tablet is used to lower blood glucose levels in type 2 diabetes. In type 2 diabetes, the body is not able to use the produced insulin properly. This leads to an increase in the levels of sugar in your blood. Lificrof 10mg Tablet works by removing excess sugar from your body via your urine. In addition to that, it can also help prevent heart disease.'),
(12658, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'Is Lificrof 10mg Tablet safe to use?', 'Yes, Lificrof 10mg Tablet is safe when used as directed by the doctor. However, it may show some side effects. For best results, it should be used in the correct dose and at the same time each day.'),
(12659, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'Can I stop taking Lificrof 10mg Tablet?', 'No, do not stop taking Lificrof 10mg Tablet without talking to your doctor first. Sudden discontinuation of medicine may make your diabetes worse. Inform your doctor if your symptoms bother you or if  there is no considerable improvement in your condition. The doctor may suggest some other medicine which could be more effective in treating your diabetes.'),
(12660, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'Who should not take Lificrof 10mg Tablet?', 'Patients allergic to Lificrof 10mg Tablet should avoid using this medicine. Also, it is highly recommended that patients who are on dialysis or have severe kidney problems should not use Lificrof 10mg Tablet.'),
(12661, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'Can I take Lificrof 10mg Tablet before surgery?', 'Inform your doctor that you are taking Lificrof 10mg Tablet before going for the surgery. The doctor may ask you to stop taking your Lificrof 10mg Tablet tablets before your operation. This is done because there is a risk of developing diabetic ketoacidosis (a serious condition that may develop if high blood sugar is not treated).'),
(12662, 'Lificrof 10mg Tablet', 'Carecroft Medic Private Limited', 'Lificrof 10mg Tablet', 'Why did my doctor prescribe Lificrof 10mg Tablet along with metformin?', 'For some people, taking metformin alone can effectively lower blood sugar levels. But, evidence suggests that adding Lificrof 10mg Tablet to metformin therapy may provide better control over the increased blood sugar levels in some people. So, maybe your doctor prescribed the combined use of metformin with Lificrof 10mg Tablet to provide the extra help you need.'),
(12663, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'Does Lificrof Tablet 10mg cause weight loss?', 'Yes, Lificrof Tablet 10mg may cause weight loss in some patients. However, it is an uncommon side effect. If you experience sudden weight gain or have any concerns regarding your weight, discuss it with your doctor.'),
(12664, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'What are the side effects of Lificrof Tablet 10mg?', 'The use of Lificrof Tablet 10mg may cause symptoms such as stuffy or runny nose, sore throat, vaginal yeast infections, and yeast infections of the penis. In addition to that, one may experience frequent urination throughout the day or at night, and changes in quantity of urine.'),
(12665, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'What is Lificrof Tablet 10mg used for?', 'Lificrof Tablet 10mg is used to lower blood glucose levels in type 2 diabetes. In type 2 diabetes, the body is not able to use the produced insulin properly. This leads to an increase in the levels of sugar in your blood. Lificrof Tablet 10mg works by removing excess sugar from your body via your urine. In addition to that, it can also help prevent heart disease.'),
(12666, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'Is Lificrof Tablet 10mg safe to use?', 'Yes, Lificrof Tablet 10mg is safe when used as directed by the doctor. However, it may show some side effects. For best results, it should be used in the correct dose and at the same time each day.'),
(12667, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'Can I stop taking Lificrof Tablet 10mg?', 'No, do not stop taking Lificrof Tablet 10mg without talking to your doctor first. Sudden discontinuation of medicine may make your diabetes worse. Inform your doctor if your symptoms bother you or if  there is no considerable improvement in your condition. The doctor may suggest some other medicine which could be more effective in treating your diabetes.'),
(12668, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'Who should not take Lificrof Tablet 10mg?', 'Patients allergic to Lificrof Tablet 10mg should avoid using this medicine. Also, it is highly recommended that patients who are on dialysis or have severe kidney problems should not use Lificrof Tablet 10mg.'),
(12669, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'Can I take Lificrof Tablet 10mg before surgery?', 'Inform your doctor that you are taking Lificrof Tablet 10mg before going for the surgery. The doctor may ask you to stop taking your Lificrof Tablet 10mg tablets before your operation. This is done because there is a risk of developing diabetic ketoacidosis (a serious condition that may develop if high blood sugar is not treated).'),
(12670, 'Lificrof Tablet 10mg', 'Kristal Pharmaceutical', 'Lificrof Tablet 10mg', 'Why did my doctor prescribe Lificrof Tablet 10mg along with metformin?', 'For some people, taking metformin alone can effectively lower blood sugar levels. But, evidence suggests that adding Lificrof Tablet 10mg to metformin therapy may provide better control over the increased blood sugar levels in some people. So, maybe your doctor prescribed the combined use of metformin with Lificrof Tablet 10mg to provide the extra help you need.'),
(12671, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(12672, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Can Lifid 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lifid 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(12673, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Is Lifid 20mg Tablet used for lowering cholesterol?', 'Lifid 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lifid 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lifid 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(12674, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Can Lifid 20mg Tablet be prescribed to children?', 'Lifid 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(12675, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Is Lifid 20mg Tablet a blood thinner?', 'No, Lifid 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(12676, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Will taking Lifid 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lifid 20mg Tablet may increase this risk slightly. This is because Lifid 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(12677, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'For how long do I need to take Lifid 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lifid 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lifid 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(12678, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Does Lifid 20mg Tablet cause weight loss?', 'No, Lifid 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lifid 20mg Tablet.'),
(12679, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Can I stop taking Lifid 20mg Tablet?', 'No, you should not stop taking Lifid 20mg Tablet without consulting your doctor. If you think that Lifid 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(12680, 'Lifid 20mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 20mg Tablet', 'Can I take alcohol with Lifid 20mg Tablet?', 'No, it is not advised to take alcohol with Lifid 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lifid 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lifid 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(12681, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(12682, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Can Lifid 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lifid 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(12683, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Is Lifid 40mg Tablet used for lowering cholesterol?', 'Lifid 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lifid 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lifid 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(12684, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Can Lifid 40mg Tablet be prescribed to children?', 'Lifid 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(12685, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Is Lifid 40mg Tablet a blood thinner?', 'No, Lifid 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(12686, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Will taking Lifid 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lifid 40mg Tablet may increase this risk slightly. This is because Lifid 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(12687, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'For how long do I need to take Lifid 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lifid 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lifid 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(12688, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Does Lifid 40mg Tablet cause weight loss?', 'No, Lifid 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lifid 40mg Tablet.'),
(12689, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Can I stop taking Lifid 40mg Tablet?', 'No, you should not stop taking Lifid 40mg Tablet without consulting your doctor. If you think that Lifid 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(12690, 'Lifid 40mg Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid 40mg Tablet', 'Can I take alcohol with Lifid 40mg Tablet?', 'No, it is not advised to take alcohol with Lifid 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lifid 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lifid 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(12691, 'Lifid F Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid F Tablet', 'Can Lifid F Tablet cause liver damage?', 'Lifid F Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(12692, 'Lifid F Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid F Tablet', 'Can Lifid F Tablet cause muscle pain?', 'Yes, Lifid F Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lifid F Tablet.'),
(12693, 'Lifid F Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid F Tablet', 'What lifestyle changes should be adopted while taking Lifid F Tablet?', 'Making lifestyle changes can boost your health while taking Lifid F Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(12694, 'Lifid F Tablet', 'Fidelity Lifesciences Pvt Ltd', 'Lifid F Tablet', 'What medicines should I avoid while taking Lifid F Tablet?', 'The use of Lifid F Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lifid F Tablet.'),
(12695, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'Are any interactions of Lifilac-R Capsule seen with other medicine?', 'No interactions with other medicine have been described in humans.'),
(12696, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'How does Lifilac-R Capsule work?', 'Lifilac-R Capsule works by reducding the secretion of water and electrolytes from the intestine. This helps to reduce the amount of fluid loss from the body in diarrhoea.'),
(12697, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'How does Lifilac-R Capsule differ from loperamide?', 'Lifilac-R Capsule does not affect motility as compared to Loperamide. It means less chance of developing rebound constipation.'),
(12698, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'How long should Lifilac-R Capsule be used?', 'Take Lifilac-R Capsule only for a duration as advised by your doctor. It is also suggested to be taken until your child has two normal stools, not exceeding 7 days. Please consult your doctor for any further information.u003cbr>'),
(12699, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'Is Lifilac-R Capsule a novel anti-diarrheal?', 'Lifilac-R Capsule is a medicine which rapidly inhibits excessive intestinal secretion without causing constipation and without any central effect.'),
(12700, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'Is Lifilac-R Capsule is over the counter (OTC) medicine?', 'Lifilac-R Capsule is not an over the counter medicine. It is a prescription medicine and is available only when prescribed by registered medical practitioner.'),
(12701, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'Does Lifilac-R Capsule reduce stool output?', 'Yes, it helps to reduce the stool output.'),
(12702, 'Lifilac-R Capsule', 'Captab Biotec', 'Lifilac-R Capsule', 'Can Lifilac-R Capsule be used alone?', 'It should always be used together with oral rehydration therapy (ORS).'),
(12703, 'Lifine 250mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifine 250mg Tablet', 'Can Lifine 250mg Tablet be safe for use in patients with liver cirrhosis?', 'Oral intake of Lifine 250mg Tablet is not recommended in patients with chronic or active liver disease. Your doctor may prescribe a liver function test to check whether the liver is functioning effectively or not. This is done because the medicine gets metabolized by liver enzymes and any inefficiency in liver function can lead to increased levels of the medication in the blood, resulting in increased side effects and toxicity. Therefore, it is important to inform your doctor if you have any liver disease or cirrhosis. Also, inform your doctor about the medicines you may be taking as taking Lifine 250mg Tablet with another medicine can lead to liver toxicity and Lifine 250mg Tablet by acting on the liver enzymes can change the levels of other drugs. Your doctor may suggest periodic monitoring (after 4-6 weeks of treatment) of liver function test and make dose adjustments accordingly.'),
(12704, 'Lifine 250mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifine 250mg Tablet', 'Does Lifine 250mg Tablet cause any skin reactions?', 'Yes, sensitive individuals may develop skin reactions while using Lifine 250mg Tablet. There are rare reports of people developing serious skin/hypersensitivity reactions like Stevens-Johnson syndrome, toxic epidermal necrolysis, and other severe skin reactions with Lifine 250mg Tablet. Therefore, do not take this medication without consulting your physician. And, in case you encounter any type of skin reaction or rashes, stop the medication immediately and report to the doctor.'),
(12705, 'Lifine 250mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifine 250mg Tablet', 'Is Lifine 250mg Tablet effective?', 'Lifine 250mg Tablet is effective as an anti fungal medicine if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop taking this medicine too early, the fungus may continue to grow and the infection may return or worsen.'),
(12706, 'Lifine 250mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifine 250mg Tablet', 'How long do I need to take Lifine 250mg Tablet?', 'The usual duration of treatment for Tinea pedis (fungal infection in the foot), Tinea corporis (ringworms), and Tinea cruris (fungal infection in the groin) is about 2 to 4 weeks. The duration may sometimes be extended to 6 weeks. For fungal infections of nails, the duration of treatment usually varies from 6 to 12 weeks. For fingernail fungal infections it may take 6 weeks whereas toenail fungal infection may take about 12 weeks. However, the exact duration of the therapy is decided by the doctor depending upon the type of infection, the site of infection, and the patient’s response to the therapy.'),
(12707, 'Lifine 250mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifine 250mg Tablet', 'Can I drink tea or coffee while taking Lifine 250mg Tablet?', 'Caffeinated drinks like tea and coffee should be taken with caution while being on treatment with Lifine 250mg Tablet. Lifine 250mg Tablet decreases the rate of metabolism of caffeine by 19% which is an important constituent of coffee, thereby increasing the levels of caffeine in the blood. These increased levels of caffeine may lead to side effects such as jitteriness, headache, increased heartbeat, and restlessness.'),
(12708, 'Lifix 100mg Tablet', 'Abiz Pharma', 'Lifix 100mg Tablet (Abiz Pharma)', 'How long should I take Lifix 100mg Tablet?', 'Lifix 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12709, 'Lifix 100mg Tablet', 'Abiz Pharma', 'Lifix 100mg Tablet (Abiz Pharma)', 'What if I do not get better after using Lifix 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12710, 'Lifix 100mg Tablet', 'Abiz Pharma', 'Lifix 100mg Tablet (Abiz Pharma)', 'Can the use of Lifix 100mg Tablet cause diarrhea?', 'Yes, the use of Lifix 100mg Tablet can cause diarrhea. Lifix 100mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(12711, 'Lifix 100mg Tablet', 'Abiz Pharma', 'Lifix 100mg Tablet (Abiz Pharma)', 'Is Lifix 100mg Tablet effective?', 'Lifix 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifix 100mg Tablet too early, the symptoms may return or worsen.'),
(12712, 'Lifix 100mg Tablet', 'Abiz Pharma', 'Lifix 100mg Tablet (Abiz Pharma)', 'What if I forget to take a dose of Lifix 100mg Tablet?', 'If you forget a dose of Lifix 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12713, 'Lifix 100mg Tablet', 'Abiz Pharma', 'Lifix 100mg Tablet (Abiz Pharma)', 'Is Lifix 100mg Tablet safe for the kidneys?', 'Yes, Lifix 100mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(12714, 'Lifix 100mg Tablet', 'Abiz Pharma', 'Lifix 100mg Tablet (Abiz Pharma)', 'How long should I take Lifix 100mg Tablet?', 'Lifix 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12715, 'Lifix 100mg Tablet', 'Lacip Healthcare', 'Lifix 100mg Tablet (Lacip Healthcare)', 'How long should I take Lifix 100mg Tablet?', 'Lifix 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12716, 'Lifix 100mg Tablet', 'Lacip Healthcare', 'Lifix 100mg Tablet (Lacip Healthcare)', 'What if I do not get better after using Lifix 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12717, 'Lifix 100mg Tablet', 'Lacip Healthcare', 'Lifix 100mg Tablet (Lacip Healthcare)', 'Can the use of Lifix 100mg Tablet cause diarrhea?', 'Yes, the use of Lifix 100mg Tablet can cause diarrhea. Lifix 100mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(12718, 'Lifix 100mg Tablet', 'Lacip Healthcare', 'Lifix 100mg Tablet (Lacip Healthcare)', 'Is Lifix 100mg Tablet effective?', 'Lifix 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifix 100mg Tablet too early, the symptoms may return or worsen.'),
(12719, 'Lifix 100mg Tablet', 'Lacip Healthcare', 'Lifix 100mg Tablet (Lacip Healthcare)', 'What if I forget to take a dose of Lifix 100mg Tablet?', 'If you forget a dose of Lifix 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12720, 'Lifix 100mg Tablet', 'Lacip Healthcare', 'Lifix 100mg Tablet (Lacip Healthcare)', 'Is Lifix 100mg Tablet safe for the kidneys?', 'Yes, Lifix 100mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(12721, 'Lifix 100mg Tablet', 'Lacip Healthcare', 'Lifix 100mg Tablet (Lacip Healthcare)', 'How long should I take Lifix 100mg Tablet?', 'Lifix 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12722, 'Lifix 200mg Tablet', 'Lacip Healthcare', 'Lifix 200mg Tablet', 'Q. How long should I take Lifix 200mg Tablet?', 'Lifix 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12723, 'Lifix 200mg Tablet', 'Lacip Healthcare', 'Lifix 200mg Tablet', 'Q. What if I do not get better after using Lifix 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(12724, 'Lifix 200mg Tablet', 'Lacip Healthcare', 'Lifix 200mg Tablet', 'Q. Can the use of Lifix 200mg Tablet cause diarrhea?', 'Yes, the use of Lifix 200mg Tablet can cause diarrhea. Lifix 200mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(12725, 'Lifix 200mg Tablet', 'Lacip Healthcare', 'Lifix 200mg Tablet', 'Q. Is Lifix 200mg Tablet effective?', 'Lifix 200mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifix 200mg Tablet too early, the symptoms may return or worsen.'),
(12726, 'Lifix 200mg Tablet', 'Lacip Healthcare', 'Lifix 200mg Tablet', 'Q. What if I forget to take a dose of Lifix 200mg Tablet?', 'If you forget a dose of Lifix 200mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12727, 'Lifix 200mg Tablet', 'Lacip Healthcare', 'Lifix 200mg Tablet', 'Q. Is Lifix 200mg Tablet safe for the kidneys?', 'Yes, Lifix 200mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(12728, 'Lifix 200mg Tablet', 'Lacip Healthcare', 'Lifix 200mg Tablet', 'Q. How long should I take Lifix 200mg Tablet?', 'Lifix 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12729, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'What if I give too much of Lifix 50 Syrup by mistake?', 'An extra dose of Lifix 50 Syrup is unlikely to do harm. However, if you think you have given too much of Lifix 50 Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(12730, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'Are there any possible serious side effects of Lifix 50 Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(12731, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'Can other medicines be given at the same time as Lifix 50 Syrup?', 'Lifix 50 Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifix 50 Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(12732, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'Can I get my child vaccinated while on treatment with Lifix 50 Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(12733, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'Which lab tests may my child undergo while taking Lifix 50 Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(12734, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(12735, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(12736, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'Can Lifix 50 Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lifix 50 Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lifix 50 Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(12737, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'Can Lifix 50 Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Lifix 50 Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(12738, 'Lifix 50 Syrup', 'Lacip Healthcare', 'Lifix 50 Syrup', 'How long should I take Lifix 50 Syrup?', 'Lifix 50 Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12739, 'Lifix AZ LB 200mg/250mg Tablet', 'Lacip Healthcare', 'Lifix AZ LB 200mg/250mg Tablet', 'Can I stop taking Lifix AZ LB 200mg/250mg Tablet when I feel better?', 'No, do not stop taking Lifix AZ LB 200mg/250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12740, 'Lifix AZ LB 200mg/250mg Tablet', 'Lacip Healthcare', 'Lifix AZ LB 200mg/250mg Tablet', 'What if I miss my dose?', 'Take Lifix AZ LB 200mg/250mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12741, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'What if I give too much of Lifix Dry Syrup by mistake?', 'An extra dose of Lifix Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lifix Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(12742, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'Are there any possible serious side effects of Lifix Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(12743, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'Can other medicines be given at the same time as Lifix Dry Syrup?', 'Lifix Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifix Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(12744, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'Can I get my child vaccinated while on treatment with Lifix Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(12745, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'Which lab tests may my child undergo while taking Lifix Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(12746, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(12747, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(12748, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'Can Lifix Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lifix Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lifix Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(12749, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'Can Lifix Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Lifix Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(12750, 'Lifix Dry Syrup', 'Liza Life Sciences', 'Lifix Dry Syrup', 'How long should I take Lifix Dry Syrup?', 'Lifix Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(12751, 'Lifix LB 200mg Tablet', 'Lacip Healthcare', 'Lifix LB 200mg Tablet', 'What if I miss my dose?', 'Take Lifix LB 200mg Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12752, 'Lifix LB 200mg Tablet', 'Lacip Healthcare', 'Lifix LB 200mg Tablet', 'How long does Lifix LB 200mg Tablet take to work?', 'Usually, Lifix LB 200mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12753, 'Lifix LB 200mg Tablet', 'Lacip Healthcare', 'Lifix LB 200mg Tablet', 'What if I don\'t get better after using Lifix LB 200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12754, 'Lifix LB 200mg Tablet', 'Lacip Healthcare', 'Lifix LB 200mg Tablet', 'Can I stop taking Lifix LB 200mg Tablet when I feel better?', 'No, do not stop taking Lifix LB 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12755, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'Can I stop taking Lifix O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lifix O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12756, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lifix O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12757, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'Can the use of Lifix O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lifix O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12758, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'What if I don\'t get better after using Lifix O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12759, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'Does the use of Lifix O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lifix O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(12760, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(12761, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'Can I drive while I am taking Lifix O 200mg/200mg Tablet?', 'No, taking Lifix O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(12762, 'Lifix O 200mg/200mg Tablet', 'Lacip Healthcare', 'Lifix O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Lifix O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12763, 'Lifix OZ 200mg/500mg Tablet', 'Abiz Pharma', 'Lifix OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lifix OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12764, 'Lifix-AZ Tablet', 'Liza Life Sciences', 'Lifix-AZ Tablet', 'Can I stop taking Lifix-AZ Tablet when I feel better?', 'No, do not stop taking Lifix-AZ Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12765, 'Lifix-AZ Tablet', 'Liza Life Sciences', 'Lifix-AZ Tablet', 'What if I miss my dose?', 'Take Lifix-AZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12766, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'How to take Lifix-CV 325 Tablet?', 'Take this medication by mouth, with or without food as directed by your doctor, usually once a day. If you are consuming chewable tablets, chew thoroughly and then swallow. Complete the full course of this medicine, even if symptoms disappear after a few days.'),
(12767, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'Is the use of Lifix-CV 325 Tablet contraindicated in patients with impaired renal function?', 'Lifix-CV 325 Tablet should be used with particular care in patients with severely impaired renal function. Dose modification is advised for patients with moderate or severe renal impairment.'),
(12768, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'What are the precautions that need to be taken while taking Lifix-CV 325 Tablet?', 'The dose of Lifix-CV 325 Tablet should be adjusted in patients with impairment of kidneys and for those who have gastrointestinal disease or colitis.'),
(12769, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'What are the serious side effects associated with the use of Lifix-CV 325 Tablet?', 'The use of Lifix-CV 325 Tablet can also lead to serious side effects like severe stomach/abdominal pain, persistent nausea/vomiting, unusual tiredness, new signs of infection (e.g., persistent sore throat, fever), yellowing of eyes/skin, dark urine, easy bruising/bleeding, signs of kidney problems (such as change in the amount of urine) and mental/mood changes (such as confusion).'),
(12770, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'What all should I tell my doctor before starting the course of this medicine?', 'Please inform your doctor if you are pregnant or trying for a baby or breastfeeding before you start taking this medicine. Let your doctor know if you are using any other medicine.'),
(12771, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'Can the use of Lifix-CV 325 Tablet cause diarrhea?', 'Yes, the use of Lifix-CV 325 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12772, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'How long does Lifix-CV 325 Tablet takes to work?', 'Usually, Lifix-CV 325 Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12773, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'What if I don\'t get better after using Lifix-CV 325 Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12774, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'Can I stop taking Lifix-CV 325 Tablet when I feel better?', 'No, do not stop taking Lifix-CV 325 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12775, 'Lifix-CV 325 Tablet', 'Liza Life Sciences', 'Lifix-CV 325 Tablet', 'What are the instructions for storage and disposal of Lifix-CV 325 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12776, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'How to take Lifix-CV Oral Suspension?', 'Take this medication by mouth, with or without food as directed by your doctor, usually once a day. If you are consuming chewable tablets, chew thoroughly and then swallow. Complete the full course of this medicine, even if symptoms disappear after a few days.'),
(12777, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'Is the use of Lifix-CV Oral Suspension contraindicated in patients with impaired renal function?', 'Lifix-CV Oral Suspension should be used with particular care in patients with severely impaired renal function. Dose modification is advised for patients with moderate or severe renal impairment.'),
(12778, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'What are the precautions that need to be taken while taking Lifix-CV Oral Suspension?', 'The dose of Lifix-CV Oral Suspension should be adjusted in patients with impairment of kidneys and for those who have gastrointestinal disease or colitis.'),
(12779, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'What are the serious side effects associated with the use of Lifix-CV Oral Suspension?', 'The use of Lifix-CV Oral Suspension can also lead to serious side effects like severe stomach/abdominal pain, persistent nausea/vomiting, unusual tiredness, new signs of infection (e.g., persistent sore throat, fever), yellowing of eyes/skin, dark urine, easy bruising/bleeding, signs of kidney problems (such as change in the amount of urine) and mental/mood changes (such as confusion).'),
(12780, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'What all should I tell my doctor before starting the course of this medicine?', 'Please inform your doctor if you are pregnant or trying for a baby or breastfeeding before you start taking this medicine. Let your doctor know if you are using any other medicine.'),
(12781, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'Can the use of Lifix-CV Oral Suspension cause diarrhea?', 'Yes, the use of Lifix-CV Oral Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12782, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'How long does Lifix-CV Oral Suspension takes to work?', 'Usually, Lifix-CV Oral Suspension starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12783, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'What if I don\'t get better after using Lifix-CV Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12784, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'Can I stop taking Lifix-CV Oral Suspension when I feel better?', 'No, do not stop taking Lifix-CV Oral Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12785, 'Lifix-CV Oral Suspension', 'Liza Life Sciences', 'Lifix-CV Oral Suspension', 'What are the instructions for storage and disposal of Lifix-CV Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12786, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'Can I stop taking Lifix-O 400 Tablet when I feel better?', 'No, do not stop taking Lifix-O 400 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12787, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'What if I miss my dose?', 'Take Lifix-O 400 Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12788, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'Can the use of Lifix-O 400 Tablet cause diarrhea?', 'Yes, the use of Lifix-O 400 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12789, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'What if I don\'t get better after using Lifix-O 400 Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12790, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'Does the use of Lifix-O 400 Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lifix-O 400 Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(12791, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(12792, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'Can I drive while I am taking Lifix-O 400 Tablet?', 'No, taking Lifix-O 400 Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(12793, 'Lifix-O 400 Tablet', 'Liza Life Sciences', 'Lifix-O 400 Tablet', 'What are the instructions for storage and disposal of Lifix-O 400 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12794, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'Can I stop taking Lifix-O Tablet when I feel better?', 'No, do not stop taking Lifix-O Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12795, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'What if I miss my dose?', 'Take Lifix-O Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12796, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'Can the use of Lifix-O Tablet cause diarrhea?', 'Yes, the use of Lifix-O Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12797, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'What if I don\'t get better after using Lifix-O Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12798, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'Does the use of Lifix-O Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lifix-O Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(12799, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(12800, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'Can I drive while I am taking Lifix-O Tablet?', 'No, taking Lifix-O Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(12801, 'Lifix-O Tablet', 'Abiz Pharma', 'Lifix-O Tablet', 'What are the instructions for storage and disposal of Lifix-O Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12802, 'Liflo 250mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 250mg Tablet', 'Is Liflo 250mg Tablet safe?', 'Liflo 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12803, 'Liflo 250mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 250mg Tablet', 'What if I forget to take a dose of Liflo 250mg Tablet?', 'If you forget a dose of Liflo 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12804, 'Liflo 250mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 250mg Tablet', 'Can the use of Liflo 250mg Tablet cause diarrhea?', 'Yes, the use of Liflo 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12805, 'Liflo 250mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 250mg Tablet', 'Can I stop taking Liflo 250mg Tablet when I feel better?', 'No, do not stop taking Liflo 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liflo 250mg Tablet too early, the symptoms may return or worsen. Continue taking Liflo 250mg Tablet in the dose and duration advised by the doctor.'),
(12806, 'Liflo 250mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 250mg Tablet', 'Can the use of Liflo 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liflo 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liflo 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12807, 'Liflo 500mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 500mg Tablet', 'Is Liflo 500mg Tablet safe?', 'Liflo 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12808, 'Liflo 500mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 500mg Tablet', 'What if I forget to take a dose of Liflo 500mg Tablet?', 'If you forget a dose of Liflo 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12809, 'Liflo 500mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 500mg Tablet', 'Can the use of Liflo 500mg Tablet cause diarrhea?', 'Yes, the use of Liflo 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12810, 'Liflo 500mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 500mg Tablet', 'Can I stop taking Liflo 500mg Tablet when I feel better?', 'No, do not stop taking Liflo 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liflo 500mg Tablet too early, the symptoms may return or worsen. Continue taking Liflo 500mg Tablet in the dose and duration advised by the doctor.'),
(12811, 'Liflo 500mg Tablet', 'Zenon Healthcare Ltd', 'Liflo 500mg Tablet', 'Can the use of Liflo 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liflo 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liflo 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12812, 'Liflogrits OZ Oral Suspension', 'Healthigo Healthcare Pvt. Ltd', 'Liflogrits OZ Oral Suspension', 'What if I don\'t get better after using Liflogrits OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12813, 'Liflogrits OZ Oral Suspension', 'Healthigo Healthcare Pvt. Ltd', 'Liflogrits OZ Oral Suspension', 'Can I stop taking Liflogrits OZ Oral Suspension when I feel better?', 'No, do not stop taking Liflogrits OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12814, 'Liflogrits OZ Oral Suspension', 'Healthigo Healthcare Pvt. Ltd', 'Liflogrits OZ Oral Suspension', 'What if I miss my dose?', 'Take Liflogrits OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12815, 'Liflox 200mg Tablet', 'Blesslife healthcare', 'Liflox 200mg Tablet', 'Can the use of Liflox 200mg Tablet cause diarrhea?', 'Yes, the use of Liflox 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12816, 'Liflox 200mg Tablet', 'Blesslife healthcare', 'Liflox 200mg Tablet', 'Can I stop taking Liflox 200mg Tablet when I feel better?', 'No, do not stop taking Liflox 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12817, 'Liflox 200mg Tablet', 'Blesslife healthcare', 'Liflox 200mg Tablet', 'Can the use of Liflox 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Liflox 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Liflox 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12818, 'Liflox 500mg Tablet', 'Mak Pharmaceuticals', 'Liflox 500mg Tablet', 'Is Liflox 500mg Tablet safe?', 'Liflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12819, 'Liflox 500mg Tablet', 'Mak Pharmaceuticals', 'Liflox 500mg Tablet', 'What if I forget to take a dose of Liflox 500mg Tablet?', 'If you forget a dose of Liflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12820, 'Liflox 500mg Tablet', 'Mak Pharmaceuticals', 'Liflox 500mg Tablet', 'Can the use of Liflox 500mg Tablet cause diarrhea?', 'Yes, the use of Liflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12821, 'Liflox 500mg Tablet', 'Mak Pharmaceuticals', 'Liflox 500mg Tablet', 'Can I stop taking Liflox 500mg Tablet when I feel better?', 'No, do not stop taking Liflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Liflox 500mg Tablet in the dose and duration advised by the doctor.'),
(12822, 'Liflox 500mg Tablet', 'Mak Pharmaceuticals', 'Liflox 500mg Tablet', 'Can the use of Liflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12823, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'What is Liflox OZ 200mg/500mg Tablet?', 'Liflox OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(12824, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'Is it safe to use Liflox OZ 200mg/500mg Tablet?', 'Liflox OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(12825, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Liflox OZ 200mg/500mg Tablet?', 'The use of Liflox OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(12826, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Liflox OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12827, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Liflox OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12828, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'Can I stop taking Liflox OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Liflox OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12829, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Liflox OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12830, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'Can I take alcohol while on Liflox OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Liflox OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(12831, 'Liflox OZ 200mg/500mg Tablet', 'Blesslife healthcare', 'Liflox OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Liflox OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12832, 'Lifloxin 250mg/250mg Capsule', 'Plenteous Pharmaceuticals Ltd', 'Lifloxin 250mg/250mg Capsule', 'How long does Lifloxin 250mg/250mg Capsule takes to work?', 'Usually, Lifloxin 250mg/250mg Capsule starts working soon after using it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12833, 'Lifloxin 250mg/250mg Capsule', 'Plenteous Pharmaceuticals Ltd', 'Lifloxin 250mg/250mg Capsule', 'Can I stop taking Lifloxin 250mg/250mg Capsule when I feel better?', 'No, do not stop taking Lifloxin 250mg/250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12834, 'Lifmec GB 300mg/500mcg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifmec GB 300mg/500mcg Tablet', 'What is Lifmec GB 300mg/500mcg Tablet?', 'Lifmec GB 300mg/500mcg Tablet is a combination of two medicines: Gabapentin and Methylcobalamin. This medication is useful in the treatment of pain due to nerve damage (peripheral neuropathy). This medication works by regenerating damaged nerves in the body and decreasing the pain sensation.'),
(12835, 'Lifmec GB 300mg/500mcg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifmec GB 300mg/500mcg Tablet', 'What is peripheral neuropathy?', 'The nerves in the periphery of your body, such as the nerves in your toes and fingertip are called peripheral nerves and any damage to one or more of these nerves is called peripheral neuropathy. These nerves carry messages to/from the brain and spinal cord from/to the rest of the body. A damage caused to these nerves stops them from functioning properly and the messages traveling between your central and peripheral nervous system get disrupted.'),
(12836, 'Lifmec GB 300mg/500mcg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifmec GB 300mg/500mcg Tablet', 'Can I stop taking Lifmec GB 300mg/500mcg Tablet when my pain is relieved?', 'No, take Lifmec GB 300mg/500mcg Tablet for the full prescribed length of time. Your symptoms may improve before the nerves are completely regenerated and healed.'),
(12837, 'Lifmec GB 300mg/500mcg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifmec GB 300mg/500mcg Tablet', 'Can the use of Lifmec GB 300mg/500mcg Tablet cause sleepiness?', 'Yes, the most common side effect of Lifmec GB 300mg/500mcg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention. Do not drink alcohol while taking Lifmec GB 300mg/500mcg Tablet as it can lead to severe sleepiness , causing falls or accidents.'),
(12838, 'Lifmec GB 300mg/500mcg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifmec GB 300mg/500mcg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lifmec GB 300mg/500mcg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12839, 'Lifmec GB 300mg/500mcg Tablet', 'Anabolic Remedies Pvt Ltd', 'Lifmec GB 300mg/500mcg Tablet', 'What is the recommended storage condition for the Lifmec GB 300mg/500mcg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12840, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'What is Lifnim P 100mg/325mg Tablet?', 'Lifnim P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(12841, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'Can I stop taking Lifnim P 100mg/325mg Tablet when my pain is relieved?', 'Lifnim P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(12842, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'Can the use of Lifnim P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lifnim P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(12843, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lifnim P 100mg/325mg Tablet?', 'The use of Lifnim P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(12844, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'Can I take Lifnim P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Lifnim P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lifnim P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(12845, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'Does Lifnim P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Lifnim P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(12846, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'Can the use of Lifnim P 100mg/325mg Tablet cause damage to the liver?', 'Lifnim P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(12847, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lifnim P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Lifnim P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12848, 'Lifnim P 100mg/325mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifnim P 100mg/325mg Tablet', 'What are the recommended storage conditions for Lifnim P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12849, 'Lifnolix 250 Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250 Tablet', 'Is Lifnolix 250 Tablet safe?', 'Lifnolix 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12850, 'Lifnolix 250 Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250 Tablet', 'What if I forget to take a dose of Lifnolix 250 Tablet?', 'If you forget a dose of Lifnolix 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12851, 'Lifnolix 250 Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250 Tablet', 'Can the use of Lifnolix 250 Tablet cause diarrhea?', 'Yes, the use of Lifnolix 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12852, 'Lifnolix 250 Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250 Tablet', 'Can I stop taking Lifnolix 250 Tablet when I feel better?', 'No, do not stop taking Lifnolix 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifnolix 250 Tablet too early, the symptoms may return or worsen. Continue taking Lifnolix 250 Tablet in the dose and duration advised by the doctor.'),
(12853, 'Lifnolix 250 Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250 Tablet', 'Can the use of Lifnolix 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Lifnolix 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifnolix 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12854, 'Lifnolix 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250mg Tablet', 'Q. Is Lifnolix 250mg Tablet safe?', 'Lifnolix 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12855, 'Lifnolix 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250mg Tablet', 'Q. What if I forget to take a dose of Lifnolix 250mg Tablet?', 'If you forget a dose of Lifnolix 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12856, 'Lifnolix 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250mg Tablet', 'Q. Can the use of Lifnolix 250mg Tablet cause diarrhea?', 'Yes, the use of Lifnolix 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12857, 'Lifnolix 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250mg Tablet', 'Q. Can I stop taking Lifnolix 250mg Tablet when I feel better?', 'No, do not stop taking Lifnolix 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifnolix 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lifnolix 250mg Tablet in the dose and duration advised by the doctor.'),
(12858, 'Lifnolix 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 250mg Tablet', 'Q. Can the use of Lifnolix 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lifnolix 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifnolix 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12859, 'Lifnolix 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 500mg Tablet', 'Q. Is Lifnolix 500mg Tablet safe?', 'Lifnolix 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12860, 'Lifnolix 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 500mg Tablet', 'Q. What if I forget to take a dose of Lifnolix 500mg Tablet?', 'If you forget a dose of Lifnolix 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(12861, 'Lifnolix 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 500mg Tablet', 'Q. Can the use of Lifnolix 500mg Tablet cause diarrhea?', 'Yes, the use of Lifnolix 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12862, 'Lifnolix 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 500mg Tablet', 'Q. Can I stop taking Lifnolix 500mg Tablet when I feel better?', 'No, do not stop taking Lifnolix 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifnolix 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lifnolix 500mg Tablet in the dose and duration advised by the doctor.'),
(12863, 'Lifnolix 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix 500mg Tablet', 'Q. Can the use of Lifnolix 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lifnolix 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifnolix 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12864, 'Lifnolix IV 500mg Infusion', 'Human Biolife India Pvt Ltd', 'Lifnolix IV 500mg Infusion', 'Is Lifnolix IV 500mg Infusion safe?', 'Lifnolix IV 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12865, 'Lifnolix IV 500mg Infusion', 'Human Biolife India Pvt Ltd', 'Lifnolix IV 500mg Infusion', 'Can the use of Lifnolix IV 500mg Infusion cause diarrhea?', 'Yes, the use of Lifnolix IV 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12866, 'Lifnolix IV 500mg Infusion', 'Human Biolife India Pvt Ltd', 'Lifnolix IV 500mg Infusion', 'Can the use of Lifnolix IV 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Lifnolix IV 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifnolix IV 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12867, 'Lifnolix IV 500mg Infusion', 'Human Biolife India Pvt Ltd', 'Lifnolix IV 500mg Infusion', 'How is Lifnolix IV 500mg Infusion administered?', 'Lifnolix IV 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lifnolix IV 500mg Infusion.'),
(12868, 'Lifnolix IV 500mg Infusion', 'Human Biolife India Pvt Ltd', 'Lifnolix IV 500mg Infusion', 'Is Lifnolix IV 500mg Infusion effective?', 'Lifnolix IV 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifnolix IV 500mg Infusion too early, the symptoms may return or worsen.'),
(12869, 'Lifnolix OZ 250mg/500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Lifnolix OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12870, 'Lifnolix OZ 250mg/500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ 250mg/500mg Tablet', 'Can I stop taking Lifnolix OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Lifnolix OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12871, 'Lifnolix OZ 250mg/500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Lifnolix OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12872, 'Lifnolix OZ 500mg/500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ 500mg/500mg Tablet', 'What if I don\'t get better after using Lifnolix OZ 500mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12873, 'Lifnolix OZ 500mg/500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ 500mg/500mg Tablet', 'Can I stop taking Lifnolix OZ 500mg/500mg Tablet when I feel better?', 'No, do not stop taking Lifnolix OZ 500mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12874, 'Lifnolix OZ 500mg/500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ 500mg/500mg Tablet', 'What if I miss my dose?', 'Take Lifnolix OZ 500mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12875, 'Lifnolix OZ Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ Oral Suspension', 'What if I don\'t get better after using Lifnolix OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12876, 'Lifnolix OZ Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ Oral Suspension', 'Can I stop taking Lifnolix OZ Oral Suspension when I feel better?', 'No, do not stop taking Lifnolix OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12877, 'Lifnolix OZ Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ Oral Suspension', 'What if I miss my dose?', 'Take Lifnolix OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12878, 'Lifnolix OZ Syrup', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ Syrup', 'What if I don\'t get better after using Lifnolix OZ Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12879, 'Lifnolix OZ Syrup', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ Syrup', 'Can I stop taking Lifnolix OZ Syrup when I feel better?', 'No, do not stop taking Lifnolix OZ Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12880, 'Lifnolix OZ Syrup', 'Human Biolife India Pvt Ltd', 'Lifnolix OZ Syrup', 'What if I miss my dose?', 'Take Lifnolix OZ Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12881, 'Lifobid 200mg Tablet', 'Intra Life', 'Lifobid 200mg Tablet', 'Can the use of Lifobid 200mg Tablet cause diarrhea?', 'Yes, the use of Lifobid 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12882, 'Lifobid 200mg Tablet', 'Intra Life', 'Lifobid 200mg Tablet', 'Can I stop taking Lifobid 200mg Tablet when I feel better?', 'No, do not stop taking Lifobid 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12883, 'Lifobid 200mg Tablet', 'Intra Life', 'Lifobid 200mg Tablet', 'Can the use of Lifobid 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lifobid 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lifobid 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12884, 'Lifobid DPS 0.3% Eye Drop', 'Intra Life', 'Lifobid DPS 0.3% Eye Drop', 'What is Lifobid DPS 0.3% Eye Drop used for?', 'Lifobid DPS 0.3% Eye Drop is used to treat infection of the eyes caused by bacteria. It helps in relieving the symptoms of eye infection like red, painful, itchy or watery eyes. This helps restore normal vision and enables you to carry out daily activities with ease.'),
(12885, 'Lifobid DPS 0.3% Eye Drop', 'Intra Life', 'Lifobid DPS 0.3% Eye Drop', 'Is Lifobid DPS 0.3% Eye Drop safe?', 'Lifobid DPS 0.3% Eye Drop is safe if used in the dose and duration advised by your doctor. Use it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12886, 'Lifobid DPS 0.3% Eye Drop', 'Intra Life', 'Lifobid DPS 0.3% Eye Drop', 'How long does it take for Lifobid DPS 0.3% Eye Drop to work?', 'Lifobid DPS 0.3% Eye Drop starts working as soon as it is used. This is because it is used directly into the eyes, that is the area of the infection, and this makes its action faster. The infection usually resolves with a few days, but if you do not feel better even after a week, please consult your doctor.'),
(12887, 'Lifobid DPS 0.3% Eye Drop', 'Intra Life', 'Lifobid DPS 0.3% Eye Drop', 'What should I do if I forget to use Lifobid DPS 0.3% Eye Drop?', 'If you forget to use Lifobid DPS 0.3% Eye Drop, do not worry and continue using Lifobid DPS 0.3% Eye Drop as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(12888, 'Lifobid DPS 0.3% Eye Drop', 'Intra Life', 'Lifobid DPS 0.3% Eye Drop', 'Can I stop using Lifobid DPS 0.3% Eye Drop when I feel better?', 'No, do not stop using Lifobid DPS 0.3% Eye Drop without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(12889, 'Lifobid DPS 0.3% Eye Drop', 'Intra Life', 'Lifobid DPS 0.3% Eye Drop', 'Is Lifobid DPS 0.3% Eye Drop effective?', 'Lifobid DPS 0.3% Eye Drop is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifobid DPS 0.3% Eye Drop too early, the symptoms may return or worsen.'),
(12890, 'Lifobid Infusion', 'Intra Life', 'Lifobid Infusion', 'Can the use of Lifobid Infusion cause diarrhea?', 'Yes, the use of Lifobid Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12891, 'Lifobid Infusion', 'Intra Life', 'Lifobid Infusion', 'Can I stop taking Lifobid Infusion when I feel better?', 'No, do not stop taking Lifobid Infusion and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12892, 'Lifobid Infusion', 'Intra Life', 'Lifobid Infusion', 'Can the use of Lifobid Infusion increase the risk of muscle damage?', 'Yes, use of Lifobid Infusion is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lifobid Infusion. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12893, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'What is Lifobid OZ 200mg/500mg Tablet?', 'Lifobid OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(12894, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'Is it safe to use Lifobid OZ 200mg/500mg Tablet?', 'Lifobid OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(12895, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lifobid OZ 200mg/500mg Tablet?', 'The use of Lifobid OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(12896, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lifobid OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12897, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lifobid OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12898, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'Can I stop taking Lifobid OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lifobid OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12899, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lifobid OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12900, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lifobid OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lifobid OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(12901, 'Lifobid OZ 200mg/500mg Tablet', 'Intra Life', 'Lifobid OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lifobid OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12902, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'My child is having a common cold. Is it safe to give Lifobid OZ Oral Suspension along with cough & cold medicines?', 'Lifobid OZ Oral Suspension can interfere with cough and cold medicines. One of the active ingredients of Lifobid OZ Oral Suspension can interact with alcohol-containing medicines like cough syrups and can cause adverse effects. Don’t give your child any medicines along with Lifobid OZ Oral Suspension without consulting the doctor.'),
(12903, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'What if I give excess Lifobid OZ Oral Suspension by mistake?', 'Though an extra dose of Lifobid OZ Oral Suspension will not impact your child’s health, never give an overdose of any medicine. If you think you have given too much to your child, immediately speak to a doctor. Exceeding the recommended dose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heart beat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(12904, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'What should I do if my child shows no improvement even after taking Lifobid OZ Oral Suspension for the prescribed duration?', 'Not seeing any improvement could signify that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe an antibiotic having a farther reach of impact than Lifobid OZ Oral Suspension. Since not all medicines are given by oral route, your doctor may suggest giving an intravenous injection to your child in the hospital.'),
(12905, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'Can other medicines be given at the same time as Lifobid OZ Oral Suspension?', 'Lifobid OZ Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifobid OZ Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(12906, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'Can I get my child vaccinated while on treatment with Lifobid OZ Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(12907, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'What should I tell the doctor before giving Lifobid OZ Oral Suspension to my child?', 'Inform the doctor if your child is suffering or has suffered from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lifobid OZ Oral Suspension may aggravate these conditions and result in complications.'),
(12908, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'What is Lifobid OZ Oral Suspension?', 'Lifobid OZ Oral Suspension is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(12909, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'Is it safe to use Lifobid OZ Oral Suspension?', 'Lifobid OZ Oral Suspension is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(12910, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'Are there any specific contraindications associated with the use of Lifobid OZ Oral Suspension?', 'The use of Lifobid OZ Oral Suspension is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(12911, 'Lifobid OZ Oral Suspension', 'Intra Life', 'Lifobid OZ Oral Suspension', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lifobid OZ Oral Suspension can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12912, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'Is Lifobid-O Infusion effective?', 'Lifobid-O Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lifobid-O Infusion too early, the symptoms may return or worsen.'),
(12913, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'Can the use of Lifobid-O Infusion cause metallic taste?', 'Yes, Lifobid-O Infusion may cause a temporary metallic taste. This metallic taste can be reduced by staying hydrated, brushing teeth after the meals and chewing sugar-free gum or mints.'),
(12914, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'How is Lifobid-O Infusion administered?', 'Lifobid-O Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lifobid-O Infusion.'),
(12915, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'Why is it harmful to drink alcohol while using Lifobid-O Infusion?', 'Alcohol should be strictly avoided while taking Lifobid-O Infusion. Moreover, you should avoid alcohol even after 3 days of finishing the complete course. Drinking alcohol can cause an unpleasant reaction (Disulfiram reaction) with symptoms such as stomach pain, nausea, vomiting, headache, flushing or redness of the face.'),
(12916, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'Is Lifobid-O Infusion safe?', 'Lifobid-O Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12917, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'What are the side effects of Lifobid-O Infusion?', 'The most common side effects of Lifobid-O Infusion are dizziness, headache, nausea or vomiting, numbness of extremity, skin reaction and tiredness. Do not worry, these side effects are usually not bothersome. But if you are concerned or if any of these persists for a long duration, consult your doctor.'),
(12918, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'How to cope with dizziness caused by Lifobid-O Infusion?', 'If you feel dizzy while taking Lifobid-O Infusion, lie down for some time and then get up slowly. Moving slowly and cautiously can also help cope up with dizziness. Avoid coffee, cigarettes, alcohol and recreational drugs. If dizziness persists or worsens, consult your doctor.'),
(12919, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'What is Lifobid-O Infusion?', 'Lifobid-O Infusion belongs to a group of medicines called antibiotics. It works by killing the harmful microorganisms that can cause bacterial infections and parasitic infections. It is used in infections of the brain, reproductive system, gastrointestinal tract, skin, vagina, and other areas of the body.'),
(12920, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'Is Lifobid-O Infusion safe?', 'Lifobid-O Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(12921, 'Lifobid-O Infusion', 'Intra Life', 'Lifobid-O Infusion', 'How is Lifobid-O Infusion administered?', 'Lifobid-O Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lifobid-O Infusion.'),
(12922, 'Lifocet-M Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifocet-M Tablet (Lifeline Antidotes Pvt. Ltd.)', 'What is Lifocet-M Tablet?', 'Lifocet-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(12923, 'Lifocet-M Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifocet-M Tablet (Lifeline Antidotes Pvt. Ltd.)', 'Can the use of Lifocet-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lifocet-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(12924, 'Lifocet-M Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifocet-M Tablet (Lifeline Antidotes Pvt. Ltd.)', 'Can Lifocet-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lifocet-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(12925, 'Lifocet-M Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifocet-M Tablet (Lifeline Antidotes Pvt. Ltd.)', 'Can the use of Lifocet-M Tablet cause dry mouth?', 'Yes, the use of Lifocet-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(12926, 'Lifocet-M Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifocet-M Tablet (Lifeline Antidotes Pvt. Ltd.)', 'Can I drink alcohol while taking Lifocet-M Tablet?', 'No, do not take alcohol while taking Lifocet-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lifocet-M Tablet.'),
(12927, 'Lifocet-M Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifocet-M Tablet (Lifeline Antidotes Pvt. Ltd.)', 'Will Lifocet-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lifocet-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(12928, 'Lifocet-M Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifocet-M Tablet (Lifeline Antidotes Pvt. Ltd.)', 'What are the instructions for storage and disposal of Lifocet-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(12929, 'Lifocet-M Tablet', 'Quiagen Life Sciences Pvt Ltd', 'Lifocet-M Tablet (Quiagen Life Sciences Pvt Ltd)', 'What is Lifocet-M Tablet?', 'Lifocet-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(12930, 'Lifocet-M Tablet', 'Quiagen Life Sciences Pvt Ltd', 'Lifocet-M Tablet (Quiagen Life Sciences Pvt Ltd)', 'Can the use of Lifocet-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lifocet-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(12931, 'Lifocet-M Tablet', 'Quiagen Life Sciences Pvt Ltd', 'Lifocet-M Tablet (Quiagen Life Sciences Pvt Ltd)', 'Can Lifocet-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lifocet-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(12932, 'Lifocet-M Tablet', 'Quiagen Life Sciences Pvt Ltd', 'Lifocet-M Tablet (Quiagen Life Sciences Pvt Ltd)', 'Can the use of Lifocet-M Tablet cause dry mouth?', 'Yes, the use of Lifocet-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(12933, 'Lifocet-M Tablet', 'Quiagen Life Sciences Pvt Ltd', 'Lifocet-M Tablet (Quiagen Life Sciences Pvt Ltd)', 'Can I drink alcohol while taking Lifocet-M Tablet?', 'No, do not take alcohol while taking Lifocet-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lifocet-M Tablet.'),
(12934, 'Lifocet-M Tablet', 'Quiagen Life Sciences Pvt Ltd', 'Lifocet-M Tablet (Quiagen Life Sciences Pvt Ltd)', 'Will Lifocet-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lifocet-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(12935, 'Lifocet-M Tablet', 'Quiagen Life Sciences Pvt Ltd', 'Lifocet-M Tablet (Quiagen Life Sciences Pvt Ltd)', 'What are the instructions for storage and disposal of Lifocet-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(12936, 'Lifoclav-CV 625 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoclav-CV 625 Tablet', 'What are the contraindications associated with the use of Lifoclav-CV 625 Tablet?', 'Lifoclav-CV 625 Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(12937, 'Lifoclav-CV 625 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoclav-CV 625 Tablet', 'Which is the best time to take Lifoclav-CV 625 Tablet?', 'Lifoclav-CV 625 Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(12938, 'Lifoclav-CV 625 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoclav-CV 625 Tablet', 'Can I stop Lifoclav-CV 625 Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(12939, 'Lifoclav-CV 625 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoclav-CV 625 Tablet', 'Can I take Lifoclav-CV 625 Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(12940, 'Lifoclav-CV 625 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoclav-CV 625 Tablet', 'What are the instructions for the storage and disposal of Lifoclav-CV 625 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12941, 'Lifoclin Gel', 'ICI Pharmaceuticals', 'Lifoclin Gel', 'Will Lifoclin Gel be more effective if I overuse it?', 'No, do not overuse Lifoclin Gel. It can cause over-absorption of the medicine into the body and cause severe diarrhea. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(12942, 'Lifoclin Gel', 'ICI Pharmaceuticals', 'Lifoclin Gel', 'What are the recommended instructions for the storage and disposal of Lifoclin Gel?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12943, 'Lifoclin Gel', 'ICI Pharmaceuticals', 'Lifoclin Gel', 'Can I use Lifoclin Gel as a spot treatment (for single pimple)?', 'It is not a spot treatment and should not be used to treat a single pimple. Lifoclin Gel should be applied to the entire face. Using it once everyday can help treat your acne.'),
(12944, 'Lifoclin Gel', 'ICI Pharmaceuticals', 'Lifoclin Gel', 'How long does Lifoclin Gel take to work?', 'It may take up to 2-3 weeks before your symptoms improve. Lifoclin Gel may take some time to deliver significant results. Use the medicine as directed and let your doctor know if your symptoms do not improve or get worse.'),
(12945, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'What is Lifocox 90mg Tablet used for?', 'Lifocox 90mg Tablet is used to reduce the pain and swelling (inflammation) in the joints and muscles of people 16 years of age and older with rheumatoid arthritis, ankylosing spondylitis and gout. Lifocox 90mg Tablet is also used for the short term treatment of moderate pain after dental surgery in people 16 years of age and older.'),
(12946, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Is it safe to use Lifocox 90mg Tablet?', 'Lifocox 90mg Tablet is safe for most patients. However, in some patients, it may cause some unwanted side effects like nausea, vomiting, stomach pain, fatigue, diarrhea, etc. Inform your doctor if you experience any persistent problem due to this medication.'),
(12947, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Can I stop taking Lifocox 90mg Tablet when my pain is relieved?', 'Lifocox 90mg Tablet should be continued as advised by your doctor, if you are using the medicine for a condition associated with long-term pain. It can be discontinued if you are using it for short-term pain relief.'),
(12948, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Can the use of Lifocox 90mg Tablet cause nausea and vomiting?', 'Yes, the use of Lifocox 90mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(12949, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Can the use of Lifocox 90mg Tablet cause dizziness?', 'Yes, the use of Lifocox 90mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for sometime and resume once you feel better.'),
(12950, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Are there any specific contraindications associated with the use of Lifocox 90mg Tablet?', 'The use of Lifocox 90mg Tablet is considered to be harmful for patients with known allergy to any of the components of this medicine. It should be avoided in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active or recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(12951, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Is Lifocox 90mg Tablet helpful in relieving stomach pain?', 'No, Lifocox 90mg Tablet should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(12952, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Can the use of Lifocox 90mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lifocox 90mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lowers the levels of prostaglandins in the body, leading to kidney damage because of long-term use. Therefore, the use of painkillers is not recommended in patients with underlying kidney disease.'),
(12953, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Is it safe to take a higher than the recommended dose of Lifocox 90mg Tablet ?', 'No, taking a higher than the recommended dose of Lifocox 90mg Tablet can increase the risks of side effects like stomach pain, nausea, vomiting, indigestion and diarrhea. In fact, using this medicine for a long-term can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(12954, 'Lifocox 90mg Tablet', 'Lifejoy Healthcare', 'Lifocox 90mg Tablet', 'Can Lifocox 90mg Tablet cause high blood pressure?', 'Yes. Lifocox 90mg Tablet can increase blood pressure in some people, especially in high doses, and your doctor may advise you to check your blood pressure at home or even monitor it from time to time. If you have high blood pressure that has not been controlled by treatment, you must inform your doctor before starting treatment with Lifocox 90mg Tablet, to avoid any mishap.'),
(12955, 'Lifocox P 60mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifocox P 60mg/325mg Tablet', 'Can the use of Lifocox P 60mg/325mg Tablet cause dizziness?', 'Yes, the use of Lifocox P 60mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(12956, 'Lifocox P 60mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifocox P 60mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lifocox P 60mg/325mg Tablet?', 'The use of Lifocox P 60mg/325mg Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDs) or any of the components or excipients of this medicine. . The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(12957, 'Lifocox P 60mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifocox P 60mg/325mg Tablet', 'Can the use of Lifocox P 60mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lifocox P 60mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(12958, 'Lifocox P 60mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifocox P 60mg/325mg Tablet', 'Will Lifocox P 60mg/325mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(12959, 'Lifocox P 60mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifocox P 60mg/325mg Tablet', 'Can the use of Lifocox P 60mg/325mg Tablet cause damage to liver?', 'Lifocox P 60mg/325mg Tablet contains Paracetamol. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(12960, 'Lifocox P 60mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifocox P 60mg/325mg Tablet', 'What are the instructions for storage and disposal of Lifocox P 60mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12961, 'Lifocox P 60mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifocox P 60mg/325mg Tablet', 'Can I stop taking Lifocox P 60mg/325mg Tablet when my pain is relieved?', 'Lifocox P 60mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your doctor. It can be discontinued if you are using it for short-term pain relief.'),
(12962, 'Lifocox TH 60mg/4mg Tablet', 'Lifejoy Healthcare', 'Lifocox TH 60mg/4mg Tablet', 'Can I stop taking Lifocox TH 60mg/4mg Tablet when my pain is relieved?', 'Lifocox TH 60mg/4mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(12963, 'Lifocox TH 60mg/4mg Tablet', 'Lifejoy Healthcare', 'Lifocox TH 60mg/4mg Tablet', 'Can the use of Lifocox TH 60mg/4mg Tablet cause dizziness?', 'Yes, the use of Lifocox TH 60mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(12964, 'Lifocox TH 60mg/4mg Tablet', 'Lifejoy Healthcare', 'Lifocox TH 60mg/4mg Tablet', 'Are there any specific contraindications associated with the use of Lifocox TH 60mg/4mg Tablet?', 'The use of Lifocox TH 60mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDS) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(12965, 'Lifocox TH 60mg/4mg Tablet', 'Lifejoy Healthcare', 'Lifocox TH 60mg/4mg Tablet', 'Can I take Lifocox TH 60mg/4mg Tablet with Vitamin B-complex?', 'Yes, Lifocox TH 60mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Lifocox TH 60mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(12966, 'Lifocox TH 60mg/4mg Tablet', 'Lifejoy Healthcare', 'Lifocox TH 60mg/4mg Tablet', 'Can the use of Lifocox TH 60mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lifocox TH 60mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(12967, 'Lifocox TH 60mg/4mg Tablet', 'Lifejoy Healthcare', 'Lifocox TH 60mg/4mg Tablet', 'Will Lifocox TH 60mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(12968, 'Lifocox TH 60mg/4mg Tablet', 'Lifejoy Healthcare', 'Lifocox TH 60mg/4mg Tablet', 'What is the recommended storage condition for Lifocox TH 60mg/4mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12969, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'How long does Lifoderm Cream takes to work?', 'Usually, Lifoderm Cream starts working soon after applying it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(12970, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'Is it safe to use Lifoderm Cream?', 'Yes, Lifoderm Cream is safe when used according to your doctor’s advice and for limited duration of time. However, in some patients it may cause some unwanted side effects like transient burning, itching and irritation at the application site. It may also cause other uncommon or rare side effects. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(12971, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'Can I stop taking Lifoderm Cream when my symptoms are relieved?', 'No, do not stop taking Lifoderm Cream and complete the full course of treatment, even if you feel better. Your symptoms may improve before the skin infection is completely cured.'),
(12972, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'What are the precautions needed to be taken while using Lifoderm Cream?', 'Lifoderm Cream should not be used on the face. Do not use the medication for longer than the advised periods of time. Do not apply a bandage or dressing to the area being treated, as this will increase the absorption of the preparation and increase the risk of side effects. This medicine should only be used by the patient and never be given to other people even if their condition appears to be the same.'),
(12973, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'How to use Lifoderm Cream?', 'Follow the directions given by the healthcare provider on the medication. Apply the medication thinly and in sufficient quantity to cover the affected area completely. Lifoderm Cream is usually applied two or three times a day on the affected areas of skin. Wash your hands after using Lifoderm Cream, unless it is used for treating skin infection on the hands.'),
(12974, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'Can I overuse Lifoderm Cream?', 'No, do not overuse Lifoderm Cream for long periods or on large areas of skin. It can cause over-absorption of the medicine into the body which may further lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(12975, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'What is the storage condition for the Lifoderm Cream?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12976, 'Lifoderm Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Lifoderm Cream', 'Can I stop using Lifoderm Cream when I feel better?', 'No, do not stop using Lifoderm Cream and finish the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cleared.'),
(12977, 'Lifof 200mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof 200mg Tablet', 'Can the use of Lifof 200mg Tablet cause diarrhea?', 'Yes, the use of Lifof 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(12978, 'Lifof 200mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof 200mg Tablet', 'Can I stop taking Lifof 200mg Tablet when I feel better?', 'No, do not stop taking Lifof 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(12979, 'Lifof 200mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof 200mg Tablet', 'Can the use of Lifof 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lifof 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lifof 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(12980, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'What is Lifof OZ 200mg/500mg Tablet?', 'Lifof OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(12981, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'Is it safe to use Lifof OZ 200mg/500mg Tablet?', 'Lifof OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(12982, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lifof OZ 200mg/500mg Tablet?', 'The use of Lifof OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(12983, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lifof OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(12984, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lifof OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(12985, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'Can I stop taking Lifof OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lifof OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(12986, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lifof OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(12987, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lifof OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lifof OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(12988, 'Lifof OZ 200mg/500mg Tablet', 'Savikem Lifecare Pvt Ltd', 'Lifof OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lifof OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(12989, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'How should Lifogesic 25mg/ml Injection injection be administered?', 'Lifogesic 25mg/ml Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(12990, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'What is the most important information I need to know about Lifogesic 25mg/ml Injection?', 'It is important to know that Lifogesic 25mg/ml Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lifogesic 25mg/ml Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(12991, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'Is Lifogesic 25mg/ml Injection a good painkiller?', 'Lifogesic 25mg/ml Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(12992, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'Can Lifogesic 25mg/ml Injection hurt your kidneys?', 'Long-term use and high doses of Lifogesic 25mg/ml Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(12993, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'Does Lifogesic 25mg/ml Injection make you drowsy?', 'Lifogesic 25mg/ml Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(12994, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'Can Lifogesic 25mg/ml Injection be taken during pregnancy?', 'You should not take Lifogesic 25mg/ml Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lifogesic 25mg/ml Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lifogesic 25mg/ml Injection during the first 6 months of pregnancy also.  In some cases, Lifogesic 25mg/ml Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(12995, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'Does Lifogesic 25mg/ml Injection get you high?', 'No, Lifogesic 25mg/ml Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(12996, 'Lifogesic 25mg/ml Injection', 'Intra Life', 'Lifogesic 25mg/ml Injection', 'Is Lifogesic 25mg/ml Injection a narcotic?', 'No, Lifogesic 25mg/ml Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(12997, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'What is Lifogesic 50mg/325mg Tablet?', 'Lifogesic 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(12998, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Is it safe to use Lifogesic 50mg/325mg Tablet?', 'Yes, Lifogesic 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(12999, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Can I stop taking Lifogesic 50mg/325mg Tablet when my pain is relieved?', 'Lifogesic 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(13000, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Can the use of Lifogesic 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lifogesic 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13001, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Can the use of Lifogesic 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lifogesic 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(13002, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Can the use of Lifogesic 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lifogesic 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(13003, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lifogesic 50mg/325mg Tablet?', 'The use of Lifogesic 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(13004, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Can Lifogesic 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Lifogesic 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lifogesic 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(13005, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lifogesic 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Lifogesic 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(13006, 'Lifogesic 50mg/325mg Tablet', 'Intra Life', 'Lifogesic 50mg/325mg Tablet', 'What is the recommended storage condition for Lifogesic 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13007, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'How much Lifogesic Oral Suspension should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure safe and complete recovery of your child.'),
(13008, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'Can I change the dose of Lifogesic Oral Suspension for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unnecessary increase in dose may lead to toxicity, a sudden lowering of the dosing may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(13009, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'Can all children be given the same dose of Lifogesic Oral Suspension?', 'No. Lifogesic Oral Suspension cannot be given to everyone in the same dose. The doctor decides the appropriate dose based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(13010, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'When will my child feel better?', 'The doctor may advise you to keep giving Lifogesic Oral Suspension to your child for a few days to weeks, depending upon the severity of the illness. You’ll notice that the pain or fever will reduce and your child will start feeling better gradually as the course approaches its end. In case your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(13011, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'Are there any serious side effects of this medicine for my child?', 'Lifogesic Oral Suspension is well-tolerated by most children. However, if your child experiences any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, serious allergic reaction, and severe pain due to gastric ulcers, then rush to your doctor on an immediate basis.'),
(13012, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'How should I store Lifogesic Oral Suspension?', 'Store Lifogesic Oral Suspension at room temperature, in a dry place, away from direct heat and light. Avoid leaving medicines within the reach and sight of children.'),
(13013, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'My child is taking Lifogesic Oral Suspension for toothache and now has to undergo an extraction procedure. Should I continue giving Lifogesic Oral Suspension?', 'Withhold Lifogesic Oral Suspension from at least 3 to 5 days before a surgical procedure to prevent excessive bleeding. In case of any confusion, it is best to reach out to your child’s doctor.'),
(13014, 'Lifogesic Oral Suspension', 'Intra Life', 'Lifogesic Oral Suspension', 'Can other medicines be given at the same time as Lifogesic Oral Suspension?', 'Lifogesic Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifogesic Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(13015, 'Lifokinase 750000IU Injection', 'Shasun Pharmaceuticals Ltd', 'Lifokinase 750000IU Injection', 'Can the use of Lifokinase 750000IU Injection increase the risk of bleeding?', 'Yes, Lifokinase 750000IU Injection increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(13016, 'Lifokinase 750000IU Injection', 'Shasun Pharmaceuticals Ltd', 'Lifokinase 750000IU Injection', 'What medicines should I avoid while taking Lifokinase 750000IU Injection?', 'Lifokinase 750000IU Injection can interact with several medicines. Do not take any medicine without talking to your doctor.'),
(13017, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Is it safe to use Lifomef 500mg/325mg Tablet?', 'Yes, Lifomef 500mg/325mg Tablet is safe to use in most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(13018, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Can Lifomef 500mg/325mg Tablet be stopped when the pain is relieved?', 'Lifomef 500mg/325mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, if advised by the doctor, it should be continued for the recommended time period.'),
(13019, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Can the use of Lifomef 500mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lifomef 500mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with the medicine. In the case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to the doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13020, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Can the use of Lifomef 500mg/325mg Tablet cause dizziness?', 'Yes, the use of Lifomef 500mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(13021, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lifomef 500mg/325mg Tablet?', 'The use of Lifomef 500mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of liver or kidney disease.'),
(13022, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Can I take Lifomef 500mg/325mg Tablet with vitamin B-complex?', 'Yes, Lifomef 500mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lifomef 500mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help correct the vitamin deficiency that might be causing the underlying painful condition.'),
(13023, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Can the use of Lifomef 500mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lifomef 500mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(13024, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lifomef 500mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Lifomef 500mg/325mg Tablet can increase the risks of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage the kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13025, 'Lifomef 500mg/325mg Tablet', 'Lifejoy Healthcare', 'Lifomef 500mg/325mg Tablet', 'What are the storage condition for Lifomef 500mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13026, 'Lifomef D 80mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef D 80mg/250mg Tablet', 'What is Lifomef D 80mg/250mg Tablet?', 'Lifomef D 80mg/250mg Tablet is a combination of two medicines: Drotaverine and Mefenamic acid. This medication helps to relieve abdominal pain. Drotaverine relieves muscle spasms associated with smooth muscles in the abdomen. Mefenamic Acid works by blocking the release of certain chemical messengers that cause pain and inflammation (swelling).'),
(13027, 'Lifomef D 80mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef D 80mg/250mg Tablet', 'Is it safe to use Lifomef D 80mg/250mg Tablet?', 'Yes, Lifomef D 80mg/250mg Tablet is safe for most of the patients with abdominal pain. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, diarrhoea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(13028, 'Lifomef D 80mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef D 80mg/250mg Tablet', 'Can I stop taking Lifomef D 80mg/250mg Tablet when my pain is relieved?', 'Lifomef D 80mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lifomef D 80mg/250mg Tablet should be continued if your physician has advised you to do so.'),
(13029, 'Lifomef D 80mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef D 80mg/250mg Tablet', 'Can the use of Lifomef D 80mg/250mg Tablet cause nausea and vomiting?', 'Yes, the use of Lifomef D 80mg/250mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Also, avoid taking fatty or fried foods along with the medicine. Talk to your doctor if you have vomiting persists and you notice any signs of dehydration like less urination with dark coloured and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(13030, 'Lifomef D 80mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef D 80mg/250mg Tablet', 'Can the use of Lifomef D 80mg/250mg Tablet cause dry mouth?', 'Yes, the use of Lifomef D 80mg/250mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Avoid spicy, salty and acidic foods (like lemons).'),
(13031, 'Lifomef D 80mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef D 80mg/250mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, do not take a higher than the recommended dose of Lifomef D 80mg/250mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13032, 'Lifomef D 80mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef D 80mg/250mg Tablet', 'What are the recommended storage conditions for Lifomef D 80mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13033, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'How much Lifomef Oral Suspension should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure safe and complete recovery of your child.'),
(13034, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'Can I change the dose of Lifomef Oral Suspension for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unnecessary increase in dose may lead to toxicity, a sudden lowering of the dosing may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(13035, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'Can all children be given the same dose of Lifomef Oral Suspension?', 'No. Lifomef Oral Suspension cannot be given to everyone in the same dose. The doctor decides the appropriate dose based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(13036, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'When will my child feel better?', 'The doctor may advise you to keep giving Lifomef Oral Suspension to your child for a few days to weeks, depending upon the severity of the illness. You’ll notice that the pain or fever will reduce and your child will start feeling better gradually as the course approaches its end. In case your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(13037, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'Are there any serious side effects of this medicine for my child?', 'Lifomef Oral Suspension is well-tolerated by most children. However, if your child experiences any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, serious allergic reaction, and severe pain due to gastric ulcers, then rush to your doctor on an immediate basis.'),
(13038, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'How should I store Lifomef Oral Suspension?', 'Store Lifomef Oral Suspension at room temperature, in a dry place, away from direct heat and light. Avoid leaving medicines within the reach and sight of children.'),
(13039, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'My child is taking Lifomef Oral Suspension for toothache and now has to undergo an extraction procedure. Should I continue giving Lifomef Oral Suspension?', 'Withhold Lifomef Oral Suspension from at least 3 to 5 days before a surgical procedure to prevent excessive bleeding. In case of any confusion, it is best to reach out to your child’s doctor.'),
(13040, 'Lifomef Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Oral Suspension', 'Can other medicines be given at the same time as Lifomef Oral Suspension?', 'Lifomef Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifomef Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(13041, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Is it safe to use Lifomef Plus  Oral Suspension?', 'Yes, Lifomef Plus  Oral Suspension is safe to use in most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(13042, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Can Lifomef Plus  Oral Suspension be stopped when the pain is relieved?', 'Lifomef Plus  Oral Suspension is usually used for short term and can be discontinued when the pain is relieved. However, if advised by the doctor, it should be continued for the recommended time period.'),
(13043, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Can the use of Lifomef Plus  Oral Suspension cause nausea and vomiting?', 'Yes, the use of Lifomef Plus  Oral Suspension can cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with the medicine. In the case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to the doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13044, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Can the use of Lifomef Plus  Oral Suspension cause dizziness?', 'Yes, the use of Lifomef Plus  Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(13045, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Are there any specific contraindications associated with the use of Lifomef Plus  Oral Suspension?', 'The use of Lifomef Plus  Oral Suspension is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of liver or kidney disease.'),
(13046, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Can I take Lifomef Plus  Oral Suspension with vitamin B-complex?', 'Yes, Lifomef Plus  Oral Suspension can be taken with Vitamin B-complex preparations. While Lifomef Plus  Oral Suspension helps to relieve pain, Vitamin B-complex can help correct the vitamin deficiency that might be causing the underlying painful condition.'),
(13047, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Can the use of Lifomef Plus  Oral Suspension cause damage to kidneys?', 'Yes, the long-term use of Lifomef Plus  Oral Suspension can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(13048, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'Is it safe to take a higher than the recommended dose of Lifomef Plus  Oral Suspension?', 'No, taking a higher than the recommended dose of Lifomef Plus  Oral Suspension can increase the risks of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage the kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13049, 'Lifomef Plus Oral Suspension', 'Lifejoy Healthcare', 'Lifomef Plus Oral Suspension', 'What are the storage condition for Lifomef Plus  Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13050, 'Lifomef TR 500mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef TR 500mg/250mg Tablet', 'What is Lifomef TR 500mg/250mg Tablet?', 'Lifomef TR 500mg/250mg Tablet is a combination of two medicines: Tranexamic Acid and Mefenamic Acid. This medication is used to treat pain and is used to treat heavy bleeding during menstrual cycle (monthly periods) in women.'),
(13051, 'Lifomef TR 500mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef TR 500mg/250mg Tablet', 'Are there any specific contraindications associated with the use of Lifomef TR 500mg/250mg Tablet?', 'Yes, it is considered to be harmful for patients with severe kidney failure, active intravascular clotting (obstruction in the blood flow due to blood clots), and color vision disorders.'),
(13052, 'Lifomef TR 500mg/250mg Tablet', 'Lifejoy Healthcare', 'Lifomef TR 500mg/250mg Tablet', 'What is the recommended storage condition for Lifomef TR 500mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13053, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'What is Lifomentin CV 500mg/125mg Tablet?', 'Lifomentin CV 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(13054, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Is it safe to use Lifomentin CV 500mg/125mg Tablet?', 'Lifomentin CV 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(13055, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Lifomentin CV 500mg/125mg Tablet?', 'The use of Lifomentin CV 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(13056, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Can the use of Lifomentin CV 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Lifomentin CV 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lifomentin CV 500mg/125mg Tablet.'),
(13057, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Lifomentin CV 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Lifomentin CV 500mg/125mg Tablet can increase the risks of side effects. Lifomentin CV 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(13058, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lifomentin CV 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13059, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Can I stop taking Lifomentin CV 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lifomentin CV 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(13060, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Can Lifomentin CV 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Lifomentin CV 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(13061, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Can the use of Lifomentin CV 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lifomentin CV 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(13062, 'Lifomentin CV 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin CV 500mg/125mg Tablet', 'Can I take Lifomentin CV 500mg/125mg Tablet to treat cold and flu?', 'No, Lifomentin CV 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(13063, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Can other medicines be given at the same time as Lifomentin CV DS Dry Syrup?', 'Lifomentin CV DS Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifomentin CV DS Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(13064, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Can I get my child vaccinated while on treatment with Lifomentin CV DS Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(13065, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Which lab tests may my child undergo while taking Lifomentin CV DS Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(13066, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Can I give a higher than the recommended dose of Lifomentin CV DS Dry Syrup to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(13067, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Can I stop giving Lifomentin CV DS Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(13068, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Can the use of Lifomentin CV DS Dry Syrup cause diarrhea?', 'Yes, Lifomentin CV DS Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(13069, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(13070, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(13071, 'Lifomentin CV DS Dry Syrup', 'Life Pharma', 'Lifomentin CV DS Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(13072, 'Lifomentin LB 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin LB 500mg/125mg Tablet', 'What are the contraindications associated with the use of Lifomentin LB 500mg/125mg Tablet?', 'Lifomentin LB 500mg/125mg Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(13073, 'Lifomentin LB 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin LB 500mg/125mg Tablet', 'Which is the best time to take Lifomentin LB 500mg/125mg Tablet?', 'Lifomentin LB 500mg/125mg Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(13074, 'Lifomentin LB 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin LB 500mg/125mg Tablet', 'Can I stop Lifomentin LB 500mg/125mg Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(13075, 'Lifomentin LB 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin LB 500mg/125mg Tablet', 'Can I take Lifomentin LB 500mg/125mg Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(13076, 'Lifomentin LB 500mg/125mg Tablet', 'Life Pharma', 'Lifomentin LB 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lifomentin LB 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13077, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Can other medicines be given at the same time as Lifomentin-CV Dry Syrup?', 'Lifomentin-CV Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifomentin-CV Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(13078, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Can I get my child vaccinated while on treatment with Lifomentin-CV Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(13079, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Which lab tests may my child undergo while taking Lifomentin-CV Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(13080, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Can I give a higher than the recommended dose of Lifomentin-CV Dry Syrup to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(13081, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Can I stop giving Lifomentin-CV Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(13082, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Can the use of Lifomentin-CV Dry Syrup cause diarrhea?', 'Yes, Lifomentin-CV Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(13083, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(13084, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(13085, 'Lifomentin-CV Dry Syrup', 'Life Pharma', 'Lifomentin-CV Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(13086, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'What is Lifonerv 75mg/10mg/1500mcg Tablet?', 'Lifonerv 75mg/10mg/1500mcg Tablet is a combination of three medicines: Gabapentin, Nortriptyline and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). This medicine calms the damaged or overactive nerves by acting on brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(13087, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Can I stop taking Lifonerv 75mg/10mg/1500mcg Tablet when my pain is relieved?', 'No, you should not stop taking Lifonerv 75mg/10mg/1500mcg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lifonerv 75mg/10mg/1500mcg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.'),
(13088, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'How to manage weight gain associated with the use of Lifonerv 75mg/10mg/1500mcg Tablet?', 'Lifonerv 75mg/10mg/1500mcg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(13089, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Can the use of Lifonerv 75mg/10mg/1500mcg Tablet cause sleepiness or drowsiness?', 'Yes, Lifonerv 75mg/10mg/1500mcg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(13090, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Can the use of Lifonerv 75mg/10mg/1500mcg Tablet affect my sexual life?', 'The use of Lifonerv 75mg/10mg/1500mcg Tablet can affect the sexual life of both men and women. Most commonly observed problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Lifonerv 75mg/10mg/1500mcg Tablet.'),
(13091, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Are there any serious side effects associated with the use of Lifonerv 75mg/10mg/1500mcg Tablet?', 'Serious side effects because of Lifonerv 75mg/10mg/1500mcg Tablet are uncommon and rare. Consult your doctor if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(13092, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'How long will Lifonerv 75mg/10mg/1500mcg Tablet take to act?', 'An initial benefit with Lifonerv 75mg/10mg/1500mcg Tablet may be seen after 2 weeks of the treatment. However, it may take around 2-3 months or more to see full benefits and even.'),
(13093, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'What if I forget to take Lifonerv 75mg/10mg/1500mcg Tablet?', 'If you forget to take the scheduled dose of Lifonerv 75mg/10mg/1500mcg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect. If you are not sure what to do, consult your about how to manage a situation like this.'),
(13094, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Symptoms of an overdose may include drowsiness, weakness, unsteadiness while walking, having double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(13095, 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Oxirich Healthcare Pvt Ltd', 'Lifonerv 75mg/10mg/1500mcg Tablet', 'Will a higher than the recommended dose of Lifonerv 75mg/10mg/1500mcg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13096, 'Lifoni 300mg Tablet', 'Curis Lifecare', 'Lifoni 300mg Tablet', 'How quickly does Lifoni 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lifoni 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lifoni 300mg Tablet. Do not stop taking Lifoni 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(13097, 'Lifoni 300mg Tablet', 'Curis Lifecare', 'Lifoni 300mg Tablet', 'Does Lifoni 300mg Tablet make you sleepy?', 'Yes, Lifoni 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(13098, 'Lifoni 300mg Tablet', 'Curis Lifecare', 'Lifoni 300mg Tablet', 'Is Lifoni 300mg Tablet bad for kidneys?', 'Yes, Lifoni 300mg Tablet may cause kidney problems. Lifoni 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lifoni 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lifoni 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13099, 'Lifoni 300mg Tablet', 'Curis Lifecare', 'Lifoni 300mg Tablet', 'Can Lifoni 300mg Tablet cause gain in weight?', 'Lifoni 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lifoni 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lifoni 300mg Tablet or some other reason.'),
(13100, 'Lifoni 300mg Tablet', 'Curis Lifecare', 'Lifoni 300mg Tablet', 'What is the most important information I should know about Lifoni 300mg Tablet?', 'Lifoni 300mg Tablet therapy should only be started if adequate facilities for assessing Lifoni 300mg Tablet levels are available. This is because Lifoni 300mg Tablet toxicity is related to increased levels of Lifoni 300mg Tablet in blood. Lifoni 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lifoni 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(13101, 'Lifoni 300mg Tablet', 'Curis Lifecare', 'Lifoni 300mg Tablet', 'How should Lifoni 300mg Tablet be taken?', 'Take Lifoni 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lifoni 300mg Tablet levels.'),
(13102, 'Lifoni 300mg Tablet', 'Curis Lifecare', 'Lifoni 300mg Tablet', 'Which medicines decrease Lifoni 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lifoni 300mg Tablet since many medicines interfere with the working of Lifoni 300mg Tablet. Some medicines decrease the levels of Lifoni 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(13103, 'Lifoni 400mg Tablet', 'Curis Lifecare', 'Lifoni 400mg Tablet', 'How quickly does Lifoni 400mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lifoni 400mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lifoni 400mg Tablet. Do not stop taking Lifoni 400mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(13104, 'Lifoni 400mg Tablet', 'Curis Lifecare', 'Lifoni 400mg Tablet', 'Does Lifoni 400mg Tablet make you sleepy?', 'Yes, Lifoni 400mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(13105, 'Lifoni 400mg Tablet', 'Curis Lifecare', 'Lifoni 400mg Tablet', 'Is Lifoni 400mg Tablet bad for kidneys?', 'Yes, Lifoni 400mg Tablet may cause kidney problems. Lifoni 400mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lifoni 400mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lifoni 400mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(13106, 'Lifoni 400mg Tablet', 'Curis Lifecare', 'Lifoni 400mg Tablet', 'Can Lifoni 400mg Tablet cause gain in weight?', 'Lifoni 400mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lifoni 400mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lifoni 400mg Tablet or some other reason.'),
(13107, 'Lifoni 400mg Tablet', 'Curis Lifecare', 'Lifoni 400mg Tablet', 'What is the most important information I should know about Lifoni 400mg Tablet?', 'Lifoni 400mg Tablet therapy should only be started if adequate facilities for assessing Lifoni 400mg Tablet levels are available. This is because Lifoni 400mg Tablet toxicity is related to increased levels of Lifoni 400mg Tablet in blood. Lifoni 400mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lifoni 400mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(13108, 'Lifoni 400mg Tablet', 'Curis Lifecare', 'Lifoni 400mg Tablet', 'How should Lifoni 400mg Tablet be taken?', 'Take Lifoni 400mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lifoni 400mg Tablet levels.'),
(13109, 'Lifoni 400mg Tablet', 'Curis Lifecare', 'Lifoni 400mg Tablet', 'Which medicines decrease Lifoni 400mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lifoni 400mg Tablet since many medicines interfere with the working of Lifoni 400mg Tablet. Some medicines decrease the levels of Lifoni 400mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(13110, 'Lifoni 450mg Tablet SR', 'Curis Lifecare', 'Lifoni 450mg Tablet SR', 'How quickly does Lifoni 450mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lifoni 450mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lifoni 450mg Tablet SR. Do not stop taking Lifoni 450mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(13111, 'Lifoni 450mg Tablet SR', 'Curis Lifecare', 'Lifoni 450mg Tablet SR', 'Does Lifoni 450mg Tablet SR make you sleepy?', 'Yes, Lifoni 450mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(13112, 'Lifoni 450mg Tablet SR', 'Curis Lifecare', 'Lifoni 450mg Tablet SR', 'Is Lifoni 450mg Tablet SR bad for kidneys?', 'Yes, Lifoni 450mg Tablet SR may cause kidney problems. Lifoni 450mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lifoni 450mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lifoni 450mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(13113, 'Lifoni 450mg Tablet SR', 'Curis Lifecare', 'Lifoni 450mg Tablet SR', 'Can Lifoni 450mg Tablet SR cause gain in weight?', 'Lifoni 450mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lifoni 450mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lifoni 450mg Tablet SR or some other reason.'),
(13114, 'Lifoni 450mg Tablet SR', 'Curis Lifecare', 'Lifoni 450mg Tablet SR', 'What is the most important information I should know about Lifoni 450mg Tablet SR?', 'Lifoni 450mg Tablet SR therapy should only be started if adequate facilities for assessing Lifoni 450mg Tablet SR levels are available. This is because Lifoni 450mg Tablet SR toxicity is related to increased levels of Lifoni 450mg Tablet SR in blood. Lifoni 450mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lifoni 450mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(13115, 'Lifoni 450mg Tablet SR', 'Curis Lifecare', 'Lifoni 450mg Tablet SR', 'How should Lifoni 450mg Tablet SR be taken?', 'Take Lifoni 450mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lifoni 450mg Tablet SR levels.'),
(13116, 'Lifoni 450mg Tablet SR', 'Curis Lifecare', 'Lifoni 450mg Tablet SR', 'Which medicines decrease Lifoni 450mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lifoni 450mg Tablet SR since many medicines interfere with the working of Lifoni 450mg Tablet SR. Some medicines decrease the levels of Lifoni 450mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(13117, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'What is Lifopan-DSR Capsule?', 'Lifopan-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(13118, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'Is it safe to use Lifopan-DSR Capsule?', 'Lifopan-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(13119, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'Are there any specific contraindications associated with the use of Lifopan-DSR Capsule?', 'The use of Lifopan-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(13120, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'Can the use of Lifopan-DSR Capsule cause dry mouth?', 'Yes, the use of Lifopan-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(13121, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'Can the use of Lifopan-DSR Capsule cause diarrhea?', 'Yes, the use of Lifopan-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(13122, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'What are the instructions for storage and disposal of Lifopan-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13123, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'What is Lifopan-DSR Capsule price?', 'You can get Lifopan-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(13124, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'While taking Lifopan-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(13125, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'Can I take alcohol while taking Lifopan-DSR Capsule?', 'No, alcohol intake is not advised with Lifopan-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(13126, 'Lifopan-DSR Capsule', 'Life Pharma', 'Lifopan-DSR Capsule', 'Can I stop taking Lifopan-DSR Capsule if I feel better?', 'If you have been taking Lifopan-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(13127, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'What if I give too much of Lifopod-CV Tablet by mistake?', 'Lifopod-CV Tablet is safe and usually an extra dose of it would not do any harm. But since overdose increases the risk of side effects and may even worsen your child’s condition, you must speak to a doctor immediately if you think you have given too much of Lifopod-CV Tablet to your child.'),
(13128, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'Are there any possible serious side effects of Lifopod-CV Tablet?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(13129, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'Can other medicines be given at the same time as Lifopod-CV Tablet?', 'Lifopod-CV Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lifopod-CV Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(13130, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'Can I get my child vaccinated while on treatment with Lifopod-CV Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(13131, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'Which lab tests may my child undergo while taking Lifopod-CV Tablet on a long-term basis?', 'The doctor may keep a check on your child’s condition by prescribing kidney function tests and liver function tests periodically.'),
(13132, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'Can Lifopod-CV Tablet impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lifopod-CV Tablet may kill off the good bacteria along with the bad ones too, increasing the risk of developing other infections. In case your child develops diarrhea while on Lifopod-CV Tablet, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(13133, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'Can the use of Lifopod-CV Tablet cause diarrhea?', 'Yes, the use of Lifopod-CV Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13134, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'How long does Lifopod-CV Tablet takes to work?', 'Usually, Lifopod-CV Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(13135, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'What if I don\'t get better after using Lifopod-CV Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(13136, 'Lifopod-CV Tablet', 'Life Pharma', 'Lifopod-CV Tablet', 'Can I stop taking Lifopod-CV Tablet when I feel better?', 'No, do not stop taking Lifopod-CV Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13137, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'What is Liforab-DSR Capsule?', 'Liforab-DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(13138, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'What are the contraindications of Liforab-DSR Capsule?', 'The use of Liforab-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(13139, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'Can the use of Liforab-DSR Capsule cause dry mouth?', 'Yes, the use of Liforab-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(13140, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'Can the use of Liforab-DSR Capsule cause diarrhea?', 'Yes, the use of Liforab-DSR Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(13141, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'What is the recommended storage condition for Liforab-DSR Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13142, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'Is it safe to use Liforab-DSR Capsule?', 'Yes, Liforab-DSR Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(13143, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'What is the best time to take Liforab-DSR Capsule?', 'It is best to take Liforab-DSR Capsule before the first meal of the day or on an empty stomach.'),
(13144, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'Can the use of Liforab-DSR Capsule cause abnormal heartbeat?', 'Yes, the use of Liforab-DSR Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(13145, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'What is Liforab-DSR Capsule?', 'Liforab-DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(13146, 'Liforab-DSR Capsule', 'Life Pharma', 'Liforab-DSR Capsule', 'What are the contraindications of Liforab-DSR Capsule?', 'The use of Liforab-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(13147, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'Does Lifothis 5mg Tablet reset your cycle?', 'Yes, Lifothis 5mg Tablet may reset your cycle. It is usually given for about 10 days to help manage heavy periods. Usually, your periods will resume within 3 days after stopping the medication. Your body may correct itself after 3-4 cycles and your period cycle may resume as before.'),
(13148, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'Can you bleed while taking Lifothis 5mg Tablet?', 'Yes, Lifothis 5mg Tablet may cause breakthrough bleeding or spotting in some cases. This more likely occurs if the medicine is not taken as prescribed, such as taking lower than prescribed dose or not taking it 3 days before your periods start. It is, therefore, very important that you take Lifothis 5mg Tablet as prescribed.'),
(13149, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'How quickly does Lifothis 5mg Tablet stop bleeding?', 'Lifothis 5mg Tablet is advised to patients having heavy periods or prolonged periods. The usual dose is prescribed to be taken 3 times a day for 10 days. The bleeding will stop usually within 48 hours of taking it. However, consult your doctor if the bleeding continues.'),
(13150, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'Can I get pregnant while taking Lifothis 5mg Tablet?', 'Yes, you can get pregnant even if you are taking Lifothis 5mg Tablet. It is not a birth control pill. Therefore, you should use contraceptives or other birth control methods while you are on Lifothis 5mg Tablet. Consult the doctor if you have any other related concerns.'),
(13151, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'For how long do I need to take Lifothis 5mg Tablet?', 'The dose and the number of days for which you need to take Lifothis 5mg Tablet will depend on the condition for which you are being treated and how well the medicine works for that condition. For example, when taken for endometriosis it is usually prescribed once daily for 6  to 9 months or until breakthrough bleeding becomes bothersome. When Lifothis 5mg Tablet is used to bring on a normal cycle in women who have stopped menstruating, it is usually supposed to be taken once a day for 5 to 10 days during the second half of the planned menstrual cycle. Always take the medicine exactly as advised by your doctor.'),
(13152, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'What is Lifothis 5mg Tablet used for?', 'Lifothis 5mg Tablet is similar to the progesterone hormone naturally produced by the body. It helps in treating a variety of menstrual problems, such as heavy bleeding, amenorrhea (absence of periods) and irregular periods. Additionally, it is helpful in treating premenstrual syndrome where one experiences irritability, bloating, fatigue which  occurs a few days before the period. Lifothis 5mg Tablet is also used to delay periods. Consult your doctor before starting Lifothis 5mg Tablet to avoid any complication.'),
(13153, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'How and in what dose should I take Lifothis 5mg Tablet?', 'For best results, take it strictly as per the advice of your doctor. The number of doses you take each day, and the number of days for which you take it depends on the medical problem being treated. However, it is recommended that you take it at the same time of each day. This will ensure consistent levels of medicine in your body.'),
(13154, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'What if I forget to take Lifothis 5mg Tablet?', 'If you forget a dose, take it as soon as you remember. You can continue taking the next scheduled tablets at their usual time. Do not take a double dose to make up for a forgotten dose. However, if you miss your dose often, you may experience frequent bleeding and spotting. Consult your doctor about it.'),
(13155, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'Does Lifothis 5mg Tablet cause miscarriage?', 'No, Lifothis 5mg Tablet has not been reported to cause miscarriage. However, it is advisable to consult your doctor before using any medicine during pregnancy.'),
(13156, 'Lifothis 5mg Tablet', 'Lifejoy Healthcare', 'Lifothis 5mg Tablet', 'Does Lifothis 5mg Tablet reset your cycle?', 'Yes, Lifothis 5mg Tablet may reset your cycle. It is usually given for about 10 days to help manage heavy periods. Usually, your periods will resume within 3 days after stopping the medication. Your body may correct itself after 3-4 cycles and your period cycle may resume as before.'),
(13157, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'What are the advantages of Lifotonin Tablet over other sleep agents?', 'The advantages of Lifotonin Tablet over other sleep agents include that this medicine does not make the patient develop tolerance (after some time of use of Lifotonin Tablet, it is no longer effective at the same dose). Unlike other similar hypnotic drugs, Lifotonin Tablet does not cause unwanted effects such as hangovers and physical dependence.'),
(13158, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'What are the natural ways to treat insomnia?', 'There are several natural ways which may help you treat your insomnia. These may include avoiding caffeine and nicotine, especially late in the day. While daily exercise is beneficial to sleep, avoid exercising four hours before bedtime. Avoiding large meals in the evening and avoiding taking naps can also help treat insomnia. You can try going to sleep and waking up at the same time each day. Try to maintain a comfortable temperature in your bedroom and make the bedroom as dark as possible. Setting aside a time to relax before bed and using relaxation techniques can also prove effective.'),
(13159, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Does Lifotonin Tablet cause weight gain?', 'Yes, it may cause weight gain, but it is uncommon. Consult your doctor if you are concerned about putting on weight after taking Lifotonin Tablet.'),
(13160, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Can I take Lifotonin Tablet every night?', 'Yes, you can take it every night but consult your doctor for the duration of treatment. If you are taking it for jet lag, you will be suggested to take a minimum effective dose for 5 days only. In other cases of insomnia, it can be taken for a little longer, for about 3 months.'),
(13161, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Does Lifotonin Tablet affect blood pressure?', 'Yes, Lifotonin Tablet may cause an increase in blood pressure though it is an uncommon side effect. Therefore, if you are hypertensive, keep a watch on your blood pressure during treatment with Lifotonin Tablet. Consult your doctor as soon as you notice a change in blood pressure.'),
(13162, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Can I take Lifotonin Tablet twice a day?', 'Usually Lifotonin Tablet is taken once a day, before going to bed. Take it exactly as prescribed by your doctor. Lifotonin Tablet is a natural hormone produced by the body which peaks to its highest levels at night.'),
(13163, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Can Lifotonin Tablet cause palpitations?', 'Yes, Lifotonin Tablet can cause palpitations but only rarely. If you have any concerns regarding palpitations, consult your doctor.'),
(13164, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Can Lifotonin Tablet cause withdrawal symptoms?', 'No, unlike other medicines used to help people fall asleep, Lifotonin Tablet does not cause withdrawal symptoms.'),
(13165, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Can Lifotonin Tablet cause abnormal dreams? If yes, then why does it happen?', 'Abnormal dreams is an uncommon side effect of Lifotonin Tablet. The reason for abnormal dreams is not known, but Lifotonin Tablet increases duration of rapid eye movement (REM) sleep. This phase of sleep is usually associated with dreams. This increase in duration of REM could be the reason for abnormal dreams that occur while taking Lifotonin Tablet.'),
(13166, 'Lifotonin Tablet', 'LifeSurge BioSciences Pvt Ltd', 'Lifotonin Tablet', 'Can Lifotonin Tablet be used for jet lag?', 'Yes, Lifotonin Tablet tablets can be used for treatment of jet-lag in adults. The biological day and night rhythm can be disturbed by travelling to countries lying in different time zones. This is known as jet-lag. The symptoms and their severity vary from person to person, but are generally worse and last longer the more time zones are crossed. Lifotonin Tablet tablets can help restore the normal day-and-night rhythm and reduce the symptoms.'),
(13167, 'Lifox 500mg Tablet', 'Will Impex', 'Lifox 500mg Tablet', 'Is Lifox 500mg Tablet safe?', 'Lifox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13168, 'Lifox 500mg Tablet', 'Will Impex', 'Lifox 500mg Tablet', 'What if I forget to take a dose of Lifox 500mg Tablet?', 'If you forget a dose of Lifox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13169, 'Lifox 500mg Tablet', 'Will Impex', 'Lifox 500mg Tablet', 'Can the use of Lifox 500mg Tablet cause diarrhea?', 'Yes, the use of Lifox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13170, 'Lifox 500mg Tablet', 'Will Impex', 'Lifox 500mg Tablet', 'Can I stop taking Lifox 500mg Tablet when I feel better?', 'No, do not stop taking Lifox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lifox 500mg Tablet in the dose and duration advised by the doctor.'),
(13171, 'Lifox 500mg Tablet', 'Will Impex', 'Lifox 500mg Tablet', 'Can the use of Lifox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lifox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13172, 'Lifoxa 200 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa 200 Tablet', 'Can the use of Lifoxa 200 Tablet cause diarrhea?', 'Yes, the use of Lifoxa 200 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13173, 'Lifoxa 200 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa 200 Tablet', 'Can I stop taking Lifoxa 200 Tablet when I feel better?', 'No, do not stop taking Lifoxa 200 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13174, 'Lifoxa 200 Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa 200 Tablet', 'Can the use of Lifoxa 200 Tablet increase the risk of muscle damage?', 'Yes, use of Lifoxa 200 Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lifoxa 200 Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13175, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'What is Lifoxa-OZ Tablet?', 'Lifoxa-OZ Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(13176, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'Is it safe to use Lifoxa-OZ Tablet?', 'Lifoxa-OZ Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(13177, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'Are there any specific contraindications associated with the use of Lifoxa-OZ Tablet?', 'The use of Lifoxa-OZ Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(13178, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lifoxa-OZ Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13179, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'What if I don\'t get better after using Lifoxa-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(13180, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'Can I stop taking Lifoxa-OZ Tablet when I feel better?', 'No, do not stop taking Lifoxa-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(13181, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'What if I miss my dose?', 'Take Lifoxa-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(13182, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'Can I take alcohol while on Lifoxa-OZ Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lifoxa-OZ Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(13183, 'Lifoxa-OZ Tablet', 'Lifeline Antidotes Pvt. Ltd.', 'Lifoxa-OZ Tablet', 'What are the instructions for the storage and disposal of Lifoxa-OZ Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13184, 'Lifoxid 250mg Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Lifoxid 250mg Tablet', 'Is Lifoxid 250mg Tablet safe?', 'Lifoxid 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13185, 'Lifoxid 250mg Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Lifoxid 250mg Tablet', 'What if I forget to take a dose of Lifoxid 250mg Tablet?', 'If you forget a dose of Lifoxid 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13186, 'Lifoxid 250mg Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Lifoxid 250mg Tablet', 'Can the use of Lifoxid 250mg Tablet cause diarrhea?', 'Yes, the use of Lifoxid 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13187, 'Lifoxid 250mg Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Lifoxid 250mg Tablet', 'Can I stop taking Lifoxid 250mg Tablet when I feel better?', 'No, do not stop taking Lifoxid 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifoxid 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lifoxid 250mg Tablet in the dose and duration advised by the doctor.'),
(13188, 'Lifoxid 250mg Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Lifoxid 250mg Tablet', 'Can the use of Lifoxid 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lifoxid 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifoxid 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13189, 'Lifozepam 0.25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 0.25mg Tablet', 'Q. Is Lifozepam 0.25mg Tablet a sleeping pill?', 'Lifozepam 0.25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(13190, 'Lifozepam 0.25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 0.25mg Tablet', 'Q. Does Lifozepam 0.25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lifozepam 0.25mg Tablet?', 'Yes, Lifozepam 0.25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lifozepam 0.25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(13191, 'Lifozepam 0.25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 0.25mg Tablet', 'Q. For how long should I take Lifozepam 0.25mg Tablet?', 'The duration of treatment with Lifozepam 0.25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(13192, 'Lifozepam 0.25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 0.25mg Tablet', 'Q. Is it safe to take Lifozepam 0.25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lifozepam 0.25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lifozepam 0.25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(13193, 'Lifozepam 0.25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 0.25mg Tablet', 'Q. Is Lifozepam 0.25mg Tablet addictive?', 'People taking Lifozepam 0.25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lifozepam 0.25mg Tablet. Therefore, Lifozepam 0.25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(13194, 'Lifozepam 0.25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 0.25mg Tablet', 'Q. Can I stop taking Lifozepam 0.25mg Tablet if I start feeling better?', 'No, do not stop taking Lifozepam 0.25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(13195, 'Lifozepam 0.25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 0.25mg Tablet', 'Q. Are there any foods we need to avoid while taking Lifozepam 0.25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lifozepam 0.25mg Tablet. This is because caffeine stimulates your brain and Lifozepam 0.25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lifozepam 0.25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lifozepam 0.25mg Tablet.'),
(13196, 'Lifozepam 25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 25mg Tablet', 'Is Lifozepam 25mg Tablet a sleeping pill?', 'Lifozepam 25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(13197, 'Lifozepam 25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 25mg Tablet', 'Does Lifozepam 25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lifozepam 25mg Tablet?', 'Yes, Lifozepam 25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lifozepam 25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(13198, 'Lifozepam 25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 25mg Tablet', 'For how long should I take Lifozepam 25mg Tablet?', 'The duration of treatment with Lifozepam 25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(13199, 'Lifozepam 25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 25mg Tablet', 'Is it safe to take Lifozepam 25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lifozepam 25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lifozepam 25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(13200, 'Lifozepam 25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 25mg Tablet', 'Is Lifozepam 25mg Tablet addictive?', 'People taking Lifozepam 25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lifozepam 25mg Tablet. Therefore, Lifozepam 25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(13201, 'Lifozepam 25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 25mg Tablet', 'Can I stop taking Lifozepam 25mg Tablet if I start feeling better?', 'No, do not stop taking Lifozepam 25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(13202, 'Lifozepam 25mg Tablet', 'Lifejoy Healthcare', 'Lifozepam 25mg Tablet', 'Are there any foods we need to avoid while taking Lifozepam 25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lifozepam 25mg Tablet. This is because caffeine stimulates your brain and Lifozepam 25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lifozepam 25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lifozepam 25mg Tablet.'),
(13203, 'Lifren 10mg Tablet', 'Astonea Labs Private Limited', 'Lifren 10mg Tablet', 'Does Lifren 10mg Tablet start working right away?', 'Lifren 10mg Tablet may start showing improvement in symptoms of overactive bladder within a week. However, it may take up to 4 weeks to show maximum benefits. This may vary from person to person. Do not stop taking it even if considerable improvement is not observed, but consult with the doctor.'),
(13204, 'Lifren 10mg Tablet', 'Astonea Labs Private Limited', 'Lifren 10mg Tablet', 'When should Lifren 10mg Tablet be taken?', 'Lifren 10mg Tablet should be taken exactly as prescribed by your doctor. Generally, it is recommended that the medicine should be taken once daily, preferably at the same time. It can be taken with or without food.'),
(13205, 'Lifren 10mg Tablet', 'Astonea Labs Private Limited', 'Lifren 10mg Tablet', 'Can Lifren 10mg Tablet be taken by anyone?', 'Lifren 10mg Tablet is to be prescribed by the doctor only. This medicine is meant for adults. Its consumption should be avoided by patients who are allergic to Lifren 10mg Tablet, who are unable to empty their bladder (urinary retention), have delayed or slow emptying of the stomach (gastric obstruction), or have increased pressure in eyes with vision problems (narrow angle glaucoma).'),
(13206, 'Lifren 10mg Tablet', 'Astonea Labs Private Limited', 'Lifren 10mg Tablet', 'Does Lifren 10mg Tablet cause dementia?', 'In rare cases, Lifren 10mg Tablet may cause confusion and hallucinations (seeing things or hearing voices that do not exist) as side effects. It may also cause delirium in very few people (disturbed state of mind characterized by restlessness, illusions, and incoherence). Though there are studies which support that Lifren 10mg Tablet may cause dementia, it is still to be confirmed.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13207, 'Lifren 10mg Tablet', 'Astonea Labs Private Limited', 'Lifren 10mg Tablet', 'What should I avoid while on Lifren 10mg Tablet?', 'You should avoid driving or operating heavy machinery if you experience drowsiness or blurred vision while taking Lifren 10mg Tablet, as it can be dangerous.'),
(13208, 'Lifren 10mg Tablet', 'Astonea Labs Private Limited', 'Lifren 10mg Tablet', 'What is overactive bladder?', 'Overactive bladder is a condition where the nerve signals coming from the brain directs your bladder to empty even when it is not full. Consequently, this may affect a person’s ability to control bladder contractions. Rapid uncontrollable contractions cause symptoms of overactive bladder which are urinary frequency, urinary urgency, and urinary incontinence (leakage).'),
(13209, 'Lifren 10mg Tablet', 'Astonea Labs Private Limited', 'Lifren 10mg Tablet', 'Do I need to take Lifren 10mg Tablet everyday?', 'Yes, Lifren 10mg Tablet needs to be taken once daily as advised by your doctor. You should not take it only when the symptoms are bothersome as it will not work properly. Furthermore, if you forget to take a dose, continue taking it next day as per the prescribed schedule. Additionally, it is advised to not take 2 doses on the same day.'),
(13210, 'Lifren 5mg Tablet', 'Astonea Labs Private Limited', 'Lifren 5mg Tablet', 'Q. Does Lifren 5mg Tablet start working right away?', 'Lifren 5mg Tablet may start showing improvement in symptoms of overactive bladder within a week. However, it may take up to 4 weeks to show maximum benefits. This may vary from person to person. Do not stop taking it even if considerable improvement is not observed, but consult with the doctor.'),
(13211, 'Lifren 5mg Tablet', 'Astonea Labs Private Limited', 'Lifren 5mg Tablet', 'Q. When should Lifren 5mg Tablet be taken?', 'Lifren 5mg Tablet should be taken exactly as prescribed by your doctor. Generally, it is recommended that the medicine should be taken once daily, preferably at the same time. It can be taken with or without food.'),
(13212, 'Lifren 5mg Tablet', 'Astonea Labs Private Limited', 'Lifren 5mg Tablet', 'Q. Can Lifren 5mg Tablet be taken by anyone?', 'Lifren 5mg Tablet is to be prescribed by the doctor only. This medicine is meant for adults. Its consumption should be avoided by patients who are allergic to Lifren 5mg Tablet, who are unable to empty their bladder (urinary retention), have delayed or slow emptying of the stomach (gastric obstruction), or have increased pressure in eyes with vision problems (narrow angle glaucoma).'),
(13213, 'Lifren 5mg Tablet', 'Astonea Labs Private Limited', 'Lifren 5mg Tablet', 'Q. Does Lifren 5mg Tablet cause dementia?', 'In rare cases, Lifren 5mg Tablet may cause confusion and hallucinations (seeing things or hearing voices that do not exist) as side effects. It may also cause delirium in very few people (disturbed state of mind characterized by restlessness, illusions, and incoherence). Though there are studies which support that Lifren 5mg Tablet may cause dementia, it is still to be confirmed.'),
(13214, 'Lifren 5mg Tablet', 'Astonea Labs Private Limited', 'Lifren 5mg Tablet', 'Q. What should I avoid while on Lifren 5mg Tablet?', 'You should avoid driving or operating heavy machinery if you experience drowsiness or blurred vision while taking Lifren 5mg Tablet, as it can be dangerous.'),
(13215, 'Lifren 5mg Tablet', 'Astonea Labs Private Limited', 'Lifren 5mg Tablet', 'Q. What is overactive bladder?', 'Overactive bladder is a condition where the nerve signals coming from the brain directs your bladder to empty even when it is not full. Consequently, this may affect a person’s ability to control bladder contractions. Rapid uncontrollable contractions cause symptoms of overactive bladder which are urinary frequency, urinary urgency, and urinary incontinence (leakage).'),
(13216, 'Lifren 5mg Tablet', 'Astonea Labs Private Limited', 'Lifren 5mg Tablet', 'Q. Do I need to take Lifren 5mg Tablet everyday?', 'Yes, Lifren 5mg Tablet needs to be taken once daily as advised by your doctor. You should not take it only when the symptoms are bothersome as it will not work properly. Furthermore, if you forget to take a dose, continue taking it next day as per the prescribed schedule. Additionally, it is advised to not take 2 doses on the same day.'),
(13217, 'Lifross 500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifross 500mg Tablet', 'Is Lifross 500mg Tablet safe?', 'Lifross 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13218, 'Lifross 500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifross 500mg Tablet', 'What if I forget to take a dose of Lifross 500mg Tablet?', 'If you forget a dose of Lifross 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13219, 'Lifross 500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifross 500mg Tablet', 'Can the use of Lifross 500mg Tablet cause diarrhea?', 'Yes, the use of Lifross 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13220, 'Lifross 500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifross 500mg Tablet', 'Can I stop taking Lifross 500mg Tablet when I feel better?', 'No, do not stop taking Lifross 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lifross 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lifross 500mg Tablet in the dose and duration advised by the doctor.'),
(13221, 'Lifross 500mg Tablet', 'Hazecure Pharma Pvt Ltd', 'Lifross 500mg Tablet', 'Can the use of Lifross 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lifross 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lifross 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13222, 'Lift 100mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 100mg Tablet', 'Is Lift 100mg Tablet safe?', 'Lift 100mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13223, 'Lift 100mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 100mg Tablet', 'What if I forget to take a dose of Lift 100mg Tablet?', 'If you forget a dose of Lift 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13224, 'Lift 100mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 100mg Tablet', 'Can the use of Lift 100mg Tablet cause diarrhea?', 'Yes, the use of Lift 100mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13225, 'Lift 100mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 100mg Tablet', 'Can I stop taking Lift 100mg Tablet when I feel better?', 'No, do not stop taking Lift 100mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 100mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 100mg Tablet in the dose and duration advised by the doctor.'),
(13226, 'Lift 100mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 100mg Tablet', 'Can the use of Lift 100mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 100mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 100mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13227, 'Lift 250mg Tablet', 'Carewell Healthcare', 'Lift 250mg Tablet (Carewell Healthcare)', 'Q. Is Lift 250mg Tablet safe?', 'Lift 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13228, 'Lift 250mg Tablet', 'Carewell Healthcare', 'Lift 250mg Tablet (Carewell Healthcare)', 'Q. What if I forget to take a dose of Lift 250mg Tablet?', 'If you forget a dose of Lift 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13229, 'Lift 250mg Tablet', 'Carewell Healthcare', 'Lift 250mg Tablet (Carewell Healthcare)', 'Q. Can the use of Lift 250mg Tablet cause diarrhea?', 'Yes, the use of Lift 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13230, 'Lift 250mg Tablet', 'Carewell Healthcare', 'Lift 250mg Tablet (Carewell Healthcare)', 'Q. Can I stop taking Lift 250mg Tablet when I feel better?', 'No, do not stop taking Lift 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 250mg Tablet in the dose and duration advised by the doctor.'),
(13231, 'Lift 250mg Tablet', 'Carewell Healthcare', 'Lift 250mg Tablet (Carewell Healthcare)', 'Q. Can the use of Lift 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13232, 'Lift 250mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Is Lift 250mg Tablet safe?', 'Lift 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13233, 'Lift 250mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'What if I forget to take a dose of Lift 250mg Tablet?', 'If you forget a dose of Lift 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13234, 'Lift 250mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Can the use of Lift 250mg Tablet cause diarrhea?', 'Yes, the use of Lift 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13235, 'Lift 250mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Can I stop taking Lift 250mg Tablet when I feel better?', 'No, do not stop taking Lift 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 250mg Tablet in the dose and duration advised by the doctor.'),
(13236, 'Lift 250mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Can the use of Lift 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13237, 'Lift 250mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aarpik Pharmaceuticals Pvt Ltd)', 'Is Lift 250mg Tablet safe?', 'Lift 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13238, 'Lift 250mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aarpik Pharmaceuticals Pvt Ltd)', 'What if I forget to take a dose of Lift 250mg Tablet?', 'If you forget a dose of Lift 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13239, 'Lift 250mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aarpik Pharmaceuticals Pvt Ltd)', 'Can the use of Lift 250mg Tablet cause diarrhea?', 'Yes, the use of Lift 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13240, 'Lift 250mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aarpik Pharmaceuticals Pvt Ltd)', 'Can I stop taking Lift 250mg Tablet when I feel better?', 'No, do not stop taking Lift 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 250mg Tablet in the dose and duration advised by the doctor.'),
(13241, 'Lift 250mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 250mg Tablet (Aarpik Pharmaceuticals Pvt Ltd)', 'Can the use of Lift 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13242, 'Lift 500mg Tablet', 'Carewell Healthcare', 'Lift 500mg Tablet (Carewell Healthcare)', 'Q. Is Lift 500mg Tablet safe?', 'Lift 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13243, 'Lift 500mg Tablet', 'Carewell Healthcare', 'Lift 500mg Tablet (Carewell Healthcare)', 'Q. What if I forget to take a dose of Lift 500mg Tablet?', 'If you forget a dose of Lift 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13244, 'Lift 500mg Tablet', 'Carewell Healthcare', 'Lift 500mg Tablet (Carewell Healthcare)', 'Q. Can the use of Lift 500mg Tablet cause diarrhea?', 'Yes, the use of Lift 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13245, 'Lift 500mg Tablet', 'Carewell Healthcare', 'Lift 500mg Tablet (Carewell Healthcare)', 'Q. Can I stop taking Lift 500mg Tablet when I feel better?', 'No, do not stop taking Lift 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 500mg Tablet in the dose and duration advised by the doctor.'),
(13246, 'Lift 500mg Tablet', 'Carewell Healthcare', 'Lift 500mg Tablet (Carewell Healthcare)', 'Q. Can the use of Lift 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13247, 'Lift 500mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 500mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Is Lift 500mg Tablet safe?', 'Lift 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13248, 'Lift 500mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 500mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'What if I forget to take a dose of Lift 500mg Tablet?', 'If you forget a dose of Lift 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13249, 'Lift 500mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 500mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Can the use of Lift 500mg Tablet cause diarrhea?', 'Yes, the use of Lift 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13250, 'Lift 500mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 500mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Can I stop taking Lift 500mg Tablet when I feel better?', 'No, do not stop taking Lift 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 500mg Tablet in the dose and duration advised by the doctor.'),
(13251, 'Lift 500mg Tablet', 'Aaron Pharmaceuticals Pvt Ltd', 'Lift 500mg Tablet (Aaron Pharmaceuticals Pvt Ltd)', 'Can the use of Lift 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13252, 'Lift 50mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 50mg Tablet', 'Is Lift 50mg Tablet safe?', 'Lift 50mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13253, 'Lift 50mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 50mg Tablet', 'What if I forget to take a dose of Lift 50mg Tablet?', 'If you forget a dose of Lift 50mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13254, 'Lift 50mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 50mg Tablet', 'Can the use of Lift 50mg Tablet cause diarrhea?', 'Yes, the use of Lift 50mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13255, 'Lift 50mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 50mg Tablet', 'Can I stop taking Lift 50mg Tablet when I feel better?', 'No, do not stop taking Lift 50mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 50mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 50mg Tablet in the dose and duration advised by the doctor.'),
(13256, 'Lift 50mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lift 50mg Tablet', 'Can the use of Lift 50mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 50mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 50mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13257, 'Lift 750mg Tablet', 'Carewell Healthcare', 'Lift 750mg Tablet', 'Is Lift 750mg Tablet safe?', 'Lift 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13258, 'Lift 750mg Tablet', 'Carewell Healthcare', 'Lift 750mg Tablet', 'What if I forget to take a dose of Lift 750mg Tablet?', 'If you forget a dose of Lift 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13259, 'Lift 750mg Tablet', 'Carewell Healthcare', 'Lift 750mg Tablet', 'Can the use of Lift 750mg Tablet cause diarrhea?', 'Yes, the use of Lift 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13260, 'Lift 750mg Tablet', 'Carewell Healthcare', 'Lift 750mg Tablet', 'Can I stop taking Lift 750mg Tablet when I feel better?', 'No, do not stop taking Lift 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lift 750mg Tablet too early, the symptoms may return or worsen. Continue taking Lift 750mg Tablet in the dose and duration advised by the doctor.'),
(13261, 'Lift 750mg Tablet', 'Carewell Healthcare', 'Lift 750mg Tablet', 'Can the use of Lift 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lift 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lift 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13262, 'Lift Activ Serum', 'Vichy Laboratories', 'Lift Activ Serum', 'Is Lift Activ Serum natural?', 'Lift Activ Serum is found naturally in human body especially in fluids of bone joints (synovial fluid), eyes and other tissues. The medication Lift Activ Serum is a chemical derivative of the naturally occurring form.'),
(13263, 'Lift Activ Serum', 'Vichy Laboratories', 'Lift Activ Serum', 'Does Lift Activ Serum help wrinkles?', 'Lift Activ Serum may be used as skin fillers to treat wrinkles. Always consult and follow your doctor\'s advice regarding use'),
(13264, 'Liftaz 250mg/125mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 250mg/125mg Injection', 'Can the use of Liftaz 250mg/125mg Injection cause allergic reaction?', 'Yes, Liftaz 250mg/125mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(13265, 'Liftaz 250mg/125mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 250mg/125mg Injection', 'Can the use of Liftaz 250mg/125mg Injection cause diarrhea?', 'Yes, the use of Liftaz 250mg/125mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13266, 'Liftaz 250mg/125mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 250mg/125mg Injection', 'How long does Liftaz 250mg/125mg Injection takes to work?', 'Usually, Liftaz 250mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(13267, 'Liftaz 250mg/125mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 250mg/125mg Injection', 'What if I don\'t get better after using Liftaz 250mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(13268, 'Liftaz 250mg/125mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 250mg/125mg Injection', 'Can I stop taking Liftaz 250mg/125mg Injection when I feel better?', 'No, do not stop taking Liftaz 250mg/125mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13269, 'Liftaz 500mg/250mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 500mg/250mg Injection', 'Can the use of Liftaz 500mg/250mg Injection cause allergic reaction?', 'Yes, Liftaz 500mg/250mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(13270, 'Liftaz 500mg/250mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 500mg/250mg Injection', 'Can the use of Liftaz 500mg/250mg Injection cause diarrhea?', 'Yes, the use of Liftaz 500mg/250mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13271, 'Liftaz 500mg/250mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 500mg/250mg Injection', 'How long does Liftaz 500mg/250mg Injection takes to work?', 'Usually, Liftaz 500mg/250mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(13272, 'Liftaz 500mg/250mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 500mg/250mg Injection', 'What if I don\'t get better after using Liftaz 500mg/250mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(13273, 'Liftaz 500mg/250mg Injection', 'Emcure Pharmaceuticals Ltd', 'Liftaz 500mg/250mg Injection', 'Can I stop taking Liftaz 500mg/250mg Injection when I feel better?', 'No, do not stop taking Liftaz 500mg/250mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13274, 'Liftense 0.25mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.25mg Tablet', 'Is Liftense 0.25mg Tablet a sleeping pill?', 'Liftense 0.25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(13275, 'Liftense 0.25mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.25mg Tablet', 'Does Liftense 0.25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Liftense 0.25mg Tablet?', 'Yes, Liftense 0.25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Liftense 0.25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(13276, 'Liftense 0.25mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.25mg Tablet', 'For how long should I take Liftense 0.25mg Tablet?', 'The duration of treatment with Liftense 0.25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(13277, 'Liftense 0.25mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.25mg Tablet', 'Is it safe to take Liftense 0.25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Liftense 0.25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Liftense 0.25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(13278, 'Liftense 0.25mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.25mg Tablet', 'Is Liftense 0.25mg Tablet addictive?', 'People taking Liftense 0.25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Liftense 0.25mg Tablet. Therefore, Liftense 0.25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(13279, 'Liftense 0.25mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.25mg Tablet', 'Can I stop taking Liftense 0.25mg Tablet if I start feeling better?', 'No, do not stop taking Liftense 0.25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(13280, 'Liftense 0.25mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.25mg Tablet', 'Are there any foods we need to avoid while taking Liftense 0.25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Liftense 0.25mg Tablet. This is because caffeine stimulates your brain and Liftense 0.25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Liftense 0.25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Liftense 0.25mg Tablet.'),
(13281, 'Liftense 0.5mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.5mg Tablet', 'Is Liftense 0.5mg Tablet a sleeping pill?', 'Liftense 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(13282, 'Liftense 0.5mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.5mg Tablet', 'Does Liftense 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Liftense 0.5mg Tablet?', 'Yes, Liftense 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Liftense 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(13283, 'Liftense 0.5mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.5mg Tablet', 'For how long should I take Liftense 0.5mg Tablet?', 'The duration of treatment with Liftense 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(13284, 'Liftense 0.5mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.5mg Tablet', 'Is it safe to take Liftense 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Liftense 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Liftense 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(13285, 'Liftense 0.5mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.5mg Tablet', 'Is Liftense 0.5mg Tablet addictive?', 'People taking Liftense 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Liftense 0.5mg Tablet. Therefore, Liftense 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(13286, 'Liftense 0.5mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.5mg Tablet', 'Can I stop taking Liftense 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Liftense 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(13287, 'Liftense 0.5mg Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense 0.5mg Tablet', 'Are there any foods we need to avoid while taking Liftense 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Liftense 0.5mg Tablet. This is because caffeine stimulates your brain and Liftense 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Liftense 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Liftense 0.5mg Tablet.'),
(13288, 'Liftense Forte Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense Forte Tablet', 'What is Liftense Forte Tablet?', 'Liftense Forte Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(13289, 'Liftense Forte Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense Forte Tablet', 'Can the Liftense Forte Tablet cause sleepiness or drowsiness?', 'Liftense Forte Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(13290, 'Liftense Forte Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense Forte Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Liftense Forte Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13291, 'Liftense Forte Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense Forte Tablet', 'Any special instruction regarding storage and disposal of Liftense Forte Tablet?', 'Keep Liftense Forte Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(13292, 'Liftense Forte Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense Forte Tablet', 'Can I stop taking Liftense Forte Tablet when my symptoms are relieved?', 'No, you should not stop taking Liftense Forte Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(13293, 'Liftense MD 1 Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense MD 1 Tablet', 'Is Liftense MD 1 Tablet a sleeping pill?', 'Liftense MD 1 Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(13294, 'Liftense MD 1 Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense MD 1 Tablet', 'Does Liftense MD 1 Tablet cause sleepiness? If yes, then should I stop driving while taking Liftense MD 1 Tablet?', 'Yes, Liftense MD 1 Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Liftense MD 1 Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(13295, 'Liftense MD 1 Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense MD 1 Tablet', 'For how long should I take Liftense MD 1 Tablet?', 'The duration of treatment with Liftense MD 1 Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(13296, 'Liftense MD 1 Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense MD 1 Tablet', 'Is it safe to take Liftense MD 1 Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Liftense MD 1 Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Liftense MD 1 Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(13297, 'Liftense MD 1 Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense MD 1 Tablet', 'Is Liftense MD 1 Tablet addictive?', 'People taking Liftense MD 1 Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Liftense MD 1 Tablet. Therefore, Liftense MD 1 Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(13298, 'Liftense MD 1 Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense MD 1 Tablet', 'Can I stop taking Liftense MD 1 Tablet if I start feeling better?', 'No, do not stop taking Liftense MD 1 Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(13299, 'Liftense MD 1 Tablet', 'Ealpharm Life Sciences Pvt Ltd', 'Liftense MD 1 Tablet', 'Are there any foods we need to avoid while taking Liftense MD 1 Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Liftense MD 1 Tablet. This is because caffeine stimulates your brain and Liftense MD 1 Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Liftense MD 1 Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Liftense MD 1 Tablet.'),
(13300, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'How long can I take Liftofer IV 100 Injection for?', 'Liftofer IV 100 Injection is used to regulate hemoglobin levels in the human body. It is usually given to patients who have iron deficient anemia or iron deficiency. The doctor may suggest using this medicine till the hemoglobin level becomes normal. Do consult your doctor to understand the usage of this medicine properly.'),
(13301, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'Can I take Liftofer IV 100 Injection for anemia and iron deficiency?', 'Yes, Liftofer IV 100 Injection can be taken for iron deficiency anemia and iron deficiency. However, its use for other types of anemia is not recommended. Take Liftofer IV 100 Injection in the dose and duration advised by your doctor.'),
(13302, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'What types of food items should I take other than Liftofer IV 100 Injection?', 'You can consume food items that are rich in iron content (like red meat, pork, poultry and seafood). Other food items which contain rich iron content include beans, dark green leafy vegetables (like spinach), peas, dried fruit (raisins and apricots), iron-fortified cereals, breads and pastas. You can also try iron supplements (tablets or capsules) available at pharmacy stores for iron deficient anemia.'),
(13303, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'Can I take iron with vitamin C/ Vitamin D/ multivitamin/ folic acid?', 'Yes, iron and vitamin C/ Vitamin D/ multivitamin/ folic acid can be taken together. Taking vitamin C and iron together helps the body absorb the iron. However, it would be best to consult your doctor before using Liftofer IV 100 Injection with other medicines.'),
(13304, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'Can I take Liftofer IV 100 Injection with zinc?', 'No, Liftofer IV 100 Injection may alter the absorption of zinc, if given together. Therefore, it is advisable not to take Liftofer IV 100 Injection with zinc.'),
(13305, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'Can I take Liftofer IV 100 Injection with Tylenol?', 'Yes, you can take Tylenol (paracetamol) with iron. However, it is advised to always consult your doctor before taking any medicine to avoid any complexity.'),
(13306, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'Does Liftofer IV 100 Injection increase weight?', 'Yes, Liftofer IV 100 Injection can increase weight. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. You should consult your doctor if you need any further help to manage your weight.'),
(13307, 'Liftofer IV 100 Injection', 'Liftoken Healthcare Llp', 'Liftofer IV 100 Injection', 'Does Liftofer IV 100 Injection cause constipation or acne?', 'Yes, Liftofer IV 100 Injection may cause constipation or acne. Constipation and acne are among some of the most common side effects of Liftofer IV 100 Injection. Please consult your doctor if any of these side effects bother you.'),
(13308, 'Liftofit Capsule', 'Liftoken Healthcare Llp', 'Liftofit Capsule', 'What is Liftofit Capsule?', 'Liftofit Capsule is a dietary supplement taken to address nutritional deficiencies. It helps replenish essential nutrients that may be lacking in your diet. It supports immune function, enhances energy metabolism, protects against cellular damage through antioxidants, and promotes overall well-being.'),
(13309, 'Liftofit Capsule', 'Liftoken Healthcare Llp', 'Liftofit Capsule', 'How should I take Liftofit Capsule?', 'Take Liftofit Capsule as directed by your doctor or as instructed on the product label. It is generally recommended to take it with water, preferably after meals to improve absorption and reduce potential stomach discomfort.'),
(13310, 'Liftofit Capsule', 'Liftoken Healthcare Llp', 'Liftofit Capsule', 'Can I take Liftofit Capsule with other medications?', 'You may take Liftofit Capsule with other medicines but it is important to inform your doctor about any other medications or supplements, as it may interact with certain drugs. Your doctor can help you determine if it is safe to take them together.'),
(13311, 'Liftofit Capsule', 'Liftoken Healthcare Llp', 'Liftofit Capsule', 'Who should avoid taking Liftofit Capsule?', 'Individuals who are allergic to any of the ingredients should avoid Liftofit Capsule. Additionally, those with medical conditions such as kidney disease or iron overload disorders should consult their doctor before taking this medicine.'),
(13312, 'Liftofit Capsule', 'Liftoken Healthcare Llp', 'Liftofit Capsule', 'Is Liftofit Capsule safe during pregnancy or breastfeeding?', 'If you are pregnant, planning to become pregnant, or breastfeeding, consult your doctor before taking Liftofit Capsule to ensure it is safe for your situation.'),
(13313, 'Liftofit Capsule', 'Liftoken Healthcare Llp', 'Liftofit Capsule', 'How long can I take Liftofit Capsule?', 'The duration of use should be determined by your doctor based on your specific health needs and nutritional status. Follow their guidance for how long to continue taking the capsule.'),
(13314, 'Liftofit Capsule', 'Liftoken Healthcare Llp', 'Liftofit Capsule', 'How should I store Liftofit Capsule?', 'Store Liftofit Capsule in a cool, dry place, away from direct sunlight and out of reach of children to ensure its efficacy and safety.'),
(13315, 'Liftol Forte Tablet', 'Bion Therapeutics India Pvt Ltd', 'Liftol Forte Tablet', 'Q. What is Liftol Forte Tablet?', 'Liftol Forte Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13316, 'Liftol Forte Tablet', 'Bion Therapeutics India Pvt Ltd', 'Liftol Forte Tablet', 'Q. Can the Liftol Forte Tablet cause sleepiness or drowsiness?', 'Liftol Forte Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(13317, 'Liftol Forte Tablet', 'Bion Therapeutics India Pvt Ltd', 'Liftol Forte Tablet', 'Q. Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Liftol Forte Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13318, 'Liftol Forte Tablet', 'Bion Therapeutics India Pvt Ltd', 'Liftol Forte Tablet', 'Q. Any special instruction regarding storage and disposal of Liftol Forte Tablet?', 'Keep Liftol Forte Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(13319, 'Liftol Forte Tablet', 'Bion Therapeutics India Pvt Ltd', 'Liftol Forte Tablet', 'Q. Can I stop taking Liftol Forte Tablet when my symptoms are relieved?', 'No, you should not stop taking Liftol Forte Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(13320, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'How long does it take for Liftopram 10 Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Liftopram 10 Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(13321, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'What are the most common side effects of Liftopram 10 Tablet?', 'The most common side effects of Liftopram 10 Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Liftopram 10 Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(13322, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'What is Liftopram 10 Tablet used for?', 'Liftopram 10 Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(13323, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'Is Liftopram 10 Tablet dangerous?', 'The use of Liftopram 10 Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Liftopram 10 Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Liftopram 10 Tablet.'),
(13324, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'Is Liftopram 10 Tablet better taken at night or in the morning?', 'It is usually recommended to take Liftopram 10 Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(13325, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'Can I stop taking Liftopram 10 Tablet on my own?', 'Liftopram 10 Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(13326, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(13327, 'Liftopram 10 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 10 Tablet', 'What if I accidentally take more than the recommended dose of Liftopram 10 Tablet?', 'If you accidentally take more than the recommended dose of Liftopram 10 Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(13328, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'How long does it take for Liftopram 5 Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Liftopram 5 Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(13329, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'What are the most common side effects of Liftopram 5 Tablet?', 'The most common side effects of Liftopram 5 Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Liftopram 5 Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(13330, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'What is Liftopram 5 Tablet used for?', 'Liftopram 5 Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(13331, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'Is Liftopram 5 Tablet dangerous?', 'The use of Liftopram 5 Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Liftopram 5 Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Liftopram 5 Tablet.'),
(13332, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'Is Liftopram 5 Tablet better taken at night or in the morning?', 'It is usually recommended to take Liftopram 5 Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(13333, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'Can I stop taking Liftopram 5 Tablet on my own?', 'Liftopram 5 Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(13334, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(13335, 'Liftopram 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram 5 Tablet', 'What if I accidentally take more than the recommended dose of Liftopram 5 Tablet?', 'If you accidentally take more than the recommended dose of Liftopram 5 Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(13336, 'Liftopram EZ Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram EZ Tablet', 'What are the instructions for storage and disposal of Liftopram EZ Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13337, 'Liftopram EZ Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram EZ Tablet', 'Are there any important warnings associated with use of Liftopram EZ Tablet?', 'During the first few months of treatment, Liftopram EZ Tablet may increase suicidal thoughts or actions in some patient, in the first few months of treatment. Patients having mood or behavioral disorders have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(13338, 'Liftopram EZ Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram EZ Tablet', 'Can I stop taking Liftopram EZ Tablet when my symptoms are relieved?', 'No, you should continue to take Liftopram EZ Tablet, even if you feel well. If you stop Liftopram EZ Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(13339, 'Liftopram EZ Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram EZ Tablet', 'How to manage weight gain associated with the use of Liftopram EZ Tablet?', 'There are reports that suggest that the use of Liftopram EZ Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important point to remember is that it is easier to prevent weight gain than to lose increased weight.'),
(13340, 'Liftopram EZ Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram EZ Tablet', 'Can the use of Liftopram EZ Tablet cause sleepiness?', 'Yes, Liftopram EZ Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(13341, 'Liftopram EZ Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram EZ Tablet', 'Can I drink alcohol while taking Liftopram EZ Tablet?', 'No, do not drink alcohol while you are taking Liftopram EZ Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Liftopram EZ Tablet.'),
(13342, 'Liftopram LS Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram LS Tablet', 'What are the instructions for storage and disposal of Liftopram LS Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13343, 'Liftopram LS Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram LS Tablet', 'Are there any important warnings associated with use of Liftopram LS Tablet?', 'During the first few months of treatment, Liftopram LS Tablet may increase suicidal thoughts or actions in some patient, in the first few months of treatment. Patients having mood or behavioral disorders have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(13344, 'Liftopram LS Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram LS Tablet', 'Can I stop taking Liftopram LS Tablet when my symptoms are relieved?', 'No, you should continue to take Liftopram LS Tablet, even if you feel well. If you stop Liftopram LS Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(13345, 'Liftopram LS Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram LS Tablet', 'How to manage weight gain associated with the use of Liftopram LS Tablet?', 'There are reports that suggest that the use of Liftopram LS Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important point to remember is that it is easier to prevent weight gain than to lose increased weight.'),
(13346, 'Liftopram LS Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram LS Tablet', 'Can the use of Liftopram LS Tablet cause sleepiness?', 'Yes, Liftopram LS Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(13347, 'Liftopram LS Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram LS Tablet', 'Can I drink alcohol while taking Liftopram LS Tablet?', 'No, do not drink alcohol while you are taking Liftopram LS Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Liftopram LS Tablet.'),
(13348, 'Liftopram Plus 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram Plus 5 Tablet', 'What is Liftopram Plus 5 Tablet?', 'Liftopram Plus 5 Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(13349, 'Liftopram Plus 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram Plus 5 Tablet', 'Can the Liftopram Plus 5 Tablet cause sleepiness or drowsiness?', 'Liftopram Plus 5 Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(13350, 'Liftopram Plus 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram Plus 5 Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Liftopram Plus 5 Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13351, 'Liftopram Plus 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram Plus 5 Tablet', 'Any special instruction regarding storage and disposal of Liftopram Plus 5 Tablet?', 'Keep Liftopram Plus 5 Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(13352, 'Liftopram Plus 5 Tablet', 'Spansa Pharmaceuticals Pvt. Ltd.', 'Liftopram Plus 5 Tablet', 'Can I stop taking Liftopram Plus 5 Tablet when my symptoms are relieved?', 'No, you should not stop taking Liftopram Plus 5 Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(13353, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'What is Liftorab Capsule SR?', 'Liftorab Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(13354, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'What are the contraindications of Liftorab Capsule SR?', 'The use of Liftorab Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(13355, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'Can the use of Liftorab Capsule SR cause dry mouth?', 'Yes, the use of Liftorab Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(13356, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'Can the use of Liftorab Capsule SR cause diarrhea?', 'Yes, the use of Liftorab Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(13357, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'What is the recommended storage condition for Liftorab Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13358, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'Is it safe to use Liftorab Capsule SR?', 'Yes, Liftorab Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(13359, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'What is the best time to take Liftorab Capsule SR?', 'It is best to take Liftorab Capsule SR before the first meal of the day or on an empty stomach.'),
(13360, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'Can the use of Liftorab Capsule SR cause abnormal heartbeat?', 'Yes, the use of Liftorab Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(13361, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'What is Liftorab Capsule SR?', 'Liftorab Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(13362, 'Liftorab Capsule SR', 'Eco Med Remedies Pvt Ltd', 'Liftorab Capsule SR', 'What are the contraindications of Liftorab Capsule SR?', 'The use of Liftorab Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(13363, 'Liftovita Softgel Capsule', 'Liftoken Healthcare Llp', 'Liftovita Softgel Capsule', 'What is Liftovita Softgel Capsule?', 'Liftovita Softgel Capsule is a dietary supplement that contains a blend of essential nutrients. It supports immune function, enhances energy metabolism, protects cells from oxidative stress, and promotes healthy skin, and overall well-being.'),
(13364, 'Liftovita Softgel Capsule', 'Liftoken Healthcare Llp', 'Liftovita Softgel Capsule', 'How should I take Liftovita Softgel Capsule?', 'Take Liftovita Softgel Capsule as directed by your doctor or according to the product label. It is generally recommended to take it with a full glass of water, preferably after meals. This will enhance absorption and minimize potential gastrointestinal discomfort.'),
(13365, 'Liftovita Softgel Capsule', 'Liftoken Healthcare Llp', 'Liftovita Softgel Capsule', 'Can I take Liftovita Softgel Capsule with other medications?', 'Yes, but it is important to inform your doctor about any other medications or supplements you are taking. This helps to prevent potential interactions and ensures the safe use of the supplement.'),
(13366, 'Liftovita Softgel Capsule', 'Liftoken Healthcare Llp', 'Liftovita Softgel Capsule', 'Who should avoid taking Liftovita Softgel Capsule?', 'Individuals who are allergic to any of the ingredients should avoid Liftovita Softgel Capsule. Additionally, those with specific medical conditions, such as kidney disease or certain types of anemia, should consult their doctor before taking this medicine.'),
(13367, 'Liftovita Softgel Capsule', 'Liftoken Healthcare Llp', 'Liftovita Softgel Capsule', 'Is Liftovita Softgel Capsule safe during pregnancy or breastfeeding?', 'If you are pregnant, planning to become pregnant, or breastfeeding, consult your doctor before taking Liftovita Softgel Capsule to ensure it is safe for your specific health situation.'),
(13368, 'Liftovita Softgel Capsule', 'Liftoken Healthcare Llp', 'Liftovita Softgel Capsule', 'How long can I take Liftovita Softgel Capsule?', 'The duration of use will be determined by your doctor based on your health needs and nutritional status. Follow their recommendations for how long to continue taking the medicine.'),
(13369, 'Liftovita Softgel Capsule', 'Liftoken Healthcare Llp', 'Liftovita Softgel Capsule', 'How should I store Liftovita Softgel Capsule?', 'Store Liftovita Softgel Capsule in a cool, dry place, away from direct sunlight and out of reach of children to ensure its efficacy and safety.'),
(13370, 'Liftvell 2.5mg Tablet', 'Syndicate Life Sciences Pvt Ltd', 'Liftvell 2.5mg Tablet', 'Can the use of Liftvell 2.5mg Tablet affect fertility?', 'No, using Liftvell 2.5mg Tablet does not affect fertility. It works by relaxing the muscles of penile blood vessels and has no effect on fertility.'),
(13371, 'Liftvell 2.5mg Tablet', 'Syndicate Life Sciences Pvt Ltd', 'Liftvell 2.5mg Tablet', 'Do I need to avoid alcohol while taking Liftvell 2.5mg Tablet?', 'Alcohol in small amounts may not cause any discomfort to you. However, drinking too much alcohol (5 units or greater) can increase your chances of getting a headache or feeling dizzy, increased heart rate or low blood pressure.'),
(13372, 'Liftvell 2.5mg Tablet', 'Syndicate Life Sciences Pvt Ltd', 'Liftvell 2.5mg Tablet', 'Does Liftvell 2.5mg Tablet delay ejaculation?', 'No, Liftvell 2.5mg Tablet is not known to affect ejaculation. It is used for the treatment of erectile dysfunction.'),
(13373, 'Liftvell 2.5mg Tablet', 'Syndicate Life Sciences Pvt Ltd', 'Liftvell 2.5mg Tablet', 'What are the symptoms that should prompt me to discontinue Liftvell 2.5mg Tablet?', 'You should immediately consult your doctor if you experience sudden vision loss in one or both eyes, sudden decrease in hearing or hearing loss, ringing in ears and dizziness. Also, contact your doctor if you experience prolonged erections greater than 4 hours and painful erections greater than 6 hours in duration.'),
(13374, 'Liftvell 5mg Tablet', 'Syndicate Life Sciences Pvt Ltd', 'Liftvell 5mg Tablet', 'Can the use of Liftvell 5mg Tablet affect fertility?', 'No, using Liftvell 5mg Tablet does not affect fertility. It works by relaxing the muscles of penile blood vessels and has no effect on fertility.'),
(13375, 'Liftvell 5mg Tablet', 'Syndicate Life Sciences Pvt Ltd', 'Liftvell 5mg Tablet', 'Do I need to avoid alcohol while taking Liftvell 5mg Tablet?', 'Alcohol in small amounts may not cause any discomfort to you. However, drinking too much alcohol (5 units or greater) can increase your chances of getting a headache or feeling dizzy, increased heart rate or low blood pressure.'),
(13376, 'Liftvell 5mg Tablet', 'Syndicate Life Sciences Pvt Ltd', 'Liftvell 5mg Tablet', 'What are the symptoms that should prompt me to discontinue Liftvell 5mg Tablet?', 'You should immediately consult your doctor if you experience sudden vision loss in one or both eyes, sudden decrease in hearing or hearing loss, ringing in ears and dizziness. Also, contact your doctor if you experience prolonged erections greater than 4 hours and painful erections greater than 6 hours in duration.'),
(13377, 'Lify 500mg Tablet', 'Himalaya Meditek Pvt Ltd', 'Lify 500mg Tablet', 'Is Lify 500mg Tablet safe?', 'Lify 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13378, 'Lify 500mg Tablet', 'Himalaya Meditek Pvt Ltd', 'Lify 500mg Tablet', 'What if I forget to take a dose of Lify 500mg Tablet?', 'If you forget a dose of Lify 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13379, 'Lify 500mg Tablet', 'Himalaya Meditek Pvt Ltd', 'Lify 500mg Tablet', 'Can the use of Lify 500mg Tablet cause diarrhea?', 'Yes, the use of Lify 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13380, 'Lify 500mg Tablet', 'Himalaya Meditek Pvt Ltd', 'Lify 500mg Tablet', 'Can I stop taking Lify 500mg Tablet when I feel better?', 'No, do not stop taking Lify 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lify 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lify 500mg Tablet in the dose and duration advised by the doctor.'),
(13381, 'Lify 500mg Tablet', 'Himalaya Meditek Pvt Ltd', 'Lify 500mg Tablet', 'Can the use of Lify 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lify 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lify 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13382, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'What is Ligafen-MR Tablet?', 'Ligafen-MR Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(13383, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'Is it safe to use Ligafen-MR Tablet?', 'Ligafen-MR Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(13384, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'Can I stop taking Ligafen-MR Tablet when my pain is relieved?', 'Ligafen-MR Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(13385, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'Can the use of Ligafen-MR Tablet cause nausea and vomiting?', 'Yes, the use of Ligafen-MR Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13386, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'Can the use of Ligafen-MR Tablet cause dizziness?', 'Yes, the use of Ligafen-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(13387, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'Can the use of Ligafen-MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Ligafen-MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(13388, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Ligafen-MR Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13389, 'Ligafen-MR Tablet', 'Pluzine Healthcare', 'Ligafen-MR Tablet', 'What are the recommended storage conditions for Ligafen-MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13390, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'I have been prescribed Ligantin 100 Tablet for pain. When will I start feeling better?', 'It varies from person to person. Some people take about a week or two before noticing relief in pain. Whereas, some people may see an improvement straight away. It is recommended that you take Ligantin 100 Tablet only for nerve pain and as advised by your doctor.'),
(13391, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'I think I have gained weight since I started taking Ligantin 100 Tablet. Can this be because of Ligantin 100 Tablet?', 'Yes, Ligantin 100 Tablet may cause weight gain because it increases your hunger. Regular physical exercise and a balanced diet with low calorie food may help you maintain a stable weight. Consult a dietitian if you have any further concerns to keep your weight stable.'),
(13392, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'For how long do I need to take Ligantin 100 Tablet?', 'Your doctor will decide the duration of the treatment based on your condition and your response to the treatment. For instance, if you have been prescribed Ligantin 100 Tablet for epilepsy, you may have to take it for a long time, maybe years even if your seizures are controlled. Whereas, if you are taking it for nerve pain and it has relieved your pain, you may have to take it for several months only.'),
(13393, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'What are the serious side effects that may occur while taking Ligantin 100 Tablet?', 'Taking Ligantin 100 Tablet may cause yellowing of the skin or eyes (warning signs of jaundice), trouble in breathing or talking and tightness in chest or throat (suggestive of serious allergic skin reactions). It may provoke suicidal thoughts and cause unusual bruises or bleeding which may be due to blood disorder. Other serious side effects may include muscle weakness and pain, fever which could lead to kidney failure, long-lasting stomach pain, nausea and vomiting (suggestive of pancreatitis and rash).'),
(13394, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'Is Ligantin 100 Tablet habit forming?', 'No, it will not be addictive if you take it as per your doctor’s recommendations. However, physical dependence has been reported in people who had taken more than the recommended dose of Ligantin 100 Tablet or had used Ligantin 100 Tablet for illnesses it is not approved for.'),
(13395, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'I am taking Ligantin 100 Tablet for nerve pain. Can I take it off and on?', 'No, Ligantin 100 Tablet is not a simple pain reliever. It is important that you follow your doctor’s advice strictly. Taking it off and on may not give you the desired results and may worsen your pain.'),
(13396, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'What if somebody takes more than the recommended dose of Ligantin 100 Tablet?', 'A higher than the recommended dose of Ligantin 100 Tablet may cause faintness, dizziness, double vision, unclear speech, drowsiness, tiredness and mild diarrhea. The person requires immediate medical attention by a doctor or in a nearby hospital.'),
(13397, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'What should I tell my doctor before taking this medicine?', 'Inform your doctor if you are taking any other medicines including medicines for epilepsy or seizures, medicines used to thin your blood (e.g., warfarin), birth control pills, medicines to control bacterial infection (e.g., chloramphenicol, metronidazole, and doxycycline), medicines to control viral infection (e.g., nelfinavir), asthma medicines (e.g., theophylline and montelukast), etc. Also, inform your doctor if you are planning to become pregnant or are breastfeeding. Further, you should tell the doctor if you have ever had liver problems, kidney problems, lung problems, or porphyria (a rare blood pigment disorder).'),
(13398, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'What should I avoid while taking Ligantin 100 Tablet?', 'If  Ligantin 100 Tablet makes you feel sleepy, avoid driving or operating heavy machinery. Alcohol consumption should be avoided since taking both together may cause excessive sleepiness.'),
(13399, 'Ligantin 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 100 Tablet', 'Does Ligantin 100 Tablet reduce the efficiency of oral birth control pills?', 'No, Ligantin 100 Tablet does not have any effect on oral birth control pills.'),
(13400, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. I have been prescribed Ligantin 300 Tablet for pain. When will I start feeling better?', 'It varies from person to person. Some people take about a week or two before noticing relief in pain. Whereas, some people may see an improvement straight away. It is recommended that you take Ligantin 300 Tablet only for nerve pain and as advised by your doctor.'),
(13401, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. I think I have gained weight since I started taking Ligantin 300 Tablet. Can this be because of Ligantin 300 Tablet?', 'Yes, Ligantin 300 Tablet may cause weight gain because it increases your hunger. Regular physical exercise and a balanced diet with low calorie food may help you maintain a stable weight. Consult a dietitian if you have any further concerns to keep your weight stable.'),
(13402, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. For how long do I need to take Ligantin 300 Tablet?', 'Your doctor will decide the duration of the treatment based on your condition and your response to the treatment. For instance, if you have been prescribed Ligantin 300 Tablet for epilepsy, you may have to take it for a long time, maybe years even if your seizures are controlled. Whereas, if you are taking it for nerve pain and it has relieved your pain, you may have to take it for several months only.'),
(13403, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. What are the serious side effects that may occur while taking Ligantin 300 Tablet?', 'Taking Ligantin 300 Tablet may cause yellowing of the skin or eyes (warning signs of jaundice), trouble in breathing or talking and tightness in chest or throat (suggestive of serious allergic skin reactions). It may provoke suicidal thoughts and cause unusual bruises or bleeding which may be due to blood disorder. Other serious side effects may include muscle weakness and pain, fever which could lead to kidney failure, long-lasting stomach pain, nausea and vomiting (suggestive of pancreatitis and rash).'),
(13404, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. Is Ligantin 300 Tablet habit forming?', 'No, it will not be addictive if you take it as per your doctor’s recommendations. However, physical dependence has been reported in people who had taken more than the recommended dose of Ligantin 300 Tablet or had used Ligantin 300 Tablet for illnesses it is not approved for.'),
(13405, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. I am taking Ligantin 300 Tablet for nerve pain. Can I take it off and on?', 'No, Ligantin 300 Tablet is not a simple pain reliever. It is important that you follow your doctor’s advice strictly. Taking it off and on may not give you the desired results and may worsen your pain.'),
(13406, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. What if somebody takes more than the recommended dose of Ligantin 300 Tablet?', 'A higher than the recommended dose of Ligantin 300 Tablet may cause faintness, dizziness, double vision, unclear speech, drowsiness, tiredness and mild diarrhea. The person requires immediate medical attention by a doctor or in a nearby hospital.'),
(13407, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. What should I tell my doctor before taking this medicine?', 'Inform your doctor if you are taking any other medicines including medicines for epilepsy or seizures, medicines used to thin your blood (e.g., warfarin), birth control pills, medicines to control bacterial infection (e.g., chloramphenicol, metronidazole, and doxycycline), medicines to control viral infection (e.g., nelfinavir), asthma medicines (e.g., theophylline and montelukast), etc. Also, inform your doctor if you are planning to become pregnant or are breastfeeding. Further, you should tell the doctor if you have ever had liver problems, kidney problems, lung problems, or porphyria (a rare blood pigment disorder).'),
(13408, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. What should I avoid while taking Ligantin 300 Tablet?', 'If  Ligantin 300 Tablet makes you feel sleepy, avoid driving or operating heavy machinery. Alcohol consumption should be avoided since taking both together may cause excessive sleepiness.'),
(13409, 'Ligantin 300 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin 300 Tablet', 'Q. Does Ligantin 300 Tablet reduce the efficiency of oral birth control pills?', 'No, Ligantin 300 Tablet does not have any effect on oral birth control pills.'),
(13410, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'What is Ligantin NT 100 Tablet?', 'Ligantin NT 100 Tablet is a combination of two medicines: Gabapentin and Nortriptyline. This medicine is useful in the treatment of nerve pain (Neuropathic pain). It calms the damaged or overactive nerves by acting on the brain. Thereby, it decreases the pain sensation.'),
(13411, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'Can I stop taking Ligantin NT 100 Tablet when my pain is relieved?', 'No, you should not stop taking Ligantin NT 100 Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Ligantin NT 100 Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.'),
(13412, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'How to manage weight gain associated with the use of Ligantin NT 100 Tablet?', 'Ligantin NT 100 Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(13413, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'Can the use of Ligantin NT 100 Tablet affect my sexual life?', 'The use of Ligantin NT 100 Tablet can affect the sexual life of both men and women. Most commonly observed problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Ligantin NT 100 Tablet.'),
(13414, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'Are there any serious side effects associated with the use of Ligantin NT 100 Tablet?', 'Serious side effects because of Ligantin NT 100 Tablet are uncommon and rare. Consult your doctor immediately if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(13415, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'How long will the Ligantin NT 100 Tablet take to act?', 'An initial benefit with Ligantin NT 100 Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months to see full benefit. It may even take longer in some patients.'),
(13416, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'What if I forget to take Ligantin NT 100 Tablet?', 'If you forget to take the scheduled dose of Ligantin NT 100 Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, ask your doctor about taking Ligantin NT 100 Tablet.'),
(13417, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Overdose of this medicine may make you feel drowsy, weak, unsteady when walking, have double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(13418, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'Is there anything I need to avoid while taking Ligantin NT 100 Tablet?', 'Ligantin NT 100 Tablet may impair your thinking or reactions. Be careful while driving or while doing any activity that requires you to be alert. Do not drink alcohol while you are taking Ligantin NT 100 Tablet. It can increase the effects of alcohol which could be dangerous. Grapefruit and grapefruit juice may also interact with this medicine and cause unwanted side effects. Avoid exposure to sunlight or tanning beds. Use of Ligantin NT 100 Tablet can make you more prone to sunburns. Wear protective clothing and use sunscreen when you are outdoors during daytime.'),
(13419, 'Ligantin NT 100 Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT 100 Tablet', 'How often should I see the doctor?', 'You may need to see your doctor regularly if you have started to take Ligantin NT 100 Tablet. However, you must consult your doctor if the advised dosage of Ligantin NT 100 Tablet does not improve your symptoms or you continue experiencing unwanted side effects that affect your routine activities.'),
(13420, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'What is Ligantin NT Tablet?', 'Ligantin NT Tablet is a combination of two medicines: Gabapentin and Nortriptyline. This medicine is useful in the treatment of nerve pain (Neuropathic pain). It calms the damaged or overactive nerves by acting on the brain. Thereby, it decreases the pain sensation.'),
(13421, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'Can I stop taking Ligantin NT Tablet when my pain is relieved?', 'No, you should not stop taking Ligantin NT Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Ligantin NT Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13422, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'How to manage weight gain associated with the use of Ligantin NT Tablet?', 'Ligantin NT Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(13423, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'Can the use of Ligantin NT Tablet affect my sexual life?', 'The use of Ligantin NT Tablet can affect the sexual life of both men and women. Most commonly observed problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Ligantin NT Tablet.'),
(13424, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'Are there any serious side effects associated with the use of Ligantin NT Tablet?', 'Serious side effects because of Ligantin NT Tablet are uncommon and rare. Consult your doctor immediately if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(13425, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'How long will the Ligantin NT Tablet take to act?', 'An initial benefit with Ligantin NT Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months to see full benefit. It may even take longer in some patients.'),
(13426, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'What if I forget to take Ligantin NT Tablet?', 'If you forget to take the scheduled dose of Ligantin NT Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, ask your doctor about taking Ligantin NT Tablet.'),
(13427, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Overdose of this medicine may make you feel drowsy, weak, unsteady when walking, have double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(13428, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'Is there anything I need to avoid while taking Ligantin NT Tablet?', 'Ligantin NT Tablet may impair your thinking or reactions. Be careful while driving or while doing any activity that requires you to be alert. Do not drink alcohol while you are taking Ligantin NT Tablet. It can increase the effects of alcohol which could be dangerous. Grapefruit and grapefruit juice may also interact with this medicine and cause unwanted side effects. Avoid exposure to sunlight or tanning beds. Use of Ligantin NT Tablet can make you more prone to sunburns. Wear protective clothing and use sunscreen when you are outdoors during daytime.'),
(13429, 'Ligantin NT Tablet', 'Hicxica Formulations Pvt Ltd', 'Ligantin NT Tablet', 'How often should I see the doctor?', 'You may need to see your doctor regularly if you have started to take Ligantin NT Tablet. However, you must consult your doctor if the advised dosage of Ligantin NT Tablet does not improve your symptoms or you continue experiencing unwanted side effects that affect your routine activities.'),
(13430, 'Ligcet 5mg Tablet', 'Dr Kumars Pharmaceuticals', 'Ligcet 5mg Tablet', 'Is Ligcet 5mg Tablet a steroid? What is it used for?', 'No, Ligcet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(13431, 'Ligcet 5mg Tablet', 'Dr Kumars Pharmaceuticals', 'Ligcet 5mg Tablet', 'Does Ligcet 5mg Tablet make you tired and drowsy?', 'Yes, Ligcet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(13432, 'Ligcet 5mg Tablet', 'Dr Kumars Pharmaceuticals', 'Ligcet 5mg Tablet', 'How long does it take for Ligcet 5mg Tablet to work?', 'Ligcet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(13433, 'Ligcet 5mg Tablet', 'Dr Kumars Pharmaceuticals', 'Ligcet 5mg Tablet', 'Can I take Ligcet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Ligcet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(13434, 'Ligcet 5mg Tablet', 'Dr Kumars Pharmaceuticals', 'Ligcet 5mg Tablet', 'Is it safe to take Ligcet 5mg Tablet for a long time?', 'Ligcet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Ligcet 5mg Tablet for only as long as you need it.'),
(13435, 'Ligcet 5mg Tablet', 'Dr Kumars Pharmaceuticals', 'Ligcet 5mg Tablet', 'For how long should I continue Ligcet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Ligcet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Ligcet 5mg Tablet'),
(13436, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'What is Ligesic A Tablet?', 'Ligesic A Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(13437, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Is it safe to use Ligesic A Tablet?', 'Ligesic A Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(13438, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Can I stop taking Ligesic A Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Ligesic A Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(13439, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Can the use of Ligesic A Tablet cause nausea and vomiting?', 'Yes, the use of Ligesic A Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13440, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Can the use of Ligesic A Tablet cause dizziness?', 'Yes, the use of Ligesic A Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(13441, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Are there any specific contraindications associated with the use of Ligesic A Tablet?', 'The use of Ligesic A Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(13442, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Can Ligesic A Tablet be taken with vitamin B-complex?', 'Yes, Ligesic A Tablet can be taken with vitamin B-complex preparations. While Ligesic A Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(13443, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Is Ligesic A Tablet helpful in relieving stomach pain?', 'No, Ligesic A Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(13444, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Can the use of Ligesic A Tablet cause damage to kidneys?', 'Yes, the long-term use of Ligesic A Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(13445, 'Ligesic A Tablet', 'Liza Life Sciences', 'Ligesic A Tablet', 'Is it safe to take a higher dose of Ligesic A Tablet than recommended?', 'No, taking higher than the recommended dose of Ligesic A Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(13446, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'What is Ligesic A+ Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(13447, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Is it safe to take Ligesic A+ Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(13448, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Can I stop taking Ligesic A+ Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(13449, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Can Ligesic A+ Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(13450, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Can Ligesic A+ Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(13451, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Are there any specific contraindications associated with taking Ligesic A+ Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(13452, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Can I take Ligesic A+ Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(13453, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Can the use of Ligesic A+ Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(13454, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'Can I take a higher dose of Ligesic A+ Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13455, 'Ligesic A+ Tablet', 'Liza Life Sciences', 'Ligesic A+ Tablet', 'What are the instructions for storage and disposal of Ligesic A+ Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13456, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'What is Ligesic N Plus Tablet?', 'Ligesic N Plus Tablet is a combination of five medicines: Caffeine, Cetirizine, Nimesulide, Paracetamol and Phenylephrine. This combination is helpful in relieving the symptoms of cold. These symptoms include body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(13457, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'Can I breastfeed while taking Ligesic N Plus Tablet?', 'No, it is not advisable to breastfeed while using Ligesic N Plus Tablet. This medicine contains cetirizine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(13458, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'Can the use of Ligesic N Plus Tablet cause damage to liver?', 'Ligesic N Plus Tablet contains Paracetamol and Nimesulide. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(13459, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'Are there any foods which I should avoid while taking Ligesic N Plus Tablet?', 'Ligesic N Plus Tablet contains caffeine. So, it is preferable to avoid medicines or food that also contain caffeine. Foods like coffee, tea, cola drinks and chocolate should be avoided as they may add to your total caffeine intake. Increased caffeine intake can cause difficulty in sleeping, you may experience tremors and/or may have chest discomfort. Also, avoid drinking alcohol (beer, wine, etc) while taking this medicine.'),
(13460, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'Can the use of Ligesic N Plus Tablet cause sleepiness or drowsiness?', 'Yes, Ligesic N Plus Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(13461, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'Are there any serious side effects associated with the use of Ligesic N Plus Tablet?', 'Serious side effects with Ligesic N Plus Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat. These side effects are uncommon but may be serious and may need urgent medical attention.'),
(13462, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'Will a higher than the recommended dose of Ligesic N Plus Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13463, 'Ligesic N Plus Tablet', 'Liza Life Sciences', 'Ligesic N Plus Tablet', 'What are the instructions for the storage and disposal of Ligesic N Plus Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13464, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'What is Ligesic N Tablet?', 'Ligesic N Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(13465, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'Can I stop taking Ligesic N Tablet when my pain is relieved?', 'Ligesic N Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(13466, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'Can the use of Ligesic N Tablet cause nausea and vomiting?', 'Yes, the use of Ligesic N Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13467, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'Are there any specific contraindications associated with the use of Ligesic N Tablet?', 'The use of Ligesic N Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(13468, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'Can I take Ligesic N Tablet with Vitamin B-complex?', 'Yes, Ligesic N Tablet can be taken with Vitamin B-complex preparations. While Ligesic N Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(13469, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'Does Ligesic N Tablet help in relieving stomach pain?', 'No, Ligesic N Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(13470, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'Can the use of Ligesic N Tablet cause damage to the liver?', 'Ligesic N Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(13471, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'Is it safe to take a higher than the recommended dose of Ligesic N Tablet?', 'No, you should avoid taking a higher than the recommended dose of Ligesic N Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13472, 'Ligesic N Tablet', 'Liza Life Sciences', 'Ligesic N Tablet', 'What are the recommended storage conditions for Ligesic N Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13473, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'How should Ligesic-D Injection injection be administered?', 'Ligesic-D Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(13474, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'What is the most important information I need to know about Ligesic-D Injection?', 'It is important to know that Ligesic-D Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Ligesic-D Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(13475, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'Is Ligesic-D Injection a good painkiller?', 'Ligesic-D Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(13476, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'Can Ligesic-D Injection hurt your kidneys?', 'Long-term use and high doses of Ligesic-D Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(13477, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'Does Ligesic-D Injection make you drowsy?', 'Ligesic-D Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(13478, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'Can Ligesic-D Injection be taken during pregnancy?', 'You should not take Ligesic-D Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Ligesic-D Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Ligesic-D Injection during the first 6 months of pregnancy also.  In some cases, Ligesic-D Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(13479, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'Does Ligesic-D Injection get you high?', 'No, Ligesic-D Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(13480, 'Ligesic-D Injection', 'Liza Life Sciences', 'Ligesic-D Injection', 'Is Ligesic-D Injection a narcotic?', 'No, Ligesic-D Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(13481, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'How much Ligesic-M Oral Suspension should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure safe and complete recovery of your child.'),
(13482, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'Can I change the dose of Ligesic-M Oral Suspension for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unnecessary increase in dose may lead to toxicity, a sudden lowering of the dosing may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(13483, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'Can all children be given the same dose of Ligesic-M Oral Suspension?', 'No. Ligesic-M Oral Suspension cannot be given to everyone in the same dose. The doctor decides the appropriate dose based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(13484, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'When will my child feel better?', 'The doctor may advise you to keep giving Ligesic-M Oral Suspension to your child for a few days to weeks, depending upon the severity of the illness. You’ll notice that the pain or fever will reduce and your child will start feeling better gradually as the course approaches its end. In case your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(13485, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'Are there any serious side effects of this medicine for my child?', 'Ligesic-M Oral Suspension is well-tolerated by most children. However, if your child experiences any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, serious allergic reaction, and severe pain due to gastric ulcers, then rush to your doctor on an immediate basis.'),
(13486, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'How should I store Ligesic-M Oral Suspension?', 'Store Ligesic-M Oral Suspension at room temperature, in a dry place, away from direct heat and light. Avoid leaving medicines within the reach and sight of children.'),
(13487, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'My child is taking Ligesic-M Oral Suspension for toothache and now has to undergo an extraction procedure. Should I continue giving Ligesic-M Oral Suspension?', 'Withhold Ligesic-M Oral Suspension from at least 3 to 5 days before a surgical procedure to prevent excessive bleeding. In case of any confusion, it is best to reach out to your child’s doctor.'),
(13488, 'Ligesic-M Oral Suspension', 'Liza Life Sciences', 'Ligesic-M Oral Suspension', 'Can other medicines be given at the same time as Ligesic-M Oral Suspension?', 'Ligesic-M Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Ligesic-M Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(13489, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'What is Ligesic-MR Tablet?', 'Ligesic-MR Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(13490, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'Is it safe to use Ligesic-MR Tablet?', 'Ligesic-MR Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(13491, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'Can I stop taking Ligesic-MR Tablet when my pain is relieved?', 'Ligesic-MR Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(13492, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'Can the use of Ligesic-MR Tablet cause nausea and vomiting?', 'Yes, the use of Ligesic-MR Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13493, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'Can the use of Ligesic-MR Tablet cause dizziness?', 'Yes, the use of Ligesic-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(13494, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'Can the use of Ligesic-MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Ligesic-MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(13495, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Ligesic-MR Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13496, 'Ligesic-MR Tablet', 'Liza Life Sciences', 'Ligesic-MR Tablet', 'What are the recommended storage conditions for Ligesic-MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13497, 'Ligest 200mg Soft Gelatin Capsule', 'Medleaf Pharmaceuticals', 'Ligest 200mg Soft Gelatin Capsule', 'Can you take Ligest 200mg Soft Gelatin Capsule every day?', 'Yes, Ligest 200mg Soft Gelatin Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(13498, 'Ligest 200mg Soft Gelatin Capsule', 'Medleaf Pharmaceuticals', 'Ligest 200mg Soft Gelatin Capsule', 'Does Ligest 200mg Soft Gelatin Capsule cause weight gain?', 'Yes, taking Ligest 200mg Soft Gelatin Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Ligest 200mg Soft Gelatin Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(13499, 'Ligest 200mg Soft Gelatin Capsule', 'Medleaf Pharmaceuticals', 'Ligest 200mg Soft Gelatin Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Ligest 200mg Soft Gelatin Capsule (form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(13500, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'How long does it take for Ligga Tablet to work?', 'The amount of time Ligga Tablet takes to work varies from person to person, but it normally takes between half an hour and one hour. However, Ligga Tablet may take longer to start working if you take it with a heavy meal. Its effect may last for about 3-4 hours.'),
(13501, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Can I get Ligga Tablet without a prescription?', 'No, you need a doctor\'s prescription to get Ligga Tablet since it is a prescription medicine. Your doctor will prescribe it only if they judge that it would be beneficial for you.'),
(13502, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Can I take Ligga Tablet as often as I want?', 'No, do not take Ligga Tablet for more than once a day. If you take more Ligga Tablet than the recommended dose then you may experience an increase in side effects and their severity. These side effects include flushing, headache, muscle pain, stomach upset, allergic reactions and vision changes such as blurred vision.  Contact your doctor if Ligga Tablet does not help you to get an erection, or if your erection does not last long enough for you to complete sexual intercourse.'),
(13503, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'When should I take Ligga Tablet?', 'Take Ligga Tablet about 1 hour before you plan to have sex. Swallow the tablet whole with a glass of water. Inform your doctor if you feel the effect of Ligga Tablet is too strong or too weak.'),
(13504, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Can I take Ligga Tablet for premature ejaculation?', 'No, Ligga Tablet is not known to have any beneficial effects in treating premature ejaculation. It is used for the treatment of erectile dysfunction.'),
(13505, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Why is the use of Ligga Tablet contraindicated with nitrates?', 'Use of Ligga Tablet is harmful for patients taking nitrates or blood pressure-lowering medicines as their combined use can cause a severe fall in blood pressure, which can also result in death. However, if these medicines are to be taken together then it is advised to keep a time gap of 24 hours between the intake of Penegra and blood pressure-lowering medicines.'),
(13506, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Why does Ligga Tablet cause a fall in blood pressure (hypotension)?', 'Ligga Tablet has the property of relaxing the smooth muscle of the blood vessels and widening them which can cause a fall in blood pressure (hypotension). So, when used with blood pressure lowering medicines or nitrates, it can cause a severe fall in blood pressure, which could be fatal. Ligga Tablet should not be taken if you are taking nitrates for chest pain or you have a history of heart attack or stroke in the past 6 months.'),
(13507, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Can I take Ligga Tablet in my twenties?', 'Yes, if prescribed by your doctor then Ligga Tablet can be taken in your twenties.'),
(13508, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Does Ligga Tablet increase blood pressure?', 'No, Ligga Tablet is not associated with an increase in blood pressure. However, it can cause a decrease in blood pressure especially if taken with other blood pressure-lowering medications. Please consult your doctor before taking Ligga Tablet with any other medicine.'),
(13509, 'Ligga Tablet', 'Care Formulation Labs Pvt Ltd', 'Ligga Tablet', 'Is Ligga Tablet safe to use in patients with diabetes?', 'Yes, if prescribed by your doctor then Ligga Tablet is safe to use in patients with diabetes.'),
(13510, 'Lightuss Syrup', 'Delight Medica Private Limited', 'Lightuss Syrup', 'Can the use of Lightuss Syrup cause sleepiness or drowsiness?', 'Yes, Lightuss Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(13511, 'Lightuss Syrup', 'Delight Medica Private Limited', 'Lightuss Syrup', 'Are there any serious side effects associated with the use of Lightuss Syrup?', 'Serious side effects with Lightuss Syrup are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(13512, 'Lightuss Syrup', 'Delight Medica Private Limited', 'Lightuss Syrup', 'Will Lightuss Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve you symptoms or there is an increased severity of your symptoms while taking this medicine, please consult your doctor.'),
(13513, 'Lightuss Syrup', 'Delight Medica Private Limited', 'Lightuss Syrup', 'Can I breastfeed while taking Lightuss Syrup?', 'No, it is not advisable to breastfeed while using Lightuss Syrup. This medicine contains Chlorpheniramine, an antihistamine which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(13514, 'Lightuss Syrup', 'Delight Medica Private Limited', 'Lightuss Syrup', 'Are there any contraindications associated with use of Lightuss Syrup?', 'It is not recommended to use Lightuss Syrup if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism). However, it can be taken if your doctor is aware of your conditions and advises you to take it. The use of Lightuss Syrup should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(13515, 'Lightuss Syrup', 'Delight Medica Private Limited', 'Lightuss Syrup', 'What are the instructions for storage and disposal of Lightuss Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13516, 'Ligilmet 1000mg/5mg Tablet XR', 'Grievers Remedies', 'Ligilmet 1000mg/5mg Tablet XR', 'Can the use of Ligilmet 1000mg/5mg Tablet XR cause lactic acidosis?', 'Yes, the use of Ligilmet 1000mg/5mg Tablet XR can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Ligilmet 1000mg/5mg Tablet XR and immediately consult your doctor.'),
(13517, 'Ligilmet 1000mg/5mg Tablet XR', 'Grievers Remedies', 'Ligilmet 1000mg/5mg Tablet XR', 'What are the possible side effects of Ligilmet 1000mg/5mg Tablet XR?', 'The use of Ligilmet 1000mg/5mg Tablet XR may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(13518, 'Ligilmet 1000mg/5mg Tablet XR', 'Grievers Remedies', 'Ligilmet 1000mg/5mg Tablet XR', 'Are there any specific conditions in which Ligilmet 1000mg/5mg Tablet XR should not be taken?', 'The use of Ligilmet 1000mg/5mg Tablet XR should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Ligilmet 1000mg/5mg Tablet XR.'),
(13519, 'Ligilmet 1000mg/5mg Tablet XR', 'Grievers Remedies', 'Ligilmet 1000mg/5mg Tablet XR', 'Is it safe to take alcohol while I am also taking Ligilmet 1000mg/5mg Tablet XR?', 'No, it is not safe to take Ligilmet 1000mg/5mg Tablet XR along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(13520, 'Ligilmet 1000mg/5mg Tablet XR', 'Grievers Remedies', 'Ligilmet 1000mg/5mg Tablet XR', 'What are the instructions for the storage and disposal of Ligilmet 1000mg/5mg Tablet XR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13521, 'Ligilmet 1000mg/5mg Tablet XR', 'Grievers Remedies', 'Ligilmet 1000mg/5mg Tablet XR', 'Can the use of Ligilmet 1000mg/5mg Tablet XR cause hypoglycemia?', 'The use of Ligilmet 1000mg/5mg Tablet XR does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(13522, 'Ligilmet 1000mg/5mg Tablet XR', 'Grievers Remedies', 'Ligilmet 1000mg/5mg Tablet XR', 'Can the use of Ligilmet 1000mg/5mg Tablet XR lead to vitamin B12 deficiency?', 'Yes, long-term use of Ligilmet 1000mg/5mg Tablet XR can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(13523, 'Ligilmet 500mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 500mg/2.5mg Tablet', 'Can the use of Ligilmet 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Ligilmet 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Ligilmet 500mg/2.5mg Tablet and immediately consult your doctor.'),
(13524, 'Ligilmet 500mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 500mg/2.5mg Tablet', 'What are the possible side effects of Ligilmet 500mg/2.5mg Tablet?', 'The use of Ligilmet 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13525, 'Ligilmet 500mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 500mg/2.5mg Tablet', 'Are there any specific conditions in which Ligilmet 500mg/2.5mg Tablet should not be taken?', 'The use of Ligilmet 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Ligilmet 500mg/2.5mg Tablet.'),
(13526, 'Ligilmet 500mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Ligilmet 500mg/2.5mg Tablet?', 'No, it is not safe to take Ligilmet 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(13527, 'Ligilmet 500mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Ligilmet 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13528, 'Ligilmet 500mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 500mg/2.5mg Tablet', 'Can the use of Ligilmet 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Ligilmet 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(13529, 'Ligilmet 500mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 500mg/2.5mg Tablet', 'Can the use of Ligilmet 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Ligilmet 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(13530, 'Ligilmet 850mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 850mg/2.5mg Tablet', 'Can the use of Ligilmet 850mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Ligilmet 850mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Ligilmet 850mg/2.5mg Tablet and immediately consult your doctor.'),
(13531, 'Ligilmet 850mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 850mg/2.5mg Tablet', 'What are the possible side effects of Ligilmet 850mg/2.5mg Tablet?', 'The use of Ligilmet 850mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(13532, 'Ligilmet 850mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 850mg/2.5mg Tablet', 'Are there any specific conditions in which Ligilmet 850mg/2.5mg Tablet should not be taken?', 'The use of Ligilmet 850mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Ligilmet 850mg/2.5mg Tablet.'),
(13533, 'Ligilmet 850mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 850mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Ligilmet 850mg/2.5mg Tablet?', 'No, it is not safe to take Ligilmet 850mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(13534, 'Ligilmet 850mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 850mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Ligilmet 850mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13535, 'Ligilmet 850mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 850mg/2.5mg Tablet', 'Can the use of Ligilmet 850mg/2.5mg Tablet cause hypoglycemia?', 'The use of Ligilmet 850mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(13536, 'Ligilmet 850mg/2.5mg Tablet', 'Grievers Remedies', 'Ligilmet 850mg/2.5mg Tablet', 'Can the use of Ligilmet 850mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Ligilmet 850mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(13537, 'Liglipol Tablet', 'Medipol Pharmaceuticals India Pvt Ltd', 'Liglipol Tablet', 'Is Liglipol Tablet an antibiotic?', 'Yes, Liglipol Tablet is a type of antibiotic which belongs to a group of medicines called macrolides. It is mostly used after organ transplantation. This medicine’s immune-suppressing property helps prevent organ rejection after kidney, heart, or liver transplant.'),
(13538, 'Liglipol Tablet', 'Medipol Pharmaceuticals India Pvt Ltd', 'Liglipol Tablet', 'Which vaccines should not be taken while taking Liglipol Tablet?', 'You should avoid taking any live vaccines (vaccines that use pathogens that are still alive, but are attenuated, that is, weakened) while taking Liglipol Tablet. These may include vaccinations for measles, mumps, rubella, BCG (TB vaccine), yellow fever, chicken pox and typhoid. You should also avoid taking polio drops (by mouth) or flu vaccine (through nose).'),
(13539, 'Liglipol Tablet', 'Medipol Pharmaceuticals India Pvt Ltd', 'Liglipol Tablet', 'Who should not take Liglipol Tablet?', 'Patients who are allergic to it or have a weak immune system, high blood pressure, and kidney failure should avoid Liglipol Tablet. This medicine should also be avoided in pregnant or breastfeeding women,  and in people who plan to receive any live vaccines (e.g. MMR vaccine).'),
(13540, 'Liglipol Tablet', 'Medipol Pharmaceuticals India Pvt Ltd', 'Liglipol Tablet', 'What should I tell my doctor before taking Liglipol Tablet?', 'Inform your doctor if you are pregnant, have allergies, long-term infection, high blood sugar, or high blood pressure. You should also inform your doctor if you have high blood potassium levels or a weakened immune system. Tell your doctor if you have a history of any medication, have recently received, or are scheduled to receive a live vaccine.'),
(13541, 'Liglipol Tablet', 'Medipol Pharmaceuticals India Pvt Ltd', 'Liglipol Tablet', 'What should I be aware of before I start taking Liglipol Tablet?', 'This medicine suppresses the immune system and hence there is always an increased risk of infection. Moreover, in some cases, Liglipol Tablet can increase the risk of some kind of cancer like skin and lymph gland cancer (lymphoma). It can lower the ability of your immune system to fight infections. Consult your doctor before you start taking this medication and in case you notice any symptoms of infections like fever, sweats or chills, cough or flu-like symptoms, muscle aches, warm, red, or painful areas on your skin.'),
(13542, 'Liglipol Tablet', 'Medipol Pharmaceuticals India Pvt Ltd', 'Liglipol Tablet', 'Does Liglipol Tablet have an abuse potential?', 'No, Liglipol Tablet does not have abuse potential and thus, is not a controlled substance. Controlled substances have potential for abuse so they need permission from authorities and doctors for use.'),
(13543, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'Does Liglit 20mg Tablet cause weight gain?', 'No, Liglit 20mg Tablet is not known to cause weight gain by itself. However, keeping a healthy weight is an important part of managing diabetes. Consult your doctor if you experience weight gain while taking Liglit 20mg Tablet.'),
(13544, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'Is Liglit 20mg Tablet bad for your kidneys?', 'No, Liglit 20mg Tablet is not bad for your kidneys if your kidney function is normal. However, it is important to inform your doctor if you have, or ever had, any kidney problems. If you have kidney problems, you may need dose modification.'),
(13545, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'Do I still have to manage my diet and exercise while on Liglit 20mg Tablet?', 'Yes, it is important to manage your diet and exercise while taking Liglit 20mg Tablet. In addition to medicine, making healthy food choices and being physically active are also important to effectively manage blood sugar levels. You may consult a dietitian and follow a diet chart that suits you best. A well-balanced diet is one part of a healthy lifestyle for people with type 2 diabetes. Additionally, thirty minutes of exercise such as a brisk walk is recommended.'),
(13546, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'Can my blood sugar levels go too low on Liglit 20mg Tablet?', 'Yes, it is possible that your blood sugar levels may become very low (hypoglycemia). The chances are higher if you are on any other antidiabetic medicine or insulin along with Liglit 20mg Tablet. Additionally, blood sugar levels can take a huge dip if you skip meals, exercise more than usual, or if you have taken an overdose of Liglit 20mg Tablet. If you experience a sudden fall in your sugar levels, inform your doctor. The doctor may suggest dose modification to prevent your blood sugar levels from decreasing significantly (hypoglycemia). Follow your doctor’s advice and monitor your blood sugar levels regularly.'),
(13547, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'How long do I need to take Liglit 20mg Tablet?', 'Liglit 20mg Tablet only helps to manage your blood sugar levels but does not cure your diabetes. Keep taking Liglit 20mg Tablet as long as your doctor recommends it. You may have to take it lifelong. It is important to keep your blood sugar levels under control as any fluctuations in your blood sugar levels may cause serious problems. Therefore, do not stop taking it without talking to your doctor.'),
(13548, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'What will happen if I accidentally take more than the prescribed dose of Liglit 20mg Tablet?', 'If you have accidentally taken more than the prescribed dose of Liglit 20mg Tablet, your blood sugar levels may become too low (hypoglycemia). This hypoglycemia may be mild or severe. Monitor your blood sugar levels more frequently for the next 24 hours. Mild episodes of hypoglycemia (with symptoms like anxiety, sweating, weakness, tremors, fast heartbeat) can usually be corrected with the help of sugary foods such as sugar or glucose candy, fruit juice and glucose/glucon-D. However, it is important to consult your doctor to decide the further course of treatment. More severe episodes of hypoglycemia may even lead to a seizure (fit) or unconsciousness. This can be life-threatening and immediate medical help may be required.'),
(13549, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'What if I miss a dose of Liglit 20mg Tablet?', 'If you miss a dose, take it as soon as you remember. If in case you do not remember until it is time for your next dose, skip the missed dose and go back to your regular schedule. Do not take two doses of Liglit 20mg Tablet at the same time.'),
(13550, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'What is the most important information I should know about Liglit 20mg Tablet?', 'Liglit 20mg Tablet is safe to use if taken in the dose and duration prescribed by the doctor. However, in rare cases, some serious side effects can also be observed. In some people, Liglit 20mg Tablet may cause inflammation of the pancreas (pancreatitis) which could be severe and can even lead to death. If you experience severe and persistent pain in your stomach area (abdomen), stop the medication and immediately contact your doctor. Liglit 20mg Tablet can also cause heart failure. This means the heart is not able to pump blood well enough, therefore, inform your doctor if you have or ever had heart problems before you start taking Liglit 20mg Tablet. In addition to that, problems related to kidneys should also be discussed with the doctor.'),
(13551, 'Liglit 20mg Tablet', 'Pharmus Biotech', 'Liglit 20mg Tablet', 'Is Liglit 20mg Tablet safe to be taken for a long term?', 'Yes, it is safe to take Liglit 20mg Tablet for a long time. Its long-term use, which can continue for months, years or even lifelong, has not shown any harmful effects. Keep taking Liglit 20mg Tablet as long as your doctor recommends it. Remember, Liglit 20mg Tablet only helps to keep your blood sugar levels under control but does not cure your diabetes.'),
(13552, 'Liglit M 500mg/20mg Tablet', 'Pharmus Biotech', 'Liglit M 500mg/20mg Tablet', 'Is it safe to use Liglit M 500mg/20mg Tablet?', 'Yes, it is safe to use Liglit M 500mg/20mg Tablet if you take it for the prescribed duration and according to the dosage advised by the doctor. However, despite taking the prescribed dosage you might experience common side effects like nausea, diarrhea, vomiting, stomach upset, headache, nasal congestion, sore throat, respiratory tract infection and hypoglycemia (low blood sugar level). Hypoglycemia is relatively common in patients who are taking Liglit M 500mg/20mg Tablet in combination with insulin or Sulfonylurea. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(13553, 'Liglit M 500mg/20mg Tablet', 'Pharmus Biotech', 'Liglit M 500mg/20mg Tablet', 'Can the use of Liglit M 500mg/20mg Tablet lead to hypoglycemia?', 'The use of Liglit M 500mg/20mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(13554, 'Liglit M 500mg/20mg Tablet', 'Pharmus Biotech', 'Liglit M 500mg/20mg Tablet', 'Can the use of Liglit M 500mg/20mg Tablet cause nausea and vomiting?', 'Yes, the use of Liglit M 500mg/20mg Tablet can cause nausea and vomiting. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without consulting a doctor.'),
(13555, 'Liglit M 500mg/20mg Tablet', 'Pharmus Biotech', 'Liglit M 500mg/20mg Tablet', 'Are there any specific contraindications associated with the use of Liglit M 500mg/20mg Tablet?', 'The use of Liglit M 500mg/20mg Tablet should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also considered to be harmful for patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis.'),
(13556, 'Liglit M 500mg/20mg Tablet', 'Pharmus Biotech', 'Liglit M 500mg/20mg Tablet', 'Can the use of Liglit M 500mg/20mg Tablet cause lactic acidosis?', 'Yes, the use of Liglit M 500mg/20mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Liglit M 500mg/20mg Tablet and immediately consult your doctor.'),
(13557, 'Liglit M 500mg/20mg Tablet', 'Pharmus Biotech', 'Liglit M 500mg/20mg Tablet', 'Can the use of Liglit M 500mg/20mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Liglit M 500mg/20mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. Deficiency of B12 may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(13558, 'Liglit M 500mg/20mg Tablet', 'Pharmus Biotech', 'Liglit M 500mg/20mg Tablet', 'What is the storage condition for the Liglit M 500mg/20mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13559, 'Ligmazole Ear Drop', 'Zoecia Healthcare', 'Ligmazole Ear Drop', 'In which conditions is the use of Ligmazole Ear Drop avoided?', 'Use of Ligmazole Ear Drop should be avoided in patients with known allergy to its components or any of its other excipients.'),
(13560, 'Ligmazole Ear Drop', 'Zoecia Healthcare', 'Ligmazole Ear Drop', 'What are the instructions for the storage and disposal of Ligmazole Ear Drop?', 'Keep Ligmazole Ear Drop in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Keep it away from children and other people.'),
(13561, 'Ligmazole Ear Drop', 'Zoecia Healthcare', 'Ligmazole Ear Drop', 'What if Ligmazole Ear Drop is swallowed accidentally or goes into the eyes?', 'If Ligmazole Ear Drop is swallowed accidentally, rinse your mouth with water immediately. If it goes accidentally into the eyes, wash with water. In any of the cases, do inform your doctor.'),
(13562, 'Ligno One Gel', 'Morepen Laboratories Ltd', 'Ligno One Gel', 'What is Ligno One Gel used for?', 'Ligno One Gel is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(13563, 'Ligno One Gel', 'Morepen Laboratories Ltd', 'Ligno One Gel', 'How long does it take for Ligno One Gel to work?', 'Ligno One Gel is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(13564, 'Ligno One Gel', 'Morepen Laboratories Ltd', 'Ligno One Gel', 'Is Ligno One Gel toxic?', 'If Ligno One Gel is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(13565, 'Lignoace Oral Solution', 'Wembrace Biopharma Pvt. Ltd.', 'Lignoace Oral Solution', 'Can Lignoace Oral Solution be used for dental anesthesia?', 'Your dentist may sometimes use Lignoace Oral Solution during dental procedures. It helps prevent the pain or discomfort caused by some dental procedures such as deep scaling, when giving you an injection, or when fitting your new dentures.'),
(13566, 'Lignocip 2% Injection', 'Cipla Ltd', 'Lignocip 2% Injection', 'How long does the effect of Lignocip 2% Injection lasts?', 'The anesthetic effect of Lignocip 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13567, 'Lignocip 2% Injection', 'Cipla Ltd', 'Lignocip 2% Injection', 'Is Lignocip 2% Injection injection painful?', 'No, Lignocip 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Lignocip 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13568, 'Lignocip 2% Injection', 'Cipla Ltd', 'Lignocip 2% Injection', 'Who should not be given Lignocip 2% Injection?', 'Lignocip 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13569, 'Lignocip 2% Injection', 'Cipla Ltd', 'Lignocip 2% Injection', 'Can Lignocip 2% Injection be abused?', 'No, abuse of Lignocip 2% Injection has not been observed yet. There are very rare reports of Lignocip 2% Injection injection causing any euphoric effect. However, Lignocip 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13570, 'Lignohel 1% Cream', 'Helbrede Healthcare', 'Lignohel 1% Cream', 'Is Lignohel 1% Cream safe in pregnancy?', 'Lignohel 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lignohel 1% Cream.'),
(13571, 'Lignohel 1% Cream', 'Helbrede Healthcare', 'Lignohel 1% Cream', 'Is Lignohel 1% Cream fungicidal or Fungistatic?', 'Lignohel 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13572, 'Lignohel 1% Cream', 'Helbrede Healthcare', 'Lignohel 1% Cream', 'How to use Lignohel 1% Cream?', 'Use Lignohel 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13573, 'Lignohel 1% Cream', 'Helbrede Healthcare', 'Lignohel 1% Cream', 'How long does it take for Lignohel 1% Cream to work?', 'For different ailments, Lignohel 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13574, 'Lignohel 1% Cream', 'Helbrede Healthcare', 'Lignohel 1% Cream', 'How should I store Lignohel 1% Cream?', 'Keep Lignohel 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13575, 'Lignohel 1% Cream', 'Helbrede Healthcare', 'Lignohel 1% Cream', 'Is Lignohel 1% Cream safe to use in children?', 'Yes, Lignohel 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13576, 'Lignolive Dental Gel', 'Abyss Pharma Pvt Ltd', 'Lignolive Dental Gel', 'Can I have food after taking Choline Lignolive Dental Gel?', 'Avoid eating for 1 hour after taking Lignolive Dental Gel because this medicine may impair your ability to swallow.'),
(13577, 'Lignolive Dental Gel', 'Abyss Pharma Pvt Ltd', 'Lignolive Dental Gel', 'What are the instructions for storage and disposal of Lignolive Dental Gel?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13578, 'Lignomak 5% Injection', 'Makcur Laboratories Ltd.', 'Lignomak 5% Injection', 'Q. How long does the effect of Lignomak 5% Injection lasts?', 'The anesthetic effect of Lignomak 5% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13579, 'Lignomak 5% Injection', 'Makcur Laboratories Ltd.', 'Lignomak 5% Injection', 'Q. Is Lignomak 5% Injection injection painful?', 'No, Lignomak 5% Injection injection does not cause pain except when it is given as spinal anesthesia. Lignomak 5% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13580, 'Lignomak 5% Injection', 'Makcur Laboratories Ltd.', 'Lignomak 5% Injection', 'Q. Who should not be given Lignomak 5% Injection?', 'Lignomak 5% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13581, 'Lignomak 5% Injection', 'Makcur Laboratories Ltd.', 'Lignomak 5% Injection', 'Q. Can Lignomak 5% Injection be abused?', 'No, abuse of Lignomak 5% Injection has not been observed yet. There are very rare reports of Lignomak 5% Injection injection causing any euphoric effect. However, Lignomak 5% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13582, 'Lignomax 2% Gel', 'Aishwarya Healthcare', 'Lignomax 2% Gel', 'What is Lignomax 2% Gel used for?', 'Lignomax 2% Gel is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(13583, 'Lignomax 2% Gel', 'Aishwarya Healthcare', 'Lignomax 2% Gel', 'How long does it take for Lignomax 2% Gel to work?', 'Lignomax 2% Gel is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(13584, 'Lignomax 2% Gel', 'Aishwarya Healthcare', 'Lignomax 2% Gel', 'Is Lignomax 2% Gel toxic?', 'If Lignomax 2% Gel is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(13585, 'Lignonir 2% Injection', 'Aculife Healthcare Private Limited', 'Lignonir 2% Injection', 'How long does the effect of Lignonir 2% Injection lasts?', 'The anesthetic effect of Lignonir 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13586, 'Lignonir 2% Injection', 'Aculife Healthcare Private Limited', 'Lignonir 2% Injection', 'Is Lignonir 2% Injection injection painful?', 'No, Lignonir 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Lignonir 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13587, 'Lignonir 2% Injection', 'Aculife Healthcare Private Limited', 'Lignonir 2% Injection', 'Who should not be given Lignonir 2% Injection?', 'Lignonir 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13588, 'Lignonir 2% Injection', 'Aculife Healthcare Private Limited', 'Lignonir 2% Injection', 'Can Lignonir 2% Injection be abused?', 'No, abuse of Lignonir 2% Injection has not been observed yet. There are very rare reports of Lignonir 2% Injection injection causing any euphoric effect. However, Lignonir 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13589, 'Lignopar Gel', 'Biomedica International', 'Lignopar Gel', 'What is Lignopar Gel used for?', 'Lignopar Gel is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(13590, 'Lignopar Gel', 'Biomedica International', 'Lignopar Gel', 'How long does it take for Lignopar Gel to work?', 'Lignopar Gel is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(13591, 'Lignopar Gel', 'Biomedica International', 'Lignopar Gel', 'Is Lignopar Gel toxic?', 'If Lignopar Gel is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(13592, 'Lignorain 2% Injection', 'Rainbow Laboratories (india) Pvt Ltd', 'Lignorain 2% Injection', 'How long does the effect of Lignorain 2% Injection lasts?', 'The anesthetic effect of Lignorain 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13593, 'Lignorain 2% Injection', 'Rainbow Laboratories (india) Pvt Ltd', 'Lignorain 2% Injection', 'Is Lignorain 2% Injection injection painful?', 'No, Lignorain 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Lignorain 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13594, 'Lignorain 2% Injection', 'Rainbow Laboratories (india) Pvt Ltd', 'Lignorain 2% Injection', 'Who should not be given Lignorain 2% Injection?', 'Lignorain 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13595, 'Lignorain 2% Injection', 'Rainbow Laboratories (india) Pvt Ltd', 'Lignorain 2% Injection', 'Can Lignorain 2% Injection be abused?', 'No, abuse of Lignorain 2% Injection has not been observed yet. There are very rare reports of Lignorain 2% Injection injection causing any euphoric effect. However, Lignorain 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13596, 'Lignoros Ointment', 'Biocrross Chem LLP', 'Lignoros Ointment', 'What is Lignoros Ointment used for?', 'Lignoros Ointment is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(13597, 'Lignoros Ointment', 'Biocrross Chem LLP', 'Lignoros Ointment', 'How long does it take for Lignoros Ointment to work?', 'Lignoros Ointment is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(13598, 'Lignoros Ointment', 'Biocrross Chem LLP', 'Lignoros Ointment', 'Is Lignoros Ointment toxic?', 'If Lignoros Ointment is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(13599, 'Lignowin 21.3mg Injection', 'Ikon Remedies Pvt Ltd', 'Lignowin 21.3mg Injection', 'How long does the effect of Lignowin 21.3mg Injection lasts?', 'The anesthetic effect of Lignowin 21.3mg Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13600, 'Lignowin 21.3mg Injection', 'Ikon Remedies Pvt Ltd', 'Lignowin 21.3mg Injection', 'Is Lignowin 21.3mg Injection injection painful?', 'No, Lignowin 21.3mg Injection injection does not cause pain except when it is given as spinal anesthesia. Lignowin 21.3mg Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13601, 'Lignowin 21.3mg Injection', 'Ikon Remedies Pvt Ltd', 'Lignowin 21.3mg Injection', 'Who should not be given Lignowin 21.3mg Injection?', 'Lignowin 21.3mg Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13602, 'Lignowin 21.3mg Injection', 'Ikon Remedies Pvt Ltd', 'Lignowin 21.3mg Injection', 'Can Lignowin 21.3mg Injection be abused?', 'No, abuse of Lignowin 21.3mg Injection has not been observed yet. There are very rare reports of Lignowin 21.3mg Injection injection causing any euphoric effect. However, Lignowin 21.3mg Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13603, 'Lignox 1% Injection', 'Indoco Remedies Ltd', 'Lignox 1% Injection', 'How long does the effect of Lignox 1% Injection lasts?', 'The anesthetic effect of Lignox 1% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13604, 'Lignox 1% Injection', 'Indoco Remedies Ltd', 'Lignox 1% Injection', 'Is Lignox 1% Injection injection painful?', 'No, Lignox 1% Injection injection does not cause pain except when it is given as spinal anesthesia. Lignox 1% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13605, 'Lignox 1% Injection', 'Indoco Remedies Ltd', 'Lignox 1% Injection', 'Who should not be given Lignox 1% Injection?', 'Lignox 1% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13606, 'Lignox 1% Injection', 'Indoco Remedies Ltd', 'Lignox 1% Injection', 'Can Lignox 1% Injection be abused?', 'No, abuse of Lignox 1% Injection has not been observed yet. There are very rare reports of Lignox 1% Injection injection causing any euphoric effect. However, Lignox 1% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13607, 'Lignox 2% Gel', 'Indoco Remedies Ltd', 'Lignox 2% Gel', 'Q. What is Lignox 2% Gel used for?', 'Lignox 2% Gel is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(13608, 'Lignox 2% Gel', 'Indoco Remedies Ltd', 'Lignox 2% Gel', 'Q. How long does it take for Lignox 2% Gel to work?', 'Lignox 2% Gel is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(13609, 'Lignox 2% Gel', 'Indoco Remedies Ltd', 'Lignox 2% Gel', 'Q. Is Lignox 2% Gel toxic?', 'If Lignox 2% Gel is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(13610, 'Lignox 2% Injection', 'Indoco Remedies Ltd', 'Lignox 2% Injection', 'Q. How long does the effect of Lignox 2% Injection lasts?', 'The anesthetic effect of Lignox 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13611, 'Lignox 2% Injection', 'Indoco Remedies Ltd', 'Lignox 2% Injection', 'Q. Is Lignox 2% Injection injection painful?', 'No, Lignox 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Lignox 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13612, 'Lignox 2% Injection', 'Indoco Remedies Ltd', 'Lignox 2% Injection', 'Q. Who should not be given Lignox 2% Injection?', 'Lignox 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13613, 'Lignox 2% Injection', 'Indoco Remedies Ltd', 'Lignox 2% Injection', 'Q. Can Lignox 2% Injection be abused?', 'No, abuse of Lignox 2% Injection has not been observed yet. There are very rare reports of Lignox 2% Injection injection causing any euphoric effect. However, Lignox 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13614, 'Lignox 2L Injection', 'Indoco Remedies Ltd', 'Lignox 2L Injection', 'How long does the effect of Lignox 2L Injection lasts?', 'The anesthetic effect of Lignox 2L Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13615, 'Lignox 2L Injection', 'Indoco Remedies Ltd', 'Lignox 2L Injection', 'Is Lignox 2L Injection injection painful?', 'No, Lignox 2L Injection injection does not cause pain except when it is given as spinal anesthesia. Lignox 2L Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13616, 'Lignox 2L Injection', 'Indoco Remedies Ltd', 'Lignox 2L Injection', 'Who should not be given Lignox 2L Injection?', 'Lignox 2L Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13617, 'Lignox 2L Injection', 'Indoco Remedies Ltd', 'Lignox 2L Injection', 'Can Lignox 2L Injection be abused?', 'No, abuse of Lignox 2L Injection has not been observed yet. There are very rare reports of Lignox 2L Injection injection causing any euphoric effect. However, Lignox 2L Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13618, 'Lignox Spray', 'Indoco Remedies Ltd', 'Lignox Spray', 'What is Lignox Spray used for?', 'Lignox Spray is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(13619, 'Lignox Spray', 'Indoco Remedies Ltd', 'Lignox Spray', 'How long does it take for Lignox Spray to work?', 'Lignox Spray is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(13620, 'Lignox Spray', 'Indoco Remedies Ltd', 'Lignox Spray', 'Is Lignox Spray toxic?', 'If Lignox Spray is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(13621, 'Ligocain 2% Injection', 'Scott Edil Pharmacia Ltd', 'Ligocain 2% Injection', 'How long does the effect of Ligocain 2% Injection lasts?', 'The anesthetic effect of Ligocain 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13622, 'Ligocain 2% Injection', 'Scott Edil Pharmacia Ltd', 'Ligocain 2% Injection', 'Is Ligocain 2% Injection injection painful?', 'No, Ligocain 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Ligocain 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13623, 'Ligocain 2% Injection', 'Scott Edil Pharmacia Ltd', 'Ligocain 2% Injection', 'Who should not be given Ligocain 2% Injection?', 'Ligocain 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13624, 'Ligocain 2% Injection', 'Scott Edil Pharmacia Ltd', 'Ligocain 2% Injection', 'Can Ligocain 2% Injection be abused?', 'No, abuse of Ligocain 2% Injection has not been observed yet. There are very rare reports of Ligocain 2% Injection injection causing any euphoric effect. However, Ligocain 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13625, 'Ligopil 2% Injection', 'Psychotropics India Ltd', 'Ligopil 2% Injection', 'How long does the effect of Ligopil 2% Injection lasts?', 'The anesthetic effect of Ligopil 2% Injection starts acting rapidly. However, it has a very short duration of action of 10-20 minutes after intravenous injection and 60-90 minutes after intramuscular action. The quantity of medicine reduces into half (into the blood-stream) within 1.5 to 2 hours of taking it.'),
(13626, 'Ligopil 2% Injection', 'Psychotropics India Ltd', 'Ligopil 2% Injection', 'Is Ligopil 2% Injection injection painful?', 'No, Ligopil 2% Injection injection does not cause pain except when it is given as spinal anesthesia. Ligopil 2% Injection usually relieves pain in conditions like neuropathic pain and pain occurring after surgery.'),
(13627, 'Ligopil 2% Injection', 'Psychotropics India Ltd', 'Ligopil 2% Injection', 'Who should not be given Ligopil 2% Injection?', 'Ligopil 2% Injection should not be given to patients who are allergic to it, have decreased blood volume (hypovolemia), or complete heart block. If the solution also contains adrenaline, it should not be injected into a vein or used in areas such as fingers, toes, ears, nose or penis, as the blood supply to these areas may not be sufficient.'),
(13628, 'Ligopil 2% Injection', 'Psychotropics India Ltd', 'Ligopil 2% Injection', 'Can Ligopil 2% Injection be abused?', 'No, abuse of Ligopil 2% Injection has not been observed yet. There are very rare reports of Ligopil 2% Injection injection causing any euphoric effect. However, Ligopil 2% Injection may cause some psychotic reactions such as fear from death, doom anxiety, and delirium. These are short-lasting and generally disappear after the effect of injection is over.'),
(13629, 'Ligotil 5 Tablet', 'Fawn Incorporation', 'Ligotil 5 Tablet', 'What is Ligotil 5 Tablet used for?', 'Ligotil 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Ligotil 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Ligotil 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13630, 'Ligotil 5 Tablet', 'Fawn Incorporation', 'Ligotil 5 Tablet', 'When should I take Ligotil 5 Tablet? What if I miss a dose?', 'Ligotil 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(13631, 'Ligotil 5 Tablet', 'Fawn Incorporation', 'Ligotil 5 Tablet', 'Is Ligotil 5 Tablet bad for kidneys?', 'No, there is no evidence that Ligotil 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(13632, 'Ligotil 5 Tablet', 'Fawn Incorporation', 'Ligotil 5 Tablet', 'Is Ligotil 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Ligotil 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(13633, 'Ligotil 5 Tablet', 'Fawn Incorporation', 'Ligotil 5 Tablet', 'For how long I have to take Ligotil 5 Tablet? Can I stop the medication?', 'You should keep taking Ligotil 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(13634, 'Ligotil-M 2.5/500 Tablet', 'Fawn Incorporation', 'Ligotil-M 2.5/500 Tablet', 'Can the use of Ligotil-M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Ligotil-M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Ligotil-M 2.5/500 Tablet and immediately consult your doctor.'),
(13635, 'Ligotil-M 2.5/500 Tablet', 'Fawn Incorporation', 'Ligotil-M 2.5/500 Tablet', 'What are the possible side effects of Ligotil-M 2.5/500 Tablet?', 'The use of Ligotil-M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(13636, 'Ligotil-M 2.5/500 Tablet', 'Fawn Incorporation', 'Ligotil-M 2.5/500 Tablet', 'Are there any specific conditions in which Ligotil-M 2.5/500 Tablet should not be taken?', 'The use of Ligotil-M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Ligotil-M 2.5/500 Tablet.'),
(13637, 'Ligotil-M 2.5/500 Tablet', 'Fawn Incorporation', 'Ligotil-M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Ligotil-M 2.5/500 Tablet?', 'No, it is not safe to take Ligotil-M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(13638, 'Ligotil-M 2.5/500 Tablet', 'Fawn Incorporation', 'Ligotil-M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Ligotil-M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13639, 'Ligotil-M 2.5/500 Tablet', 'Fawn Incorporation', 'Ligotil-M 2.5/500 Tablet', 'Can the use of Ligotil-M 2.5/500 Tablet cause hypoglycemia?', 'The use of Ligotil-M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(13640, 'Ligotil-M 2.5/500 Tablet', 'Fawn Incorporation', 'Ligotil-M 2.5/500 Tablet', 'Can the use of Ligotil-M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Ligotil-M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(13641, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'What is Ligro 120mg Tablet used for?', 'Ligro 120mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(13642, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'What should I tell my doctor before starting treatment with Ligro 120mg Tablet?', 'Before starting treatment with Ligro 120mg Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(13643, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'What if I forget to take a dose of Ligro 120mg Tablet?', 'If you forget a dose of Ligro 120mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13644, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'Who should not take Ligro 120mg Tablet?', 'Ligro 120mg Tablet should not be given to patients with known allergy to any other ingredients of this medicine. Signs of an allergic reaction may include an itchy skin rash, shortness of breath, and swelling of the face or tongue.'),
(13645, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'Can I stop taking Ligro 120mg Tablet if I feel better?', 'No. You should not stop taking Ligro 120mg Tablet even if you feel better unless your doctor tells you to stop taking it. This is because, stopping the medicine suddenly, without completing your full course of treatment may cause the returning of your symptoms and it can even worsen your condition. Consult your doctor if you are not sure.'),
(13646, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'Is Ligro 120mg Tablet an antibiotic?', 'No. Ligro 120mg Tablet is not an antibiotic. It is an anti-allergy medicine and helps to treat allergic conditions such as sneezing, stuffy or runny nose, hives, etc. On the other hand, antibiotics are used to treat infections caused by bacteria.'),
(13647, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'Can Ligro 120mg Tablet cause dizziness?', 'Yes, Ligro 120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for some time and resume once you feel better.'),
(13648, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'What is Ligro 120mg Tablet used for?', 'Ligro 120mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(13649, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'What should I tell my doctor before starting treatment with Ligro 120mg Tablet?', 'Before starting treatment with Ligro 120mg Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(13650, 'Ligro 120mg Tablet', 'Adikem Lifescience', 'Ligro 120mg Tablet', 'What if I forget to take a dose of Ligro 120mg Tablet?', 'If you forget a dose of Ligro 120mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13651, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'Can Ligro M 4mg/60mg Tablet cause behavioral problems in my child?', 'Ligro M 4mg/60mg Tablet contains ingredients that can interfere with brain activity and may cause drowsiness, irritability, and behavioral problems.'),
(13652, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'Which food items should my child avoid taking along with Ligro M 4mg/60mg Tablet?', 'Do not give high-fat meals and fruit juices to your child along with Ligro M 4mg/60mg Tablet as they may interfere with the absorption of this medicine. Make sure to keep a gap of at least 4 hours between giving this medicine and food to your child. This is done to significantly decrease any possible interaction between the two.'),
(13653, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'Can other medicines be given at the same time as Ligro M 4mg/60mg Tablet?', 'Ligro M 4mg/60mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Ligro M 4mg/60mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(13654, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'Can I decrease the dose of Ligro M 4mg/60mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(13655, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'How should Ligro M 4mg/60mg Tablet be stored?', 'Ligro M 4mg/60mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(13656, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'Can Ligro M 4mg/60mg Tablet make my child sleepy?', 'Ligro M 4mg/60mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(13657, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Ligro M 4mg/60mg Tablet?', 'No, don’t start Ligro M 4mg/60mg Tablet without speaking to your child’s doctor. Moreover, Ligro M 4mg/60mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(13658, 'Ligro M 4mg/60mg Tablet', 'Adikem Lifescience', 'Ligro M 4mg/60mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Ligro M 4mg/60mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(13659, 'Ligzol Ear Drop', 'Torainse Life Care Pvt Ltd', 'Ligzol Ear Drop', 'When will this medicine start working?', 'Ligzol Ear Drop will start working immediately after using it. However, it may take 2-3 days to make you feel better.'),
(13660, 'Ligzol Ear Drop', 'Torainse Life Care Pvt Ltd', 'Ligzol Ear Drop', 'Can I stop using Ligzol Ear Drop when my symptoms are relieved?', 'No, do not stop taking Ligzol Ear Drop and complete the full course of treatment, even if you feel better. Your symptoms may improve before the disease is completely cured.'),
(13661, 'Ligzol Ear Drop', 'Torainse Life Care Pvt Ltd', 'Ligzol Ear Drop', 'What are the contraindications associated with the use of Ligzol Ear Drop?', 'Ligzol Ear Drop is considered to be harmful for patients who are allergic to Lidocane, Beclometasone, Clotrimazole, Chloramphenicol or any of its other constituents. Inform your doctor about your medical history before using Ligzol Ear Drop.'),
(13662, 'Ligzol Ear Drop', 'Torainse Life Care Pvt Ltd', 'Ligzol Ear Drop', 'What are the instructions for storage and disposal of Ligzol Ear Drop?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13663, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'What is Likair 50mg/325mg Tablet?', 'Likair 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(13664, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Is it safe to use Likair 50mg/325mg Tablet?', 'Yes, Likair 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(13665, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Can I stop taking Likair 50mg/325mg Tablet when my pain is relieved?', 'Likair 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(13666, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Can the use of Likair 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Likair 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13667, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Can the use of Likair 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Likair 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(13668, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Can the use of Likair 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Likair 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(13669, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Likair 50mg/325mg Tablet?', 'The use of Likair 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(13670, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Can Likair 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Likair 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Likair 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(13671, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Likair 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Likair 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(13672, 'Likair 50mg/325mg Tablet', 'Linex Pharmaceuticals', 'Likair 50mg/325mg Tablet', 'What is the recommended storage condition for Likair 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13673, 'Likem 600mg Tablet', 'Welkem Pharma', 'Likem 600mg Tablet', 'Can the use of Likem 600mg Tablet cause diarrhea?', 'Yes, the use of Likem 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13674, 'Likem 600mg Tablet', 'Welkem Pharma', 'Likem 600mg Tablet', 'What foods should I avoid while taking Likem 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Likem 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(13675, 'Likezol 1% Cream', 'Habitare Pharma', 'Likezol 1% Cream', 'Is Likezol 1% Cream safe in pregnancy?', 'Likezol 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Likezol 1% Cream.'),
(13676, 'Likezol 1% Cream', 'Habitare Pharma', 'Likezol 1% Cream', 'Is Likezol 1% Cream fungicidal or Fungistatic?', 'Likezol 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13677, 'Likezol 1% Cream', 'Habitare Pharma', 'Likezol 1% Cream', 'How to use Likezol 1% Cream?', 'Use Likezol 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13678, 'Likezol 1% Cream', 'Habitare Pharma', 'Likezol 1% Cream', 'How long does it take for Likezol 1% Cream to work?', 'For different ailments, Likezol 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13679, 'Likezol 1% Cream', 'Habitare Pharma', 'Likezol 1% Cream', 'How should I store Likezol 1% Cream?', 'Keep Likezol 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13680, 'Likezol 1% Cream', 'Habitare Pharma', 'Likezol 1% Cream', 'Is Likezol 1% Cream safe to use in children?', 'Yes, Likezol 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13681, 'Likon 300mg Tablet', 'Konark Biochem', 'Likon 300mg Tablet', 'How quickly does Likon 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Likon 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Likon 300mg Tablet. Do not stop taking Likon 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(13682, 'Likon 300mg Tablet', 'Konark Biochem', 'Likon 300mg Tablet', 'Does Likon 300mg Tablet make you sleepy?', 'Yes, Likon 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(13683, 'Likon 300mg Tablet', 'Konark Biochem', 'Likon 300mg Tablet', 'Is Likon 300mg Tablet bad for kidneys?', 'Yes, Likon 300mg Tablet may cause kidney problems. Likon 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Likon 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Likon 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(13684, 'Likon 300mg Tablet', 'Konark Biochem', 'Likon 300mg Tablet', 'Can Likon 300mg Tablet cause gain in weight?', 'Likon 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Likon 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Likon 300mg Tablet or some other reason.'),
(13685, 'Likon 300mg Tablet', 'Konark Biochem', 'Likon 300mg Tablet', 'What is the most important information I should know about Likon 300mg Tablet?', 'Likon 300mg Tablet therapy should only be started if adequate facilities for assessing Likon 300mg Tablet levels are available. This is because Likon 300mg Tablet toxicity is related to increased levels of Likon 300mg Tablet in blood. Likon 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Likon 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(13686, 'Likon 300mg Tablet', 'Konark Biochem', 'Likon 300mg Tablet', 'How should Likon 300mg Tablet be taken?', 'Take Likon 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Likon 300mg Tablet levels.'),
(13687, 'Likon 300mg Tablet', 'Konark Biochem', 'Likon 300mg Tablet', 'Which medicines decrease Likon 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Likon 300mg Tablet since many medicines interfere with the working of Likon 300mg Tablet. Some medicines decrease the levels of Likon 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(13688, 'Lilac 1% Cream', 'AS Lifesciences', 'Lilac 1% Cream', 'Is Lilac 1% Cream safe in pregnancy?', 'Lilac 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilac 1% Cream.'),
(13689, 'Lilac 1% Cream', 'AS Lifesciences', 'Lilac 1% Cream', 'Is Lilac 1% Cream fungicidal or Fungistatic?', 'Lilac 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13690, 'Lilac 1% Cream', 'AS Lifesciences', 'Lilac 1% Cream', 'How to use Lilac 1% Cream?', 'Use Lilac 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13691, 'Lilac 1% Cream', 'AS Lifesciences', 'Lilac 1% Cream', 'How long does it take for Lilac 1% Cream to work?', 'For different ailments, Lilac 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13692, 'Lilac 1% Cream', 'AS Lifesciences', 'Lilac 1% Cream', 'How should I store Lilac 1% Cream?', 'Keep Lilac 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13693, 'Lilac 1% Cream', 'AS Lifesciences', 'Lilac 1% Cream', 'Is Lilac 1% Cream safe to use in children?', 'Yes, Lilac 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13694, 'Lilac 1% Lotion', 'AS Lifesciences', 'Lilac 1% Lotion', 'Is Lilac 1% Lotion safe in pregnancy?', 'Lilac 1% Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilac 1% Lotion.'),
(13695, 'Lilac 1% Lotion', 'AS Lifesciences', 'Lilac 1% Lotion', 'Is Lilac 1% Lotion fungicidal or Fungistatic?', 'Lilac 1% Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13696, 'Lilac 1% Lotion', 'AS Lifesciences', 'Lilac 1% Lotion', 'How to use Lilac 1% Lotion?', 'Use Lilac 1% Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13697, 'Lilac 1% Lotion', 'AS Lifesciences', 'Lilac 1% Lotion', 'How long does it take for Lilac 1% Lotion to work?', 'For different ailments, Lilac 1% Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13698, 'Lilac 1% Lotion', 'AS Lifesciences', 'Lilac 1% Lotion', 'How should I store Lilac 1% Lotion?', 'Keep Lilac 1% Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13699, 'Lilac 1% Lotion', 'AS Lifesciences', 'Lilac 1% Lotion', 'Is Lilac 1% Lotion safe to use in children?', 'Yes, Lilac 1% Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13700, 'Lilacin 150 Capsule', 'Shef Biotech', 'Lilacin 150 Capsule', 'How long does Lilacin 150 Capsule take to work?', 'Usually, Lilacin 150 Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(13701, 'Lilacin 150 Capsule', 'Shef Biotech', 'Lilacin 150 Capsule', 'Can the use of Lilacin 150 Capsule cause diarrhea?', 'Yes, the use of Lilacin 150 Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13702, 'Lilacin 150 Capsule', 'Shef Biotech', 'Lilacin 150 Capsule', 'Is Lilacin 150 Capsule effective?', 'Lilacin 150 Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lilacin 150 Capsule too early, the symptoms may return or worsen.'),
(13703, 'Lilacin 150 Capsule', 'Shef Biotech', 'Lilacin 150 Capsule', 'What if I don\'t get better after using Lilacin 150 Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(13704, 'Lilacin 150 Capsule', 'Shef Biotech', 'Lilacin 150 Capsule', 'Is Lilacin 150 Capsule safe?', 'Lilacin 150 Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(13705, 'Lilacin 150 Capsule', 'Shef Biotech', 'Lilacin 150 Capsule', 'Can I stop taking Lilacin 150 Capsule when I feel better?', 'No, do not stop taking Lilacin 150 Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13706, 'Lilacin 150 Capsule', 'Shef Biotech', 'Lilacin 150 Capsule', 'Is Lilacin 150 Capsule effective?', 'Lilacin 150 Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lilacin 150 Capsule too early, the symptoms may return or worsen.'),
(13707, 'Lilanzo 15mg Tablet DT', 'Mensa Futura Life Sciences Pvt Ltd', 'Lilanzo 15mg Tablet DT', 'What is Lilanzo 15mg Tablet DT? What is it used for?', 'Lilanzo 15mg Tablet DT belongs to a class of medicines known as proton pump inhibitors. Lilanzo 15mg Tablet DT is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(13708, 'Lilanzo 15mg Tablet DT', 'Mensa Futura Life Sciences Pvt Ltd', 'Lilanzo 15mg Tablet DT', 'How is Lilanzo 15mg Tablet DT given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Lilanzo 15mg Tablet DT through the nasogastric (NG) tube. Open the Lilanzo 15mg Tablet DT capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(13709, 'Lilanzo 15mg Tablet DT', 'Mensa Futura Life Sciences Pvt Ltd', 'Lilanzo 15mg Tablet DT', 'Should Lilanzo 15mg Tablet DT be taken empty stomach or with food?', 'Usually, Lilanzo 15mg Tablet DT is taken once a day, first thing in the morning, on an empty stomach. If you take Lilanzo 15mg Tablet DT twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(13710, 'Lilanzo 15mg Tablet DT', 'Mensa Futura Life Sciences Pvt Ltd', 'Lilanzo 15mg Tablet DT', 'While taking Lilanzo 15mg Tablet DT, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(13711, 'Lilanzo 15mg Tablet DT', 'Mensa Futura Life Sciences Pvt Ltd', 'Lilanzo 15mg Tablet DT', 'Is Lilanzo 15mg Tablet DT used for children?', 'Yes, Lilanzo 15mg Tablet DT is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Lilanzo 15mg Tablet DT are established only in children between 1 to 17 years of age.'),
(13712, 'Lilbecep 50mg Injection', 'Eli Lilly and Company India Pvt Ltd', 'Lilbecep 50mg Injection', 'Is Lilbecep 50mg Injection a vesicant (agent that causes tissue blistering and damage)?', 'Yes, Lilbecep 50mg Injection is a vesicant; it may cause tissue blistering if it leaks out of the vein.'),
(13713, 'Lilbecep 50mg Injection', 'Eli Lilly and Company India Pvt Ltd', 'Lilbecep 50mg Injection', 'How effective is Lilbecep 50mg Injection?', 'Lilbecep 50mg Injection is effective in the treatment of various cancers including cancer of the breast, ovary, stomach, lung, bowel or rectum, malignant lymphomas (a type of blood cancer of infection-fighting cells of the blood) such as Hodgkin\'s disease and non-Hodgkin\'s lymphoma, leukemia (blood cancer), multiple myeloma (a type of blood cancer of infection-fighting cells of the blood). It may be used in bladder cancers and to prevent reoccurrence of bladder cancer after surgery. It effectively slows or stops the growth of cancer cells in the body.'),
(13714, 'Lili 5 Tablet', 'Solkem Pharmaceutical', 'Lili 5 Tablet', 'Is Lili 5 Tablet a steroid? What is it used for?', 'No, Lili 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(13715, 'Lili 5 Tablet', 'Solkem Pharmaceutical', 'Lili 5 Tablet', 'Does Lili 5 Tablet make you tired and drowsy?', 'Yes, Lili 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(13716, 'Lili 5 Tablet', 'Solkem Pharmaceutical', 'Lili 5 Tablet', 'How long does it take for Lili 5 Tablet to work?', 'Lili 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(13717, 'Lili 5 Tablet', 'Solkem Pharmaceutical', 'Lili 5 Tablet', 'Can I take Lili 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lili 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(13718, 'Lili 5 Tablet', 'Solkem Pharmaceutical', 'Lili 5 Tablet', 'Is it safe to take Lili 5 Tablet for a long time?', 'Lili 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lili 5 Tablet for only as long as you need it.'),
(13719, 'Lili 5 Tablet', 'Solkem Pharmaceutical', 'Lili 5 Tablet', 'For how long should I continue Lili 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lili 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lili 5 Tablet'),
(13720, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(13721, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Lili M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(13722, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'How should Lili M Kid 2.5mg/4mg Tablet be stored?', 'Lili M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(13723, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'Can Lili M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Lili M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(13724, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lili M Kid 2.5mg/4mg Tablet?', 'No, don’t start Lili M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Lili M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(13725, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lili M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(13726, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Lili M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Lili M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(13727, 'Lili M Kid 2.5mg/4mg Tablet', 'Solkem Pharmaceutical', 'Lili M Kid 2.5mg/4mg Tablet', 'Can I use Lili M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Lili M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(13728, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'What is Liliace P 100mg/325mg Tablet?', 'Liliace P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(13729, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Is it safe to use Liliace P 100mg/325mg Tablet?', 'Liliace P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(13730, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Can I stop taking Liliace P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Liliace P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(13731, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Can the use of Liliace P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Liliace P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(13732, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Can the use of Liliace P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Liliace P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(13733, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Liliace P 100mg/325mg Tablet?', 'The use of Liliace P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(13734, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Can Liliace P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Liliace P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Liliace P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(13735, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Is Liliace P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Liliace P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(13736, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Can the use of Liliace P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Liliace P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(13737, 'Liliace P 100mg/325mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Liliace P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Liliace P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(13738, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'What is Liliace SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(13739, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Is it safe to take Liliace SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(13740, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Can I stop taking Liliace SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13741, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Can Liliace SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(13742, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Can Liliace SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(13743, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Liliace SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(13744, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Can I take Liliace SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(13745, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Can the use of Liliace SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(13746, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Liliace SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13747, 'Liliace SP 100mg/325mg/15mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace SP 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Liliace SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13748, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'What is Liliace T 100mg/4mg Tablet?', 'Liliace T 100mg/4mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(13749, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'Is it safe to use Liliace T 100mg/4mg Tablet?', 'Yes, Liliace T 100mg/4mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(13750, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'Can the Liliace T 100mg/4mg Tablet be stopped when my pain is relieved?', 'Liliace T 100mg/4mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Liliace T 100mg/4mg Tablet should be continued if your doctor has advised you to do so.'),
(13751, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'Can the use of Liliace T 100mg/4mg Tablet cause dizziness?', 'Yes, the use of Liliace T 100mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(13752, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'Are there any specific contraindications associated with the use of Liliace T 100mg/4mg Tablet?', 'The use of Liliace T 100mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(13753, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'Can Liliace T 100mg/4mg Tablet be taken with Vitamin B-complex?', 'Yes, Liliace T 100mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Liliace T 100mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(13754, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'Can the use of Liliace T 100mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Liliace T 100mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(13755, 'Liliace T 100mg/4mg Tablet', 'Medimind Drugs and Chemicals', 'Liliace T 100mg/4mg Tablet', 'Will Liliace T 100mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(13756, 'Lilibase 1% Cream', 'Aplonis Healthcare', 'Lilibase 1% Cream', 'Is Lilibase 1% Cream safe in pregnancy?', 'Lilibase 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilibase 1% Cream.'),
(13757, 'Lilibase 1% Cream', 'Aplonis Healthcare', 'Lilibase 1% Cream', 'Is Lilibase 1% Cream fungicidal or Fungistatic?', 'Lilibase 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13758, 'Lilibase 1% Cream', 'Aplonis Healthcare', 'Lilibase 1% Cream', 'How to use Lilibase 1% Cream?', 'Use Lilibase 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13759, 'Lilibase 1% Cream', 'Aplonis Healthcare', 'Lilibase 1% Cream', 'How long does it take for Lilibase 1% Cream to work?', 'For different ailments, Lilibase 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13760, 'Lilibase 1% Cream', 'Aplonis Healthcare', 'Lilibase 1% Cream', 'How should I store Lilibase 1% Cream?', 'Keep Lilibase 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13761, 'Lilibase 1% Cream', 'Aplonis Healthcare', 'Lilibase 1% Cream', 'Is Lilibase 1% Cream safe to use in children?', 'Yes, Lilibase 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13762, 'Lilica Zole Cream', 'Kanish Biotech', 'Lilica Zole Cream', 'Is Lilica Zole Cream safe in pregnancy?', 'Lilica Zole Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilica Zole Cream.'),
(13763, 'Lilica Zole Cream', 'Kanish Biotech', 'Lilica Zole Cream', 'Is Lilica Zole Cream fungicidal or Fungistatic?', 'Lilica Zole Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13764, 'Lilica Zole Cream', 'Kanish Biotech', 'Lilica Zole Cream', 'How to use Lilica Zole Cream?', 'Use Lilica Zole Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13765, 'Lilica Zole Cream', 'Kanish Biotech', 'Lilica Zole Cream', 'How long does it take for Lilica Zole Cream to work?', 'For different ailments, Lilica Zole Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13766, 'Lilica Zole Cream', 'Kanish Biotech', 'Lilica Zole Cream', 'How should I store Lilica Zole Cream?', 'Keep Lilica Zole Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13767, 'Lilica Zole Cream', 'Kanish Biotech', 'Lilica Zole Cream', 'Is Lilica Zole Cream safe to use in children?', 'Yes, Lilica Zole Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13768, 'Lilicef 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilicef 100mg Tablet DT', 'How long should I take Lilicef 100mg Tablet DT?', 'Lilicef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(13769, 'Lilicef 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilicef 100mg Tablet DT', 'What if I do not get better after using Lilicef 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(13770, 'Lilicef 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilicef 100mg Tablet DT', 'Can the use of Lilicef 100mg Tablet DT cause diarrhea?', 'Yes, the use of Lilicef 100mg Tablet DT can cause diarrhea. Lilicef 100mg Tablet DT is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(13771, 'Lilicef 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilicef 100mg Tablet DT', 'Is Lilicef 100mg Tablet DT effective?', 'Lilicef 100mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lilicef 100mg Tablet DT too early, the symptoms may return or worsen.'),
(13772, 'Lilicef 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilicef 100mg Tablet DT', 'What if I forget to take a dose of Lilicef 100mg Tablet DT?', 'If you forget a dose of Lilicef 100mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13773, 'Lilicef 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilicef 100mg Tablet DT', 'Is Lilicef 100mg Tablet DT safe for the kidneys?', 'Yes, Lilicef 100mg Tablet DT is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(13774, 'Lilicef 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilicef 100mg Tablet DT', 'How long should I take Lilicef 100mg Tablet DT?', 'Lilicef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(13775, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'Can I stop taking Lilicef O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lilicef O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13776, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lilicef O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(13777, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'Can the use of Lilicef O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lilicef O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13778, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'What if I don\'t get better after using Lilicef O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(13779, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'Does the use of Lilicef O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lilicef O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(13780, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(13781, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'Can I drive while I am taking Lilicef O 200mg/200mg Tablet?', 'No, taking Lilicef O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(13782, 'Lilicef O 200mg/200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilicef O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Lilicef O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13783, 'Lilicinav Cream', 'Inavars Biologicals Inc', 'Lilicinav Cream', 'Is Lilicinav Cream safe in pregnancy?', 'Lilicinav Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilicinav Cream.'),
(13784, 'Lilicinav Cream', 'Inavars Biologicals Inc', 'Lilicinav Cream', 'Is Lilicinav Cream fungicidal or Fungistatic?', 'Lilicinav Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13785, 'Lilicinav Cream', 'Inavars Biologicals Inc', 'Lilicinav Cream', 'How to use Lilicinav Cream?', 'Use Lilicinav Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13786, 'Lilicinav Cream', 'Inavars Biologicals Inc', 'Lilicinav Cream', 'How long does it take for Lilicinav Cream to work?', 'For different ailments, Lilicinav Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13787, 'Lilicinav Cream', 'Inavars Biologicals Inc', 'Lilicinav Cream', 'How should I store Lilicinav Cream?', 'Keep Lilicinav Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13788, 'Lilicinav Cream', 'Inavars Biologicals Inc', 'Lilicinav Cream', 'Is Lilicinav Cream safe to use in children?', 'Yes, Lilicinav Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13789, 'Lilimak 1% Ointment', 'Trimak Lifesciences', 'Lilimak 1% Ointment', 'Q. Is Lilimak 1% Ointment safe in pregnancy?', 'Lilimak 1% Ointment should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilimak 1% Ointment.'),
(13790, 'Lilimak 1% Ointment', 'Trimak Lifesciences', 'Lilimak 1% Ointment', 'Q. Is Lilimak 1% Ointment fungicidal or Fungistatic?', 'Lilimak 1% Ointment has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13791, 'Lilimak 1% Ointment', 'Trimak Lifesciences', 'Lilimak 1% Ointment', 'Q. How to use Lilimak 1% Ointment?', 'Use Lilimak 1% Ointment exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13792, 'Lilimak 1% Ointment', 'Trimak Lifesciences', 'Lilimak 1% Ointment', 'Q. How long does it take for Lilimak 1% Ointment to work?', 'For different ailments, Lilimak 1% Ointment works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13793, 'Lilimak 1% Ointment', 'Trimak Lifesciences', 'Lilimak 1% Ointment', 'Q. How should I store Lilimak 1% Ointment?', 'Keep Lilimak 1% Ointment in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13794, 'Lilimak 1% Ointment', 'Trimak Lifesciences', 'Lilimak 1% Ointment', 'Q. Is Lilimak 1% Ointment safe to use in children?', 'Yes, Lilimak 1% Ointment is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13795, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'Is Lilipod 100mg Tablet DT safe to use?', 'Lilipod 100mg Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(13796, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'Can the use of Lilipod 100mg Tablet DT cause diarrhea?', 'Yes, the use of Lilipod 100mg Tablet DT can cause diarrhea. Lilipod 100mg Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(13797, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'Is Lilipod 100mg Tablet DT an antibiotic?', 'Yes, Lilipod 100mg Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(13798, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'Can Lilipod 100mg Tablet DT cause constipation?', 'Yes, Lilipod 100mg Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(13799, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'Can I stop taking Lilipod 100mg Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lilipod 100mg Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(13800, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'How long does Lilipod 100mg Tablet DT take to work?', 'Usually, Lilipod 100mg Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(13801, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'What if I do not get better after using Lilipod 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(13802, 'Lilipod 100mg Tablet DT', 'Medimind Drugs and Chemicals', 'Lilipod 100mg Tablet DT', 'Can Lilipod 100mg Tablet DT treat UTI?', 'Yes, Lilipod 100mg Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lilipod 100mg Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(13803, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'Is Lilipod 200mg Tablet safe to use?', 'Lilipod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(13804, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'Can the use of Lilipod 200mg Tablet cause diarrhea?', 'Yes, the use of Lilipod 200mg Tablet can cause diarrhea. Lilipod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(13805, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'Is Lilipod 200mg Tablet an antibiotic?', 'Yes, Lilipod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(13806, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'Can Lilipod 200mg Tablet cause constipation?', 'Yes, Lilipod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(13807, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'Can I stop taking Lilipod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lilipod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(13808, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'How long does Lilipod 200mg Tablet take to work?', 'Usually, Lilipod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(13809, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'What if I do not get better after using Lilipod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(13810, 'Lilipod 200mg Tablet', 'Medimind Drugs and Chemicals', 'Lilipod 200mg Tablet', 'Can Lilipod 200mg Tablet treat UTI?', 'Yes, Lilipod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lilipod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(13811, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. What if I give too much of Lilipod 50mg Dry Syrup by mistake?', 'An extra dose of Lilipod 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lilipod 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(13812, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. Are there any possible serious side effects of Lilipod 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(13813, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. Can other medicines be given at the same time as Lilipod 50mg Dry Syrup?', 'Lilipod 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lilipod 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(13814, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. Can I get my child vaccinated while on treatment with Lilipod 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(13815, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. Which lab tests may my child undergo while taking Lilipod 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(13816, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(13817, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(13818, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(13819, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. Can Lilipod 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lilipod 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lilipod 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(13820, 'Lilipod 50mg Dry Syrup', 'Medimind Drugs and Chemicals', 'Lilipod 50mg Dry Syrup', 'Q. Can Lilipod 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lilipod 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(13821, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'What is Lilirab D 30mg/20mg Capsule SR?', 'Lilirab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(13822, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'What are the contraindications of Lilirab D 30mg/20mg Capsule SR?', 'The use of Lilirab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(13823, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'Can the use of Lilirab D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Lilirab D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(13824, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'Can the use of Lilirab D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Lilirab D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(13825, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Lilirab D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13826, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'Is it safe to use Lilirab D 30mg/20mg Capsule SR?', 'Yes, Lilirab D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(13827, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'What is the best time to take Lilirab D 30mg/20mg Capsule SR?', 'It is best to take Lilirab D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(13828, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'Can the use of Lilirab D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Lilirab D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(13829, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'What is Lilirab D 30mg/20mg Capsule SR?', 'Lilirab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(13830, 'Lilirab D 30mg/20mg Capsule SR', 'Medimind Drugs and Chemicals', 'Lilirab D 30mg/20mg Capsule SR', 'What are the contraindications of Lilirab D 30mg/20mg Capsule SR?', 'The use of Lilirab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(13831, 'Lilisung 1% Cream', 'Neoliva Formulations', 'Lilisung 1% Cream', 'Is Lilisung 1% Cream safe in pregnancy?', 'Lilisung 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilisung 1% Cream.'),
(13832, 'Lilisung 1% Cream', 'Neoliva Formulations', 'Lilisung 1% Cream', 'Is Lilisung 1% Cream fungicidal or Fungistatic?', 'Lilisung 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13833, 'Lilisung 1% Cream', 'Neoliva Formulations', 'Lilisung 1% Cream', 'How to use Lilisung 1% Cream?', 'Use Lilisung 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13834, 'Lilisung 1% Cream', 'Neoliva Formulations', 'Lilisung 1% Cream', 'How long does it take for Lilisung 1% Cream to work?', 'For different ailments, Lilisung 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13835, 'Lilisung 1% Cream', 'Neoliva Formulations', 'Lilisung 1% Cream', 'How should I store Lilisung 1% Cream?', 'Keep Lilisung 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13836, 'Lilisung 1% Cream', 'Neoliva Formulations', 'Lilisung 1% Cream', 'Is Lilisung 1% Cream safe to use in children?', 'Yes, Lilisung 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13837, 'Lilitame Cream', 'Culmen Healthcare', 'Lilitame Cream', 'Is Lilitame Cream safe in pregnancy?', 'Lilitame Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilitame Cream.'),
(13838, 'Lilitame Cream', 'Culmen Healthcare', 'Lilitame Cream', 'Is Lilitame Cream fungicidal or Fungistatic?', 'Lilitame Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13839, 'Lilitame Cream', 'Culmen Healthcare', 'Lilitame Cream', 'How to use Lilitame Cream?', 'Use Lilitame Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13840, 'Lilitame Cream', 'Culmen Healthcare', 'Lilitame Cream', 'How long does it take for Lilitame Cream to work?', 'For different ailments, Lilitame Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13841, 'Lilitame Cream', 'Culmen Healthcare', 'Lilitame Cream', 'How should I store Lilitame Cream?', 'Keep Lilitame Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13842, 'Lilitame Cream', 'Culmen Healthcare', 'Lilitame Cream', 'Is Lilitame Cream safe to use in children?', 'Yes, Lilitame Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13843, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. Is Lilituf Cream safe in pregnancy?', 'Lilituf Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilituf Cream.'),
(13844, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. Is Lilituf Cream fungicidal or Fungistatic?', 'Lilituf Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13845, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. How to use Lilituf Cream?', 'Use Lilituf Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13846, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. How long does it take for Lilituf Cream to work?', 'For different ailments, Lilituf Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13847, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. How should I store Lilituf Cream?', 'Keep Lilituf Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13848, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. Is Lilituf Cream safe to use in children?', 'Yes, Lilituf Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13849, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. Is Lilituf Cream safe in pregnancy?', 'Lilituf Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilituf Cream.'),
(13850, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. Is Lilituf Cream fungicidal or Fungistatic?', 'Lilituf Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13851, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. How to use Lilituf Cream?', 'Use Lilituf Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13852, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. How long does it take for Lilituf Cream to work?', 'For different ailments, Lilituf Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13853, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. How should I store Lilituf Cream?', 'Keep Lilituf Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13854, 'Lilituf Cream', 'Alkem Laboratories Ltd', 'Lilituf Cream', 'Q. Is Lilituf Cream safe to use in children?', 'Yes, Lilituf Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13855, 'Lilituf Lotion', 'Alkem Laboratories Ltd', 'Lilituf Lotion', 'Q. Is Lilituf Lotion safe in pregnancy?', 'Lilituf Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilituf Lotion.'),
(13856, 'Lilituf Lotion', 'Alkem Laboratories Ltd', 'Lilituf Lotion', 'Q. Is Lilituf Lotion fungicidal or Fungistatic?', 'Lilituf Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13857, 'Lilituf Lotion', 'Alkem Laboratories Ltd', 'Lilituf Lotion', 'Q. How to use Lilituf Lotion?', 'Use Lilituf Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13858, 'Lilituf Lotion', 'Alkem Laboratories Ltd', 'Lilituf Lotion', 'Q. How long does it take for Lilituf Lotion to work?', 'For different ailments, Lilituf Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13859, 'Lilituf Lotion', 'Alkem Laboratories Ltd', 'Lilituf Lotion', 'Q. How should I store Lilituf Lotion?', 'Keep Lilituf Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13860, 'Lilituf Lotion', 'Alkem Laboratories Ltd', 'Lilituf Lotion', 'Q. Is Lilituf Lotion safe to use in children?', 'Yes, Lilituf Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13861, 'Lilituf Max 1% Cream', 'Alkem Laboratories Ltd', 'Lilituf Max 1% Cream', 'Is Lilituf Max 1% Cream safe in pregnancy?', 'Lilituf Max 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilituf Max 1% Cream.'),
(13862, 'Lilituf Max 1% Cream', 'Alkem Laboratories Ltd', 'Lilituf Max 1% Cream', 'Is Lilituf Max 1% Cream fungicidal or Fungistatic?', 'Lilituf Max 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13863, 'Lilituf Max 1% Cream', 'Alkem Laboratories Ltd', 'Lilituf Max 1% Cream', 'How to use Lilituf Max 1% Cream?', 'Use Lilituf Max 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13864, 'Lilituf Max 1% Cream', 'Alkem Laboratories Ltd', 'Lilituf Max 1% Cream', 'How long does it take for Lilituf Max 1% Cream to work?', 'For different ailments, Lilituf Max 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13865, 'Lilituf Max 1% Cream', 'Alkem Laboratories Ltd', 'Lilituf Max 1% Cream', 'How should I store Lilituf Max 1% Cream?', 'Keep Lilituf Max 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13866, 'Lilituf Max 1% Cream', 'Alkem Laboratories Ltd', 'Lilituf Max 1% Cream', 'Is Lilituf Max 1% Cream safe to use in children?', 'Yes, Lilituf Max 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13867, 'Lilitus Syrup', 'Medimind Drugs and Chemicals', 'Lilitus Syrup', 'What are the instructions for the storage and disposal of Lilitus Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(13868, 'Lilitus Syrup', 'Medimind Drugs and Chemicals', 'Lilitus Syrup', 'Can I take Lilitus Syrup along with other medicines?', 'Inform your doctor about the medicines you might be taking before using Lilitus Syrup. Let your doctor know if you have any other medical condition.'),
(13869, 'Lilitus Syrup', 'Medimind Drugs and Chemicals', 'Lilitus Syrup', 'Will a higher than the recommended dose of Lilitus Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(13870, 'Lillicip Syrup', 'Zalman Life Sciences', 'Lillicip Syrup', 'My child is having a long-term illness and is on medication. He is underweight with poor nutritional status and doesn\'t feel like eating anything. Can I give Lillicip Syrup?', 'Loss of appetite is a common side effect of some medicines. If given, Lillicip Syrup will help resolve this issue by boosting your child’s appetite and hunger. This will thereby improve your child’s nutritional status. But do make sure to speak to your child’s doctor before giving Lillicip Syrup to your child as that will help decide the perfect dosing and duration. It usually takes around a few days to weeks to show results. Make sure to inform the doctor if your child is taking any other medicines.'),
(13871, 'Lillicip Syrup', 'Zalman Life Sciences', 'Lillicip Syrup', 'My child is restless and unable to sleep properly at night. Can I give Lillicip Syrup?', 'No. It is true that Lillicip Syrup causes drowsiness as a side effect, but you should never give Lillicip Syrup to induce sleep in children. Consult your doctor if you have any queries regarding the use of this medicine or if your child is experiencing sleeplessness as it could be due to some other underlying disease.'),
(13872, 'Lillicip Syrup', 'Zalman Life Sciences', 'Lillicip Syrup', 'How much Lillicip Syrup should I give to my child?', 'Adhere to the dose prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(13873, 'Lillicip Syrup', 'Zalman Life Sciences', 'Lillicip Syrup', 'How should Lillicip Syrup be stored?', 'Lillicip Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(13874, 'Lillicip Syrup', 'Zalman Life Sciences', 'Lillicip Syrup', 'When do I need to call my child’s doctor right away?', 'Never hesitate to consult your child’s doctor in case of any confusion, regarding dosage, duration, side effects, etc. Contact your child’s doctor immediately if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(13875, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'In what dose should I give Lilliclar 125mg Dry Syrup to my child?', 'The dose of Lilliclar 125mg Dry Syrup will be prescribed depending upon the kind of infection, its severity, and your child’s age and body weight. Hence, altering it by yourself may cause side effects or make Lilliclar 125mg Dry Syrup ineffective. In fact, if you give the medicine in the prescribed dose, time, and way, your child may start showing improvement after a few regular doses. But, make sure to complete the full course without stopping the medicine abruptly as doing so may make your child sick again. Also, the remaining bacteria might become resistant to the Lilliclar 125mg Dry Syrup. Thus, following the prescribed treatment course is important and stressed upon for every medicine.'),
(13876, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'What if I give an overdose of Lilliclar 125mg Dry Syrup by mistake?', 'Lilliclar 125mg Dry Syrup is unlikely to cause any harm if an extra dose is given by mistake. But, it is important to be careful because overdose may cause unwanted side effects and may even worsen your child’s condition. So, if you think you have given too much of Lilliclar 125mg Dry Syrup to your child, it will be wise to speak to a doctor immediately.'),
(13877, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'Are there any possible serious side effects of Lilliclar 125mg Dry Syrup?', 'Some serious side effects of this medicine include abnormal heart conduction (QT prolongation), allergy, diarrhea, and severe gastrointestinal infections (superinfections). Get in touch with your child’s doctor if he/she develops any of these symptoms.'),
(13878, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'Can other medicines be given at the same time as Lilliclar 125mg Dry Syrup?', 'Lilliclar 125mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lilliclar 125mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(13879, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lilliclar 125mg Dry Syrup ?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(13880, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'Which all lab tests should my child undergo while taking Lilliclar 125mg Dry Syrup on a long term basis?', 'The doctor may prescribe getting kidney function tests, liver function tests, and baseline ECG on a periodic basis to keep a check on your child’s condition.'),
(13881, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'Can Lilliclar 125mg Dry Syrup affect my child’s digestion?', 'Since children have a sensitive stomach, they may develop a stomach upset while taking medicines. Moreover, taking antibiotics may kill off the good bacteria present in the digestive system along with the bad ones, increasing your child’s risk of developing stomach problems. So, in case your child is having diarrhea while on Lilliclar 125mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(13882, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'My child is suffering from a muscle weakness disorder. Is it safe to give Lilliclar 125mg Dry Syrup?', 'Use Lilliclar 125mg Dry Syrup with caution in children with neuromuscular disorders like Myasthenia gravis as it may cause exacerbation of symptoms and even onset of some new symptoms.'),
(13883, 'Lilliclar 125mg Dry Syrup', 'Zalman Life Sciences', 'Lilliclar 125mg Dry Syrup', 'How can the bacteria develop resistance against Lilliclar 125mg Dry Syrup?', 'Using Lilliclar 125mg Dry Syrup when your child does not need it will give the bacteria an opportunity to adapt to the medicine and develop ways to escape the medicine’s effects. This will make the medicine ineffective when your child actually needs it. Usually, when this happens, people say that the child has become resistant to the antibiotic, but in reality, it is the opposite. It is actually the bacteria that have become resistant to the treatment.'),
(13884, 'Lilliflox 50mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox 50mg Oral Suspension', 'What if I give too much of Lilliflox 50mg Oral Suspension by mistake?', 'An extra dose of Lilliflox 50mg Oral Suspension is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, unconsciousness, and palpitations (irregularities of heartbeat). Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(13885, 'Lilliflox 50mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox 50mg Oral Suspension', 'What should I do if my child shows no improvement even after taking Lilliflox 50mg Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lilliflox 50mg Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that would be more specific in action. Not all medicines are given by oral route, some may have to be given by IV route (intravenous injection) in the hospital.'),
(13886, 'Lilliflox 50mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox 50mg Oral Suspension', 'Can other medicines be given at the same time as Lilliflox 50mg Oral Suspension?', 'Lilliflox 50mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lilliflox 50mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(13887, 'Lilliflox 50mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox 50mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Lilliflox 50mg Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(13888, 'Lilliflox 50mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox 50mg Oral Suspension', 'What should I tell the doctor before giving Lilliflox 50mg Oral Suspension to my child?', 'Inform the doctor if your child is suffering from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lilliflox 50mg Oral Suspension may aggravate these conditions and result in complications.'),
(13889, 'Lilliflox DDS 100mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox DDS 100mg Oral Suspension', 'Can the use of Lilliflox DDS  100mg Oral Suspension cause diarrhea?', 'Yes, the use of Lilliflox DDS  100mg Oral Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13890, 'Lilliflox DDS 100mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox DDS 100mg Oral Suspension', 'Can I stop taking Lilliflox DDS  100mg Oral Suspension when I feel better?', 'No, do not stop taking Lilliflox DDS  100mg Oral Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13891, 'Lilliflox DDS 100mg Oral Suspension', 'Zalman Life Sciences', 'Lilliflox DDS 100mg Oral Suspension', 'Can the use of Lilliflox DDS  100mg Oral Suspension increase the risk of muscle damage?', 'Yes, use of Lilliflox DDS  100mg Oral Suspension is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lilliflox DDS  100mg Oral Suspension. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13892, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'How much Lillimol 100mg Oral Suspension should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(13893, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'When will my child’s condition improve after taking Lillimol 100mg Oral Suspension?', 'Lillimol 100mg Oral Suspension usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(13894, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'My child vomited after taking Lillimol 100mg Oral Suspension. What should I do?', 'Lillimol 100mg Oral Suspension usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(13895, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'Can I give Lillimol 100mg Oral Suspension to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(13896, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'My child’s fever is persistent even after taking Lillimol 100mg Oral Suspension. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(13897, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'How much of Lillimol 100mg Oral Suspension is considered as an overdose?', 'You should only take four doses of Lillimol 100mg Oral Suspension in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(13898, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(13899, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(13900, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'In what conditions Lillimol 100mg Oral Suspension must be given with caution?', 'It is advised to use Lillimol 100mg Oral Suspension with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(13901, 'Lillimol 100mg Oral Suspension', 'Zalman Life Sciences', 'Lillimol 100mg Oral Suspension', 'Can I give Lillimol 100mg Oral Suspension on a routine basis when my child is taking a vaccine?', 'Ans: Lillimol 100mg Oral Suspension usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(13902, 'Lillyflox 500mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillyflox 500mg Tablet', 'Q. Is Lillyflox 500mg Tablet safe?', 'Lillyflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13903, 'Lillyflox 500mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillyflox 500mg Tablet', 'Q. What if I forget to take a dose of Lillyflox 500mg Tablet?', 'If you forget a dose of Lillyflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13904, 'Lillyflox 500mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillyflox 500mg Tablet', 'Q. Can the use of Lillyflox 500mg Tablet cause diarrhea?', 'Yes, the use of Lillyflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13905, 'Lillyflox 500mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillyflox 500mg Tablet', 'Q. Can I stop taking Lillyflox 500mg Tablet when I feel better?', 'No, do not stop taking Lillyflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lillyflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lillyflox 500mg Tablet in the dose and duration advised by the doctor.'),
(13906, 'Lillyflox 500mg Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillyflox 500mg Tablet', 'Q. Can the use of Lillyflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lillyflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lillyflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13907, 'Lillymox KT Eye Drop', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillymox KT Eye Drop', 'How long does Lillymox KT Eye Drop takes to work?', 'Usually, Lillymox KT Eye Drop starts working soon after applying it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(13908, 'Lillymox KT Eye Drop', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillymox KT Eye Drop', 'Can I stop applying Lillymox KT Eye Drop when I feel better?', 'No, do not stop applying Lillymox KT Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(13909, 'Lillypred 4 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillypred 4 Tablet', 'What is Lillypred 4 Tablet used for?', 'Lillypred 4 Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(13910, 'Lillypred 4 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillypred 4 Tablet', 'How does Lillypred 4 Tablet work?', 'Lillypred 4 Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(13911, 'Lillypred 4 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillypred 4 Tablet', 'Is Lillypred 4 Tablet effective?', 'Lillypred 4 Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lillypred 4 Tablet too early, the symptoms may return or worsen.'),
(13912, 'Lillypred 4 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillypred 4 Tablet', 'When will I feel better after taking Lillypred 4 Tablet?', 'Lillypred 4 Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lillypred 4 Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lillypred 4 Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(13913, 'Lillypred 4 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillypred 4 Tablet', 'What if I forget to take a dose of Lillypred 4 Tablet?', 'If you forget a dose of Lillypred 4 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13914, 'Lillypred 4 Tablet', 'NovoLilly Pharmaceutical Pvt Ltd', 'Lillypred 4 Tablet', 'Is Lillypred 4 Tablet safe?', 'Lillypred 4 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13915, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'Does Lilmantro 1mg Tablet cause weight gain?', 'Yes, Lilmantro 1mg Tablet may cause weight gain, but it is not very common. There could be other reasons as well which can lead to weight gain such as menopause. However, if you gain weight while taking Lilmantro 1mg Tablet, take low-calorie diet and exercise regularly. Consult your doctor or a nutritionist to help you lose weight.'),
(13916, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'Does Lilmantro 1mg Tablet cause hair loss?', 'Yes, Lilmantro 1mg Tablet commonly affects the hair by making them thin which further leads to hair loss. However, it does not occur in everyone. Hair thinning probably occurs due to estrogen lowering effect of Lilmantro 1mg Tablet. These effects are not permanent and may revert after some time. If it concerns you then talk to your doctor for another alternative medicine to avoid damage to hair.'),
(13917, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'Why do bodybuilders use Lilmantro 1mg Tablet?', 'Bodybuilders who take anabolic steroids for bodybuilding take Lilmantro 1mg Tablet to reduce the production of estrogen which is a side effect of anabolic steroids. An increase in estrogen levels in bodybuilders may result in high pitched female voice, shrinking of the testicles or penis, and breast enlargement. In order to avoid such characteristics bodybuilders take Lilmantro 1mg Tablet.'),
(13918, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'Can Lilmantro 1mg Tablet be taken at night?', 'Lilmantro 1mg Tablet can be taken anytime of the day. Take it exactly as prescribed by your doctor. You can take it with or without food. Do not crush, break, or chew the tablet.'),
(13919, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'While on Lilmantro 1mg Tablet how should patients be monitored?', 'While you are taking Lilmantro 1mg Tablet your doctor will get blood tests done to check blood cell counts and investigate liver and kidney functions. Along with that, the doctor may advise a bone scan if you are at risk for osteoporosis, which may also occur due to Lilmantro 1mg Tablet treatment.'),
(13920, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'In what situations should I contact my doctor, while taking Lilmantro 1mg Tablet?', 'You should contact your doctor if you experience any serious adverse reaction.  It is important to inform the doctor in case of prolonged or severe nausea or vomiting, extreme weakness, and extreme pain. Along with that, consult your dotor if you have taken more than the recommended dose of Lilmantro 1mg Tablet.'),
(13921, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'What is the most important information that I should know about Lilmantro 1mg Tablet?', 'The most important information that you need to be aware of while using Lilmantro 1mg Tablet is that it can cause heart disease. Women who have early breast cancer and have blockage of arteries in the heart may have an increase in symptoms of decreased blood flow to their heart. Seek help if you experience shortness of breath or have a new or worsening chest pain.'),
(13922, 'Lilmantro 1mg Tablet', 'Eli Lilly and Company India Pvt Ltd', 'Lilmantro 1mg Tablet', 'Which medicines should not be used with Lilmantro 1mg Tablet?', 'Lilmantro 1mg Tablet should not be used with tamoxifen as it may lower the effectiveness of Lilmantro 1mg Tablet. The working of Lilmantro 1mg Tablet gets affected by medicines which contain estrogen such as birth control pills, estrogen creams, vaginal rings, and vaginal suppositories.'),
(13923, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'How should Lilmol Suppository be used?', 'Lilmol Suppository is meant to be placed inside the rectum (bottom area). It uses the body\'s heat and melts inside, resulting in direct absorption into the bloodstream and rendering quick relief. Use Lilmol Suppository as directed by your child’s doctor. Before insertion, wash your hands properly. Guide your child to lie down sideways or on the belly. Hold one buttock gently to get access to the rectal area. Unwrap the medicine and hold the rounded end close to the rectum. Use one finger to gently push Lilmol Suppository into the rectum. Ask your child to remain still for about 15 minutes as it will prevent the medicine from popping out. Clean your hands again with soap and water to ensure hygiene.'),
(13924, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'How much Lilmol Suppository should I give to my child?', 'It will depend on the strength of the medicine and the age of your child. Always follow your doctor\'s instructions regarding how much and how often the medicine should be given to your child. In case you are not sure about how much to give, consult your child’s doctor.'),
(13925, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'Can I give Lilmol Suppository to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(13926, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'My child’s fever is persistent even after taking Lilmol Suppository. What should I do?', 'If the fever doesn\'t come down, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(13927, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'Where should I store this medicine?', 'Keep this medicine beyond the reach of the children. To prevent melting, keep the medicine in the refrigerator but do not freeze.'),
(13928, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'In what conditions should Lilmol Suppository be given with caution?', 'It is advised to use Lilmol Suppository with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(13929, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'What if I vomit after taking Lilmol Suppository?', 'If you vomit in less than 30 minutes after having a dose of Lilmol Suppository tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(13930, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'When will I feel better after taking the Lilmol Suppository?', 'Usually, you will start feeling better after about half an hour of taking a Lilmol Suppository.'),
(13931, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'How often can I take the Lilmol Suppository?', 'You should only take four doses of Lilmol Suppository in 24 hours. There should be a gap of at least 4 hours between two doses. Do not take Lilmol Suppository for more than 3 days without consulting a doctor first.'),
(13932, 'Lilmol Suppository', 'Life Organics Bpl', 'Lilmol Suppository', 'Does Lilmol Suppository make babies sleepy?', 'No, Lilmol Suppository does not make babies sleepy. It is a pain-relieving medicine that is also used to control high fever.'),
(13933, 'Lilozole 1% Cream', 'Cynak Healthcare', 'Lilozole 1% Cream', 'Is Lilozole 1% Cream safe in pregnancy?', 'Lilozole 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilozole 1% Cream.'),
(13934, 'Lilozole 1% Cream', 'Cynak Healthcare', 'Lilozole 1% Cream', 'Is Lilozole 1% Cream fungicidal or Fungistatic?', 'Lilozole 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13935, 'Lilozole 1% Cream', 'Cynak Healthcare', 'Lilozole 1% Cream', 'How to use Lilozole 1% Cream?', 'Use Lilozole 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13936, 'Lilozole 1% Cream', 'Cynak Healthcare', 'Lilozole 1% Cream', 'How long does it take for Lilozole 1% Cream to work?', 'For different ailments, Lilozole 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13937, 'Lilozole 1% Cream', 'Cynak Healthcare', 'Lilozole 1% Cream', 'How should I store Lilozole 1% Cream?', 'Keep Lilozole 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13938, 'Lilozole 1% Cream', 'Cynak Healthcare', 'Lilozole 1% Cream', 'Is Lilozole 1% Cream safe to use in children?', 'Yes, Lilozole 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13939, 'Lilu 1% Cream', 'Alde Medi Impex Ltd', 'Lilu 1% Cream', 'Q. Is Lilu 1% Cream safe in pregnancy?', 'Lilu 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilu 1% Cream.'),
(13940, 'Lilu 1% Cream', 'Alde Medi Impex Ltd', 'Lilu 1% Cream', 'Q. Is Lilu 1% Cream fungicidal or Fungistatic?', 'Lilu 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13941, 'Lilu 1% Cream', 'Alde Medi Impex Ltd', 'Lilu 1% Cream', 'Q. How to use Lilu 1% Cream?', 'Use Lilu 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13942, 'Lilu 1% Cream', 'Alde Medi Impex Ltd', 'Lilu 1% Cream', 'Q. How long does it take for Lilu 1% Cream to work?', 'For different ailments, Lilu 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13943, 'Lilu 1% Cream', 'Alde Medi Impex Ltd', 'Lilu 1% Cream', 'Q. How should I store Lilu 1% Cream?', 'Keep Lilu 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13944, 'Lilu 1% Cream', 'Alde Medi Impex Ltd', 'Lilu 1% Cream', 'Q. Is Lilu 1% Cream safe to use in children?', 'Yes, Lilu 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13945, 'Lilura Cream', 'Bionics Remedies', 'Lilura Cream', 'Is Lilura Cream safe in pregnancy?', 'Lilura Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilura Cream.'),
(13946, 'Lilura Cream', 'Bionics Remedies', 'Lilura Cream', 'Is Lilura Cream fungicidal or Fungistatic?', 'Lilura Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13947, 'Lilura Cream', 'Bionics Remedies', 'Lilura Cream', 'How to use Lilura Cream?', 'Use Lilura Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13948, 'Lilura Cream', 'Bionics Remedies', 'Lilura Cream', 'How long does it take for Lilura Cream to work?', 'For different ailments, Lilura Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13949, 'Lilura Cream', 'Bionics Remedies', 'Lilura Cream', 'How should I store Lilura Cream?', 'Keep Lilura Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13950, 'Lilura Cream', 'Bionics Remedies', 'Lilura Cream', 'Is Lilura Cream safe to use in children?', 'Yes, Lilura Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13951, 'Lilure Cream', 'Torainse Life Care Pvt Ltd', 'Lilure Cream', 'Q. Is Lilure Cream safe in pregnancy?', 'Lilure Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilure Cream.'),
(13952, 'Lilure Cream', 'Torainse Life Care Pvt Ltd', 'Lilure Cream', 'Q. Is Lilure Cream fungicidal or Fungistatic?', 'Lilure Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13953, 'Lilure Cream', 'Torainse Life Care Pvt Ltd', 'Lilure Cream', 'Q. How to use Lilure Cream?', 'Use Lilure Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13954, 'Lilure Cream', 'Torainse Life Care Pvt Ltd', 'Lilure Cream', 'Q. How long does it take for Lilure Cream to work?', 'For different ailments, Lilure Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13955, 'Lilure Cream', 'Torainse Life Care Pvt Ltd', 'Lilure Cream', 'Q. How should I store Lilure Cream?', 'Keep Lilure Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13956, 'Lilure Cream', 'Torainse Life Care Pvt Ltd', 'Lilure Cream', 'Q. Is Lilure Cream safe to use in children?', 'Yes, Lilure Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13957, 'Lilure Lotion', 'Torainse Life Care Pvt Ltd', 'Lilure Lotion', 'Is Lilure Lotion safe in pregnancy?', 'Lilure Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilure Lotion.'),
(13958, 'Lilure Lotion', 'Torainse Life Care Pvt Ltd', 'Lilure Lotion', 'Is Lilure Lotion fungicidal or Fungistatic?', 'Lilure Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13959, 'Lilure Lotion', 'Torainse Life Care Pvt Ltd', 'Lilure Lotion', 'How to use Lilure Lotion?', 'Use Lilure Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13960, 'Lilure Lotion', 'Torainse Life Care Pvt Ltd', 'Lilure Lotion', 'How long does it take for Lilure Lotion to work?', 'For different ailments, Lilure Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13961, 'Lilure Lotion', 'Torainse Life Care Pvt Ltd', 'Lilure Lotion', 'How should I store Lilure Lotion?', 'Keep Lilure Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13962, 'Lilure Lotion', 'Torainse Life Care Pvt Ltd', 'Lilure Lotion', 'Is Lilure Lotion safe to use in children?', 'Yes, Lilure Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13963, 'Lily 500mg Tablet', 'Anvik Biotech', 'Lily 500mg Tablet', 'Is Lily 500mg Tablet safe?', 'Lily 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(13964, 'Lily 500mg Tablet', 'Anvik Biotech', 'Lily 500mg Tablet', 'What if I forget to take a dose of Lily 500mg Tablet?', 'If you forget a dose of Lily 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(13965, 'Lily 500mg Tablet', 'Anvik Biotech', 'Lily 500mg Tablet', 'Can the use of Lily 500mg Tablet cause diarrhea?', 'Yes, the use of Lily 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(13966, 'Lily 500mg Tablet', 'Anvik Biotech', 'Lily 500mg Tablet', 'Can I stop taking Lily 500mg Tablet when I feel better?', 'No, do not stop taking Lily 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lily 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lily 500mg Tablet in the dose and duration advised by the doctor.'),
(13967, 'Lily 500mg Tablet', 'Anvik Biotech', 'Lily 500mg Tablet', 'Can the use of Lily 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lily 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lily 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(13968, 'Lilyclox 500mg Capsule', 'Kham Pharma', 'Lilyclox 500mg Capsule', 'Can Lilyclox 500mg Capsule cause allergic reaction?', 'Although it is rare but yes, Lilyclox 500mg Capsule can cause allergic reaction and is harmful in patients with known allergy to penicillins. Get emergency medical help if you have any of the signs of an allergic reaction: hives; difficulty breathing; swelling of your face, lips, tongue, or throat.'),
(13969, 'Lilyclox 500mg Capsule', 'Kham Pharma', 'Lilyclox 500mg Capsule', 'How long does Lilyclox 500mg Capsule takes to work?', 'Usually, Lilyclox 500mg Capsule starts working soon after taking it. However, it may take around 2-3 days to make you feel better while taking Lilyclox 500mg Capsule.'),
(13970, 'Lilyclox 500mg Capsule', 'Kham Pharma', 'Lilyclox 500mg Capsule', 'What if I don\'t get better after using Lilyclox 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(13971, 'Lilyclox 500mg Capsule', 'Kham Pharma', 'Lilyclox 500mg Capsule', 'Can I stop taking Lilyclox 500mg Capsule when my symptoms are relieved?', 'No, do not stop taking Lilyclox 500mg Capsule and finish the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cleared.'),
(13972, 'Lilyclox 500mg Capsule', 'Kham Pharma', 'Lilyclox 500mg Capsule', 'What if I take Lilyclox 500mg Capsule with food?', 'Taking Lilyclox 500mg Capsule with food will only make it less effective. Moreover, the absorption of this medicine is the most when taken on an empty stomach. Taking it with food reduces its absorption.'),
(13973, 'Lilycure Cream', 'Torance Healthcare Pvt Ltd', 'Lilycure Cream', 'Is Lilycure Cream safe in pregnancy?', 'Lilycure Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilycure Cream.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(13974, 'Lilycure Cream', 'Torance Healthcare Pvt Ltd', 'Lilycure Cream', 'Is Lilycure Cream fungicidal or Fungistatic?', 'Lilycure Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13975, 'Lilycure Cream', 'Torance Healthcare Pvt Ltd', 'Lilycure Cream', 'How to use Lilycure Cream?', 'Use Lilycure Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13976, 'Lilycure Cream', 'Torance Healthcare Pvt Ltd', 'Lilycure Cream', 'How long does it take for Lilycure Cream to work?', 'For different ailments, Lilycure Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13977, 'Lilycure Cream', 'Torance Healthcare Pvt Ltd', 'Lilycure Cream', 'How should I store Lilycure Cream?', 'Keep Lilycure Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13978, 'Lilycure Cream', 'Torance Healthcare Pvt Ltd', 'Lilycure Cream', 'Is Lilycure Cream safe to use in children?', 'Yes, Lilycure Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13979, 'Lilymist 1% Cream', 'Veritaz Healthcare Ltd', 'Lilymist 1% Cream', 'Is Lilymist 1% Cream safe in pregnancy?', 'Lilymist 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilymist 1% Cream.'),
(13980, 'Lilymist 1% Cream', 'Veritaz Healthcare Ltd', 'Lilymist 1% Cream', 'Is Lilymist 1% Cream fungicidal or Fungistatic?', 'Lilymist 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13981, 'Lilymist 1% Cream', 'Veritaz Healthcare Ltd', 'Lilymist 1% Cream', 'How to use Lilymist 1% Cream?', 'Use Lilymist 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13982, 'Lilymist 1% Cream', 'Veritaz Healthcare Ltd', 'Lilymist 1% Cream', 'How long does it take for Lilymist 1% Cream to work?', 'For different ailments, Lilymist 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13983, 'Lilymist 1% Cream', 'Veritaz Healthcare Ltd', 'Lilymist 1% Cream', 'How should I store Lilymist 1% Cream?', 'Keep Lilymist 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13984, 'Lilymist 1% Cream', 'Veritaz Healthcare Ltd', 'Lilymist 1% Cream', 'Is Lilymist 1% Cream safe to use in children?', 'Yes, Lilymist 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13985, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'How long does it take for Lilypam 10 Tablet to work?', 'Usually, it will take about 2-4 weeks before you start feeling better, however, full benefits may take a little longer. Therefore, do not stop taking Lilypam 10 Tablet without consulting your doctor. Talk to your doctor if taking the medicine does not make you feel better or you feel worse even after taking the medicine.'),
(13986, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'What are the most common side effects of Lilypam 10 Tablet?', 'The most common side effects of Lilypam 10 Tablet are headache and nausea. Other common side effects include blocked or runny nose, decreased or increased appetite, anxiety, restlessness, and abnormal dreams. You may also experience sleepiness or difficulty falling asleep, dizziness, yawning, tremors, diarrhea, or constipation. Other side effects of Lilypam 10 Tablet may be vomiting, dry mouth, increased sweating, fatigue, fever, increase in weight, and pain in muscles and joints. Using this medicine may even cause delayed ejaculation, problems with erection, decreased sexual drive and women may experience difficulty in achieving orgasm.'),
(13987, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'What is Lilypam 10 Tablet used for?', 'Lilypam 10 Tablet is used to treat depression and anxiety disorders such as social phobia, anxiety disorder, panic attacks, and obsessive-compulsive disorder.'),
(13988, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'Is Lilypam 10 Tablet dangerous?', 'The use of Lilypam 10 Tablet in children, adolescents, and young adults may increase their risk of experiencing suicidal tendencies. You should always discuss the risks and benefits of taking Lilypam 10 Tablet with your doctor before taking it. Remember that children younger than 12 years of age should not be given Lilypam 10 Tablet.'),
(13989, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'Is Lilypam 10 Tablet better taken at night or in the morning?', 'It is usually recommended to take Lilypam 10 Tablet once a day in the morning since it can keep you awake if taken late at night. You can take it with or without food. You should prefer to take it at the same time each day so that you remember to take it.'),
(13990, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'Can I stop taking Lilypam 10 Tablet on my own?', 'Lilypam 10 Tablet should not be stopped abruptly as it may cause withdrawal symptoms. Though the withdrawal symptoms are usually mild and disappear within 2 weeks, it is not recommended to stop it without consulting your doctor. You should rather consult your doctor who will reduce the dose gradually.'),
(13991, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'What are the withdrawal symptoms one may experience?', 'The withdrawal symptoms include dizziness, sleep disturbances like vivid dreams, nightmares and inability to sleep, anxiety, and headaches. You may also get burning sensations and electric shock sensations. Withdrawal symptoms may also include nausea, sweating including night sweats, restlessness or agitation, tremors, confusion, irritability, diarrhea, visual disturbances, and palpitations.'),
(13992, 'Lilypam 10 Tablet', 'Cana Lilly', 'Lilypam 10 Tablet', 'What if I accidentally take more than the recommended dose of Lilypam 10 Tablet?', 'If you accidentally take more than the recommended dose of Lilypam 10 Tablet, seek immediate medical attention in a nearby hospital or call your doctor immediately. The symptoms of overdose dizziness, tremor, agitation, convulsion, coma, nausea, and vomiting. You may also experience changes in heart rhythm, decreased blood pressure, and change in body fluid/salt balance.'),
(13993, 'Lilysam Cream', 'Samson Laboratories Pvt Ltd', 'Lilysam Cream', 'Is Lilysam Cream safe in pregnancy?', 'Lilysam Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilysam Cream.'),
(13994, 'Lilysam Cream', 'Samson Laboratories Pvt Ltd', 'Lilysam Cream', 'Is Lilysam Cream fungicidal or Fungistatic?', 'Lilysam Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(13995, 'Lilysam Cream', 'Samson Laboratories Pvt Ltd', 'Lilysam Cream', 'How to use Lilysam Cream?', 'Use Lilysam Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(13996, 'Lilysam Cream', 'Samson Laboratories Pvt Ltd', 'Lilysam Cream', 'How long does it take for Lilysam Cream to work?', 'For different ailments, Lilysam Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(13997, 'Lilysam Cream', 'Samson Laboratories Pvt Ltd', 'Lilysam Cream', 'How should I store Lilysam Cream?', 'Keep Lilysam Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(13998, 'Lilysam Cream', 'Samson Laboratories Pvt Ltd', 'Lilysam Cream', 'Is Lilysam Cream safe to use in children?', 'Yes, Lilysam Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(13999, 'Lilysam Lotion', 'Samson Laboratories Pvt Ltd', 'Lilysam Lotion', 'Is Lilysam Lotion safe in pregnancy?', 'Lilysam Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lilysam Lotion.'),
(14000, 'Lilysam Lotion', 'Samson Laboratories Pvt Ltd', 'Lilysam Lotion', 'Is Lilysam Lotion fungicidal or Fungistatic?', 'Lilysam Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(14001, 'Lilysam Lotion', 'Samson Laboratories Pvt Ltd', 'Lilysam Lotion', 'How to use Lilysam Lotion?', 'Use Lilysam Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(14002, 'Lilysam Lotion', 'Samson Laboratories Pvt Ltd', 'Lilysam Lotion', 'How long does it take for Lilysam Lotion to work?', 'For different ailments, Lilysam Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(14003, 'Lilysam Lotion', 'Samson Laboratories Pvt Ltd', 'Lilysam Lotion', 'How should I store Lilysam Lotion?', 'Keep Lilysam Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(14004, 'Lilysam Lotion', 'Samson Laboratories Pvt Ltd', 'Lilysam Lotion', 'Is Lilysam Lotion safe to use in children?', 'Yes, Lilysam Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(14005, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'What is the best time to take Lilysoz 40 Tablet?', 'Usually, Lilysoz 40 Tablet is taken once a day, first thing in the morning. If you take Lilysoz 40 Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(14006, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Can I take Lilysoz 40 Tablet with domperidone?', 'Yes, Lilysoz 40 Tablet can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lilysoz 40 Tablet decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(14007, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Can I take antacids along with Lilysoz 40 Tablet?', 'Yes, you can take antacids along with Lilysoz 40 Tablet. Take it 2 hours before or after you take Lilysoz 40 Tablet.'),
(14008, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Can I take Lilysoz 40 Tablet for a long term?', 'Lilysoz 40 Tablet is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lilysoz 40 Tablet may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lilysoz 40 Tablet as advised by your doctor and under their supervision.'),
(14009, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'What are the long term side effects of Lilysoz 40 Tablet?', 'If Lilysoz 40 Tablet is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(14010, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Can I stop taking Lilysoz 40 Tablet if I feel better?', 'If you have been taking Lilysoz 40 Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lilysoz 40 Tablet.'),
(14011, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Can Lilysoz 40 Tablet cause weight gain?', 'Weight gain is reported in less than 1% of the patients taking Lilysoz 40 Tablet but the exact cause is unknown. One possible explanation is higher food intake once the reflux symptoms are relieved. Lifestyle modifications such as proper diet and exercise can help to prevent weight gain.'),
(14012, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Is Lilysoz 40 Tablet safe to use?', 'Yes, Lilysoz 40 Tablet is relatively safe to use. Most of the people who take Lilysoz 40 Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefit.'),
(14013, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Can I take Lilysoz 40 Tablet with ranitidine?', 'Yes, Lilysoz 40 Tablet can be taken with ranitidine. According to research reports, there are no significant interactions seen between Lilysoz 40 Tablet and ranitidine. However, you must take them together only if prescribed by the doctor.'),
(14014, 'Lilysoz 40 Tablet', 'Cana Lilly', 'Lilysoz 40 Tablet', 'Can I take alcohol with Lilysoz 40 Tablet?', 'No, alcohol intake is not advised with Lilysoz 40 Tablet. Alcohol itself does not affect the working of Lilysoz 40 Tablet, but it can increase the acid production. This may further cause worsening of your symptoms'),
(14015, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'What is Lilysoz-D Capsule SR?', 'Lilysoz-D Capsule SR is a combination of two medicines: Domperidone and Esomeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(14016, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'Is it safe to use Lilysoz-D Capsule SR?', 'Yes, Lilysoz-D Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhoea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(14017, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'What is the best time to take Lilysoz-D Capsule SR?', 'It is best to take Lilysoz-D Capsule SR before the first meal of the day or on an empty stomach.'),
(14018, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'Can the use of Lilysoz-D Capsule SR cause abnormal heartbeat?', 'Yes, the use of Lilysoz-D Capsule SR can increase the risk of irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(14019, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'What are the contraindications associated with the use of Lilysoz-D Capsule SR?', 'The use of Lilysoz-D Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(14020, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'Can the use of Lilysoz-D Capsule SR cause dry mouth?', 'Yes, the use of Lilysoz-D Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(14021, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'Can the use of Lilysoz-D Capsule SR cause diarrhea?', 'Yes, the use of Lilysoz-D Capsule SR can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and if you notice signs of dehydration, like less frequency of urination and dark colored and strong-smelling urine. Avoid taking fatty or fried foods with this medication. Also, do not take any medicines without consulting the doctor.'),
(14022, 'Lilysoz-D Capsule SR', 'Cana Lilly', 'Lilysoz-D Capsule SR', 'What are the storage conditions for Lilysoz-D Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14023, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Q. How long does Limacid 150mg Injection take to work?', 'Usually, Limacid 150mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(14024, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Q. Is Limacid 150mg Injection effective?', 'Limacid 150mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limacid 150mg Injection too early, the symptoms may return or worsen.'),
(14025, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Q. How is Limacid 150mg Injection administered?', 'Limacid 150mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Limacid 150mg Injection.'),
(14026, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Q. Can the use of Limacid 150mg Injection cause diarrhea?', 'Yes, the use of Limacid 150mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14027, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Q. Is Limacid 150mg Injection safe?', 'Limacid 150mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(14028, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Q. What if I don\'t get better after using Limacid 150mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(14029, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Q. Is Limacid 150mg Injection effective?', 'Limacid 150mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limacid 150mg Injection too early, the symptoms may return or worsen.'),
(14030, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'How long does Limacid 150mg Injection take to work?', 'Usually, Limacid 150mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(14031, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Is Limacid 150mg Injection effective?', 'Limacid 150mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limacid 150mg Injection too early, the symptoms may return or worsen.'),
(14032, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'How is Limacid 150mg Injection administered?', 'Limacid 150mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Limacid 150mg Injection.'),
(14033, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Can the use of Limacid 150mg Injection cause diarrhea?', 'Yes, the use of Limacid 150mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14034, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Is Limacid 150mg Injection safe?', 'Limacid 150mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(14035, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'What if I don\'t get better after using Limacid 150mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(14036, 'Limacid 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limacid 150mg Injection', 'Is Limacid 150mg Injection effective?', 'Limacid 150mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limacid 150mg Injection too early, the symptoms may return or worsen.'),
(14037, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'What is Limaclav 500 mg/125 mg Tablet?', 'Limaclav 500 mg/125 mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(14038, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Is it safe to use Limaclav 500 mg/125 mg Tablet?', 'Limaclav 500 mg/125 mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(14039, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Are there any specific cautions associated with the use of Limaclav 500 mg/125 mg Tablet?', 'The use of Limaclav 500 mg/125 mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(14040, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Can the use of Limaclav 500 mg/125 mg Tablet cause contraceptive failure?', 'Yes, the use of Limaclav 500 mg/125 mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Limaclav 500 mg/125 mg Tablet.'),
(14041, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Can I take a higher than the recommended dose of Limaclav 500 mg/125 mg Tablet?', 'No, taking a higher than the recommended dose of Limaclav 500 mg/125 mg Tablet can increase the risks of side effects. Limaclav 500 mg/125 mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(14042, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'What are the instructions for the storage and disposal of Limaclav 500 mg/125 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14043, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Can I stop taking Limaclav 500 mg/125 mg Tablet when my symptoms are relieved?', 'No, do not stop taking Limaclav 500 mg/125 mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(14044, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Can Limaclav 500 mg/125 mg Tablet cause an allergic reaction?', 'Yes, Limaclav 500 mg/125 mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(14045, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Can the use of Limaclav 500 mg/125 mg Tablet cause diarrhea?', 'Yes, the use of Limaclav 500 mg/125 mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(14046, 'Limaclav 500 mg/125 mg Tablet', 'Calix Health Care', 'Limaclav 500 mg/125 mg Tablet', 'Can I take Limaclav 500 mg/125 mg Tablet to treat cold and flu?', 'No, Limaclav 500 mg/125 mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(14047, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Can other medicines be given at the same time as Limaclav Dry Syrup?', 'Limaclav Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Limaclav Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(14048, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Can I get my child vaccinated while on treatment with Limaclav Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(14049, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Which lab tests may my child undergo while taking Limaclav Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(14050, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Can I give a higher than the recommended dose of Limaclav Dry Syrup to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(14051, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Can I stop giving Limaclav Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(14052, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Can the use of Limaclav Dry Syrup cause diarrhea?', 'Yes, Limaclav Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(14053, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(14054, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(14055, 'Limaclav Dry Syrup', 'Calix Health Care', 'Limaclav Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(14056, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'What should you avoid when taking Limafate Suspension?', 'It is advisable to avoid taking antacids within 30 minutes of taking Limafate Suspension since this medicine can decrease the absorption of some antacids if taken together.'),
(14057, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'How long after taking Limafate Suspension can I eat?', 'Limafate Suspension must be taken on an empty stomach, at least 1 hour before or 2 hours after a meal.'),
(14058, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Does Limafate Suspension work immediately?', 'No, it takes around one to two weeks for the medicine to heal an ulcer of the stomach or intestine. But continue taking Limafate Suspension for the duration as prescribed by your doctor for complete healing.'),
(14059, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Does Limafate Suspension cause constipation?', 'Yes, constipation is one of the common side effects of Limafate Suspension. Include fiber in your diet (fruits and vegetables), drink 8-10 glasses of fluids a day, and keep active. A stool softener (with a doctor\'s prescription) once or twice a day may prevent constipation. If you do not have a bowel movement for 2-3 days, consult your doctor.'),
(14060, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Is Limafate Suspension an antibiotic/sulfa drug/pain-killer/PPI?', 'Limafate Suspension is not an antibiotic/sulfa drug/ PPI (proton-pump inhibitor) or a pain-killer. It is an ulcer protective medicine'),
(14061, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Is Limafate Suspension available or sold over the counter?', 'No. Limafate Suspension is a prescription drug. It is not available or sold over the counter'),
(14062, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Is Limafate Suspension gluten free?', 'Yes. Limafate Suspension is gluten free. However, please refer to package insert of the prescribed brand before use'),
(14063, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Is Limafate Suspension safe?', 'Yes. Limafate Suspension is relatively safe if used as recommended. In case of any side-effects, consult your doctor'),
(14064, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Can I take Limafate Suspension with Prilosec/Nexium/ Tylenol/Zantac/ibuprofen/Pepto?', 'Yes. Limafate Suspension can be taken with Prilosec/Nexium/ Tylenol/Zantac/ibuprofen and Pepto if prescribed by your doctor'),
(14065, 'Limafate Suspension', 'Ancalima Lifesciences Ltd', 'Limafate Suspension', 'Does Limafate Suspension cause headaches/weight gain/insomnia/ heartburn?', 'Limafate Suspension does not cause headaches/weight gain/insomnia or heartburn. If you experience any such symptoms, please consult your doctor'),
(14066, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'What is Limaflam 100 mg/325 mg/15 mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14067, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Is it safe to take Limaflam 100 mg/325 mg/15 mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(14068, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Can I stop taking Limaflam 100 mg/325 mg/15 mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(14069, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Can Limaflam 100 mg/325 mg/15 mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(14070, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Can Limaflam 100 mg/325 mg/15 mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(14071, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Are there any specific contraindications associated with taking Limaflam 100 mg/325 mg/15 mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(14072, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Can I take Limaflam 100 mg/325 mg/15 mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(14073, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Can the use of Limaflam 100 mg/325 mg/15 mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(14074, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Can I take a higher dose of Limaflam 100 mg/325 mg/15 mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14075, 'Limaflam 100 mg/325 mg/15 mg Tablet', 'Calix Health Care', 'Limaflam 100 mg/325 mg/15 mg Tablet', 'What are the instructions for storage and disposal of Limaflam 100 mg/325 mg/15 mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14076, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'What is Limaflam Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14077, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Is it safe to take Limaflam Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(14078, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Can I stop taking Limaflam Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(14079, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Can Limaflam Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(14080, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Can Limaflam Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(14081, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Are there any specific contraindications associated with taking Limaflam Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(14082, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Can I take Limaflam Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(14083, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Can the use of Limaflam Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(14084, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'Can I take a higher dose of Limaflam Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14085, 'Limaflam Tablet', 'Calix Health Care', 'Limaflam Tablet', 'What are the instructions for storage and disposal of Limaflam Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14086, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Limapenem 250mg Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Limapenem 250mg Injection. Medicines like Limapenem 250mg Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.'),
(14087, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'Even though Limapenem 250mg Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Limapenem 250mg Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(14088, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'Is Limapenem 250mg Injection a strong antibiotic? Which infections does it treat?', 'Limapenem 250mg Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(14089, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'Is Limapenem 250mg Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Limapenem 250mg Injection is effective only against bacteria. It is not effective against virus or fungal infections. Limapenem 250mg Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14090, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'My cousin was receiving Limapenem 250mg Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Limapenem 250mg Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Limapenem 250mg Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(14091, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'For how long will I need to take Limapenem 250mg Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Limapenem 250mg Injection. Consult your doctor if you are not sure.'),
(14092, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'What if Limapenem 250mg Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Limapenem 250mg Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Limapenem 250mg Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(14093, 'Limapenem 250mg Injection', 'Ancalima Lifesciences Ltd', 'Limapenem 250mg Injection', 'Does it matter if I miss or stop Limapenem 250mg Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Limapenem 250mg Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(14094, 'Limarin 140 Capsule', 'Serum Institute Of India Ltd', 'Limarin 140 Capsule', 'What is Limarin 140 Capsule? What is it used for?', 'Limarin 140 Capsule belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Limarin 140 Capsule accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(14095, 'Limarin 140 Capsule', 'Serum Institute Of India Ltd', 'Limarin 140 Capsule', 'How does Limarin 140 Capsule work for the liver?', 'Limarin 140 Capsule is obtained from milk thistle seed (Silybum marianum). Limarin 140 Capsule works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(14096, 'Limarin 140 Capsule', 'Serum Institute Of India Ltd', 'Limarin 140 Capsule', 'How to use Limarin 140 Capsule?', 'Limarin 140 Capsule should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Limarin 140 Capsule.'),
(14097, 'Limarin 140 Capsule', 'Serum Institute Of India Ltd', 'Limarin 140 Capsule', 'What are the side effects of Limarin 140 Capsule?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(14098, 'Limarin 140 Capsule', 'Serum Institute Of India Ltd', 'Limarin 140 Capsule', 'Can Limarin 140 Capsule be used in pregnancy and lactation?', 'Limarin 140 Capsule may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Limarin 140 Capsule if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(14099, 'Limarin 70 Capsule', 'Serum Institute Of India Ltd', 'Limarin 70 Capsule', 'What is Limarin 70 Capsule? What is it used for?', 'Limarin 70 Capsule belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Limarin 70 Capsule accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(14100, 'Limarin 70 Capsule', 'Serum Institute Of India Ltd', 'Limarin 70 Capsule', 'How does Limarin 70 Capsule work for the liver?', 'Limarin 70 Capsule is obtained from milk thistle seed (Silybum marianum). Limarin 70 Capsule works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(14101, 'Limarin 70 Capsule', 'Serum Institute Of India Ltd', 'Limarin 70 Capsule', 'How to use Limarin 70 Capsule?', 'Limarin 70 Capsule should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Limarin 70 Capsule.'),
(14102, 'Limarin 70 Capsule', 'Serum Institute Of India Ltd', 'Limarin 70 Capsule', 'What are the side effects of Limarin 70 Capsule?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(14103, 'Limarin 70 Capsule', 'Serum Institute Of India Ltd', 'Limarin 70 Capsule', 'Can Limarin 70 Capsule be used in pregnancy and lactation?', 'Limarin 70 Capsule may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Limarin 70 Capsule if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(14104, 'Limarin Suspension', 'Serum Institute Of India Ltd', 'Limarin Suspension', 'What is Limarin Suspension? What is it used for?', 'Limarin Suspension belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Limarin Suspension accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(14105, 'Limarin Suspension', 'Serum Institute Of India Ltd', 'Limarin Suspension', 'How does Limarin Suspension work for the liver?', 'Limarin Suspension is obtained from milk thistle seed (Silybum marianum). Limarin Suspension works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(14106, 'Limarin Suspension', 'Serum Institute Of India Ltd', 'Limarin Suspension', 'How to use Limarin Suspension?', 'Limarin Suspension should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Limarin Suspension.'),
(14107, 'Limarin Suspension', 'Serum Institute Of India Ltd', 'Limarin Suspension', 'What are the side effects of Limarin Suspension?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(14108, 'Limarin Suspension', 'Serum Institute Of India Ltd', 'Limarin Suspension', 'Can Limarin Suspension be used in pregnancy and lactation?', 'Limarin Suspension may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Limarin Suspension if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(14109, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'What is Limaro 20mg Injection used for?', 'Limaro 20mg Injection is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Limaro 20mg Injection also prevents acidity associated with use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). Limaro 20mg Injection is also helpful as a preanesthetic medication (medicine given just before anesthesia) to reduce the chances of aspiration related complications like lung injury.'),
(14110, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Limaro 20mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. It also helps to cut down on caffeinated drinks such as tea, coffee, and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(14111, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'Does Limaro 20mg Injection cause bone problems?', 'Yes, long-term use of Limaro 20mg Injection can cause thinning of bones, which is called osteoporosis. Limaro 20mg Injection decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(14112, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'What other lifestyle changes should I make to get maximum benefit of Limaro 20mg Injection?', 'You make see better results if you make certain dietary and lifestyle changes while taking Limaro 20mg Injection. Exercise regularly and eat healthily. You can consult your dietician to get a diet chart that suits you best. Eat at least 3 hours before sleeping to reduce the chances of aggravation of your symptoms at night. You should avoid spicy and fatty foods while taking this medicine. Refrain from caffeinated drinks such as tea, coffee, and cola. Alcohol intake and smoking should also be avoided as they may worsen your symptoms.'),
(14113, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'Can I take alcohol with Limaro 20mg Injection?', 'No, alcohol intake is not advised with Limaro 20mg Injection. Alcohol itself does not affect the working of Limaro 20mg Injection, but it can increase acid production. This may further cause worsening of your symptoms.'),
(14114, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'Can I take antacids along with Limaro 20mg Injection?', 'Yes, you can take antacids along with Limaro 20mg Injection. Take it 2 hours before or after you take Limaro 20mg Injection.'),
(14115, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'How long does it take for Limaro 20mg Injection to work?', 'Limaro 20mg Injection starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(14116, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'Can I stop taking Limaro 20mg Injection if I feel better?', 'No, do not stop taking Rekool before completing the full course of treatment. You will start to feel better before your treatment is complete. Limaro 20mg Injection is given into a vein, only if oral administration is not possible, for upto 7 days. As soon as the person is able to take it orally, intravenous administration is stopped and oral form is prescribed. Take Limaro 20mg Injection only as prescribed by your doctor to get maximum benefit.'),
(14117, 'Limaro 20mg Injection', 'Ancalima Lifesciences Ltd', 'Limaro 20mg Injection', 'Is Limaro 20mg Injection safe?', 'Yes, Limaro 20mg Injection is relatively safe. Most of the people who take Limaro 20mg Injection do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(14118, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'What is Limaro DSR Capsule?', 'Limaro DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(14119, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'What are the contraindications of Limaro DSR Capsule?', 'The use of Limaro DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(14120, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'Can the use of Limaro DSR Capsule cause dry mouth?', 'Yes, the use of Limaro DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(14121, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'Can the use of Limaro DSR Capsule cause diarrhea?', 'Yes, the use of Limaro DSR Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(14122, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'What is the recommended storage condition for Limaro DSR Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14123, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'Is it safe to use Limaro DSR Capsule?', 'Yes, Limaro DSR Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(14124, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'What is the best time to take Limaro DSR Capsule?', 'It is best to take Limaro DSR Capsule before the first meal of the day or on an empty stomach.'),
(14125, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'Can the use of Limaro DSR Capsule cause abnormal heartbeat?', 'Yes, the use of Limaro DSR Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(14126, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'What is Limaro DSR Capsule?', 'Limaro DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(14127, 'Limaro DSR Capsule', 'Ancalima Lifesciences Ltd', 'Limaro DSR Capsule', 'What are the contraindications of Limaro DSR Capsule?', 'The use of Limaro DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(14128, 'Limasunate 50mg Tablet', 'Ancalima Lifesciences Ltd', 'Limasunate 50mg Tablet', 'Who should not use Limasunate 50mg Tablet?', 'Use of Limasunate 50mg Tablet should be avoided in patients who are allergic to Limasunate 50mg Tablet or any of its components. However, if you are not aware of any allergy or if you are using Limasunate 50mg Tablet for the first time, consult your doctor.'),
(14129, 'Limasunate 50mg Tablet', 'Ancalima Lifesciences Ltd', 'Limasunate 50mg Tablet', 'What should I tell my doctor before starting treatment with Limasunate 50mg Tablet?', 'Before starting treatment with Limasunate 50mg Tablet, inform your doctor if you have any other health conditions like kidney- or heart-related problems. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(14130, 'Limasunate 50mg Tablet', 'Ancalima Lifesciences Ltd', 'Limasunate 50mg Tablet', 'Is Limasunate 50mg Tablet safe?', 'Limasunate 50mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14131, 'Limasunate 50mg Tablet', 'Ancalima Lifesciences Ltd', 'Limasunate 50mg Tablet', 'What if I forget to take a dose of Limasunate 50mg Tablet?', 'If you forget a dose of Limasunate 50mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14132, 'Limasunate 50mg Tablet', 'Ancalima Lifesciences Ltd', 'Limasunate 50mg Tablet', 'Can I stop taking Limasunate 50mg Tablet when I feel better?', 'No, do not stop taking Limasunate 50mg Tablet without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(14133, 'Limasunate 60mg Injection', 'Ancalima Lifesciences Ltd', 'Limasunate 60mg Injection', 'Who should not use Limasunate 60mg Injection?', 'Use of Limasunate 60mg Injection should be avoided in patients who are allergic to Limasunate 60mg Injection or any of its components. However, if you are not aware of any allergy or if you are using Limasunate 60mg Injection for the first time, consult your doctor.'),
(14134, 'Limasunate 60mg Injection', 'Ancalima Lifesciences Ltd', 'Limasunate 60mg Injection', 'What should I tell my doctor before starting treatment with Limasunate 60mg Injection?', 'Before starting treatment with Limasunate 60mg Injection, inform your doctor if you have any other health conditions like a kidney- or heart-related problem. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(14135, 'Limasunate 60mg Injection', 'Ancalima Lifesciences Ltd', 'Limasunate 60mg Injection', 'Is Limasunate 60mg Injection safe?', 'Limasunate 60mg Injection is safe if used in the dose and duration advised by your doctor. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14136, 'Limasunate 60mg Injection', 'Ancalima Lifesciences Ltd', 'Limasunate 60mg Injection', 'How is Limasunate 60mg Injection administered?', 'Limasunate 60mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Limasunate 60mg Injection.'),
(14137, 'Limather 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limather 150mg Injection', 'Who should not use Limather 150mg Injection?', 'Use of Limather 150mg Injection should be avoided in patients who are allergic to Limather 150mg Injection or any of its components. However, if you are not aware of any allergy or if you are using Limather 150mg Injection for the first time, consult your doctor.'),
(14138, 'Limather 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limather 150mg Injection', 'What should I tell my doctor before starting treatment with Limather 150mg Injection?', 'Before starting treatment with Limather 150mg Injection, inform your doctor if you have any other health condition like a kidney- or heart-related problems. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(14139, 'Limather 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limather 150mg Injection', 'Is Limather 150mg Injection safe?', 'Limather 150mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14140, 'Limather 150mg Injection', 'Ancalima Lifesciences Ltd', 'Limather 150mg Injection', 'How is Limather 150mg Injection administered?', 'Limather 150mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Limather 150mg Injection.'),
(14141, 'Limbed 75mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Limbed 75mg Tablet', 'Q.  Is Limbed 75mg Tablet a good painkiller?', 'Limbed 75mg Tablet is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(14142, 'Limbed 75mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Limbed 75mg Tablet', 'Q. Is Limbed 75mg Tablet a narcotic?', 'No, Limbed 75mg Tablet is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(14143, 'Limbed 75mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Limbed 75mg Tablet', 'Q. Does Limbed 75mg Tablet get you high?', 'No, Limbed 75mg Tablet does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(14144, 'Limbed 75mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Limbed 75mg Tablet', 'Q. Can Limbed 75mg Tablet damage your kidneys?', 'Long-term use and high doses of Limbed 75mg Tablet may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(14145, 'Limbed 75mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Limbed 75mg Tablet', 'Q. Does Limbed 75mg Tablet make you drowsy?', 'Limbed 75mg Tablet can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(14146, 'Limbed 75mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Limbed 75mg Tablet', 'Q. What is the most important information I need to know about Limbed 75mg Tablet?', 'It is important to know that Limbed 75mg Tablet may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Limbed 75mg Tablet may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(14147, 'Limbed 75mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Limbed 75mg Tablet', 'Q. Can Limbed 75mg Tablet be taken during pregnancy?', 'You should not take Limbed 75mg Tablet during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Limbed 75mg Tablet can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Limbed 75mg Tablet during the first 6 months of pregnancy also.  In some cases, Limbed 75mg Tablet may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(14148, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'Are there any important warnings associated with use of Limbetrol H 12.5mg/5mg Tablet?', 'During the first few months of treatment, Limbetrol H 12.5mg/5mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(14149, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'Can I stop taking Limbetrol H 12.5mg/5mg Tablet when my symptoms are relieved?', 'No, you should continue to take Limbetrol H 12.5mg/5mg Tablet, even if you feel well. If you stop Limbetrol H 12.5mg/5mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(14150, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'How to manage weight gain associated with the use of Limbetrol H 12.5mg/5mg Tablet?', 'There are reports which suggest that the use of Limbetrol H 12.5mg/5mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(14151, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'What are the instructions for storage and disposal of Limbetrol H 12.5mg/5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14152, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'Can the use of Limbetrol H 12.5mg/5mg Tablet cause sleepiness?', 'Yes, Limbetrol H 12.5mg/5mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(14153, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'Can the use of Limbetrol H 12.5mg/5mg Tablet affect my sexual life?', 'The use of Limbetrol H 12.5mg/5mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(14154, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'Can I drink alcohol while taking Limbetrol H 12.5mg/5mg Tablet?', 'No, do not drink alcohol while you are taking Limbetrol H 12.5mg/5mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Limbetrol H 12.5mg/5mg Tablet.'),
(14155, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'Can the use of Limbetrol H 12.5mg/5mg Tablet change the color of urine?', 'Yes, Limbetrol H 12.5mg/5mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Limbetrol H 12.5mg/5mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Limbetrol H 12.5mg/5mg Tablet.'),
(14156, 'Limbetrol H 12.5mg/5mg Tablet', 'Crescent Therapeutics Ltd', 'Limbetrol H 12.5mg/5mg Tablet', 'How long does Limbetrol H 12.5mg/5mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Limbetrol H 12.5mg/5mg Tablet, although some people will start to feel better sooner. When taking Limbetrol H 12.5mg/5mg Tablet, it is important to give it time to work.'),
(14157, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'How should Limbfast AQ 75mg Injection injection be administered?', 'Limbfast AQ 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(14158, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'What is the most important information I need to know about Limbfast AQ 75mg Injection?', 'It is important to know that Limbfast AQ 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Limbfast AQ 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(14159, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'Is Limbfast AQ 75mg Injection a good painkiller?', 'Limbfast AQ 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(14160, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'Can Limbfast AQ 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Limbfast AQ 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(14161, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'Does Limbfast AQ 75mg Injection make you drowsy?', 'Limbfast AQ 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(14162, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'Can Limbfast AQ 75mg Injection be taken during pregnancy?', 'You should not take Limbfast AQ 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Limbfast AQ 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Limbfast AQ 75mg Injection during the first 6 months of pregnancy also.  In some cases, Limbfast AQ 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(14163, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'Does Limbfast AQ 75mg Injection get you high?', 'No, Limbfast AQ 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(14164, 'Limbfast AQ 75mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbfast AQ 75mg Injection', 'Is Limbfast AQ 75mg Injection a narcotic?', 'No, Limbfast AQ 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(14165, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'What is Limbfast MR Tablet?', 'Limbfast MR Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(14166, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'Is it safe to use Limbfast MR Tablet?', 'Limbfast MR Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(14167, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'Can I stop taking Limbfast MR Tablet when my pain is relieved?', 'Limbfast MR Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(14168, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'Can the use of Limbfast MR Tablet cause nausea and vomiting?', 'Yes, the use of Limbfast MR Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14169, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'Can the use of Limbfast MR Tablet cause dizziness?', 'Yes, the use of Limbfast MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(14170, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'Can the use of Limbfast MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Limbfast MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(14171, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Limbfast MR Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14172, 'Limbfast MR Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast MR Tablet', 'What are the recommended storage conditions for Limbfast MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14173, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'What is Limbfast P Tablet?', 'Limbfast P Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(14174, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Is it safe to use Limbfast P Tablet?', 'Yes, Limbfast P Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(14175, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Can I stop taking Limbfast P Tablet when my pain is relieved?', 'Limbfast P Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(14176, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Can the use of Limbfast P Tablet cause nausea and vomiting?', 'Yes, the use of Limbfast P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14177, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Can the use of Limbfast P Tablet cause dizziness?', 'Yes, the use of Limbfast P Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(14178, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Can the use of Limbfast P Tablet cause damage to kidneys?', 'Yes, the long-term use of Limbfast P Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(14179, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Are there any specific contraindications associated with the use of Limbfast P Tablet?', 'The use of Limbfast P Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(14180, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Can Limbfast P Tablet be taken with Vitamin B-complex?', 'Yes, Limbfast P Tablet can be taken with Vitamin B-complex preparations. While Limbfast P Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(14181, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'Is it safe to take a higher than the recommended dose of Limbfast P Tablet?', 'No, taking a higher than the recommended dose of Limbfast P Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(14182, 'Limbfast P Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast P Tablet', 'What is the recommended storage condition for Limbfast P Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14183, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'What are the storage condition for Limbfast SP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14184, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'What is Limbfast SP Tablet?', 'Limbfast SP Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(14185, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Is it safe to use Limbfast SP Tablet?', 'Yes, Limbfast SP Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(14186, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Can I stop taking Limbfast SP Tablet when my pain is relieved?', 'Limbfast SP Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Limbfast SP Tablet should be continued if you are advised by your physician to do so.'),
(14187, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Can the use of Limbfast SP Tablet cause nausea and vomiting?', 'Yes, the use of Limbfast SP Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14188, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Can the use of Limbfast SP Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(14189, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Are there any specific contraindications associated with the use of Limbfast SP Tablet?', 'The use of Limbfast SP Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(14190, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Can I take Limbfast SP Tablet with Vitamin B-complex?', 'Limbfast SP Tablet can be taken with Vitamin B-complex preparations. While Limbfast SP Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(14191, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Can I take Limbfast SP Tablet for stomach pain?', 'No, Limbfast SP Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(14192, 'Limbfast SP Tablet', 'Limbson Pharmaceuticals LLP', 'Limbfast SP Tablet', 'Can the use of Limbfast SP Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Limbfast SP Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14193, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'Are there any important warnings associated with use of Limbicon Forte 25mg/10mg Tablet?', 'During the first few months of treatment, Limbicon Forte 25mg/10mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14194, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'Can I stop taking Limbicon Forte 25mg/10mg Tablet when my symptoms are relieved?', 'No, you should continue to take Limbicon Forte 25mg/10mg Tablet, even if you feel well. If you stop Limbicon Forte 25mg/10mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(14195, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'How to manage weight gain associated with the use of Limbicon Forte 25mg/10mg Tablet?', 'There are reports which suggest that the use of Limbicon Forte 25mg/10mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(14196, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'What are the instructions for storage and disposal of Limbicon Forte 25mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14197, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'Can the use of Limbicon Forte 25mg/10mg Tablet cause sleepiness?', 'Yes, Limbicon Forte 25mg/10mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(14198, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'Can the use of Limbicon Forte 25mg/10mg Tablet affect my sexual life?', 'The use of Limbicon Forte 25mg/10mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(14199, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'Can I drink alcohol while taking Limbicon Forte 25mg/10mg Tablet?', 'No, do not drink alcohol while you are taking Limbicon Forte 25mg/10mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Limbicon Forte 25mg/10mg Tablet.'),
(14200, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'Can the use of Limbicon Forte 25mg/10mg Tablet change the color of urine?', 'Yes, Limbicon Forte 25mg/10mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Limbicon Forte 25mg/10mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Limbicon Forte 25mg/10mg Tablet.'),
(14201, 'Limbicon Forte 25mg/10mg Tablet', 'Systopic Laboratories Pvt Ltd', 'Limbicon Forte 25mg/10mg Tablet', 'How long does Limbicon Forte 25mg/10mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Limbicon Forte 25mg/10mg Tablet, although some people will start to feel better sooner. When taking Limbicon Forte 25mg/10mg Tablet, it is important to give it time to work.'),
(14202, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'Are there any important warnings associated with use of Limbitrol 25 mg/10 mg Tablet?', 'During the first few months of treatment, Limbitrol 25 mg/10 mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(14203, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'Can I stop taking Limbitrol 25 mg/10 mg Tablet when my symptoms are relieved?', 'No, you should continue to take Limbitrol 25 mg/10 mg Tablet, even if you feel well. If you stop Limbitrol 25 mg/10 mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(14204, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'How to manage weight gain associated with the use of Limbitrol 25 mg/10 mg Tablet?', 'There are reports which suggest that the use of Limbitrol 25 mg/10 mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(14205, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'What are the instructions for storage and disposal of Limbitrol 25 mg/10 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14206, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'Can the use of Limbitrol 25 mg/10 mg Tablet cause sleepiness?', 'Yes, Limbitrol 25 mg/10 mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(14207, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'Can the use of Limbitrol 25 mg/10 mg Tablet affect my sexual life?', 'The use of Limbitrol 25 mg/10 mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(14208, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'Can I drink alcohol while taking Limbitrol 25 mg/10 mg Tablet?', 'No, do not drink alcohol while you are taking Limbitrol 25 mg/10 mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Limbitrol 25 mg/10 mg Tablet.'),
(14209, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'Can the use of Limbitrol 25 mg/10 mg Tablet change the color of urine?', 'Yes, Limbitrol 25 mg/10 mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Limbitrol 25 mg/10 mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Limbitrol 25 mg/10 mg Tablet.'),
(14210, 'Limbitrol 25 mg/10 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol 25 mg/10 mg Tablet', 'How long does Limbitrol 25 mg/10 mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Limbitrol 25 mg/10 mg Tablet, although some people will start to feel better sooner. When taking Limbitrol 25 mg/10 mg Tablet, it is important to give it time to work.'),
(14211, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'Are there any important warnings associated with use of Limbitrol H 12.5 mg/5 mg Tablet?', 'During the first few months of treatment, Limbitrol H 12.5 mg/5 mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(14212, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'Can I stop taking Limbitrol H 12.5 mg/5 mg Tablet when my symptoms are relieved?', 'No, you should continue to take Limbitrol H 12.5 mg/5 mg Tablet, even if you feel well. If you stop Limbitrol H 12.5 mg/5 mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(14213, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'How to manage weight gain associated with the use of Limbitrol H 12.5 mg/5 mg Tablet?', 'There are reports which suggest that the use of Limbitrol H 12.5 mg/5 mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(14214, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'What are the instructions for storage and disposal of Limbitrol H 12.5 mg/5 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14215, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'Can the use of Limbitrol H 12.5 mg/5 mg Tablet cause sleepiness?', 'Yes, Limbitrol H 12.5 mg/5 mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(14216, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'Can the use of Limbitrol H 12.5 mg/5 mg Tablet affect my sexual life?', 'The use of Limbitrol H 12.5 mg/5 mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(14217, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'Can I drink alcohol while taking Limbitrol H 12.5 mg/5 mg Tablet?', 'No, do not drink alcohol while you are taking Limbitrol H 12.5 mg/5 mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Limbitrol H 12.5 mg/5 mg Tablet.'),
(14218, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'Can the use of Limbitrol H 12.5 mg/5 mg Tablet change the color of urine?', 'Yes, Limbitrol H 12.5 mg/5 mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Limbitrol H 12.5 mg/5 mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Limbitrol H 12.5 mg/5 mg Tablet.'),
(14219, 'Limbitrol H 12.5 mg/5 mg Tablet', 'Crescent Therapeutics Ltd', 'Limbitrol H 12.5 mg/5 mg Tablet', 'How long does Limbitrol H 12.5 mg/5 mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Limbitrol H 12.5 mg/5 mg Tablet, although some people will start to feel better sooner. When taking Limbitrol H 12.5 mg/5 mg Tablet, it is important to give it time to work.'),
(14220, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'Are there any important warnings associated with use of Limbival 12.5mg/5mg Tablet?', 'During the first few months of treatment, Limbival 12.5mg/5mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(14221, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'Can I stop taking Limbival 12.5mg/5mg Tablet when my symptoms are relieved?', 'No, you should continue to take Limbival 12.5mg/5mg Tablet, even if you feel well. If you stop Limbival 12.5mg/5mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(14222, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'How to manage weight gain associated with the use of Limbival 12.5mg/5mg Tablet?', 'There are reports which suggest that the use of Limbival 12.5mg/5mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(14223, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'What are the instructions for storage and disposal of Limbival 12.5mg/5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14224, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'Can the use of Limbival 12.5mg/5mg Tablet cause sleepiness?', 'Yes, Limbival 12.5mg/5mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(14225, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'Can the use of Limbival 12.5mg/5mg Tablet affect my sexual life?', 'The use of Limbival 12.5mg/5mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(14226, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'Can I drink alcohol while taking Limbival 12.5mg/5mg Tablet?', 'No, do not drink alcohol while you are taking Limbival 12.5mg/5mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Limbival 12.5mg/5mg Tablet.'),
(14227, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'Can the use of Limbival 12.5mg/5mg Tablet change the color of urine?', 'Yes, Limbival 12.5mg/5mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Limbival 12.5mg/5mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Limbival 12.5mg/5mg Tablet.'),
(14228, 'Limbival 12.5mg/5mg Tablet', 'Micro Labs Ltd', 'Limbival 12.5mg/5mg Tablet', 'How long does Limbival 12.5mg/5mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Limbival 12.5mg/5mg Tablet, although some people will start to feel better sooner. When taking Limbival 12.5mg/5mg Tablet, it is important to give it time to work.'),
(14229, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'Are there any important warnings associated with use of Limbival Forte 25mg/10mg Tablet?', 'During the first few months of treatment, Limbival Forte 25mg/10mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(14230, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'Can I stop taking Limbival Forte 25mg/10mg Tablet when my symptoms are relieved?', 'No, you should continue to take Limbival Forte 25mg/10mg Tablet, even if you feel well. If you stop Limbival Forte 25mg/10mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(14231, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'How to manage weight gain associated with the use of Limbival Forte 25mg/10mg Tablet?', 'There are reports which suggest that the use of Limbival Forte 25mg/10mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(14232, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'What are the instructions for storage and disposal of Limbival Forte 25mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14233, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'Can the use of Limbival Forte 25mg/10mg Tablet cause sleepiness?', 'Yes, Limbival Forte 25mg/10mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(14234, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'Can the use of Limbival Forte 25mg/10mg Tablet affect my sexual life?', 'The use of Limbival Forte 25mg/10mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(14235, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'Can I drink alcohol while taking Limbival Forte 25mg/10mg Tablet?', 'No, do not drink alcohol while you are taking Limbival Forte 25mg/10mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Limbival Forte 25mg/10mg Tablet.'),
(14236, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'Can the use of Limbival Forte 25mg/10mg Tablet change the color of urine?', 'Yes, Limbival Forte 25mg/10mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Limbival Forte 25mg/10mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Limbival Forte 25mg/10mg Tablet.'),
(14237, 'Limbival Forte 25mg/10mg Tablet', 'Micro Labs Ltd', 'Limbival Forte 25mg/10mg Tablet', 'How long does Limbival Forte 25mg/10mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Limbival Forte 25mg/10mg Tablet, although some people will start to feel better sooner. When taking Limbival Forte 25mg/10mg Tablet, it is important to give it time to work.'),
(14238, 'Limbpred 4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbpred 4mg Tablet', 'What is Limbpred 4mg Tablet used for?', 'Limbpred 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(14239, 'Limbpred 4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbpred 4mg Tablet', 'How does Limbpred 4mg Tablet work?', 'Limbpred 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(14240, 'Limbpred 4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbpred 4mg Tablet', 'Is Limbpred 4mg Tablet effective?', 'Limbpred 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limbpred 4mg Tablet too early, the symptoms may return or worsen.'),
(14241, 'Limbpred 4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbpred 4mg Tablet', 'When will I feel better after taking Limbpred 4mg Tablet?', 'Limbpred 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Limbpred 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Limbpred 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(14242, 'Limbpred 4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbpred 4mg Tablet', 'What if I forget to take a dose of Limbpred 4mg Tablet?', 'If you forget a dose of Limbpred 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14243, 'Limbpred 4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbpred 4mg Tablet', 'Is Limbpred 4mg Tablet safe?', 'Limbpred 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14244, 'Limbrescold Syrup', 'Limbson Pharmaceuticals LLP', 'Limbrescold Syrup', 'Q. Is it safe to use Limbrescold Syrup?', 'Yes, Limbrescold Syrup is safe for most of the patients. However, in some patients it may cause unwanted side effects like nausea, vomiting, headache, fatigue, dizziness, dryness in the mouth, sleepiness, allergic reaction. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(14245, 'Limbrescold Syrup', 'Limbson Pharmaceuticals LLP', 'Limbrescold Syrup', 'Q. Can the use of Limbrescold Syrup cause dizziness?', 'Yes, the use of Limbrescold Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(14246, 'Limbrescold Syrup', 'Limbson Pharmaceuticals LLP', 'Limbrescold Syrup', 'Q. Can the use of Limbrescold Syrup cause nausea and vomiting?', 'Yes, the use of Limbrescold Syrup can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. If vomiting occurs, drink plenty of water or other fluids. Talk to your doctor if vomiting persists. You should also let your doctor know if you are unable to drink water and there are signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without consulting your doctor.'),
(14247, 'Limbtave MF 80mg/250mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtave MF 80mg/250mg Tablet', 'What is Limbtave MF 80mg/250mg Tablet?', 'Limbtave MF 80mg/250mg Tablet is a combination of two medicines: Drotaverine and Mefenamic acid. This medication helps to relieve abdominal pain. Drotaverine relieves muscle spasms associated with smooth muscles in the abdomen. Mefenamic Acid works by blocking the release of certain chemical messengers that cause pain and inflammation (swelling).'),
(14248, 'Limbtave MF 80mg/250mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtave MF 80mg/250mg Tablet', 'Is it safe to use Limbtave MF 80mg/250mg Tablet?', 'Yes, Limbtave MF 80mg/250mg Tablet is safe for most of the patients with abdominal pain. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, diarrhoea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(14249, 'Limbtave MF 80mg/250mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtave MF 80mg/250mg Tablet', 'Can I stop taking Limbtave MF 80mg/250mg Tablet when my pain is relieved?', 'Limbtave MF 80mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Limbtave MF 80mg/250mg Tablet should be continued if your physician has advised you to do so.'),
(14250, 'Limbtave MF 80mg/250mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtave MF 80mg/250mg Tablet', 'Can the use of Limbtave MF 80mg/250mg Tablet cause nausea and vomiting?', 'Yes, the use of Limbtave MF 80mg/250mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Also, avoid taking fatty or fried foods along with the medicine. Talk to your doctor if you have vomiting persists and you notice any signs of dehydration like less urination with dark coloured and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(14251, 'Limbtave MF 80mg/250mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtave MF 80mg/250mg Tablet', 'Can the use of Limbtave MF 80mg/250mg Tablet cause dry mouth?', 'Yes, the use of Limbtave MF 80mg/250mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Avoid spicy, salty and acidic foods (like lemons).'),
(14252, 'Limbtave MF 80mg/250mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtave MF 80mg/250mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, do not take a higher than the recommended dose of Limbtave MF 80mg/250mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14253, 'Limbtave MF 80mg/250mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtave MF 80mg/250mg Tablet', 'What are the recommended storage conditions for Limbtave MF 80mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14254, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'How long does it take for Limbtop 100mg Tablet to work?', 'The amount of time Limbtop 100mg Tablet takes to work varies from person to person, but it normally takes between half an hour and one hour. However, Limbtop 100mg Tablet may take longer to start working if you take it with a heavy meal. Its effect may last for about 3-4 hours.'),
(14255, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Can I get Limbtop 100mg Tablet without a prescription?', 'No, you need a doctor\'s prescription to get Limbtop 100mg Tablet since it is a prescription medicine. Your doctor will prescribe it only if they judge that it would be beneficial for you.'),
(14256, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Can I take Limbtop 100mg Tablet as often as I want?', 'No, do not take Limbtop 100mg Tablet for more than once a day. If you take more Limbtop 100mg Tablet than the recommended dose then you may experience an increase in side effects and their severity. These side effects include flushing, headache, muscle pain, stomach upset, allergic reactions and vision changes such as blurred vision.  Contact your doctor if Limbtop 100mg Tablet does not help you to get an erection, or if your erection does not last long enough for you to complete sexual intercourse.'),
(14257, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'When should I take Limbtop 100mg Tablet?', 'Take Limbtop 100mg Tablet about 1 hour before you plan to have sex. Swallow the tablet whole with a glass of water. Inform your doctor if you feel the effect of Limbtop 100mg Tablet is too strong or too weak.'),
(14258, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Can I take Limbtop 100mg Tablet for premature ejaculation?', 'No, Limbtop 100mg Tablet is not known to have any beneficial effects in treating premature ejaculation. It is used for the treatment of erectile dysfunction.'),
(14259, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Why is the use of Limbtop 100mg Tablet contraindicated with nitrates?', 'Use of Limbtop 100mg Tablet is harmful for patients taking nitrates or blood pressure-lowering medicines as their combined use can cause a severe fall in blood pressure, which can also result in death. However, if these medicines are to be taken together then it is advised to keep a time gap of 24 hours between the intake of Penegra and blood pressure-lowering medicines.'),
(14260, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Why does Limbtop 100mg Tablet cause a fall in blood pressure (hypotension)?', 'Limbtop 100mg Tablet has the property of relaxing the smooth muscle of the blood vessels and widening them which can cause a fall in blood pressure (hypotension). So, when used with blood pressure lowering medicines or nitrates, it can cause a severe fall in blood pressure, which could be fatal. Limbtop 100mg Tablet should not be taken if you are taking nitrates for chest pain or you have a history of heart attack or stroke in the past 6 months.'),
(14261, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Can I take Limbtop 100mg Tablet in my twenties?', 'Yes, if prescribed by your doctor then Limbtop 100mg Tablet can be taken in your twenties.'),
(14262, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Does Limbtop 100mg Tablet increase blood pressure?', 'No, Limbtop 100mg Tablet is not associated with an increase in blood pressure. However, it can cause a decrease in blood pressure especially if taken with other blood pressure-lowering medications. Please consult your doctor before taking Limbtop 100mg Tablet with any other medicine.'),
(14263, 'Limbtop 100mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbtop 100mg Tablet', 'Is Limbtop 100mg Tablet safe to use in patients with diabetes?', 'Yes, if prescribed by your doctor then Limbtop 100mg Tablet is safe to use in patients with diabetes.'),
(14264, 'Limbtrox 1000mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox 1000mg Injection', 'Is Limbtrox 1000mg Injection safe?', 'Limbtrox 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14265, 'Limbtrox 1000mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox 1000mg Injection', 'How long does Limbtrox 1000mg Injection take to work?', 'Usually, Limbtrox 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(14266, 'Limbtrox 1000mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox 1000mg Injection', 'Who should not take Limbtrox 1000mg Injection?', 'Limbtrox 1000mg Injection should not be prescribed to people who are allergic to Limbtrox 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Limbtrox 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(14267, 'Limbtrox 1000mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox 1000mg Injection', 'What if I do not get better after using Limbtrox 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(14268, 'Limbtrox 1000mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox 1000mg Injection', 'For how long does Limbtrox 1000mg Injection stay in the body?', 'Usually, Limbtrox 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(14269, 'Limbtrox 1000mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox 1000mg Injection', 'Is Limbtrox 1000mg Injection effective?', 'Limbtrox 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limbtrox 1000mg Injection too early, the symptoms may return or worsen.'),
(14270, 'Limbtrox 1000mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox 1000mg Injection', 'How is Limbtrox 1000mg Injection administered?', 'Limbtrox 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Limbtrox 1000mg Injection.'),
(14271, 'Limbtrox S 1000mg/500mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox S 1000mg/500mg Injection', 'Can the use of Limbtrox S 1000mg/500mg Injection cause allergic reaction?', 'Yes, Limbtrox S 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(14272, 'Limbtrox S 1000mg/500mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox S 1000mg/500mg Injection', 'Can the use of Limbtrox S 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Limbtrox S 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14273, 'Limbtrox S 1000mg/500mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox S 1000mg/500mg Injection', 'How long does Limbtrox S 1000mg/500mg Injection takes to work?', 'Usually, Limbtrox S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(14274, 'Limbtrox S 1000mg/500mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox S 1000mg/500mg Injection', 'What if I don\'t get better after using Limbtrox S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(14275, 'Limbtrox S 1000mg/500mg Injection', 'Limbson Pharmaceuticals LLP', 'Limbtrox S 1000mg/500mg Injection', 'Can I stop taking Limbtrox S 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Limbtrox S 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(14276, 'Limbvox 500mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbvox 500mg Tablet', 'Is Limbvox 500mg Tablet safe?', 'Limbvox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14277, 'Limbvox 500mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbvox 500mg Tablet', 'What if I forget to take a dose of Limbvox 500mg Tablet?', 'If you forget a dose of Limbvox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14278, 'Limbvox 500mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbvox 500mg Tablet', 'Can the use of Limbvox 500mg Tablet cause diarrhea?', 'Yes, the use of Limbvox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14279, 'Limbvox 500mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbvox 500mg Tablet', 'Can I stop taking Limbvox 500mg Tablet when I feel better?', 'No, do not stop taking Limbvox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Limbvox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Limbvox 500mg Tablet in the dose and duration advised by the doctor.'),
(14280, 'Limbvox 500mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limbvox 500mg Tablet', 'Can the use of Limbvox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Limbvox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Limbvox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14281, 'Limcas 250mg Tablet', 'Jantec Pharma', 'Limcas 250mg Tablet', 'Is Limcas 250mg Tablet safe?', 'Limcas 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14282, 'Limcas 250mg Tablet', 'Jantec Pharma', 'Limcas 250mg Tablet', 'What if I forget to take a dose of Limcas 250mg Tablet?', 'If you forget a dose of Limcas 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14283, 'Limcas 250mg Tablet', 'Jantec Pharma', 'Limcas 250mg Tablet', 'Can the use of Limcas 250mg Tablet cause diarrhea?', 'Yes, the use of Limcas 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14284, 'Limcas 250mg Tablet', 'Jantec Pharma', 'Limcas 250mg Tablet', 'Can I stop taking Limcas 250mg Tablet when I feel better?', 'No, do not stop taking Limcas 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Limcas 250mg Tablet too early, the symptoms may return or worsen. Continue taking Limcas 250mg Tablet in the dose and duration advised by the doctor.'),
(14285, 'Limcas 250mg Tablet', 'Jantec Pharma', 'Limcas 250mg Tablet', 'Can the use of Limcas 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Limcas 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Limcas 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14286, 'Limcas 500mg Tablet', 'Jantec Pharma', 'Limcas 500mg Tablet', 'Is Limcas 500mg Tablet safe?', 'Limcas 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14287, 'Limcas 500mg Tablet', 'Jantec Pharma', 'Limcas 500mg Tablet', 'What if I forget to take a dose of Limcas 500mg Tablet?', 'If you forget a dose of Limcas 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14288, 'Limcas 500mg Tablet', 'Jantec Pharma', 'Limcas 500mg Tablet', 'Can the use of Limcas 500mg Tablet cause diarrhea?', 'Yes, the use of Limcas 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14289, 'Limcas 500mg Tablet', 'Jantec Pharma', 'Limcas 500mg Tablet', 'Can I stop taking Limcas 500mg Tablet when I feel better?', 'No, do not stop taking Limcas 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Limcas 500mg Tablet too early, the symptoms may return or worsen. Continue taking Limcas 500mg Tablet in the dose and duration advised by the doctor.'),
(14290, 'Limcas 500mg Tablet', 'Jantec Pharma', 'Limcas 500mg Tablet', 'Can the use of Limcas 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Limcas 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Limcas 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14291, 'Limcas OZ 250mg/500mg Tablet', 'Jantec Pharma', 'Limcas OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Limcas OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(14292, 'Limcas OZ 250mg/500mg Tablet', 'Jantec Pharma', 'Limcas OZ 250mg/500mg Tablet', 'Can I stop taking Limcas OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Limcas OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(14293, 'Limcas OZ 250mg/500mg Tablet', 'Jantec Pharma', 'Limcas OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Limcas OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(14294, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'What is Limcor Chewable Tablet?', 'Limcor Chewable Tablet consists of a water-soluble vitamin known as vitamin C. Vitamin C is also known as L-ascorbic acid or ascorbate. It cannot be stored for long in our body as it is water soluble. Therefore, it should be taken from food like tomatoes and citrus fruits like oranges to maintain sufficient levels of vitamin C in the body.'),
(14295, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'Is Limcor Chewable Tablet necessary?', 'Limcor Chewable Tablet is used if your diet does not provide enough vitamin C. It can also be used to treat certain conditions caused due to low levels of vitamin C in the body. However, it would be best to consult your doctor before taking Limcor Chewable Tablet to get maximum benefit.'),
(14296, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'Why is it important to take vitamin C in your diet?', 'Vitamin C has many beneficial properties. Vitamin C helps in the growth and repair of tissues of bones, cartilage, tendons, skin, hair, muscles and many more. Along with that, it helps in wound healing and also enhances absorption of iron in our body. Excess of free radicals can speed up the ageing process, vitamin C due to its rich antioxidant properties help to reduce the harmful effects of these free radicals. Vitamin C is very crucial for bone and teeth health. It improves vision and also regulates the blood cholesterol levels. Owing to its numerous benefits, it is very important to take an adequate amount of vitamin C in your diet.'),
(14297, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'Is Limcor Chewable Tablet effective?', 'Limcor Chewable Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limcor Chewable Tablet too early, the symptoms may return or worsen.'),
(14298, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'How should Limcor Chewable Tablet be taken?', 'Limcor Chewable Tablet should be taken in the dose and duration advised by your doctor. It may be taken with or without food preferably at the same time each day to avoid the chances of missing a dose.'),
(14299, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'What if I forget to take a dose of Limcor Chewable Tablet?', 'If you forget a dose of Limcor Chewable Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14300, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'Is Limcor Chewable Tablet safe?', 'Limcor Chewable Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14301, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'What is vitamin C toxicity?', 'Taking vitamin C in excess (more than recommended) can lead to vitamin C toxicity. However, this is not very common. The symptoms of vitamin C toxicity are diarrhea, nausea, stomach cramps and indigestion. Do not worry, this type of toxicity is not a very serious condition and can be treated by stopping the intake of vitamin C supplements. If these symptoms bother you or persist for a longer duration, please consult your doctor.'),
(14302, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'Is Limcor Chewable Tablet good for diabetics?', 'Yes, Limcor Chewable Tablet has been proven to be beneficial for diabetic patients. Limcor Chewable Tablet has also shown positive effects on issues caused by poor blood sugar control. However, if you have diabetes, consult your doctor before starting Limcor Chewable Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14303, 'Limcor Chewable Tablet', 'Rivan Pharma', 'Limcor Chewable Tablet', 'What are the complications of vitamin C deficiency?', 'Deficiency of vitamin C can lead to complications like scurvy (a condition caused by a severe lack of vitamin C in the diet). The symptoms of scurvy include weakness, feeling tired and sore arms and legs. Without treatment, decreased red blood cells, gum disease, changes to hair, and bleeding from the skin may also occur. Additionally, if the deficiency of vitamin C does not improve, it can further lead to worsening of other conditions such as high blood pressure, stroke, atherosclerosis, gallstones and even cancer.'),
(14304, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'What is Limcor Chewable Tablet Orange?', 'Limcor Chewable Tablet Orange consists of a water-soluble vitamin known as vitamin C. Vitamin C is also known as L-ascorbic acid or ascorbate. It cannot be stored for long in our body as it is water soluble. Therefore, it should be taken from food like tomatoes and citrus fruits like oranges to maintain sufficient levels of vitamin C in the body.'),
(14305, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'Is Limcor Chewable Tablet Orange necessary?', 'Limcor Chewable Tablet Orange is used if your diet does not provide enough vitamin C. It can also be used to treat certain conditions caused due to low levels of vitamin C in the body. However, it would be best to consult your doctor before taking Limcor Chewable Tablet Orange to get maximum benefit.'),
(14306, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'Why is it important to take vitamin C in your diet?', 'Vitamin C has many beneficial properties. Vitamin C helps in the growth and repair of tissues of bones, cartilage, tendons, skin, hair, muscles and many more. Along with that, it helps in wound healing and also enhances absorption of iron in our body. Excess of free radicals can speed up the ageing process, vitamin C due to its rich antioxidant properties help to reduce the harmful effects of these free radicals. Vitamin C is very crucial for bone and teeth health. It improves vision and also regulates the blood cholesterol levels. Owing to its numerous benefits, it is very important to take an adequate amount of vitamin C in your diet.'),
(14307, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'Is Limcor Chewable Tablet Orange effective?', 'Limcor Chewable Tablet Orange is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limcor Chewable Tablet Orange too early, the symptoms may return or worsen.'),
(14308, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'How should Limcor Chewable Tablet Orange be taken?', 'Limcor Chewable Tablet Orange should be taken in the dose and duration advised by your doctor. It may be taken with or without food preferably at the same time each day to avoid the chances of missing a dose.'),
(14309, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'What if I forget to take a dose of Limcor Chewable Tablet Orange?', 'If you forget a dose of Limcor Chewable Tablet Orange, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14310, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'Is Limcor Chewable Tablet Orange safe?', 'Limcor Chewable Tablet Orange is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14311, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'What is vitamin C toxicity?', 'Taking vitamin C in excess (more than recommended) can lead to vitamin C toxicity. However, this is not very common. The symptoms of vitamin C toxicity are diarrhea, nausea, stomach cramps and indigestion. Do not worry, this type of toxicity is not a very serious condition and can be treated by stopping the intake of vitamin C supplements. If these symptoms bother you or persist for a longer duration, please consult your doctor.'),
(14312, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'Is Limcor Chewable Tablet Orange good for diabetics?', 'Yes, Limcor Chewable Tablet Orange has been proven to be beneficial for diabetic patients. Limcor Chewable Tablet Orange has also shown positive effects on issues caused by poor blood sugar control. However, if you have diabetes, consult your doctor before starting Limcor Chewable Tablet Orange.'),
(14313, 'Limcor Chewable Tablet Orange', 'Rivan Pharma', 'Limcor Chewable Tablet Orange', 'What are the complications of vitamin C deficiency?', 'Deficiency of vitamin C can lead to complications like scurvy (a condition caused by a severe lack of vitamin C in the diet). The symptoms of scurvy include weakness, feeling tired and sore arms and legs. Without treatment, decreased red blood cells, gum disease, changes to hair, and bleeding from the skin may also occur. Additionally, if the deficiency of vitamin C does not improve, it can further lead to worsening of other conditions such as high blood pressure, stroke, atherosclerosis, gallstones and even cancer.'),
(14314, 'Limcuf Syrup', 'Limcon Healthcare', 'Limcuf Syrup', 'Will a higher than the recommended dose of Limcuf Syrup be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Limcuf Syrup, please consult your doctor.'),
(14315, 'Limcuf Syrup', 'Limcon Healthcare', 'Limcuf Syrup', 'In which type of cough will the doctor prescribe Limcuf Syrup?', 'Limcuf Syrup is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(14316, 'Limcuf Syrup', 'Limcon Healthcare', 'Limcuf Syrup', 'Are there any contraindications associated with use of Limcuf Syrup?', 'It is not recommended to use Limcuf Syrup if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(14317, 'Limcuf Syrup', 'Limcon Healthcare', 'Limcuf Syrup', 'What are the instructions for the storage and disposal of Limcuf Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14318, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'What is Lime P 100mg/500mg Tablet?', 'Lime P 100mg/500mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14319, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'Can I stop taking Lime P 100mg/500mg Tablet when my pain is relieved?', 'Lime P 100mg/500mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(14320, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'Can the use of Lime P 100mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Lime P 100mg/500mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14321, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lime P 100mg/500mg Tablet?', 'The use of Lime P 100mg/500mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(14322, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'Can I take Lime P 100mg/500mg Tablet with Vitamin B-complex?', 'Yes, Lime P 100mg/500mg Tablet can be taken with Vitamin B-complex preparations. While Lime P 100mg/500mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(14323, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'Does Lime P 100mg/500mg Tablet help in relieving stomach pain?', 'No, Lime P 100mg/500mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(14324, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'Can the use of Lime P 100mg/500mg Tablet cause damage to the liver?', 'Lime P 100mg/500mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(14325, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'Is it safe to take a higher than the recommended dose of Lime P 100mg/500mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Lime P 100mg/500mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14326, 'Lime P 100mg/500mg Tablet', 'Alice Healthcare Pvt Ltd', 'Lime P 100mg/500mg Tablet', 'What are the recommended storage conditions for Lime P 100mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14327, 'Limefresh 10mg/10mg/2.5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Limefresh 10mg/10mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Limefresh 10mg/10mg/2.5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it at as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14328, 'Limefresh 10mg/10mg/2.5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Limefresh 10mg/10mg/2.5mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Limefresh 10mg/10mg/2.5mg Tablet can cause increased side effects. If you are experiencing increased severity of nausea or vomiting, which is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14329, 'Limefresh 10mg/10mg/2.5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Limefresh 10mg/10mg/2.5mg Tablet', 'Can the use of Limefresh 10mg/10mg/2.5mg Tablet cause drowsiness or sleepiness?', 'Yes, one of the common side effects of Limefresh 10mg/10mg/2.5mg Tablet is drowsiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention. Do not drink alcohol or take any medicines that may depress the central nervous system like cough and cold medicines, certain pain medicines, and medicines that help you sleep, while you are taking Limefresh 10mg/10mg/2.5mg Tablet. Severe drowsiness can happen or it can become worse and cause falls or accidents.'),
(14330, 'Limefresh 10mg/10mg/2.5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Limefresh 10mg/10mg/2.5mg Tablet', 'Can the use of Limefresh 10mg/10mg/2.5mg Tablet cause dry mouth?', 'Yes, the use of Limefresh 10mg/10mg/2.5mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(14331, 'Limefresh 10mg/10mg/2.5mg Tablet', 'Moraceae Pharmaceuticals Pvt Ltd', 'Limefresh 10mg/10mg/2.5mg Tablet', 'Can a pregnant woman take Limefresh 10mg/10mg/2.5mg Tablet?', 'Yes, it is safe to take Limefresh 10mg/10mg/2.5mg Tablet in pregnant women. In fact, this medicine is used to treat nausea and vomiting in pregnant women. It is mainly recommended to those women whose symptoms have not improved after changing their diet or using other non-medicine treatments.'),
(14332, 'Limer 1M Tablet PR', 'Shine Pharmaceuticals Ltd', 'Limer 1M Tablet PR', 'What are the recommended storage conditions for Limer 1M Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14333, 'Limer 1M Tablet PR', 'Shine Pharmaceuticals Ltd', 'Limer 1M Tablet PR', 'Can the use of Limer 1M Tablet PR lead to lactic acidosis?', 'Yes, the use of Limer 1M Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limer 1M Tablet PR and consult your doctor immediately.'),
(14334, 'Limer 1M Tablet PR', 'Shine Pharmaceuticals Ltd', 'Limer 1M Tablet PR', 'What is Limer 1M Tablet PR?', 'Limer 1M Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14335, 'Limer 1M Tablet PR', 'Shine Pharmaceuticals Ltd', 'Limer 1M Tablet PR', 'What are the possible side effects of Limer 1M Tablet PR?', 'The use of Limer 1M Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14336, 'Limer 1M Tablet PR', 'Shine Pharmaceuticals Ltd', 'Limer 1M Tablet PR', 'Can the use of Limer 1M Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Limer 1M Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14337, 'Limer 1M Tablet PR', 'Shine Pharmaceuticals Ltd', 'Limer 1M Tablet PR', 'Can the use of Limer 1M Tablet PR cause hypoglycemia?', 'Yes, the use of Limer 1M Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14338, 'Limer 1M Tablet PR', 'Shine Pharmaceuticals Ltd', 'Limer 1M Tablet PR', 'Is it safe to take alcohol while I am also taking Limer 1M Tablet PR?', 'No, it is not safe to take Limer 1M Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14339, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'What is the dosage of Limer 1mg Tablet?', 'The recommended starting dose of Limer 1mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(14340, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'Does Limer 1mg Tablet make you sleepy?', 'Limer 1mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(14341, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'Is Limer 1mg Tablet safe for kidneys?', 'Limer 1mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Limer 1mg Tablet is principally eliminated by the kidneys.'),
(14342, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'Does Limer 1mg Tablet cause memory loss?', 'No, it is not known that Limer 1mg Tablet causes memory loss. However, the use of Limer 1mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(14343, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'Who should not take Limer 1mg Tablet?', 'Limer 1mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Limer 1mg Tablet.'),
(14344, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'How long does it take for Limer 1mg Tablet to start working?', 'Limer 1mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(14345, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'How long do I need to take Limer 1mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Limer 1mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Limer 1mg Tablet without talking to your doctor. If you stop taking Limer 1mg Tablet suddenly your diabetes may get worse.'),
(14346, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'What can happen if I take more than the recommended dose of Limer 1mg Tablet?', 'Limer 1mg Tablet should be taken strictly as advised by the doctor. Overdose of Limer 1mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(14347, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'Can you take Limer 1mg Tablet on an empty stomach?', 'No. Taking Limer 1mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Limer 1mg Tablet.'),
(14348, 'Limer 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 1mg Tablet', 'Can Limer 1mg Tablet cause weight gain?', 'Yes, Limer 1mg Tablet can cause weight gain. Limer 1mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(14349, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'What is the dosage of Limer 2mg Tablet?', 'The recommended starting dose of Limer 2mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(14350, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'Does Limer 2mg Tablet make you sleepy?', 'Limer 2mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(14351, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'Is Limer 2mg Tablet safe for kidneys?', 'Limer 2mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Limer 2mg Tablet is principally eliminated by the kidneys.'),
(14352, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'Does Limer 2mg Tablet cause memory loss?', 'No, it is not known that Limer 2mg Tablet causes memory loss. However, the use of Limer 2mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(14353, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'Who should not take Limer 2mg Tablet?', 'Limer 2mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Limer 2mg Tablet.'),
(14354, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'How long does it take for Limer 2mg Tablet to start working?', 'Limer 2mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(14355, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'How long do I need to take Limer 2mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Limer 2mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Limer 2mg Tablet without talking to your doctor. If you stop taking Limer 2mg Tablet suddenly your diabetes may get worse.'),
(14356, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'What can happen if I take more than the recommended dose of Limer 2mg Tablet?', 'Limer 2mg Tablet should be taken strictly as advised by the doctor. Overdose of Limer 2mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(14357, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'Can you take Limer 2mg Tablet on an empty stomach?', 'No. Taking Limer 2mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Limer 2mg Tablet.'),
(14358, 'Limer 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer 2mg Tablet', 'Can Limer 2mg Tablet cause weight gain?', 'Yes, Limer 2mg Tablet can cause weight gain. Limer 2mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(14359, 'Limer M 2 mg/500 mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2 mg/500 mg Tablet', 'What are the recommended storage conditions for Limer M 2 mg/500 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14360, 'Limer M 2 mg/500 mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2 mg/500 mg Tablet', 'Can the use of Limer M 2 mg/500 mg Tablet lead to lactic acidosis?', 'Yes, the use of Limer M 2 mg/500 mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limer M 2 mg/500 mg Tablet and consult your doctor immediately.'),
(14361, 'Limer M 2 mg/500 mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2 mg/500 mg Tablet', 'What is Limer M 2 mg/500 mg Tablet?', 'Limer M 2 mg/500 mg Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14362, 'Limer M 2 mg/500 mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2 mg/500 mg Tablet', 'What are the possible side effects of Limer M 2 mg/500 mg Tablet?', 'The use of Limer M 2 mg/500 mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14363, 'Limer M 2 mg/500 mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2 mg/500 mg Tablet', 'Can the use of Limer M 2 mg/500 mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Limer M 2 mg/500 mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14364, 'Limer M 2 mg/500 mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2 mg/500 mg Tablet', 'Can the use of Limer M 2 mg/500 mg Tablet cause hypoglycemia?', 'Yes, the use of Limer M 2 mg/500 mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14365, 'Limer M 2 mg/500 mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2 mg/500 mg Tablet', 'Is it safe to take alcohol while I am also taking Limer M 2 mg/500 mg Tablet?', 'No, it is not safe to take Limer M 2 mg/500 mg Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14366, 'Limer M 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2mg/1000mg Tablet', 'What are the recommended storage conditions for Limer M 2mg/1000mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14367, 'Limer M 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2mg/1000mg Tablet', 'Can the use of Limer M 2mg/1000mg Tablet lead to lactic acidosis?', 'Yes, the use of Limer M 2mg/1000mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limer M 2mg/1000mg Tablet and consult your doctor immediately.'),
(14368, 'Limer M 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2mg/1000mg Tablet', 'What is Limer M 2mg/1000mg Tablet?', 'Limer M 2mg/1000mg Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14369, 'Limer M 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2mg/1000mg Tablet', 'What are the possible side effects of Limer M 2mg/1000mg Tablet?', 'The use of Limer M 2mg/1000mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14370, 'Limer M 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2mg/1000mg Tablet', 'Can the use of Limer M 2mg/1000mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Limer M 2mg/1000mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14371, 'Limer M 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2mg/1000mg Tablet', 'Can the use of Limer M 2mg/1000mg Tablet cause hypoglycemia?', 'Yes, the use of Limer M 2mg/1000mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14372, 'Limer M 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M 2mg/1000mg Tablet', 'Is it safe to take alcohol while I am also taking Limer M 2mg/1000mg Tablet?', 'No, it is not safe to take Limer M 2mg/1000mg Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14373, 'Limer M Forte 1mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 1mg/1000mg Tablet', 'What are the recommended storage conditions for Limer M Forte 1mg/1000mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14374, 'Limer M Forte 1mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 1mg/1000mg Tablet', 'Can the use of Limer M Forte 1mg/1000mg Tablet lead to lactic acidosis?', 'Yes, the use of Limer M Forte 1mg/1000mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limer M Forte 1mg/1000mg Tablet and consult your doctor immediately.'),
(14375, 'Limer M Forte 1mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 1mg/1000mg Tablet', 'What is Limer M Forte 1mg/1000mg Tablet?', 'Limer M Forte 1mg/1000mg Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14376, 'Limer M Forte 1mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 1mg/1000mg Tablet', 'What are the possible side effects of Limer M Forte 1mg/1000mg Tablet?', 'The use of Limer M Forte 1mg/1000mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14377, 'Limer M Forte 1mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 1mg/1000mg Tablet', 'Can the use of Limer M Forte 1mg/1000mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Limer M Forte 1mg/1000mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14378, 'Limer M Forte 1mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 1mg/1000mg Tablet', 'Can the use of Limer M Forte 1mg/1000mg Tablet cause hypoglycemia?', 'Yes, the use of Limer M Forte 1mg/1000mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14379, 'Limer M Forte 1mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 1mg/1000mg Tablet', 'Is it safe to take alcohol while I am also taking Limer M Forte 1mg/1000mg Tablet?', 'No, it is not safe to take Limer M Forte 1mg/1000mg Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14380, 'Limer M Forte 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 2mg/1000mg Tablet', 'What are the recommended storage conditions for Limer M Forte 2mg/1000mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14381, 'Limer M Forte 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 2mg/1000mg Tablet', 'Can the use of Limer M Forte 2mg/1000mg Tablet lead to lactic acidosis?', 'Yes, the use of Limer M Forte 2mg/1000mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limer M Forte 2mg/1000mg Tablet and consult your doctor immediately.'),
(14382, 'Limer M Forte 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 2mg/1000mg Tablet', 'What is Limer M Forte 2mg/1000mg Tablet?', 'Limer M Forte 2mg/1000mg Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14383, 'Limer M Forte 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 2mg/1000mg Tablet', 'What are the possible side effects of Limer M Forte 2mg/1000mg Tablet?', 'The use of Limer M Forte 2mg/1000mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14384, 'Limer M Forte 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 2mg/1000mg Tablet', 'Can the use of Limer M Forte 2mg/1000mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Limer M Forte 2mg/1000mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14385, 'Limer M Forte 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 2mg/1000mg Tablet', 'Can the use of Limer M Forte 2mg/1000mg Tablet cause hypoglycemia?', 'Yes, the use of Limer M Forte 2mg/1000mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14386, 'Limer M Forte 2mg/1000mg Tablet', 'Shine Pharmaceuticals Ltd', 'Limer M Forte 2mg/1000mg Tablet', 'Is it safe to take alcohol while I am also taking Limer M Forte 2mg/1000mg Tablet?', 'No, it is not safe to take Limer M Forte 2mg/1000mg Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14387, 'Limeride-MP 2 Tablet SR', 'Bon Merci Life Sciences', 'Limeride-MP 2 Tablet SR', 'Can I drink alcohol while taking Limeride-MP 2 Tablet SR?', 'No, it is not safe to drink alcohol while using Limeride-MP 2 Tablet SR. Drinking alcohol may lower your blood sugar levels (hypoglycemia). Also, it can increase the chances of lactic acidosis.'),
(14388, 'Limeride-MP 2 Tablet SR', 'Bon Merci Life Sciences', 'Limeride-MP 2 Tablet SR', 'What should I inform the doctor before taking Limeride-MP 2 Tablet SR?', 'Before taking Limeride-MP 2 Tablet SR inform your doctor if you have congestive heart failure, kidney problems, liver problems, swelling of the back of the eye. Inform the doctor if you are pregnant, breastfeeding or a premenopausal woman. Let the doctor know if you are taking any prescription and non-prescription medicines, vitamins, and herbal supplements.'),
(14389, 'Limeride-MP 2 Tablet SR', 'Bon Merci Life Sciences', 'Limeride-MP 2 Tablet SR', 'Can the use of Limeride-MP 2 Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Limeride-MP 2 Tablet SR can cause vitamin B12 deficiency as it contains metformin in it. On long-term use, it interferes with absorption of vitamin B12 in the stomach.'),
(14390, 'Limeride-MP 2 Tablet SR', 'Bon Merci Life Sciences', 'Limeride-MP 2 Tablet SR', 'Can the use of Limeride-MP 2 Tablet SR cause hypoglycemia?', 'Yes, the use of Limeride-MP 2 Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your meal, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always carry some sugary item like a candy or chocolate with you.'),
(14391, 'Limeride-MP 2 Tablet SR', 'Bon Merci Life Sciences', 'Limeride-MP 2 Tablet SR', 'What are the instructions for the storage and disposal of Limeride-MP 2 Tablet SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14392, 'Limet Myo 500mg/550mg Tablet', 'Cheminnova Life Sciences', 'Limet Myo 500mg/550mg Tablet', 'What is Limet Myo 500mg/550mg Tablet?', 'Limet Myo 500mg/550mg Tablet is a combination of two medicines: Metformin and Myo Inositol. This medicine is used in the treatment of Polycystic ovarian syndrome (PCOS). Metformin is an antidiabetic medicine which helps to regulate menstrual cycle by improving the insulin sensitivity. This helps in regularizing the menstrual cycles in women. Myo-inositol is safe and effective and acts as natural insulin sensitizer which helps to reduce androgen (male) hormones and restores ovulatory function in females.'),
(14393, 'Limet Myo 500mg/550mg Tablet', 'Cheminnova Life Sciences', 'Limet Myo 500mg/550mg Tablet', 'What are the possible side effects of Limet Myo 500mg/550mg Tablet?', 'The use of Limet Myo 500mg/550mg Tablet is associated with common side effects like nausea, altered taste, diarrhea, stomach pain and loss of appetite.'),
(14394, 'Limet Myo 500mg/550mg Tablet', 'Cheminnova Life Sciences', 'Limet Myo 500mg/550mg Tablet', 'What is polycystic ovarian syndrome (PCOS)?', 'Polycystic ovarian syndrome is a medical condition seen in women of childbearing age. PCOS causes irregular menstrual cycle (periods), excess levels of androgens (high level of male hormones) and polycystic ovaries (enlarged ovaries with fluid-filled sacs or follicles). Signs and symptoms include raised insulin levels leading to diabetes, irregular periods or absence of periods, weight gain, oily skin or acne, excessive hair growth (hirsutism) usually on the face, chest, back or buttocks and thinning of hair.'),
(14395, 'Limet Myo 500mg/550mg Tablet', 'Cheminnova Life Sciences', 'Limet Myo 500mg/550mg Tablet', 'Can the use of Limet Myo 500mg/550mg Tablet cause nausea and vomiting?', 'Yes, the use of Limet Myo 500mg/550mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can help prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(14396, 'Limet Myo 500mg/550mg Tablet', 'Cheminnova Life Sciences', 'Limet Myo 500mg/550mg Tablet', 'When should I take Limet Myo 500mg/550mg Tablet?', 'It is best to take Limet Myo 500mg/550mg Tablet at your bed time as this will minimize the side effects caused by this medicine.'),
(14397, 'Limformin-M1 Tablet PR', 'Akshita Remedies', 'Limformin-M1 Tablet PR', 'What are the recommended storage conditions for Limformin-M1 Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14398, 'Limformin-M1 Tablet PR', 'Akshita Remedies', 'Limformin-M1 Tablet PR', 'Can the use of Limformin-M1 Tablet PR lead to lactic acidosis?', 'Yes, the use of Limformin-M1 Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limformin-M1 Tablet PR and consult your doctor immediately.'),
(14399, 'Limformin-M1 Tablet PR', 'Akshita Remedies', 'Limformin-M1 Tablet PR', 'What is Limformin-M1 Tablet PR?', 'Limformin-M1 Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14400, 'Limformin-M1 Tablet PR', 'Akshita Remedies', 'Limformin-M1 Tablet PR', 'What are the possible side effects of Limformin-M1 Tablet PR?', 'The use of Limformin-M1 Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14401, 'Limformin-M1 Tablet PR', 'Akshita Remedies', 'Limformin-M1 Tablet PR', 'Can the use of Limformin-M1 Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Limformin-M1 Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14402, 'Limformin-M1 Tablet PR', 'Akshita Remedies', 'Limformin-M1 Tablet PR', 'Can the use of Limformin-M1 Tablet PR cause hypoglycemia?', 'Yes, the use of Limformin-M1 Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14403, 'Limformin-M1 Tablet PR', 'Akshita Remedies', 'Limformin-M1 Tablet PR', 'Is it safe to take alcohol while I am also taking Limformin-M1 Tablet PR?', 'No, it is not safe to take Limformin-M1 Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14404, 'Limformin-M2 Tablet PR', 'Akshita Remedies', 'Limformin-M2 Tablet PR', 'What are the recommended storage conditions for Limformin-M2 Tablet PR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14405, 'Limformin-M2 Tablet PR', 'Akshita Remedies', 'Limformin-M2 Tablet PR', 'Can the use of Limformin-M2 Tablet PR lead to lactic acidosis?', 'Yes, the use of Limformin-M2 Tablet PR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limformin-M2 Tablet PR and consult your doctor immediately.'),
(14406, 'Limformin-M2 Tablet PR', 'Akshita Remedies', 'Limformin-M2 Tablet PR', 'What is Limformin-M2 Tablet PR?', 'Limformin-M2 Tablet PR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14407, 'Limformin-M2 Tablet PR', 'Akshita Remedies', 'Limformin-M2 Tablet PR', 'What are the possible side effects of Limformin-M2 Tablet PR?', 'The use of Limformin-M2 Tablet PR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14408, 'Limformin-M2 Tablet PR', 'Akshita Remedies', 'Limformin-M2 Tablet PR', 'Can the use of Limformin-M2 Tablet PR lead to Vitamin B12 deficiency?', 'Yes, the use of Limformin-M2 Tablet PR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14409, 'Limformin-M2 Tablet PR', 'Akshita Remedies', 'Limformin-M2 Tablet PR', 'Can the use of Limformin-M2 Tablet PR cause hypoglycemia?', 'Yes, the use of Limformin-M2 Tablet PR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14410, 'Limformin-M2 Tablet PR', 'Akshita Remedies', 'Limformin-M2 Tablet PR', 'Is it safe to take alcohol while I am also taking Limformin-M2 Tablet PR?', 'No, it is not safe to take Limformin-M2 Tablet PR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14411, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. What is Limgesia 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14412, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Is it safe to take Limgesia 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(14413, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Can I stop taking Limgesia 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(14414, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Can Limgesia 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(14415, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Can Limgesia 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(14416, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Are there any specific contraindications associated with taking Limgesia 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(14417, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Can I take Limgesia 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(14418, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Can the use of Limgesia 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(14419, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. Can I take a higher dose of Limgesia 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14420, 'Limgesia 100mg/325mg/15mg Tablet', 'Limra Pharmaceuticals', 'Limgesia 100mg/325mg/15mg Tablet', 'Q. What are the instructions for storage and disposal of Limgesia 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14421, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'What is the dosage of Limi 1mg Tablet?', 'The recommended starting dose of Limi 1mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(14422, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'Does Limi 1mg Tablet make you sleepy?', 'Limi 1mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(14423, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'Is Limi 1mg Tablet safe for kidneys?', 'Limi 1mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Limi 1mg Tablet is principally eliminated by the kidneys.'),
(14424, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'Does Limi 1mg Tablet cause memory loss?', 'No, it is not known that Limi 1mg Tablet causes memory loss. However, the use of Limi 1mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(14425, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'Who should not take Limi 1mg Tablet?', 'Limi 1mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Limi 1mg Tablet.'),
(14426, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'How long does it take for Limi 1mg Tablet to start working?', 'Limi 1mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(14427, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'How long do I need to take Limi 1mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Limi 1mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Limi 1mg Tablet without talking to your doctor. If you stop taking Limi 1mg Tablet suddenly your diabetes may get worse.'),
(14428, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'What can happen if I take more than the recommended dose of Limi 1mg Tablet?', 'Limi 1mg Tablet should be taken strictly as advised by the doctor. Overdose of Limi 1mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(14429, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'Can you take Limi 1mg Tablet on an empty stomach?', 'No. Taking Limi 1mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Limi 1mg Tablet.'),
(14430, 'Limi 1mg Tablet', 'Hinglaj Laboratories', 'Limi 1mg Tablet', 'Can Limi 1mg Tablet cause weight gain?', 'Yes, Limi 1mg Tablet can cause weight gain. Limi 1mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(14431, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'What is the dosage of Limi 2mg Tablet?', 'The recommended starting dose of Limi 2mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(14432, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'Does Limi 2mg Tablet make you sleepy?', 'Limi 2mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(14433, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'Is Limi 2mg Tablet safe for kidneys?', 'Limi 2mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Limi 2mg Tablet is principally eliminated by the kidneys.'),
(14434, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'Does Limi 2mg Tablet cause memory loss?', 'No, it is not known that Limi 2mg Tablet causes memory loss. However, the use of Limi 2mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(14435, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'Who should not take Limi 2mg Tablet?', 'Limi 2mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Limi 2mg Tablet.'),
(14436, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'How long does it take for Limi 2mg Tablet to start working?', 'Limi 2mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(14437, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'How long do I need to take Limi 2mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Limi 2mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Limi 2mg Tablet without talking to your doctor. If you stop taking Limi 2mg Tablet suddenly your diabetes may get worse.'),
(14438, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'What can happen if I take more than the recommended dose of Limi 2mg Tablet?', 'Limi 2mg Tablet should be taken strictly as advised by the doctor. Overdose of Limi 2mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(14439, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'Can you take Limi 2mg Tablet on an empty stomach?', 'No. Taking Limi 2mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Limi 2mg Tablet.'),
(14440, 'Limi 2mg Tablet', 'Hinglaj Laboratories', 'Limi 2mg Tablet', 'Can Limi 2mg Tablet cause weight gain?', 'Yes, Limi 2mg Tablet can cause weight gain. Limi 2mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(14441, 'Limicort Ointment', 'Catholicon Pharmaceuticals Pvt Ltd', 'Limicort Ointment', 'What is Limicort Ointment used for?', 'Limicort Ointment is a medicine that modulates the immune system. It works on the immune system and mostly decreases its activity. It is used to treat moderate to severe eczema (atopic dermatitis) in adults who do not respond to steroids or develop side effects on using them. In atopic dermatitis, the skin’s immune system undergoes an overreaction and causes skin inflammation leading to itchiness, redness and dryness. Limicort Ointment acts on the abnormal immune response and alters it, thereby relieving the skin inflammation and itchiness.'),
(14442, 'Limicort Ointment', 'Catholicon Pharmaceuticals Pvt Ltd', 'Limicort Ointment', 'What are the side effects of Limicort Ointment?', 'Limicort Ointment, when applied to the skin, may cause skin irritation, burning sensation and itching at the site of application. These are usually mild to moderate in severity and normally resolve within one week of starting the treatment. Redness is also a common manifestation along with sensation of warmth, pain, altered sensation and rash at the site of application. Using it increases the patients’ increased risk of getting inflamed or infected hair follicles, cold sores, acne and generalized herpes simplex infections.'),
(14443, 'Limicort Ointment', 'Catholicon Pharmaceuticals Pvt Ltd', 'Limicort Ointment', 'Is Limicort Ointment ointment safe?', 'As compared to other immune-suppressing medicines, Limicort Ointment has been found to be a safe and effective short-term treatment for atopic dermatitis. When applied on the affected part of the skin, its absorption to the blood and body is minimal. Hence, the side effects are less as compared to when taken through oral route.'),
(14444, 'Limicort Ointment', 'Catholicon Pharmaceuticals Pvt Ltd', 'Limicort Ointment', 'Does Limicort Ointment has abuse potential?', 'No, Limicort Ointment does not have abuse potential and thus, is not a controlled substance. Controlled substances have potential for abuse so they need permission by authorities and doctor for use.'),
(14445, 'Limicort Ointment', 'Catholicon Pharmaceuticals Pvt Ltd', 'Limicort Ointment', 'Does Limicort Ointment cause cancer?', 'Long-term use of Limicort Ointment has been found to have increased risk of lymph node tumors called lymphoma. Some studies have found that few patients who used Limicort Ointment ointment or another similar medication developed skin cancer or lymphoma. Consult your doctor if you have to use Limicort Ointment ointment for more than 6 weeks or if your eczema symptoms have not improved or are getting worse with time during your treatment.'),
(14446, 'Limicort Ointment', 'Catholicon Pharmaceuticals Pvt Ltd', 'Limicort Ointment', 'Is Limicort Ointment a steroid?', 'No, Limicort Ointment is not a steroid. It is a medicine which modulates the working of the immune system. It is used in the treatment of eczema, most commonly in atopic dermatitis. An advantage of Limicort Ointment is that it does not cause skin thinning (atrophy) or other steroid-related side effects.'),
(14447, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'What is the dosage of Limigen 1mg Tablet?', 'The recommended starting dose of Limigen 1mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(14448, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'Does Limigen 1mg Tablet make you sleepy?', 'Limigen 1mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(14449, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'Is Limigen 1mg Tablet safe for kidneys?', 'Limigen 1mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Limigen 1mg Tablet is principally eliminated by the kidneys.'),
(14450, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'Does Limigen 1mg Tablet cause memory loss?', 'No, it is not known that Limigen 1mg Tablet causes memory loss. However, the use of Limigen 1mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(14451, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'Who should not take Limigen 1mg Tablet?', 'Limigen 1mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Limigen 1mg Tablet.'),
(14452, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'How long does it take for Limigen 1mg Tablet to start working?', 'Limigen 1mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(14453, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'How long do I need to take Limigen 1mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Limigen 1mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Limigen 1mg Tablet without talking to your doctor. If you stop taking Limigen 1mg Tablet suddenly your diabetes may get worse.'),
(14454, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'What can happen if I take more than the recommended dose of Limigen 1mg Tablet?', 'Limigen 1mg Tablet should be taken strictly as advised by the doctor. Overdose of Limigen 1mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(14455, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'Can you take Limigen 1mg Tablet on an empty stomach?', 'No. Taking Limigen 1mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Limigen 1mg Tablet.'),
(14456, 'Limigen 1mg Tablet', 'Algen Healthcare Limited', 'Limigen 1mg Tablet', 'Can Limigen 1mg Tablet cause weight gain?', 'Yes, Limigen 1mg Tablet can cause weight gain. Limigen 1mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(14457, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'What is the dosage of Limigen 2mg Tablet?', 'The recommended starting dose of Limigen 2mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(14458, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'Does Limigen 2mg Tablet make you sleepy?', 'Limigen 2mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(14459, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'Is Limigen 2mg Tablet safe for kidneys?', 'Limigen 2mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Limigen 2mg Tablet is principally eliminated by the kidneys.'),
(14460, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'Does Limigen 2mg Tablet cause memory loss?', 'No, it is not known that Limigen 2mg Tablet causes memory loss. However, the use of Limigen 2mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(14461, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'Who should not take Limigen 2mg Tablet?', 'Limigen 2mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Limigen 2mg Tablet.'),
(14462, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'How long does it take for Limigen 2mg Tablet to start working?', 'Limigen 2mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(14463, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'How long do I need to take Limigen 2mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Limigen 2mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Limigen 2mg Tablet without talking to your doctor. If you stop taking Limigen 2mg Tablet suddenly your diabetes may get worse.'),
(14464, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'What can happen if I take more than the recommended dose of Limigen 2mg Tablet?', 'Limigen 2mg Tablet should be taken strictly as advised by the doctor. Overdose of Limigen 2mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(14465, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'Can you take Limigen 2mg Tablet on an empty stomach?', 'No. Taking Limigen 2mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Limigen 2mg Tablet.'),
(14466, 'Limigen 2mg Tablet', 'Algen Healthcare Limited', 'Limigen 2mg Tablet', 'Can Limigen 2mg Tablet cause weight gain?', 'Yes, Limigen 2mg Tablet can cause weight gain. Limigen 2mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(14467, 'Limirox CV 500mg/125mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Limirox CV 500mg/125mg Tablet', 'Can Limirox CV 500mg/125mg Tablet be used to treat viral infections?', 'No, Limirox CV 500mg/125mg Tablet is only indicated to treat bacterial infections. It does not treat viral infections such as common cold, flu.'),
(14468, 'Limirox CV 500mg/125mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Limirox CV 500mg/125mg Tablet', 'What are the contraindications associated with the use of Limirox CV 500mg/125mg Tablet?', 'The use of Limirox CV 500mg/125mg Tablet should be avoided in patients with known allergy to any constituents of this medicine. Inform your doctor about your medical history before taking this medicine to avoid any side effects.'),
(14469, 'Limirox CV 500mg/125mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Limirox CV 500mg/125mg Tablet', 'Can the use of Limirox CV 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Limirox CV 500mg/125mg Tablet can cause diarrhea. Antibiotics can kill good, or helpful bacteria in your stomach and can cause diarrhea. If you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if you have persistent diarrhea. Do not take any other medicines without consulting a doctor.'),
(14470, 'Limirox CV 500mg/125mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Limirox CV 500mg/125mg Tablet', 'Can I stop taking Limirox CV 500mg/125mg Tablet when I feel better?', 'No, do not stop taking Limirox CV 500mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(14471, 'Limirox CV 500mg/125mg Tablet', 'Carenix Bio Pharma Pvt. Ltd.', 'Limirox CV 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Limirox CV 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14472, 'Limitas 100mg Tablet DT', 'Emco Biotech', 'Limitas 100mg Tablet DT', 'I started Limitas 100mg Tablet DT and developed a rash. The doctor stopped Limitas 100mg Tablet DT immediately and prescribed another medicine. Why?', 'There have been reports where patients developed serious rashes within 8 weeks of starting Limitas 100mg Tablet DT and were hospitalized. Sometimes these rashes turn into severe skin infections and may endanger the patient’s life. Therefore, it is advised that if a patient develops rashes after starting Limitas 100mg Tablet DT, it should be stopped and should not be restarted. Use of Limitas 100mg Tablet DT is stopped even if the rashes are mild and non-serious. It is because of this that your doctor changed the medicine.'),
(14473, 'Limitas 100mg Tablet DT', 'Emco Biotech', 'Limitas 100mg Tablet DT', 'How long does it take Limitas 100mg Tablet DT to work?', 'Though it varies from person to person, your symptoms may take about 6-8 weeks to improve.'),
(14474, 'Limitas 100mg Tablet DT', 'Emco Biotech', 'Limitas 100mg Tablet DT', 'What can be the consequences of taking a higher than the recommended dose of Limitas 100mg Tablet DT?', 'You may experience quick and uncontrollable movements of your eye, clumsiness, and lack of coordination. High doses of Limitas 100mg Tablet DT may cause problems with your balance, changes in heartbeat rhythm, loss of consciousness, fits (convulsions) or coma. Even if there are no signs of discomfort, seek immediate medical attention of a doctor or nearby hospital.'),
(14475, 'Limitas 100mg Tablet DT', 'Emco Biotech', 'Limitas 100mg Tablet DT', 'Can Limitas 100mg Tablet DT affect pregnancy?', 'Studies on the human population do not show any effects of Limitas 100mg Tablet DT on pregnant women or her fetus. However, it is advisable that you inform your doctor immediately if you become pregnant or are planning to get pregnant while taking Limitas 100mg Tablet DT. In case therapy with Limitas 100mg Tablet DT is considered during pregnancy, your doctor may prescribe the lowest effective dose.'),
(14476, 'Limitas 100mg Tablet DT', 'Emco Biotech', 'Limitas 100mg Tablet DT', 'Can I take Limitas 100mg Tablet DT with other antiepileptic medicines?', 'It is important that you inform your doctor if you are already on any other antiepileptic medicines. The reason being, taking Limitas 100mg Tablet DT  with some antiepileptics (like valproate and carbamazepine) may increase the chances of developing side effects. Also, the dose of Limitas 100mg Tablet DT  may need adjustment if taken with antiepileptic medicines such as oxcarbazepine, felbamate, gabapentin, levetiracetam, pregabalin, topiramate or zonisamide.'),
(14477, 'Limitas 100mg Tablet DT', 'Emco Biotech', 'Limitas 100mg Tablet DT', 'How to take Limitas 100mg Tablet DT?', 'Limitas 100mg Tablet DT can be taken with or without food. Continue taking Limitas 100mg Tablet DT in the dose and duration advised by the doctor to get maximum benefits of Limitas 100mg Tablet DT.'),
(14478, 'Limitas 100mg Tablet DT', 'Emco Biotech', 'Limitas 100mg Tablet DT', 'I have symptoms of depression. Can I take Limitas 100mg Tablet DT?', 'Yes, you can take Limitas 100mg Tablet DT if you have depression symptoms. In fact, Limitas 100mg Tablet DT is used in preventing depression. But, do not self medicate. Do not start or stop taking Limitas 100mg Tablet DT on your own, unless otherwise advised by the doctor.'),
(14479, 'Limit-LC Tablet', 'Analeptic Manufacturing India', 'Limit-LC Tablet', 'What is Limit-LC Tablet?', 'Limit-LC Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(14480, 'Limit-LC Tablet', 'Analeptic Manufacturing India', 'Limit-LC Tablet', 'Can the use of Limit-LC Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Limit-LC Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(14481, 'Limit-LC Tablet', 'Analeptic Manufacturing India', 'Limit-LC Tablet', 'Can Limit-LC Tablet be stopped when allergy symptoms are relieved?', 'No, Limit-LC Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(14482, 'Limit-LC Tablet', 'Analeptic Manufacturing India', 'Limit-LC Tablet', 'Can the use of Limit-LC Tablet cause dry mouth?', 'Yes, the use of Limit-LC Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(14483, 'Limit-LC Tablet', 'Analeptic Manufacturing India', 'Limit-LC Tablet', 'Can I drink alcohol while taking Limit-LC Tablet?', 'No, do not take alcohol while taking Limit-LC Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Limit-LC Tablet.'),
(14484, 'Limit-LC Tablet', 'Analeptic Manufacturing India', 'Limit-LC Tablet', 'Will Limit-LC Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Limit-LC Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(14485, 'Limit-LC Tablet', 'Analeptic Manufacturing India', 'Limit-LC Tablet', 'What are the instructions for storage and disposal of Limit-LC Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(14486, 'Limkast 5mg/10mg Tablet', 'MLT Laboratories Pvt Ltd', 'Limkast 5mg/10mg Tablet', 'What is Limkast 5mg/10mg Tablet?', 'Limkast 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(14487, 'Limkast 5mg/10mg Tablet', 'MLT Laboratories Pvt Ltd', 'Limkast 5mg/10mg Tablet', 'Can the use of Limkast 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Limkast 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(14488, 'Limkast 5mg/10mg Tablet', 'MLT Laboratories Pvt Ltd', 'Limkast 5mg/10mg Tablet', 'Can Limkast 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Limkast 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(14489, 'Limkast 5mg/10mg Tablet', 'MLT Laboratories Pvt Ltd', 'Limkast 5mg/10mg Tablet', 'Can the use of Limkast 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Limkast 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(14490, 'Limkast 5mg/10mg Tablet', 'MLT Laboratories Pvt Ltd', 'Limkast 5mg/10mg Tablet', 'Can I drink alcohol while taking Limkast 5mg/10mg Tablet?', 'No, do not take alcohol while taking Limkast 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Limkast 5mg/10mg Tablet.'),
(14491, 'Limkast 5mg/10mg Tablet', 'MLT Laboratories Pvt Ltd', 'Limkast 5mg/10mg Tablet', 'Will Limkast 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Limkast 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(14492, 'Limkast 5mg/10mg Tablet', 'MLT Laboratories Pvt Ltd', 'Limkast 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Limkast 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(14493, 'Limo 1200mg Tablet', 'Intas Pharmaceuticals Ltd', 'Limo 1200mg Tablet', 'Can the use of Limo 1200mg Tablet cause diarrhea?', 'Yes, the use of Limo 1200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14494, 'Limo 1200mg Tablet', 'Intas Pharmaceuticals Ltd', 'Limo 1200mg Tablet', 'What foods should I avoid while taking Limo 1200mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Limo 1200mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(14495, 'Limodor 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limodor 500mg Injection', 'What is Limodor 500mg Injection used for?', 'Limodor 500mg Injection is used to fight bacterial infections and prevent bacteria from growing. It acts by interfering with the bacterial protein synthesis which helps to treat the infection. Limodor 500mg Injection is also helpful in the treatment of bacterial infections of the bladder, kidney and other parts of the urinary tract.'),
(14496, 'Limodor 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limodor 500mg Injection', 'Is Limodor 500mg Injection available over-the-counter?', 'No, Limodor 500mg Injection, just like other antibiotics, requires a valid prescription by a doctor to buy it. Therefore, it is advisable to take Limodor 500mg Injection only if prescribed by a doctor.'),
(14497, 'Limodor 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limodor 500mg Injection', 'How is Limodor 500mg Injection administered?', 'Limodor 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Limodor 500mg Injection.'),
(14498, 'Limodor 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limodor 500mg Injection', 'Does Limodor 500mg Injection cure flu?', 'No, antibiotics such as Limodor 500mg Injection will not work for flu or other viral infections. Using antibiotics when they are not needed may increase your risk of getting infection later, that resists antibiotic treatment. Consult your doctor if you have any doubts.'),
(14499, 'Limodor 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limodor 500mg Injection', 'What happens if I take too much of Limodor 500mg Injection?', 'If you have mistakenly taken too much of Limodor 500mg Injection, you may experience symptoms such as stomach ache, nausea and vomiting. You should consult your doctor immediately or rush to the emergency room in any nearby hospital if you have taken an overdose of Limodor 500mg Injection.'),
(14500, 'Limodor 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limodor 500mg Injection', 'Should I avoid some medicines while taking Limodor 500mg Injection?', 'Yes. There are some medicines that may reduce the effect of Limodor 500mg Injection, interact with Limodor 500mg Injection or cause serious side-effects when given at the same time. These medicines include Sodium Valproate, Ethinyl Estradiol and Live cholera vaccine. So, always inform and check with your doctor before taking Limodor 500mg Injection with other medications.'),
(14501, 'Limodor 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limodor 500mg Injection', 'How to store Limodor 500mg Injection?', 'Limodor 500mg Injection should be stored at around the room temperature (not more than 25°C) away from heat and sunlight. Do not freeze it and always keep it out of the reach and sight of the children.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14502, 'Limokast M 5mg/10mg Tablet', 'Ecure Pharma', 'Limokast M 5mg/10mg Tablet', 'What is Limokast M 5mg/10mg Tablet?', 'Limokast M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(14503, 'Limokast M 5mg/10mg Tablet', 'Ecure Pharma', 'Limokast M 5mg/10mg Tablet', 'Can the use of Limokast M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Limokast M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(14504, 'Limokast M 5mg/10mg Tablet', 'Ecure Pharma', 'Limokast M 5mg/10mg Tablet', 'Can Limokast M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Limokast M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(14505, 'Limokast M 5mg/10mg Tablet', 'Ecure Pharma', 'Limokast M 5mg/10mg Tablet', 'Can the use of Limokast M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Limokast M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(14506, 'Limokast M 5mg/10mg Tablet', 'Ecure Pharma', 'Limokast M 5mg/10mg Tablet', 'Can I drink alcohol while taking Limokast M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Limokast M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Limokast M 5mg/10mg Tablet.'),
(14507, 'Limokast M 5mg/10mg Tablet', 'Ecure Pharma', 'Limokast M 5mg/10mg Tablet', 'Will Limokast M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Limokast M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(14508, 'Limokast M 5mg/10mg Tablet', 'Ecure Pharma', 'Limokast M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Limokast M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(14509, 'Limolin 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limolin 500mg Injection', 'I have been prescribed Limolin 500mg Injection for Alzheimer’s disease. What is its role, and how does it work?', 'Limolin 500mg Injection is a form of an essential nutrient called choline which is naturally present in the body. It protects the nerve cells in the brain from damage and also helps to repair the damaged nerve cells. Therefore, it improves learning, memory, and cognitive function (processing information or perception) in Alzheimer’s disease.'),
(14510, 'Limolin 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limolin 500mg Injection', 'Can I take alcohol during treatment with Limolin 500mg Injection?', 'There are no studies to determine the effect of alcohol on treatment with Limolin 500mg Injection. However, since Limolin 500mg Injection is prescribed for stroke, Alzheimer’s disease, Parkinson’s disease, head injury, and age-related memory impairment, it is best to avoid the consumption of alcohol.'),
(14511, 'Limolin 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limolin 500mg Injection', 'Can students take Limolin 500mg Injection to improve memory and learning?', 'No, students should not take Limolin 500mg Injection since studies show that Limolin 500mg Injection is effective only in age-related memory problems, memory problems associated with long-standing stroke, and in Alzheimer’s disease. Moreover, there is no data available for use of this medicine in children.'),
(14512, 'Limolin 500mg Injection', 'Ancalima Lifesciences Ltd', 'Limolin 500mg Injection', 'What is the role of Limolin 500mg Injection in stroke?', 'In cases of stroke caused due to blood clots, taking Limolin 500mg Injection orally can help the patient recover completely within 3 months. Also, giving Limolin 500mg Injection either intravenously (injecting the medicine in vein directly) within 12 hours of having a stroke or daily for 7 days after the stroke can help the patient recover sooner.'),
(14513, 'Limonam 1gm Injection', 'Ancalima Lifesciences Ltd', 'Limonam 1gm Injection', 'Is Limonam 1gm Injection safe to use in patients who are allergic to penicillins?', 'Limonam 1gm Injection can be safely used in patients who are allergic to penicillins. This medicine has shown no cross-reactivity when used in patients with penicillin allergy.'),
(14514, 'Limont 5mg Tablet', 'Jassons Formulations', 'Limont 5mg Tablet', 'Is Limont 5mg Tablet a steroid? What is it used for?', 'No, Limont 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(14515, 'Limont 5mg Tablet', 'Jassons Formulations', 'Limont 5mg Tablet', 'Does Limont 5mg Tablet make you tired and drowsy?', 'Yes, Limont 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(14516, 'Limont 5mg Tablet', 'Jassons Formulations', 'Limont 5mg Tablet', 'How long does it take for Limont 5mg Tablet to work?', 'Limont 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(14517, 'Limont 5mg Tablet', 'Jassons Formulations', 'Limont 5mg Tablet', 'Can I take Limont 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Limont 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(14518, 'Limont 5mg Tablet', 'Jassons Formulations', 'Limont 5mg Tablet', 'Is it safe to take Limont 5mg Tablet for a long time?', 'Limont 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Limont 5mg Tablet for only as long as you need it.'),
(14519, 'Limont 5mg Tablet', 'Jassons Formulations', 'Limont 5mg Tablet', 'For how long should I continue Limont 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Limont 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Limont 5mg Tablet'),
(14520, 'Limont M 5mg/10mg Tablet', 'Jassons Formulations', 'Limont M 5mg/10mg Tablet', 'What is Limont M 5mg/10mg Tablet?', 'Limont M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(14521, 'Limont M 5mg/10mg Tablet', 'Jassons Formulations', 'Limont M 5mg/10mg Tablet', 'Can the use of Limont M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Limont M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(14522, 'Limont M 5mg/10mg Tablet', 'Jassons Formulations', 'Limont M 5mg/10mg Tablet', 'Can Limont M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Limont M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(14523, 'Limont M 5mg/10mg Tablet', 'Jassons Formulations', 'Limont M 5mg/10mg Tablet', 'Can the use of Limont M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Limont M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(14524, 'Limont M 5mg/10mg Tablet', 'Jassons Formulations', 'Limont M 5mg/10mg Tablet', 'Can I drink alcohol while taking Limont M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Limont M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Limont M 5mg/10mg Tablet.'),
(14525, 'Limont M 5mg/10mg Tablet', 'Jassons Formulations', 'Limont M 5mg/10mg Tablet', 'Will Limont M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Limont M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(14526, 'Limont M 5mg/10mg Tablet', 'Jassons Formulations', 'Limont M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Limont M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(14527, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(14528, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'Can I decrease the dose of Limont Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(14529, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'How should Limont Syrup be stored?', 'Limont Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(14530, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'Can Limont Syrup make my child sleepy?', 'Limont Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(14531, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Limont Syrup?', 'No, don’t start Limont Syrup without speaking to your child’s doctor. Moreover, Limont Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(14532, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Limont Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(14533, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'My child is suffering from a mood disorder. Is it safe to give Limont Syrup to my child?', 'Some studies show that Limont Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(14534, 'Limont Syrup', 'Apcon Remedies', 'Limont Syrup', 'Can I use Limont Syrup for treating acute asthma attacks in my child?', 'Limont Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(14535, 'Limonte Tablet', 'Kaizen Pharmaceuticals Pvt Ltd', 'Limonte Tablet (Kaizen Pharmaceuticals Pvt Ltd)', 'What is Limonte Tablet?', 'Limonte Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(14536, 'Limonte Tablet', 'Kaizen Pharmaceuticals Pvt Ltd', 'Limonte Tablet (Kaizen Pharmaceuticals Pvt Ltd)', 'Can the use of Limonte Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Limonte Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(14537, 'Limonte Tablet', 'Kaizen Pharmaceuticals Pvt Ltd', 'Limonte Tablet (Kaizen Pharmaceuticals Pvt Ltd)', 'Can Limonte Tablet be stopped when allergy symptoms are relieved?', 'No, Limonte Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(14538, 'Limonte Tablet', 'Kaizen Pharmaceuticals Pvt Ltd', 'Limonte Tablet (Kaizen Pharmaceuticals Pvt Ltd)', 'Can the use of Limonte Tablet cause dry mouth?', 'Yes, the use of Limonte Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(14539, 'Limonte Tablet', 'Kaizen Pharmaceuticals Pvt Ltd', 'Limonte Tablet (Kaizen Pharmaceuticals Pvt Ltd)', 'Can I drink alcohol while taking Limonte Tablet?', 'No, do not take alcohol while taking Limonte Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Limonte Tablet.'),
(14540, 'Limonte Tablet', 'Kaizen Pharmaceuticals Pvt Ltd', 'Limonte Tablet (Kaizen Pharmaceuticals Pvt Ltd)', 'Will Limonte Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Limonte Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(14541, 'Limonte Tablet', 'Kaizen Pharmaceuticals Pvt Ltd', 'Limonte Tablet (Kaizen Pharmaceuticals Pvt Ltd)', 'What are the instructions for storage and disposal of Limonte Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(14542, 'Limonte Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte Tablet (Linchpin Biosciences Pvt Ltd)', 'What is Limonte Tablet?', 'Limonte Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(14543, 'Limonte Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte Tablet (Linchpin Biosciences Pvt Ltd)', 'Can the use of Limonte Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Limonte Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(14544, 'Limonte Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte Tablet (Linchpin Biosciences Pvt Ltd)', 'Can Limonte Tablet be stopped when allergy symptoms are relieved?', 'No, Limonte Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(14545, 'Limonte Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte Tablet (Linchpin Biosciences Pvt Ltd)', 'Can the use of Limonte Tablet cause dry mouth?', 'Yes, the use of Limonte Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(14546, 'Limonte Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte Tablet (Linchpin Biosciences Pvt Ltd)', 'Can I drink alcohol while taking Limonte Tablet?', 'No, do not take alcohol while taking Limonte Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Limonte Tablet.'),
(14547, 'Limonte Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte Tablet (Linchpin Biosciences Pvt Ltd)', 'Will Limonte Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Limonte Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(14548, 'Limonte Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte Tablet (Linchpin Biosciences Pvt Ltd)', 'What are the instructions for storage and disposal of Limonte Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(14549, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(14550, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'Can I decrease the dose of Limonte-Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(14551, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'How should Limonte-Kid Tablet be stored?', 'Limonte-Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(14552, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'Can Limonte-Kid Tablet make my child sleepy?', 'Limonte-Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(14553, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Limonte-Kid Tablet?', 'No, don’t start Limonte-Kid Tablet without speaking to your child’s doctor. Moreover, Limonte-Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(14554, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Limonte-Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(14555, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Limonte-Kid Tablet to my child?', 'Some studies show that Limonte-Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(14556, 'Limonte-Kid Tablet', 'Linchpin Biosciences Pvt Ltd', 'Limonte-Kid Tablet', 'Can I use Limonte-Kid Tablet for treating acute asthma attacks in my child?', 'Limonte-Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(14557, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'How is Limopar Injection administered?', 'Limopar Injection should be administered under the supervision of a trained healthcare professional or a doctor only. It should not be self-administered. The dose of the medicine will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Limopar Injection.'),
(14558, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'What if I vomit after taking Limopar Injection?', 'If you vomit in less than 30 minutes after having a dose of Limopar Injection tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(14559, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'What are the serious side effects of taking an excess of the Limopar Injection?', 'Overdose of Limopar Injectione may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(14560, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'When will I feel better after taking the Limopar Injection?', 'Usually, you will start feeling better after about half an hour of taking a Limopar Injection.'),
(14561, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'Is Limopar Injection an antibiotic?', 'No, Limopar Injection is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(14562, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'Is Limopar Injection safe for children?', 'Limopar Injection is considered safe for children only when used as directed by the doctor.'),
(14563, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'Can I take Limopar Injection and ibuprofen together?', 'Ibuprofen and Limopar Injection are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(14564, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'Does Limopar Injection make babies sleepy?', 'No, Limopar Injection does not make babies sleepy. It is a pain-relieving medicine that is also used to control high fever.'),
(14565, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'What if I vomit after taking Limopar Injection?', 'If you vomit in less than 30 minutes after having a dose of Limopar Injection tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(14566, 'Limopar Injection', 'Ancalima Lifesciences Ltd', 'Limopar Injection', 'When will I feel better after taking the Limopar Injection?', 'Usually, you will start feeling better after about half an hour of taking a Limopar Injection.'),
(14567, 'Limorcin 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Limorcin 500mg Tablet', 'Is Limorcin 500mg Tablet safe?', 'Limorcin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14568, 'Limorcin 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Limorcin 500mg Tablet', 'What if I forget to take a dose of Limorcin 500mg Tablet?', 'If you forget a dose of Limorcin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14569, 'Limorcin 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Limorcin 500mg Tablet', 'Can the use of Limorcin 500mg Tablet cause diarrhea?', 'Yes, the use of Limorcin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14570, 'Limorcin 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Limorcin 500mg Tablet', 'Can I stop taking Limorcin 500mg Tablet when I feel better?', 'No, do not stop taking Limorcin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Limorcin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Limorcin 500mg Tablet in the dose and duration advised by the doctor.'),
(14571, 'Limorcin 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Limorcin 500mg Tablet', 'Can the use of Limorcin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Limorcin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Limorcin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14572, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Is Limosan 100mg Tablet an antibiotic?', 'Limosan 100mg Tablet is not an antibiotic, it belongs to the class of medicines known as non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug) which helps in relieving pain associated with various disease conditions.'),
(14573, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Can I take Limosan 100mg Tablet with paracetamol?', 'Limosan 100mg Tablet and paracetamol belong to the same class of medicines known as non-steroidal anti-inflammatory drugs (NSAIDs; pain-relieving drugs). Taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding. However, please consult your doctor before using the two medicines together.'),
(14574, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Does Limosan 100mg Tablet contain aspirin?', 'Limosan 100mg Tablet is a non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug). It does not contain aspirin.'),
(14575, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Is Limosan 100mg Tablet safe?', 'Limosan 100mg Tablet is safe to use if taken at prescribed dose and duration as advised by your doctor.'),
(14576, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Can I take Limosan 100mg Tablet for headache?', 'Limosan 100mg Tablet can be taken for a headache only when advised by your doctor.'),
(14577, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Does Limosan 100mg Tablet make you drowsy (feeling sleepy)?', 'Limosan 100mg Tablet does not make you feel drowsy at prescribed doses. However, an overdose of Limosan 100mg Tablet can make you drowsy (feeling sleepy).'),
(14578, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Does Limosan 100mg Tablet contain sulphur?', 'No, Limosan 100mg Tablet does not contain sulphur.'),
(14579, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'What does Limosan 100mg Tablet treat or used for?', 'Limosan 100mg Tablet is used to treat acute pain, painful osteoarthritis (degeneration of joints) and primary dysmenorrhea (painful menstruation) in adolescents and adults above 12 years old.'),
(14580, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Can I take Limosan 100mg Tablet with ibuprofen?', 'Limosan 100mg Tablet can be taken with ibuprofen. No drug-drug interactions have been reported between the two. However, taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding.  Please consult your doctor before taking the two medicines together.u003cbr>'),
(14581, 'Limosan 100mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 100mg Tablet', 'Can I take Limosan 100mg Tablet with aspirin?', 'Limosan 100mg Tablet can be taken with aspirin. No drug-drug interactions have been clinically observed between the two. However, this does not mean that interactions cannot occur. Please consult your doctor before taking the two medicines together.'),
(14582, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Is Limosan 200mg Tablet an antibiotic?', 'Limosan 200mg Tablet is not an antibiotic, it belongs to the class of medicines known as non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug) which helps in relieving pain associated with various disease conditions.'),
(14583, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Can I take Limosan 200mg Tablet with paracetamol?', 'Limosan 200mg Tablet and paracetamol belong to the same class of medicines known as non-steroidal anti-inflammatory drugs (NSAIDs; pain-relieving drugs). Taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding. However, please consult your doctor before using the two medicines together.'),
(14584, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Does Limosan 200mg Tablet contain aspirin?', 'Limosan 200mg Tablet is a non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug). It does not contain aspirin.'),
(14585, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Is Limosan 200mg Tablet safe?', 'Limosan 200mg Tablet is safe to use if taken at prescribed dose and duration as advised by your doctor.'),
(14586, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Can I take Limosan 200mg Tablet for headache?', 'Limosan 200mg Tablet can be taken for a headache only when advised by your doctor.'),
(14587, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Does Limosan 200mg Tablet make you drowsy (feeling sleepy)?', 'Limosan 200mg Tablet does not make you feel drowsy at prescribed doses. However, an overdose of Limosan 200mg Tablet can make you drowsy (feeling sleepy).'),
(14588, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Does Limosan 200mg Tablet contain sulphur?', 'No, Limosan 200mg Tablet does not contain sulphur.'),
(14589, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'What does Limosan 200mg Tablet treat or used for?', 'Limosan 200mg Tablet is used to treat acute pain, painful osteoarthritis (degeneration of joints) and primary dysmenorrhea (painful menstruation) in adolescents and adults above 12 years old.'),
(14590, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Can I take Limosan 200mg Tablet with ibuprofen?', 'Limosan 200mg Tablet can be taken with ibuprofen. No drug-drug interactions have been reported between the two. However, taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding.  Please consult your doctor before taking the two medicines together.u003cbr>'),
(14591, 'Limosan 200mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan 200mg Tablet', 'Can I take Limosan 200mg Tablet with aspirin?', 'Limosan 200mg Tablet can be taken with aspirin. No drug-drug interactions have been clinically observed between the two. However, this does not mean that interactions cannot occur. Please consult your doctor before taking the two medicines together.'),
(14592, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'What is Limosan Cold Tablet?', 'Limosan Cold Tablet is a combination of four medicines: Caffeine, Cetirizine, Paracetamol and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(14593, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'Are there any foods which I have to avoid while taking Limosan Cold Tablet?', 'Limosan Cold Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks and chocolate should be avoided as they may add to your total caffeine intake. Increased caffeine intake can cause difficulty in sleeping, you may experience tremors and/or have chest discomfort. Also, avoid drinking alcohol (beer, wine, etc.) while taking this medicine.'),
(14594, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'Can the use of Limosan Cold Tablet cause sleepiness or drowsiness?', 'Yes, Limosan Cold Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(14595, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Store your medicines in a cool dry place and keep them in the original pack or container until it is time to take them. Store them out of sight and reach of children. Unused medicines should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(14596, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'Are there any serious side effects associated with the use of Limosan Cold Tablet?', 'Serious side effects with Limosan Cold Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(14597, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'Will Limosan Cold Tablet be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(14598, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'Are there any contraindications associated with the use of Limosan Cold Tablet?', 'Yes, use of Limosan Cold Tablet should be avoided if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism). However, it can be taken if your doctor is aware of your conditions and advises you to take it. The use of Limosan Cold Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(14599, 'Limosan Cold Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan Cold Tablet', 'Can I breastfeed while taking Limosan Cold Tablet?', 'No, it is not advisable to breastfeed while using Limosan Cold Tablet. This medicine contains Cetirizine, an antihistamine which can pass into the breast milk and may harm the baby. Inform your doctor if you are advised to take this medicine while you are breastfeeding the baby.'),
(14600, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'What is Limosan P 100mg/500mg Tablet?', 'Limosan P 100mg/500mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14601, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'Can I stop taking Limosan P 100mg/500mg Tablet when my pain is relieved?', 'Limosan P 100mg/500mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(14602, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'Can the use of Limosan P 100mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Limosan P 100mg/500mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14603, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Limosan P 100mg/500mg Tablet?', 'The use of Limosan P 100mg/500mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(14604, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'Can I take Limosan P 100mg/500mg Tablet with Vitamin B-complex?', 'Yes, Limosan P 100mg/500mg Tablet can be taken with Vitamin B-complex preparations. While Limosan P 100mg/500mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(14605, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'Does Limosan P 100mg/500mg Tablet help in relieving stomach pain?', 'No, Limosan P 100mg/500mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(14606, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'Can the use of Limosan P 100mg/500mg Tablet cause damage to the liver?', 'Limosan P 100mg/500mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(14607, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'Is it safe to take a higher than the recommended dose of Limosan P 100mg/500mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Limosan P 100mg/500mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14608, 'Limosan P 100mg/500mg Tablet', 'Tuttsan Pharma Pvt Ltd', 'Limosan P 100mg/500mg Tablet', 'What are the recommended storage conditions for Limosan P 100mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14609, 'Limosone Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone Cream', 'Can Limosone Cream be used for a long time?', 'No, Limosone Cream should not be used for a long time. The doctor generally prescribes it for 2 consecutive weeks only. However, the treatment can be longer for chronic (long-term) inflammatory conditions. Consult your physician before using this medication.'),
(14610, 'Limosone Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone Cream', 'Does Limosone Cream cause severe skin reactions?', 'Severe skin reactions are quite rare with Limosone Cream. Limosone Cream is an anti-inflammatory drug which is used to treat skin diseases, skin reactions and eczemas. However, skin reactions can occur in a person who is hypersensitive to Limosone Cream. It is important to leave the affected area open after applying Limosone Cream as using occlusive dressings (air- and water-tight dressing) can lead to skin reactions. The medicine may not itself cause a reaction but the added excipients with the medications can lead to a reaction in some cases. Inform your doctor immediately in case you encounter any skin reactions.'),
(14611, 'Limosone Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone Cream', 'Can Limosone Cream be used on the face?', 'No, Limosone Cream should not be used on the face. In addition to this, Limosone Cream should also not be used on the axillae (armpits), groin, and if there is atrophy (wasting away of tissues) at the treatment site. In certain circumstances, it can be exceptionally considered to be used by doctors. It should be used only after consultation with your physician and if possible, the application on the face should be limited to a maximum of 5 days.'),
(14612, 'Limosone Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone Cream', 'Can Limosone Cream be applied to children?', 'Limosone Cream is not recommended for use in children less than 1 year of age. It is also not recommended for use in older children and adolescents as the side effects are more common in them. In the pediatric population, there is an increased risk of suppression of the immune system which may make the child prone to other diseases and atrophic changes, hence it is not recommended. Still, in some rare cases, the doctor may recommend this medicine, but the treatment is usually limited to 5 days and the therapy is reviewed weekly.'),
(14613, 'Limosone Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone Cream', 'Can we use Limosone Cream in infections?', 'Limosone Cream is not an antimicrobial or antifungal agent. It is a steroid medication. It should not be used in infections as being a corticosteroid, it suppresses the immune system and increases the risk of infections. Bacterial infections are prone to worsen if the infection is covered with a dressing after using Limosone Cream. In case the inflammatory lesions get infected or there is any spread of infection, consult your doctor immediately. The doctor will withdraw the use of Limosone Cream and provide appropriate antimicrobial therapy.'),
(14614, 'Limosone Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone Cream', 'Can I stop taking Limosone Cream when my symptoms are relieved?', 'No, do not stop taking Limosone Cream and finish the full course of treatment even if you feel better. Your symptoms may improve before your treatment is complete. Stopping Limosone Cream before your treatment is completed can bring back your symptoms.'),
(14615, 'Limosone Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone Cream', 'Does Limosone Cream cause dangerous skin reactions?', 'Local skin reactions are quite rare with Limosone Cream. Being an anti-inflammatory drug, it is used to treat skin diseases, skin reactions, and eczemas. Still, skin reactions can occur in a person who is hypersensitive to Limosone Cream. It is important to leave the affected area open after applying Limosone Cream as using occlusive dressings (air- and water-tight dressing) can lead to skin reactions. If not by the medicine itself, sometimes the reactions are also caused by the added excipients with the medications. Inform your doctor immediately in case you encounter any skin reactions.'),
(14616, 'Limosone S Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone S Cream', 'How to use Limosone S Cream?', 'Follow the directions given by the doctor or provided on the medicine. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Limosone S Cream is usually applied two or three times a day to the affected areas of skin. Wash your hands after using Limosone S Cream, unless it is used for treating skin infection on the hands.'),
(14617, 'Limosone S Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone S Cream', 'Can I stop using Limosone S Cream when my symptoms are relieved?', 'No, do not stop using Limosone S Cream and complete the full course of treatment, even if you feel better. Your symptoms may improve before the disease is completely treated.'),
(14618, 'Limosone S Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone S Cream', 'What are the precautions that need to be taken while using Limosone S Cream?', 'Limosone S Cream should not be used on the face. Do not use the medication for longer than the advised periods of time. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side effects. This medicine should only be used by the patient and never give it to other people, even if their condition appears to be the same.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14619, 'Limosone S Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone S Cream', 'Will Limosone S Cream be more effective if taken more than prescribed?', 'No, Limosone S Cream will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(14620, 'Limosone S Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone S Cream', 'What are the instructions for storage and disposal of Limosone S Cream?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14621, 'Limosone SL Lotion', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone SL Lotion', 'How to use Limosone SL Lotion?', 'Follow the directions given by the doctor or provided on the medicine. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Limosone SL Lotion is usually applied two or three times a day to the affected areas of skin. Wash your hands after using Limosone SL Lotion, unless it is used for treating skin infection on the hands.'),
(14622, 'Limosone SL Lotion', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone SL Lotion', 'Can I stop using Limosone SL Lotion when my symptoms are relieved?', 'No, do not stop using Limosone SL Lotion and complete the full course of treatment, even if you feel better. Your symptoms may improve before the disease is completely treated.'),
(14623, 'Limosone SL Lotion', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone SL Lotion', 'What are the precautions that need to be taken while using Limosone SL Lotion?', 'Limosone SL Lotion should not be used on the face. Do not use the medication for longer than the advised periods of time. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side effects. This medicine should only be used by the patient and never give it to other people, even if their condition appears to be the same.'),
(14624, 'Limosone SL Lotion', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone SL Lotion', 'Will Limosone SL Lotion be more effective if taken more than prescribed?', 'No, Limosone SL Lotion will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(14625, 'Limosone SL Lotion', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone SL Lotion', 'What are the instructions for storage and disposal of Limosone SL Lotion?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14626, 'Limosone-NM Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone-NM Cream', 'Q. Can I stop using Limosone-NM Cream when my symptoms are relieved?', 'No, do not stop using Limosone-NM Cream without consulting your doctor. Use Limosone-NM Cream in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(14627, 'Limosone-NM Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone-NM Cream', 'Q. What precautions should I take while using Limosone-NM Cream?', 'Limosone-NM Cream should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(14628, 'Limosone-NM Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone-NM Cream', 'Q. How to use Limosone-NM Cream?', 'Limosone-NM Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Limosone-NM Cream unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(14629, 'Limosone-NM Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone-NM Cream', 'Q. What would happen if I use a higher than the recommended dose of Limosone-NM Cream for long periods?', 'Limosone-NM Cream should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(14630, 'Limosone-NM Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone-NM Cream', 'Q. What are the contraindications associated with the use of Limosone-NM Cream?', 'Use of Limosone-NM Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(14631, 'Limosone-NM Cream', 'MDC Pharmaceuticals  Pvt Ltd', 'Limosone-NM Cream', 'Q. What are the instructions for the storage of Limosone-NM Cream?', 'Limosone-NM Cream should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(14632, 'Limosone-S Ointment', 'Lifestyle Bio Sciences Dermacare', 'Limosone-S Ointment', 'How to use Limosone-S Ointment?', 'Follow the directions given by the doctor or provided on the medicine. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Limosone-S Ointment is usually applied two or three times a day to the affected areas of skin. Wash your hands after using Limosone-S Ointment, unless it is used for treating skin infection on the hands.'),
(14633, 'Limosone-S Ointment', 'Lifestyle Bio Sciences Dermacare', 'Limosone-S Ointment', 'Can I stop using Limosone-S Ointment when my symptoms are relieved?', 'No, do not stop using Limosone-S Ointment and complete the full course of treatment, even if you feel better. Your symptoms may improve before the disease is completely treated.'),
(14634, 'Limosone-S Ointment', 'Lifestyle Bio Sciences Dermacare', 'Limosone-S Ointment', 'What are the precautions that need to be taken while using Limosone-S Ointment?', 'Limosone-S Ointment should not be used on the face. Do not use the medication for longer than the advised periods of time. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side effects. This medicine should only be used by the patient and never give it to other people, even if their condition appears to be the same.'),
(14635, 'Limosone-S Ointment', 'Lifestyle Bio Sciences Dermacare', 'Limosone-S Ointment', 'Will Limosone-S Ointment be more effective if taken more than prescribed?', 'No, Limosone-S Ointment will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(14636, 'Limosone-S Ointment', 'Lifestyle Bio Sciences Dermacare', 'Limosone-S Ointment', 'What are the instructions for storage and disposal of Limosone-S Ointment?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14637, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'How should Limospas 75mg Injection injection be administered?', 'Limospas 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(14638, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'What is the most important information I need to know about Limospas 75mg Injection?', 'It is important to know that Limospas 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Limospas 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(14639, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'Is Limospas 75mg Injection a good painkiller?', 'Limospas 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(14640, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'Can Limospas 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Limospas 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(14641, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'Does Limospas 75mg Injection make you drowsy?', 'Limospas 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(14642, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'Can Limospas 75mg Injection be taken during pregnancy?', 'You should not take Limospas 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Limospas 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Limospas 75mg Injection during the first 6 months of pregnancy also.  In some cases, Limospas 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(14643, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'Does Limospas 75mg Injection get you high?', 'No, Limospas 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(14644, 'Limospas 75mg Injection', 'Ancalima Lifesciences Ltd', 'Limospas 75mg Injection', 'Is Limospas 75mg Injection a narcotic?', 'No, Limospas 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(14645, 'Limotac 0.1% Ointment', 'Ancalima Lifesciences Ltd', 'Limotac 0.1% Ointment', 'What is Limotac 0.1% Ointment used for?', 'Limotac 0.1% Ointment is a medicine that modulates the immune system. It works on the immune system and mostly decreases its activity. It is used to treat moderate to severe eczema (atopic dermatitis) in adults who do not respond to steroids or develop side effects on using them. In atopic dermatitis, the skin’s immune system undergoes an overreaction and causes skin inflammation leading to itchiness, redness and dryness. Limotac 0.1% Ointment acts on the abnormal immune response and alters it, thereby relieving the skin inflammation and itchiness.'),
(14646, 'Limotac 0.1% Ointment', 'Ancalima Lifesciences Ltd', 'Limotac 0.1% Ointment', 'What are the side effects of Limotac 0.1% Ointment?', 'Limotac 0.1% Ointment, when applied to the skin, may cause skin irritation, burning sensation and itching at the site of application. These are usually mild to moderate in severity and normally resolve within one week of starting the treatment. Redness is also a common manifestation along with sensation of warmth, pain, altered sensation and rash at the site of application. Using it increases the patients’ increased risk of getting inflamed or infected hair follicles, cold sores, acne and generalized herpes simplex infections.'),
(14647, 'Limotac 0.1% Ointment', 'Ancalima Lifesciences Ltd', 'Limotac 0.1% Ointment', 'Is Limotac 0.1% Ointment ointment safe?', 'As compared to other immune-suppressing medicines, Limotac 0.1% Ointment has been found to be a safe and effective short-term treatment for atopic dermatitis. When applied on the affected part of the skin, its absorption to the blood and body is minimal. Hence, the side effects are less as compared to when taken through oral route.'),
(14648, 'Limotac 0.1% Ointment', 'Ancalima Lifesciences Ltd', 'Limotac 0.1% Ointment', 'Does Limotac 0.1% Ointment has abuse potential?', 'No, Limotac 0.1% Ointment does not have abuse potential and thus, is not a controlled substance. Controlled substances have potential for abuse so they need permission by authorities and doctor for use.'),
(14649, 'Limotac 0.1% Ointment', 'Ancalima Lifesciences Ltd', 'Limotac 0.1% Ointment', 'Does Limotac 0.1% Ointment cause cancer?', 'Long-term use of Limotac 0.1% Ointment has been found to have increased risk of lymph node tumors called lymphoma. Some studies have found that few patients who used Limotac 0.1% Ointment ointment or another similar medication developed skin cancer or lymphoma. Consult your doctor if you have to use Limotac 0.1% Ointment ointment for more than 6 weeks or if your eczema symptoms have not improved or are getting worse with time during your treatment.'),
(14650, 'Limotac 0.1% Ointment', 'Ancalima Lifesciences Ltd', 'Limotac 0.1% Ointment', 'Is Limotac 0.1% Ointment a steroid?', 'No, Limotac 0.1% Ointment is not a steroid. It is a medicine which modulates the working of the immune system. It is used in the treatment of eczema, most commonly in atopic dermatitis. An advantage of Limotac 0.1% Ointment is that it does not cause skin thinning (atrophy) or other steroid-related side effects.'),
(14651, 'Limox CV LB 500mg/125mg Tablet', 'Kamork Biotech', 'Limox CV LB 500mg/125mg Tablet', 'What are the contraindications associated with the use of Limox CV LB 500mg/125mg Tablet?', 'Limox CV LB 500mg/125mg Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(14652, 'Limox CV LB 500mg/125mg Tablet', 'Kamork Biotech', 'Limox CV LB 500mg/125mg Tablet', 'Which is the best time to take Limox CV LB 500mg/125mg Tablet?', 'Limox CV LB 500mg/125mg Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(14653, 'Limox CV LB 500mg/125mg Tablet', 'Kamork Biotech', 'Limox CV LB 500mg/125mg Tablet', 'Can I stop Limox CV LB 500mg/125mg Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(14654, 'Limox CV LB 500mg/125mg Tablet', 'Kamork Biotech', 'Limox CV LB 500mg/125mg Tablet', 'Can I take Limox CV LB 500mg/125mg Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(14655, 'Limox CV LB 500mg/125mg Tablet', 'Kamork Biotech', 'Limox CV LB 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Limox CV LB 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14656, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Can other medicines be given at the same time as Limoxil-CV Oral Suspension?', 'Limoxil-CV Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Limoxil-CV Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(14657, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Can I get my child vaccinated while on treatment with Limoxil-CV Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(14658, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Which lab tests may my child undergo while taking Limoxil-CV Oral Suspension on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(14659, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Can I give a higher than the recommended dose of Limoxil-CV Oral Suspension to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(14660, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Can I stop giving Limoxil-CV Oral Suspension to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(14661, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Can the use of Limoxil-CV Oral Suspension cause diarrhea?', 'Yes, Limoxil-CV Oral Suspension may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(14662, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(14663, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(14664, 'Limoxil-CV Oral Suspension', 'Liza Life Sciences', 'Limoxil-CV Oral Suspension', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(14665, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'What is Limozid 100mg/500mg Tablet?', 'Limozid 100mg/500mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14666, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'Can I stop taking Limozid 100mg/500mg Tablet when my pain is relieved?', 'Limozid 100mg/500mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(14667, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'Can the use of Limozid 100mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Limozid 100mg/500mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14668, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Limozid 100mg/500mg Tablet?', 'The use of Limozid 100mg/500mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(14669, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'Can I take Limozid 100mg/500mg Tablet with Vitamin B-complex?', 'Yes, Limozid 100mg/500mg Tablet can be taken with Vitamin B-complex preparations. While Limozid 100mg/500mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(14670, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'Does Limozid 100mg/500mg Tablet help in relieving stomach pain?', 'No, Limozid 100mg/500mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(14671, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'Can the use of Limozid 100mg/500mg Tablet cause damage to the liver?', 'Limozid 100mg/500mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(14672, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'Is it safe to take a higher than the recommended dose of Limozid 100mg/500mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Limozid 100mg/500mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14673, 'Limozid 100mg/500mg Tablet', 'Ancalima Lifesciences Ltd', 'Limozid 100mg/500mg Tablet', 'What are the recommended storage conditions for Limozid 100mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14674, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'What is Limpa P 100mg/325mg Tablet?', 'Limpa P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14675, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'Can I stop taking Limpa P 100mg/325mg Tablet when my pain is relieved?', 'Limpa P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(14676, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'Can the use of Limpa P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Limpa P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14677, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Limpa P 100mg/325mg Tablet?', 'The use of Limpa P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(14678, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'Can I take Limpa P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Limpa P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Limpa P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(14679, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'Does Limpa P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Limpa P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(14680, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'Can the use of Limpa P 100mg/325mg Tablet cause damage to the liver?', 'Limpa P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(14681, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Limpa P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Limpa P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14682, 'Limpa P 100mg/325mg Tablet', 'Unipure Biotech', 'Limpa P 100mg/325mg Tablet', 'What are the recommended storage conditions for Limpa P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14683, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'What is Limpan 40mg Tablet used for?', 'Limpan 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Limpan 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(14684, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'How long does it take for Limpan 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Limpan 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(14685, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'Is a single dose of Limpan 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Limpan 40mg Tablet you may get relief with the symptoms. Limpan 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Limpan 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Limpan 40mg Tablet regularly for 2 weeks as prescribed.'),
(14686, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'Is Limpan 40mg Tablet safe?', 'Yes, Limpan 40mg Tablet is relatively safe. Most of the people who take Limpan 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(14687, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'Can I take Limpan 40mg Tablet for a long term?', 'Limpan 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Limpan 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Limpan 40mg Tablet as advised by your doctor and under their supervision.'),
(14688, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'What are the long term side effects of Limpan 40mg Tablet?', 'If Limpan 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(14689, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'What is the best time to take Limpan 40mg Tablet?', 'Usually, Limpan 40mg Tablet is taken once a day, first thing in the morning. If you take Limpan 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(14690, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'Can I stop taking Limpan 40mg Tablet if I feel better?', 'If you have been taking Limpan 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Limpan 40mg Tablet.'),
(14691, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'Does Limpan 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Limpan 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(14692, 'Limpan 40mg Tablet', 'Limra Pharmaceuticals', 'Limpan 40mg Tablet', 'Can I take alcohol with Limpan 40mg Tablet?', 'No, alcohol intake is not advised with Limpan 40mg Tablet. Alcohol itself does not affect the working of Limpan 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(14693, 'Limpen M 1mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 1mg/500mg Tablet SR', 'What are the recommended storage conditions for Limpen M 1mg/500mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14694, 'Limpen M 1mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 1mg/500mg Tablet SR', 'Can the use of Limpen M 1mg/500mg Tablet SR lead to lactic acidosis?', 'Yes, the use of Limpen M 1mg/500mg Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limpen M 1mg/500mg Tablet SR and consult your doctor immediately.'),
(14695, 'Limpen M 1mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 1mg/500mg Tablet SR', 'What is Limpen M 1mg/500mg Tablet SR?', 'Limpen M 1mg/500mg Tablet SR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14696, 'Limpen M 1mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 1mg/500mg Tablet SR', 'What are the possible side effects of Limpen M 1mg/500mg Tablet SR?', 'The use of Limpen M 1mg/500mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14697, 'Limpen M 1mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 1mg/500mg Tablet SR', 'Can the use of Limpen M 1mg/500mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Limpen M 1mg/500mg Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14698, 'Limpen M 1mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 1mg/500mg Tablet SR', 'Can the use of Limpen M 1mg/500mg Tablet SR cause hypoglycemia?', 'Yes, the use of Limpen M 1mg/500mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14699, 'Limpen M 1mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 1mg/500mg Tablet SR', 'Is it safe to take alcohol while I am also taking Limpen M 1mg/500mg Tablet SR?', 'No, it is not safe to take Limpen M 1mg/500mg Tablet SR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14700, 'Limpen M 2mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 2mg/500mg Tablet SR', 'What are the recommended storage conditions for Limpen M 2mg/500mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14701, 'Limpen M 2mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 2mg/500mg Tablet SR', 'Can the use of Limpen M 2mg/500mg Tablet SR lead to lactic acidosis?', 'Yes, the use of Limpen M 2mg/500mg Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Limpen M 2mg/500mg Tablet SR and consult your doctor immediately.'),
(14702, 'Limpen M 2mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 2mg/500mg Tablet SR', 'What is Limpen M 2mg/500mg Tablet SR?', 'Limpen M 2mg/500mg Tablet SR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(14703, 'Limpen M 2mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 2mg/500mg Tablet SR', 'What are the possible side effects of Limpen M 2mg/500mg Tablet SR?', 'The use of Limpen M 2mg/500mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(14704, 'Limpen M 2mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 2mg/500mg Tablet SR', 'Can the use of Limpen M 2mg/500mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Limpen M 2mg/500mg Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(14705, 'Limpen M 2mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 2mg/500mg Tablet SR', 'Can the use of Limpen M 2mg/500mg Tablet SR cause hypoglycemia?', 'Yes, the use of Limpen M 2mg/500mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(14706, 'Limpen M 2mg/500mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen M 2mg/500mg Tablet SR', 'Is it safe to take alcohol while I am also taking Limpen M 2mg/500mg Tablet SR?', 'No, it is not safe to take Limpen M 2mg/500mg Tablet SR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(14707, 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Can I drink alcohol while taking Limpen MP 1mg/500mg/15mg Tablet SR?', 'No, it is not safe to drink alcohol while using Limpen MP 1mg/500mg/15mg Tablet SR. Drinking alcohol may lower your blood sugar levels (hypoglycemia). Also, it can increase the chances of lactic acidosis.'),
(14708, 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 1mg/500mg/15mg Tablet SR', 'What should I inform the doctor before taking Limpen MP 1mg/500mg/15mg Tablet SR?', 'Before taking Limpen MP 1mg/500mg/15mg Tablet SR inform your doctor if you have congestive heart failure, kidney problems, liver problems, swelling of the back of the eye. Inform the doctor if you are pregnant, breastfeeding or a premenopausal woman. Let the doctor know if you are taking any prescription and non-prescription medicines, vitamins, and herbal supplements.'),
(14709, 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Can the use of Limpen MP 1mg/500mg/15mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Limpen MP 1mg/500mg/15mg Tablet SR can cause vitamin B12 deficiency as it contains metformin in it. On long-term use, it interferes with absorption of vitamin B12 in the stomach.'),
(14710, 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Can the use of Limpen MP 1mg/500mg/15mg Tablet SR cause hypoglycemia?', 'Yes, the use of Limpen MP 1mg/500mg/15mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your meal, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always carry some sugary item like a candy or chocolate with you.'),
(14711, 'Limpen MP 1mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 1mg/500mg/15mg Tablet SR', 'What are the instructions for the storage and disposal of Limpen MP 1mg/500mg/15mg Tablet SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14712, 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Can I drink alcohol while taking Limpen MP 2mg/500mg/15mg Tablet SR?', 'No, it is not safe to drink alcohol while using Limpen MP 2mg/500mg/15mg Tablet SR. Drinking alcohol may lower your blood sugar levels (hypoglycemia). Also, it can increase the chances of lactic acidosis.'),
(14713, 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 2mg/500mg/15mg Tablet SR', 'What should I inform the doctor before taking Limpen MP 2mg/500mg/15mg Tablet SR?', 'Before taking Limpen MP 2mg/500mg/15mg Tablet SR inform your doctor if you have congestive heart failure, kidney problems, liver problems, swelling of the back of the eye. Inform the doctor if you are pregnant, breastfeeding or a premenopausal woman. Let the doctor know if you are taking any prescription and non-prescription medicines, vitamins, and herbal supplements.'),
(14714, 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Can the use of Limpen MP 2mg/500mg/15mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Limpen MP 2mg/500mg/15mg Tablet SR can cause vitamin B12 deficiency as it contains metformin in it. On long-term use, it interferes with absorption of vitamin B12 in the stomach.'),
(14715, 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Can the use of Limpen MP 2mg/500mg/15mg Tablet SR cause hypoglycemia?', 'Yes, the use of Limpen MP 2mg/500mg/15mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your meal, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always carry some sugary item like a candy or chocolate with you.'),
(14716, 'Limpen MP 2mg/500mg/15mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limpen MP 2mg/500mg/15mg Tablet SR', 'What are the instructions for the storage and disposal of Limpen MP 2mg/500mg/15mg Tablet SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14717, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'Is Limpod 100mg Dry Syrup safe to use?', 'Limpod 100mg Dry Syrup is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14718, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'Can the use of Limpod 100mg Dry Syrup cause diarrhea?', 'Yes, the use of Limpod 100mg Dry Syrup can cause diarrhea. Limpod 100mg Dry Syrup is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(14719, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'Is Limpod 100mg Dry Syrup an antibiotic?', 'Yes, Limpod 100mg Dry Syrup is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(14720, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'Can Limpod 100mg Dry Syrup cause constipation?', 'Yes, Limpod 100mg Dry Syrup may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(14721, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'Can I stop taking Limpod 100mg Dry Syrup when my symptoms are relieved or when I feel better?', 'No, do not stop taking Limpod 100mg Dry Syrup before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(14722, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'How long does Limpod 100mg Dry Syrup take to work?', 'Usually, Limpod 100mg Dry Syrup starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(14723, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'What if I do not get better after using Limpod 100mg Dry Syrup?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(14724, 'Limpod 100mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 100mg Dry Syrup', 'Can Limpod 100mg Dry Syrup treat UTI?', 'Yes, Limpod 100mg Dry Syrup may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Limpod 100mg Dry Syrup. It is advisable to take it only if prescribed by a doctor.'),
(14725, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'Is Limpod 200mg Tablet safe to use?', 'Limpod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(14726, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'Can the use of Limpod 200mg Tablet cause diarrhea?', 'Yes, the use of Limpod 200mg Tablet can cause diarrhea. Limpod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(14727, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'Is Limpod 200mg Tablet an antibiotic?', 'Yes, Limpod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(14728, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'Can Limpod 200mg Tablet cause constipation?', 'Yes, Limpod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(14729, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'Can I stop taking Limpod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Limpod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(14730, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'How long does Limpod 200mg Tablet take to work?', 'Usually, Limpod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(14731, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'What if I do not get better after using Limpod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(14732, 'Limpod 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpod 200mg Tablet', 'Can Limpod 200mg Tablet treat UTI?', 'Yes, Limpod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Limpod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(14733, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'What if I give too much of Limpod 50mg Dry Syrup by mistake?', 'An extra dose of Limpod 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Limpod 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(14734, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'Are there any possible serious side effects of Limpod 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(14735, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'Can other medicines be given at the same time as Limpod 50mg Dry Syrup?', 'Limpod 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Limpod 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(14736, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Limpod 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(14737, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Limpod 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(14738, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(14739, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(14740, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(14741, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'Can Limpod 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Limpod 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Limpod 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(14742, 'Limpod 50mg Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod 50mg Dry Syrup', 'Can Limpod 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Limpod 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(14743, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'What if I give too much of Limpod CV Dry Syrup by mistake?', 'Limpod CV Dry Syrup is safe and usually an extra dose of it would not do any harm. But since overdose increases the risk of side effects and may even worsen your child’s condition, you must speak to a doctor immediately if you think you have given too much of Limpod CV Dry Syrup to your child.'),
(14744, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'Are there any possible serious side effects of Limpod CV Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(14745, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'Can other medicines be given at the same time as Limpod CV Dry Syrup?', 'Limpod CV Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Limpod CV Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(14746, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'Can I get my child vaccinated while on treatment with Limpod CV Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(14747, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'Which lab tests may my child undergo while taking Limpod CV Dry Syrup on a long-term basis?', 'The doctor may keep a check on your child’s condition by prescribing kidney function tests and liver function tests periodically.'),
(14748, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'Can Limpod CV Dry Syrup impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Limpod CV Dry Syrup may kill off the good bacteria along with the bad ones too, increasing the risk of developing other infections. In case your child develops diarrhea while on Limpod CV Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(14749, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'Can the use of Limpod CV Dry Syrup cause diarrhea?', 'Yes, the use of Limpod CV Dry Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14750, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'How long does Limpod CV Dry Syrup takes to work?', 'Usually, Limpod CV Dry Syrup starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(14751, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'What if I don\'t get better after using Limpod CV Dry Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(14752, 'Limpod CV Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limpod CV Dry Syrup', 'Can I stop taking Limpod CV Dry Syrup when I feel better?', 'No, do not stop taking Limpod CV Dry Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(14753, 'Limpred 4 Tablet', 'Prigonex Healthcare', 'Limpred 4 Tablet', 'What is Limpred 4 Tablet used for?', 'Limpred 4 Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(14754, 'Limpred 4 Tablet', 'Prigonex Healthcare', 'Limpred 4 Tablet', 'How does Limpred 4 Tablet work?', 'Limpred 4 Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(14755, 'Limpred 4 Tablet', 'Prigonex Healthcare', 'Limpred 4 Tablet', 'Is Limpred 4 Tablet effective?', 'Limpred 4 Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Limpred 4 Tablet too early, the symptoms may return or worsen.'),
(14756, 'Limpred 4 Tablet', 'Prigonex Healthcare', 'Limpred 4 Tablet', 'When will I feel better after taking Limpred 4 Tablet?', 'Limpred 4 Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Limpred 4 Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Limpred 4 Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(14757, 'Limpred 4 Tablet', 'Prigonex Healthcare', 'Limpred 4 Tablet', 'What if I forget to take a dose of Limpred 4 Tablet?', 'If you forget a dose of Limpred 4 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14758, 'Limpred 4 Tablet', 'Prigonex Healthcare', 'Limpred 4 Tablet', 'Is Limpred 4 Tablet safe?', 'Limpred 4 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14759, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'What is Limpreg NT 75mg/10mg Tablet?', 'Limpreg NT 75mg/10mg Tablet is a combination of two medicines: Pregabalin and Nortriptyline. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain. Thereby, decreasing the pain sensation.'),
(14760, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'Can I stop taking Limpreg NT 75mg/10mg Tablet when my pain is relieved?', 'No, you should not stop taking Limpreg NT 75mg/10mg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Limpreg NT 75mg/10mg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.'),
(14761, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'How to manage weight gain associated with the use of Limpreg NT 75mg/10mg Tablet?', 'Limpreg NT 75mg/10mg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight.. However, preventing weight gain is easier than losing increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). DO not eat foods that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(14762, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'Can the use of Limpreg NT 75mg/10mg Tablet cause sleepiness or drowsiness?', 'Yes, Limpreg NT 75mg/10mg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(14763, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'Can the use of Limpreg NT 75mg/10mg Tablet affect my sexual life?', 'The use of Limpreg NT 75mg/10mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Limpreg NT 75mg/10mg Tablet.'),
(14764, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'Are there any serious side effects associated with the use of Limpreg NT 75mg/10mg Tablet?', 'Serious side effects because of Limpreg NT 75mg/10mg Tablet are uncommon and rare. Consult your doctor if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(14765, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'How long will the Limpreg NT 75mg/10mg Tablet take to act?', 'An initial benefit with Limpreg NT 75mg/10mg Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months to see full benefit. It may even take longer in some patients.'),
(14766, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'What if I forget to take Limpreg NT 75mg/10mg Tablet?', 'If you forget to take the scheduled dose of Limpreg NT 75mg/10mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(14767, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Symptoms of an overdose may include drowsiness, weakness, unsteadiness while walking, having double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(14768, 'Limpreg NT 75mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limpreg NT 75mg/10mg Tablet', 'Will Limpreg NT 75mg/10mg Tablet be more effective if a higher than the recommended dosage is taken?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14769, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'What is Limra 20mg Tablet used for?', 'Limra 20mg Tablet is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis, or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Limra 20mg Tablet also prevents acidity associated with the use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES).'),
(14770, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'How long does it take for Limra 20mg Tablet to work?', 'Limra 20mg Tablet starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(14771, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'What is the best time to take Limra 20mg Tablet?', 'It is best to take Limra 20mg Tablet before your breakfast. If you are taking two doses, take it in the morning and evening. Limra 20mg Tablet is more effective when it is taken an hour before your food.'),
(14772, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'Can I stop taking Limra 20mg Tablet if I feel better?', 'No, do not stop taking Limra 20mg Tablet before completing the full course of treatment. You will start to feel better before your treatment is complete.'),
(14773, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'Does Limra 20mg Tablet cause bone problems?', 'Yes, long-term use of Limra 20mg Tablet can cause thinning of bones, which is called osteoporosis. Limra 20mg Tablet decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(14774, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'How is Limra 20mg Tablet useful in the treatment of H. pylori infection?', 'Limra 20mg Tablet is used along with antibiotics for the treatment of H.Pylori infection. It works by decreasing stomach acid volume and decreasing breakdown and washout of antibiotics leading to an increased antibiotic concentration and tissue penetration. It also helps in symptomatic relief by decreasing associated acidity, reflux, and heartburn.'),
(14775, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'Can I take Limra 20mg Tablet with vitamin D?', 'Yes, vitamin D can be taken along with Limra 20mg Tablet. Vitamin D is generally advised to be taken as a supplement with Limra 20mg Tablet as the long-term use of Limra 20mg Tablet decreases the absorption of calcium and may lead to calcium deficiency. This can lead to osteoporosis (thinning of bones) and increase the risk of bone fractures like hip, wrist, and spine fractures. Please consult your doctor to know about ways to prevent this.'),
(14776, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'Can long term use of Limra 20mg Tablet cause magnesium deficiency?', 'Long-term use of Limra 20mg Tablet can lower magnesium levels in patients taking multiple daily doses for 3 months or longer. Get your magnesium levels checked at regular intervals. Tell your doctor if you experience seizures (fits), dizziness, abnormal or fast heartbeat, jitteriness, jerking movements or shaking (tremors), muscle weakness, spasms of the hands and feet, cramps, muscle aches.'),
(14777, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'Is it safe to use Limra 20mg Tablet for a long period of time?', 'Limra 20mg Tablet should be used for as long as it has been prescribed by your doctor. Limra 20mg Tablet is usually considered to be safe when taken in the recommended dose and duration. If Limra 20mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood, making you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, subacute cutaneous lupus erythematosus, osteoporosis, and vitamin B12 deficiency.'),
(14778, 'Limra 20mg Tablet', 'Sidmed Remedies', 'Limra 20mg Tablet', 'Can I take alcohol with Limra 20mg Tablet?', 'No, alcohol intake is not advised with Limra 20mg Tablet. Alcohol itself does not affect the working of Limra 20mg Tablet, but it can increase acid production. This may further cause worsening of your symptoms.'),
(14779, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'What is Limra D 10mg/20mg Tablet?', 'Limra D 10mg/20mg Tablet is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(14780, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'What are the contraindications of Limra D 10mg/20mg Tablet?', 'The use of Limra D 10mg/20mg Tablet is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(14781, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'Can the use of Limra D 10mg/20mg Tablet cause dry mouth?', 'Yes, the use of Limra D 10mg/20mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(14782, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'Can the use of Limra D 10mg/20mg Tablet cause diarrhea?', 'Yes, the use of Limra D 10mg/20mg Tablet can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(14783, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'What is the recommended storage condition for Limra D 10mg/20mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14784, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'Is it safe to use Limra D 10mg/20mg Tablet?', 'Yes, Limra D 10mg/20mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(14785, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'What is the best time to take Limra D 10mg/20mg Tablet?', 'It is best to take Limra D 10mg/20mg Tablet before the first meal of the day or on an empty stomach.'),
(14786, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'Can the use of Limra D 10mg/20mg Tablet cause abnormal heartbeat?', 'Yes, the use of Limra D 10mg/20mg Tablet can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(14787, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'What is Limra D 10mg/20mg Tablet?', 'Limra D 10mg/20mg Tablet is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(14788, 'Limra D 10mg/20mg Tablet', 'Sidmed Remedies', 'Limra D 10mg/20mg Tablet', 'What are the contraindications of Limra D 10mg/20mg Tablet?', 'The use of Limra D 10mg/20mg Tablet is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(14789, 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'Can the use of Limset AM Plus 75mg/5mg/10mg Tablet SR cause dry mouth?', 'Yes, the use of Limset AM Plus 75mg/5mg/10mg Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(14790, 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'Can I use Limset AM Plus 75mg/5mg/10mg Tablet SR while breastfeeding?', 'No, Limset AM Plus 75mg/5mg/10mg Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(14791, 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'Can I drink alcohol while taking Limset AM Plus 75mg/5mg/10mg Tablet SR?', 'No, avoid drinking alcohol while taking Limset AM Plus 75mg/5mg/10mg Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Limset AM Plus 75mg/5mg/10mg Tablet SR.'),
(14792, 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'Limbson Pharmaceuticals LLP', 'Limset AM Plus 75mg/5mg/10mg Tablet SR', 'What are the instructions for the storage and disposal of Limset AM Plus 75mg/5mg/10mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14793, 'Limtac Ointment 0.1%', 'Medcure Pharma', 'Limtac Ointment 0.1%', 'What is Limtac Ointment 0.1% used for?', 'Limtac Ointment 0.1% is a medicine that modulates the immune system. It works on the immune system and mostly decreases its activity. It is used to treat moderate to severe eczema (atopic dermatitis) in adults who do not respond to steroids or develop side effects on using them. In atopic dermatitis, the skin’s immune system undergoes an overreaction and causes skin inflammation leading to itchiness, redness and dryness. Limtac Ointment 0.1% acts on the abnormal immune response and alters it, thereby relieving the skin inflammation and itchiness.'),
(14794, 'Limtac Ointment 0.1%', 'Medcure Pharma', 'Limtac Ointment 0.1%', 'What are the side effects of Limtac Ointment 0.1%?', 'Limtac Ointment 0.1%, when applied to the skin, may cause skin irritation, burning sensation and itching at the site of application. These are usually mild to moderate in severity and normally resolve within one week of starting the treatment. Redness is also a common manifestation along with sensation of warmth, pain, altered sensation and rash at the site of application. Using it increases the patients’ increased risk of getting inflamed or infected hair follicles, cold sores, acne and generalized herpes simplex infections.'),
(14795, 'Limtac Ointment 0.1%', 'Medcure Pharma', 'Limtac Ointment 0.1%', 'Is Limtac Ointment 0.1% ointment safe?', 'As compared to other immune-suppressing medicines, Limtac Ointment 0.1% has been found to be a safe and effective short-term treatment for atopic dermatitis. When applied on the affected part of the skin, its absorption to the blood and body is minimal. Hence, the side effects are less as compared to when taken through oral route.'),
(14796, 'Limtac Ointment 0.1%', 'Medcure Pharma', 'Limtac Ointment 0.1%', 'Does Limtac Ointment 0.1% has abuse potential?', 'No, Limtac Ointment 0.1% does not have abuse potential and thus, is not a controlled substance. Controlled substances have potential for abuse so they need permission by authorities and doctor for use.'),
(14797, 'Limtac Ointment 0.1%', 'Medcure Pharma', 'Limtac Ointment 0.1%', 'Does Limtac Ointment 0.1% cause cancer?', 'Long-term use of Limtac Ointment 0.1% has been found to have increased risk of lymph node tumors called lymphoma. Some studies have found that few patients who used Limtac Ointment 0.1% ointment or another similar medication developed skin cancer or lymphoma. Consult your doctor if you have to use Limtac Ointment 0.1% ointment for more than 6 weeks or if your eczema symptoms have not improved or are getting worse with time during your treatment.'),
(14798, 'Limtac Ointment 0.1%', 'Medcure Pharma', 'Limtac Ointment 0.1%', 'Is Limtac Ointment 0.1% a steroid?', 'No, Limtac Ointment 0.1% is not a steroid. It is a medicine which modulates the working of the immune system. It is used in the treatment of eczema, most commonly in atopic dermatitis. An advantage of Limtac Ointment 0.1% is that it does not cause skin thinning (atrophy) or other steroid-related side effects.'),
(14799, 'Limtec 250mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 250mg Tablet', 'Is Limtec 250mg Tablet safe?', 'Limtec 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14800, 'Limtec 250mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 250mg Tablet', 'What if I forget to take a dose of Limtec 250mg Tablet?', 'If you forget a dose of Limtec 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14801, 'Limtec 250mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 250mg Tablet', 'Can the use of Limtec 250mg Tablet cause diarrhea?', 'Yes, the use of Limtec 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14802, 'Limtec 250mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 250mg Tablet', 'Can I stop taking Limtec 250mg Tablet when I feel better?', 'No, do not stop taking Limtec 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Limtec 250mg Tablet too early, the symptoms may return or worsen. Continue taking Limtec 250mg Tablet in the dose and duration advised by the doctor.'),
(14803, 'Limtec 250mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 250mg Tablet', 'Can the use of Limtec 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Limtec 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Limtec 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14804, 'Limtec 500mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 500mg Tablet', 'Is Limtec 500mg Tablet safe?', 'Limtec 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14805, 'Limtec 500mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 500mg Tablet', 'What if I forget to take a dose of Limtec 500mg Tablet?', 'If you forget a dose of Limtec 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14806, 'Limtec 500mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 500mg Tablet', 'Can the use of Limtec 500mg Tablet cause diarrhea?', 'Yes, the use of Limtec 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14807, 'Limtec 500mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 500mg Tablet', 'Can I stop taking Limtec 500mg Tablet when I feel better?', 'No, do not stop taking Limtec 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Limtec 500mg Tablet too early, the symptoms may return or worsen. Continue taking Limtec 500mg Tablet in the dose and duration advised by the doctor.'),
(14808, 'Limtec 500mg Tablet', 'Nutratec Pharmaceuticals', 'Limtec 500mg Tablet', 'Can the use of Limtec 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Limtec 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Limtec 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14809, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'What is Limus P 100mg/325mg Tablet?', 'Limus P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(14810, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'Can I stop taking Limus P 100mg/325mg Tablet when my pain is relieved?', 'Limus P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(14811, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'Can the use of Limus P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Limus P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(14812, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Limus P 100mg/325mg Tablet?', 'The use of Limus P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(14813, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'Can I take Limus P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Limus P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Limus P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(14814, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'Does Limus P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Limus P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(14815, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'Can the use of Limus P 100mg/325mg Tablet cause damage to the liver?', 'Limus P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(14816, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Limus P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Limus P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14817, 'Limus P 100mg/325mg Tablet', 'Torres Lifesciences', 'Limus P 100mg/325mg Tablet', 'What are the recommended storage conditions for Limus P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14818, 'Limvent Tablet', 'Iatric Pharmaceuticals', 'Limvent Tablet', 'Is Limvent Tablet a steroid? What is it used for?', 'No, Limvent Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(14819, 'Limvent Tablet', 'Iatric Pharmaceuticals', 'Limvent Tablet', 'Does Limvent Tablet make you tired and drowsy?', 'Yes, Limvent Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(14820, 'Limvent Tablet', 'Iatric Pharmaceuticals', 'Limvent Tablet', 'How long does it take for Limvent Tablet to work?', 'Limvent Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(14821, 'Limvent Tablet', 'Iatric Pharmaceuticals', 'Limvent Tablet', 'Can I take Limvent Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Limvent Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(14822, 'Limvent Tablet', 'Iatric Pharmaceuticals', 'Limvent Tablet', 'Is it safe to take Limvent Tablet for a long time?', 'Limvent Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Limvent Tablet for only as long as you need it.'),
(14823, 'Limvent Tablet', 'Iatric Pharmaceuticals', 'Limvent Tablet', 'For how long should I continue Limvent Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Limvent Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Limvent Tablet'),
(14824, 'Limvent-M Tablet', 'Iatric Pharmaceuticals', 'Limvent-M Tablet', 'What is Limvent-M Tablet?', 'Limvent-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(14825, 'Limvent-M Tablet', 'Iatric Pharmaceuticals', 'Limvent-M Tablet', 'Can the use of Limvent-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Limvent-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14826, 'Limvent-M Tablet', 'Iatric Pharmaceuticals', 'Limvent-M Tablet', 'Can Limvent-M Tablet be stopped when allergy symptoms are relieved?', 'No, Limvent-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(14827, 'Limvent-M Tablet', 'Iatric Pharmaceuticals', 'Limvent-M Tablet', 'Can the use of Limvent-M Tablet cause dry mouth?', 'Yes, the use of Limvent-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(14828, 'Limvent-M Tablet', 'Iatric Pharmaceuticals', 'Limvent-M Tablet', 'Can I drink alcohol while taking Limvent-M Tablet?', 'No, do not take alcohol while taking Limvent-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Limvent-M Tablet.'),
(14829, 'Limvent-M Tablet', 'Iatric Pharmaceuticals', 'Limvent-M Tablet', 'Will Limvent-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Limvent-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(14830, 'Limvent-M Tablet', 'Iatric Pharmaceuticals', 'Limvent-M Tablet', 'What are the instructions for storage and disposal of Limvent-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(14831, 'Limzed 600mg Tablet', 'Vilarsh Healthcare Pvt Ltd', 'Limzed 600mg Tablet', 'Can the use of Limzed 600mg Tablet cause diarrhea?', 'Yes, the use of Limzed 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14832, 'Limzed 600mg Tablet', 'Vilarsh Healthcare Pvt Ltd', 'Limzed 600mg Tablet', 'What foods should I avoid while taking Limzed 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Limzed 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(14833, 'Limzest 100mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 100mg Capsule', 'What is Limzest 100mg Capsule?', 'Limzest 100mg Capsule is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Limzest 100mg Capsule in the body and decreases its side effects.'),
(14834, 'Limzest 100mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 100mg Capsule', 'What is Limzest 100mg Capsule used to treat?', 'Limzest 100mg Capsule is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(14835, 'Limzest 100mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 100mg Capsule', 'Can you take Limzest 100mg Capsule every day?', 'Yes, Limzest 100mg Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(14836, 'Limzest 100mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 100mg Capsule', 'Does Limzest 100mg Capsule cause weight gain?', 'Yes, taking Limzest 100mg Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Limzest 100mg Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(14837, 'Limzest 100mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 100mg Capsule', 'Is Limzest 100mg Capsule safe?', 'Yes, Limzest 100mg Capsule is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(14838, 'Limzest 100mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 100mg Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Limzest 100mg Capsule (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(14839, 'Limzest 200mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Capsule', 'What is Limzest 200mg Capsule?', 'Limzest 200mg Capsule is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Limzest 200mg Capsule in the body and decreases its side effects.'),
(14840, 'Limzest 200mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Capsule', 'What is Limzest 200mg Capsule used to treat?', 'Limzest 200mg Capsule is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(14841, 'Limzest 200mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Capsule', 'Can you take Limzest 200mg Capsule every day?', 'Yes, Limzest 200mg Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(14842, 'Limzest 200mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Capsule', 'Does Limzest 200mg Capsule cause weight gain?', 'Yes, taking Limzest 200mg Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Limzest 200mg Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(14843, 'Limzest 200mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Capsule', 'Is Limzest 200mg Capsule safe?', 'Yes, Limzest 200mg Capsule is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(14844, 'Limzest 200mg Capsule', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Limzest 200mg Capsule (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(14845, 'Limzest 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Tablet', 'What is Limzest 200mg Tablet?', 'Limzest 200mg Tablet is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Limzest 200mg Tablet in the body and decreases its side effects.'),
(14846, 'Limzest 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Tablet', 'What is Limzest 200mg Tablet used to treat?', 'Limzest 200mg Tablet is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(14847, 'Limzest 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Tablet', 'Can you take Limzest 200mg Tablet every day?', 'Yes, Limzest 200mg Tablet can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(14848, 'Limzest 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Tablet', 'Does Limzest 200mg Tablet cause weight gain?', 'Yes, taking Limzest 200mg Tablet may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Limzest 200mg Tablet is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(14849, 'Limzest 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Tablet', 'Is Limzest 200mg Tablet safe?', 'Yes, Limzest 200mg Tablet is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(14850, 'Limzest 200mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzest 200mg Tablet', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Limzest 200mg Tablet (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(14851, 'Limzolid 600mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzolid 600mg Tablet', 'Q. Can the use of Limzolid 600mg Tablet cause diarrhea?', 'Yes, the use of Limzolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14852, 'Limzolid 600mg Tablet', 'Limbson Pharmaceuticals LLP', 'Limzolid 600mg Tablet', 'Q. What foods should I avoid while taking Limzolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Limzolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(14853, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'What if I give an excess of Limzolid -DS Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(14854, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Limzolid -DS Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(14855, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'What should I do if my child shows no improvement even after taking Limzolid -DS Dry Syrup for the prescribed duration?', 'Ineffective treatment with Limzolid -DS Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(14856, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'Can Limzolid -DS Dry Syrup be given for a long duration?', 'Prolonged use of Limzolid -DS Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(14857, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'Can other medicines be given at the same time as Limzolid -DS Dry Syrup?', 'Limzolid -DS Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Limzolid -DS Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(14858, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Limzolid -DS Dry Syrup?', 'For children receiving Limzolid -DS Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(14859, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'In which disease conditions should I avoid giving Limzolid -DS Dry Syrup to my child?', 'Avoid giving Limzolid -DS Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Limzolid -DS Dry Syrup to your child.'),
(14860, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'What food items should my child avoid while taking Limzolid -DS Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Limzolid -DS Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(14861, 'Limzolid -DS Dry Syrup', 'Limbson Pharmaceuticals LLP', 'Limzolid -DS Dry Syrup', 'Can I get my child vaccinated while on treatment with Limzolid -DS Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Limzolid -DS Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(14862, 'Lin 500mg Tablet', 'Admac Pharma Ltd', 'Lin 500mg Tablet', 'Is Lin 500mg Tablet safe?', 'Lin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14863, 'Lin 500mg Tablet', 'Admac Pharma Ltd', 'Lin 500mg Tablet', 'What if I forget to take a dose of Lin 500mg Tablet?', 'If you forget a dose of Lin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14864, 'Lin 500mg Tablet', 'Admac Pharma Ltd', 'Lin 500mg Tablet', 'Can the use of Lin 500mg Tablet cause diarrhea?', 'Yes, the use of Lin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14865, 'Lin 500mg Tablet', 'Admac Pharma Ltd', 'Lin 500mg Tablet', 'Can I stop taking Lin 500mg Tablet when I feel better?', 'No, do not stop taking Lin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lin 500mg Tablet in the dose and duration advised by the doctor.'),
(14866, 'Lin 500mg Tablet', 'Admac Pharma Ltd', 'Lin 500mg Tablet', 'Can the use of Lin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14867, 'Lin 600mg Tablet', 'Care Benzorganics Pvt Ltd', 'Lin 600mg Tablet', 'Can the use of Lin 600mg Tablet cause diarrhea?', 'Yes, the use of Lin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14868, 'Lin 600mg Tablet', 'Care Benzorganics Pvt Ltd', 'Lin 600mg Tablet', 'What foods should I avoid while taking Lin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(14869, 'Lin 750mg Tablet', 'Admac Pharma Ltd', 'Lin 750mg Tablet', 'Is Lin 750mg Tablet safe?', 'Lin 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14870, 'Lin 750mg Tablet', 'Admac Pharma Ltd', 'Lin 750mg Tablet', 'What if I forget to take a dose of Lin 750mg Tablet?', 'If you forget a dose of Lin 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14871, 'Lin 750mg Tablet', 'Admac Pharma Ltd', 'Lin 750mg Tablet', 'Can the use of Lin 750mg Tablet cause diarrhea?', 'Yes, the use of Lin 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14872, 'Lin 750mg Tablet', 'Admac Pharma Ltd', 'Lin 750mg Tablet', 'Can I stop taking Lin 750mg Tablet when I feel better?', 'No, do not stop taking Lin 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lin 750mg Tablet too early, the symptoms may return or worsen. Continue taking Lin 750mg Tablet in the dose and duration advised by the doctor.'),
(14873, 'Lin 750mg Tablet', 'Admac Pharma Ltd', 'Lin 750mg Tablet', 'Can the use of Lin 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lin 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lin 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14874, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'What is Lin P 40mg Injection used for?', 'Lin P 40mg Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lin P 40mg Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(14875, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'Can I take antacids along with Lin P 40mg Injection?', 'Yes, you can take antacids along with Lin P 40mg Injection. Take it 2 hours before or after you take Lin P 40mg Injection.'),
(14876, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'How long does it take for Lin P 40mg Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lin P 40mg Injection to work properly so you may still have some symptoms during this time.'),
(14877, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'Does Lin P 40mg Injection cause weight gain?', 'Although rare but long-term treatment with Lin P 40mg Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(14878, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'Can I take alcohol with Lin P 40mg Injection?', 'No, alcohol intake is not advised with Lin P 40mg Injection. Alcohol itself does not affect the working of Lin P 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(14879, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Lin P 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(14880, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'Can I take Lin P 40mg Injection for a long term?', 'Lin P 40mg Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lin P 40mg Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lin P 40mg Injection as advised by your doctor and under their supervision.'),
(14881, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'Are painkillers safe to take along with Lin P 40mg Injection?', 'Yes, it is safe to take painkillers along with Lin P 40mg Injection. Lin P 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Lin P 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(14882, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'Is a single dose of Lin P 40mg Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lin P 40mg Injection you may get relief with the symptoms. Lin P 40mg Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lin P 40mg Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lin P 40mg Injection regularly for 2 weeks as prescribed.'),
(14883, 'Lin P 40mg Injection', 'Linex Pharmaceuticals', 'Lin P 40mg Injection', 'What are the long term side effects of Lin P 40mg Injection?', 'If Lin P 40mg Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(14884, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'What is Lin P 40mg Tablet used for?', 'Lin P 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lin P 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(14885, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'How long does it take for Lin P 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lin P 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(14886, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'Is a single dose of Lin P 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lin P 40mg Tablet you may get relief with the symptoms. Lin P 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lin P 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lin P 40mg Tablet regularly for 2 weeks as prescribed.'),
(14887, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'Is Lin P 40mg Tablet safe?', 'Yes, Lin P 40mg Tablet is relatively safe. Most of the people who take Lin P 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(14888, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'Can I take Lin P 40mg Tablet for a long term?', 'Lin P 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Lin P 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lin P 40mg Tablet as advised by your doctor and under their supervision.'),
(14889, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'What are the long term side effects of Lin P 40mg Tablet?', 'If Lin P 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(14890, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'What is the best time to take Lin P 40mg Tablet?', 'Usually, Lin P 40mg Tablet is taken once a day, first thing in the morning. If you take Lin P 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(14891, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'Can I stop taking Lin P 40mg Tablet if I feel better?', 'If you have been taking Lin P 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lin P 40mg Tablet.'),
(14892, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'Does Lin P 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Lin P 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(14893, 'Lin P 40mg Tablet', 'Linex Pharmaceuticals', 'Lin P 40mg Tablet', 'Can I take alcohol with Lin P 40mg Tablet?', 'No, alcohol intake is not advised with Lin P 40mg Tablet. Alcohol itself does not affect the working of Lin P 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(14894, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'What is Lin PD 10mg/40mg Tablet?', 'Lin PD 10mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(14895, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'Is it safe to use Lin PD 10mg/40mg Tablet?', 'Lin PD 10mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(14896, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Lin PD 10mg/40mg Tablet?', 'The use of Lin PD 10mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(14897, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'Can the use of Lin PD 10mg/40mg Tablet cause dry mouth?', 'Yes, the use of Lin PD 10mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(14898, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'Can the use of Lin PD 10mg/40mg Tablet cause diarrhea?', 'Yes, the use of Lin PD 10mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(14899, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'What are the instructions for storage and disposal of Lin PD 10mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14900, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'What is Lin PD 10mg/40mg Tablet price?', 'You can get Lin PD 10mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(14901, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'While taking Lin PD 10mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(14902, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'Can I take alcohol while taking Lin PD 10mg/40mg Tablet?', 'No, alcohol intake is not advised with Lin PD 10mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(14903, 'Lin PD 10mg/40mg Tablet', 'Linex Pharmaceuticals', 'Lin PD 10mg/40mg Tablet', 'Can I stop taking Lin PD 10mg/40mg Tablet if I feel better?', 'If you have been taking Lin PD 10mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(14904, 'Lin Plus VE 600mg Tablet', 'Veritaz Healthcare Ltd', 'Lin Plus VE 600mg Tablet', 'Can the use of Lin Plus VE 600mg Tablet cause diarrhea?', 'Yes, the use of Lin Plus VE 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14905, 'Lin Plus VE 600mg Tablet', 'Veritaz Healthcare Ltd', 'Lin Plus VE 600mg Tablet', 'What foods should I avoid while taking Lin Plus VE 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lin Plus VE 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(14906, 'Lina 500mg Tablet', 'Zota Health care Ltd', 'Lina 500mg Tablet', 'Is Lina 500mg Tablet safe?', 'Lina 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14907, 'Lina 500mg Tablet', 'Zota Health care Ltd', 'Lina 500mg Tablet', 'What if I forget to take a dose of Lina 500mg Tablet?', 'If you forget a dose of Lina 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14908, 'Lina 500mg Tablet', 'Zota Health care Ltd', 'Lina 500mg Tablet', 'Can the use of Lina 500mg Tablet cause diarrhea?', 'Yes, the use of Lina 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(14909, 'Lina 500mg Tablet', 'Zota Health care Ltd', 'Lina 500mg Tablet', 'Can I stop taking Lina 500mg Tablet when I feel better?', 'No, do not stop taking Lina 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lina 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lina 500mg Tablet in the dose and duration advised by the doctor.'),
(14910, 'Lina 500mg Tablet', 'Zota Health care Ltd', 'Lina 500mg Tablet', 'Can the use of Lina 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lina 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lina 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(14911, 'Linabees 5 Tablet', 'Amcare Pharmaceuticals', 'Linabees 5 Tablet', 'What is Linabees 5 Tablet used for?', 'Linabees 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linabees 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linabees 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(14912, 'Linabees 5 Tablet', 'Amcare Pharmaceuticals', 'Linabees 5 Tablet', 'When should I take Linabees 5 Tablet? What if I miss a dose?', 'Linabees 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(14913, 'Linabees 5 Tablet', 'Amcare Pharmaceuticals', 'Linabees 5 Tablet', 'Is Linabees 5 Tablet bad for kidneys?', 'No, there is no evidence that Linabees 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(14914, 'Linabees 5 Tablet', 'Amcare Pharmaceuticals', 'Linabees 5 Tablet', 'Is Linabees 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linabees 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(14915, 'Linabees 5 Tablet', 'Amcare Pharmaceuticals', 'Linabees 5 Tablet', 'For how long I have to take Linabees 5 Tablet? Can I stop the medication?', 'You should keep taking Linabees 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(14916, 'Linabees-M Tablet', 'Amcare Pharmaceuticals', 'Linabees-M Tablet', 'Can the use of Linabees-M Tablet cause lactic acidosis?', 'Yes, the use of Linabees-M Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linabees-M Tablet and immediately consult your doctor.'),
(14917, 'Linabees-M Tablet', 'Amcare Pharmaceuticals', 'Linabees-M Tablet', 'What are the possible side effects of Linabees-M Tablet?', 'The use of Linabees-M Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(14918, 'Linabees-M Tablet', 'Amcare Pharmaceuticals', 'Linabees-M Tablet', 'Are there any specific conditions in which Linabees-M Tablet should not be taken?', 'The use of Linabees-M Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linabees-M Tablet.'),
(14919, 'Linabees-M Tablet', 'Amcare Pharmaceuticals', 'Linabees-M Tablet', 'Is it safe to take alcohol while I am also taking Linabees-M Tablet?', 'No, it is not safe to take Linabees-M Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(14920, 'Linabees-M Tablet', 'Amcare Pharmaceuticals', 'Linabees-M Tablet', 'What are the instructions for the storage and disposal of Linabees-M Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14921, 'Linabees-M Tablet', 'Amcare Pharmaceuticals', 'Linabees-M Tablet', 'Can the use of Linabees-M Tablet cause hypoglycemia?', 'The use of Linabees-M Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(14922, 'Linabees-M Tablet', 'Amcare Pharmaceuticals', 'Linabees-M Tablet', 'Can the use of Linabees-M Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linabees-M Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(14923, 'Linabest 5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest 5mg Tablet', 'What is Linabest 5mg Tablet used for?', 'Linabest 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linabest 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linabest 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(14924, 'Linabest 5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest 5mg Tablet', 'When should I take Linabest 5mg Tablet? What if I miss a dose?', 'Linabest 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(14925, 'Linabest 5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest 5mg Tablet', 'Is Linabest 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linabest 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(14926, 'Linabest 5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest 5mg Tablet', 'Is Linabest 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linabest 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(14927, 'Linabest 5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest 5mg Tablet', 'For how long I have to take Linabest 5mg Tablet? Can I stop the medication?', 'You should keep taking Linabest 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(14928, 'Linabest Duo 1000mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 1000mg/2.5mg Tablet', 'Can the use of Linabest Duo 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linabest Duo 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linabest Duo 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(14929, 'Linabest Duo 1000mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 1000mg/2.5mg Tablet', 'What are the possible side effects of Linabest Duo 1000mg/2.5mg Tablet?', 'The use of Linabest Duo 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(14930, 'Linabest Duo 1000mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linabest Duo 1000mg/2.5mg Tablet should not be taken?', 'The use of Linabest Duo 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linabest Duo 1000mg/2.5mg Tablet.'),
(14931, 'Linabest Duo 1000mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linabest Duo 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linabest Duo 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(14932, 'Linabest Duo 1000mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linabest Duo 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14933, 'Linabest Duo 1000mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 1000mg/2.5mg Tablet', 'Can the use of Linabest Duo 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linabest Duo 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(14934, 'Linabest Duo 1000mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 1000mg/2.5mg Tablet', 'Can the use of Linabest Duo 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linabest Duo 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(14935, 'Linabest Duo 500mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 500mg/2.5mg Tablet', 'Can the use of Linabest Duo 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linabest Duo 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linabest Duo 500mg/2.5mg Tablet and immediately consult your doctor.'),
(14936, 'Linabest Duo 500mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 500mg/2.5mg Tablet', 'What are the possible side effects of Linabest Duo 500mg/2.5mg Tablet?', 'The use of Linabest Duo 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(14937, 'Linabest Duo 500mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linabest Duo 500mg/2.5mg Tablet should not be taken?', 'The use of Linabest Duo 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linabest Duo 500mg/2.5mg Tablet.'),
(14938, 'Linabest Duo 500mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linabest Duo 500mg/2.5mg Tablet?', 'No, it is not safe to take Linabest Duo 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(14939, 'Linabest Duo 500mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linabest Duo 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14940, 'Linabest Duo 500mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 500mg/2.5mg Tablet', 'Can the use of Linabest Duo 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linabest Duo 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(14941, 'Linabest Duo 500mg/2.5mg Tablet', 'Mednich Pharmaceuticals', 'Linabest Duo 500mg/2.5mg Tablet', 'Can the use of Linabest Duo 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linabest Duo 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(14942, 'Linabetic 5mg Tablet', 'Arkas Pharma Pvt Ltd', 'Linabetic 5mg Tablet', 'Q. What is Linabetic 5mg Tablet used for?', 'Linabetic 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linabetic 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linabetic 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(14943, 'Linabetic 5mg Tablet', 'Arkas Pharma Pvt Ltd', 'Linabetic 5mg Tablet', 'Q. When should I take Linabetic 5mg Tablet? What if I miss a dose?', 'Linabetic 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(14944, 'Linabetic 5mg Tablet', 'Arkas Pharma Pvt Ltd', 'Linabetic 5mg Tablet', 'Q. Is Linabetic 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linabetic 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(14945, 'Linabetic 5mg Tablet', 'Arkas Pharma Pvt Ltd', 'Linabetic 5mg Tablet', 'Q. Is Linabetic 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linabetic 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(14946, 'Linabetic 5mg Tablet', 'Arkas Pharma Pvt Ltd', 'Linabetic 5mg Tablet', 'Q. For how long I have to take Linabetic 5mg Tablet? Can I stop the medication?', 'You should keep taking Linabetic 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(14947, 'Linabite 5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite 5mg Tablet', 'What is Linabite 5mg Tablet used for?', 'Linabite 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linabite 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linabite 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(14948, 'Linabite 5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite 5mg Tablet', 'When should I take Linabite 5mg Tablet? What if I miss a dose?', 'Linabite 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(14949, 'Linabite 5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite 5mg Tablet', 'Is Linabite 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linabite 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(14950, 'Linabite 5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite 5mg Tablet', 'Is Linabite 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linabite 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(14951, 'Linabite 5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite 5mg Tablet', 'For how long I have to take Linabite 5mg Tablet? Can I stop the medication?', 'You should keep taking Linabite 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(14952, 'Linabite M 1000mg/5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 1000mg/5mg Tablet', 'Can the use of Linabite M 1000mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linabite M 1000mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linabite M 1000mg/5mg Tablet and immediately consult your doctor.'),
(14953, 'Linabite M 1000mg/5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 1000mg/5mg Tablet', 'What are the possible side effects of Linabite M 1000mg/5mg Tablet?', 'The use of Linabite M 1000mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(14954, 'Linabite M 1000mg/5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 1000mg/5mg Tablet', 'Are there any specific conditions in which Linabite M 1000mg/5mg Tablet should not be taken?', 'The use of Linabite M 1000mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linabite M 1000mg/5mg Tablet.'),
(14955, 'Linabite M 1000mg/5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 1000mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linabite M 1000mg/5mg Tablet?', 'No, it is not safe to take Linabite M 1000mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(14956, 'Linabite M 1000mg/5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 1000mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linabite M 1000mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14957, 'Linabite M 1000mg/5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 1000mg/5mg Tablet', 'Can the use of Linabite M 1000mg/5mg Tablet cause hypoglycemia?', 'The use of Linabite M 1000mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(14958, 'Linabite M 1000mg/5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 1000mg/5mg Tablet', 'Can the use of Linabite M 1000mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linabite M 1000mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(14959, 'Linabite M 5/500 Tablet ER', 'Corona Remedies Pvt Ltd', 'Linabite M 5/500 Tablet ER', 'Can the use of Linabite M 5/500 Tablet ER cause lactic acidosis?', 'Yes, the use of Linabite M 5/500 Tablet ER can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linabite M 5/500 Tablet ER and immediately consult your doctor.'),
(14960, 'Linabite M 5/500 Tablet ER', 'Corona Remedies Pvt Ltd', 'Linabite M 5/500 Tablet ER', 'What are the possible side effects of Linabite M 5/500 Tablet ER?', 'The use of Linabite M 5/500 Tablet ER may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(14961, 'Linabite M 5/500 Tablet ER', 'Corona Remedies Pvt Ltd', 'Linabite M 5/500 Tablet ER', 'Are there any specific conditions in which Linabite M 5/500 Tablet ER should not be taken?', 'The use of Linabite M 5/500 Tablet ER should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linabite M 5/500 Tablet ER.'),
(14962, 'Linabite M 5/500 Tablet ER', 'Corona Remedies Pvt Ltd', 'Linabite M 5/500 Tablet ER', 'Is it safe to take alcohol while I am also taking Linabite M 5/500 Tablet ER?', 'No, it is not safe to take Linabite M 5/500 Tablet ER along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(14963, 'Linabite M 5/500 Tablet ER', 'Corona Remedies Pvt Ltd', 'Linabite M 5/500 Tablet ER', 'What are the instructions for the storage and disposal of Linabite M 5/500 Tablet ER?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14964, 'Linabite M 5/500 Tablet ER', 'Corona Remedies Pvt Ltd', 'Linabite M 5/500 Tablet ER', 'Can the use of Linabite M 5/500 Tablet ER cause hypoglycemia?', 'The use of Linabite M 5/500 Tablet ER does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(14965, 'Linabite M 5/500 Tablet ER', 'Corona Remedies Pvt Ltd', 'Linabite M 5/500 Tablet ER', 'Can the use of Linabite M 5/500 Tablet ER lead to vitamin B12 deficiency?', 'Yes, long-term use of Linabite M 5/500 Tablet ER can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(14966, 'Linabite M 500mg/2.5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 500mg/2.5mg Tablet', 'Can the use of Linabite M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linabite M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linabite M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(14967, 'Linabite M 500mg/2.5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 500mg/2.5mg Tablet', 'What are the possible side effects of Linabite M 500mg/2.5mg Tablet?', 'The use of Linabite M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(14968, 'Linabite M 500mg/2.5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linabite M 500mg/2.5mg Tablet should not be taken?', 'The use of Linabite M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linabite M 500mg/2.5mg Tablet.'),
(14969, 'Linabite M 500mg/2.5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linabite M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linabite M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(14970, 'Linabite M 500mg/2.5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linabite M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(14971, 'Linabite M 500mg/2.5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 500mg/2.5mg Tablet', 'Can the use of Linabite M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linabite M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(14972, 'Linabite M 500mg/2.5mg Tablet', 'Corona Remedies Pvt Ltd', 'Linabite M 500mg/2.5mg Tablet', 'Can the use of Linabite M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linabite M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(14973, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'Is Linac 200mg Tablet SR a good painkiller?', 'Linac 200mg Tablet SR is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(14974, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'Is Linac 200mg Tablet SR safe?', 'Linac 200mg Tablet SR is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(14975, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'Does Linac 200mg Tablet SR get you high?', 'No, Linac 200mg Tablet SR does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(14976, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'Can Linac 200mg Tablet SR hurt your kidneys?', 'Long-term use and high doses of Linac 200mg Tablet SR may cause renal problems, such as protein or blood in urine and pain during urination. Patients  who had or have heart failure, impaired kidney function and hypertension are at risk of kidney problems. The risk of developing kidney problems is also high in patients who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Along with that, Linac 200mg Tablet SR can affect kidneys of patients who are above 65 years of age or who remain dehydrated. Therefore, kidney function monitoring is recommended for such patients.'),
(14977, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'What if I forget to take a dose of Linac 200mg Tablet SR?', 'If you forget a dose of Linac 200mg Tablet SR, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(14978, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'Does Linac 200mg Tablet SR make you drowsy?', 'Linac 200mg Tablet SR can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(14979, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'What is the most important information I need to know about Linac 200mg Tablet SR?', 'It is important to know that Linac 200mg Tablet SR may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, the use of Linac 200mg Tablet SR may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(14980, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'Can Linac 200mg Tablet SR be taken during pregnancy?', 'You should not take Linac 200mg Tablet SR during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Linac 200mg Tablet SR can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Linac 200mg Tablet SR during the first 6 months of pregnancy also.  In some cases, Linac 200mg Tablet SR may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(14981, 'Linac 200mg Tablet SR', 'Linex Pharmaceuticals', 'Linac 200mg Tablet SR', 'Is Linac 200mg Tablet SR effective?', 'Linac 200mg Tablet SR is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linac 200mg Tablet SR too early, the symptoms may return or worsen.'),
(14982, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. How should Linac Injection injection be administered?', 'Linac Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(14983, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. What is the most important information I need to know about Linac Injection?', 'It is important to know that Linac Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Linac Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(14984, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. Is Linac Injection a good painkiller?', 'Linac Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(14985, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. Can Linac Injection hurt your kidneys?', 'Long-term use and high doses of Linac Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(14986, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. Does Linac Injection make you drowsy?', 'Linac Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(14987, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. Can Linac Injection be taken during pregnancy?', 'You should not take Linac Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Linac Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Linac Injection during the first 6 months of pregnancy also.  In some cases, Linac Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(14988, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. Does Linac Injection get you high?', 'No, Linac Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(14989, 'Linac Injection', 'Linex Pharmaceuticals', 'Linac Injection', 'Q. Is Linac Injection a narcotic?', 'No, Linac Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(14990, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'What is Linac MR 100mg/325mg/250mg Tablet?', 'Linac MR 100mg/325mg/250mg Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(14991, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'What can I do along with Linac MR 100mg/325mg/250mg Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(14992, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'Can I get addicted to Linac MR 100mg/325mg/250mg Tablet?', 'No, there are no reports of any patient getting addicted to Linac MR 100mg/325mg/250mg Tablet.'),
(14993, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'Can I stop taking Linac MR 100mg/325mg/250mg Tablet when my pain is relieved?', 'Linac MR 100mg/325mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Linac MR 100mg/325mg/250mg Tablet should be continued if you are advised by your doctor to do so.'),
(14994, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'Can the use of Linac MR 100mg/325mg/250mg Tablet cause dizziness?', 'Yes, the use of Linac MR 100mg/325mg/250mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(14995, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'Can the use of Linac MR 100mg/325mg/250mg Tablet cause damage to liver?', 'Linac MR 100mg/325mg/250mg Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(14996, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'How long will Linac MR 100mg/325mg/250mg Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Linac MR 100mg/325mg/250mg Tablet.'),
(14997, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'What if I forget to take Linac MR 100mg/325mg/250mg Tablet?', 'If you forget to take the scheduled dose of Linac MR 100mg/325mg/250mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(14998, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'Will Linac MR 100mg/325mg/250mg Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(14999, 'Linac MR 100mg/325mg/250mg Tablet', 'Linex Pharmaceuticals', 'Linac MR 100mg/325mg/250mg Tablet', 'Are there any specific contraindications associated with the use of Linac MR 100mg/325mg/250mg Tablet?', 'The use of Linac MR 100mg/325mg/250mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(15000, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'What is Linac P 100mg/500mg Tablet?', 'Linac P 100mg/500mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(15001, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Is it safe to use Linac P 100mg/500mg Tablet?', 'Linac P 100mg/500mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(15002, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Can I stop taking Linac P 100mg/500mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Linac P 100mg/500mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(15003, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Can the use of Linac P 100mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Linac P 100mg/500mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(15004, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Can the use of Linac P 100mg/500mg Tablet cause dizziness?', 'Yes, the use of Linac P 100mg/500mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(15005, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Linac P 100mg/500mg Tablet?', 'The use of Linac P 100mg/500mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(15006, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Can Linac P 100mg/500mg Tablet be taken with vitamin B-complex?', 'Yes, Linac P 100mg/500mg Tablet can be taken with vitamin B-complex preparations. While Linac P 100mg/500mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(15007, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Is Linac P 100mg/500mg Tablet helpful in relieving stomach pain?', 'No, Linac P 100mg/500mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(15008, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Can the use of Linac P 100mg/500mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Linac P 100mg/500mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(15009, 'Linac P 100mg/500mg Tablet', 'Linex Pharmaceuticals', 'Linac P 100mg/500mg Tablet', 'Is it safe to take a higher dose of Linac P 100mg/500mg Tablet than recommended?', 'No, taking higher than the recommended dose of Linac P 100mg/500mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(15010, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'What is Linac Plus 100mg/325mg Tablet?', 'Linac Plus 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(15011, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Is it safe to use Linac Plus 100mg/325mg Tablet?', 'Linac Plus 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(15012, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Can I stop taking Linac Plus 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Linac Plus 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(15013, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Can the use of Linac Plus 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Linac Plus 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(15014, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Can the use of Linac Plus 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Linac Plus 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(15015, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Linac Plus 100mg/325mg Tablet?', 'The use of Linac Plus 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(15016, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Can Linac Plus 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Linac Plus 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Linac Plus 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(15017, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Is Linac Plus 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Linac Plus 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(15018, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Can the use of Linac Plus 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Linac Plus 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(15019, 'Linac Plus 100mg/325mg Tablet', 'Chimak Health Care', 'Linac Plus 100mg/325mg Tablet', 'Is it safe to take a higher dose of Linac Plus 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Linac Plus 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(15020, 'Linac Plus Syrup', 'Linex Pharmaceuticals', 'Linac Plus Syrup', 'Q. Can I increase or decrease the dose of Linac Plus Syrup for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While increasing the dose without proper judgment may lead to toxicity, decreasing it may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(15021, 'Linac Plus Syrup', 'Linex Pharmaceuticals', 'Linac Plus Syrup', 'Q. How much Linac Plus Syrup should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure the safe and complete recovery of your child.'),
(15022, 'Linac Plus Syrup', 'Linex Pharmaceuticals', 'Linac Plus Syrup', 'Q. How should Linac Plus Syrup be stored?', 'Linac Plus Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(15023, 'Linac Plus Syrup', 'Linex Pharmaceuticals', 'Linac Plus Syrup', 'Q. Can all children be given the same dose of Linac Plus Syrup?', 'No. Linac Plus Syrup cannot be given to everyone in the same dose. The doctor decides the appropriate dose of Linac Plus Syrup based on the child’s age and body weight. The dose will even change for your child when he/she becomes older. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15024, 'Linac Plus Syrup', 'Linex Pharmaceuticals', 'Linac Plus Syrup', 'Q. When will my child feel better?', 'You may be required to give Linac Plus Syrup to your child for a few days to weeks, depending upon the severity of the infection. Keep giving this medicine to your child in the dose and frequency advised by the doctor and you’ll notice that the pain or fever will reduce and your child will start feeling better. However, if your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(15025, 'Linac Plus Syrup', 'Linex Pharmaceuticals', 'Linac Plus Syrup', 'Q. Are there any serious side effects of this medicine for my child?', 'Although Linac Plus Syrup is well-tolerated by children, if you notice your child experiencing any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, or serious allergic reaction, rush to your doctor on an immediate basis.'),
(15026, 'Linac Plus Syrup', 'Linex Pharmaceuticals', 'Linac Plus Syrup', 'Q. Are there any specific contraindications associated with the use of Linac Plus Syrup?', 'The use of Linac Plus Syrup is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(15027, 'Linacent 5mg Tablet', 'Daxia Healthcare', 'Linacent 5mg Tablet', 'What is Linacent 5mg Tablet used for?', 'Linacent 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linacent 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linacent 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15028, 'Linacent 5mg Tablet', 'Daxia Healthcare', 'Linacent 5mg Tablet', 'When should I take Linacent 5mg Tablet? What if I miss a dose?', 'Linacent 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15029, 'Linacent 5mg Tablet', 'Daxia Healthcare', 'Linacent 5mg Tablet', 'Is Linacent 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linacent 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15030, 'Linacent 5mg Tablet', 'Daxia Healthcare', 'Linacent 5mg Tablet', 'Is Linacent 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linacent 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15031, 'Linacent 5mg Tablet', 'Daxia Healthcare', 'Linacent 5mg Tablet', 'For how long I have to take Linacent 5mg Tablet? Can I stop the medication?', 'You should keep taking Linacent 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15032, 'Linacent M 1000mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 1000mg/2.5mg Tablet', 'Can the use of Linacent M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linacent M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linacent M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15033, 'Linacent M 1000mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linacent M 1000mg/2.5mg Tablet?', 'The use of Linacent M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15034, 'Linacent M 1000mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linacent M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linacent M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linacent M 1000mg/2.5mg Tablet.'),
(15035, 'Linacent M 1000mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linacent M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linacent M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15036, 'Linacent M 1000mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linacent M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15037, 'Linacent M 1000mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 1000mg/2.5mg Tablet', 'Can the use of Linacent M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linacent M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15038, 'Linacent M 1000mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 1000mg/2.5mg Tablet', 'Can the use of Linacent M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linacent M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15039, 'Linacent M 500mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 500mg/2.5mg Tablet', 'Can the use of Linacent M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linacent M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linacent M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15040, 'Linacent M 500mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 500mg/2.5mg Tablet', 'What are the possible side effects of Linacent M 500mg/2.5mg Tablet?', 'The use of Linacent M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15041, 'Linacent M 500mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linacent M 500mg/2.5mg Tablet should not be taken?', 'The use of Linacent M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linacent M 500mg/2.5mg Tablet.'),
(15042, 'Linacent M 500mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linacent M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linacent M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15043, 'Linacent M 500mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linacent M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15044, 'Linacent M 500mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 500mg/2.5mg Tablet', 'Can the use of Linacent M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linacent M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15045, 'Linacent M 500mg/2.5mg Tablet', 'Daxia Healthcare', 'Linacent M 500mg/2.5mg Tablet', 'Can the use of Linacent M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linacent M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15046, 'Linacip 5mg Tablet', 'Cipla Ltd', 'Linacip 5mg Tablet', 'What is Linacip 5mg Tablet used for?', 'Linacip 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linacip 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linacip 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15047, 'Linacip 5mg Tablet', 'Cipla Ltd', 'Linacip 5mg Tablet', 'When should I take Linacip 5mg Tablet? What if I miss a dose?', 'Linacip 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15048, 'Linacip 5mg Tablet', 'Cipla Ltd', 'Linacip 5mg Tablet', 'Is Linacip 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linacip 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15049, 'Linacip 5mg Tablet', 'Cipla Ltd', 'Linacip 5mg Tablet', 'Is Linacip 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linacip 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15050, 'Linacip 5mg Tablet', 'Cipla Ltd', 'Linacip 5mg Tablet', 'For how long I have to take Linacip 5mg Tablet? Can I stop the medication?', 'You should keep taking Linacip 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15051, 'Linacip M 1000mg/2.5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/2.5mg Tablet', 'Can the use of Linacip M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linacip M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linacip M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15052, 'Linacip M 1000mg/2.5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linacip M 1000mg/2.5mg Tablet?', 'The use of Linacip M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15053, 'Linacip M 1000mg/2.5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linacip M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linacip M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linacip M 1000mg/2.5mg Tablet.'),
(15054, 'Linacip M 1000mg/2.5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linacip M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linacip M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15055, 'Linacip M 1000mg/2.5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linacip M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15056, 'Linacip M 1000mg/2.5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/2.5mg Tablet', 'Can the use of Linacip M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linacip M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15057, 'Linacip M 1000mg/2.5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/2.5mg Tablet', 'Can the use of Linacip M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linacip M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15058, 'Linacip M 1000mg/5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/5mg Tablet', 'Can the use of Linacip M 1000mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linacip M 1000mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linacip M 1000mg/5mg Tablet and immediately consult your doctor.'),
(15059, 'Linacip M 1000mg/5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/5mg Tablet', 'What are the possible side effects of Linacip M 1000mg/5mg Tablet?', 'The use of Linacip M 1000mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15060, 'Linacip M 1000mg/5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/5mg Tablet', 'Are there any specific conditions in which Linacip M 1000mg/5mg Tablet should not be taken?', 'The use of Linacip M 1000mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linacip M 1000mg/5mg Tablet.'),
(15061, 'Linacip M 1000mg/5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linacip M 1000mg/5mg Tablet?', 'No, it is not safe to take Linacip M 1000mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15062, 'Linacip M 1000mg/5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linacip M 1000mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15063, 'Linacip M 1000mg/5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/5mg Tablet', 'Can the use of Linacip M 1000mg/5mg Tablet cause hypoglycemia?', 'The use of Linacip M 1000mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15064, 'Linacip M 1000mg/5mg Tablet', 'Cipla Ltd', 'Linacip M 1000mg/5mg Tablet', 'Can the use of Linacip M 1000mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linacip M 1000mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15065, 'Linacord 5 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord 5 Tablet', 'What is Linacord 5 Tablet used for?', 'Linacord 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linacord 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linacord 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15066, 'Linacord 5 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord 5 Tablet', 'When should I take Linacord 5 Tablet? What if I miss a dose?', 'Linacord 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15067, 'Linacord 5 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord 5 Tablet', 'Is Linacord 5 Tablet bad for kidneys?', 'No, there is no evidence that Linacord 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15068, 'Linacord 5 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord 5 Tablet', 'Is Linacord 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linacord 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15069, 'Linacord 5 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord 5 Tablet', 'For how long I have to take Linacord 5 Tablet? Can I stop the medication?', 'You should keep taking Linacord 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15070, 'Linacord-M 2.5/500 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord-M 2.5/500 Tablet', 'Can the use of Linacord-M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linacord-M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linacord-M 2.5/500 Tablet and immediately consult your doctor.'),
(15071, 'Linacord-M 2.5/500 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord-M 2.5/500 Tablet', 'What are the possible side effects of Linacord-M 2.5/500 Tablet?', 'The use of Linacord-M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15072, 'Linacord-M 2.5/500 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord-M 2.5/500 Tablet', 'Are there any specific conditions in which Linacord-M 2.5/500 Tablet should not be taken?', 'The use of Linacord-M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linacord-M 2.5/500 Tablet.'),
(15073, 'Linacord-M 2.5/500 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord-M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Linacord-M 2.5/500 Tablet?', 'No, it is not safe to take Linacord-M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15074, 'Linacord-M 2.5/500 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord-M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Linacord-M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15075, 'Linacord-M 2.5/500 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord-M 2.5/500 Tablet', 'Can the use of Linacord-M 2.5/500 Tablet cause hypoglycemia?', 'The use of Linacord-M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15076, 'Linacord-M 2.5/500 Tablet', 'Rencord Life Sciences Pvt Ltd', 'Linacord-M 2.5/500 Tablet', 'Can the use of Linacord-M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linacord-M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15077, 'Linacred 5mg Tablet', 'Eleadora Pharma', 'Linacred 5mg Tablet', 'What is Linacred 5mg Tablet used for?', 'Linacred 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linacred 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linacred 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15078, 'Linacred 5mg Tablet', 'Eleadora Pharma', 'Linacred 5mg Tablet', 'When should I take Linacred 5mg Tablet? What if I miss a dose?', 'Linacred 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15079, 'Linacred 5mg Tablet', 'Eleadora Pharma', 'Linacred 5mg Tablet', 'Is Linacred 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linacred 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15080, 'Linacred 5mg Tablet', 'Eleadora Pharma', 'Linacred 5mg Tablet', 'Is Linacred 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linacred 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15081, 'Linacred 5mg Tablet', 'Eleadora Pharma', 'Linacred 5mg Tablet', 'For how long I have to take Linacred 5mg Tablet? Can I stop the medication?', 'You should keep taking Linacred 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15082, 'Linacred M 500mg/2.5mg Tablet', 'Eleadora Pharma', 'Linacred M 500mg/2.5mg Tablet', 'Can the use of Linacred M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linacred M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linacred M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15083, 'Linacred M 500mg/2.5mg Tablet', 'Eleadora Pharma', 'Linacred M 500mg/2.5mg Tablet', 'What are the possible side effects of Linacred M 500mg/2.5mg Tablet?', 'The use of Linacred M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15084, 'Linacred M 500mg/2.5mg Tablet', 'Eleadora Pharma', 'Linacred M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linacred M 500mg/2.5mg Tablet should not be taken?', 'The use of Linacred M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linacred M 500mg/2.5mg Tablet.'),
(15085, 'Linacred M 500mg/2.5mg Tablet', 'Eleadora Pharma', 'Linacred M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linacred M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linacred M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15086, 'Linacred M 500mg/2.5mg Tablet', 'Eleadora Pharma', 'Linacred M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linacred M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15087, 'Linacred M 500mg/2.5mg Tablet', 'Eleadora Pharma', 'Linacred M 500mg/2.5mg Tablet', 'Can the use of Linacred M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linacred M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15088, 'Linacred M 500mg/2.5mg Tablet', 'Eleadora Pharma', 'Linacred M 500mg/2.5mg Tablet', 'Can the use of Linacred M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linacred M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15089, 'linacret 500mg/2.5mg Tablet', 'Cytech Pharmaceuticals Private Limited', 'linacret 500mg/2.5mg Tablet', 'Can the use of linacret 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of linacret 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking linacret 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15090, 'linacret 500mg/2.5mg Tablet', 'Cytech Pharmaceuticals Private Limited', 'linacret 500mg/2.5mg Tablet', 'What are the possible side effects of linacret 500mg/2.5mg Tablet?', 'The use of linacret 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15091, 'linacret 500mg/2.5mg Tablet', 'Cytech Pharmaceuticals Private Limited', 'linacret 500mg/2.5mg Tablet', 'Are there any specific conditions in which linacret 500mg/2.5mg Tablet should not be taken?', 'The use of linacret 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using linacret 500mg/2.5mg Tablet.'),
(15092, 'linacret 500mg/2.5mg Tablet', 'Cytech Pharmaceuticals Private Limited', 'linacret 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking linacret 500mg/2.5mg Tablet?', 'No, it is not safe to take linacret 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15093, 'linacret 500mg/2.5mg Tablet', 'Cytech Pharmaceuticals Private Limited', 'linacret 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of linacret 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15094, 'linacret 500mg/2.5mg Tablet', 'Cytech Pharmaceuticals Private Limited', 'linacret 500mg/2.5mg Tablet', 'Can the use of linacret 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of linacret 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15095, 'linacret 500mg/2.5mg Tablet', 'Cytech Pharmaceuticals Private Limited', 'linacret 500mg/2.5mg Tablet', 'Can the use of linacret 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of linacret 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15096, 'Linacrocs 5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs 5mg Tablet', 'What is Linacrocs 5mg Tablet used for?', 'Linacrocs 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linacrocs 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linacrocs 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15097, 'Linacrocs 5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs 5mg Tablet', 'When should I take Linacrocs 5mg Tablet? What if I miss a dose?', 'Linacrocs 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15098, 'Linacrocs 5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs 5mg Tablet', 'Is Linacrocs 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linacrocs 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15099, 'Linacrocs 5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs 5mg Tablet', 'Is Linacrocs 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linacrocs 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15100, 'Linacrocs 5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs 5mg Tablet', 'For how long I have to take Linacrocs 5mg Tablet? Can I stop the medication?', 'You should keep taking Linacrocs 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15101, 'Linacrocs M 500mg/5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs M 500mg/5mg Tablet', 'Can the use of Linacrocs M 500mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linacrocs M 500mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linacrocs M 500mg/5mg Tablet and immediately consult your doctor.'),
(15102, 'Linacrocs M 500mg/5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs M 500mg/5mg Tablet', 'What are the possible side effects of Linacrocs M 500mg/5mg Tablet?', 'The use of Linacrocs M 500mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15103, 'Linacrocs M 500mg/5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs M 500mg/5mg Tablet', 'Are there any specific conditions in which Linacrocs M 500mg/5mg Tablet should not be taken?', 'The use of Linacrocs M 500mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linacrocs M 500mg/5mg Tablet.'),
(15104, 'Linacrocs M 500mg/5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs M 500mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linacrocs M 500mg/5mg Tablet?', 'No, it is not safe to take Linacrocs M 500mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15105, 'Linacrocs M 500mg/5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs M 500mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linacrocs M 500mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15106, 'Linacrocs M 500mg/5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs M 500mg/5mg Tablet', 'Can the use of Linacrocs M 500mg/5mg Tablet cause hypoglycemia?', 'The use of Linacrocs M 500mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15107, 'Linacrocs M 500mg/5mg Tablet', 'Carecroft Medic Private Limited', 'Linacrocs M 500mg/5mg Tablet', 'Can the use of Linacrocs M 500mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linacrocs M 500mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15108, 'Linact 600mg Tablet', 'Health Care Formulations Pvt Ltd', 'Linact 600mg Tablet', 'Can the use of Linact 600mg Tablet cause diarrhea?', 'Yes, the use of Linact 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15109, 'Linact 600mg Tablet', 'Health Care Formulations Pvt Ltd', 'Linact 600mg Tablet', 'What foods should I avoid while taking Linact 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linact 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(15110, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'Does Linadapa 10mg Tablet cause weight loss?', 'Yes, Linadapa 10mg Tablet may cause weight loss in some patients. However, it is an uncommon side effect. If you experience sudden weight gain or have any concerns regarding your weight, discuss it with your doctor.'),
(15111, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'What are the side effects of Linadapa 10mg Tablet?', 'The use of Linadapa 10mg Tablet may cause symptoms such as stuffy or runny nose, sore throat, vaginal yeast infections, and yeast infections of the penis. In addition to that, one may experience frequent urination throughout the day or at night, and changes in quantity of urine.'),
(15112, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'What is Linadapa 10mg Tablet used for?', 'Linadapa 10mg Tablet is used to lower blood glucose levels in type 2 diabetes. In type 2 diabetes, the body is not able to use the produced insulin properly. This leads to an increase in the levels of sugar in your blood. Linadapa 10mg Tablet works by removing excess sugar from your body via your urine. In addition to that, it can also help prevent heart disease.'),
(15113, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'Is Linadapa 10mg Tablet safe to use?', 'Yes, Linadapa 10mg Tablet is safe when used as directed by the doctor. However, it may show some side effects. For best results, it should be used in the correct dose and at the same time each day.'),
(15114, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'Can I stop taking Linadapa 10mg Tablet?', 'No, do not stop taking Linadapa 10mg Tablet without talking to your doctor first. Sudden discontinuation of medicine may make your diabetes worse. Inform your doctor if your symptoms bother you or if  there is no considerable improvement in your condition. The doctor may suggest some other medicine which could be more effective in treating your diabetes.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15115, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'Who should not take Linadapa 10mg Tablet?', 'Patients allergic to Linadapa 10mg Tablet should avoid using this medicine. Also, it is highly recommended that patients who are on dialysis or have severe kidney problems should not use Linadapa 10mg Tablet.'),
(15116, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'Can I take Linadapa 10mg Tablet before surgery?', 'Inform your doctor that you are taking Linadapa 10mg Tablet before going for the surgery. The doctor may ask you to stop taking your Linadapa 10mg Tablet tablets before your operation. This is done because there is a risk of developing diabetic ketoacidosis (a serious condition that may develop if high blood sugar is not treated).'),
(15117, 'Linadapa 10mg Tablet', 'Akumentis Healthcare Ltd', 'Linadapa 10mg Tablet', 'Why did my doctor prescribe Linadapa 10mg Tablet along with metformin?', 'For some people, taking metformin alone can effectively lower blood sugar levels. But, evidence suggests that adding Linadapa 10mg Tablet to metformin therapy may provide better control over the increased blood sugar levels in some people. So, maybe your doctor prescribed the combined use of metformin with Linadapa 10mg Tablet to provide the extra help you need.'),
(15118, 'Linadia 5mg Tablet', 'Ausmed Healthcare', 'Linadia 5mg Tablet', 'What is Linadia 5mg Tablet used for?', 'Linadia 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linadia 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linadia 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15119, 'Linadia 5mg Tablet', 'Ausmed Healthcare', 'Linadia 5mg Tablet', 'When should I take Linadia 5mg Tablet? What if I miss a dose?', 'Linadia 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15120, 'Linadia 5mg Tablet', 'Ausmed Healthcare', 'Linadia 5mg Tablet', 'Is Linadia 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linadia 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15121, 'Linadia 5mg Tablet', 'Ausmed Healthcare', 'Linadia 5mg Tablet', 'Is Linadia 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linadia 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15122, 'Linadia 5mg Tablet', 'Ausmed Healthcare', 'Linadia 5mg Tablet', 'For how long I have to take Linadia 5mg Tablet? Can I stop the medication?', 'You should keep taking Linadia 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15123, 'Lina-DKD 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lina-DKD 5mg Tablet', 'Q. What is Lina-DKD 5mg Tablet used for?', 'Lina-DKD 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Lina-DKD 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Lina-DKD 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15124, 'Lina-DKD 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lina-DKD 5mg Tablet', 'Q. When should I take Lina-DKD 5mg Tablet? What if I miss a dose?', 'Lina-DKD 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15125, 'Lina-DKD 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lina-DKD 5mg Tablet', 'Q. Is Lina-DKD 5mg Tablet bad for kidneys?', 'No, there is no evidence that Lina-DKD 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15126, 'Lina-DKD 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lina-DKD 5mg Tablet', 'Q. Is Lina-DKD 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Lina-DKD 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15127, 'Lina-DKD 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lina-DKD 5mg Tablet', 'Q. For how long I have to take Lina-DKD 5mg Tablet? Can I stop the medication?', 'You should keep taking Lina-DKD 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15128, 'Linadon 5mg Tablet', 'Genetic Pharma', 'Linadon 5mg Tablet', 'What is Linadon 5mg Tablet used for?', 'Linadon 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linadon 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linadon 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15129, 'Linadon 5mg Tablet', 'Genetic Pharma', 'Linadon 5mg Tablet', 'When should I take Linadon 5mg Tablet? What if I miss a dose?', 'Linadon 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15130, 'Linadon 5mg Tablet', 'Genetic Pharma', 'Linadon 5mg Tablet', 'Is Linadon 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linadon 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15131, 'Linadon 5mg Tablet', 'Genetic Pharma', 'Linadon 5mg Tablet', 'Is Linadon 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linadon 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15132, 'Linadon 5mg Tablet', 'Genetic Pharma', 'Linadon 5mg Tablet', 'For how long I have to take Linadon 5mg Tablet? Can I stop the medication?', 'You should keep taking Linadon 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15133, 'Linadon M 1000mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 1000mg/2.5mg Tablet', 'Can the use of Linadon M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linadon M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linadon M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15134, 'Linadon M 1000mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linadon M 1000mg/2.5mg Tablet?', 'The use of Linadon M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15135, 'Linadon M 1000mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linadon M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linadon M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linadon M 1000mg/2.5mg Tablet.'),
(15136, 'Linadon M 1000mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linadon M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linadon M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15137, 'Linadon M 1000mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linadon M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15138, 'Linadon M 1000mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 1000mg/2.5mg Tablet', 'Can the use of Linadon M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linadon M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15139, 'Linadon M 1000mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 1000mg/2.5mg Tablet', 'Can the use of Linadon M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linadon M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15140, 'Linadon M 500mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 500mg/2.5mg Tablet', 'Can the use of Linadon M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linadon M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linadon M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15141, 'Linadon M 500mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 500mg/2.5mg Tablet', 'What are the possible side effects of Linadon M 500mg/2.5mg Tablet?', 'The use of Linadon M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15142, 'Linadon M 500mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linadon M 500mg/2.5mg Tablet should not be taken?', 'The use of Linadon M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linadon M 500mg/2.5mg Tablet.'),
(15143, 'Linadon M 500mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linadon M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linadon M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15144, 'Linadon M 500mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linadon M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15145, 'Linadon M 500mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 500mg/2.5mg Tablet', 'Can the use of Linadon M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linadon M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15146, 'Linadon M 500mg/2.5mg Tablet', 'Genetic Pharma', 'Linadon M 500mg/2.5mg Tablet', 'Can the use of Linadon M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linadon M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15147, 'Linadox 10mg/10mg/2.5mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Linadox 10mg/10mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Linadox 10mg/10mg/2.5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it at as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15148, 'Linadox 10mg/10mg/2.5mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Linadox 10mg/10mg/2.5mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Linadox 10mg/10mg/2.5mg Tablet can cause increased side effects. If you are experiencing increased severity of nausea or vomiting, which is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(15149, 'Linadox 10mg/10mg/2.5mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Linadox 10mg/10mg/2.5mg Tablet', 'Can the use of Linadox 10mg/10mg/2.5mg Tablet cause drowsiness or sleepiness?', 'Yes, one of the common side effects of Linadox 10mg/10mg/2.5mg Tablet is drowsiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention. Do not drink alcohol or take any medicines that may depress the central nervous system like cough and cold medicines, certain pain medicines, and medicines that help you sleep, while you are taking Linadox 10mg/10mg/2.5mg Tablet. Severe drowsiness can happen or it can become worse and cause falls or accidents.'),
(15150, 'Linadox 10mg/10mg/2.5mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Linadox 10mg/10mg/2.5mg Tablet', 'Can the use of Linadox 10mg/10mg/2.5mg Tablet cause dry mouth?', 'Yes, the use of Linadox 10mg/10mg/2.5mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(15151, 'Linadox 10mg/10mg/2.5mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Linadox 10mg/10mg/2.5mg Tablet', 'Can a pregnant woman take Linadox 10mg/10mg/2.5mg Tablet?', 'Yes, it is safe to take Linadox 10mg/10mg/2.5mg Tablet in pregnant women. In fact, this medicine is used to treat nausea and vomiting in pregnant women. It is mainly recommended to those women whose symptoms have not improved after changing their diet or using other non-medicine treatments.'),
(15152, 'Linafit 0.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit 0.5mg Tablet', 'Q. Is Linafit 0.5mg Tablet a sleeping pill?', 'Linafit 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(15153, 'Linafit 0.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit 0.5mg Tablet', 'Q. Does Linafit 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Linafit 0.5mg Tablet?', 'Yes, Linafit 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Linafit 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(15154, 'Linafit 0.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit 0.5mg Tablet', 'Q. For how long should I take Linafit 0.5mg Tablet?', 'The duration of treatment with Linafit 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(15155, 'Linafit 0.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit 0.5mg Tablet', 'Q. Is it safe to take Linafit 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Linafit 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Linafit 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(15156, 'Linafit 0.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit 0.5mg Tablet', 'Q. Is Linafit 0.5mg Tablet addictive?', 'People taking Linafit 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Linafit 0.5mg Tablet. Therefore, Linafit 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(15157, 'Linafit 0.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit 0.5mg Tablet', 'Q. Can I stop taking Linafit 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Linafit 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(15158, 'Linafit 0.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit 0.5mg Tablet', 'Q. Are there any foods we need to avoid while taking Linafit 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Linafit 0.5mg Tablet. This is because caffeine stimulates your brain and Linafit 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Linafit 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Linafit 0.5mg Tablet.'),
(15159, 'Linafit M 500mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M 500mg/2.5mg Tablet', 'Can the use of Linafit M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linafit M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linafit M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15160, 'Linafit M 500mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M 500mg/2.5mg Tablet', 'What are the possible side effects of Linafit M 500mg/2.5mg Tablet?', 'The use of Linafit M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15161, 'Linafit M 500mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linafit M 500mg/2.5mg Tablet should not be taken?', 'The use of Linafit M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linafit M 500mg/2.5mg Tablet.'),
(15162, 'Linafit M 500mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linafit M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linafit M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15163, 'Linafit M 500mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linafit M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15164, 'Linafit M 500mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M 500mg/2.5mg Tablet', 'Can the use of Linafit M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linafit M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15165, 'Linafit M 500mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M 500mg/2.5mg Tablet', 'Can the use of Linafit M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linafit M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15166, 'Linafit M Forte 1000mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M Forte 1000mg/2.5mg Tablet', 'Can the use of Linafit M Forte 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linafit M Forte 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linafit M Forte 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15167, 'Linafit M Forte 1000mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M Forte 1000mg/2.5mg Tablet', 'What are the possible side effects of Linafit M Forte 1000mg/2.5mg Tablet?', 'The use of Linafit M Forte 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15168, 'Linafit M Forte 1000mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M Forte 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linafit M Forte 1000mg/2.5mg Tablet should not be taken?', 'The use of Linafit M Forte 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linafit M Forte 1000mg/2.5mg Tablet.'),
(15169, 'Linafit M Forte 1000mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M Forte 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linafit M Forte 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linafit M Forte 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15170, 'Linafit M Forte 1000mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M Forte 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linafit M Forte 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15171, 'Linafit M Forte 1000mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M Forte 1000mg/2.5mg Tablet', 'Can the use of Linafit M Forte 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linafit M Forte 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15172, 'Linafit M Forte 1000mg/2.5mg Tablet', 'Clamed Healthcare Pvt. Ltd.', 'Linafit M Forte 1000mg/2.5mg Tablet', 'Can the use of Linafit M Forte 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linafit M Forte 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15173, 'Linaford M 2.5 Forte Tablet', 'Leeford Healthcare Ltd', 'Linaford M 2.5 Forte Tablet', 'Can the use of Linaford M 2.5 Forte Tablet cause lactic acidosis?', 'Yes, the use of Linaford M 2.5 Forte Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaford M 2.5 Forte Tablet and immediately consult your doctor.'),
(15174, 'Linaford M 2.5 Forte Tablet', 'Leeford Healthcare Ltd', 'Linaford M 2.5 Forte Tablet', 'What are the possible side effects of Linaford M 2.5 Forte Tablet?', 'The use of Linaford M 2.5 Forte Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15175, 'Linaford M 2.5 Forte Tablet', 'Leeford Healthcare Ltd', 'Linaford M 2.5 Forte Tablet', 'Are there any specific conditions in which Linaford M 2.5 Forte Tablet should not be taken?', 'The use of Linaford M 2.5 Forte Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaford M 2.5 Forte Tablet.'),
(15176, 'Linaford M 2.5 Forte Tablet', 'Leeford Healthcare Ltd', 'Linaford M 2.5 Forte Tablet', 'Is it safe to take alcohol while I am also taking Linaford M 2.5 Forte Tablet?', 'No, it is not safe to take Linaford M 2.5 Forte Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15177, 'Linaford M 2.5 Forte Tablet', 'Leeford Healthcare Ltd', 'Linaford M 2.5 Forte Tablet', 'What are the instructions for the storage and disposal of Linaford M 2.5 Forte Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15178, 'Linaford M 2.5 Forte Tablet', 'Leeford Healthcare Ltd', 'Linaford M 2.5 Forte Tablet', 'Can the use of Linaford M 2.5 Forte Tablet cause hypoglycemia?', 'The use of Linaford M 2.5 Forte Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15179, 'Linaford M 2.5 Forte Tablet', 'Leeford Healthcare Ltd', 'Linaford M 2.5 Forte Tablet', 'Can the use of Linaford M 2.5 Forte Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaford M 2.5 Forte Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15180, 'Linage 600mg Tablet', 'Allenge India', 'Linage 600mg Tablet', 'Can the use of Linage 600mg Tablet cause diarrhea?', 'Yes, the use of Linage 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15181, 'Linage 600mg Tablet', 'Allenge India', 'Linage 600mg Tablet', 'What foods should I avoid while taking Linage 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linage 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(15182, 'Linagen 5 Tablet', 'Acugen Lifesciences Pvt Ltd', 'Linagen 5 Tablet', 'What is Linagen 5 Tablet used for?', 'Linagen 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linagen 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linagen 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15183, 'Linagen 5 Tablet', 'Acugen Lifesciences Pvt Ltd', 'Linagen 5 Tablet', 'When should I take Linagen 5 Tablet? What if I miss a dose?', 'Linagen 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15184, 'Linagen 5 Tablet', 'Acugen Lifesciences Pvt Ltd', 'Linagen 5 Tablet', 'Is Linagen 5 Tablet bad for kidneys?', 'No, there is no evidence that Linagen 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15185, 'Linagen 5 Tablet', 'Acugen Lifesciences Pvt Ltd', 'Linagen 5 Tablet', 'Is Linagen 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linagen 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15186, 'Linagen 5 Tablet', 'Acugen Lifesciences Pvt Ltd', 'Linagen 5 Tablet', 'For how long I have to take Linagen 5 Tablet? Can I stop the medication?', 'You should keep taking Linagen 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15187, 'Linaget 5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget 5mg Tablet', 'What is Linaget 5mg Tablet used for?', 'Linaget 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaget 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaget 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15188, 'Linaget 5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget 5mg Tablet', 'When should I take Linaget 5mg Tablet? What if I miss a dose?', 'Linaget 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15189, 'Linaget 5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget 5mg Tablet', 'Is Linaget 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaget 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15190, 'Linaget 5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget 5mg Tablet', 'Is Linaget 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaget 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15191, 'Linaget 5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget 5mg Tablet', 'For how long I have to take Linaget 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaget 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15192, 'Linaget M 1000mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 1000mg/2.5mg Tablet', 'Q. Can the use of Linaget M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaget M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaget M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15193, 'Linaget M 1000mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 1000mg/2.5mg Tablet', 'Q. What are the possible side effects of Linaget M 1000mg/2.5mg Tablet?', 'The use of Linaget M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15194, 'Linaget M 1000mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 1000mg/2.5mg Tablet', 'Q. Are there any specific conditions in which Linaget M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linaget M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaget M 1000mg/2.5mg Tablet.'),
(15195, 'Linaget M 1000mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 1000mg/2.5mg Tablet', 'Q. Is it safe to take alcohol while I am also taking Linaget M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linaget M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15196, 'Linaget M 1000mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 1000mg/2.5mg Tablet', 'Q. What are the instructions for the storage and disposal of Linaget M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15197, 'Linaget M 1000mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 1000mg/2.5mg Tablet', 'Q. Can the use of Linaget M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaget M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15198, 'Linaget M 1000mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 1000mg/2.5mg Tablet', 'Q. Can the use of Linaget M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaget M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15199, 'Linaget M 500mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/2.5mg Tablet', 'Can the use of Linaget M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaget M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaget M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15200, 'Linaget M 500mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/2.5mg Tablet', 'What are the possible side effects of Linaget M 500mg/2.5mg Tablet?', 'The use of Linaget M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15201, 'Linaget M 500mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linaget M 500mg/2.5mg Tablet should not be taken?', 'The use of Linaget M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaget M 500mg/2.5mg Tablet.'),
(15202, 'Linaget M 500mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaget M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaget M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15203, 'Linaget M 500mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaget M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15204, 'Linaget M 500mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/2.5mg Tablet', 'Can the use of Linaget M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaget M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15205, 'Linaget M 500mg/2.5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/2.5mg Tablet', 'Can the use of Linaget M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaget M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15206, 'Linaget M 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/5mg Tablet', 'Can the use of Linaget M 500mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaget M 500mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaget M 500mg/5mg Tablet and immediately consult your doctor.'),
(15207, 'Linaget M 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/5mg Tablet', 'What are the possible side effects of Linaget M 500mg/5mg Tablet?', 'The use of Linaget M 500mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15208, 'Linaget M 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/5mg Tablet', 'Are there any specific conditions in which Linaget M 500mg/5mg Tablet should not be taken?', 'The use of Linaget M 500mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaget M 500mg/5mg Tablet.'),
(15209, 'Linaget M 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaget M 500mg/5mg Tablet?', 'No, it is not safe to take Linaget M 500mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15210, 'Linaget M 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linaget M 500mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15211, 'Linaget M 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/5mg Tablet', 'Can the use of Linaget M 500mg/5mg Tablet cause hypoglycemia?', 'The use of Linaget M 500mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15212, 'Linaget M 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M 500mg/5mg Tablet', 'Can the use of Linaget M 500mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaget M 500mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15213, 'Linaget M OD 1000mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 1000mg/5mg Tablet', 'Can the use of Linaget M OD 1000mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaget M OD 1000mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaget M OD 1000mg/5mg Tablet and immediately consult your doctor.'),
(15214, 'Linaget M OD 1000mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 1000mg/5mg Tablet', 'What are the possible side effects of Linaget M OD 1000mg/5mg Tablet?', 'The use of Linaget M OD 1000mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15215, 'Linaget M OD 1000mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 1000mg/5mg Tablet', 'Are there any specific conditions in which Linaget M OD 1000mg/5mg Tablet should not be taken?', 'The use of Linaget M OD 1000mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaget M OD 1000mg/5mg Tablet.'),
(15216, 'Linaget M OD 1000mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 1000mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaget M OD 1000mg/5mg Tablet?', 'No, it is not safe to take Linaget M OD 1000mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15217, 'Linaget M OD 1000mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 1000mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linaget M OD 1000mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15218, 'Linaget M OD 1000mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 1000mg/5mg Tablet', 'Can the use of Linaget M OD 1000mg/5mg Tablet cause hypoglycemia?', 'The use of Linaget M OD 1000mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15219, 'Linaget M OD 1000mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 1000mg/5mg Tablet', 'Can the use of Linaget M OD 1000mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaget M OD 1000mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15220, 'Linaget M OD 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 500mg/5mg Tablet', 'Can the use of Linaget M OD 500mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaget M OD 500mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaget M OD 500mg/5mg Tablet and immediately consult your doctor.'),
(15221, 'Linaget M OD 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 500mg/5mg Tablet', 'What are the possible side effects of Linaget M OD 500mg/5mg Tablet?', 'The use of Linaget M OD 500mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15222, 'Linaget M OD 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 500mg/5mg Tablet', 'Are there any specific conditions in which Linaget M OD 500mg/5mg Tablet should not be taken?', 'The use of Linaget M OD 500mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaget M OD 500mg/5mg Tablet.'),
(15223, 'Linaget M OD 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 500mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaget M OD 500mg/5mg Tablet?', 'No, it is not safe to take Linaget M OD 500mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15224, 'Linaget M OD 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 500mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linaget M OD 500mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15225, 'Linaget M OD 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 500mg/5mg Tablet', 'Can the use of Linaget M OD 500mg/5mg Tablet cause hypoglycemia?', 'The use of Linaget M OD 500mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15226, 'Linaget M OD 500mg/5mg Tablet', 'Dios Lifesciences Pvt Ltd', 'Linaget M OD 500mg/5mg Tablet', 'Can the use of Linaget M OD 500mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaget M OD 500mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15227, 'Linaglip 5mg Tablet', 'Aristo Pharmaceuticals Pvt Ltd', 'Linaglip 5mg Tablet', 'What is Linaglip 5mg Tablet used for?', 'Linaglip 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaglip 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaglip 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15228, 'Linaglip 5mg Tablet', 'Aristo Pharmaceuticals Pvt Ltd', 'Linaglip 5mg Tablet', 'When should I take Linaglip 5mg Tablet? What if I miss a dose?', 'Linaglip 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15229, 'Linaglip 5mg Tablet', 'Aristo Pharmaceuticals Pvt Ltd', 'Linaglip 5mg Tablet', 'Is Linaglip 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaglip 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15230, 'Linaglip 5mg Tablet', 'Aristo Pharmaceuticals Pvt Ltd', 'Linaglip 5mg Tablet', 'Is Linaglip 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaglip 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15231, 'Linaglip 5mg Tablet', 'Aristo Pharmaceuticals Pvt Ltd', 'Linaglip 5mg Tablet', 'For how long I have to take Linaglip 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaglip 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15232, 'Linaglite 5mg Tablet', 'Camrut Pharma', 'Linaglite 5mg Tablet', 'Q. What is Linaglite 5mg Tablet used for?', 'Linaglite 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaglite 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaglite 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15233, 'Linaglite 5mg Tablet', 'Camrut Pharma', 'Linaglite 5mg Tablet', 'Q. When should I take Linaglite 5mg Tablet? What if I miss a dose?', 'Linaglite 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15234, 'Linaglite 5mg Tablet', 'Camrut Pharma', 'Linaglite 5mg Tablet', 'Q. Is Linaglite 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaglite 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15235, 'Linaglite 5mg Tablet', 'Camrut Pharma', 'Linaglite 5mg Tablet', 'Q. Is Linaglite 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaglite 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15236, 'Linaglite 5mg Tablet', 'Camrut Pharma', 'Linaglite 5mg Tablet', 'Q. For how long I have to take Linaglite 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaglite 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15237, 'Linaglite M 1000mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 1000mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaglite M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaglite M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15238, 'Linaglite M 1000mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 1000mg/2.5mg Tablet', 'Q. What are the possible side effects of Linaglite M 1000mg/2.5mg Tablet?', 'The use of Linaglite M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15239, 'Linaglite M 1000mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 1000mg/2.5mg Tablet', 'Q. Are there any specific conditions in which Linaglite M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linaglite M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaglite M 1000mg/2.5mg Tablet.'),
(15240, 'Linaglite M 1000mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 1000mg/2.5mg Tablet', 'Q. Is it safe to take alcohol while I am also taking Linaglite M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linaglite M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15241, 'Linaglite M 1000mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 1000mg/2.5mg Tablet', 'Q. What are the instructions for the storage and disposal of Linaglite M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15242, 'Linaglite M 1000mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 1000mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaglite M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15243, 'Linaglite M 1000mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 1000mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaglite M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15244, 'Linaglite M 500mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 500mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaglite M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaglite M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15245, 'Linaglite M 500mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 500mg/2.5mg Tablet', 'Q. What are the possible side effects of Linaglite M 500mg/2.5mg Tablet?', 'The use of Linaglite M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15246, 'Linaglite M 500mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 500mg/2.5mg Tablet', 'Q. Are there any specific conditions in which Linaglite M 500mg/2.5mg Tablet should not be taken?', 'The use of Linaglite M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaglite M 500mg/2.5mg Tablet.'),
(15247, 'Linaglite M 500mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 500mg/2.5mg Tablet', 'Q. Is it safe to take alcohol while I am also taking Linaglite M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaglite M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15248, 'Linaglite M 500mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 500mg/2.5mg Tablet', 'Q. What are the instructions for the storage and disposal of Linaglite M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15249, 'Linaglite M 500mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 500mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaglite M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15250, 'Linaglite M 500mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 500mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaglite M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15251, 'Linaglite M 850mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 850mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 850mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaglite M 850mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaglite M 850mg/2.5mg Tablet and immediately consult your doctor.'),
(15252, 'Linaglite M 850mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 850mg/2.5mg Tablet', 'Q. What are the possible side effects of Linaglite M 850mg/2.5mg Tablet?', 'The use of Linaglite M 850mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15253, 'Linaglite M 850mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 850mg/2.5mg Tablet', 'Q. Are there any specific conditions in which Linaglite M 850mg/2.5mg Tablet should not be taken?', 'The use of Linaglite M 850mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaglite M 850mg/2.5mg Tablet.'),
(15254, 'Linaglite M 850mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 850mg/2.5mg Tablet', 'Q. Is it safe to take alcohol while I am also taking Linaglite M 850mg/2.5mg Tablet?', 'No, it is not safe to take Linaglite M 850mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15255, 'Linaglite M 850mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 850mg/2.5mg Tablet', 'Q. What are the instructions for the storage and disposal of Linaglite M 850mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15256, 'Linaglite M 850mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 850mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 850mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaglite M 850mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15257, 'Linaglite M 850mg/2.5mg Tablet', 'Camrut Pharma', 'Linaglite M 850mg/2.5mg Tablet', 'Q. Can the use of Linaglite M 850mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaglite M 850mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15258, 'Linaglivac M 500 Tablet', 'Prevego Healthcare & Research Private Limited', 'Linaglivac M 500 Tablet', 'Can the use of Linaglivac M 500 Tablet cause lactic acidosis?', 'Yes, the use of Linaglivac M 500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaglivac M 500 Tablet and immediately consult your doctor.'),
(15259, 'Linaglivac M 500 Tablet', 'Prevego Healthcare & Research Private Limited', 'Linaglivac M 500 Tablet', 'What are the possible side effects of Linaglivac M 500 Tablet?', 'The use of Linaglivac M 500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15260, 'Linaglivac M 500 Tablet', 'Prevego Healthcare & Research Private Limited', 'Linaglivac M 500 Tablet', 'Are there any specific conditions in which Linaglivac M 500 Tablet should not be taken?', 'The use of Linaglivac M 500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaglivac M 500 Tablet.'),
(15261, 'Linaglivac M 500 Tablet', 'Prevego Healthcare & Research Private Limited', 'Linaglivac M 500 Tablet', 'Is it safe to take alcohol while I am also taking Linaglivac M 500 Tablet?', 'No, it is not safe to take Linaglivac M 500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15262, 'Linaglivac M 500 Tablet', 'Prevego Healthcare & Research Private Limited', 'Linaglivac M 500 Tablet', 'What are the instructions for the storage and disposal of Linaglivac M 500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15263, 'Linaglivac M 500 Tablet', 'Prevego Healthcare & Research Private Limited', 'Linaglivac M 500 Tablet', 'Can the use of Linaglivac M 500 Tablet cause hypoglycemia?', 'The use of Linaglivac M 500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15264, 'Linaglivac M 500 Tablet', 'Prevego Healthcare & Research Private Limited', 'Linaglivac M 500 Tablet', 'Can the use of Linaglivac M 500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaglivac M 500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15265, 'Linaglu 5 Tablet', 'Solasta Lifesciences Pvt.Ltd.', 'Linaglu 5 Tablet', 'What is Linaglu 5 Tablet used for?', 'Linaglu 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaglu 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaglu 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15266, 'Linaglu 5 Tablet', 'Solasta Lifesciences Pvt.Ltd.', 'Linaglu 5 Tablet', 'When should I take Linaglu 5 Tablet? What if I miss a dose?', 'Linaglu 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15267, 'Linaglu 5 Tablet', 'Solasta Lifesciences Pvt.Ltd.', 'Linaglu 5 Tablet', 'Is Linaglu 5 Tablet bad for kidneys?', 'No, there is no evidence that Linaglu 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15268, 'Linaglu 5 Tablet', 'Solasta Lifesciences Pvt.Ltd.', 'Linaglu 5 Tablet', 'Is Linaglu 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaglu 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15269, 'Linaglu 5 Tablet', 'Solasta Lifesciences Pvt.Ltd.', 'Linaglu 5 Tablet', 'For how long I have to take Linaglu 5 Tablet? Can I stop the medication?', 'You should keep taking Linaglu 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15270, 'Linagreat 5mg Tablet', 'Sanz Pharmaceuticals Private Limited', 'Linagreat 5mg Tablet', 'What is Linagreat 5mg Tablet used for?', 'Linagreat 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linagreat 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linagreat 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15271, 'Linagreat 5mg Tablet', 'Sanz Pharmaceuticals Private Limited', 'Linagreat 5mg Tablet', 'When should I take Linagreat 5mg Tablet? What if I miss a dose?', 'Linagreat 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15272, 'Linagreat 5mg Tablet', 'Sanz Pharmaceuticals Private Limited', 'Linagreat 5mg Tablet', 'Is Linagreat 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linagreat 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15273, 'Linagreat 5mg Tablet', 'Sanz Pharmaceuticals Private Limited', 'Linagreat 5mg Tablet', 'Is Linagreat 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linagreat 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15274, 'Linagreat 5mg Tablet', 'Sanz Pharmaceuticals Private Limited', 'Linagreat 5mg Tablet', 'For how long I have to take Linagreat 5mg Tablet? Can I stop the medication?', 'You should keep taking Linagreat 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15275, 'Linahenz 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz 5mg Tablet', 'What is Linahenz 5mg Tablet used for?', 'Linahenz 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linahenz 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linahenz 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15276, 'Linahenz 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz 5mg Tablet', 'When should I take Linahenz 5mg Tablet? What if I miss a dose?', 'Linahenz 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15277, 'Linahenz 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz 5mg Tablet', 'Is Linahenz 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linahenz 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15278, 'Linahenz 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz 5mg Tablet', 'Is Linahenz 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linahenz 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15279, 'Linahenz 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz 5mg Tablet', 'For how long I have to take Linahenz 5mg Tablet? Can I stop the medication?', 'You should keep taking Linahenz 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15280, 'Linahenz M 1000mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 1000mg/2.5mg Tablet', 'Can the use of Linahenz M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linahenz M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linahenz M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15281, 'Linahenz M 1000mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linahenz M 1000mg/2.5mg Tablet?', 'The use of Linahenz M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15282, 'Linahenz M 1000mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linahenz M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linahenz M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linahenz M 1000mg/2.5mg Tablet.'),
(15283, 'Linahenz M 1000mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linahenz M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linahenz M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15284, 'Linahenz M 1000mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linahenz M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15285, 'Linahenz M 1000mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 1000mg/2.5mg Tablet', 'Can the use of Linahenz M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linahenz M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15286, 'Linahenz M 1000mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 1000mg/2.5mg Tablet', 'Can the use of Linahenz M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linahenz M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15287, 'Linahenz M 500mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/2.5mg Tablet', 'Can the use of Linahenz M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linahenz M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linahenz M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15288, 'Linahenz M 500mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/2.5mg Tablet', 'What are the possible side effects of Linahenz M 500mg/2.5mg Tablet?', 'The use of Linahenz M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15289, 'Linahenz M 500mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linahenz M 500mg/2.5mg Tablet should not be taken?', 'The use of Linahenz M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linahenz M 500mg/2.5mg Tablet.'),
(15290, 'Linahenz M 500mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linahenz M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linahenz M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15291, 'Linahenz M 500mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linahenz M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15292, 'Linahenz M 500mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/2.5mg Tablet', 'Can the use of Linahenz M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linahenz M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15293, 'Linahenz M 500mg/2.5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/2.5mg Tablet', 'Can the use of Linahenz M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linahenz M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15294, 'Linahenz M 500mg/5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/5mg Tablet', 'Can the use of Linahenz M 500mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linahenz M 500mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linahenz M 500mg/5mg Tablet and immediately consult your doctor.'),
(15295, 'Linahenz M 500mg/5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/5mg Tablet', 'What are the possible side effects of Linahenz M 500mg/5mg Tablet?', 'The use of Linahenz M 500mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15296, 'Linahenz M 500mg/5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/5mg Tablet', 'Are there any specific conditions in which Linahenz M 500mg/5mg Tablet should not be taken?', 'The use of Linahenz M 500mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linahenz M 500mg/5mg Tablet.'),
(15297, 'Linahenz M 500mg/5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linahenz M 500mg/5mg Tablet?', 'No, it is not safe to take Linahenz M 500mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15298, 'Linahenz M 500mg/5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linahenz M 500mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15299, 'Linahenz M 500mg/5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/5mg Tablet', 'Can the use of Linahenz M 500mg/5mg Tablet cause hypoglycemia?', 'The use of Linahenz M 500mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15300, 'Linahenz M 500mg/5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Linahenz M 500mg/5mg Tablet', 'Can the use of Linahenz M 500mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linahenz M 500mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15301, 'Linahenz M OD 1000mg/5mg Tablet ER', 'La Renon Healthcare Pvt Ltd', 'Linahenz M OD 1000mg/5mg Tablet ER', 'Can the use of Linahenz M OD 1000mg/5mg Tablet ER cause lactic acidosis?', 'Yes, the use of Linahenz M OD 1000mg/5mg Tablet ER can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linahenz M OD 1000mg/5mg Tablet ER and immediately consult your doctor.'),
(15302, 'Linahenz M OD 1000mg/5mg Tablet ER', 'La Renon Healthcare Pvt Ltd', 'Linahenz M OD 1000mg/5mg Tablet ER', 'What are the possible side effects of Linahenz M OD 1000mg/5mg Tablet ER?', 'The use of Linahenz M OD 1000mg/5mg Tablet ER may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15303, 'Linahenz M OD 1000mg/5mg Tablet ER', 'La Renon Healthcare Pvt Ltd', 'Linahenz M OD 1000mg/5mg Tablet ER', 'Are there any specific conditions in which Linahenz M OD 1000mg/5mg Tablet ER should not be taken?', 'The use of Linahenz M OD 1000mg/5mg Tablet ER should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linahenz M OD 1000mg/5mg Tablet ER.'),
(15304, 'Linahenz M OD 1000mg/5mg Tablet ER', 'La Renon Healthcare Pvt Ltd', 'Linahenz M OD 1000mg/5mg Tablet ER', 'Is it safe to take alcohol while I am also taking Linahenz M OD 1000mg/5mg Tablet ER?', 'No, it is not safe to take Linahenz M OD 1000mg/5mg Tablet ER along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15305, 'Linahenz M OD 1000mg/5mg Tablet ER', 'La Renon Healthcare Pvt Ltd', 'Linahenz M OD 1000mg/5mg Tablet ER', 'What are the instructions for the storage and disposal of Linahenz M OD 1000mg/5mg Tablet ER?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15306, 'Linahenz M OD 1000mg/5mg Tablet ER', 'La Renon Healthcare Pvt Ltd', 'Linahenz M OD 1000mg/5mg Tablet ER', 'Can the use of Linahenz M OD 1000mg/5mg Tablet ER cause hypoglycemia?', 'The use of Linahenz M OD 1000mg/5mg Tablet ER does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15307, 'Linahenz M OD 1000mg/5mg Tablet ER', 'La Renon Healthcare Pvt Ltd', 'Linahenz M OD 1000mg/5mg Tablet ER', 'Can the use of Linahenz M OD 1000mg/5mg Tablet ER lead to vitamin B12 deficiency?', 'Yes, long-term use of Linahenz M OD 1000mg/5mg Tablet ER can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15308, 'Linain 5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain 5mg Tablet', 'What is Linain 5mg Tablet used for?', 'Linain 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linain 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linain 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15309, 'Linain 5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain 5mg Tablet', 'When should I take Linain 5mg Tablet? What if I miss a dose?', 'Linain 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15310, 'Linain 5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain 5mg Tablet', 'Is Linain 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linain 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15311, 'Linain 5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain 5mg Tablet', 'Is Linain 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linain 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15312, 'Linain 5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain 5mg Tablet', 'For how long I have to take Linain 5mg Tablet? Can I stop the medication?', 'You should keep taking Linain 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15313, 'Linain M 500mg/2.5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain M 500mg/2.5mg Tablet', 'Can the use of Linain M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linain M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linain M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15314, 'Linain M 500mg/2.5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain M 500mg/2.5mg Tablet', 'What are the possible side effects of Linain M 500mg/2.5mg Tablet?', 'The use of Linain M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15315, 'Linain M 500mg/2.5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linain M 500mg/2.5mg Tablet should not be taken?', 'The use of Linain M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linain M 500mg/2.5mg Tablet.'),
(15316, 'Linain M 500mg/2.5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linain M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linain M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15317, 'Linain M 500mg/2.5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linain M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15318, 'Linain M 500mg/2.5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain M 500mg/2.5mg Tablet', 'Can the use of Linain M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linain M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15319, 'Linain M 500mg/2.5mg Tablet', 'Medicure Life Sciences India Pvt Ltd', 'Linain M 500mg/2.5mg Tablet', 'Can the use of Linain M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linain M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15320, 'Linak 600mg Tablet', 'Nakularch Meditech Pvt. Ltd.', 'Linak 600mg Tablet', 'Can the use of Linak 600mg Tablet cause diarrhea?', 'Yes, the use of Linak 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15321, 'Linak 600mg Tablet', 'Nakularch Meditech Pvt. Ltd.', 'Linak 600mg Tablet', 'What foods should I avoid while taking Linak 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linak 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(15322, 'Linalcea M 500mg/2.5mg Tablet', 'Alcea Biotech Pvt Ltd', 'Linalcea M 500mg/2.5mg Tablet', 'Can the use of Linalcea M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linalcea M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linalcea M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15323, 'Linalcea M 500mg/2.5mg Tablet', 'Alcea Biotech Pvt Ltd', 'Linalcea M 500mg/2.5mg Tablet', 'What are the possible side effects of Linalcea M 500mg/2.5mg Tablet?', 'The use of Linalcea M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15324, 'Linalcea M 500mg/2.5mg Tablet', 'Alcea Biotech Pvt Ltd', 'Linalcea M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linalcea M 500mg/2.5mg Tablet should not be taken?', 'The use of Linalcea M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linalcea M 500mg/2.5mg Tablet.'),
(15325, 'Linalcea M 500mg/2.5mg Tablet', 'Alcea Biotech Pvt Ltd', 'Linalcea M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linalcea M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linalcea M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15326, 'Linalcea M 500mg/2.5mg Tablet', 'Alcea Biotech Pvt Ltd', 'Linalcea M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linalcea M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15327, 'Linalcea M 500mg/2.5mg Tablet', 'Alcea Biotech Pvt Ltd', 'Linalcea M 500mg/2.5mg Tablet', 'Can the use of Linalcea M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linalcea M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15328, 'Linalcea M 500mg/2.5mg Tablet', 'Alcea Biotech Pvt Ltd', 'Linalcea M 500mg/2.5mg Tablet', 'Can the use of Linalcea M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linalcea M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15329, 'Linalent Tablet', 'Talent India ', 'Linalent Tablet', 'What is Linalent Tablet used for?', 'Linalent Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linalent Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linalent Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15330, 'Linalent Tablet', 'Talent India ', 'Linalent Tablet', 'When should I take Linalent Tablet? What if I miss a dose?', 'Linalent Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15331, 'Linalent Tablet', 'Talent India ', 'Linalent Tablet', 'Is Linalent Tablet bad for kidneys?', 'No, there is no evidence that Linalent Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15332, 'Linalent Tablet', 'Talent India ', 'Linalent Tablet', 'Is Linalent Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linalent Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15333, 'Linalent Tablet', 'Talent India ', 'Linalent Tablet', 'For how long I have to take Linalent Tablet? Can I stop the medication?', 'You should keep taking Linalent Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15334, 'Linalent-M 2.5+500 Tablet', 'Talent India ', 'Linalent-M 2.5+500 Tablet', 'Can the use of Linalent-M 2.5+500 Tablet cause lactic acidosis?', 'Yes, the use of Linalent-M 2.5+500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linalent-M 2.5+500 Tablet and immediately consult your doctor.'),
(15335, 'Linalent-M 2.5+500 Tablet', 'Talent India ', 'Linalent-M 2.5+500 Tablet', 'What are the possible side effects of Linalent-M 2.5+500 Tablet?', 'The use of Linalent-M 2.5+500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15336, 'Linalent-M 2.5+500 Tablet', 'Talent India ', 'Linalent-M 2.5+500 Tablet', 'Are there any specific conditions in which Linalent-M 2.5+500 Tablet should not be taken?', 'The use of Linalent-M 2.5+500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linalent-M 2.5+500 Tablet.'),
(15337, 'Linalent-M 2.5+500 Tablet', 'Talent India ', 'Linalent-M 2.5+500 Tablet', 'Is it safe to take alcohol while I am also taking Linalent-M 2.5+500 Tablet?', 'No, it is not safe to take Linalent-M 2.5+500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15338, 'Linalent-M 2.5+500 Tablet', 'Talent India ', 'Linalent-M 2.5+500 Tablet', 'What are the instructions for the storage and disposal of Linalent-M 2.5+500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15339, 'Linalent-M 2.5+500 Tablet', 'Talent India ', 'Linalent-M 2.5+500 Tablet', 'Can the use of Linalent-M 2.5+500 Tablet cause hypoglycemia?', 'The use of Linalent-M 2.5+500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15340, 'Linalent-M 2.5+500 Tablet', 'Talent India ', 'Linalent-M 2.5+500 Tablet', 'Can the use of Linalent-M 2.5+500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linalent-M 2.5+500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15341, 'Linalog Tablet', 'Wonne International', 'Linalog Tablet', 'What is Linalog Tablet?', 'Linalog Tablet is a form of essential amino acid. When given as a therapy, it exerts a metabolic benefit to the body. Linalog Tablet is most commonly used as nutrition therapy or dietary supplements in patients with chronic kidney failure. This medicine prevents the unnecessary increase in urea levels in the blood due to the intake of non-essential amino acids in patients with kidney failure.'),
(15342, 'Linalog Tablet', 'Wonne International', 'Linalog Tablet', 'In what disease conditions can Linalog Tablet be used?', 'Most commonly, Linalog Tablet is used as a nutritional supplement in long-term kidney disease. Linalog Tablet is also given during heart surgery to reduce the chances of complications. It is also reported to be rarely used along with physiotherapy in the treatment of pain in tendons. It may also be used in treating intestinal and stomach disorders, lung diseases, and as an add-on treatment in bacterial infections, but very rarely.'),
(15343, 'Linalog Tablet', 'Wonne International', 'Linalog Tablet', 'Is Linalog Tablet the same as Arginine alpha-ketoglutarate?', 'Linalog Tablet is a combination of various essential amino acids. It is mostly used in the prevention and treatment of damages due to faulty or deficient protein metabolism in chronic kidney disease. On the other hand, Arginine alpha-ketoglutarate is a combination of the essential amino acid arginine and alpha-ketoglutaric acid. Although both Linalog Tablet and Arginine alpha-ketoglutarate are different, their uses are almost similar.'),
(15344, 'Linalog Tablet', 'Wonne International', 'Linalog Tablet', 'How is Linalog Tablet given?', 'The usual advice for an adult is to take the tablets during meals as it helps in proper absorption or usage of the amino acids. The tablets must not be chewed. Linalog Tablet should be given along with dietary protein restriction in cases of kidney failure. The duration of treatment depends on the severity of the kidney problem. Follow your doctor’s advice and if you notice any uneasiness/discomfort or reaction, immediately contact your doctor.'),
(15345, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'Are there any important warnings associated with use of Linam Forte 25mg/10mg Tablet?', 'During the first few months of treatment, Linam Forte 25mg/10mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(15346, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'Can I stop taking Linam Forte 25mg/10mg Tablet when my symptoms are relieved?', 'No, you should continue to take Linam Forte 25mg/10mg Tablet, even if you feel well. If you stop Linam Forte 25mg/10mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(15347, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'How to manage weight gain associated with the use of Linam Forte 25mg/10mg Tablet?', 'There are reports which suggest that the use of Linam Forte 25mg/10mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(15348, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'What are the instructions for storage and disposal of Linam Forte 25mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15349, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'Can the use of Linam Forte 25mg/10mg Tablet cause sleepiness?', 'Yes, Linam Forte 25mg/10mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(15350, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'Can the use of Linam Forte 25mg/10mg Tablet affect my sexual life?', 'The use of Linam Forte 25mg/10mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(15351, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'Can I drink alcohol while taking Linam Forte 25mg/10mg Tablet?', 'No, do not drink alcohol while you are taking Linam Forte 25mg/10mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Linam Forte 25mg/10mg Tablet.'),
(15352, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'Can the use of Linam Forte 25mg/10mg Tablet change the color of urine?', 'Yes, Linam Forte 25mg/10mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Linam Forte 25mg/10mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Linam Forte 25mg/10mg Tablet.'),
(15353, 'Linam Forte 25mg/10mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linam Forte 25mg/10mg Tablet', 'How long does Linam Forte 25mg/10mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Linam Forte 25mg/10mg Tablet, although some people will start to feel better sooner. When taking Linam Forte 25mg/10mg Tablet, it is important to give it time to work.'),
(15354, 'Linamac 10 Capsule', 'Admac Pharma Ltd', 'Linamac 10 Capsule', 'Q. Can I take Linamac 10 Capsule empty stomach?', 'Linamac 10 Capsule may be taken with or without food. Always take it exactly as prescribed by your doctor. Do not crush, cut or chew the capsules. Swallow it whole with water. You should take Linamac 10 Capsule at about the same time on the scheduled days.'),
(15355, 'Linamac 10 Capsule', 'Admac Pharma Ltd', 'Linamac 10 Capsule', 'Q. Can Linamac 10 Capsule be given to patients who are on dialysis?', 'Yes, Linamac 10 Capsule is given to dialysis patients after the dialysis is done. However, the doctor may adjust the dose if needed in patients undergoing.'),
(15356, 'Linamac 10 Capsule', 'Admac Pharma Ltd', 'Linamac 10 Capsule', 'Q. What are the side effects of Linamac 10 Capsule?', 'Linamac 10 Capsule may cause side effects which include diarrhea, constipation, stomach pain, loss of appetite, weight loss, weakness, dizziness, change in ability to taste, and pain or burning of the tongue, mouth, or throat. The medicine may also cause decreased sense of touch, burning or tingling in the hands or feet, difficulty falling asleep or staying asleep, depression, and joint, muscle, bone, or back pain. You may also experience sweating, dry skin, abnormal hair growth in women, uncontrollable shaking of a part of the body, decrease in sexual desire or ability or  painful, frequent, or urgent urination. Tell your doctor if any of these symptoms are severe or do not go away.'),
(15357, 'Linamac 10 Capsule', 'Admac Pharma Ltd', 'Linamac 10 Capsule', 'Q. Can Linamac 10 Capsule cause cancer?', 'People with multiple myeloma (a form of cancer that begins in plasma cells, a type of white blood cell) who receive melphalan (chemotherapy) and a blood stem cell transplant with the addition of Linamac 10 Capsule have a higher risk of developing new cancers. These types of cancers may include certain blood cancers (acute myelogenous leukemia or AML) and a type of lymphoma called Hodgkin lymphoma. Talk to your doctor about your risk of developing new cancers if you are taking Linamac 10 Capsule.'),
(15358, 'Linamac 10 Capsule', 'Admac Pharma Ltd', 'Linamac 10 Capsule', 'Q. Do I need to get any blood tests done while on Linamac 10 Capsule?', 'Your doctor will ask you to have a blood test before treatment and every week for the first 8 weeks of treatment. You may need to continue taking the blood tests at least every month after treatment with Linamac 10 Capsule ends. Frequent blood tests are important as Linamac 10 Capsule may decrease the blood cells that help fight infection (white blood cells) and help the blood to clot (platelets).'),
(15359, 'Linamac 10 Capsule', 'Admac Pharma Ltd', 'Linamac 10 Capsule', 'Q. Do I need to use birth control methods while using Linamac 10 Capsule?', 'Women who can become pregnant must use two acceptable forms of birth control for 4 weeks before they begin taking Linamac 10 Capsule. Continue using contraceptives during your treatment, including the times when your doctor tells you to temporarily stop taking Linamac 10 Capsule, and for 4 weeks after your final dose. In men, Linamac 10 Capsule may pass into the semen while they are on treatment. Therefore, men must always use a latex condom every time they have sexual contact, even if they have had a vasectomy (surgery that prevents a man from causing a pregnancy). Use the contraceptive while you are taking Linamac 10 Capsule, during any breaks in your treatment, and for 4 weeks after your final dose.'),
(15360, 'Linamac 25 Capsule', 'Admac Pharma Ltd', 'Linamac 25 Capsule', 'Q. Can I take Linamac 25 Capsule empty stomach?', 'Linamac 25 Capsule may be taken with or without food. Always take it exactly as prescribed by your doctor. Do not crush, cut or chew the capsules. Swallow it whole with water. You should take Linamac 25 Capsule at about the same time on the scheduled days.'),
(15361, 'Linamac 25 Capsule', 'Admac Pharma Ltd', 'Linamac 25 Capsule', 'Q. Can Linamac 25 Capsule be given to patients who are on dialysis?', 'Yes, Linamac 25 Capsule is given to dialysis patients after the dialysis is done. However, the doctor may adjust the dose if needed in patients undergoing.'),
(15362, 'Linamac 25 Capsule', 'Admac Pharma Ltd', 'Linamac 25 Capsule', 'Q. What are the side effects of Linamac 25 Capsule?', 'Linamac 25 Capsule may cause side effects which include diarrhea, constipation, stomach pain, loss of appetite, weight loss, weakness, dizziness, change in ability to taste, and pain or burning of the tongue, mouth, or throat. The medicine may also cause decreased sense of touch, burning or tingling in the hands or feet, difficulty falling asleep or staying asleep, depression, and joint, muscle, bone, or back pain. You may also experience sweating, dry skin, abnormal hair growth in women, uncontrollable shaking of a part of the body, decrease in sexual desire or ability or  painful, frequent, or urgent urination. Tell your doctor if any of these symptoms are severe or do not go away.'),
(15363, 'Linamac 25 Capsule', 'Admac Pharma Ltd', 'Linamac 25 Capsule', 'Q. Can Linamac 25 Capsule cause cancer?', 'People with multiple myeloma (a form of cancer that begins in plasma cells, a type of white blood cell) who receive melphalan (chemotherapy) and a blood stem cell transplant with the addition of Linamac 25 Capsule have a higher risk of developing new cancers. These types of cancers may include certain blood cancers (acute myelogenous leukemia or AML) and a type of lymphoma called Hodgkin lymphoma. Talk to your doctor about your risk of developing new cancers if you are taking Linamac 25 Capsule.'),
(15364, 'Linamac 25 Capsule', 'Admac Pharma Ltd', 'Linamac 25 Capsule', 'Q. Do I need to get any blood tests done while on Linamac 25 Capsule?', 'Your doctor will ask you to have a blood test before treatment and every week for the first 8 weeks of treatment. You may need to continue taking the blood tests at least every month after treatment with Linamac 25 Capsule ends. Frequent blood tests are important as Linamac 25 Capsule may decrease the blood cells that help fight infection (white blood cells) and help the blood to clot (platelets).'),
(15365, 'Linamac 25 Capsule', 'Admac Pharma Ltd', 'Linamac 25 Capsule', 'Q. Do I need to use birth control methods while using Linamac 25 Capsule?', 'Women who can become pregnant must use two acceptable forms of birth control for 4 weeks before they begin taking Linamac 25 Capsule. Continue using contraceptives during your treatment, including the times when your doctor tells you to temporarily stop taking Linamac 25 Capsule, and for 4 weeks after your final dose. In men, Linamac 25 Capsule may pass into the semen while they are on treatment. Therefore, men must always use a latex condom every time they have sexual contact, even if they have had a vasectomy (surgery that prevents a man from causing a pregnancy). Use the contraceptive while you are taking Linamac 25 Capsule, during any breaks in your treatment, and for 4 weeks after your final dose.'),
(15366, 'Linamac 5 Capsule', 'Admac Pharma Ltd', 'Linamac 5 Capsule', 'Q. Can I take Linamac 5 Capsule empty stomach?', 'Linamac 5 Capsule may be taken with or without food. Always take it exactly as prescribed by your doctor. Do not crush, cut or chew the capsules. Swallow it whole with water. You should take Linamac 5 Capsule at about the same time on the scheduled days.'),
(15367, 'Linamac 5 Capsule', 'Admac Pharma Ltd', 'Linamac 5 Capsule', 'Q. Can Linamac 5 Capsule be given to patients who are on dialysis?', 'Yes, Linamac 5 Capsule is given to dialysis patients after the dialysis is done. However, the doctor may adjust the dose if needed in patients undergoing.'),
(15368, 'Linamac 5 Capsule', 'Admac Pharma Ltd', 'Linamac 5 Capsule', 'Q. What are the side effects of Linamac 5 Capsule?', 'Linamac 5 Capsule may cause side effects which include diarrhea, constipation, stomach pain, loss of appetite, weight loss, weakness, dizziness, change in ability to taste, and pain or burning of the tongue, mouth, or throat. The medicine may also cause decreased sense of touch, burning or tingling in the hands or feet, difficulty falling asleep or staying asleep, depression, and joint, muscle, bone, or back pain. You may also experience sweating, dry skin, abnormal hair growth in women, uncontrollable shaking of a part of the body, decrease in sexual desire or ability or  painful, frequent, or urgent urination. Tell your doctor if any of these symptoms are severe or do not go away.'),
(15369, 'Linamac 5 Capsule', 'Admac Pharma Ltd', 'Linamac 5 Capsule', 'Q. Can Linamac 5 Capsule cause cancer?', 'People with multiple myeloma (a form of cancer that begins in plasma cells, a type of white blood cell) who receive melphalan (chemotherapy) and a blood stem cell transplant with the addition of Linamac 5 Capsule have a higher risk of developing new cancers. These types of cancers may include certain blood cancers (acute myelogenous leukemia or AML) and a type of lymphoma called Hodgkin lymphoma. Talk to your doctor about your risk of developing new cancers if you are taking Linamac 5 Capsule.'),
(15370, 'Linamac 5 Capsule', 'Admac Pharma Ltd', 'Linamac 5 Capsule', 'Q. Do I need to get any blood tests done while on Linamac 5 Capsule?', 'Your doctor will ask you to have a blood test before treatment and every week for the first 8 weeks of treatment. You may need to continue taking the blood tests at least every month after treatment with Linamac 5 Capsule ends. Frequent blood tests are important as Linamac 5 Capsule may decrease the blood cells that help fight infection (white blood cells) and help the blood to clot (platelets).'),
(15371, 'Linamac 5 Capsule', 'Admac Pharma Ltd', 'Linamac 5 Capsule', 'Q. Do I need to use birth control methods while using Linamac 5 Capsule?', 'Women who can become pregnant must use two acceptable forms of birth control for 4 weeks before they begin taking Linamac 5 Capsule. Continue using contraceptives during your treatment, including the times when your doctor tells you to temporarily stop taking Linamac 5 Capsule, and for 4 weeks after your final dose. In men, Linamac 5 Capsule may pass into the semen while they are on treatment. Therefore, men must always use a latex condom every time they have sexual contact, even if they have had a vasectomy (surgery that prevents a man from causing a pregnancy). Use the contraceptive while you are taking Linamac 5 Capsule, during any breaks in your treatment, and for 4 weeks after your final dose.'),
(15372, 'Linamac M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 1000mg/2.5mg Tablet', 'Can the use of Linamac M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linamac M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linamac M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15373, 'Linamac M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linamac M 1000mg/2.5mg Tablet?', 'The use of Linamac M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15374, 'Linamac M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linamac M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linamac M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linamac M 1000mg/2.5mg Tablet.'),
(15375, 'Linamac M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linamac M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linamac M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15376, 'Linamac M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linamac M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15377, 'Linamac M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 1000mg/2.5mg Tablet', 'Can the use of Linamac M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linamac M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15378, 'Linamac M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 1000mg/2.5mg Tablet', 'Can the use of Linamac M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linamac M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15379, 'Linamac M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 500mg/2.5mg Tablet', 'Can the use of Linamac M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linamac M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linamac M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15380, 'Linamac M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 500mg/2.5mg Tablet', 'What are the possible side effects of Linamac M 500mg/2.5mg Tablet?', 'The use of Linamac M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15381, 'Linamac M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linamac M 500mg/2.5mg Tablet should not be taken?', 'The use of Linamac M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linamac M 500mg/2.5mg Tablet.'),
(15382, 'Linamac M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linamac M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linamac M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15383, 'Linamac M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linamac M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15384, 'Linamac M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 500mg/2.5mg Tablet', 'Can the use of Linamac M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linamac M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15385, 'Linamac M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac M 500mg/2.5mg Tablet', 'Can the use of Linamac M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linamac M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15386, 'Linamac Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac Tablet', 'What is Linamac Tablet used for?', 'Linamac Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linamac Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linamac Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15387, 'Linamac Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac Tablet', 'When should I take Linamac Tablet? What if I miss a dose?', 'Linamac Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15388, 'Linamac Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac Tablet', 'Is Linamac Tablet bad for kidneys?', 'No, there is no evidence that Linamac Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15389, 'Linamac Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac Tablet', 'Is Linamac Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linamac Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15390, 'Linamac Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linamac Tablet', 'For how long I have to take Linamac Tablet? Can I stop the medication?', 'You should keep taking Linamac Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15391, 'Linamets 5mg Tablet', 'Medgen Drugs And Laboratories Pvt Ltd', 'Linamets 5mg Tablet', 'What is Linamets 5mg Tablet used for?', 'Linamets 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linamets 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linamets 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15392, 'Linamets 5mg Tablet', 'Medgen Drugs And Laboratories Pvt Ltd', 'Linamets 5mg Tablet', 'When should I take Linamets 5mg Tablet? What if I miss a dose?', 'Linamets 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15393, 'Linamets 5mg Tablet', 'Medgen Drugs And Laboratories Pvt Ltd', 'Linamets 5mg Tablet', 'Is Linamets 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linamets 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15394, 'Linamets 5mg Tablet', 'Medgen Drugs And Laboratories Pvt Ltd', 'Linamets 5mg Tablet', 'Is Linamets 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linamets 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15395, 'Linamets 5mg Tablet', 'Medgen Drugs And Laboratories Pvt Ltd', 'Linamets 5mg Tablet', 'For how long I have to take Linamets 5mg Tablet? Can I stop the medication?', 'You should keep taking Linamets 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15396, 'Linamit 5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit 5mg Tablet', 'What is Linamit 5mg Tablet used for?', 'Linamit 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linamit 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linamit 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15397, 'Linamit 5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit 5mg Tablet', 'When should I take Linamit 5mg Tablet? What if I miss a dose?', 'Linamit 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15398, 'Linamit 5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit 5mg Tablet', 'Is Linamit 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linamit 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15399, 'Linamit 5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit 5mg Tablet', 'Is Linamit 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linamit 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15400, 'Linamit 5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit 5mg Tablet', 'For how long I have to take Linamit 5mg Tablet? Can I stop the medication?', 'You should keep taking Linamit 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15401, 'Linamit M 500mg/2.5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit M 500mg/2.5mg Tablet', 'Can the use of Linamit M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linamit M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linamit M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15402, 'Linamit M 500mg/2.5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit M 500mg/2.5mg Tablet', 'What are the possible side effects of Linamit M 500mg/2.5mg Tablet?', 'The use of Linamit M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15403, 'Linamit M 500mg/2.5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linamit M 500mg/2.5mg Tablet should not be taken?', 'The use of Linamit M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linamit M 500mg/2.5mg Tablet.'),
(15404, 'Linamit M 500mg/2.5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linamit M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linamit M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15405, 'Linamit M 500mg/2.5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linamit M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15406, 'Linamit M 500mg/2.5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit M 500mg/2.5mg Tablet', 'Can the use of Linamit M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linamit M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15407, 'Linamit M 500mg/2.5mg Tablet', 'Mitoch Pharma Pvt Ltd', 'Linamit M 500mg/2.5mg Tablet', 'Can the use of Linamit M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linamit M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15408, 'Linanef 5mg Tablet', 'Talohsty Medmark Pvt Ltd', 'Linanef 5mg Tablet', 'What is Linanef 5mg Tablet used for?', 'Linanef 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linanef 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linanef 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15409, 'Linanef 5mg Tablet', 'Talohsty Medmark Pvt Ltd', 'Linanef 5mg Tablet', 'When should I take Linanef 5mg Tablet? What if I miss a dose?', 'Linanef 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15410, 'Linanef 5mg Tablet', 'Talohsty Medmark Pvt Ltd', 'Linanef 5mg Tablet', 'Is Linanef 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linanef 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15411, 'Linanef 5mg Tablet', 'Talohsty Medmark Pvt Ltd', 'Linanef 5mg Tablet', 'Is Linanef 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linanef 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15412, 'Linanef 5mg Tablet', 'Talohsty Medmark Pvt Ltd', 'Linanef 5mg Tablet', 'For how long I have to take Linanef 5mg Tablet? Can I stop the medication?', 'You should keep taking Linanef 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15413, 'Linaneu 2.5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 2.5 Tablet', 'What is Linaneu 2.5 Tablet used for?', 'Linaneu 2.5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaneu 2.5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaneu 2.5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15414, 'Linaneu 2.5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 2.5 Tablet', 'When should I take Linaneu 2.5 Tablet? What if I miss a dose?', 'Linaneu 2.5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15415, 'Linaneu 2.5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 2.5 Tablet', 'Is Linaneu 2.5 Tablet bad for kidneys?', 'No, there is no evidence that Linaneu 2.5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15416, 'Linaneu 2.5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 2.5 Tablet', 'Is Linaneu 2.5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaneu 2.5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15417, 'Linaneu 2.5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 2.5 Tablet', 'For how long I have to take Linaneu 2.5 Tablet? Can I stop the medication?', 'You should keep taking Linaneu 2.5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15418, 'Linaneu 5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 5 Tablet', 'What is Linaneu 5 Tablet used for?', 'Linaneu 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaneu 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaneu 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15419, 'Linaneu 5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 5 Tablet', 'When should I take Linaneu 5 Tablet? What if I miss a dose?', 'Linaneu 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15420, 'Linaneu 5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 5 Tablet', 'Is Linaneu 5 Tablet bad for kidneys?', 'No, there is no evidence that Linaneu 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15421, 'Linaneu 5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 5 Tablet', 'Is Linaneu 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaneu 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15422, 'Linaneu 5 Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu 5 Tablet', 'For how long I have to take Linaneu 5 Tablet? Can I stop the medication?', 'You should keep taking Linaneu 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15423, 'Linaneu-M Forte Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Forte Tablet', 'Can the use of Linaneu-M Forte Tablet cause lactic acidosis?', 'Yes, the use of Linaneu-M Forte Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaneu-M Forte Tablet and immediately consult your doctor.'),
(15424, 'Linaneu-M Forte Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Forte Tablet', 'What are the possible side effects of Linaneu-M Forte Tablet?', 'The use of Linaneu-M Forte Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15425, 'Linaneu-M Forte Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Forte Tablet', 'Are there any specific conditions in which Linaneu-M Forte Tablet should not be taken?', 'The use of Linaneu-M Forte Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaneu-M Forte Tablet.'),
(15426, 'Linaneu-M Forte Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Forte Tablet', 'Is it safe to take alcohol while I am also taking Linaneu-M Forte Tablet?', 'No, it is not safe to take Linaneu-M Forte Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15427, 'Linaneu-M Forte Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Forte Tablet', 'What are the instructions for the storage and disposal of Linaneu-M Forte Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15428, 'Linaneu-M Forte Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Forte Tablet', 'Can the use of Linaneu-M Forte Tablet cause hypoglycemia?', 'The use of Linaneu-M Forte Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15429, 'Linaneu-M Forte Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Forte Tablet', 'Can the use of Linaneu-M Forte Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaneu-M Forte Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15430, 'Linaneu-M Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Tablet', 'Can the use of Linaneu-M Tablet cause lactic acidosis?', 'Yes, the use of Linaneu-M Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaneu-M Tablet and immediately consult your doctor.'),
(15431, 'Linaneu-M Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Tablet', 'What are the possible side effects of Linaneu-M Tablet?', 'The use of Linaneu-M Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15432, 'Linaneu-M Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Tablet', 'Are there any specific conditions in which Linaneu-M Tablet should not be taken?', 'The use of Linaneu-M Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaneu-M Tablet.'),
(15433, 'Linaneu-M Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Tablet', 'Is it safe to take alcohol while I am also taking Linaneu-M Tablet?', 'No, it is not safe to take Linaneu-M Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15434, 'Linaneu-M Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Tablet', 'What are the instructions for the storage and disposal of Linaneu-M Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15435, 'Linaneu-M Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Tablet', 'Can the use of Linaneu-M Tablet cause hypoglycemia?', 'The use of Linaneu-M Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15436, 'Linaneu-M Tablet', 'Novosys Life Sciences Private Limited', 'Linaneu-M Tablet', 'Can the use of Linaneu-M Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaneu-M Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15437, 'Linanext 5mg Tablet', 'MSN Laboratories', 'Linanext 5mg Tablet', 'What is Linanext 5mg Tablet used for?', 'Linanext 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linanext 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linanext 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15438, 'Linanext 5mg Tablet', 'MSN Laboratories', 'Linanext 5mg Tablet', 'When should I take Linanext 5mg Tablet? What if I miss a dose?', 'Linanext 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15439, 'Linanext 5mg Tablet', 'MSN Laboratories', 'Linanext 5mg Tablet', 'Is Linanext 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linanext 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15440, 'Linanext 5mg Tablet', 'MSN Laboratories', 'Linanext 5mg Tablet', 'Is Linanext 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linanext 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15441, 'Linanext 5mg Tablet', 'MSN Laboratories', 'Linanext 5mg Tablet', 'For how long I have to take Linanext 5mg Tablet? Can I stop the medication?', 'You should keep taking Linanext 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15442, 'Linanext DM 10mg/5mg/500mg Tablet', 'MSN Laboratories', 'Linanext DM 10mg/5mg/500mg Tablet', 'What is Linanext DM 10mg/5mg/500mg Tablet used for?', 'Linanext DM 10mg/5mg/500mg Tablet is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(15443, 'Linanext DM 10mg/5mg/500mg Tablet', 'MSN Laboratories', 'Linanext DM 10mg/5mg/500mg Tablet', 'How should I take Linanext DM 10mg/5mg/500mg Tablet?', 'Take Linanext DM 10mg/5mg/500mg Tablet exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(15444, 'Linanext DM 10mg/5mg/500mg Tablet', 'MSN Laboratories', 'Linanext DM 10mg/5mg/500mg Tablet', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(15445, 'Linanext DM 10mg/5mg/500mg Tablet', 'MSN Laboratories', 'Linanext DM 10mg/5mg/500mg Tablet', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(15446, 'Linanext DM 10mg/5mg/500mg Tablet', 'MSN Laboratories', 'Linanext DM 10mg/5mg/500mg Tablet', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(15447, 'Linanext DM 10mg/5mg/500mg Tablet', 'MSN Laboratories', 'Linanext DM 10mg/5mg/500mg Tablet', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(15448, 'Linanext M 1000mg/2.5mg Tablet', 'MSN Laboratories', 'Linanext M 1000mg/2.5mg Tablet', 'Can the use of Linanext M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linanext M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linanext M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15449, 'Linanext M 1000mg/2.5mg Tablet', 'MSN Laboratories', 'Linanext M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linanext M 1000mg/2.5mg Tablet?', 'The use of Linanext M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15450, 'Linanext M 1000mg/2.5mg Tablet', 'MSN Laboratories', 'Linanext M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linanext M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linanext M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linanext M 1000mg/2.5mg Tablet.'),
(15451, 'Linanext M 1000mg/2.5mg Tablet', 'MSN Laboratories', 'Linanext M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linanext M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linanext M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15452, 'Linanext M 1000mg/2.5mg Tablet', 'MSN Laboratories', 'Linanext M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linanext M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15453, 'Linanext M 1000mg/2.5mg Tablet', 'MSN Laboratories', 'Linanext M 1000mg/2.5mg Tablet', 'Can the use of Linanext M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linanext M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15454, 'Linanext M 1000mg/2.5mg Tablet', 'MSN Laboratories', 'Linanext M 1000mg/2.5mg Tablet', 'Can the use of Linanext M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linanext M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15455, 'Linanext M 1000mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 1000mg/5mg Tablet ER', 'Can the use of Linanext M 1000mg/5mg Tablet ER cause lactic acidosis?', 'Yes, the use of Linanext M 1000mg/5mg Tablet ER can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linanext M 1000mg/5mg Tablet ER and immediately consult your doctor.'),
(15456, 'Linanext M 1000mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 1000mg/5mg Tablet ER', 'What are the possible side effects of Linanext M 1000mg/5mg Tablet ER?', 'The use of Linanext M 1000mg/5mg Tablet ER may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15457, 'Linanext M 1000mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 1000mg/5mg Tablet ER', 'Are there any specific conditions in which Linanext M 1000mg/5mg Tablet ER should not be taken?', 'The use of Linanext M 1000mg/5mg Tablet ER should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linanext M 1000mg/5mg Tablet ER.'),
(15458, 'Linanext M 1000mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 1000mg/5mg Tablet ER', 'Is it safe to take alcohol while I am also taking Linanext M 1000mg/5mg Tablet ER?', 'No, it is not safe to take Linanext M 1000mg/5mg Tablet ER along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15459, 'Linanext M 1000mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 1000mg/5mg Tablet ER', 'What are the instructions for the storage and disposal of Linanext M 1000mg/5mg Tablet ER?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15460, 'Linanext M 1000mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 1000mg/5mg Tablet ER', 'Can the use of Linanext M 1000mg/5mg Tablet ER cause hypoglycemia?', 'The use of Linanext M 1000mg/5mg Tablet ER does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15461, 'Linanext M 1000mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 1000mg/5mg Tablet ER', 'Can the use of Linanext M 1000mg/5mg Tablet ER lead to vitamin B12 deficiency?', 'Yes, long-term use of Linanext M 1000mg/5mg Tablet ER can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15462, 'Linanext M 500mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 500mg/5mg Tablet ER', 'Can the use of Linanext M 500mg/5mg Tablet ER cause lactic acidosis?', 'Yes, the use of Linanext M 500mg/5mg Tablet ER can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linanext M 500mg/5mg Tablet ER and immediately consult your doctor.'),
(15463, 'Linanext M 500mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 500mg/5mg Tablet ER', 'What are the possible side effects of Linanext M 500mg/5mg Tablet ER?', 'The use of Linanext M 500mg/5mg Tablet ER may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15464, 'Linanext M 500mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 500mg/5mg Tablet ER', 'Are there any specific conditions in which Linanext M 500mg/5mg Tablet ER should not be taken?', 'The use of Linanext M 500mg/5mg Tablet ER should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linanext M 500mg/5mg Tablet ER.'),
(15465, 'Linanext M 500mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 500mg/5mg Tablet ER', 'Is it safe to take alcohol while I am also taking Linanext M 500mg/5mg Tablet ER?', 'No, it is not safe to take Linanext M 500mg/5mg Tablet ER along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15466, 'Linanext M 500mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 500mg/5mg Tablet ER', 'What are the instructions for the storage and disposal of Linanext M 500mg/5mg Tablet ER?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15467, 'Linanext M 500mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 500mg/5mg Tablet ER', 'Can the use of Linanext M 500mg/5mg Tablet ER cause hypoglycemia?', 'The use of Linanext M 500mg/5mg Tablet ER does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15468, 'Linanext M 500mg/5mg Tablet ER', 'MSN Laboratories', 'Linanext M 500mg/5mg Tablet ER', 'Can the use of Linanext M 500mg/5mg Tablet ER lead to vitamin B12 deficiency?', 'Yes, long-term use of Linanext M 500mg/5mg Tablet ER can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15469, 'Linanext-M 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M 2.5/500 Tablet', 'Can the use of Linanext-M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linanext-M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linanext-M 2.5/500 Tablet and immediately consult your doctor.'),
(15470, 'Linanext-M 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M 2.5/500 Tablet', 'What are the possible side effects of Linanext-M 2.5/500 Tablet?', 'The use of Linanext-M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15471, 'Linanext-M 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M 2.5/500 Tablet', 'Are there any specific conditions in which Linanext-M 2.5/500 Tablet should not be taken?', 'The use of Linanext-M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linanext-M 2.5/500 Tablet.'),
(15472, 'Linanext-M 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Linanext-M 2.5/500 Tablet?', 'No, it is not safe to take Linanext-M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15473, 'Linanext-M 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Linanext-M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15474, 'Linanext-M 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M 2.5/500 Tablet', 'Can the use of Linanext-M 2.5/500 Tablet cause hypoglycemia?', 'The use of Linanext-M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15475, 'Linanext-M 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M 2.5/500 Tablet', 'Can the use of Linanext-M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linanext-M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15476, 'Linanext-M ER 2.5/1000 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/1000 Tablet', 'Can the use of Linanext-M ER 2.5/1000 Tablet cause lactic acidosis?', 'Yes, the use of Linanext-M ER 2.5/1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linanext-M ER 2.5/1000 Tablet and immediately consult your doctor.'),
(15477, 'Linanext-M ER 2.5/1000 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/1000 Tablet', 'What are the possible side effects of Linanext-M ER 2.5/1000 Tablet?', 'The use of Linanext-M ER 2.5/1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15478, 'Linanext-M ER 2.5/1000 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/1000 Tablet', 'Are there any specific conditions in which Linanext-M ER 2.5/1000 Tablet should not be taken?', 'The use of Linanext-M ER 2.5/1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linanext-M ER 2.5/1000 Tablet.'),
(15479, 'Linanext-M ER 2.5/1000 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/1000 Tablet', 'Is it safe to take alcohol while I am also taking Linanext-M ER 2.5/1000 Tablet?', 'No, it is not safe to take Linanext-M ER 2.5/1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15480, 'Linanext-M ER 2.5/1000 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/1000 Tablet', 'What are the instructions for the storage and disposal of Linanext-M ER 2.5/1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15481, 'Linanext-M ER 2.5/1000 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/1000 Tablet', 'Can the use of Linanext-M ER 2.5/1000 Tablet cause hypoglycemia?', 'The use of Linanext-M ER 2.5/1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15482, 'Linanext-M ER 2.5/1000 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/1000 Tablet', 'Can the use of Linanext-M ER 2.5/1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linanext-M ER 2.5/1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15483, 'Linanext-M ER 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/500 Tablet', 'Q. Can the use of Linanext-M ER 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linanext-M ER 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linanext-M ER 2.5/500 Tablet and immediately consult your doctor.'),
(15484, 'Linanext-M ER 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/500 Tablet', 'Q. What are the possible side effects of Linanext-M ER 2.5/500 Tablet?', 'The use of Linanext-M ER 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15485, 'Linanext-M ER 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/500 Tablet', 'Q. Are there any specific conditions in which Linanext-M ER 2.5/500 Tablet should not be taken?', 'The use of Linanext-M ER 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linanext-M ER 2.5/500 Tablet.'),
(15486, 'Linanext-M ER 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/500 Tablet', 'Q. Is it safe to take alcohol while I am also taking Linanext-M ER 2.5/500 Tablet?', 'No, it is not safe to take Linanext-M ER 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15487, 'Linanext-M ER 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/500 Tablet', 'Q. What are the instructions for the storage and disposal of Linanext-M ER 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15488, 'Linanext-M ER 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/500 Tablet', 'Q. Can the use of Linanext-M ER 2.5/500 Tablet cause hypoglycemia?', 'The use of Linanext-M ER 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15489, 'Linanext-M ER 2.5/500 Tablet', 'MSN Laboratories', 'Linanext-M ER 2.5/500 Tablet', 'Q. Can the use of Linanext-M ER 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linanext-M ER 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15490, 'Linaone 5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone 5mg Tablet', 'What is Linaone 5mg Tablet used for?', 'Linaone 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaone 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaone 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15491, 'Linaone 5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone 5mg Tablet', 'When should I take Linaone 5mg Tablet? What if I miss a dose?', 'Linaone 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15492, 'Linaone 5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone 5mg Tablet', 'Is Linaone 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaone 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15493, 'Linaone 5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone 5mg Tablet', 'Is Linaone 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaone 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15494, 'Linaone 5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone 5mg Tablet', 'For how long I have to take Linaone 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaone 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15495, 'Linaone M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 1000mg/2.5mg Tablet', 'Can the use of Linaone M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaone M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaone M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15496, 'Linaone M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linaone M 1000mg/2.5mg Tablet?', 'The use of Linaone M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15497, 'Linaone M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linaone M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linaone M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaone M 1000mg/2.5mg Tablet.'),
(15498, 'Linaone M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaone M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linaone M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15499, 'Linaone M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaone M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15500, 'Linaone M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 1000mg/2.5mg Tablet', 'Can the use of Linaone M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaone M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15501, 'Linaone M 1000mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 1000mg/2.5mg Tablet', 'Can the use of Linaone M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaone M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15502, 'Linaone M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Macleods Pharmaceuticals Pvt Ltd)', 'Can the use of Linaone M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaone M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaone M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15503, 'Linaone M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Macleods Pharmaceuticals Pvt Ltd)', 'What are the possible side effects of Linaone M 500mg/2.5mg Tablet?', 'The use of Linaone M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15504, 'Linaone M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Macleods Pharmaceuticals Pvt Ltd)', 'Are there any specific conditions in which Linaone M 500mg/2.5mg Tablet should not be taken?', 'The use of Linaone M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaone M 500mg/2.5mg Tablet.'),
(15505, 'Linaone M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Macleods Pharmaceuticals Pvt Ltd)', 'Is it safe to take alcohol while I am also taking Linaone M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaone M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15506, 'Linaone M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Macleods Pharmaceuticals Pvt Ltd)', 'What are the instructions for the storage and disposal of Linaone M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15507, 'Linaone M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Macleods Pharmaceuticals Pvt Ltd)', 'Can the use of Linaone M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaone M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15508, 'Linaone M 500mg/2.5mg Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Macleods Pharmaceuticals Pvt Ltd)', 'Can the use of Linaone M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaone M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15509, 'Linaone M 500mg/2.5mg Tablet', 'Adonis Laboratories Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Adonis Laboratories Pvt Ltd)', 'Can the use of Linaone M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaone M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaone M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15510, 'Linaone M 500mg/2.5mg Tablet', 'Adonis Laboratories Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Adonis Laboratories Pvt Ltd)', 'What are the possible side effects of Linaone M 500mg/2.5mg Tablet?', 'The use of Linaone M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15511, 'Linaone M 500mg/2.5mg Tablet', 'Adonis Laboratories Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Adonis Laboratories Pvt Ltd)', 'Are there any specific conditions in which Linaone M 500mg/2.5mg Tablet should not be taken?', 'The use of Linaone M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaone M 500mg/2.5mg Tablet.'),
(15512, 'Linaone M 500mg/2.5mg Tablet', 'Adonis Laboratories Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Adonis Laboratories Pvt Ltd)', 'Is it safe to take alcohol while I am also taking Linaone M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaone M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15513, 'Linaone M 500mg/2.5mg Tablet', 'Adonis Laboratories Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Adonis Laboratories Pvt Ltd)', 'What are the instructions for the storage and disposal of Linaone M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15514, 'Linaone M 500mg/2.5mg Tablet', 'Adonis Laboratories Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Adonis Laboratories Pvt Ltd)', 'Can the use of Linaone M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaone M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15515, 'Linaone M 500mg/2.5mg Tablet', 'Adonis Laboratories Pvt Ltd', 'Linaone M 500mg/2.5mg Tablet (Adonis Laboratories Pvt Ltd)', 'Can the use of Linaone M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaone M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15516, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'What is Linaox-Clav 250mg/125mg Tablet?', 'Linaox-Clav 250mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(15517, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Is it safe to use Linaox-Clav 250mg/125mg Tablet?', 'Linaox-Clav 250mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(15518, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Are there any specific cautions associated with the use of Linaox-Clav 250mg/125mg Tablet?', 'The use of Linaox-Clav 250mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(15519, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Can the use of Linaox-Clav 250mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Linaox-Clav 250mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Linaox-Clav 250mg/125mg Tablet.'),
(15520, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Can I take a higher than the recommended dose of Linaox-Clav 250mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Linaox-Clav 250mg/125mg Tablet can increase the risks of side effects. Linaox-Clav 250mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(15521, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'What are the instructions for the storage and disposal of Linaox-Clav 250mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15522, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Can I stop taking Linaox-Clav 250mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Linaox-Clav 250mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(15523, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Can Linaox-Clav 250mg/125mg Tablet cause an allergic reaction?', 'Yes, Linaox-Clav 250mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(15524, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Can the use of Linaox-Clav 250mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linaox-Clav 250mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(15525, 'Linaox-Clav 250mg/125mg Tablet', 'Sanify Healthcare Pvt  Ltd', 'Linaox-Clav 250mg/125mg Tablet', 'Can I take Linaox-Clav 250mg/125mg Tablet to treat cold and flu?', 'No, Linaox-Clav 250mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(15526, 'Linapaz M 500mg/2.5mg Tablet', 'Akesiss Pharma Pvt Ltd', 'Linapaz M 500mg/2.5mg Tablet', 'Can the use of Linapaz M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linapaz M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linapaz M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15527, 'Linapaz M 500mg/2.5mg Tablet', 'Akesiss Pharma Pvt Ltd', 'Linapaz M 500mg/2.5mg Tablet', 'What are the possible side effects of Linapaz M 500mg/2.5mg Tablet?', 'The use of Linapaz M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15528, 'Linapaz M 500mg/2.5mg Tablet', 'Akesiss Pharma Pvt Ltd', 'Linapaz M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linapaz M 500mg/2.5mg Tablet should not be taken?', 'The use of Linapaz M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linapaz M 500mg/2.5mg Tablet.'),
(15529, 'Linapaz M 500mg/2.5mg Tablet', 'Akesiss Pharma Pvt Ltd', 'Linapaz M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linapaz M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linapaz M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15530, 'Linapaz M 500mg/2.5mg Tablet', 'Akesiss Pharma Pvt Ltd', 'Linapaz M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linapaz M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15531, 'Linapaz M 500mg/2.5mg Tablet', 'Akesiss Pharma Pvt Ltd', 'Linapaz M 500mg/2.5mg Tablet', 'Can the use of Linapaz M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linapaz M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15532, 'Linapaz M 500mg/2.5mg Tablet', 'Akesiss Pharma Pvt Ltd', 'Linapaz M 500mg/2.5mg Tablet', 'Can the use of Linapaz M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linapaz M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15533, 'Linapil 5mg Tablet', 'Alkem Laboratories Ltd', 'Linapil 5mg Tablet', 'What is Linapil 5mg Tablet used for?', 'Linapil 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linapil 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linapil 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15534, 'Linapil 5mg Tablet', 'Alkem Laboratories Ltd', 'Linapil 5mg Tablet', 'When should I take Linapil 5mg Tablet? What if I miss a dose?', 'Linapil 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15535, 'Linapil 5mg Tablet', 'Alkem Laboratories Ltd', 'Linapil 5mg Tablet', 'Is Linapil 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linapil 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15536, 'Linapil 5mg Tablet', 'Alkem Laboratories Ltd', 'Linapil 5mg Tablet', 'Is Linapil 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linapil 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15537, 'Linapil 5mg Tablet', 'Alkem Laboratories Ltd', 'Linapil 5mg Tablet', 'For how long I have to take Linapil 5mg Tablet? Can I stop the medication?', 'You should keep taking Linapil 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15538, 'Linapil DM 10mg/5mg/1000mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/1000mg Tablet', 'What is Linapil DM 10mg/5mg/1000mg Tablet used for?', 'Linapil DM 10mg/5mg/1000mg Tablet is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(15539, 'Linapil DM 10mg/5mg/1000mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/1000mg Tablet', 'How should I take Linapil DM 10mg/5mg/1000mg Tablet?', 'Take Linapil DM 10mg/5mg/1000mg Tablet exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(15540, 'Linapil DM 10mg/5mg/1000mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/1000mg Tablet', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(15541, 'Linapil DM 10mg/5mg/1000mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/1000mg Tablet', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(15542, 'Linapil DM 10mg/5mg/1000mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/1000mg Tablet', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(15543, 'Linapil DM 10mg/5mg/1000mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/1000mg Tablet', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(15544, 'Linapil DM 10mg/5mg/500mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/500mg Tablet', 'What is Linapil DM 10mg/5mg/500mg Tablet used for?', 'Linapil DM 10mg/5mg/500mg Tablet is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(15545, 'Linapil DM 10mg/5mg/500mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/500mg Tablet', 'How should I take Linapil DM 10mg/5mg/500mg Tablet?', 'Take Linapil DM 10mg/5mg/500mg Tablet exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(15546, 'Linapil DM 10mg/5mg/500mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/500mg Tablet', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(15547, 'Linapil DM 10mg/5mg/500mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/500mg Tablet', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(15548, 'Linapil DM 10mg/5mg/500mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/500mg Tablet', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(15549, 'Linapil DM 10mg/5mg/500mg Tablet', 'Alkem Laboratories Ltd', 'Linapil DM 10mg/5mg/500mg Tablet', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(15550, 'Linapil-M 2.5/1000 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/1000 Tablet', 'Can the use of Linapil-M 2.5/1000 Tablet cause lactic acidosis?', 'Yes, the use of Linapil-M 2.5/1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linapil-M 2.5/1000 Tablet and immediately consult your doctor.'),
(15551, 'Linapil-M 2.5/1000 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/1000 Tablet', 'What are the possible side effects of Linapil-M 2.5/1000 Tablet?', 'The use of Linapil-M 2.5/1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15552, 'Linapil-M 2.5/1000 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/1000 Tablet', 'Are there any specific conditions in which Linapil-M 2.5/1000 Tablet should not be taken?', 'The use of Linapil-M 2.5/1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linapil-M 2.5/1000 Tablet.'),
(15553, 'Linapil-M 2.5/1000 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/1000 Tablet', 'Is it safe to take alcohol while I am also taking Linapil-M 2.5/1000 Tablet?', 'No, it is not safe to take Linapil-M 2.5/1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15554, 'Linapil-M 2.5/1000 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/1000 Tablet', 'What are the instructions for the storage and disposal of Linapil-M 2.5/1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15555, 'Linapil-M 2.5/1000 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/1000 Tablet', 'Can the use of Linapil-M 2.5/1000 Tablet cause hypoglycemia?', 'The use of Linapil-M 2.5/1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15556, 'Linapil-M 2.5/1000 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/1000 Tablet', 'Can the use of Linapil-M 2.5/1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linapil-M 2.5/1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15557, 'Linapil-M 2.5/500 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/500 Tablet', 'Can the use of Linapil-M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linapil-M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linapil-M 2.5/500 Tablet and immediately consult your doctor.'),
(15558, 'Linapil-M 2.5/500 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/500 Tablet', 'What are the possible side effects of Linapil-M 2.5/500 Tablet?', 'The use of Linapil-M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15559, 'Linapil-M 2.5/500 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/500 Tablet', 'Are there any specific conditions in which Linapil-M 2.5/500 Tablet should not be taken?', 'The use of Linapil-M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linapil-M 2.5/500 Tablet.'),
(15560, 'Linapil-M 2.5/500 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Linapil-M 2.5/500 Tablet?', 'No, it is not safe to take Linapil-M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15561, 'Linapil-M 2.5/500 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Linapil-M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15562, 'Linapil-M 2.5/500 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/500 Tablet', 'Can the use of Linapil-M 2.5/500 Tablet cause hypoglycemia?', 'The use of Linapil-M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15563, 'Linapil-M 2.5/500 Tablet', 'Alkem Laboratories Ltd', 'Linapil-M 2.5/500 Tablet', 'Can the use of Linapil-M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linapil-M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15564, 'Linapride 5 Tablet', 'Micro Labs Ltd', 'Linapride 5 Tablet', 'What is Linapride 5 Tablet used for?', 'Linapride 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linapride 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linapride 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15565, 'Linapride 5 Tablet', 'Micro Labs Ltd', 'Linapride 5 Tablet', 'When should I take Linapride 5 Tablet? What if I miss a dose?', 'Linapride 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15566, 'Linapride 5 Tablet', 'Micro Labs Ltd', 'Linapride 5 Tablet', 'Is Linapride 5 Tablet bad for kidneys?', 'No, there is no evidence that Linapride 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15567, 'Linapride 5 Tablet', 'Micro Labs Ltd', 'Linapride 5 Tablet', 'Is Linapride 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linapride 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15568, 'Linapride 5 Tablet', 'Micro Labs Ltd', 'Linapride 5 Tablet', 'For how long I have to take Linapride 5 Tablet? Can I stop the medication?', 'You should keep taking Linapride 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15569, 'Linapride DM 10mg/5mg/500mg Tablet', 'Micro Labs Ltd', 'Linapride DM 10mg/5mg/500mg Tablet', 'What is Linapride DM 10mg/5mg/500mg Tablet used for?', 'Linapride DM 10mg/5mg/500mg Tablet is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(15570, 'Linapride DM 10mg/5mg/500mg Tablet', 'Micro Labs Ltd', 'Linapride DM 10mg/5mg/500mg Tablet', 'How should I take Linapride DM 10mg/5mg/500mg Tablet?', 'Take Linapride DM 10mg/5mg/500mg Tablet exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(15571, 'Linapride DM 10mg/5mg/500mg Tablet', 'Micro Labs Ltd', 'Linapride DM 10mg/5mg/500mg Tablet', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(15572, 'Linapride DM 10mg/5mg/500mg Tablet', 'Micro Labs Ltd', 'Linapride DM 10mg/5mg/500mg Tablet', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(15573, 'Linapride DM 10mg/5mg/500mg Tablet', 'Micro Labs Ltd', 'Linapride DM 10mg/5mg/500mg Tablet', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(15574, 'Linapride DM 10mg/5mg/500mg Tablet', 'Micro Labs Ltd', 'Linapride DM 10mg/5mg/500mg Tablet', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(15575, 'Linapride M 1000mg/5mg Tablet XR', 'Micro Labs Ltd', 'Linapride M 1000mg/5mg Tablet XR', 'Can the use of Linapride M 1000mg/5mg Tablet XR cause lactic acidosis?', 'Yes, the use of Linapride M 1000mg/5mg Tablet XR can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linapride M 1000mg/5mg Tablet XR and immediately consult your doctor.'),
(15576, 'Linapride M 1000mg/5mg Tablet XR', 'Micro Labs Ltd', 'Linapride M 1000mg/5mg Tablet XR', 'What are the possible side effects of Linapride M 1000mg/5mg Tablet XR?', 'The use of Linapride M 1000mg/5mg Tablet XR may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15577, 'Linapride M 1000mg/5mg Tablet XR', 'Micro Labs Ltd', 'Linapride M 1000mg/5mg Tablet XR', 'Are there any specific conditions in which Linapride M 1000mg/5mg Tablet XR should not be taken?', 'The use of Linapride M 1000mg/5mg Tablet XR should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linapride M 1000mg/5mg Tablet XR.'),
(15578, 'Linapride M 1000mg/5mg Tablet XR', 'Micro Labs Ltd', 'Linapride M 1000mg/5mg Tablet XR', 'Is it safe to take alcohol while I am also taking Linapride M 1000mg/5mg Tablet XR?', 'No, it is not safe to take Linapride M 1000mg/5mg Tablet XR along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15579, 'Linapride M 1000mg/5mg Tablet XR', 'Micro Labs Ltd', 'Linapride M 1000mg/5mg Tablet XR', 'What are the instructions for the storage and disposal of Linapride M 1000mg/5mg Tablet XR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15580, 'Linapride M 1000mg/5mg Tablet XR', 'Micro Labs Ltd', 'Linapride M 1000mg/5mg Tablet XR', 'Can the use of Linapride M 1000mg/5mg Tablet XR cause hypoglycemia?', 'The use of Linapride M 1000mg/5mg Tablet XR does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15581, 'Linapride M 1000mg/5mg Tablet XR', 'Micro Labs Ltd', 'Linapride M 1000mg/5mg Tablet XR', 'Can the use of Linapride M 1000mg/5mg Tablet XR lead to vitamin B12 deficiency?', 'Yes, long-term use of Linapride M 1000mg/5mg Tablet XR can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15582, 'Linapride-M 500 Tablet', 'Micro Labs Ltd', 'Linapride-M 500 Tablet', 'Can the use of Linapride-M 500 Tablet cause lactic acidosis?', 'Yes, the use of Linapride-M 500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linapride-M 500 Tablet and immediately consult your doctor.'),
(15583, 'Linapride-M 500 Tablet', 'Micro Labs Ltd', 'Linapride-M 500 Tablet', 'What are the possible side effects of Linapride-M 500 Tablet?', 'The use of Linapride-M 500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15584, 'Linapride-M 500 Tablet', 'Micro Labs Ltd', 'Linapride-M 500 Tablet', 'Are there any specific conditions in which Linapride-M 500 Tablet should not be taken?', 'The use of Linapride-M 500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linapride-M 500 Tablet.'),
(15585, 'Linapride-M 500 Tablet', 'Micro Labs Ltd', 'Linapride-M 500 Tablet', 'Is it safe to take alcohol while I am also taking Linapride-M 500 Tablet?', 'No, it is not safe to take Linapride-M 500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15586, 'Linapride-M 500 Tablet', 'Micro Labs Ltd', 'Linapride-M 500 Tablet', 'What are the instructions for the storage and disposal of Linapride-M 500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15587, 'Linapride-M 500 Tablet', 'Micro Labs Ltd', 'Linapride-M 500 Tablet', 'Can the use of Linapride-M 500 Tablet cause hypoglycemia?', 'The use of Linapride-M 500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15588, 'Linapride-M 500 Tablet', 'Micro Labs Ltd', 'Linapride-M 500 Tablet', 'Can the use of Linapride-M 500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linapride-M 500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15589, 'Linapride-M 500 XR Tablet', 'Micro Labs Ltd', 'Linapride-M 500 XR Tablet', 'Can the use of Linapride-M 500 XR Tablet cause lactic acidosis?', 'Yes, the use of Linapride-M 500 XR Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linapride-M 500 XR Tablet and immediately consult your doctor.'),
(15590, 'Linapride-M 500 XR Tablet', 'Micro Labs Ltd', 'Linapride-M 500 XR Tablet', 'What are the possible side effects of Linapride-M 500 XR Tablet?', 'The use of Linapride-M 500 XR Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15591, 'Linapride-M 500 XR Tablet', 'Micro Labs Ltd', 'Linapride-M 500 XR Tablet', 'Are there any specific conditions in which Linapride-M 500 XR Tablet should not be taken?', 'The use of Linapride-M 500 XR Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linapride-M 500 XR Tablet.'),
(15592, 'Linapride-M 500 XR Tablet', 'Micro Labs Ltd', 'Linapride-M 500 XR Tablet', 'Is it safe to take alcohol while I am also taking Linapride-M 500 XR Tablet?', 'No, it is not safe to take Linapride-M 500 XR Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15593, 'Linapride-M 500 XR Tablet', 'Micro Labs Ltd', 'Linapride-M 500 XR Tablet', 'What are the instructions for the storage and disposal of Linapride-M 500 XR Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15594, 'Linapride-M 500 XR Tablet', 'Micro Labs Ltd', 'Linapride-M 500 XR Tablet', 'Can the use of Linapride-M 500 XR Tablet cause hypoglycemia?', 'The use of Linapride-M 500 XR Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15595, 'Linapride-M 500 XR Tablet', 'Micro Labs Ltd', 'Linapride-M 500 XR Tablet', 'Can the use of Linapride-M 500 XR Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linapride-M 500 XR Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15596, 'Linaprove 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove 5mg Tablet', 'What is Linaprove 5mg Tablet used for?', 'Linaprove 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaprove 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaprove 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15597, 'Linaprove 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove 5mg Tablet', 'When should I take Linaprove 5mg Tablet? What if I miss a dose?', 'Linaprove 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15598, 'Linaprove 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove 5mg Tablet', 'Is Linaprove 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaprove 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15599, 'Linaprove 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove 5mg Tablet', 'Is Linaprove 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaprove 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15600, 'Linaprove 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove 5mg Tablet', 'For how long I have to take Linaprove 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaprove 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15601, 'Linaprove M 2.5/1000 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove M 2.5/1000 Tablet', 'Can the use of Linaprove M 2.5/1000 Tablet cause lactic acidosis?', 'Yes, the use of Linaprove M 2.5/1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaprove M 2.5/1000 Tablet and immediately consult your doctor.'),
(15602, 'Linaprove M 2.5/1000 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove M 2.5/1000 Tablet', 'What are the possible side effects of Linaprove M 2.5/1000 Tablet?', 'The use of Linaprove M 2.5/1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15603, 'Linaprove M 2.5/1000 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove M 2.5/1000 Tablet', 'Are there any specific conditions in which Linaprove M 2.5/1000 Tablet should not be taken?', 'The use of Linaprove M 2.5/1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaprove M 2.5/1000 Tablet.'),
(15604, 'Linaprove M 2.5/1000 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove M 2.5/1000 Tablet', 'Is it safe to take alcohol while I am also taking Linaprove M 2.5/1000 Tablet?', 'No, it is not safe to take Linaprove M 2.5/1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15605, 'Linaprove M 2.5/1000 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove M 2.5/1000 Tablet', 'What are the instructions for the storage and disposal of Linaprove M 2.5/1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15606, 'Linaprove M 2.5/1000 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove M 2.5/1000 Tablet', 'Can the use of Linaprove M 2.5/1000 Tablet cause hypoglycemia?', 'The use of Linaprove M 2.5/1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15607, 'Linaprove M 2.5/1000 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Linaprove M 2.5/1000 Tablet', 'Can the use of Linaprove M 2.5/1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaprove M 2.5/1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15608, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'What if I give an excess of Linapt 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(15609, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linapt 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(15610, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linapt 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linapt 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(15611, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'Can Linapt 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linapt 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(15612, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'Can other medicines be given at the same time as Linapt 100mg Dry Syrup?', 'Linapt 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linapt 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(15613, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linapt 100mg Dry Syrup?', 'For children receiving Linapt 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(15614, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linapt 100mg Dry Syrup to my child?', 'Avoid giving Linapt 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linapt 100mg Dry Syrup to your child.'),
(15615, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'What food items should my child avoid while taking Linapt 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linapt 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(15616, 'Linapt 100mg Dry Syrup', 'Curosis Healthcare Pvt Ltd', 'Linapt 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linapt 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linapt 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(15617, 'Linapt 600mg Tablet', 'Curosis Healthcare Pvt Ltd', 'Linapt 600mg Tablet', 'Can the use of Linapt 600mg Tablet cause diarrhea?', 'Yes, the use of Linapt 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15618, 'Linapt 600mg Tablet', 'Curosis Healthcare Pvt Ltd', 'Linapt 600mg Tablet', 'What foods should I avoid while taking Linapt 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linapt 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(15619, 'Linaptin 5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin 5mg Tablet', 'What is Linaptin 5mg Tablet used for?', 'Linaptin 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaptin 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaptin 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15620, 'Linaptin 5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin 5mg Tablet', 'When should I take Linaptin 5mg Tablet? What if I miss a dose?', 'Linaptin 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15621, 'Linaptin 5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin 5mg Tablet', 'Is Linaptin 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaptin 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15622, 'Linaptin 5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin 5mg Tablet', 'Is Linaptin 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaptin 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15623, 'Linaptin 5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin 5mg Tablet', 'For how long I have to take Linaptin 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaptin 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15624, 'Linaptin M 500mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 500mg/2.5mg Tablet', 'Can the use of Linaptin M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaptin M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaptin M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15625, 'Linaptin M 500mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 500mg/2.5mg Tablet', 'What are the possible side effects of Linaptin M 500mg/2.5mg Tablet?', 'The use of Linaptin M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15626, 'Linaptin M 500mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linaptin M 500mg/2.5mg Tablet should not be taken?', 'The use of Linaptin M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaptin M 500mg/2.5mg Tablet.'),
(15627, 'Linaptin M 500mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaptin M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaptin M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15628, 'Linaptin M 500mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaptin M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15629, 'Linaptin M 500mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 500mg/2.5mg Tablet', 'Can the use of Linaptin M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaptin M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15630, 'Linaptin M 500mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 500mg/2.5mg Tablet', 'Can the use of Linaptin M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaptin M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15631, 'Linaptin M 850mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 850mg/2.5mg Tablet', 'Can the use of Linaptin M 850mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaptin M 850mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaptin M 850mg/2.5mg Tablet and immediately consult your doctor.'),
(15632, 'Linaptin M 850mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 850mg/2.5mg Tablet', 'What are the possible side effects of Linaptin M 850mg/2.5mg Tablet?', 'The use of Linaptin M 850mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15633, 'Linaptin M 850mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 850mg/2.5mg Tablet', 'Are there any specific conditions in which Linaptin M 850mg/2.5mg Tablet should not be taken?', 'The use of Linaptin M 850mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaptin M 850mg/2.5mg Tablet.'),
(15634, 'Linaptin M 850mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 850mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaptin M 850mg/2.5mg Tablet?', 'No, it is not safe to take Linaptin M 850mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15635, 'Linaptin M 850mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 850mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaptin M 850mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15636, 'Linaptin M 850mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 850mg/2.5mg Tablet', 'Can the use of Linaptin M 850mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaptin M 850mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15637, 'Linaptin M 850mg/2.5mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Linaptin M 850mg/2.5mg Tablet', 'Can the use of Linaptin M 850mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaptin M 850mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15638, 'Linaq M 500mg/2.5mg Tablet', 'Q Check Pharmaceuticals Private Limited', 'Linaq M 500mg/2.5mg Tablet', 'Can the use of Linaq M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaq M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaq M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15639, 'Linaq M 500mg/2.5mg Tablet', 'Q Check Pharmaceuticals Private Limited', 'Linaq M 500mg/2.5mg Tablet', 'What are the possible side effects of Linaq M 500mg/2.5mg Tablet?', 'The use of Linaq M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15640, 'Linaq M 500mg/2.5mg Tablet', 'Q Check Pharmaceuticals Private Limited', 'Linaq M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linaq M 500mg/2.5mg Tablet should not be taken?', 'The use of Linaq M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaq M 500mg/2.5mg Tablet.'),
(15641, 'Linaq M 500mg/2.5mg Tablet', 'Q Check Pharmaceuticals Private Limited', 'Linaq M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaq M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaq M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15642, 'Linaq M 500mg/2.5mg Tablet', 'Q Check Pharmaceuticals Private Limited', 'Linaq M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaq M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15643, 'Linaq M 500mg/2.5mg Tablet', 'Q Check Pharmaceuticals Private Limited', 'Linaq M 500mg/2.5mg Tablet', 'Can the use of Linaq M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaq M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15644, 'Linaq M 500mg/2.5mg Tablet', 'Q Check Pharmaceuticals Private Limited', 'Linaq M 500mg/2.5mg Tablet', 'Can the use of Linaq M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaq M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15645, 'Linaque 600mg Tablet', 'Rameshwar Sante Private Limited', 'Linaque 600mg Tablet', 'Can the use of Linaque 600mg Tablet cause diarrhea?', 'Yes, the use of Linaque 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15646, 'Linaque 600mg Tablet', 'Rameshwar Sante Private Limited', 'Linaque 600mg Tablet', 'What foods should I avoid while taking Linaque 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linaque 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(15647, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'What is Linar P Tablet?', 'Linar P Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(15648, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Is it safe to use Linar P Tablet?', 'Linar P Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(15649, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Can I stop taking Linar P Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Linar P Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(15650, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Can the use of Linar P Tablet cause nausea and vomiting?', 'Yes, the use of Linar P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(15651, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Can the use of Linar P Tablet cause dizziness?', 'Yes, the use of Linar P Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(15652, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Are there any specific contraindications associated with the use of Linar P Tablet?', 'The use of Linar P Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(15653, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Can Linar P Tablet be taken with vitamin B-complex?', 'Yes, Linar P Tablet can be taken with vitamin B-complex preparations. While Linar P Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(15654, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Is Linar P Tablet helpful in relieving stomach pain?', 'No, Linar P Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(15655, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Can the use of Linar P Tablet cause damage to kidneys?', 'Yes, the long-term use of Linar P Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15656, 'Linar P Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar P Tablet', 'Is it safe to take a higher dose of Linar P Tablet than recommended?', 'No, taking higher than the recommended dose of Linar P Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(15657, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'What is Linar SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(15658, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Is it safe to take Linar SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(15659, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Can I stop taking Linar SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(15660, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Can Linar SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(15661, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Can Linar SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(15662, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Are there any specific contraindications associated with taking Linar SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(15663, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Can I take Linar SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(15664, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Can the use of Linar SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(15665, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'Can I take a higher dose of Linar SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(15666, 'Linar SP Tablet', 'Xlinar Pharmaceuticals Pvt Ltd', 'Linar SP Tablet', 'What are the instructions for storage and disposal of Linar SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15667, 'Linares M Forte 1000mg/5mg Tablet', 'Eris Lifesciences Ltd', 'Linares M Forte 1000mg/5mg Tablet', 'Can the use of Linares M Forte 1000mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linares M Forte 1000mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linares M Forte 1000mg/5mg Tablet and immediately consult your doctor.'),
(15668, 'Linares M Forte 1000mg/5mg Tablet', 'Eris Lifesciences Ltd', 'Linares M Forte 1000mg/5mg Tablet', 'What are the possible side effects of Linares M Forte 1000mg/5mg Tablet?', 'The use of Linares M Forte 1000mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15669, 'Linares M Forte 1000mg/5mg Tablet', 'Eris Lifesciences Ltd', 'Linares M Forte 1000mg/5mg Tablet', 'Are there any specific conditions in which Linares M Forte 1000mg/5mg Tablet should not be taken?', 'The use of Linares M Forte 1000mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linares M Forte 1000mg/5mg Tablet.'),
(15670, 'Linares M Forte 1000mg/5mg Tablet', 'Eris Lifesciences Ltd', 'Linares M Forte 1000mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linares M Forte 1000mg/5mg Tablet?', 'No, it is not safe to take Linares M Forte 1000mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15671, 'Linares M Forte 1000mg/5mg Tablet', 'Eris Lifesciences Ltd', 'Linares M Forte 1000mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linares M Forte 1000mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15672, 'Linares M Forte 1000mg/5mg Tablet', 'Eris Lifesciences Ltd', 'Linares M Forte 1000mg/5mg Tablet', 'Can the use of Linares M Forte 1000mg/5mg Tablet cause hypoglycemia?', 'The use of Linares M Forte 1000mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15673, 'Linares M Forte 1000mg/5mg Tablet', 'Eris Lifesciences Ltd', 'Linares M Forte 1000mg/5mg Tablet', 'Can the use of Linares M Forte 1000mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linares M Forte 1000mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15674, 'Linares M Tablet', 'Eris Lifesciences Ltd', 'Linares M Tablet', 'Can the use of Linares M Tablet cause lactic acidosis?', 'Yes, the use of Linares M Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linares M Tablet and immediately consult your doctor.'),
(15675, 'Linares M Tablet', 'Eris Lifesciences Ltd', 'Linares M Tablet', 'What are the possible side effects of Linares M Tablet?', 'The use of Linares M Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15676, 'Linares M Tablet', 'Eris Lifesciences Ltd', 'Linares M Tablet', 'Are there any specific conditions in which Linares M Tablet should not be taken?', 'The use of Linares M Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linares M Tablet.'),
(15677, 'Linares M Tablet', 'Eris Lifesciences Ltd', 'Linares M Tablet', 'Is it safe to take alcohol while I am also taking Linares M Tablet?', 'No, it is not safe to take Linares M Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15678, 'Linares M Tablet', 'Eris Lifesciences Ltd', 'Linares M Tablet', 'What are the instructions for the storage and disposal of Linares M Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15679, 'Linares M Tablet', 'Eris Lifesciences Ltd', 'Linares M Tablet', 'Can the use of Linares M Tablet cause hypoglycemia?', 'The use of Linares M Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15680, 'Linares M Tablet', 'Eris Lifesciences Ltd', 'Linares M Tablet', 'Can the use of Linares M Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linares M Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15681, 'Linares Tablet', 'Eris Lifesciences Ltd', 'Linares Tablet', 'What is Linares Tablet used for?', 'Linares Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linares Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linares Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15682, 'Linares Tablet', 'Eris Lifesciences Ltd', 'Linares Tablet', 'When should I take Linares Tablet? What if I miss a dose?', 'Linares Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15683, 'Linares Tablet', 'Eris Lifesciences Ltd', 'Linares Tablet', 'Is Linares Tablet bad for kidneys?', 'No, there is no evidence that Linares Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15684, 'Linares Tablet', 'Eris Lifesciences Ltd', 'Linares Tablet', 'Is Linares Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linares Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15685, 'Linares Tablet', 'Eris Lifesciences Ltd', 'Linares Tablet', 'For how long I have to take Linares Tablet? Can I stop the medication?', 'You should keep taking Linares Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15686, 'Linarite 5mg Tablet', 'Eswar Therapeutics Pvt Ltd', 'Linarite 5mg Tablet', 'What is Linarite 5mg Tablet used for?', 'Linarite 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linarite 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linarite 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15687, 'Linarite 5mg Tablet', 'Eswar Therapeutics Pvt Ltd', 'Linarite 5mg Tablet', 'When should I take Linarite 5mg Tablet? What if I miss a dose?', 'Linarite 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15688, 'Linarite 5mg Tablet', 'Eswar Therapeutics Pvt Ltd', 'Linarite 5mg Tablet', 'Is Linarite 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linarite 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15689, 'Linarite 5mg Tablet', 'Eswar Therapeutics Pvt Ltd', 'Linarite 5mg Tablet', 'Is Linarite 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linarite 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15690, 'Linarite 5mg Tablet', 'Eswar Therapeutics Pvt Ltd', 'Linarite 5mg Tablet', 'For how long I have to take Linarite 5mg Tablet? Can I stop the medication?', 'You should keep taking Linarite 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15691, 'Linariz 1% Cream', 'Aroma Remedies', 'Linariz 1% Cream', 'Is Linariz 1% Cream safe in pregnancy?', 'Linariz 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Linariz 1% Cream.'),
(15692, 'Linariz 1% Cream', 'Aroma Remedies', 'Linariz 1% Cream', 'Is Linariz 1% Cream fungicidal or Fungistatic?', 'Linariz 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(15693, 'Linariz 1% Cream', 'Aroma Remedies', 'Linariz 1% Cream', 'How to use Linariz 1% Cream?', 'Use Linariz 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(15694, 'Linariz 1% Cream', 'Aroma Remedies', 'Linariz 1% Cream', 'How long does it take for Linariz 1% Cream to work?', 'For different ailments, Linariz 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(15695, 'Linariz 1% Cream', 'Aroma Remedies', 'Linariz 1% Cream', 'How should I store Linariz 1% Cream?', 'Keep Linariz 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(15696, 'Linariz 1% Cream', 'Aroma Remedies', 'Linariz 1% Cream', 'Is Linariz 1% Cream safe to use in children?', 'Yes, Linariz 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(15697, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'What is Linark 5mg Tablet? What is it used for?', 'Linark 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(15698, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'What should I tell my doctor before taking Linark 5mg Tablet?', 'Before taking Linark 5mg Tablet you must tell your doctor if you are allergic to Linark 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Linark 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(15699, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'What time of the day should I take Linark 5mg Tablet?', 'Linark 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Linark 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Linark 5mg Tablet, please consult your doctor.'),
(15700, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'I feel better after taking Linark 5mg Tablet, can I stop taking it?', 'No, continue taking Linark 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Linark 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(15701, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'Will Linark 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Linark 5mg Tablet may make you feel dizzy or lightheaded. If Linark 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(15702, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'What other lifestyle changes should I make while taking Linark 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Linark 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Linark 5mg Tablet and to keep yourself healthy.'),
(15703, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'I have diabetes. Does Linark 5mg Tablet have any effect on blood sugar levels?', 'Yes, Linark 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(15704, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'After starting Linark 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Linark 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Linark 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Linark 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(15705, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'Can Linark 5mg Tablet affect my fertility?', 'There is no evidence that Linark 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Linark 5mg Tablet is not recommended in pregnancy.'),
(15706, 'Linark 5mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Linark 5mg Tablet', 'Can Linark 5mg Tablet increase potassium levels? If so, what should be done?', 'Linark 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Linark 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(15707, 'Linasave 5 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave 5 Tablet', 'What is Linasave 5 Tablet used for?', 'Linasave 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linasave 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linasave 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15708, 'Linasave 5 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave 5 Tablet', 'When should I take Linasave 5 Tablet? What if I miss a dose?', 'Linasave 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15709, 'Linasave 5 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave 5 Tablet', 'Is Linasave 5 Tablet bad for kidneys?', 'No, there is no evidence that Linasave 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15710, 'Linasave 5 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave 5 Tablet', 'Is Linasave 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linasave 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15711, 'Linasave 5 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave 5 Tablet', 'For how long I have to take Linasave 5 Tablet? Can I stop the medication?', 'You should keep taking Linasave 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15712, 'Linasave-M 2.5/1000 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/1000 Tablet', 'Can the use of Linasave-M 2.5/1000 Tablet cause lactic acidosis?', 'Yes, the use of Linasave-M 2.5/1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linasave-M 2.5/1000 Tablet and immediately consult your doctor.'),
(15713, 'Linasave-M 2.5/1000 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/1000 Tablet', 'What are the possible side effects of Linasave-M 2.5/1000 Tablet?', 'The use of Linasave-M 2.5/1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15714, 'Linasave-M 2.5/1000 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/1000 Tablet', 'Are there any specific conditions in which Linasave-M 2.5/1000 Tablet should not be taken?', 'The use of Linasave-M 2.5/1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linasave-M 2.5/1000 Tablet.'),
(15715, 'Linasave-M 2.5/1000 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/1000 Tablet', 'Is it safe to take alcohol while I am also taking Linasave-M 2.5/1000 Tablet?', 'No, it is not safe to take Linasave-M 2.5/1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15716, 'Linasave-M 2.5/1000 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/1000 Tablet', 'What are the instructions for the storage and disposal of Linasave-M 2.5/1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15717, 'Linasave-M 2.5/1000 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/1000 Tablet', 'Can the use of Linasave-M 2.5/1000 Tablet cause hypoglycemia?', 'The use of Linasave-M 2.5/1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15718, 'Linasave-M 2.5/1000 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/1000 Tablet', 'Can the use of Linasave-M 2.5/1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linasave-M 2.5/1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15719, 'Linasave-M 2.5/500 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/500 Tablet', 'Can the use of Linasave-M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linasave-M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linasave-M 2.5/500 Tablet and immediately consult your doctor.'),
(15720, 'Linasave-M 2.5/500 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/500 Tablet', 'What are the possible side effects of Linasave-M 2.5/500 Tablet?', 'The use of Linasave-M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15721, 'Linasave-M 2.5/500 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/500 Tablet', 'Are there any specific conditions in which Linasave-M 2.5/500 Tablet should not be taken?', 'The use of Linasave-M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linasave-M 2.5/500 Tablet.'),
(15722, 'Linasave-M 2.5/500 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Linasave-M 2.5/500 Tablet?', 'No, it is not safe to take Linasave-M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15723, 'Linasave-M 2.5/500 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Linasave-M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15724, 'Linasave-M 2.5/500 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/500 Tablet', 'Can the use of Linasave-M 2.5/500 Tablet cause hypoglycemia?', 'The use of Linasave-M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15725, 'Linasave-M 2.5/500 Tablet', 'The Biogeniter Tessconix Healthcare', 'Linasave-M 2.5/500 Tablet', 'Can the use of Linasave-M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linasave-M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15726, 'Linashine 5mg Tablet', 'Erinyle Pharma', 'Linashine 5mg Tablet', 'What is Linashine 5mg Tablet used for?', 'Linashine 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linashine 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linashine 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15727, 'Linashine 5mg Tablet', 'Erinyle Pharma', 'Linashine 5mg Tablet', 'When should I take Linashine 5mg Tablet? What if I miss a dose?', 'Linashine 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15728, 'Linashine 5mg Tablet', 'Erinyle Pharma', 'Linashine 5mg Tablet', 'Is Linashine 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linashine 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15729, 'Linashine 5mg Tablet', 'Erinyle Pharma', 'Linashine 5mg Tablet', 'Is Linashine 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linashine 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15730, 'Linashine 5mg Tablet', 'Erinyle Pharma', 'Linashine 5mg Tablet', 'For how long I have to take Linashine 5mg Tablet? Can I stop the medication?', 'You should keep taking Linashine 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15731, 'Linashine M 500mg/2.5mg Tablet', 'Erinyle Pharma', 'Linashine M 500mg/2.5mg Tablet', 'Can the use of Linashine M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linashine M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linashine M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15732, 'Linashine M 500mg/2.5mg Tablet', 'Erinyle Pharma', 'Linashine M 500mg/2.5mg Tablet', 'What are the possible side effects of Linashine M 500mg/2.5mg Tablet?', 'The use of Linashine M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15733, 'Linashine M 500mg/2.5mg Tablet', 'Erinyle Pharma', 'Linashine M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linashine M 500mg/2.5mg Tablet should not be taken?', 'The use of Linashine M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linashine M 500mg/2.5mg Tablet.'),
(15734, 'Linashine M 500mg/2.5mg Tablet', 'Erinyle Pharma', 'Linashine M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linashine M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linashine M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15735, 'Linashine M 500mg/2.5mg Tablet', 'Erinyle Pharma', 'Linashine M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linashine M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15736, 'Linashine M 500mg/2.5mg Tablet', 'Erinyle Pharma', 'Linashine M 500mg/2.5mg Tablet', 'Can the use of Linashine M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linashine M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15737, 'Linashine M 500mg/2.5mg Tablet', 'Erinyle Pharma', 'Linashine M 500mg/2.5mg Tablet', 'Can the use of Linashine M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linashine M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15738, 'Linasite 5 Tablet', 'Neomis Healthcare Llp', 'Linasite 5 Tablet', 'What is Linasite 5 Tablet used for?', 'Linasite 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linasite 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linasite 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15739, 'Linasite 5 Tablet', 'Neomis Healthcare Llp', 'Linasite 5 Tablet', 'When should I take Linasite 5 Tablet? What if I miss a dose?', 'Linasite 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15740, 'Linasite 5 Tablet', 'Neomis Healthcare Llp', 'Linasite 5 Tablet', 'Is Linasite 5 Tablet bad for kidneys?', 'No, there is no evidence that Linasite 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15741, 'Linasite 5 Tablet', 'Neomis Healthcare Llp', 'Linasite 5 Tablet', 'Is Linasite 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linasite 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15742, 'Linasite 5 Tablet', 'Neomis Healthcare Llp', 'Linasite 5 Tablet', 'For how long I have to take Linasite 5 Tablet? Can I stop the medication?', 'You should keep taking Linasite 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15743, 'Linasite-M Tablet', 'Neomis Healthcare Llp', 'Linasite-M Tablet', 'Can the use of Linasite-M Tablet cause lactic acidosis?', 'Yes, the use of Linasite-M Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linasite-M Tablet and immediately consult your doctor.'),
(15744, 'Linasite-M Tablet', 'Neomis Healthcare Llp', 'Linasite-M Tablet', 'What are the possible side effects of Linasite-M Tablet?', 'The use of Linasite-M Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15745, 'Linasite-M Tablet', 'Neomis Healthcare Llp', 'Linasite-M Tablet', 'Are there any specific conditions in which Linasite-M Tablet should not be taken?', 'The use of Linasite-M Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linasite-M Tablet.'),
(15746, 'Linasite-M Tablet', 'Neomis Healthcare Llp', 'Linasite-M Tablet', 'Is it safe to take alcohol while I am also taking Linasite-M Tablet?', 'No, it is not safe to take Linasite-M Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15747, 'Linasite-M Tablet', 'Neomis Healthcare Llp', 'Linasite-M Tablet', 'What are the instructions for the storage and disposal of Linasite-M Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15748, 'Linasite-M Tablet', 'Neomis Healthcare Llp', 'Linasite-M Tablet', 'Can the use of Linasite-M Tablet cause hypoglycemia?', 'The use of Linasite-M Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15749, 'Linasite-M Tablet', 'Neomis Healthcare Llp', 'Linasite-M Tablet', 'Can the use of Linasite-M Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linasite-M Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15750, 'Linasmart 5 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart 5 Tablet', 'Q. What is Linasmart 5 Tablet used for?', 'Linasmart 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linasmart 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linasmart 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15751, 'Linasmart 5 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart 5 Tablet', 'Q. When should I take Linasmart 5 Tablet? What if I miss a dose?', 'Linasmart 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15752, 'Linasmart 5 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart 5 Tablet', 'Q. Is Linasmart 5 Tablet bad for kidneys?', 'No, there is no evidence that Linasmart 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15753, 'Linasmart 5 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart 5 Tablet', 'Q. Is Linasmart 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linasmart 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15754, 'Linasmart 5 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart 5 Tablet', 'Q. For how long I have to take Linasmart 5 Tablet? Can I stop the medication?', 'You should keep taking Linasmart 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15755, 'Linasmart M 2.5/500 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart M 2.5/500 Tablet', 'Can the use of Linasmart M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linasmart M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linasmart M 2.5/500 Tablet and immediately consult your doctor.'),
(15756, 'Linasmart M 2.5/500 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart M 2.5/500 Tablet', 'What are the possible side effects of Linasmart M 2.5/500 Tablet?', 'The use of Linasmart M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15757, 'Linasmart M 2.5/500 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart M 2.5/500 Tablet', 'Are there any specific conditions in which Linasmart M 2.5/500 Tablet should not be taken?', 'The use of Linasmart M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linasmart M 2.5/500 Tablet.'),
(15758, 'Linasmart M 2.5/500 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Linasmart M 2.5/500 Tablet?', 'No, it is not safe to take Linasmart M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15759, 'Linasmart M 2.5/500 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Linasmart M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15760, 'Linasmart M 2.5/500 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart M 2.5/500 Tablet', 'Can the use of Linasmart M 2.5/500 Tablet cause hypoglycemia?', 'The use of Linasmart M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15761, 'Linasmart M 2.5/500 Tablet', 'Healing Pharma India Pvt Ltd', 'Linasmart M 2.5/500 Tablet', 'Can the use of Linasmart M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linasmart M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15762, 'Linasulin-M 1000 Tablet', 'Siskan Pharma', 'Linasulin-M 1000 Tablet', 'Can the use of Linasulin-M 1000 Tablet cause lactic acidosis?', 'Yes, the use of Linasulin-M 1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linasulin-M 1000 Tablet and immediately consult your doctor.'),
(15763, 'Linasulin-M 1000 Tablet', 'Siskan Pharma', 'Linasulin-M 1000 Tablet', 'What are the possible side effects of Linasulin-M 1000 Tablet?', 'The use of Linasulin-M 1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15764, 'Linasulin-M 1000 Tablet', 'Siskan Pharma', 'Linasulin-M 1000 Tablet', 'Are there any specific conditions in which Linasulin-M 1000 Tablet should not be taken?', 'The use of Linasulin-M 1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linasulin-M 1000 Tablet.'),
(15765, 'Linasulin-M 1000 Tablet', 'Siskan Pharma', 'Linasulin-M 1000 Tablet', 'Is it safe to take alcohol while I am also taking Linasulin-M 1000 Tablet?', 'No, it is not safe to take Linasulin-M 1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15766, 'Linasulin-M 1000 Tablet', 'Siskan Pharma', 'Linasulin-M 1000 Tablet', 'What are the instructions for the storage and disposal of Linasulin-M 1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15767, 'Linasulin-M 1000 Tablet', 'Siskan Pharma', 'Linasulin-M 1000 Tablet', 'Can the use of Linasulin-M 1000 Tablet cause hypoglycemia?', 'The use of Linasulin-M 1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15768, 'Linasulin-M 1000 Tablet', 'Siskan Pharma', 'Linasulin-M 1000 Tablet', 'Can the use of Linasulin-M 1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linasulin-M 1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15769, 'Linasulin-M 500 Tablet', 'Siskan Pharma', 'Linasulin-M 500 Tablet', 'Can the use of Linasulin-M 500 Tablet cause lactic acidosis?', 'Yes, the use of Linasulin-M 500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linasulin-M 500 Tablet and immediately consult your doctor.'),
(15770, 'Linasulin-M 500 Tablet', 'Siskan Pharma', 'Linasulin-M 500 Tablet', 'What are the possible side effects of Linasulin-M 500 Tablet?', 'The use of Linasulin-M 500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15771, 'Linasulin-M 500 Tablet', 'Siskan Pharma', 'Linasulin-M 500 Tablet', 'Are there any specific conditions in which Linasulin-M 500 Tablet should not be taken?', 'The use of Linasulin-M 500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linasulin-M 500 Tablet.'),
(15772, 'Linasulin-M 500 Tablet', 'Siskan Pharma', 'Linasulin-M 500 Tablet', 'Is it safe to take alcohol while I am also taking Linasulin-M 500 Tablet?', 'No, it is not safe to take Linasulin-M 500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15773, 'Linasulin-M 500 Tablet', 'Siskan Pharma', 'Linasulin-M 500 Tablet', 'What are the instructions for the storage and disposal of Linasulin-M 500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15774, 'Linasulin-M 500 Tablet', 'Siskan Pharma', 'Linasulin-M 500 Tablet', 'Can the use of Linasulin-M 500 Tablet cause hypoglycemia?', 'The use of Linasulin-M 500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15775, 'Linasulin-M 500 Tablet', 'Siskan Pharma', 'Linasulin-M 500 Tablet', 'Can the use of Linasulin-M 500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linasulin-M 500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15776, 'Linatab 5mg Tablet', 'Incepta Pharma', 'Linatab 5mg Tablet', 'What is Linatab 5mg Tablet used for?', 'Linatab 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linatab 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linatab 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15777, 'Linatab 5mg Tablet', 'Incepta Pharma', 'Linatab 5mg Tablet', 'When should I take Linatab 5mg Tablet? What if I miss a dose?', 'Linatab 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15778, 'Linatab 5mg Tablet', 'Incepta Pharma', 'Linatab 5mg Tablet', 'Is Linatab 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linatab 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15779, 'Linatab 5mg Tablet', 'Incepta Pharma', 'Linatab 5mg Tablet', 'Is Linatab 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linatab 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15780, 'Linatab 5mg Tablet', 'Incepta Pharma', 'Linatab 5mg Tablet', 'For how long I have to take Linatab 5mg Tablet? Can I stop the medication?', 'You should keep taking Linatab 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15781, 'Linatel 5mg Tablet', 'Ranmarc Labs', 'Linatel 5mg Tablet', 'What is Linatel 5mg Tablet used for?', 'Linatel 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linatel 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linatel 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15782, 'Linatel 5mg Tablet', 'Ranmarc Labs', 'Linatel 5mg Tablet', 'When should I take Linatel 5mg Tablet? What if I miss a dose?', 'Linatel 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15783, 'Linatel 5mg Tablet', 'Ranmarc Labs', 'Linatel 5mg Tablet', 'Is Linatel 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linatel 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15784, 'Linatel 5mg Tablet', 'Ranmarc Labs', 'Linatel 5mg Tablet', 'Is Linatel 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linatel 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15785, 'Linatel 5mg Tablet', 'Ranmarc Labs', 'Linatel 5mg Tablet', 'For how long I have to take Linatel 5mg Tablet? Can I stop the medication?', 'You should keep taking Linatel 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15786, 'Linatin 5mg Tablet', 'Deltas Pharma', 'Linatin 5mg Tablet (Deltas Pharma)', 'What is Linatin 5mg Tablet used for?', 'Linatin 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linatin 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linatin 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15787, 'Linatin 5mg Tablet', 'Deltas Pharma', 'Linatin 5mg Tablet (Deltas Pharma)', 'When should I take Linatin 5mg Tablet? What if I miss a dose?', 'Linatin 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15788, 'Linatin 5mg Tablet', 'Deltas Pharma', 'Linatin 5mg Tablet (Deltas Pharma)', 'Is Linatin 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linatin 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15789, 'Linatin 5mg Tablet', 'Deltas Pharma', 'Linatin 5mg Tablet (Deltas Pharma)', 'Is Linatin 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linatin 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15790, 'Linatin 5mg Tablet', 'Deltas Pharma', 'Linatin 5mg Tablet (Deltas Pharma)', 'For how long I have to take Linatin 5mg Tablet? Can I stop the medication?', 'You should keep taking Linatin 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15791, 'Linatin 5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin 5mg Tablet (Ajanta Pharma Ltd)', 'What is Linatin 5mg Tablet used for?', 'Linatin 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linatin 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linatin 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15792, 'Linatin 5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin 5mg Tablet (Ajanta Pharma Ltd)', 'When should I take Linatin 5mg Tablet? What if I miss a dose?', 'Linatin 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15793, 'Linatin 5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin 5mg Tablet (Ajanta Pharma Ltd)', 'Is Linatin 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linatin 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15794, 'Linatin 5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin 5mg Tablet (Ajanta Pharma Ltd)', 'Is Linatin 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linatin 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15795, 'Linatin 5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin 5mg Tablet (Ajanta Pharma Ltd)', 'For how long I have to take Linatin 5mg Tablet? Can I stop the medication?', 'You should keep taking Linatin 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15796, 'Linatin M 1000mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 1000mg/2.5mg Tablet', 'Can the use of Linatin M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linatin M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linatin M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15797, 'Linatin M 1000mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linatin M 1000mg/2.5mg Tablet?', 'The use of Linatin M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15798, 'Linatin M 1000mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linatin M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linatin M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linatin M 1000mg/2.5mg Tablet.'),
(15799, 'Linatin M 1000mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linatin M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linatin M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15800, 'Linatin M 1000mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linatin M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15801, 'Linatin M 1000mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 1000mg/2.5mg Tablet', 'Can the use of Linatin M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linatin M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15802, 'Linatin M 1000mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 1000mg/2.5mg Tablet', 'Can the use of Linatin M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linatin M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15803, 'Linatin M 500mg/2.5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin M 500mg/2.5mg Tablet (Ajanta Pharma Ltd)', 'Can the use of Linatin M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linatin M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linatin M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15804, 'Linatin M 500mg/2.5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin M 500mg/2.5mg Tablet (Ajanta Pharma Ltd)', 'What are the possible side effects of Linatin M 500mg/2.5mg Tablet?', 'The use of Linatin M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15805, 'Linatin M 500mg/2.5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin M 500mg/2.5mg Tablet (Ajanta Pharma Ltd)', 'Are there any specific conditions in which Linatin M 500mg/2.5mg Tablet should not be taken?', 'The use of Linatin M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linatin M 500mg/2.5mg Tablet.'),
(15806, 'Linatin M 500mg/2.5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin M 500mg/2.5mg Tablet (Ajanta Pharma Ltd)', 'Is it safe to take alcohol while I am also taking Linatin M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linatin M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15807, 'Linatin M 500mg/2.5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin M 500mg/2.5mg Tablet (Ajanta Pharma Ltd)', 'What are the instructions for the storage and disposal of Linatin M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15808, 'Linatin M 500mg/2.5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin M 500mg/2.5mg Tablet (Ajanta Pharma Ltd)', 'Can the use of Linatin M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linatin M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15809, 'Linatin M 500mg/2.5mg Tablet', 'Ajanta Pharma Ltd', 'Linatin M 500mg/2.5mg Tablet (Ajanta Pharma Ltd)', 'Can the use of Linatin M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linatin M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15810, 'Linatin M 500mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 500mg/2.5mg Tablet (Deltas Pharma)', 'Can the use of Linatin M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linatin M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linatin M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15811, 'Linatin M 500mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 500mg/2.5mg Tablet (Deltas Pharma)', 'What are the possible side effects of Linatin M 500mg/2.5mg Tablet?', 'The use of Linatin M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15812, 'Linatin M 500mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 500mg/2.5mg Tablet (Deltas Pharma)', 'Are there any specific conditions in which Linatin M 500mg/2.5mg Tablet should not be taken?', 'The use of Linatin M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linatin M 500mg/2.5mg Tablet.'),
(15813, 'Linatin M 500mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 500mg/2.5mg Tablet (Deltas Pharma)', 'Is it safe to take alcohol while I am also taking Linatin M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linatin M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15814, 'Linatin M 500mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 500mg/2.5mg Tablet (Deltas Pharma)', 'What are the instructions for the storage and disposal of Linatin M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15815, 'Linatin M 500mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 500mg/2.5mg Tablet (Deltas Pharma)', 'Can the use of Linatin M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linatin M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15816, 'Linatin M 500mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 500mg/2.5mg Tablet (Deltas Pharma)', 'Can the use of Linatin M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linatin M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15817, 'Linatin M 850mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 850mg/2.5mg Tablet', 'Can the use of Linatin M 850mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linatin M 850mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linatin M 850mg/2.5mg Tablet and immediately consult your doctor.'),
(15818, 'Linatin M 850mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 850mg/2.5mg Tablet', 'What are the possible side effects of Linatin M 850mg/2.5mg Tablet?', 'The use of Linatin M 850mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15819, 'Linatin M 850mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 850mg/2.5mg Tablet', 'Are there any specific conditions in which Linatin M 850mg/2.5mg Tablet should not be taken?', 'The use of Linatin M 850mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linatin M 850mg/2.5mg Tablet.'),
(15820, 'Linatin M 850mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 850mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linatin M 850mg/2.5mg Tablet?', 'No, it is not safe to take Linatin M 850mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15821, 'Linatin M 850mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 850mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linatin M 850mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15822, 'Linatin M 850mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 850mg/2.5mg Tablet', 'Can the use of Linatin M 850mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linatin M 850mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15823, 'Linatin M 850mg/2.5mg Tablet', 'Deltas Pharma', 'Linatin M 850mg/2.5mg Tablet', 'Can the use of Linatin M 850mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linatin M 850mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15824, 'Linatis 5 Tablet', 'Nicholas Healthcare Limited', 'Linatis 5 Tablet', 'What is Linatis 5 Tablet used for?', 'Linatis 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linatis 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linatis 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15825, 'Linatis 5 Tablet', 'Nicholas Healthcare Limited', 'Linatis 5 Tablet', 'When should I take Linatis 5 Tablet? What if I miss a dose?', 'Linatis 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15826, 'Linatis 5 Tablet', 'Nicholas Healthcare Limited', 'Linatis 5 Tablet', 'Is Linatis 5 Tablet bad for kidneys?', 'No, there is no evidence that Linatis 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15827, 'Linatis 5 Tablet', 'Nicholas Healthcare Limited', 'Linatis 5 Tablet', 'Is Linatis 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linatis 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15828, 'Linatis 5 Tablet', 'Nicholas Healthcare Limited', 'Linatis 5 Tablet', 'For how long I have to take Linatis 5 Tablet? Can I stop the medication?', 'You should keep taking Linatis 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15829, 'Linatis M 2.5/500 Tablet', 'Nicholas Healthcare Limited', 'Linatis M 2.5/500 Tablet', 'Can the use of Linatis M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linatis M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linatis M 2.5/500 Tablet and immediately consult your doctor.'),
(15830, 'Linatis M 2.5/500 Tablet', 'Nicholas Healthcare Limited', 'Linatis M 2.5/500 Tablet', 'What are the possible side effects of Linatis M 2.5/500 Tablet?', 'The use of Linatis M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15831, 'Linatis M 2.5/500 Tablet', 'Nicholas Healthcare Limited', 'Linatis M 2.5/500 Tablet', 'Are there any specific conditions in which Linatis M 2.5/500 Tablet should not be taken?', 'The use of Linatis M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linatis M 2.5/500 Tablet.'),
(15832, 'Linatis M 2.5/500 Tablet', 'Nicholas Healthcare Limited', 'Linatis M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Linatis M 2.5/500 Tablet?', 'No, it is not safe to take Linatis M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15833, 'Linatis M 2.5/500 Tablet', 'Nicholas Healthcare Limited', 'Linatis M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Linatis M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15834, 'Linatis M 2.5/500 Tablet', 'Nicholas Healthcare Limited', 'Linatis M 2.5/500 Tablet', 'Can the use of Linatis M 2.5/500 Tablet cause hypoglycemia?', 'The use of Linatis M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15835, 'Linatis M 2.5/500 Tablet', 'Nicholas Healthcare Limited', 'Linatis M 2.5/500 Tablet', 'Can the use of Linatis M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linatis M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15836, 'Linatus 5mg Tablet', 'Mtcare Lifesciences Pvt Ltd', 'Linatus 5mg Tablet', 'What is Linatus 5mg Tablet used for?', 'Linatus 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linatus 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linatus 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15837, 'Linatus 5mg Tablet', 'Mtcare Lifesciences Pvt Ltd', 'Linatus 5mg Tablet', 'When should I take Linatus 5mg Tablet? What if I miss a dose?', 'Linatus 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15838, 'Linatus 5mg Tablet', 'Mtcare Lifesciences Pvt Ltd', 'Linatus 5mg Tablet', 'Is Linatus 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linatus 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15839, 'Linatus 5mg Tablet', 'Mtcare Lifesciences Pvt Ltd', 'Linatus 5mg Tablet', 'Is Linatus 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linatus 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15840, 'Linatus 5mg Tablet', 'Mtcare Lifesciences Pvt Ltd', 'Linatus 5mg Tablet', 'For how long I have to take Linatus 5mg Tablet? Can I stop the medication?', 'You should keep taking Linatus 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15841, 'Linaur 2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur 2.5mg Tablet', 'What is Linaur 2.5mg Tablet used for?', 'Linaur 2.5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaur 2.5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaur 2.5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15842, 'Linaur 2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur 2.5mg Tablet', 'When should I take Linaur 2.5mg Tablet? What if I miss a dose?', 'Linaur 2.5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15843, 'Linaur 2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur 2.5mg Tablet', 'Is Linaur 2.5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaur 2.5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15844, 'Linaur 2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur 2.5mg Tablet', 'Is Linaur 2.5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaur 2.5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15845, 'Linaur 2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur 2.5mg Tablet', 'For how long I have to take Linaur 2.5mg Tablet? Can I stop the medication?', 'You should keep taking Linaur 2.5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15846, 'Linaur M 1000mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 1000mg/2.5mg Tablet', 'Can the use of Linaur M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaur M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaur M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(15847, 'Linaur M 1000mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linaur M 1000mg/2.5mg Tablet?', 'The use of Linaur M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15848, 'Linaur M 1000mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linaur M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linaur M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaur M 1000mg/2.5mg Tablet.'),
(15849, 'Linaur M 1000mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaur M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linaur M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15850, 'Linaur M 1000mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaur M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15851, 'Linaur M 1000mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 1000mg/2.5mg Tablet', 'Can the use of Linaur M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaur M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15852, 'Linaur M 1000mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 1000mg/2.5mg Tablet', 'Can the use of Linaur M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaur M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15853, 'Linaur M 500mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 500mg/2.5mg Tablet', 'Can the use of Linaur M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaur M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaur M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15854, 'Linaur M 500mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 500mg/2.5mg Tablet', 'What are the possible side effects of Linaur M 500mg/2.5mg Tablet?', 'The use of Linaur M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15855, 'Linaur M 500mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linaur M 500mg/2.5mg Tablet should not be taken?', 'The use of Linaur M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaur M 500mg/2.5mg Tablet.'),
(15856, 'Linaur M 500mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaur M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaur M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15857, 'Linaur M 500mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaur M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15858, 'Linaur M 500mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 500mg/2.5mg Tablet', 'Can the use of Linaur M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaur M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15859, 'Linaur M 500mg/2.5mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Linaur M 500mg/2.5mg Tablet', 'Can the use of Linaur M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaur M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15860, 'Linaverge 5mg Tablet', 'Converge Biotech', 'Linaverge 5mg Tablet', 'What is Linaverge 5mg Tablet used for?', 'Linaverge 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaverge 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaverge 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15861, 'Linaverge 5mg Tablet', 'Converge Biotech', 'Linaverge 5mg Tablet', 'When should I take Linaverge 5mg Tablet? What if I miss a dose?', 'Linaverge 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15862, 'Linaverge 5mg Tablet', 'Converge Biotech', 'Linaverge 5mg Tablet', 'Is Linaverge 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaverge 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15863, 'Linaverge 5mg Tablet', 'Converge Biotech', 'Linaverge 5mg Tablet', 'Is Linaverge 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaverge 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15864, 'Linaverge 5mg Tablet', 'Converge Biotech', 'Linaverge 5mg Tablet', 'For how long I have to take Linaverge 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaverge 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15865, 'Linaverge MT 500mg/2.5mg Tablet', 'Converge Biotech', 'Linaverge MT 500mg/2.5mg Tablet', 'Can the use of Linaverge MT 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linaverge MT 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaverge MT 500mg/2.5mg Tablet and immediately consult your doctor.'),
(15866, 'Linaverge MT 500mg/2.5mg Tablet', 'Converge Biotech', 'Linaverge MT 500mg/2.5mg Tablet', 'What are the possible side effects of Linaverge MT 500mg/2.5mg Tablet?', 'The use of Linaverge MT 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15867, 'Linaverge MT 500mg/2.5mg Tablet', 'Converge Biotech', 'Linaverge MT 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linaverge MT 500mg/2.5mg Tablet should not be taken?', 'The use of Linaverge MT 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaverge MT 500mg/2.5mg Tablet.'),
(15868, 'Linaverge MT 500mg/2.5mg Tablet', 'Converge Biotech', 'Linaverge MT 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linaverge MT 500mg/2.5mg Tablet?', 'No, it is not safe to take Linaverge MT 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15869, 'Linaverge MT 500mg/2.5mg Tablet', 'Converge Biotech', 'Linaverge MT 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linaverge MT 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15870, 'Linaverge MT 500mg/2.5mg Tablet', 'Converge Biotech', 'Linaverge MT 500mg/2.5mg Tablet', 'Can the use of Linaverge MT 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linaverge MT 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15871, 'Linaverge MT 500mg/2.5mg Tablet', 'Converge Biotech', 'Linaverge MT 500mg/2.5mg Tablet', 'Can the use of Linaverge MT 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaverge MT 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15872, 'Linavia 5mg Tablet', 'Biovia Life Sciences', 'Linavia 5mg Tablet', 'What is Linavia 5mg Tablet used for?', 'Linavia 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linavia 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linavia 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15873, 'Linavia 5mg Tablet', 'Biovia Life Sciences', 'Linavia 5mg Tablet', 'When should I take Linavia 5mg Tablet? What if I miss a dose?', 'Linavia 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15874, 'Linavia 5mg Tablet', 'Biovia Life Sciences', 'Linavia 5mg Tablet', 'Is Linavia 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linavia 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15875, 'Linavia 5mg Tablet', 'Biovia Life Sciences', 'Linavia 5mg Tablet', 'Is Linavia 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linavia 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15876, 'Linavia 5mg Tablet', 'Biovia Life Sciences', 'Linavia 5mg Tablet', 'For how long I have to take Linavia 5mg Tablet? Can I stop the medication?', 'You should keep taking Linavia 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15877, 'Linaworth 5mg Tablet', 'Morepen Laboratories Ltd', 'Linaworth 5mg Tablet', 'What is Linaworth 5mg Tablet used for?', 'Linaworth 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaworth 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaworth 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15878, 'Linaworth 5mg Tablet', 'Morepen Laboratories Ltd', 'Linaworth 5mg Tablet', 'When should I take Linaworth 5mg Tablet? What if I miss a dose?', 'Linaworth 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15879, 'Linaworth 5mg Tablet', 'Morepen Laboratories Ltd', 'Linaworth 5mg Tablet', 'Is Linaworth 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaworth 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15880, 'Linaworth 5mg Tablet', 'Morepen Laboratories Ltd', 'Linaworth 5mg Tablet', 'Is Linaworth 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaworth 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15881, 'Linaworth 5mg Tablet', 'Morepen Laboratories Ltd', 'Linaworth 5mg Tablet', 'For how long I have to take Linaworth 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaworth 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15882, 'Linaxa 2.5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 2.5mg Tablet', 'What is Linaxa 2.5mg Tablet used for?', 'Linaxa 2.5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaxa 2.5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaxa 2.5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15883, 'Linaxa 2.5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 2.5mg Tablet', 'When should I take Linaxa 2.5mg Tablet? What if I miss a dose?', 'Linaxa 2.5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15884, 'Linaxa 2.5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 2.5mg Tablet', 'Is Linaxa 2.5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaxa 2.5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15885, 'Linaxa 2.5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 2.5mg Tablet', 'Is Linaxa 2.5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaxa 2.5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15886, 'Linaxa 2.5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 2.5mg Tablet', 'For how long I have to take Linaxa 2.5mg Tablet? Can I stop the medication?', 'You should keep taking Linaxa 2.5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15887, 'Linaxa 5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 5mg Tablet', 'What is Linaxa 5mg Tablet used for?', 'Linaxa 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linaxa 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linaxa 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15888, 'Linaxa 5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 5mg Tablet', 'When should I take Linaxa 5mg Tablet? What if I miss a dose?', 'Linaxa 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15889, 'Linaxa 5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 5mg Tablet', 'Is Linaxa 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linaxa 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15890, 'Linaxa 5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 5mg Tablet', 'Is Linaxa 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linaxa 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15891, 'Linaxa 5mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa 5mg Tablet', 'For how long I have to take Linaxa 5mg Tablet? Can I stop the medication?', 'You should keep taking Linaxa 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15892, 'Linaxa DM 1000 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 1000 Tablet SR', 'What is Linaxa DM 1000 Tablet SR used for?', 'Linaxa DM 1000 Tablet SR is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(15893, 'Linaxa DM 1000 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 1000 Tablet SR', 'How should I take Linaxa DM 1000 Tablet SR?', 'Take Linaxa DM 1000 Tablet SR exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(15894, 'Linaxa DM 1000 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 1000 Tablet SR', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(15895, 'Linaxa DM 1000 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 1000 Tablet SR', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(15896, 'Linaxa DM 1000 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 1000 Tablet SR', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(15897, 'Linaxa DM 1000 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 1000 Tablet SR', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(15898, 'Linaxa DM 500 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 500 Tablet SR', 'What is Linaxa DM 500 Tablet SR used for?', 'Linaxa DM 500 Tablet SR is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(15899, 'Linaxa DM 500 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 500 Tablet SR', 'How should I take Linaxa DM 500 Tablet SR?', 'Take Linaxa DM 500 Tablet SR exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(15900, 'Linaxa DM 500 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 500 Tablet SR', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(15901, 'Linaxa DM 500 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 500 Tablet SR', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(15902, 'Linaxa DM 500 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 500 Tablet SR', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(15903, 'Linaxa DM 500 Tablet SR', 'Torrent Pharmaceuticals Ltd', 'Linaxa DM 500 Tablet SR', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(15904, 'Linaxa M 1000mg/5mg Tablet XR', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 1000mg/5mg Tablet XR', 'Can the use of Linaxa M 1000mg/5mg Tablet XR cause lactic acidosis?', 'Yes, the use of Linaxa M 1000mg/5mg Tablet XR can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaxa M 1000mg/5mg Tablet XR and immediately consult your doctor.'),
(15905, 'Linaxa M 1000mg/5mg Tablet XR', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 1000mg/5mg Tablet XR', 'What are the possible side effects of Linaxa M 1000mg/5mg Tablet XR?', 'The use of Linaxa M 1000mg/5mg Tablet XR may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15906, 'Linaxa M 1000mg/5mg Tablet XR', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 1000mg/5mg Tablet XR', 'Are there any specific conditions in which Linaxa M 1000mg/5mg Tablet XR should not be taken?', 'The use of Linaxa M 1000mg/5mg Tablet XR should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaxa M 1000mg/5mg Tablet XR.'),
(15907, 'Linaxa M 1000mg/5mg Tablet XR', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 1000mg/5mg Tablet XR', 'Is it safe to take alcohol while I am also taking Linaxa M 1000mg/5mg Tablet XR?', 'No, it is not safe to take Linaxa M 1000mg/5mg Tablet XR along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15908, 'Linaxa M 1000mg/5mg Tablet XR', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 1000mg/5mg Tablet XR', 'What are the instructions for the storage and disposal of Linaxa M 1000mg/5mg Tablet XR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15909, 'Linaxa M 1000mg/5mg Tablet XR', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 1000mg/5mg Tablet XR', 'Can the use of Linaxa M 1000mg/5mg Tablet XR cause hypoglycemia?', 'The use of Linaxa M 1000mg/5mg Tablet XR does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15910, 'Linaxa M 1000mg/5mg Tablet XR', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 1000mg/5mg Tablet XR', 'Can the use of Linaxa M 1000mg/5mg Tablet XR lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaxa M 1000mg/5mg Tablet XR can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15911, 'Linaxa M 2.5/1000 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/1000 Tablet', 'Can the use of Linaxa M 2.5/1000 Tablet cause lactic acidosis?', 'Yes, the use of Linaxa M 2.5/1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaxa M 2.5/1000 Tablet and immediately consult your doctor.'),
(15912, 'Linaxa M 2.5/1000 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/1000 Tablet', 'What are the possible side effects of Linaxa M 2.5/1000 Tablet?', 'The use of Linaxa M 2.5/1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15913, 'Linaxa M 2.5/1000 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/1000 Tablet', 'Are there any specific conditions in which Linaxa M 2.5/1000 Tablet should not be taken?', 'The use of Linaxa M 2.5/1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaxa M 2.5/1000 Tablet.'),
(15914, 'Linaxa M 2.5/1000 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/1000 Tablet', 'Is it safe to take alcohol while I am also taking Linaxa M 2.5/1000 Tablet?', 'No, it is not safe to take Linaxa M 2.5/1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15915, 'Linaxa M 2.5/1000 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/1000 Tablet', 'What are the instructions for the storage and disposal of Linaxa M 2.5/1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15916, 'Linaxa M 2.5/1000 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/1000 Tablet', 'Can the use of Linaxa M 2.5/1000 Tablet cause hypoglycemia?', 'The use of Linaxa M 2.5/1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15917, 'Linaxa M 2.5/1000 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/1000 Tablet', 'Can the use of Linaxa M 2.5/1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaxa M 2.5/1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15918, 'Linaxa M 2.5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/500 Tablet', 'Can the use of Linaxa M 2.5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linaxa M 2.5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaxa M 2.5/500 Tablet and immediately consult your doctor.'),
(15919, 'Linaxa M 2.5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/500 Tablet', 'What are the possible side effects of Linaxa M 2.5/500 Tablet?', 'The use of Linaxa M 2.5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15920, 'Linaxa M 2.5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/500 Tablet', 'Are there any specific conditions in which Linaxa M 2.5/500 Tablet should not be taken?', 'The use of Linaxa M 2.5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaxa M 2.5/500 Tablet.'),
(15921, 'Linaxa M 2.5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/500 Tablet', 'Is it safe to take alcohol while I am also taking Linaxa M 2.5/500 Tablet?', 'No, it is not safe to take Linaxa M 2.5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15922, 'Linaxa M 2.5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/500 Tablet', 'What are the instructions for the storage and disposal of Linaxa M 2.5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15923, 'Linaxa M 2.5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/500 Tablet', 'Can the use of Linaxa M 2.5/500 Tablet cause hypoglycemia?', 'The use of Linaxa M 2.5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15924, 'Linaxa M 2.5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M 2.5/500 Tablet', 'Can the use of Linaxa M 2.5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaxa M 2.5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15925, 'Linaxa M XR 5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M XR 5/500 Tablet', 'Q. Can the use of Linaxa M XR 5/500 Tablet cause lactic acidosis?', 'Yes, the use of Linaxa M XR 5/500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaxa M XR 5/500 Tablet and immediately consult your doctor.'),
(15926, 'Linaxa M XR 5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M XR 5/500 Tablet', 'Q. What are the possible side effects of Linaxa M XR 5/500 Tablet?', 'The use of Linaxa M XR 5/500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15927, 'Linaxa M XR 5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M XR 5/500 Tablet', 'Q. Are there any specific conditions in which Linaxa M XR 5/500 Tablet should not be taken?', 'The use of Linaxa M XR 5/500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaxa M XR 5/500 Tablet.'),
(15928, 'Linaxa M XR 5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M XR 5/500 Tablet', 'Q. Is it safe to take alcohol while I am also taking Linaxa M XR 5/500 Tablet?', 'No, it is not safe to take Linaxa M XR 5/500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15929, 'Linaxa M XR 5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M XR 5/500 Tablet', 'Q. What are the instructions for the storage and disposal of Linaxa M XR 5/500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15930, 'Linaxa M XR 5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M XR 5/500 Tablet', 'Q. Can the use of Linaxa M XR 5/500 Tablet cause hypoglycemia?', 'The use of Linaxa M XR 5/500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15931, 'Linaxa M XR 5/500 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linaxa M XR 5/500 Tablet', 'Q. Can the use of Linaxa M XR 5/500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaxa M XR 5/500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15932, 'Linaxtra-M Tablet', 'Nvron Life Science Ltd', 'Linaxtra-M Tablet', 'Can the use of Linaxtra-M Tablet cause lactic acidosis?', 'Yes, the use of Linaxtra-M Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linaxtra-M Tablet and immediately consult your doctor.'),
(15933, 'Linaxtra-M Tablet', 'Nvron Life Science Ltd', 'Linaxtra-M Tablet', 'What are the possible side effects of Linaxtra-M Tablet?', 'The use of Linaxtra-M Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15934, 'Linaxtra-M Tablet', 'Nvron Life Science Ltd', 'Linaxtra-M Tablet', 'Are there any specific conditions in which Linaxtra-M Tablet should not be taken?', 'The use of Linaxtra-M Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linaxtra-M Tablet.'),
(15935, 'Linaxtra-M Tablet', 'Nvron Life Science Ltd', 'Linaxtra-M Tablet', 'Is it safe to take alcohol while I am also taking Linaxtra-M Tablet?', 'No, it is not safe to take Linaxtra-M Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15936, 'Linaxtra-M Tablet', 'Nvron Life Science Ltd', 'Linaxtra-M Tablet', 'What are the instructions for the storage and disposal of Linaxtra-M Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15937, 'Linaxtra-M Tablet', 'Nvron Life Science Ltd', 'Linaxtra-M Tablet', 'Can the use of Linaxtra-M Tablet cause hypoglycemia?', 'The use of Linaxtra-M Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(15938, 'Linaxtra-M Tablet', 'Nvron Life Science Ltd', 'Linaxtra-M Tablet', 'Can the use of Linaxtra-M Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linaxtra-M Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15939, 'Linayork 5 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork 5 Tablet', 'What is Linayork 5 Tablet used for?', 'Linayork 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linayork 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linayork 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(15940, 'Linayork 5 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork 5 Tablet', 'When should I take Linayork 5 Tablet? What if I miss a dose?', 'Linayork 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(15941, 'Linayork 5 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork 5 Tablet', 'Is Linayork 5 Tablet bad for kidneys?', 'No, there is no evidence that Linayork 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(15942, 'Linayork 5 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork 5 Tablet', 'Is Linayork 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linayork 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(15943, 'Linayork 5 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork 5 Tablet', 'For how long I have to take Linayork 5 Tablet? Can I stop the medication?', 'You should keep taking Linayork 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(15944, 'Linayork M 500 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork M 500 Tablet', 'Can the use of Linayork M 500 Tablet cause lactic acidosis?', 'Yes, the use of Linayork M 500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linayork M 500 Tablet and immediately consult your doctor.'),
(15945, 'Linayork M 500 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork M 500 Tablet', 'What are the possible side effects of Linayork M 500 Tablet?', 'The use of Linayork M 500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15946, 'Linayork M 500 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork M 500 Tablet', 'Are there any specific conditions in which Linayork M 500 Tablet should not be taken?', 'The use of Linayork M 500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linayork M 500 Tablet.'),
(15947, 'Linayork M 500 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork M 500 Tablet', 'Is it safe to take alcohol while I am also taking Linayork M 500 Tablet?', 'No, it is not safe to take Linayork M 500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15948, 'Linayork M 500 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork M 500 Tablet', 'What are the instructions for the storage and disposal of Linayork M 500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15949, 'Linayork M 500 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork M 500 Tablet', 'Can the use of Linayork M 500 Tablet cause hypoglycemia?', 'The use of Linayork M 500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15950, 'Linayork M 500 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork M 500 Tablet', 'Can the use of Linayork M 500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linayork M 500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15951, 'Linayork-M1000 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork-M1000 Tablet', 'Can the use of Linayork-M1000 Tablet cause lactic acidosis?', 'Yes, the use of Linayork-M1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linayork-M1000 Tablet and immediately consult your doctor.'),
(15952, 'Linayork-M1000 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork-M1000 Tablet', 'What are the possible side effects of Linayork-M1000 Tablet?', 'The use of Linayork-M1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(15953, 'Linayork-M1000 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork-M1000 Tablet', 'Are there any specific conditions in which Linayork-M1000 Tablet should not be taken?', 'The use of Linayork-M1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linayork-M1000 Tablet.'),
(15954, 'Linayork-M1000 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork-M1000 Tablet', 'Is it safe to take alcohol while I am also taking Linayork-M1000 Tablet?', 'No, it is not safe to take Linayork-M1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(15955, 'Linayork-M1000 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork-M1000 Tablet', 'What are the instructions for the storage and disposal of Linayork-M1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15956, 'Linayork-M1000 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork-M1000 Tablet', 'Can the use of Linayork-M1000 Tablet cause hypoglycemia?', 'The use of Linayork-M1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(15957, 'Linayork-M1000 Tablet', 'Mediverge Healthcare Pvt Ltd', 'Linayork-M1000 Tablet', 'Can the use of Linayork-M1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linayork-M1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(15958, 'Linaz 600mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Linaz 600mg Tablet', 'Can the use of Linaz 600mg Tablet cause diarrhea?', 'Yes, the use of Linaz 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15959, 'Linaz 600mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Linaz 600mg Tablet', 'What foods should I avoid while taking Linaz 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linaz 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(15960, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'What is Linbect T 4000mg/500mg Injection?', 'Linbect T 4000mg/500mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(15961, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'Is it safe to use Linbect T 4000mg/500mg Injection?', 'Linbect T 4000mg/500mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(15962, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'How is Linbect T 4000mg/500mg Injection administered?', 'Linbect T 4000mg/500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linbect T 4000mg/500mg Injection.'),
(15963, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'Are there any specific cautions associated with the use of Linbect T 4000mg/500mg Injection?', 'The use of Linbect T 4000mg/500mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Linbect T 4000mg/500mg Injection.'),
(15964, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'Can the use of Linbect T 4000mg/500mg Injection cause contraceptive failure?', 'Yes, the use of Linbect T 4000mg/500mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Linbect T 4000mg/500mg Injection.'),
(15965, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'Can I take a higher than the recommended dose of Linbect T 4000mg/500mg Injection?', 'No, Linbect T 4000mg/500mg Injection should be used in the recommended dose only. Overdose of Linbect T 4000mg/500mg Injection can increase the risks of side effects. Linbect T 4000mg/500mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(15966, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'What are the instructions for the storage and disposal of Linbect T 4000mg/500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(15967, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'Can Linbect T 4000mg/500mg Injection cause an allergic reaction?', 'Yes, Linbect T 4000mg/500mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(15968, 'Linbect T 4000mg/500mg Injection', 'Gat Pharmaceutical Private Limited', 'Linbect T 4000mg/500mg Injection', 'Can the use of Linbect T 4000mg/500mg Injection cause diarrhea?', 'Yes, the use of Linbect T 4000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(15969, 'Linbee 600mg Tablet', 'Niya Biotech', 'Linbee 600mg Tablet', 'Can the use of Linbee 600mg Tablet cause diarrhea?', 'Yes, the use of Linbee 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15970, 'Linbee 600mg Tablet', 'Niya Biotech', 'Linbee 600mg Tablet', 'What foods should I avoid while taking Linbee 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linbee 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(15971, 'Linc 300mg Injection', 'Zenlabs Ethica Ltd', 'Linc 300mg Injection', 'What if I don\'t get better after using Linc 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(15972, 'Linc 300mg Injection', 'Zenlabs Ethica Ltd', 'Linc 300mg Injection', 'Can the use of Linc 300mg Injection cause diarrhea?', 'Yes, the use of Linc 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15973, 'Linc 300mg Injection', 'Zenlabs Ethica Ltd', 'Linc 300mg Injection', 'How long does Linc 300mg Injection take to work?', 'Usually, Linc 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(15974, 'Linc 300mg Injection', 'Zenlabs Ethica Ltd', 'Linc 300mg Injection', 'How is Linc 300mg Injection administered?', 'Linc 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linc 300mg Injection.'),
(15975, 'Linc 300mg Injection', 'Zenlabs Ethica Ltd', 'Linc 300mg Injection', 'Is Linc 300mg Injection effective?', 'Linc 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linc 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linc 300mg Injection too early, the symptoms may return or worsen.'),
(15976, 'Linc 300mg Injection', 'Zenlabs Ethica Ltd', 'Linc 300mg Injection', 'Is Linc 300mg Injection safe?', 'Linc 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(15977, 'Linc 600mg Injection', 'Zenlabs Ethica Ltd', 'Linc 600mg Injection', 'What if I don\'t get better after using Linc 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(15978, 'Linc 600mg Injection', 'Zenlabs Ethica Ltd', 'Linc 600mg Injection', 'Can the use of Linc 600mg Injection cause diarrhea?', 'Yes, the use of Linc 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15979, 'Linc 600mg Injection', 'Zenlabs Ethica Ltd', 'Linc 600mg Injection', 'How long does Linc 600mg Injection take to work?', 'Usually, Linc 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(15980, 'Linc 600mg Injection', 'Zenlabs Ethica Ltd', 'Linc 600mg Injection', 'How is Linc 600mg Injection administered?', 'Linc 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linc 600mg Injection.'),
(15981, 'Linc 600mg Injection', 'Zenlabs Ethica Ltd', 'Linc 600mg Injection', 'Is Linc 600mg Injection effective?', 'Linc 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linc 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linc 600mg Injection too early, the symptoms may return or worsen.'),
(15982, 'Linc 600mg Injection', 'Zenlabs Ethica Ltd', 'Linc 600mg Injection', 'Is Linc 600mg Injection safe?', 'Linc 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(15983, 'Lincambutol 800mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincambutol 800mg Tablet', 'My child vomited after taking Lincambutol 800mg Tablet. What should be done?', 'If your child vomited within 30 minutes of taking Lincambutol 800mg Tablet, give the same dose again. If vomiting occurred 30 minutes after taking Lincambutol 800mg Tablet, you need not repeat the dose. If your child vomits again after taking Lincambutol 800mg Tablet, consult your doctor.'),
(15984, 'Lincambutol 800mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincambutol 800mg Tablet', 'For how long does Lincambutol 800mg Tablet stay in your system?', 'Lincambutol 800mg Tablet stays for about 24 hours in your system. This duration varies from person to person and maybe different for patients with kidney problems.'),
(15985, 'Lincambutol 800mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincambutol 800mg Tablet', 'Will Lincambutol 800mg Tablet work if I have developed tuberculosis for the second time?', 'Yes, it will work if you had taken proper treatment and got cured when you developed tuberculosis for the first time. If you have any doubt, ask your doctor.'),
(15986, 'Lincambutol 800mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincambutol 800mg Tablet', 'Is it necessary to take so many TB drugs simultaneously? Is there no single medicine which can provide a cure for tuberculosis?', 'Yes, it is important that you take all the prescribed TB drugs together for the recommended duration, else you will not be cured. A single drug is not prescribed to treat TB because it may increase the risk of developing multi-drug resistant tuberculosis, which is very difficult to treat.'),
(15987, 'Lincambutol 800mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincambutol 800mg Tablet', 'What is drug resistance? Can I become resistant to Lincambutol 800mg Tablet?', 'Sometimes it happens that bacteria gets modified in your body and stops reacting to the medicine. As a result, the medicine stops working. This is called drug resistance. Drug resistance is uncommon if Lincambutol 800mg Tablet is used in combination with other TB drugs.'),
(15988, 'Lincambutol 800mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincambutol 800mg Tablet', 'Can Lincambutol 800mg Tablet treatment be taken for more than two months?', 'Yes, Lincambutol 800mg Tablet can be continued for more than 2 months, depending on your condition and as per your doctor’s advice. If after 2 months, your investigations show that the TB bacteria are still active, you may have to take Lincambutol 800mg Tablet for 1 more month. In case you are resistant to other TB drugs, you may have to take Lincambutol 800mg Tablet and other TB drugs (for which you are not drug resistant) for longer than 2 months.'),
(15989, 'Lincambutol 800mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincambutol 800mg Tablet', 'What are the warning signals which should prompt me to stop taking Lincambutol 800mg Tablet?', 'You should consult your doctor and consider stopping the medicine immediately if you develop any vision problems like blurred vision, color blindness or any kidney problems like decreased amount of urine and swelling of your legs and feet. You may even develop liver troubles like nausea, vomiting and yellowish color of skin and eyes. Beware of all these symptoms and consult your doctor immediately.'),
(15990, 'Lince 300mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 300mg Injection', 'Q. How long does Lince 300mg Injection take to work?', 'Usually, Lince 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(15991, 'Lince 300mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 300mg Injection', 'Q. Is Lince 300mg Injection effective?', 'Lince 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lince 300mg Injection too early, the symptoms may return or worsen.'),
(15992, 'Lince 300mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 300mg Injection', 'Q. How is Lince 300mg Injection administered?', 'Lince 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lince 300mg Injection.'),
(15993, 'Lince 300mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 300mg Injection', 'Q. Can the use of Lince 300mg Injection cause diarrhea?', 'Yes, the use of Lince 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(15994, 'Lince 300mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 300mg Injection', 'Q. Is Lince 300mg Injection safe?', 'Lince 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(15995, 'Lince 300mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 300mg Injection', 'Q. What if I don\'t get better after using Lince 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(15996, 'Lince 300mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 300mg Injection', 'Q. Is Lince 300mg Injection effective?', 'Lince 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lince 300mg Injection too early, the symptoms may return or worsen.'),
(15997, 'Lince 600mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 600mg Injection', 'Q. How long does Lince 600mg Injection take to work?', 'Usually, Lince 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(15998, 'Lince 600mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 600mg Injection', 'Q. Is Lince 600mg Injection effective?', 'Lince 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lince 600mg Injection too early, the symptoms may return or worsen.'),
(15999, 'Lince 600mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 600mg Injection', 'Q. How is Lince 600mg Injection administered?', 'Lince 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lince 600mg Injection.'),
(16000, 'Lince 600mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 600mg Injection', 'Q. Can the use of Lince 600mg Injection cause diarrhea?', 'Yes, the use of Lince 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16001, 'Lince 600mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 600mg Injection', 'Q. Is Lince 600mg Injection safe?', 'Lince 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16002, 'Lince 600mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 600mg Injection', 'Q. What if I don\'t get better after using Lince 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16003, 'Lince 600mg Injection', 'Nexkem Pharmaceuticals Pvt Ltd', 'Lince 600mg Injection', 'Q. Is Lince 600mg Injection effective?', 'Lince 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lince 600mg Injection too early, the symptoms may return or worsen.'),
(16004, 'Lincef Novo 600mg Injection', 'Alkem Laboratories Ltd', 'Lincef Novo 600mg Injection', 'Can the use of Lincef Novo 600mg Injection cause diarrhea?', 'Yes, the use of Lincef Novo 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16005, 'Lincef Novo 600mg Injection', 'Alkem Laboratories Ltd', 'Lincef Novo 600mg Injection', 'What foods should I avoid while taking Lincef Novo 600mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lincef Novo 600mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(16006, 'Lincef Tablet', 'Alkem Laboratories Ltd', 'Lincef Tablet', 'What is Lincef Tablet used for?', 'Lincef Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(16007, 'Lincef Tablet', 'Alkem Laboratories Ltd', 'Lincef Tablet', 'Can the use of Lincef Tablet cause diarrhea?', 'Yes, the use of Lincef Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16008, 'Lincef Tablet', 'Alkem Laboratories Ltd', 'Lincef Tablet', 'Is the use of Lincef Tablet helpful in the treatment of bronchitis?', 'Yes, Lincef Tablet is helpful in the treatment of bronchitis.'),
(16009, 'Lincef Tablet', 'Alkem Laboratories Ltd', 'Lincef Tablet', 'What are the instructions for the storage and disposal of Lincef Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16010, 'Linceft 1000mg Injection', 'Linex Pharmaceuticals', 'Linceft 1000mg Injection', 'Q. Is Linceft 1000mg Injection safe?', 'Linceft 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(16011, 'Linceft 1000mg Injection', 'Linex Pharmaceuticals', 'Linceft 1000mg Injection', 'Q. How long does Linceft 1000mg Injection take to work?', 'Usually, Linceft 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(16012, 'Linceft 1000mg Injection', 'Linex Pharmaceuticals', 'Linceft 1000mg Injection', 'Q. Who should not take Linceft 1000mg Injection?', 'Linceft 1000mg Injection should not be prescribed to people who are allergic to Linceft 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Linceft 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(16013, 'Linceft 1000mg Injection', 'Linex Pharmaceuticals', 'Linceft 1000mg Injection', 'Q. What if I do not get better after using Linceft 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16014, 'Linceft 1000mg Injection', 'Linex Pharmaceuticals', 'Linceft 1000mg Injection', 'Q. For how long does Linceft 1000mg Injection stay in the body?', 'Usually, Linceft 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(16015, 'Linceft 1000mg Injection', 'Linex Pharmaceuticals', 'Linceft 1000mg Injection', 'Q. Is Linceft 1000mg Injection effective?', 'Linceft 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linceft 1000mg Injection too early, the symptoms may return or worsen.'),
(16016, 'Linceft 1000mg Injection', 'Linex Pharmaceuticals', 'Linceft 1000mg Injection', 'Q. How is Linceft 1000mg Injection administered?', 'Linceft 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Linceft 1000mg Injection.'),
(16017, 'Linceft 250mg Injection', 'Linex Pharmaceuticals', 'Linceft 250mg Injection', 'Q. Is Linceft 250mg Injection safe?', 'Linceft 250mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(16018, 'Linceft 250mg Injection', 'Linex Pharmaceuticals', 'Linceft 250mg Injection', 'Q. How long does Linceft 250mg Injection take to work?', 'Usually, Linceft 250mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(16019, 'Linceft 250mg Injection', 'Linex Pharmaceuticals', 'Linceft 250mg Injection', 'Q. Who should not take Linceft 250mg Injection?', 'Linceft 250mg Injection should not be prescribed to people who are allergic to Linceft 250mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Linceft 250mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(16020, 'Linceft 250mg Injection', 'Linex Pharmaceuticals', 'Linceft 250mg Injection', 'Q. What if I do not get better after using Linceft 250mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16021, 'Linceft 250mg Injection', 'Linex Pharmaceuticals', 'Linceft 250mg Injection', 'Q. For how long does Linceft 250mg Injection stay in the body?', 'Usually, Linceft 250mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(16022, 'Linceft 250mg Injection', 'Linex Pharmaceuticals', 'Linceft 250mg Injection', 'Q. Is Linceft 250mg Injection effective?', 'Linceft 250mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linceft 250mg Injection too early, the symptoms may return or worsen.'),
(16023, 'Linceft 250mg Injection', 'Linex Pharmaceuticals', 'Linceft 250mg Injection', 'Q. How is Linceft 250mg Injection administered?', 'Linceft 250mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Linceft 250mg Injection.'),
(16024, 'Linceft 500mg Injection', 'Linex Pharmaceuticals', 'Linceft 500mg Injection', 'Is Linceft 500mg Injection safe?', 'Linceft 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(16025, 'Linceft 500mg Injection', 'Linex Pharmaceuticals', 'Linceft 500mg Injection', 'How long does Linceft 500mg Injection take to work?', 'Usually, Linceft 500mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(16026, 'Linceft 500mg Injection', 'Linex Pharmaceuticals', 'Linceft 500mg Injection', 'Who should not take Linceft 500mg Injection?', 'Linceft 500mg Injection should not be prescribed to people who are allergic to Linceft 500mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Linceft 500mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(16027, 'Linceft 500mg Injection', 'Linex Pharmaceuticals', 'Linceft 500mg Injection', 'What if I do not get better after using Linceft 500mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16028, 'Linceft 500mg Injection', 'Linex Pharmaceuticals', 'Linceft 500mg Injection', 'For how long does Linceft 500mg Injection stay in the body?', 'Usually, Linceft 500mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(16029, 'Linceft 500mg Injection', 'Linex Pharmaceuticals', 'Linceft 500mg Injection', 'Is Linceft 500mg Injection effective?', 'Linceft 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linceft 500mg Injection too early, the symptoms may return or worsen.'),
(16030, 'Linceft 500mg Injection', 'Linex Pharmaceuticals', 'Linceft 500mg Injection', 'How is Linceft 500mg Injection administered?', 'Linceft 500mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Linceft 500mg Injection.'),
(16031, 'Linceft S 1000mg/500mg Injection', 'Linex Pharmaceuticals', 'Linceft S 1000mg/500mg Injection', 'Can the use of Linceft S 1000mg/500mg Injection cause allergic reaction?', 'Yes, Linceft S 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(16032, 'Linceft S 1000mg/500mg Injection', 'Linex Pharmaceuticals', 'Linceft S 1000mg/500mg Injection', 'Can the use of Linceft S 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Linceft S 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16033, 'Linceft S 1000mg/500mg Injection', 'Linex Pharmaceuticals', 'Linceft S 1000mg/500mg Injection', 'How long does Linceft S 1000mg/500mg Injection takes to work?', 'Usually, Linceft S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16034, 'Linceft S 1000mg/500mg Injection', 'Linex Pharmaceuticals', 'Linceft S 1000mg/500mg Injection', 'What if I don\'t get better after using Linceft S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16035, 'Linceft S 1000mg/500mg Injection', 'Linex Pharmaceuticals', 'Linceft S 1000mg/500mg Injection', 'Can I stop taking Linceft S 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Linceft S 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16036, 'Linceft S 250mg/125mg Injection', 'Linex Pharmaceuticals', 'Linceft S 250mg/125mg Injection', 'Can the use of Linceft S 250mg/125mg Injection cause allergic reaction?', 'Yes, Linceft S 250mg/125mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(16037, 'Linceft S 250mg/125mg Injection', 'Linex Pharmaceuticals', 'Linceft S 250mg/125mg Injection', 'Can the use of Linceft S 250mg/125mg Injection cause diarrhea?', 'Yes, the use of Linceft S 250mg/125mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16038, 'Linceft S 250mg/125mg Injection', 'Linex Pharmaceuticals', 'Linceft S 250mg/125mg Injection', 'How long does Linceft S 250mg/125mg Injection takes to work?', 'Usually, Linceft S 250mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16039, 'Linceft S 250mg/125mg Injection', 'Linex Pharmaceuticals', 'Linceft S 250mg/125mg Injection', 'What if I don\'t get better after using Linceft S 250mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16040, 'Linceft S 250mg/125mg Injection', 'Linex Pharmaceuticals', 'Linceft S 250mg/125mg Injection', 'Can I stop taking Linceft S 250mg/125mg Injection when I feel better?', 'No, do not stop taking Linceft S 250mg/125mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16041, 'Linceft TZ 1000mg/125mg Injection', 'Linex Pharmaceuticals', 'Linceft TZ 1000mg/125mg Injection', 'How long does Linceft TZ 1000mg/125mg Injection takes to work?', 'Usually, Linceft TZ 1000mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16042, 'Linceft TZ 1000mg/125mg Injection', 'Linex Pharmaceuticals', 'Linceft TZ 1000mg/125mg Injection', 'What if I don\'t get better after using Linceft TZ 1000mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16043, 'Lincell 600mg Tablet', 'Cellrox Life Sciences', 'Lincell 600mg Tablet', 'Can the use of Lincell 600mg Tablet cause diarrhea?', 'Yes, the use of Lincell 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16044, 'Lincell 600mg Tablet', 'Cellrox Life Sciences', 'Lincell 600mg Tablet', 'What foods should I avoid while taking Lincell 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lincell 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16045, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'How long does it take for Lincer 100mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Lincer 100mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(16046, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'How long do I need to take Lincer 100mg Tablet?', 'You should continue taking Lincer 100mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(16047, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'When is the best time to take Lincer 100mg Tablet?', 'Lincer 100mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Lincer 100mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16048, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'Does Lincer 100mg Tablet cause sleepiness?', 'Yes, Lincer 100mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Lincer 100mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Lincer 100mg Tablet, which may disappear after 2-3 months of use of Lincer 100mg Tablet.'),
(16049, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'What does Lincer 100mg Tablet do for anxiety?', 'Lincer 100mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(16050, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'Can I stop taking Lincer 100mg Tablet if I am better now?', 'No, you should not stop taking Lincer 100mg Tablet without consulting your doctor. This is because sudden discontinuation of Lincer 100mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(16051, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'What are the withdrawal symptoms of Lincer 100mg Tablet?', 'The withdrawal symptoms of Lincer 100mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Lincer 100mg Tablet.'),
(16052, 'Lincer 100mg Tablet', 'Ceras Pharmaceutical', 'Lincer 100mg Tablet', 'What are the symptoms of overdose of Lincer 100mg Tablet?', 'The symptoms of overdose of Lincer 100mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(16053, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'How long does it take for Lincer 25mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Lincer 25mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(16054, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'How long do I need to take Lincer 25mg Tablet?', 'You should continue taking Lincer 25mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(16055, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'When is the best time to take Lincer 25mg Tablet?', 'Lincer 25mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Lincer 25mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.'),
(16056, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'Does Lincer 25mg Tablet cause sleepiness?', 'Yes, Lincer 25mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Lincer 25mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Lincer 25mg Tablet, which may disappear after 2-3 months of use of Lincer 25mg Tablet.'),
(16057, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'What does Lincer 25mg Tablet do for anxiety?', 'Lincer 25mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(16058, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'Can I stop taking Lincer 25mg Tablet if I am better now?', 'No, you should not stop taking Lincer 25mg Tablet without consulting your doctor. This is because sudden discontinuation of Lincer 25mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(16059, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'What are the withdrawal symptoms of Lincer 25mg Tablet?', 'The withdrawal symptoms of Lincer 25mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Lincer 25mg Tablet.'),
(16060, 'Lincer 25mg Tablet', 'Ceras Pharmaceutical', 'Lincer 25mg Tablet', 'What are the symptoms of overdose of Lincer 25mg Tablet?', 'The symptoms of overdose of Lincer 25mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(16061, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'How long does it take for Lincer 50mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Lincer 50mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(16062, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'How long do I need to take Lincer 50mg Tablet?', 'You should continue taking Lincer 50mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(16063, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'When is the best time to take Lincer 50mg Tablet?', 'Lincer 50mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Lincer 50mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.'),
(16064, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'Does Lincer 50mg Tablet cause sleepiness?', 'Yes, Lincer 50mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Lincer 50mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Lincer 50mg Tablet, which may disappear after 2-3 months of use of Lincer 50mg Tablet.'),
(16065, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'What does Lincer 50mg Tablet do for anxiety?', 'Lincer 50mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(16066, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'Can I stop taking Lincer 50mg Tablet if I am better now?', 'No, you should not stop taking Lincer 50mg Tablet without consulting your doctor. This is because sudden discontinuation of Lincer 50mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(16067, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'What are the withdrawal symptoms of Lincer 50mg Tablet?', 'The withdrawal symptoms of Lincer 50mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Lincer 50mg Tablet.'),
(16068, 'Lincer 50mg Tablet', 'Ceras Pharmaceutical', 'Lincer 50mg Tablet', 'What are the symptoms of overdose of Lincer 50mg Tablet?', 'The symptoms of overdose of Lincer 50mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(16069, 'Linchcort 6 Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchcort 6 Tablet', 'Is Linchcort 6 Tablet a steroid?', 'Yes, Linchcort 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Linchcort 6 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(16070, 'Linchcort 6 Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchcort 6 Tablet', 'What is Linchcort 6 Tablet used for?', 'Linchcort 6 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(16071, 'Linchcort 6 Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchcort 6 Tablet', 'How does Linchcort 6 Tablet work?', 'Linchcort 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(16072, 'Linchcort 6 Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchcort 6 Tablet', 'Is Linchcort 6 Tablet better than Prednisone?', 'Clinical studies have shown that Linchcort 6 Tablet has a similar effect as that of prednisone. Moreover, Linchcort 6 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(16073, 'Linchcort 6 Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchcort 6 Tablet', 'Is Linchcort 6 Tablet a painkiller?', 'No, Linchcort 6 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(16074, 'Linchcort 6 Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchcort 6 Tablet', 'Can I take Linchcort 6 Tablet with Tamsulosin?', 'Yes, Linchcort 6 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(16075, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'What is Linchflam-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(16076, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Is it safe to take Linchflam-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(16077, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Can I stop taking Linchflam-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(16078, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Can Linchflam-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(16079, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Can Linchflam-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(16080, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Are there any specific contraindications associated with taking Linchflam-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(16081, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Can I take Linchflam-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(16082, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Can the use of Linchflam-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(16083, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'Can I take a higher dose of Linchflam-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16084, 'Linchflam-SP Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linchflam-SP Tablet', 'What are the instructions for storage and disposal of Linchflam-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16085, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'What is Linci 250mg/125mg Tablet?', 'Linci 250mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(16086, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Is it safe to use Linci 250mg/125mg Tablet?', 'Linci 250mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(16087, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Are there any specific cautions associated with the use of Linci 250mg/125mg Tablet?', 'The use of Linci 250mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(16088, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Can the use of Linci 250mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Linci 250mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Linci 250mg/125mg Tablet.'),
(16089, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Can I take a higher than the recommended dose of Linci 250mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Linci 250mg/125mg Tablet can increase the risks of side effects. Linci 250mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(16090, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'What are the instructions for the storage and disposal of Linci 250mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16091, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Can I stop taking Linci 250mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Linci 250mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(16092, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Can Linci 250mg/125mg Tablet cause an allergic reaction?', 'Yes, Linci 250mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(16093, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Can the use of Linci 250mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linci 250mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16094, 'Linci 250mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 250mg/125mg Tablet', 'Can I take Linci 250mg/125mg Tablet to treat cold and flu?', 'No, Linci 250mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(16095, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'What is Linci 500mg/125mg Tablet?', 'Linci 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(16096, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Is it safe to use Linci 500mg/125mg Tablet?', 'Linci 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(16097, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Linci 500mg/125mg Tablet?', 'The use of Linci 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(16098, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Can the use of Linci 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Linci 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Linci 500mg/125mg Tablet.'),
(16099, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Linci 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Linci 500mg/125mg Tablet can increase the risks of side effects. Linci 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(16100, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Linci 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16101, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Can I stop taking Linci 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Linci 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(16102, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Can Linci 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Linci 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(16103, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Can the use of Linci 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linci 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16104, 'Linci 500mg/125mg Tablet', 'Ebx Healthcare Llp', 'Linci 500mg/125mg Tablet', 'Can I take Linci 500mg/125mg Tablet to treat cold and flu?', 'No, Linci 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(16105, 'Lincin 250mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 250mg Capsule', 'How long does Lincin 250mg Capsule take to work?', 'Usually, Lincin 250mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16106, 'Lincin 250mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 250mg Capsule', 'What if I don\'t get better after using Lincin 250mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16107, 'Lincin 250mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 250mg Capsule', 'Is Lincin 250mg Capsule effective?', 'Lincin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincin 250mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincin 250mg Capsule too early, the symptoms may return or worsen.'),
(16108, 'Lincin 250mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 250mg Capsule', 'Can I stop taking Lincin 250mg Capsule when I feel better?', 'No, do not stop taking Lincin 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16109, 'Lincin 250mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 250mg Capsule', 'Can the use of Lincin 250mg Capsule cause diarrhea?', 'Yes, the use of Lincin 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16110, 'Lincin 250mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 250mg Capsule', 'Is Lincin 250mg Capsule safe?', 'Lincin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16111, 'Lincin 500mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 500mg Capsule', 'How long does Lincin 500mg Capsule take to work?', 'Usually, Lincin 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16112, 'Lincin 500mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 500mg Capsule', 'What if I don\'t get better after using Lincin 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16113, 'Lincin 500mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 500mg Capsule', 'Is Lincin 500mg Capsule effective?', 'Lincin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincin 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincin 500mg Capsule too early, the symptoms may return or worsen.'),
(16114, 'Lincin 500mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 500mg Capsule', 'Can I stop taking Lincin 500mg Capsule when I feel better?', 'No, do not stop taking Lincin 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16115, 'Lincin 500mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 500mg Capsule', 'Can the use of Lincin 500mg Capsule cause diarrhea?', 'Yes, the use of Lincin 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16116, 'Lincin 500mg Capsule', 'Dynamic Laboratories Pvt Ltd', 'Lincin 500mg Capsule', 'Is Lincin 500mg Capsule safe?', 'Lincin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16117, 'Lincip 500mg Tablet', 'Linex Pharmaceuticals', 'Lincip 500mg Tablet', 'Q. Is Lincip 500mg Tablet safe?', 'Lincip 500mg Tablet is a relatively safe drug. However, it is not devoid of side effects and hence should only be taken if prescribed by a doctor in the appropriate dose, frequency, and duration as advised.'),
(16118, 'Lincip 500mg Tablet', 'Linex Pharmaceuticals', 'Lincip 500mg Tablet', 'Q. Can the use of Lincip 500mg Tablet cause diarrhea?', 'Yes, the use of Lincip 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16119, 'Lincip 500mg Tablet', 'Linex Pharmaceuticals', 'Lincip 500mg Tablet', 'Q. Can I stop taking Lincip 500mg Tablet when I feel better?', 'No, do not stop taking Lincip 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16120, 'Lincip 500mg Tablet', 'Linex Pharmaceuticals', 'Lincip 500mg Tablet', 'Q. Can the use of Lincip 500mg Tablet increase the risk of muscle damage?', 'Yes, use of Lincip 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lincip 500mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(16121, 'Lincip 500mg Tablet', 'Linex Pharmaceuticals', 'Lincip 500mg Tablet', 'Q. Can I take Lincip 500mg Tablet with paracetamol?', 'Lincip 500mg Tablet is not known to have any clinically meaningful interaction with paracetamol. However, interactions can occur. Talk to your doctor before using both the medicines together.'),
(16122, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'What is the difference between Lincitrax 40mg Injection and diclofenac?', 'Both Lincitrax 40mg Injection and diclofenac are pain killers. However, piroxicam is a non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain) inhibitor whereas diclofenac has a bit more selectivity to a COX-2 enzyme. This selectivity of diclofenac is supposed to decrease the side effects as compared to Lincitrax 40mg Injection.'),
(16123, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'What is the difference between Lincitrax 40mg Injection and naproxen?', 'Both Lincitrax 40mg Injection and naproxen are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, gastric side effects are lesser with naproxen as compared to Lincitrax 40mg Injection.'),
(16124, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'What is the difference between Lincitrax 40mg Injection and meloxicam?', 'Both Lincitrax 40mg Injection and meloxicam are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, acute gastric side effects are lesser with meloxicam as compared to Lincitrax 40mg Injection.'),
(16125, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'What is the difference between Lincitrax 40mg Injection and ketoprofen?', 'Both Lincitrax 40mg Injection and ketoprofen are pain killers. Both are non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain). Research studies have shown ketoprofen topical gel is better and effective as compared to Lincitrax 40mg Injection. Ketoprofen gel also showed excellent tolerability.'),
(16126, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'What is the difference between Lincitrax 40mg Injection and tramadol?', 'Lincitrax 40mg Injection is a COX (cyclooxygenase -an enzyme responsible for inflammation and pain) whereas Tramadol is a narcotic-like painkiller. Tramadol is a habit forming medicine.'),
(16127, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'What is the difference between Lincitrax 40mg Injection and nimesulide?', 'Both Lincitrax 40mg Injection and nimesulide are pain killers. However, Lincitrax 40mg Injection is a non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain) inhibitor whereas nimesulide is selective to the COX-2 enzyme. This selectivity of nimesulide is supposed to decrease the side effects as compared to piroxicam. It should not be used in children below 12 years of age.'),
(16128, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'Can Lincitrax 40mg Injection be used in the treatment of chikungunya?', 'Usually, the platelet count does not dip in cases of chikungunya and painkillers like piroxicam can lead to the risk of increased bleeding tendency. So refrain from taking Lincitrax 40mg Injection or any painkiller in the case of any fever with joint pain. Consult your doctor before starting Lincitrax 40mg Injection.'),
(16129, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'Are Lincitrax 40mg Injection and aspirin same?', 'No. Lincitrax 40mg Injection and aspirin are not same. They belong to the same class of drugs known as COX (cyclooxygenase) inhibitors. They both are anti-inflammatory and analgesic.'),
(16130, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'Can Lincitrax 40mg Injection be used along with dexamethasone?', 'No. Lincitrax 40mg Injection should not be used with dexamethasone. They both increase each other\'s toxicity. There is an increased risk of GI ulceration.'),
(16131, 'Lincitrax 40mg Injection', 'Novaduo Pharma', 'Lincitrax 40mg Injection', 'Can Lincitrax 40mg Injection be used with methocarbamol?', 'Yes. Methocarbamol can be used with Lincitrax 40mg Injection as no serious side effects are known. Inform your doctor before starting any of the medication.'),
(16132, 'Linclan 600mg Tablet', 'Clancare Lifesciences', 'Linclan 600mg Tablet', 'Can the use of Linclan 600mg Tablet cause diarrhea?', 'Yes, the use of Linclan 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16133, 'Linclan 600mg Tablet', 'Clancare Lifesciences', 'Linclan 600mg Tablet', 'What foods should I avoid while taking Linclan 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linclan 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16134, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'What is Linclav 1000mg/200mg Injection?', 'Linclav 1000mg/200mg Injection is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections.. The medicine works by killing the harmful bacteria that cause infections.'),
(16135, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'Is it safe to use Linclav 1000mg/200mg Injection?', 'Linclav 1000mg/200mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(16136, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'How is Linclav 1000mg/200mg Injection administered?', 'Linclav 1000mg/200mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linclav 1000mg/200mg Injection.'),
(16137, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'Are there any specific cautions associated with the use of Linclav 1000mg/200mg Injection?', 'The use of Linclav 1000mg/200mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(16138, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'Can the use of Linclav 1000mg/200mg Injection cause contraceptive failure?', 'Yes, the use of Linclav 1000mg/200mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Linclav 1000mg/200mg Injection.'),
(16139, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'Can I take a higher than the recommended dose of Linclav 1000mg/200mg Injection?', 'No, taking a higher than the recommended dose of Linclav 1000mg/200mg Injection can increase the risks of side effects. Linclav 1000mg/200mg Injection takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(16140, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'What are the instructions for the storage and disposal of Linclav 1000mg/200mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16141, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'Can Linclav 1000mg/200mg Injection cause an allergic reaction?', 'Yes, Linclav 1000mg/200mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(16142, 'Linclav 1000mg/200mg Injection', 'Linex Pharmaceuticals', 'Linclav 1000mg/200mg Injection', 'Can the use of Linclav 1000mg/200mg Injection cause diarrhea?', 'Yes, the use of Linclav 1000mg/200mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16143, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'What is Linclav 500mg/125mg Tablet?', 'Linclav 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(16144, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Is it safe to use Linclav 500mg/125mg Tablet?', 'Linclav 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(16145, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Linclav 500mg/125mg Tablet?', 'The use of Linclav 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(16146, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Can the use of Linclav 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Linclav 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Linclav 500mg/125mg Tablet.'),
(16147, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Linclav 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Linclav 500mg/125mg Tablet can increase the risks of side effects. Linclav 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(16148, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Linclav 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16149, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Can I stop taking Linclav 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Linclav 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(16150, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Can Linclav 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Linclav 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(16151, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Can the use of Linclav 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linclav 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16152, 'Linclav 500mg/125mg Tablet', 'Linex Pharmaceuticals', 'Linclav 500mg/125mg Tablet', 'Can I take Linclav 500mg/125mg Tablet to treat cold and flu?', 'No, Linclav 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(16153, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Can other medicines be given at the same time as Linclav Dry Syrup?', 'Linclav Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linclav Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16154, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Can I get my child vaccinated while on treatment with Linclav Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(16155, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Which lab tests may my child undergo while taking Linclav Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(16156, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Can I give a higher than the recommended dose of Linclav Dry Syrup to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(16157, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Can I stop giving Linclav Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(16158, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Can the use of Linclav Dry Syrup cause diarrhea?', 'Yes, Linclav Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(16159, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16160, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(16161, 'Linclav Dry Syrup', 'Linex Pharmaceuticals', 'Linclav Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(16162, 'Linclox 250mg/250mg Capsule', 'Linex Pharmaceuticals', 'Linclox 250mg/250mg Capsule', 'How long does Linclox 250mg/250mg Capsule takes to work?', 'Usually, Linclox 250mg/250mg Capsule starts working soon after using it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16163, 'Linclox 250mg/250mg Capsule', 'Linex Pharmaceuticals', 'Linclox 250mg/250mg Capsule', 'Can I stop taking Linclox 250mg/250mg Capsule when I feel better?', 'No, do not stop taking Linclox 250mg/250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16164, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'What if I give an excess of Linco 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(16165, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linco 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(16166, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linco 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linco 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(16167, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'Can Linco 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linco 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(16168, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'Can other medicines be given at the same time as Linco 100mg Dry Syrup?', 'Linco 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linco 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16169, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linco 100mg Dry Syrup?', 'For children receiving Linco 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(16170, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linco 100mg Dry Syrup to my child?', 'Avoid giving Linco 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linco 100mg Dry Syrup to your child.'),
(16171, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'What food items should my child avoid while taking Linco 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linco 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(16172, 'Linco 100mg Dry Syrup', 'Dolchem Pharmaceuticals Private Limited', 'Linco 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linco 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linco 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(16173, 'Linco 300mg Injection', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 300mg Injection', 'What if I don\'t get better after using Linco 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16174, 'Linco 300mg Injection', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 300mg Injection', 'Can the use of Linco 300mg Injection cause diarrhea?', 'Yes, the use of Linco 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16175, 'Linco 300mg Injection', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 300mg Injection', 'How long does Linco 300mg Injection take to work?', 'Usually, Linco 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16176, 'Linco 300mg Injection', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 300mg Injection', 'How is Linco 300mg Injection administered?', 'Linco 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linco 300mg Injection.'),
(16177, 'Linco 300mg Injection', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 300mg Injection', 'Is Linco 300mg Injection effective?', 'Linco 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linco 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linco 300mg Injection too early, the symptoms may return or worsen.'),
(16178, 'Linco 300mg Injection', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 300mg Injection', 'Is Linco 300mg Injection safe?', 'Linco 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16179, 'Linco 500mg Capsule', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 500mg Capsule', 'How long does Linco 500mg Capsule take to work?', 'Usually, Linco 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16180, 'Linco 500mg Capsule', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 500mg Capsule', 'What if I don\'t get better after using Linco 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16181, 'Linco 500mg Capsule', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 500mg Capsule', 'Is Linco 500mg Capsule effective?', 'Linco 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linco 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linco 500mg Capsule too early, the symptoms may return or worsen.'),
(16182, 'Linco 500mg Capsule', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 500mg Capsule', 'Can I stop taking Linco 500mg Capsule when I feel better?', 'No, do not stop taking Linco 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16183, 'Linco 500mg Capsule', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 500mg Capsule', 'Can the use of Linco 500mg Capsule cause diarrhea?', 'Yes, the use of Linco 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16184, 'Linco 500mg Capsule', 'Drakt Pharmaceutical Pvt Ltd', 'Linco 500mg Capsule', 'Is Linco 500mg Capsule safe?', 'Linco 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16185, 'Linco 600mg Tablet', 'Dycott Healthcare', 'Linco 600mg Tablet', 'Can the use of Linco 600mg Tablet cause diarrhea?', 'Yes, the use of Linco 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16186, 'Linco 600mg Tablet', 'Dycott Healthcare', 'Linco 600mg Tablet', 'What foods should I avoid while taking Linco 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linco 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16187, 'Lincobiotic Injection', 'Dew Drops Lab', 'Lincobiotic Injection', 'What if I don\'t get better after using Lincobiotic Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16188, 'Lincobiotic Injection', 'Dew Drops Lab', 'Lincobiotic Injection', 'Can the use of Lincobiotic Injection cause diarrhea?', 'Yes, the use of Lincobiotic Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16189, 'Lincobiotic Injection', 'Dew Drops Lab', 'Lincobiotic Injection', 'How long does Lincobiotic Injection take to work?', 'Usually, Lincobiotic Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16190, 'Lincobiotic Injection', 'Dew Drops Lab', 'Lincobiotic Injection', 'How is Lincobiotic Injection administered?', 'Lincobiotic Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincobiotic Injection.'),
(16191, 'Lincobiotic Injection', 'Dew Drops Lab', 'Lincobiotic Injection', 'Is Lincobiotic Injection effective?', 'Lincobiotic Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincobiotic Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincobiotic Injection too early, the symptoms may return or worsen.'),
(16192, 'Lincobiotic Injection', 'Dew Drops Lab', 'Lincobiotic Injection', 'Is Lincobiotic Injection safe?', 'Lincobiotic Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16193, 'Lincocin 300mg Injection', 'Pfizer Ltd', 'Lincocin 300mg Injection', 'Q. What if I don\'t get better after using Lincocin 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16194, 'Lincocin 300mg Injection', 'Pfizer Ltd', 'Lincocin 300mg Injection', 'Q. Can the use of Lincocin 300mg Injection cause diarrhea?', 'Yes, the use of Lincocin 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16195, 'Lincocin 300mg Injection', 'Pfizer Ltd', 'Lincocin 300mg Injection', 'Q. How long does Lincocin 300mg Injection take to work?', 'Usually, Lincocin 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16196, 'Lincocin 300mg Injection', 'Pfizer Ltd', 'Lincocin 300mg Injection', 'Q. How is Lincocin 300mg Injection administered?', 'Lincocin 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincocin 300mg Injection.'),
(16197, 'Lincocin 300mg Injection', 'Pfizer Ltd', 'Lincocin 300mg Injection', 'Q. Is Lincocin 300mg Injection effective?', 'Lincocin 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincocin 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincocin 300mg Injection too early, the symptoms may return or worsen.'),
(16198, 'Lincocin 300mg Injection', 'Pfizer Ltd', 'Lincocin 300mg Injection', 'Q. Is Lincocin 300mg Injection safe?', 'Lincocin 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16199, 'Lincocin 600mg Injection', 'Pfizer Ltd', 'Lincocin 600mg Injection', 'What if I don\'t get better after using Lincocin 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16200, 'Lincocin 600mg Injection', 'Pfizer Ltd', 'Lincocin 600mg Injection', 'Can the use of Lincocin 600mg Injection cause diarrhea?', 'Yes, the use of Lincocin 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16201, 'Lincocin 600mg Injection', 'Pfizer Ltd', 'Lincocin 600mg Injection', 'How long does Lincocin 600mg Injection take to work?', 'Usually, Lincocin 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16202, 'Lincocin 600mg Injection', 'Pfizer Ltd', 'Lincocin 600mg Injection', 'How is Lincocin 600mg Injection administered?', 'Lincocin 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincocin 600mg Injection.'),
(16203, 'Lincocin 600mg Injection', 'Pfizer Ltd', 'Lincocin 600mg Injection', 'Is Lincocin 600mg Injection effective?', 'Lincocin 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincocin 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincocin 600mg Injection too early, the symptoms may return or worsen.'),
(16204, 'Lincocin 600mg Injection', 'Pfizer Ltd', 'Lincocin 600mg Injection', 'Is Lincocin 600mg Injection safe?', 'Lincocin 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16205, 'Lincoderm Cream', 'Lincoln Pharmaceuticals Ltd', 'Lincoderm Cream', 'Can I stop taking Lincoderm Cream when my symptoms are relieved?', 'No, do not stop taking Lincoderm Cream and complete the full course of treatment, even if you feel better. Your symptoms may improve before the skin infection is completely cured.'),
(16206, 'Lincoderm Cream', 'Lincoln Pharmaceuticals Ltd', 'Lincoderm Cream', 'What precautions should be taken while using Lincoderm Cream?', 'Lincoderm Cream should not be used on the face. Do not use the medication for longer periods of time than you have been advised. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side-effects.This medicine should only be used by the patient and never be given to other people even if their condition appears to be the same.'),
(16207, 'Lincoderm Cream', 'Lincoln Pharmaceuticals Ltd', 'Lincoderm Cream', 'What would happen if I use a higher than the recommended dose of Lincoderm Cream for long periods?', 'The dosage and duration of using Lincoderm Cream should be strictly according to the doctor’s advice. It contains clobetasol which when used in higher doses and for longer periods can cause a change in the skin color, at the site of the application. Veins beneath the skin become visible because of thinning and weakening of the skin. There could be an increased hair growth. The medicine may get absorbed into the blood and can cause weight gain, high blood pressure and rounding of the face. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(16208, 'Lincoderm Cream', 'Lincoln Pharmaceuticals Ltd', 'Lincoderm Cream', 'What are the recommended instructions for the storage and disposal of Lincoderm Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16209, 'Lincof D Syrup', 'Unifab pharmaceuticals', 'Lincof D Syrup', 'Can the use of Lincof D Syrup cause sleepiness or drowsiness?', 'Yes, Lincof D Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(16210, 'Lincof D Syrup', 'Unifab pharmaceuticals', 'Lincof D Syrup', 'Will Lincof D Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16211, 'Lincof D Syrup', 'Unifab pharmaceuticals', 'Lincof D Syrup', 'Can I breastfeed while taking Lincof D Syrup?', 'No, it is not advisable to breastfeed while using Lincof D Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(16212, 'Lincof D Syrup', 'Unifab pharmaceuticals', 'Lincof D Syrup', 'What are the instructions for storage and disposal of Lincof D Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16213, 'Lincof Syrup', 'Unifab pharmaceuticals', 'Lincof Syrup', 'What are the instructions for the storage and disposal of Lincof Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16214, 'Lincof Syrup', 'Unifab pharmaceuticals', 'Lincof Syrup', 'Can I take Lincof Syrup along with other medicines?', 'Inform your doctor about the medicines you might be taking before using Lincof Syrup. Let your doctor know if you have any other medical condition.'),
(16215, 'Lincof Syrup', 'Unifab pharmaceuticals', 'Lincof Syrup', 'Will a higher than the recommended dose of Lincof Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16216, 'Lincofin 300mg Injection', 'Staunch Biotech', 'Lincofin 300mg Injection', 'What if I don\'t get better after using Lincofin 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16217, 'Lincofin 300mg Injection', 'Staunch Biotech', 'Lincofin 300mg Injection', 'Can the use of Lincofin 300mg Injection cause diarrhea?', 'Yes, the use of Lincofin 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16218, 'Lincofin 300mg Injection', 'Staunch Biotech', 'Lincofin 300mg Injection', 'How long does Lincofin 300mg Injection take to work?', 'Usually, Lincofin 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16219, 'Lincofin 300mg Injection', 'Staunch Biotech', 'Lincofin 300mg Injection', 'How is Lincofin 300mg Injection administered?', 'Lincofin 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincofin 300mg Injection.'),
(16220, 'Lincofin 300mg Injection', 'Staunch Biotech', 'Lincofin 300mg Injection', 'Is Lincofin 300mg Injection effective?', 'Lincofin 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincofin 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincofin 300mg Injection too early, the symptoms may return or worsen.'),
(16221, 'Lincofin 300mg Injection', 'Staunch Biotech', 'Lincofin 300mg Injection', 'Is Lincofin 300mg Injection safe?', 'Lincofin 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16222, 'Lincofin 600mg Injection', 'Staunch Biotech', 'Lincofin 600mg Injection', 'What if I don\'t get better after using Lincofin 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16223, 'Lincofin 600mg Injection', 'Staunch Biotech', 'Lincofin 600mg Injection', 'Can the use of Lincofin 600mg Injection cause diarrhea?', 'Yes, the use of Lincofin 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16224, 'Lincofin 600mg Injection', 'Staunch Biotech', 'Lincofin 600mg Injection', 'How long does Lincofin 600mg Injection take to work?', 'Usually, Lincofin 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16225, 'Lincofin 600mg Injection', 'Staunch Biotech', 'Lincofin 600mg Injection', 'How is Lincofin 600mg Injection administered?', 'Lincofin 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincofin 600mg Injection.'),
(16226, 'Lincofin 600mg Injection', 'Staunch Biotech', 'Lincofin 600mg Injection', 'Is Lincofin 600mg Injection effective?', 'Lincofin 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincofin 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincofin 600mg Injection too early, the symptoms may return or worsen.'),
(16227, 'Lincofin 600mg Injection', 'Staunch Biotech', 'Lincofin 600mg Injection', 'Is Lincofin 600mg Injection safe?', 'Lincofin 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16228, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'What if I give an excess of Lincol 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(16229, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lincol 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(16230, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lincol 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lincol 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(16231, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'Can Lincol 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lincol 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(16232, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'Can other medicines be given at the same time as Lincol 100mg Dry Syrup?', 'Lincol 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lincol 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16233, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lincol 100mg Dry Syrup?', 'For children receiving Lincol 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(16234, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lincol 100mg Dry Syrup to my child?', 'Avoid giving Lincol 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lincol 100mg Dry Syrup to your child.'),
(16235, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'What food items should my child avoid while taking Lincol 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lincol 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(16236, 'Lincol 100mg Dry Syrup', 'Colors Life Sciences', 'Lincol 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lincol 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lincol 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(16237, 'Lincol 600mg Tablet', 'Colors Life Sciences', 'Lincol 600mg Tablet', 'Can the use of Lincol 600mg Tablet cause diarrhea?', 'Yes, the use of Lincol 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16238, 'Lincol 600mg Tablet', 'Colors Life Sciences', 'Lincol 600mg Tablet', 'What foods should I avoid while taking Lincol 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lincol 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16239, 'Lincol CX 200mg/600mg Tablet', 'Colors Life Sciences', 'Lincol CX 200mg/600mg Tablet', 'What is Lincol CX 200mg/600mg Tablet used for?', 'Lincol CX 200mg/600mg Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(16240, 'Lincol CX 200mg/600mg Tablet', 'Colors Life Sciences', 'Lincol CX 200mg/600mg Tablet', 'Can the use of Lincol CX 200mg/600mg Tablet cause diarrhea?', 'Yes, the use of Lincol CX 200mg/600mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16241, 'Lincol CX 200mg/600mg Tablet', 'Colors Life Sciences', 'Lincol CX 200mg/600mg Tablet', 'Is the use of Lincol CX 200mg/600mg Tablet helpful in the treatment of bronchitis?', 'Yes, Lincol CX 200mg/600mg Tablet is helpful in the treatment of bronchitis.'),
(16242, 'Lincol CX 200mg/600mg Tablet', 'Colors Life Sciences', 'Lincol CX 200mg/600mg Tablet', 'What are the instructions for the storage and disposal of Lincol CX 200mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16243, 'Lincold Plus 5mg/500mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lincold Plus 5mg/500mg/10mg Tablet', 'Q. Is it safe to use Lincold Plus 5mg/500mg/10mg Tablet?', 'Yes, Lincold Plus 5mg/500mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause unwanted side effects like nausea, vomiting, headache, fatigue, dizziness, dryness in the mouth, sleepiness, allergic reaction. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(16244, 'Lincold Plus 5mg/500mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lincold Plus 5mg/500mg/10mg Tablet', 'Q. Can the use of Lincold Plus 5mg/500mg/10mg Tablet cause dizziness?', 'Yes, the use of Lincold Plus 5mg/500mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(16245, 'Lincold Plus 5mg/500mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lincold Plus 5mg/500mg/10mg Tablet', 'Q. Can the use of Lincold Plus 5mg/500mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Lincold Plus 5mg/500mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. If vomiting occurs, drink plenty of water or other fluids. Talk to your doctor if vomiting persists. You should also let your doctor know if you are unable to drink water and there are signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without consulting your doctor.'),
(16246, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'What is Lincold Plus Syrup?', 'Lincold Plus Syrup is a combination of four medicines: Caffeine, Chlorpheniramine, Paracetamol and Phenylephrine. This combination is helpful in relieving the symptoms of cold. These symptoms may include body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, and runny and stuffy nose.'),
(16247, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'Are there any foods which I have to avoid while taking Lincold Plus Syrup?', 'Lincold Plus Syrup contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks and chocolate should be avoided as they may add to your total caffeine intake. Increased caffeine intake can cause difficulty in sleeping, you may experience tremors and/or have chest discomfort. Also, avoid drinking alcohol (beer, wine, etc.) while taking this medicine.'),
(16248, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'What are the instructions for the storage and disposal of Lincold Plus Syrup?', 'Store your medicines in a cool dry place and keep them in the original pack or container until it is time to take them. Store them out of sight and reach of children. Unused medicines should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(16249, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'Are there any serious side effects associated with the use of Lincold Plus Syrup?', 'Serious side effects with Lincold Plus Syrup are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(16250, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'Will a higher than the recommended dose of Lincold Plus Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(16251, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'Are there any contraindications associated with the use of Lincold Plus Syrup?', 'It is not recommended to use Lincold Plus Syrup if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism). However, it can be taken if advised by the doctor.  Its use should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(16252, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'Can I breastfeed while taking Lincold Plus Syrup?', 'No, it is not advisable to breastfeed while using Lincold Plus Syrup. This medicine contains Chlorpheniramine, an antihistamine which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(16253, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'What is Lincold Plus Syrup?', 'Lincold Plus Syrup is a combination of four medicines: Caffeine, Chlorpheniramine, Paracetamol and Phenylephrine. This combination is helpful in relieving the symptoms of cold. These symptoms may include body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, and runny and stuffy nose.'),
(16254, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'Are there any foods which I have to avoid while taking Lincold Plus Syrup?', 'Lincold Plus Syrup contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks and chocolate should be avoided as they may add to your total caffeine intake. Increased caffeine intake can cause difficulty in sleeping, you may experience tremors and/or have chest discomfort. Also, avoid drinking alcohol (beer, wine, etc.) while taking this medicine.'),
(16255, 'Lincold Plus Syrup', 'Linex Pharmaceuticals', 'Lincold Plus Syrup', 'Are there any serious side effects associated with the use of Lincold Plus Syrup?', 'Serious side effects with Lincold Plus Syrup are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(16256, 'Lincom 500mg Capsule', 'Gloucester Pharma', 'Lincom 500mg Capsule', 'How long does Lincom 500mg Capsule take to work?', 'Usually, Lincom 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16257, 'Lincom 500mg Capsule', 'Gloucester Pharma', 'Lincom 500mg Capsule', 'What if I don\'t get better after using Lincom 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16258, 'Lincom 500mg Capsule', 'Gloucester Pharma', 'Lincom 500mg Capsule', 'Is Lincom 500mg Capsule effective?', 'Lincom 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincom 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincom 500mg Capsule too early, the symptoms may return or worsen.'),
(16259, 'Lincom 500mg Capsule', 'Gloucester Pharma', 'Lincom 500mg Capsule', 'Can I stop taking Lincom 500mg Capsule when I feel better?', 'No, do not stop taking Lincom 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16260, 'Lincom 500mg Capsule', 'Gloucester Pharma', 'Lincom 500mg Capsule', 'Can the use of Lincom 500mg Capsule cause diarrhea?', 'Yes, the use of Lincom 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16261, 'Lincom 500mg Capsule', 'Gloucester Pharma', 'Lincom 500mg Capsule', 'Is Lincom 500mg Capsule safe?', 'Lincom 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16262, 'Lincomak Injection', 'Makcur Laboratories Ltd.', 'Lincomak Injection', 'What if I don\'t get better after using Lincomak Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16263, 'Lincomak Injection', 'Makcur Laboratories Ltd.', 'Lincomak Injection', 'Can the use of Lincomak Injection cause diarrhea?', 'Yes, the use of Lincomak Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16264, 'Lincomak Injection', 'Makcur Laboratories Ltd.', 'Lincomak Injection', 'How long does Lincomak Injection take to work?', 'Usually, Lincomak Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16265, 'Lincomak Injection', 'Makcur Laboratories Ltd.', 'Lincomak Injection', 'How is Lincomak Injection administered?', 'Lincomak Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincomak Injection.'),
(16266, 'Lincomak Injection', 'Makcur Laboratories Ltd.', 'Lincomak Injection', 'Is Lincomak Injection effective?', 'Lincomak Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincomak Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincomak Injection too early, the symptoms may return or worsen.'),
(16267, 'Lincomak Injection', 'Makcur Laboratories Ltd.', 'Lincomak Injection', 'Is Lincomak Injection safe?', 'Lincomak Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16268, 'Lincop 600mg Injection', 'Strathspey Labs Pvt Ltd', 'Lincop 600mg Injection', 'What if I don\'t get better after using Lincop 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16269, 'Lincop 600mg Injection', 'Strathspey Labs Pvt Ltd', 'Lincop 600mg Injection', 'Can the use of Lincop 600mg Injection cause diarrhea?', 'Yes, the use of Lincop 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16270, 'Lincop 600mg Injection', 'Strathspey Labs Pvt Ltd', 'Lincop 600mg Injection', 'How long does Lincop 600mg Injection take to work?', 'Usually, Lincop 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16271, 'Lincop 600mg Injection', 'Strathspey Labs Pvt Ltd', 'Lincop 600mg Injection', 'How is Lincop 600mg Injection administered?', 'Lincop 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincop 600mg Injection.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16272, 'Lincop 600mg Injection', 'Strathspey Labs Pvt Ltd', 'Lincop 600mg Injection', 'Is Lincop 600mg Injection effective?', 'Lincop 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincop 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincop 600mg Injection too early, the symptoms may return or worsen.'),
(16273, 'Lincop 600mg Injection', 'Strathspey Labs Pvt Ltd', 'Lincop 600mg Injection', 'Is Lincop 600mg Injection safe?', 'Lincop 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16274, 'Lincopic 250mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 250mg Capsule', 'How long does Lincopic 250mg Capsule take to work?', 'Usually, Lincopic 250mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16275, 'Lincopic 250mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 250mg Capsule', 'What if I don\'t get better after using Lincopic 250mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16276, 'Lincopic 250mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 250mg Capsule', 'Is Lincopic 250mg Capsule effective?', 'Lincopic 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincopic 250mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincopic 250mg Capsule too early, the symptoms may return or worsen.'),
(16277, 'Lincopic 250mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 250mg Capsule', 'Can I stop taking Lincopic 250mg Capsule when I feel better?', 'No, do not stop taking Lincopic 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16278, 'Lincopic 250mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 250mg Capsule', 'Can the use of Lincopic 250mg Capsule cause diarrhea?', 'Yes, the use of Lincopic 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16279, 'Lincopic 250mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 250mg Capsule', 'Is Lincopic 250mg Capsule safe?', 'Lincopic 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16280, 'Lincopic 500mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 500mg Capsule', 'How long does Lincopic 500mg Capsule take to work?', 'Usually, Lincopic 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16281, 'Lincopic 500mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 500mg Capsule', 'What if I don\'t get better after using Lincopic 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16282, 'Lincopic 500mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 500mg Capsule', 'Is Lincopic 500mg Capsule effective?', 'Lincopic 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincopic 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincopic 500mg Capsule too early, the symptoms may return or worsen.'),
(16283, 'Lincopic 500mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 500mg Capsule', 'Can I stop taking Lincopic 500mg Capsule when I feel better?', 'No, do not stop taking Lincopic 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16284, 'Lincopic 500mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 500mg Capsule', 'Can the use of Lincopic 500mg Capsule cause diarrhea?', 'Yes, the use of Lincopic 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16285, 'Lincopic 500mg Capsule', 'Alpic Remedies Ltd', 'Lincopic 500mg Capsule', 'Is Lincopic 500mg Capsule safe?', 'Lincopic 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16286, 'Lincopic Suspension', 'Alpic Remedies Ltd', 'Lincopic Suspension', 'How long does Lincopic Suspension take to work?', 'Usually, Lincopic Suspension starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16287, 'Lincopic Suspension', 'Alpic Remedies Ltd', 'Lincopic Suspension', 'What if I don\'t get better after using Lincopic Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16288, 'Lincopic Suspension', 'Alpic Remedies Ltd', 'Lincopic Suspension', 'Is Lincopic Suspension effective?', 'Lincopic Suspension is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincopic Suspension is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincopic Suspension too early, the symptoms may return or worsen.'),
(16289, 'Lincopic Suspension', 'Alpic Remedies Ltd', 'Lincopic Suspension', 'Can I stop taking Lincopic Suspension when I feel better?', 'No, do not stop taking Lincopic Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16290, 'Lincopic Suspension', 'Alpic Remedies Ltd', 'Lincopic Suspension', 'Can the use of Lincopic Suspension cause diarrhea?', 'Yes, the use of Lincopic Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16291, 'Lincopic Suspension', 'Alpic Remedies Ltd', 'Lincopic Suspension', 'Is Lincopic Suspension safe?', 'Lincopic Suspension is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16292, 'Lincopride 500mg Capsule', 'Innovative Pharmaceuticals', 'Lincopride 500mg Capsule', 'How long does Lincopride 500mg Capsule take to work?', 'Usually, Lincopride 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16293, 'Lincopride 500mg Capsule', 'Innovative Pharmaceuticals', 'Lincopride 500mg Capsule', 'What if I don\'t get better after using Lincopride 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16294, 'Lincopride 500mg Capsule', 'Innovative Pharmaceuticals', 'Lincopride 500mg Capsule', 'Is Lincopride 500mg Capsule effective?', 'Lincopride 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincopride 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincopride 500mg Capsule too early, the symptoms may return or worsen.'),
(16295, 'Lincopride 500mg Capsule', 'Innovative Pharmaceuticals', 'Lincopride 500mg Capsule', 'Can I stop taking Lincopride 500mg Capsule when I feel better?', 'No, do not stop taking Lincopride 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16296, 'Lincopride 500mg Capsule', 'Innovative Pharmaceuticals', 'Lincopride 500mg Capsule', 'Can the use of Lincopride 500mg Capsule cause diarrhea?', 'Yes, the use of Lincopride 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16297, 'Lincopride 500mg Capsule', 'Innovative Pharmaceuticals', 'Lincopride 500mg Capsule', 'Is Lincopride 500mg Capsule safe?', 'Lincopride 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16298, 'Lincopride 600mg Injection', 'Innovative Pharmaceuticals', 'Lincopride 600mg Injection', 'What if I don\'t get better after using Lincopride 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16299, 'Lincopride 600mg Injection', 'Innovative Pharmaceuticals', 'Lincopride 600mg Injection', 'Can the use of Lincopride 600mg Injection cause diarrhea?', 'Yes, the use of Lincopride 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16300, 'Lincopride 600mg Injection', 'Innovative Pharmaceuticals', 'Lincopride 600mg Injection', 'How long does Lincopride 600mg Injection take to work?', 'Usually, Lincopride 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16301, 'Lincopride 600mg Injection', 'Innovative Pharmaceuticals', 'Lincopride 600mg Injection', 'How is Lincopride 600mg Injection administered?', 'Lincopride 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincopride 600mg Injection.'),
(16302, 'Lincopride 600mg Injection', 'Innovative Pharmaceuticals', 'Lincopride 600mg Injection', 'Is Lincopride 600mg Injection effective?', 'Lincopride 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincopride 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincopride 600mg Injection too early, the symptoms may return or worsen.'),
(16303, 'Lincopride 600mg Injection', 'Innovative Pharmaceuticals', 'Lincopride 600mg Injection', 'Is Lincopride 600mg Injection safe?', 'Lincopride 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16304, 'Lincorex BR Suspension', 'Lincoln Pharmaceuticals Ltd', 'Lincorex BR Suspension', 'Will Lincorex BR Suspension be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16305, 'Lincorex BR Suspension', 'Lincoln Pharmaceuticals Ltd', 'Lincorex BR Suspension', 'What are the instructions for storage and disposal of Lincorex BR Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16306, 'Lincoriv 300mg Injection', 'East African (India) Overseas', 'Lincoriv 300mg Injection', 'What if I don\'t get better after using Lincoriv 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16307, 'Lincoriv 300mg Injection', 'East African (India) Overseas', 'Lincoriv 300mg Injection', 'Can the use of Lincoriv 300mg Injection cause diarrhea?', 'Yes, the use of Lincoriv 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16308, 'Lincoriv 300mg Injection', 'East African (India) Overseas', 'Lincoriv 300mg Injection', 'How long does Lincoriv 300mg Injection take to work?', 'Usually, Lincoriv 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16309, 'Lincoriv 300mg Injection', 'East African (India) Overseas', 'Lincoriv 300mg Injection', 'How is Lincoriv 300mg Injection administered?', 'Lincoriv 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincoriv 300mg Injection.'),
(16310, 'Lincoriv 300mg Injection', 'East African (India) Overseas', 'Lincoriv 300mg Injection', 'Is Lincoriv 300mg Injection effective?', 'Lincoriv 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincoriv 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincoriv 300mg Injection too early, the symptoms may return or worsen.'),
(16311, 'Lincoriv 300mg Injection', 'East African (India) Overseas', 'Lincoriv 300mg Injection', 'Is Lincoriv 300mg Injection safe?', 'Lincoriv 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16312, 'Lincort 6mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincort 6mg Tablet (Lincoln Pharmaceuticals Ltd)', 'Is Lincort 6mg Tablet a steroid?', 'Yes, Lincort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lincort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(16313, 'Lincort 6mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincort 6mg Tablet (Lincoln Pharmaceuticals Ltd)', 'What is Lincort 6mg Tablet used for?', 'Lincort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(16314, 'Lincort 6mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincort 6mg Tablet (Lincoln Pharmaceuticals Ltd)', 'How does Lincort 6mg Tablet work?', 'Lincort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(16315, 'Lincort 6mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincort 6mg Tablet (Lincoln Pharmaceuticals Ltd)', 'Is Lincort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lincort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lincort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(16316, 'Lincort 6mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincort 6mg Tablet (Lincoln Pharmaceuticals Ltd)', 'Is Lincort 6mg Tablet a painkiller?', 'No, Lincort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(16317, 'Lincort 6mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lincort 6mg Tablet (Lincoln Pharmaceuticals Ltd)', 'Can I take Lincort 6mg Tablet with Tamsulosin?', 'Yes, Lincort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(16318, 'Lincort 6mg Tablet', 'Pharmasynth Formulations Ltd', 'Lincort 6mg Tablet (Pharmasynth Formulations Ltd)', 'Is Lincort 6mg Tablet a steroid?', 'Yes, Lincort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lincort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(16319, 'Lincort 6mg Tablet', 'Pharmasynth Formulations Ltd', 'Lincort 6mg Tablet (Pharmasynth Formulations Ltd)', 'What is Lincort 6mg Tablet used for?', 'Lincort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(16320, 'Lincort 6mg Tablet', 'Pharmasynth Formulations Ltd', 'Lincort 6mg Tablet (Pharmasynth Formulations Ltd)', 'How does Lincort 6mg Tablet work?', 'Lincort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(16321, 'Lincort 6mg Tablet', 'Pharmasynth Formulations Ltd', 'Lincort 6mg Tablet (Pharmasynth Formulations Ltd)', 'Is Lincort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lincort 6mg Tablet has a similar effect as that of prednisone. Moreover, Lincort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(16322, 'Lincort 6mg Tablet', 'Pharmasynth Formulations Ltd', 'Lincort 6mg Tablet (Pharmasynth Formulations Ltd)', 'Is Lincort 6mg Tablet a painkiller?', 'No, Lincort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(16323, 'Lincort 6mg Tablet', 'Pharmasynth Formulations Ltd', 'Lincort 6mg Tablet (Pharmasynth Formulations Ltd)', 'Can I take Lincort 6mg Tablet with Tamsulosin?', 'Yes, Lincort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(16324, 'Lincosa 300mg Injection', 'Zota Health care Ltd', 'Lincosa 300mg Injection', 'What if I don\'t get better after using Lincosa 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16325, 'Lincosa 300mg Injection', 'Zota Health care Ltd', 'Lincosa 300mg Injection', 'Can the use of Lincosa 300mg Injection cause diarrhea?', 'Yes, the use of Lincosa 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16326, 'Lincosa 300mg Injection', 'Zota Health care Ltd', 'Lincosa 300mg Injection', 'How long does Lincosa 300mg Injection take to work?', 'Usually, Lincosa 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16327, 'Lincosa 300mg Injection', 'Zota Health care Ltd', 'Lincosa 300mg Injection', 'How is Lincosa 300mg Injection administered?', 'Lincosa 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincosa 300mg Injection.'),
(16328, 'Lincosa 300mg Injection', 'Zota Health care Ltd', 'Lincosa 300mg Injection', 'Is Lincosa 300mg Injection effective?', 'Lincosa 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincosa 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincosa 300mg Injection too early, the symptoms may return or worsen.'),
(16329, 'Lincosa 300mg Injection', 'Zota Health care Ltd', 'Lincosa 300mg Injection', 'Is Lincosa 300mg Injection safe?', 'Lincosa 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16330, 'Lincosin 250mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 250mg Capsule', 'How long does Lincosin 250mg Capsule take to work?', 'Usually, Lincosin 250mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16331, 'Lincosin 250mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 250mg Capsule', 'What if I don\'t get better after using Lincosin 250mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16332, 'Lincosin 250mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 250mg Capsule', 'Is Lincosin 250mg Capsule effective?', 'Lincosin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincosin 250mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincosin 250mg Capsule too early, the symptoms may return or worsen.'),
(16333, 'Lincosin 250mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 250mg Capsule', 'Can I stop taking Lincosin 250mg Capsule when I feel better?', 'No, do not stop taking Lincosin 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16334, 'Lincosin 250mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 250mg Capsule', 'Can the use of Lincosin 250mg Capsule cause diarrhea?', 'Yes, the use of Lincosin 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16335, 'Lincosin 250mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 250mg Capsule', 'Is Lincosin 250mg Capsule safe?', 'Lincosin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16336, 'Lincosin 500mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 500mg Capsule', 'How long does Lincosin 500mg Capsule take to work?', 'Usually, Lincosin 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16337, 'Lincosin 500mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 500mg Capsule', 'What if I don\'t get better after using Lincosin 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16338, 'Lincosin 500mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 500mg Capsule', 'Is Lincosin 500mg Capsule effective?', 'Lincosin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincosin 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincosin 500mg Capsule too early, the symptoms may return or worsen.'),
(16339, 'Lincosin 500mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 500mg Capsule', 'Can I stop taking Lincosin 500mg Capsule when I feel better?', 'No, do not stop taking Lincosin 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16340, 'Lincosin 500mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 500mg Capsule', 'Can the use of Lincosin 500mg Capsule cause diarrhea?', 'Yes, the use of Lincosin 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16341, 'Lincosin 500mg Capsule', 'Globela Pharma Pvt Ltd', 'Lincosin 500mg Capsule', 'Is Lincosin 500mg Capsule safe?', 'Lincosin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16342, 'Lincosin Ds 250mg Oral Suspension', 'Navlakshya Pharma', 'Lincosin Ds 250mg Oral Suspension', 'How long does Lincosin Ds 250mg Oral Suspension take to work?', 'Usually, Lincosin Ds 250mg Oral Suspension starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16343, 'Lincosin Ds 250mg Oral Suspension', 'Navlakshya Pharma', 'Lincosin Ds 250mg Oral Suspension', 'What if I don\'t get better after using Lincosin Ds 250mg Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16344, 'Lincosin Ds 250mg Oral Suspension', 'Navlakshya Pharma', 'Lincosin Ds 250mg Oral Suspension', 'Is Lincosin Ds 250mg Oral Suspension effective?', 'Lincosin Ds 250mg Oral Suspension is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincosin Ds 250mg Oral Suspension is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincosin Ds 250mg Oral Suspension too early, the symptoms may return or worsen.'),
(16345, 'Lincosin Ds 250mg Oral Suspension', 'Navlakshya Pharma', 'Lincosin Ds 250mg Oral Suspension', 'Can I stop taking Lincosin Ds 250mg Oral Suspension when I feel better?', 'No, do not stop taking Lincosin Ds 250mg Oral Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16346, 'Lincosin Ds 250mg Oral Suspension', 'Navlakshya Pharma', 'Lincosin Ds 250mg Oral Suspension', 'Can the use of Lincosin Ds 250mg Oral Suspension cause diarrhea?', 'Yes, the use of Lincosin Ds 250mg Oral Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16347, 'Lincosin Ds 250mg Oral Suspension', 'Navlakshya Pharma', 'Lincosin Ds 250mg Oral Suspension', 'Is Lincosin Ds 250mg Oral Suspension safe?', 'Lincosin Ds 250mg Oral Suspension is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16348, 'Lincost 500mg Capsule', 'Ester Formulations', 'Lincost 500mg Capsule', 'How long does Lincost 500mg Capsule take to work?', 'Usually, Lincost 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16349, 'Lincost 500mg Capsule', 'Ester Formulations', 'Lincost 500mg Capsule', 'What if I don\'t get better after using Lincost 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16350, 'Lincost 500mg Capsule', 'Ester Formulations', 'Lincost 500mg Capsule', 'Is Lincost 500mg Capsule effective?', 'Lincost 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincost 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincost 500mg Capsule too early, the symptoms may return or worsen.'),
(16351, 'Lincost 500mg Capsule', 'Ester Formulations', 'Lincost 500mg Capsule', 'Can I stop taking Lincost 500mg Capsule when I feel better?', 'No, do not stop taking Lincost 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16352, 'Lincost 500mg Capsule', 'Ester Formulations', 'Lincost 500mg Capsule', 'Can the use of Lincost 500mg Capsule cause diarrhea?', 'Yes, the use of Lincost 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16353, 'Lincost 500mg Capsule', 'Ester Formulations', 'Lincost 500mg Capsule', 'Is Lincost 500mg Capsule safe?', 'Lincost 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16354, 'Lincosun 150mg Injection', 'Sunrise Remedies Pvt Ltd', 'Lincosun 150mg Injection', 'How long does Lincosun 150mg Injection take to work?', 'Usually, Lincosun 150mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16355, 'Lincosun 150mg Injection', 'Sunrise Remedies Pvt Ltd', 'Lincosun 150mg Injection', 'Is Lincosun 150mg Injection effective?', 'Lincosun 150mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincosun 150mg Injection too early, the symptoms may return or worsen.'),
(16356, 'Lincosun 150mg Injection', 'Sunrise Remedies Pvt Ltd', 'Lincosun 150mg Injection', 'How is Lincosun 150mg Injection administered?', 'Lincosun 150mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincosun 150mg Injection.'),
(16357, 'Lincosun 150mg Injection', 'Sunrise Remedies Pvt Ltd', 'Lincosun 150mg Injection', 'Can the use of Lincosun 150mg Injection cause diarrhea?', 'Yes, the use of Lincosun 150mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16358, 'Lincosun 150mg Injection', 'Sunrise Remedies Pvt Ltd', 'Lincosun 150mg Injection', 'Is Lincosun 150mg Injection safe?', 'Lincosun 150mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16359, 'Lincosun 150mg Injection', 'Sunrise Remedies Pvt Ltd', 'Lincosun 150mg Injection', 'What if I don\'t get better after using Lincosun 150mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16360, 'Lincosun 150mg Injection', 'Sunrise Remedies Pvt Ltd', 'Lincosun 150mg Injection', 'Is Lincosun 150mg Injection effective?', 'Lincosun 150mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincosun 150mg Injection too early, the symptoms may return or worsen.'),
(16361, 'Lincotus EX Expectorant Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus EX Expectorant Sugar Free', 'Will a higher than the recommended dose of Lincotus EX  Expectorant Sugar Free be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Lincotus EX  Expectorant Sugar Free, please consult your doctor.'),
(16362, 'Lincotus EX Expectorant Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus EX Expectorant Sugar Free', 'In which type of cough will the doctor prescribe Lincotus EX  Expectorant Sugar Free?', 'Lincotus EX  Expectorant Sugar Free is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(16363, 'Lincotus EX Expectorant Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus EX Expectorant Sugar Free', 'Are there any contraindications associated with use of Lincotus EX  Expectorant Sugar Free?', 'It is not recommended to use Lincotus EX  Expectorant Sugar Free if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(16364, 'Lincotus EX Expectorant Sugar Free', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus EX Expectorant Sugar Free', 'What are the instructions for the storage and disposal of Lincotus EX  Expectorant Sugar Free?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16365, 'Lincotus EX Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus EX Syrup', 'Will Lincotus EX  Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16366, 'Lincotus EX Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus EX Syrup', 'What are the instructions for storage and disposal of Lincotus EX  Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16367, 'Lincotus PD Expectorant', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus PD Expectorant', 'What is Lincotus PD Expectorant?', 'Lincotus PD Expectorant is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(16368, 'Lincotus PD Expectorant', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus PD Expectorant', 'Is it safe to use Lincotus PD Expectorant?', 'Yes, it is safe to use Lincotus PD Expectorant in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(16369, 'Lincotus PD Expectorant', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus PD Expectorant', 'Are there any specific contraindications associated with the use of Lincotus PD Expectorant?', 'Use of Lincotus PD Expectorant is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(16370, 'Lincotus PD Expectorant', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus PD Expectorant', 'Can the use of Lincotus PD Expectorant cause dizziness?', 'Yes, the use of Lincotus PD Expectorant can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(16371, 'Lincotus PD Expectorant', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus PD Expectorant', 'Can the use of Lincotus PD Expectorant cause diarrhea?', 'Yes, the use of Lincotus PD Expectorant can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(16372, 'Lincotus PD Expectorant', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus PD Expectorant', 'What are the recommended storage conditions for Lincotus PD Expectorant?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16373, 'Lincotus Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus Syrup', 'What is Lincotus Syrup?', 'Lincotus Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(16374, 'Lincotus Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus Syrup', 'Is it safe to use Lincotus Syrup?', 'Yes, it is safe to use Lincotus Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(16375, 'Lincotus Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus Syrup', 'Are there any specific contraindications associated with the use of Lincotus Syrup?', 'Use of Lincotus Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(16376, 'Lincotus Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus Syrup', 'Can the use of Lincotus Syrup cause dizziness?', 'Yes, the use of Lincotus Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(16377, 'Lincotus Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus Syrup', 'Can the use of Lincotus Syrup cause diarrhea?', 'Yes, the use of Lincotus Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(16378, 'Lincotus Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotus Syrup', 'What are the recommended storage conditions for Lincotus Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16379, 'Lincotuss 15mg Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotuss 15mg Syrup', 'What is Lincotuss 15mg Syrup used for?', 'Lincotuss 15mg Syrup is used to relieve moderate to severe pain. It is also used, usually in combination with other medications, to reduce coughing.'),
(16380, 'Lincotuss 15mg Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotuss 15mg Syrup', 'Is Lincotuss 15mg Syrup addictive?', 'Yes, it is possible to become addicted to this medicine. Always follow your doctor\'s instructions to reduce the risks of becoming addicted.'),
(16381, 'Lincotuss 15mg Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotuss 15mg Syrup', 'How will I know if I\'m addicted to it?', 'If you\'re addicted to this medicine, you may want to take it more often or feel agitated if you delay taking a dose for any reason. And if you stop taking it suddenly you may suffer from withdrawal symptoms (feeling irritable or anxious, trouble sleeping, faster heartbeat). Talk to your doctor for advice if you are worried about addiction.'),
(16382, 'Lincotuss 15mg Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotuss 15mg Syrup', 'Will Lincotuss 15mg Syrup affect my fertility?', 'There are no confirmed studies to show that Lincotuss 15mg Syrup affects your fertility if taken for a short time and at normal doses. However, if you\'ve been taking it for a long time and you are concerned about your fertility, or you are trying to get pregnant, speak to your doctor.'),
(16383, 'Lincotuss 15mg Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotuss 15mg Syrup', 'Does Lincotuss 15mg Syrup cause constipation?', 'Yes, you may experience severe constipation after taking this medicine. Include fiber-rich food and increase your water intake. You may also consult your doctor to prescribe you a laxative or stool softener to get some relief.'),
(16384, 'Lincotuss 15mg Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lincotuss 15mg Syrup', 'Who is codeine not suitable for?', 'FDA (Food and Drug Administration) has restricted the use of codeine to treat pain or cough in children younger than 12 years. This is because it poses serious risks, including slowed or difficult breathing and death, which appear to be a greater risk in children younger than 12 years. Along with this, this medicine is also not recommended to breastfeeding mothers due to the risk of serious adverse reactions in breastfed infants. These include excess sleepiness, difficulty breastfeeding, or serious breathing problems which can be fatal.'),
(16385, 'Lincotuss PD Expectorant', 'ITC ltd', 'Lincotuss PD Expectorant', 'What is Lincotuss PD Expectorant?', 'Lincotuss PD Expectorant is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(16386, 'Lincotuss PD Expectorant', 'ITC ltd', 'Lincotuss PD Expectorant', 'Is it safe to use Lincotuss PD Expectorant?', 'Yes, it is safe to use Lincotuss PD Expectorant in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(16387, 'Lincotuss PD Expectorant', 'ITC ltd', 'Lincotuss PD Expectorant', 'Are there any specific contraindications associated with the use of Lincotuss PD Expectorant?', 'Use of Lincotuss PD Expectorant is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16388, 'Lincotuss PD Expectorant', 'ITC ltd', 'Lincotuss PD Expectorant', 'Can the use of Lincotuss PD Expectorant cause dizziness?', 'Yes, the use of Lincotuss PD Expectorant can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(16389, 'Lincotuss PD Expectorant', 'ITC ltd', 'Lincotuss PD Expectorant', 'Can the use of Lincotuss PD Expectorant cause diarrhea?', 'Yes, the use of Lincotuss PD Expectorant can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(16390, 'Lincotuss PD Expectorant', 'ITC ltd', 'Lincotuss PD Expectorant', 'What are the recommended storage conditions for Lincotuss PD Expectorant?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16391, 'Lincotuss Plus Syrup', 'Oriel Healthcare Pvt Ltd', 'Lincotuss Plus Syrup', 'What are the instructions for the storage and disposal of Lincotuss Plus Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16392, 'Lincotuss Plus Syrup', 'Oriel Healthcare Pvt Ltd', 'Lincotuss Plus Syrup', 'Can I take Lincotuss Plus Syrup along with other medicines?', 'Inform your doctor about the medicines you might be taking before using Lincotuss Plus Syrup. Let your doctor know if you have any other medical condition.'),
(16393, 'Lincotuss Plus Syrup', 'Oriel Healthcare Pvt Ltd', 'Lincotuss Plus Syrup', 'Will a higher than the recommended dose of Lincotuss Plus Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16394, 'Lincov 600mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Lincov 600mg Tablet', 'Can the use of Lincov 600mg Tablet cause diarrhea?', 'Yes, the use of Lincov 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16395, 'Lincov 600mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Lincov 600mg Tablet', 'What foods should I avoid while taking Lincov 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lincov 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16396, 'Lincova 500mg Capsule', 'Ikon Remedies Pvt Ltd', 'Lincova 500mg Capsule', 'How long does Lincova 500mg Capsule take to work?', 'Usually, Lincova 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16397, 'Lincova 500mg Capsule', 'Ikon Remedies Pvt Ltd', 'Lincova 500mg Capsule', 'What if I don\'t get better after using Lincova 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16398, 'Lincova 500mg Capsule', 'Ikon Remedies Pvt Ltd', 'Lincova 500mg Capsule', 'Is Lincova 500mg Capsule effective?', 'Lincova 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincova 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincova 500mg Capsule too early, the symptoms may return or worsen.'),
(16399, 'Lincova 500mg Capsule', 'Ikon Remedies Pvt Ltd', 'Lincova 500mg Capsule', 'Can I stop taking Lincova 500mg Capsule when I feel better?', 'No, do not stop taking Lincova 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16400, 'Lincova 500mg Capsule', 'Ikon Remedies Pvt Ltd', 'Lincova 500mg Capsule', 'Can the use of Lincova 500mg Capsule cause diarrhea?', 'Yes, the use of Lincova 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16401, 'Lincova 500mg Capsule', 'Ikon Remedies Pvt Ltd', 'Lincova 500mg Capsule', 'Is Lincova 500mg Capsule safe?', 'Lincova 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16402, 'Lincova 600mg Injection', 'Ikon Remedies Pvt Ltd', 'Lincova 600mg Injection', 'What if I don\'t get better after using Lincova 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16403, 'Lincova 600mg Injection', 'Ikon Remedies Pvt Ltd', 'Lincova 600mg Injection', 'Can the use of Lincova 600mg Injection cause diarrhea?', 'Yes, the use of Lincova 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16404, 'Lincova 600mg Injection', 'Ikon Remedies Pvt Ltd', 'Lincova 600mg Injection', 'How long does Lincova 600mg Injection take to work?', 'Usually, Lincova 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16405, 'Lincova 600mg Injection', 'Ikon Remedies Pvt Ltd', 'Lincova 600mg Injection', 'How is Lincova 600mg Injection administered?', 'Lincova 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincova 600mg Injection.'),
(16406, 'Lincova 600mg Injection', 'Ikon Remedies Pvt Ltd', 'Lincova 600mg Injection', 'Is Lincova 600mg Injection effective?', 'Lincova 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincova 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincova 600mg Injection too early, the symptoms may return or worsen.'),
(16407, 'Lincova 600mg Injection', 'Ikon Remedies Pvt Ltd', 'Lincova 600mg Injection', 'Is Lincova 600mg Injection safe?', 'Lincova 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16408, 'Lincowin 600mg Injection', 'Mediwin Pharmaceuticals', 'Lincowin 600mg Injection', 'What if I don\'t get better after using Lincowin 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16409, 'Lincowin 600mg Injection', 'Mediwin Pharmaceuticals', 'Lincowin 600mg Injection', 'Can the use of Lincowin 600mg Injection cause diarrhea?', 'Yes, the use of Lincowin 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16410, 'Lincowin 600mg Injection', 'Mediwin Pharmaceuticals', 'Lincowin 600mg Injection', 'How long does Lincowin 600mg Injection take to work?', 'Usually, Lincowin 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16411, 'Lincowin 600mg Injection', 'Mediwin Pharmaceuticals', 'Lincowin 600mg Injection', 'How is Lincowin 600mg Injection administered?', 'Lincowin 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincowin 600mg Injection.'),
(16412, 'Lincowin 600mg Injection', 'Mediwin Pharmaceuticals', 'Lincowin 600mg Injection', 'Is Lincowin 600mg Injection effective?', 'Lincowin 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincowin 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincowin 600mg Injection too early, the symptoms may return or worsen.'),
(16413, 'Lincowin 600mg Injection', 'Mediwin Pharmaceuticals', 'Lincowin 600mg Injection', 'Is Lincowin 600mg Injection safe?', 'Lincowin 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16414, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'What is LINCOX 90MG TABLET used for?', 'LINCOX 90MG TABLET is used to reduce the pain and swelling (inflammation) in the joints and muscles of people 16 years of age and older with rheumatoid arthritis, ankylosing spondylitis and gout. LINCOX 90MG TABLET is also used for the short term treatment of moderate pain after dental surgery in people 16 years of age and older.'),
(16415, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Is it safe to use LINCOX 90MG TABLET?', 'LINCOX 90MG TABLET is safe for most patients. However, in some patients, it may cause some unwanted side effects like nausea, vomiting, stomach pain, fatigue, diarrhea, etc. Inform your doctor if you experience any persistent problem due to this medication.'),
(16416, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Can I stop taking LINCOX 90MG TABLET when my pain is relieved?', 'LINCOX 90MG TABLET should be continued as advised by your doctor, if you are using the medicine for a condition associated with long-term pain. It can be discontinued if you are using it for short-term pain relief.'),
(16417, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Can the use of LINCOX 90MG TABLET cause nausea and vomiting?', 'Yes, the use of LINCOX 90MG TABLET may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(16418, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Can the use of LINCOX 90MG TABLET cause dizziness?', 'Yes, the use of LINCOX 90MG TABLET can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for sometime and resume once you feel better.'),
(16419, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Are there any specific contraindications associated with the use of LINCOX 90MG TABLET?', 'The use of LINCOX 90MG TABLET is considered to be harmful for patients with known allergy to any of the components of this medicine. It should be avoided in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active or recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(16420, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Is LINCOX 90MG TABLET helpful in relieving stomach pain?', 'No, LINCOX 90MG TABLET should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(16421, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Can the use of LINCOX 90MG TABLET cause damage to kidneys?', 'Yes, the long-term use of LINCOX 90MG TABLET can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lowers the levels of prostaglandins in the body, leading to kidney damage because of long-term use. Therefore, the use of painkillers is not recommended in patients with underlying kidney disease.'),
(16422, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Is it safe to take a higher than the recommended dose of LINCOX 90MG TABLET ?', 'No, taking a higher than the recommended dose of LINCOX 90MG TABLET can increase the risks of side effects like stomach pain, nausea, vomiting, indigestion and diarrhea. In fact, using this medicine for a long-term can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(16423, 'LINCOX 90MG TABLET', 'Sarthi Life Sciences', 'LINCOX 90MG TABLET', 'Can LINCOX 90MG TABLET cause high blood pressure?', 'Yes. LINCOX 90MG TABLET can increase blood pressure in some people, especially in high doses, and your doctor may advise you to check your blood pressure at home or even monitor it from time to time. If you have high blood pressure that has not been controlled by treatment, you must inform your doctor before starting treatment with LINCOX 90MG TABLET, to avoid any mishap.'),
(16424, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'What is Lincoxib 120mg Tablet used for?', 'Lincoxib 120mg Tablet is used to reduce the pain and swelling (inflammation) in the joints and muscles of people 16 years of age and older with rheumatoid arthritis, ankylosing spondylitis and gout. Lincoxib 120mg Tablet is also used for the short term treatment of moderate pain after dental surgery in people 16 years of age and older.'),
(16425, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Is Lincoxib 120mg Tablet helpful in relieving stomach pain?', 'No, Lincoxib 120mg Tablet should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(16426, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Can the use of Lincoxib 120mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lincoxib 120mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lowers the levels of prostaglandins in the body, leading to kidney damage because of long-term use. Therefore, the use of painkillers is not recommended in patients with underlying kidney disease.'),
(16427, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Can Lincoxib 120mg Tablet cause high blood pressure?', 'Yes. Lincoxib 120mg Tablet can increase blood pressure in some people, especially in high doses, and your doctor may advise you to check your blood pressure at home or even monitor it from time to time. If you have high blood pressure that has not been controlled by treatment, you must inform your doctor before starting treatment with Lincoxib 120mg Tablet, to avoid any mishap.'),
(16428, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Is it safe to use Lincoxib 120mg Tablet?', 'Lincoxib 120mg Tablet is safe for most patients. However, in some patients, it may cause some unwanted side effects like nausea, vomiting, stomach pain, fatigue, diarrhea, etc. Inform your doctor if you experience any persistent problem due to this medication.'),
(16429, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Can I stop taking Lincoxib 120mg Tablet when my pain is relieved?', 'Lincoxib 120mg Tablet should be continued as advised by your doctor, if you are using the medicine for a condition associated with long-term pain. It can be discontinued if you are using it for short-term pain relief.'),
(16430, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Can the use of Lincoxib 120mg Tablet cause nausea and vomiting?', 'Yes, the use of Lincoxib 120mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(16431, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Can the use of Lincoxib 120mg Tablet cause dizziness?', 'Yes, the use of Lincoxib 120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for sometime and resume once you feel better.'),
(16432, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Are there any specific contraindications associated with the use of Lincoxib 120mg Tablet?', 'The use of Lincoxib 120mg Tablet is considered to be harmful for patients with known allergy to any of the components of this medicine. It should be avoided in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active or recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(16433, 'Lincoxib 120mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Lincoxib 120mg Tablet', 'Is it safe to take a higher than the recommended dose of Lincoxib 120mg Tablet ?', 'No, taking a higher than the recommended dose of Lincoxib 120mg Tablet can increase the risks of side effects like stomach pain, nausea, vomiting, indigestion and diarrhea. In fact, using this medicine for a long-term can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(16434, 'Lincox-T4 Tablet', 'Sarthi Life Sciences', 'Lincox-T4 Tablet', 'Can I stop taking Lincox-T4 Tablet when my pain is relieved?', 'Lincox-T4 Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(16435, 'Lincox-T4 Tablet', 'Sarthi Life Sciences', 'Lincox-T4 Tablet', 'Can the use of Lincox-T4 Tablet cause dizziness?', 'Yes, the use of Lincox-T4 Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(16436, 'Lincox-T4 Tablet', 'Sarthi Life Sciences', 'Lincox-T4 Tablet', 'Are there any specific contraindications associated with the use of Lincox-T4 Tablet?', 'The use of Lincox-T4 Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDS) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(16437, 'Lincox-T4 Tablet', 'Sarthi Life Sciences', 'Lincox-T4 Tablet', 'Can I take Lincox-T4 Tablet with Vitamin B-complex?', 'Yes, Lincox-T4 Tablet can be taken with Vitamin B-complex preparations. While Lincox-T4 Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(16438, 'Lincox-T4 Tablet', 'Sarthi Life Sciences', 'Lincox-T4 Tablet', 'Can the use of Lincox-T4 Tablet cause damage to kidneys?', 'Yes, the long-term use of Lincox-T4 Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(16439, 'Lincox-T4 Tablet', 'Sarthi Life Sciences', 'Lincox-T4 Tablet', 'Will Lincox-T4 Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(16440, 'Lincox-T4 Tablet', 'Sarthi Life Sciences', 'Lincox-T4 Tablet', 'What is the recommended storage condition for Lincox-T4 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16441, 'Lincozin 125mg Syrup', 'Taj Pharma India Ltd', 'Lincozin 125mg Syrup', 'How long does Lincozin 125mg Syrup take to work?', 'Usually, Lincozin 125mg Syrup starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16442, 'Lincozin 125mg Syrup', 'Taj Pharma India Ltd', 'Lincozin 125mg Syrup', 'What if I don\'t get better after using Lincozin 125mg Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16443, 'Lincozin 125mg Syrup', 'Taj Pharma India Ltd', 'Lincozin 125mg Syrup', 'Is Lincozin 125mg Syrup effective?', 'Lincozin 125mg Syrup is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincozin 125mg Syrup is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincozin 125mg Syrup too early, the symptoms may return or worsen.'),
(16444, 'Lincozin 125mg Syrup', 'Taj Pharma India Ltd', 'Lincozin 125mg Syrup', 'Can I stop taking Lincozin 125mg Syrup when I feel better?', 'No, do not stop taking Lincozin 125mg Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16445, 'Lincozin 125mg Syrup', 'Taj Pharma India Ltd', 'Lincozin 125mg Syrup', 'Can the use of Lincozin 125mg Syrup cause diarrhea?', 'Yes, the use of Lincozin 125mg Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16446, 'Lincozin 125mg Syrup', 'Taj Pharma India Ltd', 'Lincozin 125mg Syrup', 'Is Lincozin 125mg Syrup safe?', 'Lincozin 125mg Syrup is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16447, 'Lincozin 250mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 250mg Capsule', 'How long does Lincozin 250mg Capsule take to work?', 'Usually, Lincozin 250mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16448, 'Lincozin 250mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 250mg Capsule', 'What if I don\'t get better after using Lincozin 250mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16449, 'Lincozin 250mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 250mg Capsule', 'Is Lincozin 250mg Capsule effective?', 'Lincozin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincozin 250mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincozin 250mg Capsule too early, the symptoms may return or worsen.'),
(16450, 'Lincozin 250mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 250mg Capsule', 'Can I stop taking Lincozin 250mg Capsule when I feel better?', 'No, do not stop taking Lincozin 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16451, 'Lincozin 250mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 250mg Capsule', 'Can the use of Lincozin 250mg Capsule cause diarrhea?', 'Yes, the use of Lincozin 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16452, 'Lincozin 250mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 250mg Capsule', 'Is Lincozin 250mg Capsule safe?', 'Lincozin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16453, 'Lincozin 500mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 500mg Capsule', 'How long does Lincozin 500mg Capsule take to work?', 'Usually, Lincozin 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16454, 'Lincozin 500mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 500mg Capsule', 'What if I don\'t get better after using Lincozin 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16455, 'Lincozin 500mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 500mg Capsule', 'Is Lincozin 500mg Capsule effective?', 'Lincozin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincozin 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincozin 500mg Capsule too early, the symptoms may return or worsen.'),
(16456, 'Lincozin 500mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 500mg Capsule', 'Can I stop taking Lincozin 500mg Capsule when I feel better?', 'No, do not stop taking Lincozin 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16457, 'Lincozin 500mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 500mg Capsule', 'Can the use of Lincozin 500mg Capsule cause diarrhea?', 'Yes, the use of Lincozin 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16458, 'Lincozin 500mg Capsule', 'Taj Pharma India Ltd', 'Lincozin 500mg Capsule', 'Is Lincozin 500mg Capsule safe?', 'Lincozin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16459, 'Lincreta Tablet', 'SCG Healthcare Private Limited', 'Lincreta Tablet', 'What is Lincreta Tablet used for?', 'Lincreta Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Lincreta Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Lincreta Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(16460, 'Lincreta Tablet', 'SCG Healthcare Private Limited', 'Lincreta Tablet', 'When should I take Lincreta Tablet? What if I miss a dose?', 'Lincreta Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(16461, 'Lincreta Tablet', 'SCG Healthcare Private Limited', 'Lincreta Tablet', 'Is Lincreta Tablet bad for kidneys?', 'No, there is no evidence that Lincreta Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(16462, 'Lincreta Tablet', 'SCG Healthcare Private Limited', 'Lincreta Tablet', 'Is Lincreta Tablet safe to be taken for a long time?', 'Yes, it is safe to take Lincreta Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(16463, 'Lincreta Tablet', 'SCG Healthcare Private Limited', 'Lincreta Tablet', 'For how long I have to take Lincreta Tablet? Can I stop the medication?', 'You should keep taking Lincreta Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(16464, 'Lincy Injection', 'Beulah Biomedics Ltd', 'Lincy Injection', 'What if I don\'t get better after using Lincy Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16465, 'Lincy Injection', 'Beulah Biomedics Ltd', 'Lincy Injection', 'Can the use of Lincy Injection cause diarrhea?', 'Yes, the use of Lincy Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16466, 'Lincy Injection', 'Beulah Biomedics Ltd', 'Lincy Injection', 'How long does Lincy Injection take to work?', 'Usually, Lincy Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16467, 'Lincy Injection', 'Beulah Biomedics Ltd', 'Lincy Injection', 'How is Lincy Injection administered?', 'Lincy Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lincy Injection.'),
(16468, 'Lincy Injection', 'Beulah Biomedics Ltd', 'Lincy Injection', 'Is Lincy Injection effective?', 'Lincy Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lincy Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lincy Injection too early, the symptoms may return or worsen.'),
(16469, 'Lincy Injection', 'Beulah Biomedics Ltd', 'Lincy Injection', 'Is Lincy Injection safe?', 'Lincy Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16470, 'Lindacin 300 Capsule', 'Latika Biotech Pvt. Ltd.', 'Lindacin 300 Capsule', 'How long does Lindacin 300 Capsule take to work?', 'Usually, Lindacin 300 Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16471, 'Lindacin 300 Capsule', 'Latika Biotech Pvt. Ltd.', 'Lindacin 300 Capsule', 'Can the use of Lindacin 300 Capsule cause diarrhea?', 'Yes, the use of Lindacin 300 Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16472, 'Lindacin 300 Capsule', 'Latika Biotech Pvt. Ltd.', 'Lindacin 300 Capsule', 'Is Lindacin 300 Capsule effective?', 'Lindacin 300 Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lindacin 300 Capsule too early, the symptoms may return or worsen.'),
(16473, 'Lindacin 300 Capsule', 'Latika Biotech Pvt. Ltd.', 'Lindacin 300 Capsule', 'What if I don\'t get better after using Lindacin 300 Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16474, 'Lindacin 300 Capsule', 'Latika Biotech Pvt. Ltd.', 'Lindacin 300 Capsule', 'Is Lindacin 300 Capsule safe?', 'Lindacin 300 Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16475, 'Lindacin 300 Capsule', 'Latika Biotech Pvt. Ltd.', 'Lindacin 300 Capsule', 'Can I stop taking Lindacin 300 Capsule when I feel better?', 'No, do not stop taking Lindacin 300 Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16476, 'Lindacin 300 Capsule', 'Latika Biotech Pvt. Ltd.', 'Lindacin 300 Capsule', 'Is Lindacin 300 Capsule effective?', 'Lindacin 300 Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lindacin 300 Capsule too early, the symptoms may return or worsen.'),
(16477, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. What is Lindane Lotion used for?', 'Lindane Lotion is used to treat scabies and to relieve itching and skin irritation associated with sunburn, dry eczema (type of itchy skin rash), dermatitis (red and itchy skin), allergic rashes, hives, nettle rash, chickenpox, heat rashes, personal itching, insect bites and stings.'),
(16478, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. How should Lindane Lotion be applied?', 'You should remove all of the make-up. Wash your hands and the affected area and gently dry. Put a thin layer of Lindane Lotion cream on the affected skin, using your fingertips. Apply it to the entire area affected by acne, not just each spot. Remember, it is important to wash your hands before and after applying Lindane Lotion.'),
(16479, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. Should Lindane Lotion be left on overnight?', 'At the beginning of the treatment, Lindane Lotion is usually used once daily in the evening. The area should not be washed after applying Lindane Lotion. Leave it overnight unless you experience irritation. However, if you experience irritation, consult your doctor.'),
(16480, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. What should prompt me to discontinue Lindane Lotion?', 'If you experience severe local irritation, which means severe redness, dryness and itching and stinging/burning sensation, discontinue the medicine and consult the doctor.'),
(16481, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. What precautions should be followed while applying Lindane Lotion?', 'Use Lindane Lotion only on your skin. Keep it away from your eyes, eyelids, lips, mouth and inside of the nose. If the medicine comes in contact with any of these areas, wash the affected area with water immediately. Avoid using Lindane Lotion on scratched or eroded skin and open wounds. Take care when using Lindane Lotion on sensitive areas of skin such as your neck. This is because Lindane Lotion can make your skin more sensitive to the harmful effects of the sunlight. So, avoid the use of sunbeds/lamps and minimize the time you spend in the sun. You should use sunscreen and wear protective clothing while using Lindane Lotion. Avoid contact with hair as Lindane Lotion has strong bleaching properties. Consult your doctor for any other query related to Lindane Lotion.'),
(16482, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. How often should I apply Lindane Lotion?', 'The initial dose is preferably once daily in the evening. Later, the doctor will gradually increase the dose to twice daily (most probably morning and evening) depending upon the requirement.'),
(16483, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. How long does Lindane Lotion take to show its effects?', 'You may see an improvement after 4-6 weeks of treatment. You may need to use this treatment for a longer duration to gain maximum benefit. Do not worry, this is normal for acne treatments. If your acne does not get better after 1 month or if it gets worse, talk to your doctor immediately.'),
(16484, 'Lindane Lotion', 'Nanz Med Science Pharma Ltd', 'Lindane Lotion', 'Q. When can I apply moisturizer, before or after Lindane Lotion?', 'You may apply moisturizer an hour after applying Lindane Lotion. Consult your doctor in case of any doubt or concern.'),
(16485, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'Does Lindapa 10mg Tablet cause weight loss?', 'Yes, Lindapa 10mg Tablet may cause weight loss in some patients. However, it is an uncommon side effect. If you experience sudden weight gain or have any concerns regarding your weight, discuss it with your doctor.'),
(16486, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'What are the side effects of Lindapa 10mg Tablet?', 'The use of Lindapa 10mg Tablet may cause symptoms such as stuffy or runny nose, sore throat, vaginal yeast infections, and yeast infections of the penis. In addition to that, one may experience frequent urination throughout the day or at night, and changes in quantity of urine.'),
(16487, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'What is Lindapa 10mg Tablet used for?', 'Lindapa 10mg Tablet is used to lower blood glucose levels in type 2 diabetes. In type 2 diabetes, the body is not able to use the produced insulin properly. This leads to an increase in the levels of sugar in your blood. Lindapa 10mg Tablet works by removing excess sugar from your body via your urine. In addition to that, it can also help prevent heart disease.'),
(16488, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'Is Lindapa 10mg Tablet safe to use?', 'Yes, Lindapa 10mg Tablet is safe when used as directed by the doctor. However, it may show some side effects. For best results, it should be used in the correct dose and at the same time each day.'),
(16489, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'Can I stop taking Lindapa 10mg Tablet?', 'No, do not stop taking Lindapa 10mg Tablet without talking to your doctor first. Sudden discontinuation of medicine may make your diabetes worse. Inform your doctor if your symptoms bother you or if  there is no considerable improvement in your condition. The doctor may suggest some other medicine which could be more effective in treating your diabetes.'),
(16490, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'Who should not take Lindapa 10mg Tablet?', 'Patients allergic to Lindapa 10mg Tablet should avoid using this medicine. Also, it is highly recommended that patients who are on dialysis or have severe kidney problems should not use Lindapa 10mg Tablet.'),
(16491, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'Can I take Lindapa 10mg Tablet before surgery?', 'Inform your doctor that you are taking Lindapa 10mg Tablet before going for the surgery. The doctor may ask you to stop taking your Lindapa 10mg Tablet tablets before your operation. This is done because there is a risk of developing diabetic ketoacidosis (a serious condition that may develop if high blood sugar is not treated).'),
(16492, 'Lindapa 10mg Tablet', 'Balint pharmaceuticals', 'Lindapa 10mg Tablet', 'Why did my doctor prescribe Lindapa 10mg Tablet along with metformin?', 'For some people, taking metformin alone can effectively lower blood sugar levels. But, evidence suggests that adding Lindapa 10mg Tablet to metformin therapy may provide better control over the increased blood sugar levels in some people. So, maybe your doctor prescribed the combined use of metformin with Lindapa 10mg Tablet to provide the extra help you need.'),
(16493, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'What are the storage condition for Lindase Fort 50mg/325mg/15mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16494, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'What is Lindase Fort 50mg/325mg/15mg Tablet?', 'Lindase Fort 50mg/325mg/15mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(16495, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Is it safe to use Lindase Fort 50mg/325mg/15mg Tablet?', 'Yes, Lindase Fort 50mg/325mg/15mg Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(16496, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Can I stop taking Lindase Fort 50mg/325mg/15mg Tablet when my pain is relieved?', 'Lindase Fort 50mg/325mg/15mg Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Lindase Fort 50mg/325mg/15mg Tablet should be continued if you are advised by your physician to do so.'),
(16497, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Can the use of Lindase Fort 50mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of Lindase Fort 50mg/325mg/15mg Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(16498, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Can the use of Lindase Fort 50mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(16499, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with the use of Lindase Fort 50mg/325mg/15mg Tablet?', 'The use of Lindase Fort 50mg/325mg/15mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(16500, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Can I take Lindase Fort 50mg/325mg/15mg Tablet with Vitamin B-complex?', 'Lindase Fort 50mg/325mg/15mg Tablet can be taken with Vitamin B-complex preparations. While Lindase Fort 50mg/325mg/15mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(16501, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Can I take Lindase Fort 50mg/325mg/15mg Tablet for stomach pain?', 'No, Lindase Fort 50mg/325mg/15mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(16502, 'Lindase Fort 50mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Lindase Fort 50mg/325mg/15mg Tablet', 'Can the use of Lindase Fort 50mg/325mg/15mg Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Lindase Fort 50mg/325mg/15mg Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16503, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'What is Lindase Plus 50mg/10mg Tablet?', 'Lindase Plus 50mg/10mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(16504, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'Is it safe to use Lindase Plus 50mg/10mg Tablet?', 'Yes, Lindase Plus 50mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(16505, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'Can I stop taking Lindase Plus 50mg/10mg Tablet when my pain is relieved?', 'Lindase Plus 50mg/10mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lindase Plus 50mg/10mg Tablet should be continued if  your physician has advised you to do so.'),
(16506, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'Can the use of Lindase Plus 50mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Lindase Plus 50mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(16507, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'Can the use of Lindase Plus 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Lindase Plus 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(16508, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Lindase Plus 50mg/10mg Tablet?', 'The use of Lindase Plus 50mg/10mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(16509, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'Can I take Lindase Plus 50mg/10mg Tablet with Vitamin B-complex?', 'Lindase Plus 50mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Lindase Plus 50mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(16510, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'Can I take Lindase Plus 50mg/10mg Tablet for stomach pain?', 'No, Lindase Plus 50mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(16511, 'Lindase Plus 50mg/10mg Tablet', 'Linex Pharmaceuticals', 'Lindase Plus 50mg/10mg Tablet', 'What is the storage condition for the Lindase Plus 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16512, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'How long does it take for Lindep 100mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Lindep 100mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(16513, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'How long do I need to take Lindep 100mg Tablet?', 'You should continue taking Lindep 100mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(16514, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'When is the best time to take Lindep 100mg Tablet?', 'Lindep 100mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Lindep 100mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.'),
(16515, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'Does Lindep 100mg Tablet cause sleepiness?', 'Yes, Lindep 100mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Lindep 100mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Lindep 100mg Tablet, which may disappear after 2-3 months of use of Lindep 100mg Tablet.'),
(16516, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'What does Lindep 100mg Tablet do for anxiety?', 'Lindep 100mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(16517, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'Can I stop taking Lindep 100mg Tablet if I am better now?', 'No, you should not stop taking Lindep 100mg Tablet without consulting your doctor. This is because sudden discontinuation of Lindep 100mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(16518, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'What are the withdrawal symptoms of Lindep 100mg Tablet?', 'The withdrawal symptoms of Lindep 100mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Lindep 100mg Tablet.'),
(16519, 'Lindep 100mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 100mg Tablet', 'What are the symptoms of overdose of Lindep 100mg Tablet?', 'The symptoms of overdose of Lindep 100mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(16520, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'How long does it take for Lindep 50mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Lindep 50mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(16521, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'How long do I need to take Lindep 50mg Tablet?', 'You should continue taking Lindep 50mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(16522, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'When is the best time to take Lindep 50mg Tablet?', 'Lindep 50mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Lindep 50mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.'),
(16523, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'Does Lindep 50mg Tablet cause sleepiness?', 'Yes, Lindep 50mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Lindep 50mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Lindep 50mg Tablet, which may disappear after 2-3 months of use of Lindep 50mg Tablet.'),
(16524, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'What does Lindep 50mg Tablet do for anxiety?', 'Lindep 50mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(16525, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'Can I stop taking Lindep 50mg Tablet if I am better now?', 'No, you should not stop taking Lindep 50mg Tablet without consulting your doctor. This is because sudden discontinuation of Lindep 50mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(16526, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'What are the withdrawal symptoms of Lindep 50mg Tablet?', 'The withdrawal symptoms of Lindep 50mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Lindep 50mg Tablet.'),
(16527, 'Lindep 50mg Tablet', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lindep 50mg Tablet', 'What are the symptoms of overdose of Lindep 50mg Tablet?', 'The symptoms of overdose of Lindep 50mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(16528, 'Lindoshil 10mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 10mg Capsule', 'Can I take Lindoshil 10mg Capsule empty stomach?', 'Lindoshil 10mg Capsule may be taken with or without food. Always take it exactly as prescribed by your doctor. Do not crush, cut or chew the capsules. Swallow it whole with water. You should take Lindoshil 10mg Capsule at about the same time on the scheduled days.'),
(16529, 'Lindoshil 10mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 10mg Capsule', 'Can Lindoshil 10mg Capsule be given to patients who are on dialysis?', 'Yes, Lindoshil 10mg Capsule is given to dialysis patients after the dialysis is done. However, the doctor may adjust the dose if needed in patients undergoing.'),
(16530, 'Lindoshil 10mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 10mg Capsule', 'What are the side effects of Lindoshil 10mg Capsule?', 'Lindoshil 10mg Capsule may cause side effects which include diarrhea, constipation, stomach pain, loss of appetite, weight loss, weakness, dizziness, change in ability to taste, and pain or burning of the tongue, mouth, or throat. The medicine may also cause decreased sense of touch, burning or tingling in the hands or feet, difficulty falling asleep or staying asleep, depression, and joint, muscle, bone, or back pain. You may also experience sweating, dry skin, abnormal hair growth in women, uncontrollable shaking of a part of the body, decrease in sexual desire or ability or  painful, frequent, or urgent urination. Tell your doctor if any of these symptoms are severe or do not go away.'),
(16531, 'Lindoshil 10mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 10mg Capsule', 'Can Lindoshil 10mg Capsule cause cancer?', 'People with multiple myeloma (a form of cancer that begins in plasma cells, a type of white blood cell) who receive melphalan (chemotherapy) and a blood stem cell transplant with the addition of Lindoshil 10mg Capsule have a higher risk of developing new cancers. These types of cancers may include certain blood cancers (acute myelogenous leukemia or AML) and a type of lymphoma called Hodgkin lymphoma. Talk to your doctor about your risk of developing new cancers if you are taking Lindoshil 10mg Capsule.'),
(16532, 'Lindoshil 10mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 10mg Capsule', 'Do I need to get any blood tests done while on Lindoshil 10mg Capsule?', 'Your doctor will ask you to have a blood test before treatment and every week for the first 8 weeks of treatment. You may need to continue taking the blood tests at least every month after treatment with Lindoshil 10mg Capsule ends. Frequent blood tests are important as Lindoshil 10mg Capsule may decrease the blood cells that help fight infection (white blood cells) and help the blood to clot (platelets).'),
(16533, 'Lindoshil 10mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 10mg Capsule', 'Do I need to use birth control methods while using Lindoshil 10mg Capsule?', 'Women who can become pregnant must use two acceptable forms of birth control for 4 weeks before they begin taking Lindoshil 10mg Capsule. Continue using contraceptives during your treatment, including the times when your doctor tells you to temporarily stop taking Lindoshil 10mg Capsule, and for 4 weeks after your final dose. In men, Lindoshil 10mg Capsule may pass into the semen while they are on treatment. Therefore, men must always use a latex condom every time they have sexual contact, even if they have had a vasectomy (surgery that prevents a man from causing a pregnancy). Use the contraceptive while you are taking Lindoshil 10mg Capsule, during any breaks in your treatment, and for 4 weeks after your final dose.'),
(16534, 'Lindoshil 25mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 25mg Capsule', 'Can I take Lindoshil 25mg Capsule empty stomach?', 'Lindoshil 25mg Capsule may be taken with or without food. Always take it exactly as prescribed by your doctor. Do not crush, cut or chew the capsules. Swallow it whole with water. You should take Lindoshil 25mg Capsule at about the same time on the scheduled days.'),
(16535, 'Lindoshil 25mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 25mg Capsule', 'Can Lindoshil 25mg Capsule be given to patients who are on dialysis?', 'Yes, Lindoshil 25mg Capsule is given to dialysis patients after the dialysis is done. However, the doctor may adjust the dose if needed in patients undergoing.'),
(16536, 'Lindoshil 25mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 25mg Capsule', 'What are the side effects of Lindoshil 25mg Capsule?', 'Lindoshil 25mg Capsule may cause side effects which include diarrhea, constipation, stomach pain, loss of appetite, weight loss, weakness, dizziness, change in ability to taste, and pain or burning of the tongue, mouth, or throat. The medicine may also cause decreased sense of touch, burning or tingling in the hands or feet, difficulty falling asleep or staying asleep, depression, and joint, muscle, bone, or back pain. You may also experience sweating, dry skin, abnormal hair growth in women, uncontrollable shaking of a part of the body, decrease in sexual desire or ability or  painful, frequent, or urgent urination. Tell your doctor if any of these symptoms are severe or do not go away.'),
(16537, 'Lindoshil 25mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 25mg Capsule', 'Can Lindoshil 25mg Capsule cause cancer?', 'People with multiple myeloma (a form of cancer that begins in plasma cells, a type of white blood cell) who receive melphalan (chemotherapy) and a blood stem cell transplant with the addition of Lindoshil 25mg Capsule have a higher risk of developing new cancers. These types of cancers may include certain blood cancers (acute myelogenous leukemia or AML) and a type of lymphoma called Hodgkin lymphoma. Talk to your doctor about your risk of developing new cancers if you are taking Lindoshil 25mg Capsule.'),
(16538, 'Lindoshil 25mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 25mg Capsule', 'Do I need to get any blood tests done while on Lindoshil 25mg Capsule?', 'Your doctor will ask you to have a blood test before treatment and every week for the first 8 weeks of treatment. You may need to continue taking the blood tests at least every month after treatment with Lindoshil 25mg Capsule ends. Frequent blood tests are important as Lindoshil 25mg Capsule may decrease the blood cells that help fight infection (white blood cells) and help the blood to clot (platelets).'),
(16539, 'Lindoshil 25mg Capsule', 'Shilpa Medicare Ltd', 'Lindoshil 25mg Capsule', 'Do I need to use birth control methods while using Lindoshil 25mg Capsule?', 'Women who can become pregnant must use two acceptable forms of birth control for 4 weeks before they begin taking Lindoshil 25mg Capsule. Continue using contraceptives during your treatment, including the times when your doctor tells you to temporarily stop taking Lindoshil 25mg Capsule, and for 4 weeks after your final dose. In men, Lindoshil 25mg Capsule may pass into the semen while they are on treatment. Therefore, men must always use a latex condom every time they have sexual contact, even if they have had a vasectomy (surgery that prevents a man from causing a pregnancy). Use the contraceptive while you are taking Lindoshil 25mg Capsule, during any breaks in your treatment, and for 4 weeks after your final dose.'),
(16540, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'Is Lindoxime 100mg Tablet safe to use?', 'Lindoxime 100mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(16541, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'Can the use of Lindoxime 100mg Tablet cause diarrhea?', 'Yes, the use of Lindoxime 100mg Tablet can cause diarrhea. Lindoxime 100mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(16542, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'Is Lindoxime 100mg Tablet an antibiotic?', 'Yes, Lindoxime 100mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(16543, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'Can Lindoxime 100mg Tablet cause constipation?', 'Yes, Lindoxime 100mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(16544, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'Can I stop taking Lindoxime 100mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lindoxime 100mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(16545, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'How long does Lindoxime 100mg Tablet take to work?', 'Usually, Lindoxime 100mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(16546, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'What if I do not get better after using Lindoxime 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16547, 'Lindoxime 100mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 100mg Tablet', 'Can Lindoxime 100mg Tablet treat UTI?', 'Yes, Lindoxime 100mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lindoxime 100mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(16548, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'Is Lindoxime 200mg Tablet safe to use?', 'Lindoxime 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(16549, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'Can the use of Lindoxime 200mg Tablet cause diarrhea?', 'Yes, the use of Lindoxime 200mg Tablet can cause diarrhea. Lindoxime 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(16550, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'Is Lindoxime 200mg Tablet an antibiotic?', 'Yes, Lindoxime 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(16551, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'Can Lindoxime 200mg Tablet cause constipation?', 'Yes, Lindoxime 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(16552, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'Can I stop taking Lindoxime 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lindoxime 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(16553, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'How long does Lindoxime 200mg Tablet take to work?', 'Usually, Lindoxime 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(16554, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'What if I do not get better after using Lindoxime 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16555, 'Lindoxime 200mg Tablet', 'Linex Pharmaceuticals', 'Lindoxime 200mg Tablet', 'Can Lindoxime 200mg Tablet treat UTI?', 'Yes, Lindoxime 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lindoxime 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(16556, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'What if I give too much of Lindoxime Dry Syrup by mistake?', 'An extra dose of Lindoxime Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lindoxime Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(16557, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'Are there any possible serious side effects of Lindoxime Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(16558, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'Can other medicines be given at the same time as Lindoxime Dry Syrup?', 'Lindoxime Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lindoxime Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16559, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'Can I get my child vaccinated while on treatment with Lindoxime Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(16560, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'Which lab tests may my child undergo while taking Lindoxime Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(16561, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(16562, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(16563, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(16564, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'Can Lindoxime Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lindoxime Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lindoxime Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(16565, 'Lindoxime Dry Syrup', 'Linex Pharmaceuticals', 'Lindoxime Dry Syrup', 'Can Lindoxime Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lindoxime Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(16566, 'Lindox-L Capsule', 'Lincoln Pharmaceuticals Ltd', 'Lindox-L Capsule', 'What is Lindox-L Capsule?', 'Lindox-L Capsule is a combination of two medicines: Doxycycline and Lactobacillus. Doxycycline is an antibiotic medicine belonging to the class called \'__\'tetracyclines”. It is used to treat bacterial infections in many different parts of the body. On the other hand, Lactobacillus is a live microorganism which restores the balance of good bacteria in the intestine that may get upset with the use of antibiotics.'),
(16567, 'Lindox-L Capsule', 'Lincoln Pharmaceuticals Ltd', 'Lindox-L Capsule', 'Can I drink milk while taking Lindox-L Capsule?', 'No, you should avoid using milk and milk products while taking Lindox-L Capsule. Consuming dairy products along with Lindox-L Capsule can decrease its absorption from the stomach, which may lead to inadequate affect of this medicine.'),
(16568, 'Lindox-L Capsule', 'Lincoln Pharmaceuticals Ltd', 'Lindox-L Capsule', 'What is the recommended storage condition for Lindox-L Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16569, 'Lindox-L Capsule', 'Lincoln Pharmaceuticals Ltd', 'Lindox-L Capsule', 'How long after taking Lindox-L Capsule can I eat?', 'It is best to wait for 2 hours after consuming Lindox-L Capsule. Consuming food along with Lindox-L Capsule may decrease its absorption from the stomach.'),
(16570, 'Lindox-L Capsule', 'Lincoln Pharmaceuticals Ltd', 'Lindox-L Capsule', 'Can I take Lindox-L Capsule with food if its causing stomach upset?', 'Yes, you can take Lindox-L Capsule with food if its causing you stomach upset. However, avoid consuming milk and milk products 1 hr before and 2 hr after taking this medicine.'),
(16571, 'Lindrot Plus 80mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lindrot Plus 80mg/250mg Tablet', 'What is Lindrot Plus 80mg/250mg Tablet?', 'Lindrot Plus 80mg/250mg Tablet is a combination of two medicines: Drotaverine and Mefenamic acid. This medication helps to relieve abdominal pain. Drotaverine relieves muscle spasms associated with smooth muscles in the abdomen. Mefenamic Acid works by blocking the release of certain chemical messengers that cause pain and inflammation (swelling).'),
(16572, 'Lindrot Plus 80mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lindrot Plus 80mg/250mg Tablet', 'Is it safe to use Lindrot Plus 80mg/250mg Tablet?', 'Yes, Lindrot Plus 80mg/250mg Tablet is safe for most of the patients with abdominal pain. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, diarrhoea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(16573, 'Lindrot Plus 80mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lindrot Plus 80mg/250mg Tablet', 'Can I stop taking Lindrot Plus 80mg/250mg Tablet when my pain is relieved?', 'Lindrot Plus 80mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lindrot Plus 80mg/250mg Tablet should be continued if your physician has advised you to do so.'),
(16574, 'Lindrot Plus 80mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lindrot Plus 80mg/250mg Tablet', 'Can the use of Lindrot Plus 80mg/250mg Tablet cause nausea and vomiting?', 'Yes, the use of Lindrot Plus 80mg/250mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Also, avoid taking fatty or fried foods along with the medicine. Talk to your doctor if you have vomiting persists and you notice any signs of dehydration like less urination with dark coloured and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(16575, 'Lindrot Plus 80mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lindrot Plus 80mg/250mg Tablet', 'Can the use of Lindrot Plus 80mg/250mg Tablet cause dry mouth?', 'Yes, the use of Lindrot Plus 80mg/250mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Avoid spicy, salty and acidic foods (like lemons).'),
(16576, 'Lindrot Plus 80mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lindrot Plus 80mg/250mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, do not take a higher than the recommended dose of Lindrot Plus 80mg/250mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16577, 'Lindrot Plus 80mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lindrot Plus 80mg/250mg Tablet', 'What are the recommended storage conditions for Lindrot Plus 80mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16578, 'Lindzo 600mg Tablet', 'Indophin Remedies Pvt. Ltd.', 'Lindzo 600mg Tablet', 'Can the use of Lindzo 600mg Tablet cause diarrhea?', 'Yes, the use of Lindzo 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16579, 'Lindzo 600mg Tablet', 'Indophin Remedies Pvt. Ltd.', 'Lindzo 600mg Tablet', 'What foods should I avoid while taking Lindzo 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lindzo 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16580, 'Line 10 Tablet', 'Xenial Pharma', 'Line 10 Tablet', 'Is Line 10 Tablet a steroid? What is it used for?', 'No, Line 10 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(16581, 'Line 10 Tablet', 'Xenial Pharma', 'Line 10 Tablet', 'Does Line 10 Tablet make you tired and drowsy?', 'Yes, Line 10 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(16582, 'Line 10 Tablet', 'Xenial Pharma', 'Line 10 Tablet', 'How long does it take for Line 10 Tablet to work?', 'Line 10 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(16583, 'Line 10 Tablet', 'Xenial Pharma', 'Line 10 Tablet', 'Can I take Line 10 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Line 10 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(16584, 'Line 10 Tablet', 'Xenial Pharma', 'Line 10 Tablet', 'Is it safe to take Line 10 Tablet for a long time?', 'Line 10 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Line 10 Tablet for only as long as you need it.'),
(16585, 'Line 10 Tablet', 'Xenial Pharma', 'Line 10 Tablet', 'For how long should I continue Line 10 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Line 10 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Line 10 Tablet'),
(16586, 'Line 5 Tablet', 'Xenial Pharma', 'Line 5 Tablet', 'Is Line 5 Tablet a steroid? What is it used for?', 'No, Line 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(16587, 'Line 5 Tablet', 'Xenial Pharma', 'Line 5 Tablet', 'Does Line 5 Tablet make you tired and drowsy?', 'Yes, Line 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(16588, 'Line 5 Tablet', 'Xenial Pharma', 'Line 5 Tablet', 'How long does it take for Line 5 Tablet to work?', 'Line 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(16589, 'Line 5 Tablet', 'Xenial Pharma', 'Line 5 Tablet', 'Can I take Line 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Line 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(16590, 'Line 5 Tablet', 'Xenial Pharma', 'Line 5 Tablet', 'Is it safe to take Line 5 Tablet for a long time?', 'Line 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Line 5 Tablet for only as long as you need it.'),
(16591, 'Line 5 Tablet', 'Xenial Pharma', 'Line 5 Tablet', 'For how long should I continue Line 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Line 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Line 5 Tablet'),
(16592, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'Is Line SR Tablet a blood thinner?', 'No, Line SR Tablet is not a blood thinner. It belongs to the calcium channel blocker class of medicines. It is used to treat hypertension, arrhythmias and angina (chest pain caused by a reduction of oxygen to the heart muscle).'),
(16593, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'Does Line SR Tablet cause weight gain?', 'Yes, Line SR Tablet may cause weight gain but not in everybody. However, if you are gaining weight while taking Line SR Tablet then consult your doctor or a nutritionist.'),
(16594, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'Is it better to take Line SR Tablet in the morning or at night?', 'It is recommended to take Line SR Tablet at night and before meals. The dose will be decided by your doctor and should be taken exactly as prescribed by the doctor.'),
(16595, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'Does Line SR Tablet affect sleep?', 'Line SR Tablet may cause sleeplessness which does not affect everyone. If this persists and worries you talk to your doctor.'),
(16596, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'Who should not take Line SR Tablet?', 'You should not take Line SR Tablet if you are allergic to it, have an irregular or slow heartbeat, heart failure, and low blood pressure. It should not be given to children and women who are pregnant or planning to get pregnant.'),
(16597, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'What are the symptoms of overdose of Line SR Tablet?', 'Symptoms of overdose of Line SR Tablet include slow, fast, or irregular heartbeat, fainting, difficulty breathing and seizures. It may also cause dizziness, confusion, nausea, vomiting and increased sweating. Contact your doctor immediately or seek emergency medical services in a nearby hospital.'),
(16598, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'How long do I need to take Line SR Tablet? Can I stop it on my own?', 'Your doctor will decide how long you need to take it. Do not stop it on your own or lower your dose. Suddenly stopping it may worsen angina or increase your blood pressure.'),
(16599, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'What should I avoid while taking Line SR Tablet?', 'You should avoid drinking alcohol while taking Line SR Tablet. Also, avoid driving and using heavy machinery if Line SR Tablet causes dizziness and you experience a general feeling of being unwell. In addition to that, avoid pregnancy and breastfeeding while taking Line SR Tablet.'),
(16600, 'Line SR Tablet', 'Derma Prime', 'Line SR Tablet', 'What are the serious side effects of Line SR Tablet?', 'The serious side effects of Line SR Tablet include severe allergic reaction, yellowing of the skin or eyes, nausea and extreme tiredness. It may also cause unusual bleeding or bruising, lack of energy, loss of appetite and pain in the stomach. One may also experience flu-like symptoms and an increase in the frequency or severity of chest pain (angina). If you experience any such symptoms immediately contact your doctor and seek medical help.'),
(16601, 'Line Syrup', 'Xenial Pharma', 'Line Syrup', 'My child is restless and unable to sleep properly at night. Can I give Line Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(16602, 'Line Syrup', 'Xenial Pharma', 'Line Syrup', 'Can other medicines be given at the same time as Line Syrup?', 'Line Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Line Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16603, 'Line Syrup', 'Xenial Pharma', 'Line Syrup', 'How much Line Syrup should I give to my child?', 'Line Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(16604, 'Line Syrup', 'Xenial Pharma', 'Line Syrup', 'What if I give too much of Line Syrup by mistake?', 'Although Line Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(16605, 'Line Syrup', 'Xenial Pharma', 'Line Syrup', 'How should Line Syrup be stored?', 'Store Line Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(16606, 'Line Syrup', 'Xenial Pharma', 'Line Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(16607, 'Lineark 600mg Tablet', 'Unipark Biotech Private Limited', 'Lineark 600mg Tablet', 'Can the use of Lineark 600mg Tablet cause diarrhea?', 'Yes, the use of Lineark 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16608, 'Lineark 600mg Tablet', 'Unipark Biotech Private Limited', 'Lineark 600mg Tablet', 'What foods should I avoid while taking Lineark 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lineark 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16609, 'Linease AM Syrup', 'Linex Pharmaceuticals', 'Linease AM Syrup', 'Will a higher than the recommended dose of Linease AM Syrup be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Linease AM Syrup, please consult your doctor.'),
(16610, 'Linease AM Syrup', 'Linex Pharmaceuticals', 'Linease AM Syrup', 'In which type of cough will the doctor prescribe Linease AM Syrup?', 'Linease AM Syrup is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(16611, 'Linease AM Syrup', 'Linex Pharmaceuticals', 'Linease AM Syrup', 'Are there any contraindications associated with use of Linease AM Syrup?', 'It is not recommended to use Linease AM Syrup if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(16612, 'Linease AM Syrup', 'Linex Pharmaceuticals', 'Linease AM Syrup', 'What are the instructions for the storage and disposal of Linease AM Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16613, 'Linease Plus Syrup', 'Linex Pharmaceuticals', 'Linease Plus Syrup', 'Can the use of Linease Plus Syrup cause sleepiness or drowsiness?', 'Yes, Linease Plus Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(16614, 'Linease Plus Syrup', 'Linex Pharmaceuticals', 'Linease Plus Syrup', 'Will Linease Plus Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16615, 'Linease Plus Syrup', 'Linex Pharmaceuticals', 'Linease Plus Syrup', 'Can I breastfeed while taking Linease Plus Syrup?', 'No, it is not advisable to breastfeed while using Linease Plus Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16616, 'Linease Plus Syrup', 'Linex Pharmaceuticals', 'Linease Plus Syrup', 'What are the instructions for storage and disposal of Linease Plus Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16617, 'Linease TR Syrup', 'Linex Pharmaceuticals', 'Linease TR Syrup', 'What are the instructions for the storage and disposal of Linease TR Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16618, 'Linease TR Syrup', 'Linex Pharmaceuticals', 'Linease TR Syrup', 'Can I take Linease TR Syrup along with other medicines?', 'Inform your doctor about the medicines you might be taking before using Linease TR Syrup. Let your doctor know if you have any other medical condition.'),
(16619, 'Linease TR Syrup', 'Linex Pharmaceuticals', 'Linease TR Syrup', 'Will a higher than the recommended dose of Linease TR Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16620, 'Lineather 150mg Injection', 'Linex Pharmaceuticals', 'Lineather 150mg Injection', 'Who should not use Lineather 150mg Injection?', 'Use of Lineather 150mg Injection should be avoided in patients who are allergic to Lineather 150mg Injection or any of its components. However, if you are not aware of any allergy or if you are using Lineather 150mg Injection for the first time, consult your doctor.'),
(16621, 'Lineather 150mg Injection', 'Linex Pharmaceuticals', 'Lineather 150mg Injection', 'What should I tell my doctor before starting treatment with Lineather 150mg Injection?', 'Before starting treatment with Lineather 150mg Injection, inform your doctor if you have any other health condition like a kidney- or heart-related problems. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(16622, 'Lineather 150mg Injection', 'Linex Pharmaceuticals', 'Lineather 150mg Injection', 'Is Lineather 150mg Injection safe?', 'Lineather 150mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(16623, 'Lineather 150mg Injection', 'Linex Pharmaceuticals', 'Lineather 150mg Injection', 'How is Lineather 150mg Injection administered?', 'Lineather 150mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lineather 150mg Injection.'),
(16624, 'Linebase 600mg Tablet', 'Cagrus Biopharma', 'Linebase 600mg Tablet', 'Can the use of Linebase 600mg Tablet cause diarrhea?', 'Yes, the use of Linebase 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16625, 'Linebase 600mg Tablet', 'Cagrus Biopharma', 'Linebase 600mg Tablet', 'What foods should I avoid while taking Linebase 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linebase 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16626, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'What if I miss my dose?', 'Take Lineca Plus Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(16627, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'Can I stop taking Lineca Plus Tablet when I feel better?', 'No, do not stop taking Lineca Plus Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16628, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'What is Lineca Plus Tablet used for?', 'Lineca Plus Tablet is used in the treatment of bacterial infections. Cefuroxime treats infections of acute or chronic bronchitis, tonsillitis,  gonorrhea, syphilis, pneumonia, and urinary tract infection. Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(16629, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'Does the use of Lineca Plus Tablet help to treat UTI?', 'Urinary tract infections (UTIs) are among the most common infections people suffer from. The use of Lineca Plus Tablet is usually helpful in treating urinary tract infection.'),
(16630, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'Can the use of Lineca Plus Tablet cause diarrhea?', 'Yes, the use of Lineca Plus Tablet can cause diarrhea. Antibiotics can kill good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16631, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'Is the use of Lineca Plus Tablet helpful in the treatment of bronchitis?', 'Yes, Lineca Plus Tablet is helpful in the treatment of bronchitis.'),
(16632, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'Is the use of Lineca Plus Tablet contraindicated in patients with the impaired kidney?', 'The drug is eliminated by the renal mechanisms and a patient with impaired renal function will clear it more slowly. This can prove harmful for the patient. Therefore, caution is advised when administering Lineca Plus Tablet to patients with renal impairment or renal failure.'),
(16633, 'Lineca Plus Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Plus Tablet', 'What are the instructions for the storage and disposal of Lineca Plus Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16634, 'Lineca Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Tablet', 'Can the use of Lineca Tablet cause diarrhea?', 'Yes, the use of Lineca Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16635, 'Lineca Tablet', 'Koye Pharmaceuticals Pvt ltd', 'Lineca Tablet', 'What foods should I avoid while taking Lineca Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lineca Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16636, 'Linecon 600 Tablet', 'Pykon Healthcare', 'Linecon 600 Tablet', 'Can the use of Linecon 600 Tablet cause diarrhea?', 'Yes, the use of Linecon 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16637, 'Linecon 600 Tablet', 'Pykon Healthcare', 'Linecon 600 Tablet', 'What foods should I avoid while taking Linecon 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linecon 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16638, 'Lineday 600 Tablet', 'Medivaxia Pharma', 'Lineday 600 Tablet', 'Can the use of Lineday 600 Tablet cause diarrhea?', 'Yes, the use of Lineday 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16639, 'Lineday 600 Tablet', 'Medivaxia Pharma', 'Lineday 600 Tablet', 'What foods should I avoid while taking Lineday 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lineday 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16640, 'Linedin 600mg Tablet', 'Divine Savior Pvt Ltd', 'Linedin 600mg Tablet', 'Can the use of Linedin 600mg Tablet cause diarrhea?', 'Yes, the use of Linedin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16641, 'Linedin 600mg Tablet', 'Divine Savior Pvt Ltd', 'Linedin 600mg Tablet', 'What foods should I avoid while taking Linedin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linedin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16642, 'Linedizire-SR 1200 Tablet', 'Biodizire Pharma Pvt Ltd', 'Linedizire-SR 1200 Tablet', 'Can the use of Linedizire-SR 1200 Tablet cause diarrhea?', 'Yes, the use of Linedizire-SR 1200 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16643, 'Linedizire-SR 1200 Tablet', 'Biodizire Pharma Pvt Ltd', 'Linedizire-SR 1200 Tablet', 'What foods should I avoid while taking Linedizire-SR 1200 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linedizire-SR 1200 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16644, 'Linefix CV Dry Syrup', 'Pharvax Biosciences', 'Linefix CV Dry Syrup', 'What if I give too much of Linefix CV Dry Syrup by mistake?', 'If you think you have given too much of Linefix CV Dry Syrup to your child, immediately speak to a doctor. Although an extra dose of Linefix CV Dry Syrup does not usually cause any harm, overdoses do increase the risk of unwanted side effects and may even worsen your child’s condition.'),
(16645, 'Linefix CV Dry Syrup', 'Pharvax Biosciences', 'Linefix CV Dry Syrup', 'Are there any possible serious side effects of Linefix CV Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(16646, 'Linefix CV Dry Syrup', 'Pharvax Biosciences', 'Linefix CV Dry Syrup', 'Can other medicines be given at the same time as Linefix CV Dry Syrup?', 'Linefix CV Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linefix CV Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16647, 'Linefix CV Dry Syrup', 'Pharvax Biosciences', 'Linefix CV Dry Syrup', 'Can I get my child vaccinated while on treatment with Linefix CV Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(16648, 'Linefix CV Dry Syrup', 'Pharvax Biosciences', 'Linefix CV Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'The color of mucus does not represent the kind of infection your child has. So, yellow or green mucus in the nose does not mean that antibiotics are needed. During the common cold, it is normal for the symptoms to last for 7-10 days and for the mucus to change texture and color.'),
(16649, 'Linefix CV Dry Syrup', 'Pharvax Biosciences', 'Linefix CV Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus, and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(16650, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'What if I give too much of Linefix Dry Syrup by mistake?', 'An extra dose of Linefix Dry Syrup is unlikely to do harm. However, if you think you have given too much of Linefix Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(16651, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'Are there any possible serious side effects of Linefix Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(16652, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'Can other medicines be given at the same time as Linefix Dry Syrup?', 'Linefix Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linefix Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16653, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'Can I get my child vaccinated while on treatment with Linefix Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(16654, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'Which lab tests may my child undergo while taking Linefix Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(16655, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(16656, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(16657, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'Can Linefix Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Linefix Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Linefix Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(16658, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'Can Linefix Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Linefix Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(16659, 'Linefix Dry Syrup', 'Pharvax Biosciences', 'Linefix Dry Syrup', 'How long should I take Linefix Dry Syrup?', 'Linefix Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16660, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'Can I stop taking Linefix O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Linefix O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16661, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Linefix O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(16662, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'Can the use of Linefix O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Linefix O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16663, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'What if I don\'t get better after using Linefix O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16664, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'Does the use of Linefix O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Linefix O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(16665, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(16666, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'Can I drive while I am taking Linefix O 200mg/200mg Tablet?', 'No, taking Linefix O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(16667, 'Linefix O 200mg/200mg Tablet', 'Pharvax Biosciences', 'Linefix O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Linefix O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16668, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'How to take Linefix-CV Tablet?', 'Take this medication by mouth, with or without food as directed by your doctor, usually once a day. If you are consuming chewable tablets, chew thoroughly and then swallow. Complete the full course of this medicine, even if symptoms disappear after a few days.'),
(16669, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'Is the use of Linefix-CV Tablet contraindicated in patients with impaired renal function?', 'Linefix-CV Tablet should be used with particular care in patients with severely impaired renal function. Dose modification is advised for patients with moderate or severe renal impairment.'),
(16670, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'What are the precautions that need to be taken while taking Linefix-CV Tablet?', 'The dose of Linefix-CV Tablet should be adjusted in patients with impairment of kidneys and for those who have gastrointestinal disease or colitis.'),
(16671, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'What are the serious side effects associated with the use of Linefix-CV Tablet?', 'The use of Linefix-CV Tablet can also lead to serious side effects like severe stomach/abdominal pain, persistent nausea/vomiting, unusual tiredness, new signs of infection (e.g., persistent sore throat, fever), yellowing of eyes/skin, dark urine, easy bruising/bleeding, signs of kidney problems (such as change in the amount of urine) and mental/mood changes (such as confusion).'),
(16672, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'What all should I tell my doctor before starting the course of this medicine?', 'Please inform your doctor if you are pregnant or trying for a baby or breastfeeding before you start taking this medicine. Let your doctor know if you are using any other medicine.'),
(16673, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'Can the use of Linefix-CV Tablet cause diarrhea?', 'Yes, the use of Linefix-CV Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16674, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'How long does Linefix-CV Tablet takes to work?', 'Usually, Linefix-CV Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16675, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'What if I don\'t get better after using Linefix-CV Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16676, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'Can I stop taking Linefix-CV Tablet when I feel better?', 'No, do not stop taking Linefix-CV Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16677, 'Linefix-CV Tablet', 'Pharvax Biosciences', 'Linefix-CV Tablet', 'What are the instructions for storage and disposal of Linefix-CV Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16678, 'Linefix-LB Tablet', 'Pharvax Biosciences', 'Linefix-LB Tablet', 'What if I miss my dose?', 'Take Linefix-LB Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(16679, 'Linefix-LB Tablet', 'Pharvax Biosciences', 'Linefix-LB Tablet', 'How long does Linefix-LB Tablet take to work?', 'Usually, Linefix-LB Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16680, 'Linefix-LB Tablet', 'Pharvax Biosciences', 'Linefix-LB Tablet', 'What if I don\'t get better after using Linefix-LB Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16681, 'Linefix-LB Tablet', 'Pharvax Biosciences', 'Linefix-LB Tablet', 'Can I stop taking Linefix-LB Tablet when I feel better?', 'No, do not stop taking Linefix-LB Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16682, 'Lineid 600mg Tablet', 'Biophar Lifesciences Pvt Ltd', 'Lineid 600mg Tablet', 'Can the use of Lineid 600mg Tablet cause diarrhea?', 'Yes, the use of Lineid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16683, 'Lineid 600mg Tablet', 'Biophar Lifesciences Pvt Ltd', 'Lineid 600mg Tablet', 'What foods should I avoid while taking Lineid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lineid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16684, 'Lineid Tablet', 'Biophar Lifesciences Pvt Ltd', 'Lineid Tablet', 'Can the use of Lineid Tablet cause diarrhea?', 'Yes, the use of Lineid Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16685, 'Lineid Tablet', 'Biophar Lifesciences Pvt Ltd', 'Lineid Tablet', 'What foods should I avoid while taking Lineid Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lineid Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16686, 'Lineks 600mg Infusion', 'Axis Life Science Pvt Ltd', 'Lineks 600mg Infusion', 'Can the use of Lineks 600mg Infusion cause diarrhea?', 'Yes, the use of Lineks 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16687, 'Lineks 600mg Infusion', 'Axis Life Science Pvt Ltd', 'Lineks 600mg Infusion', 'What foods should I avoid while taking Lineks 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lineks 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(16688, 'Lineks 600mg Tablet', 'Axis Life Science Pvt Ltd', 'Lineks 600mg Tablet', 'Can the use of Lineks 600mg Tablet cause diarrhea?', 'Yes, the use of Lineks 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16689, 'Lineks 600mg Tablet', 'Axis Life Science Pvt Ltd', 'Lineks 600mg Tablet', 'What foods should I avoid while taking Lineks 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lineks 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16690, 'Linelog 600mg Tablet', 'Safe Life Care', 'Linelog 600mg Tablet', 'Can the use of Linelog 600mg Tablet cause diarrhea?', 'Yes, the use of Linelog 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16691, 'Linelog 600mg Tablet', 'Safe Life Care', 'Linelog 600mg Tablet', 'What foods should I avoid while taking Linelog 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linelog 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16692, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(16693, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'Can I decrease the dose of Line-M Kid Tablet DT by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(16694, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'How should Line-M Kid Tablet DT be stored?', 'Line-M Kid Tablet DT should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(16695, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'Can Line-M Kid Tablet DT make my child sleepy?', 'Line-M Kid Tablet DT causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(16696, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Line-M Kid Tablet DT?', 'No, don’t start Line-M Kid Tablet DT without speaking to your child’s doctor. Moreover, Line-M Kid Tablet DT can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(16697, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Line-M Kid Tablet DT usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(16698, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'My child is suffering from a mood disorder. Is it safe to give Line-M Kid Tablet DT to my child?', 'Some studies show that Line-M Kid Tablet DT can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(16699, 'Line-M Kid Tablet DT', 'Xenial Pharma', 'Line-M Kid Tablet DT', 'Can I use Line-M Kid Tablet DT for treating acute asthma attacks in my child?', 'Line-M Kid Tablet DT should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(16700, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(16701, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'Can I decrease the dose of Line-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(16702, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'How should Line-M Syrup be stored?', 'Line-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(16703, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'Can Line-M Syrup make my child sleepy?', 'Line-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(16704, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Line-M Syrup?', 'No, don’t start Line-M Syrup without speaking to your child’s doctor. Moreover, Line-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(16705, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Line-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(16706, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Line-M Syrup to my child?', 'Some studies show that Line-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(16707, 'Line-M Syrup', 'Xenial Pharma', 'Line-M Syrup', 'Can I use Line-M Syrup for treating acute asthma attacks in my child?', 'Line-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(16708, 'Line-M Tablet', 'Xenial Pharma', 'Line-M Tablet', 'What is Line-M Tablet?', 'Line-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(16709, 'Line-M Tablet', 'Xenial Pharma', 'Line-M Tablet', 'Can the use of Line-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Line-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(16710, 'Line-M Tablet', 'Xenial Pharma', 'Line-M Tablet', 'Can Line-M Tablet be stopped when allergy symptoms are relieved?', 'No, Line-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(16711, 'Line-M Tablet', 'Xenial Pharma', 'Line-M Tablet', 'Can the use of Line-M Tablet cause dry mouth?', 'Yes, the use of Line-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(16712, 'Line-M Tablet', 'Xenial Pharma', 'Line-M Tablet', 'Can I drink alcohol while taking Line-M Tablet?', 'No, do not take alcohol while taking Line-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Line-M Tablet.'),
(16713, 'Line-M Tablet', 'Xenial Pharma', 'Line-M Tablet', 'Will Line-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Line-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(16714, 'Line-M Tablet', 'Xenial Pharma', 'Line-M Tablet', 'What are the instructions for storage and disposal of Line-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(16715, 'Linemac 100mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 100mg Tablet', 'How long should I take Linemac 100mg Tablet?', 'Linemac 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16716, 'Linemac 100mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 100mg Tablet', 'What if I do not get better after using Linemac 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16717, 'Linemac 100mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 100mg Tablet', 'Can the use of Linemac 100mg Tablet cause diarrhea?', 'Yes, the use of Linemac 100mg Tablet can cause diarrhea. Linemac 100mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(16718, 'Linemac 100mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 100mg Tablet', 'Is Linemac 100mg Tablet effective?', 'Linemac 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linemac 100mg Tablet too early, the symptoms may return or worsen.'),
(16719, 'Linemac 100mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 100mg Tablet', 'What if I forget to take a dose of Linemac 100mg Tablet?', 'If you forget a dose of Linemac 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(16720, 'Linemac 100mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 100mg Tablet', 'Is Linemac 100mg Tablet safe for the kidneys?', 'Yes, Linemac 100mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(16721, 'Linemac 100mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 100mg Tablet', 'How long should I take Linemac 100mg Tablet?', 'Linemac 100mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16722, 'Linemac 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet', 'Q. How long should I take Linemac 200mg Tablet?', 'Linemac 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16723, 'Linemac 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet', 'Q. What if I do not get better after using Linemac 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16724, 'Linemac 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet', 'Q. Can the use of Linemac 200mg Tablet cause diarrhea?', 'Yes, the use of Linemac 200mg Tablet can cause diarrhea. Linemac 200mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(16725, 'Linemac 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet', 'Q. Is Linemac 200mg Tablet effective?', 'Linemac 200mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linemac 200mg Tablet too early, the symptoms may return or worsen.'),
(16726, 'Linemac 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet', 'Q. What if I forget to take a dose of Linemac 200mg Tablet?', 'If you forget a dose of Linemac 200mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(16727, 'Linemac 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet', 'Q. Is Linemac 200mg Tablet safe for the kidneys?', 'Yes, Linemac 200mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(16728, 'Linemac 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet', 'Q. How long should I take Linemac 200mg Tablet?', 'Linemac 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16729, 'Linemac 200mg Tablet MD', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet MD', 'How long should I take Linemac 200mg Tablet MD?', 'Linemac 200mg Tablet MD is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16730, 'Linemac 200mg Tablet MD', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet MD', 'What if I do not get better after using Linemac 200mg Tablet MD?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16731, 'Linemac 200mg Tablet MD', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet MD', 'Can the use of Linemac 200mg Tablet MD cause diarrhea?', 'Yes, the use of Linemac 200mg Tablet MD can cause diarrhea. Linemac 200mg Tablet MD is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(16732, 'Linemac 200mg Tablet MD', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet MD', 'Is Linemac 200mg Tablet MD effective?', 'Linemac 200mg Tablet MD is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linemac 200mg Tablet MD too early, the symptoms may return or worsen.'),
(16733, 'Linemac 200mg Tablet MD', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet MD', 'What if I forget to take a dose of Linemac 200mg Tablet MD?', 'If you forget a dose of Linemac 200mg Tablet MD, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(16734, 'Linemac 200mg Tablet MD', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet MD', 'Is Linemac 200mg Tablet MD safe for the kidneys?', 'Yes, Linemac 200mg Tablet MD is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(16735, 'Linemac 200mg Tablet MD', 'Sumac Pharma Pvt Ltd', 'Linemac 200mg Tablet MD', 'How long should I take Linemac 200mg Tablet MD?', 'Linemac 200mg Tablet MD is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16736, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'What if I give too much of Linemac 50mg Syrup by mistake?', 'An extra dose of Linemac 50mg Syrup is unlikely to do harm. However, if you think you have given too much of Linemac 50mg Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(16737, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'Are there any possible serious side effects of Linemac 50mg Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(16738, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'Can other medicines be given at the same time as Linemac 50mg Syrup?', 'Linemac 50mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linemac 50mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16739, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'Can I get my child vaccinated while on treatment with Linemac 50mg Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(16740, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'Which lab tests may my child undergo while taking Linemac 50mg Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(16741, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16742, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(16743, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'Can Linemac 50mg Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Linemac 50mg Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Linemac 50mg Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(16744, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'Can Linemac 50mg Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Linemac 50mg Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(16745, 'Linemac 50mg Syrup', 'Sumac Pharma Pvt Ltd', 'Linemac 50mg Syrup', 'How long should I take Linemac 50mg Syrup?', 'Linemac 50mg Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16746, 'Linemac Kid 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac Kid 200mg Tablet', 'How long should I take Linemac Kid 200mg Tablet?', 'Linemac Kid 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16747, 'Linemac Kid 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac Kid 200mg Tablet', 'What if I do not get better after using Linemac Kid 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(16748, 'Linemac Kid 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac Kid 200mg Tablet', 'Can the use of Linemac Kid 200mg Tablet cause diarrhea?', 'Yes, the use of Linemac Kid 200mg Tablet can cause diarrhea. Linemac Kid 200mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(16749, 'Linemac Kid 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac Kid 200mg Tablet', 'Is Linemac Kid 200mg Tablet effective?', 'Linemac Kid 200mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linemac Kid 200mg Tablet too early, the symptoms may return or worsen.'),
(16750, 'Linemac Kid 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac Kid 200mg Tablet', 'What if I forget to take a dose of Linemac Kid 200mg Tablet?', 'If you forget a dose of Linemac Kid 200mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(16751, 'Linemac Kid 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac Kid 200mg Tablet', 'Is Linemac Kid 200mg Tablet safe for the kidneys?', 'Yes, Linemac Kid 200mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(16752, 'Linemac Kid 200mg Tablet', 'Sumac Pharma Pvt Ltd', 'Linemac Kid 200mg Tablet', 'How long should I take Linemac Kid 200mg Tablet?', 'Linemac Kid 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(16753, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'Can I drink milk while taking Linemett 333mg Tablet?', 'No, you should avoid using milk and milk products while taking Linemett 333mg Tablet. Consuming dairy products along with Linemett 333mg Tablet can decrease its absorption from the stomach, which may lead to inadequate affect of this medicine.'),
(16754, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'How long after taking Linemett 333mg Tablet can I eat?', 'It is best to wait for 2 hours after consuming Linemett 333mg Tablet. Consuming food along with Linemett 333mg Tablet may decrease its absorption from the stomach.'),
(16755, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'Can I take Linemett 333mg Tablet with food if its causing stomach upset?', 'Yes, you can take Linemett 333mg Tablet with food if its causing you stomach upset. However, avoid consuming milk and milk products 1 hr before and 2 hr after taking this medicine.'),
(16756, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'How long does Linemett 333mg Tablet takes to work?', 'Usually, Linemett 333mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16757, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'Can the use of Linemett 333mg Tablet cause diarrhea?', 'Yes, the use of Linemett 333mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(16758, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'What is the dose of Linemett 333mg Tablet?', 'The typical dose of Linemett 333mg Tablet is 500 mg by mouth twice daily or 250 mg by mouth four times daily. You might need a higher dose for more severe infections or for infections that don\'t resolve with smaller doses. Always follow your doctor’s instructions while taking Linemett 333mg Tablet and do not self-medicate.'),
(16759, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'Can I take Linemett 333mg Tablet for treating flu or common cold?', 'Linemett 333mg Tablet is an antibiotic used to treat bacterial infections and is not effective against viral infections such as the common cold, or flu. It is important to only use antibiotics when they are prescribed by a healthcare provider for a bacterial infection.u003cbr>'),
(16760, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'Can I lie down after immediately taking Linemett 333mg Tablet?', 'Lying down right after taking Linemett 333mg Tablet can cause esophagus (food pipe) irritation, so don\'t take it immediately before going to bed.'),
(16761, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'Can I take oral contraceptives with Linemett 333mg Tablet?', 'If you are taking any oral contraceptive pill at the same time as Linemett 333mg Tablet, the effectiveness of the pill can be reduced if you have a bout of being sick (vomiting) which lasts for more than 24 hours. In such a case, ask your doctor for additional contraceptive measures.u003cbr>'),
(16762, 'Linemett 333mg Tablet', 'Mercury Laboratories Ltd', 'Linemett 333mg Tablet', 'Can Linemett 333mg Tablet be used to treat dental infections?', 'Linemett 333mg Tablet may be used to treat dental infections caused by bacteria. However, it is important to consult with your dentist or healthcare provider to determine the most appropriate treatment for your specific condition. In some cases, other antibiotics or dental procedures may be necessary to fully treat a dental infection.'),
(16763, 'Linemole 600mg Tablet', 'All Molecules', 'Linemole 600mg Tablet', 'Can the use of Linemole 600mg Tablet cause diarrhea?', 'Yes, the use of Linemole 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16764, 'Linemole 600mg Tablet', 'All Molecules', 'Linemole 600mg Tablet', 'What foods should I avoid while taking Linemole 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linemole 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16765, 'Linemole IV 600mg Infusion', 'All Molecules', 'Linemole IV 600mg Infusion', 'Can the use of Linemole IV 600mg Infusion cause diarrhea?', 'Yes, the use of Linemole IV 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16766, 'Linemole IV 600mg Infusion', 'All Molecules', 'Linemole IV 600mg Infusion', 'What foods should I avoid while taking Linemole IV 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linemole IV 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(16767, 'Linen 600mg Tablet', 'Metamorf Lifesciences', 'Linen 600mg Tablet', 'Can the use of Linen 600mg Tablet cause diarrhea?', 'Yes, the use of Linen 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16768, 'Linen 600mg Tablet', 'Metamorf Lifesciences', 'Linen 600mg Tablet', 'What foods should I avoid while taking Linen 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linen 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16769, 'Linera 5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera 5mg Tablet', 'What is Linera 5mg Tablet used for?', 'Linera 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linera 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linera 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(16770, 'Linera 5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera 5mg Tablet', 'When should I take Linera 5mg Tablet? What if I miss a dose?', 'Linera 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(16771, 'Linera 5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera 5mg Tablet', 'Is Linera 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linera 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(16772, 'Linera 5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera 5mg Tablet', 'Is Linera 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linera 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(16773, 'Linera 5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera 5mg Tablet', 'For how long I have to take Linera 5mg Tablet? Can I stop the medication?', 'You should keep taking Linera 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(16774, 'Linera M 1000mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 1000mg/2.5mg Tablet', 'Can the use of Linera M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linera M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linera M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(16775, 'Linera M 1000mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 1000mg/2.5mg Tablet', 'What are the possible side effects of Linera M 1000mg/2.5mg Tablet?', 'The use of Linera M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16776, 'Linera M 1000mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Linera M 1000mg/2.5mg Tablet should not be taken?', 'The use of Linera M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linera M 1000mg/2.5mg Tablet.'),
(16777, 'Linera M 1000mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linera M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Linera M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16778, 'Linera M 1000mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linera M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16779, 'Linera M 1000mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 1000mg/2.5mg Tablet', 'Can the use of Linera M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linera M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16780, 'Linera M 1000mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 1000mg/2.5mg Tablet', 'Can the use of Linera M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linera M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16781, 'Linera M 500mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 500mg/2.5mg Tablet', 'Can the use of Linera M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linera M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linera M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(16782, 'Linera M 500mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 500mg/2.5mg Tablet', 'What are the possible side effects of Linera M 500mg/2.5mg Tablet?', 'The use of Linera M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16783, 'Linera M 500mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Linera M 500mg/2.5mg Tablet should not be taken?', 'The use of Linera M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linera M 500mg/2.5mg Tablet.'),
(16784, 'Linera M 500mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linera M 500mg/2.5mg Tablet?', 'No, it is not safe to take Linera M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16785, 'Linera M 500mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linera M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16786, 'Linera M 500mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 500mg/2.5mg Tablet', 'Can the use of Linera M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linera M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16787, 'Linera M 500mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 500mg/2.5mg Tablet', 'Can the use of Linera M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linera M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16788, 'Linera M 850mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 850mg/2.5mg Tablet', 'Can the use of Linera M 850mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Linera M 850mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linera M 850mg/2.5mg Tablet and immediately consult your doctor.'),
(16789, 'Linera M 850mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 850mg/2.5mg Tablet', 'What are the possible side effects of Linera M 850mg/2.5mg Tablet?', 'The use of Linera M 850mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16790, 'Linera M 850mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 850mg/2.5mg Tablet', 'Are there any specific conditions in which Linera M 850mg/2.5mg Tablet should not be taken?', 'The use of Linera M 850mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linera M 850mg/2.5mg Tablet.'),
(16791, 'Linera M 850mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 850mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Linera M 850mg/2.5mg Tablet?', 'No, it is not safe to take Linera M 850mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16792, 'Linera M 850mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 850mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Linera M 850mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16793, 'Linera M 850mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 850mg/2.5mg Tablet', 'Can the use of Linera M 850mg/2.5mg Tablet cause hypoglycemia?', 'The use of Linera M 850mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16794, 'Linera M 850mg/2.5mg Tablet', 'Einzig Pharmaceutical Pvt Ltd', 'Linera M 850mg/2.5mg Tablet', 'Can the use of Linera M 850mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linera M 850mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16795, 'Linero M 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000 Tablet', 'Can the use of Linero M 1000 Tablet cause lactic acidosis?', 'Yes, the use of Linero M 1000 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linero M 1000 Tablet and immediately consult your doctor.'),
(16796, 'Linero M 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000 Tablet', 'What are the possible side effects of Linero M 1000 Tablet?', 'The use of Linero M 1000 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16797, 'Linero M 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000 Tablet', 'Are there any specific conditions in which Linero M 1000 Tablet should not be taken?', 'The use of Linero M 1000 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linero M 1000 Tablet.'),
(16798, 'Linero M 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000 Tablet', 'Is it safe to take alcohol while I am also taking Linero M 1000 Tablet?', 'No, it is not safe to take Linero M 1000 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16799, 'Linero M 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000 Tablet', 'What are the instructions for the storage and disposal of Linero M 1000 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16800, 'Linero M 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000 Tablet', 'Can the use of Linero M 1000 Tablet cause hypoglycemia?', 'The use of Linero M 1000 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16801, 'Linero M 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000 Tablet', 'Can the use of Linero M 1000 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linero M 1000 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16802, 'Linero M 1000mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet', 'Can the use of Linero M 1000mg/5mg Tablet cause lactic acidosis?', 'Yes, the use of Linero M 1000mg/5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linero M 1000mg/5mg Tablet and immediately consult your doctor.'),
(16803, 'Linero M 1000mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet', 'What are the possible side effects of Linero M 1000mg/5mg Tablet?', 'The use of Linero M 1000mg/5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16804, 'Linero M 1000mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet', 'Are there any specific conditions in which Linero M 1000mg/5mg Tablet should not be taken?', 'The use of Linero M 1000mg/5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linero M 1000mg/5mg Tablet.'),
(16805, 'Linero M 1000mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet', 'Is it safe to take alcohol while I am also taking Linero M 1000mg/5mg Tablet?', 'No, it is not safe to take Linero M 1000mg/5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16806, 'Linero M 1000mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet', 'What are the instructions for the storage and disposal of Linero M 1000mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16807, 'Linero M 1000mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet', 'Can the use of Linero M 1000mg/5mg Tablet cause hypoglycemia?', 'The use of Linero M 1000mg/5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16808, 'Linero M 1000mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet', 'Can the use of Linero M 1000mg/5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linero M 1000mg/5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16809, 'Linero M 1000mg/5mg Tablet ER', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet ER', 'Can the use of Linero M 1000mg/5mg Tablet ER cause lactic acidosis?', 'Yes, the use of Linero M 1000mg/5mg Tablet ER can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linero M 1000mg/5mg Tablet ER and immediately consult your doctor.'),
(16810, 'Linero M 1000mg/5mg Tablet ER', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet ER', 'What are the possible side effects of Linero M 1000mg/5mg Tablet ER?', 'The use of Linero M 1000mg/5mg Tablet ER may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16811, 'Linero M 1000mg/5mg Tablet ER', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet ER', 'Are there any specific conditions in which Linero M 1000mg/5mg Tablet ER should not be taken?', 'The use of Linero M 1000mg/5mg Tablet ER should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linero M 1000mg/5mg Tablet ER.'),
(16812, 'Linero M 1000mg/5mg Tablet ER', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet ER', 'Is it safe to take alcohol while I am also taking Linero M 1000mg/5mg Tablet ER?', 'No, it is not safe to take Linero M 1000mg/5mg Tablet ER along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16813, 'Linero M 1000mg/5mg Tablet ER', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet ER', 'What are the instructions for the storage and disposal of Linero M 1000mg/5mg Tablet ER?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16814, 'Linero M 1000mg/5mg Tablet ER', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet ER', 'Can the use of Linero M 1000mg/5mg Tablet ER cause hypoglycemia?', 'The use of Linero M 1000mg/5mg Tablet ER does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16815, 'Linero M 1000mg/5mg Tablet ER', 'Intas Pharmaceuticals Ltd', 'Linero M 1000mg/5mg Tablet ER', 'Can the use of Linero M 1000mg/5mg Tablet ER lead to vitamin B12 deficiency?', 'Yes, long-term use of Linero M 1000mg/5mg Tablet ER can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16816, 'Linero M 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 500 Tablet', 'Can the use of Linero M 500 Tablet cause lactic acidosis?', 'Yes, the use of Linero M 500 Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linero M 500 Tablet and immediately consult your doctor.'),
(16817, 'Linero M 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 500 Tablet', 'What are the possible side effects of Linero M 500 Tablet?', 'The use of Linero M 500 Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16818, 'Linero M 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 500 Tablet', 'Are there any specific conditions in which Linero M 500 Tablet should not be taken?', 'The use of Linero M 500 Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linero M 500 Tablet.'),
(16819, 'Linero M 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 500 Tablet', 'Is it safe to take alcohol while I am also taking Linero M 500 Tablet?', 'No, it is not safe to take Linero M 500 Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16820, 'Linero M 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 500 Tablet', 'What are the instructions for the storage and disposal of Linero M 500 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16821, 'Linero M 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 500 Tablet', 'Can the use of Linero M 500 Tablet cause hypoglycemia?', 'The use of Linero M 500 Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16822, 'Linero M 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero M 500 Tablet', 'Can the use of Linero M 500 Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linero M 500 Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16823, 'Linero Tablet', 'Intas Pharmaceuticals Ltd', 'Linero Tablet', 'What is Linero Tablet used for?', 'Linero Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linero Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linero Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(16824, 'Linero Tablet', 'Intas Pharmaceuticals Ltd', 'Linero Tablet', 'When should I take Linero Tablet? What if I miss a dose?', 'Linero Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(16825, 'Linero Tablet', 'Intas Pharmaceuticals Ltd', 'Linero Tablet', 'Is Linero Tablet bad for kidneys?', 'No, there is no evidence that Linero Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(16826, 'Linero Tablet', 'Intas Pharmaceuticals Ltd', 'Linero Tablet', 'Is Linero Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linero Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(16827, 'Linero Tablet', 'Intas Pharmaceuticals Ltd', 'Linero Tablet', 'For how long I have to take Linero Tablet? Can I stop the medication?', 'You should keep taking Linero Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(16828, 'Linero-DM 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 1000 Tablet', 'What is Linero-DM 1000 Tablet used for?', 'Linero-DM 1000 Tablet is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(16829, 'Linero-DM 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 1000 Tablet', 'How should I take Linero-DM 1000 Tablet?', 'Take Linero-DM 1000 Tablet exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(16830, 'Linero-DM 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 1000 Tablet', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(16831, 'Linero-DM 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 1000 Tablet', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(16832, 'Linero-DM 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 1000 Tablet', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(16833, 'Linero-DM 1000 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 1000 Tablet', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(16834, 'Linero-DM 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 500 Tablet', 'What is Linero-DM 500 Tablet used for?', 'Linero-DM 500 Tablet is used to manage type 2 diabetes mellitus by helping to lower blood sugar levels through improved insulin sensitivity, increased glucose excretion, and enhanced insulin secretion.'),
(16835, 'Linero-DM 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 500 Tablet', 'How should I take Linero-DM 500 Tablet?', 'Take Linero-DM 500 Tablet exactly as prescribed by your doctor, typically once or twice daily. It can be taken with or without food. Take it regularly and at the same time each day for maximum benefits.'),
(16836, 'Linero-DM 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 500 Tablet', 'Can I take this medication if I have kidney or liver problems?', 'Inform your doctor if you have any kidney or liver issues, as this medication may not be suitable for you. Your doctor will assess your condition and adjust your treatment plan if necessary.'),
(16837, 'Linero-DM 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 500 Tablet', 'How should I monitor my condition while on this medication?', 'Regularly monitor your blood sugar levels as directed by your doctor. Attend scheduled follow-up appointments to track your progress and adjust your treatment as needed.'),
(16838, 'Linero-DM 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 500 Tablet', 'Can I take other medications while using this treatment?', 'Always inform your doctor about any other medications or supplements you are taking to avoid potential interactions.'),
(16839, 'Linero-DM 500 Tablet', 'Intas Pharmaceuticals Ltd', 'Linero-DM 500 Tablet', 'What precautions should I take while on this medication?', 'Stay hydrated and avoid becoming dehydrated. Follow your doctor’s advice on diet and lifestyle to support your diabetes management and overall health. Report any unusual symptoms or concerns to your doctor.'),
(16840, 'Lines 250mg Capsule', 'Glorious Biotech', 'Lines 250mg Capsule', 'How long does Lines 250mg Capsule take to work?', 'Usually, Lines 250mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16841, 'Lines 250mg Capsule', 'Glorious Biotech', 'Lines 250mg Capsule', 'What if I don\'t get better after using Lines 250mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16842, 'Lines 250mg Capsule', 'Glorious Biotech', 'Lines 250mg Capsule', 'Is Lines 250mg Capsule effective?', 'Lines 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lines 250mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lines 250mg Capsule too early, the symptoms may return or worsen.'),
(16843, 'Lines 250mg Capsule', 'Glorious Biotech', 'Lines 250mg Capsule', 'Can I stop taking Lines 250mg Capsule when I feel better?', 'No, do not stop taking Lines 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16844, 'Lines 250mg Capsule', 'Glorious Biotech', 'Lines 250mg Capsule', 'Can the use of Lines 250mg Capsule cause diarrhea?', 'Yes, the use of Lines 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16845, 'Lines 250mg Capsule', 'Glorious Biotech', 'Lines 250mg Capsule', 'Is Lines 250mg Capsule safe?', 'Lines 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16846, 'Lines 500mg Capsule', 'Glorious Biotech', 'Lines 500mg Capsule', 'How long does Lines 500mg Capsule take to work?', 'Usually, Lines 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(16847, 'Lines 500mg Capsule', 'Glorious Biotech', 'Lines 500mg Capsule', 'What if I don\'t get better after using Lines 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(16848, 'Lines 500mg Capsule', 'Glorious Biotech', 'Lines 500mg Capsule', 'Is Lines 500mg Capsule effective?', 'Lines 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Lines 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lines 500mg Capsule too early, the symptoms may return or worsen.'),
(16849, 'Lines 500mg Capsule', 'Glorious Biotech', 'Lines 500mg Capsule', 'Can I stop taking Lines 500mg Capsule when I feel better?', 'No, do not stop taking Lines 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(16850, 'Lines 500mg Capsule', 'Glorious Biotech', 'Lines 500mg Capsule', 'Can the use of Lines 500mg Capsule cause diarrhea?', 'Yes, the use of Lines 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16851, 'Lines 500mg Capsule', 'Glorious Biotech', 'Lines 500mg Capsule', 'Is Lines 500mg Capsule safe?', 'Lines 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(16852, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Does Linesita 100mg Tablet cause weight gain?', 'No, Linesita 100mg Tablet is not known to cause weight gain by itself. However, keeping a healthy weight is an important part of managing diabetes. Consult your doctor if you experience weight gain while taking Linesita 100mg Tablet.'),
(16853, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Is Linesita 100mg Tablet bad for your kidneys?', 'No, Linesita 100mg Tablet is not bad for your kidneys if your kidney function is normal. However, it is important to inform your doctor if you have, or ever had, any kidney problems. If you have kidney problems, you may need dose modification.'),
(16854, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Do I still have to manage my diet and exercise while on Linesita 100mg Tablet?', 'Yes, it is important to manage your diet and exercise while taking Linesita 100mg Tablet. In addition to medicine, making healthy food choices and being physically active are also important to effectively manage blood sugar levels. You may consult a dietitian and follow a diet chart that suits you best. A well-balanced diet is one part of a healthy lifestyle for people with type 2 diabetes. Additionally, thirty minutes of exercise such as a brisk walk is recommended.'),
(16855, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Can my blood sugar levels go too low on Linesita 100mg Tablet?', 'Yes, it is possible that your blood sugar levels may become very low (hypoglycemia). The chances are higher if you are on any other antidiabetic medicine or insulin along with Linesita 100mg Tablet. Additionally, blood sugar levels can take a huge dip if you skip meals, exercise more than usual, or if you have taken an overdose of Linesita 100mg Tablet. If you experience a sudden fall in your sugar levels, inform your doctor. The doctor may suggest dose modification to prevent your blood sugar levels from decreasing significantly (hypoglycemia). Follow your doctor’s advice and monitor your blood sugar levels regularly.'),
(16856, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'What will happen if I accidentally take more than the prescribed dose of Linesita 100mg Tablet?', 'If you have accidentally taken more than the prescribed dose of Linesita 100mg Tablet, your blood sugar levels may become too low (hypoglycemia). This hypoglycemia may be mild or severe. Monitor your blood sugar levels more frequently for the next 24 hours. Mild episodes of hypoglycemia (with symptoms like anxiety, sweating, weakness, tremors, fast heartbeat) can usually be corrected with the help of sugary foods such as sugar or glucose candy, fruit juice and glucose/glucon-D. However, it is important to consult your doctor to decide the further course of treatment. More severe episodes of hypoglycemia may even lead to a seizure (fit) or unconsciousness. This can be life-threatening and immediate medical help may be required.'),
(16857, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'What if I miss a dose of Linesita 100mg Tablet?', 'If you miss a dose, take it as soon as you remember. If in case you do not remember until it is time for your next dose, skip the missed dose and go back to your regular schedule. Do not take two doses of Linesita 100mg Tablet at the same time.'),
(16858, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Is Linesita 100mg Tablet safe to be taken for a long term?', 'Yes, it is safe to take Linesita 100mg Tablet for a long time. Its long-term use, which can continue for months, years or even lifelong, has not shown any harmful effects. Keep taking Linesita 100mg Tablet as long as your doctor recommends it. Remember, Linesita 100mg Tablet only helps to keep your blood sugar levels under control but does not cure your diabetes.'),
(16859, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'How long do I need to take Linesita 100mg Tablet?', 'Linesita 100mg Tablet only helps to manage your blood sugar levels but does not cure your diabetes. Keep taking Linesita 100mg Tablet as long as your doctor recommends it. You may have to take it lifelong. It is important to keep your blood sugar levels under control as any fluctuations in your blood sugar levels may cause serious problems. Therefore, do not stop taking it without talking to your doctor.'),
(16860, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'What is the most important information I should know about Linesita 100mg Tablet?', 'Linesita 100mg Tablet is safe to use if taken in the dose and duration prescribed by the doctor. However, in rare cases, some serious side effects can also be observed. In some people, Linesita 100mg Tablet may cause inflammation of the pancreas (pancreatitis) which could be severe and can even lead to death. If you experience severe and persistent pain in your stomach area (abdomen), stop the medication and immediately contact your doctor. Linesita 100mg Tablet can also cause heart failure. This means the heart is not able to pump blood well enough, therefore, inform your doctor if you have or ever had heart problems before you start taking Linesita 100mg Tablet. In addition to that, problems related to kidneys should also be discussed with the doctor.'),
(16861, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Does Linesita 100mg Tablet cause weight gain?', 'No, Linesita 100mg Tablet is not known to cause weight gain by itself. However, keeping a healthy weight is an important part of managing diabetes. Consult your doctor if you experience weight gain while taking Linesita 100mg Tablet.'),
(16862, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Is Linesita 100mg Tablet bad for your kidneys?', 'No, Linesita 100mg Tablet is not bad for your kidneys if your kidney function is normal. However, it is important to inform your doctor if you have, or ever had, any kidney problems. If you have kidney problems, you may need dose modification.'),
(16863, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Do I still have to manage my diet and exercise while on Linesita 100mg Tablet?', 'Yes, it is important to manage your diet and exercise while taking Linesita 100mg Tablet. In addition to medicine, making healthy food choices and being physically active are also important to effectively manage blood sugar levels. You may consult a dietitian and follow a diet chart that suits you best. A well-balanced diet is one part of a healthy lifestyle for people with type 2 diabetes. Additionally, thirty minutes of exercise such as a brisk walk is recommended.'),
(16864, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Can my blood sugar levels go too low on Linesita 100mg Tablet?', 'Yes, it is possible that your blood sugar levels may become very low (hypoglycemia). The chances are higher if you are on any other antidiabetic medicine or insulin along with Linesita 100mg Tablet. Additionally, blood sugar levels can take a huge dip if you skip meals, exercise more than usual, or if you have taken an overdose of Linesita 100mg Tablet. If you experience a sudden fall in your sugar levels, inform your doctor. The doctor may suggest dose modification to prevent your blood sugar levels from decreasing significantly (hypoglycemia). Follow your doctor’s advice and monitor your blood sugar levels regularly.'),
(16865, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'What will happen if I accidentally take more than the prescribed dose of Linesita 100mg Tablet?', 'If you have accidentally taken more than the prescribed dose of Linesita 100mg Tablet, your blood sugar levels may become too low (hypoglycemia). This hypoglycemia may be mild or severe. Monitor your blood sugar levels more frequently for the next 24 hours. Mild episodes of hypoglycemia (with symptoms like anxiety, sweating, weakness, tremors, fast heartbeat) can usually be corrected with the help of sugary foods such as sugar or glucose candy, fruit juice and glucose/glucon-D. However, it is important to consult your doctor to decide the further course of treatment. More severe episodes of hypoglycemia may even lead to a seizure (fit) or unconsciousness. This can be life-threatening and immediate medical help may be required.'),
(16866, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'What if I miss a dose of Linesita 100mg Tablet?', 'If you miss a dose, take it as soon as you remember. If in case you do not remember until it is time for your next dose, skip the missed dose and go back to your regular schedule. Do not take two doses of Linesita 100mg Tablet at the same time.'),
(16867, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'Is Linesita 100mg Tablet safe to be taken for a long term?', 'Yes, it is safe to take Linesita 100mg Tablet for a long time. Its long-term use, which can continue for months, years or even lifelong, has not shown any harmful effects. Keep taking Linesita 100mg Tablet as long as your doctor recommends it. Remember, Linesita 100mg Tablet only helps to keep your blood sugar levels under control but does not cure your diabetes.'),
(16868, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'How long do I need to take Linesita 100mg Tablet?', 'Linesita 100mg Tablet only helps to manage your blood sugar levels but does not cure your diabetes. Keep taking Linesita 100mg Tablet as long as your doctor recommends it. You may have to take it lifelong. It is important to keep your blood sugar levels under control as any fluctuations in your blood sugar levels may cause serious problems. Therefore, do not stop taking it without talking to your doctor.'),
(16869, 'Linesita 100mg Tablet', 'N Line Healthcare Private Limited', 'Linesita 100mg Tablet', 'What is the most important information I should know about Linesita 100mg Tablet?', 'Linesita 100mg Tablet is safe to use if taken in the dose and duration prescribed by the doctor. However, in rare cases, some serious side effects can also be observed. In some people, Linesita 100mg Tablet may cause inflammation of the pancreas (pancreatitis) which could be severe and can even lead to death. If you experience severe and persistent pain in your stomach area (abdomen), stop the medication and immediately contact your doctor. Linesita 100mg Tablet can also cause heart failure. This means the heart is not able to pump blood well enough, therefore, inform your doctor if you have or ever had heart problems before you start taking Linesita 100mg Tablet. In addition to that, problems related to kidneys should also be discussed with the doctor.'),
(16870, 'Linesita-M 50mg/500mg Tablet', 'N Line Healthcare Private Limited', 'Linesita-M 50mg/500mg Tablet', 'What is Linesita-M 50mg/500mg Tablet?', 'Linesita-M 50mg/500mg Tablet is a combination of two medicines: Sitagliptin and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus. It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Metformin lowers glucose production in the liver and improves insulin sensitivity. Sitagliptin inhibits the enzyme DPP4 and increases insulin release from the pancreas. This combination is not indicated for the patients below 18 years of age.'),
(16871, 'Linesita-M 50mg/500mg Tablet', 'N Line Healthcare Private Limited', 'Linesita-M 50mg/500mg Tablet', 'What are the possible side effects of Linesita-M 50mg/500mg Tablet?', 'The use of Linesita-M 50mg/500mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache, and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to Vitamin B12 deficiency.'),
(16872, 'Linesita-M 50mg/500mg Tablet', 'N Line Healthcare Private Limited', 'Linesita-M 50mg/500mg Tablet', 'Are there any specific conditions in which Linesita-M 50mg/500mg Tablet should not be taken?', 'The use of Linesita-M 50mg/500mg Tablet should be avoided in patients with known allergies to any of the components or excipients of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis, or diabetic ketoacidosis.'),
(16873, 'Linesita-M 50mg/500mg Tablet', 'N Line Healthcare Private Limited', 'Linesita-M 50mg/500mg Tablet', 'Is it safe to take alcohol while I am taking Linesita-M 50mg/500mg Tablet?', 'No, it is not safe to consume alcohol along with Linesita-M 50mg/500mg Tablet, as it can increase the chances of lactic acidosis.'),
(16874, 'Linesita-M 50mg/500mg Tablet', 'N Line Healthcare Private Limited', 'Linesita-M 50mg/500mg Tablet', 'Can the use of Linesita-M 50mg/500mg Tablet lead to lactic acidosis?', 'Yes, the use of Linesita-M 50mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency caused by the increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin. Therefore, it is avoided in patients with underlying kidney disease, old age patients, or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain, or slow heart rate. If you have these symptoms, stop taking Sitagliptin + Metformin and immediately consult your doctor.'),
(16875, 'Linesita-M 50mg/500mg Tablet', 'N Line Healthcare Private Limited', 'Linesita-M 50mg/500mg Tablet', 'Can the use of Linesita-M 50mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, using Linesita-M 50mg/500mg Tablet can cause Vitamin B12 deficiency in the long term. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems, as a result of which the patient can feel a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status, and difficulty maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(16876, 'Linesita-M 50mg/500mg Tablet', 'N Line Healthcare Private Limited', 'Linesita-M 50mg/500mg Tablet', 'What are the instructions for storage and disposal of Linesita-M 50mg/500mg Tablet?', 'Keep this medicine tightly closed in the container or pack it came in. Store it according to the instructions on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, or other people.'),
(16877, 'Linest D Syrup', 'Linest Pharma LLP', 'Linest D Syrup', 'Can the use of Linest D Syrup cause sleepiness or drowsiness?', 'Yes, Linest D Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(16878, 'Linest D Syrup', 'Linest Pharma LLP', 'Linest D Syrup', 'Will Linest D Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16879, 'Linest D Syrup', 'Linest Pharma LLP', 'Linest D Syrup', 'Can I breastfeed while taking Linest D Syrup?', 'No, it is not advisable to breastfeed while using Linest D Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(16880, 'Linest D Syrup', 'Linest Pharma LLP', 'Linest D Syrup', 'What are the instructions for storage and disposal of Linest D Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16881, 'Linest LS Syrup', 'Linest Pharma LLP', 'Linest LS Syrup', 'What is Linest LS Syrup?', 'Linest LS Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(16882, 'Linest LS Syrup', 'Linest Pharma LLP', 'Linest LS Syrup', 'Is it safe to use Linest LS Syrup?', 'Yes, it is safe to use Linest LS Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(16883, 'Linest LS Syrup', 'Linest Pharma LLP', 'Linest LS Syrup', 'Are there any specific contraindications associated with the use of Linest LS Syrup?', 'Use of Linest LS Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(16884, 'Linest LS Syrup', 'Linest Pharma LLP', 'Linest LS Syrup', 'Can the use of Linest LS Syrup cause dizziness?', 'Yes, the use of Linest LS Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(16885, 'Linest LS Syrup', 'Linest Pharma LLP', 'Linest LS Syrup', 'Can the use of Linest LS Syrup cause diarrhea?', 'Yes, the use of Linest LS Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(16886, 'Linest LS Syrup', 'Linest Pharma LLP', 'Linest LS Syrup', 'What are the recommended storage conditions for Linest LS Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16887, 'Linet 600mg Tablet', 'Cure Quick Pharmaceuticals', 'Linet 600mg Tablet', 'Can the use of Linet 600mg Tablet cause diarrhea?', 'Yes, the use of Linet 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16888, 'Linet 600mg Tablet', 'Cure Quick Pharmaceuticals', 'Linet 600mg Tablet', 'What foods should I avoid while taking Linet 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linet 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16889, 'Linetec 600mg Injection', 'Neon Laboratories Ltd', 'Linetec 600mg Injection', 'Can the use of Linetec 600mg Injection cause diarrhea?', 'Yes, the use of Linetec 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16890, 'Linetec 600mg Injection', 'Neon Laboratories Ltd', 'Linetec 600mg Injection', 'What foods should I avoid while taking Linetec 600mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linetec 600mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(16891, 'Linetic 200mg Infusion', 'Neon Laboratories Ltd', 'Linetic 200mg Infusion', 'Can the use of Linetic 200mg Infusion cause diarrhea?', 'Yes, the use of Linetic 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16892, 'Linetic 200mg Infusion', 'Neon Laboratories Ltd', 'Linetic 200mg Infusion', 'What foods should I avoid while taking Linetic 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linetic 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(16893, 'Linetic 600mg Infusion', 'Neon Laboratories Ltd', 'Linetic 600mg Infusion', 'Can the use of Linetic 600mg Infusion cause diarrhea?', 'Yes, the use of Linetic 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16894, 'Linetic 600mg Infusion', 'Neon Laboratories Ltd', 'Linetic 600mg Infusion', 'What foods should I avoid while taking Linetic 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linetic 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(16895, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'What if I give an excess of Linetic Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(16896, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linetic Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(16897, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'What should I do if my child shows no improvement even after taking Linetic Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linetic Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(16898, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'Can Linetic Dry Syrup be given for a long duration?', 'Prolonged use of Linetic Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(16899, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'Can other medicines be given at the same time as Linetic Dry Syrup?', 'Linetic Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linetic Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(16900, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linetic Dry Syrup?', 'For children receiving Linetic Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(16901, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'In which disease conditions should I avoid giving Linetic Dry Syrup to my child?', 'Avoid giving Linetic Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linetic Dry Syrup to your child.'),
(16902, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'What food items should my child avoid while taking Linetic Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linetic Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(16903, 'Linetic Dry Syrup', 'Neon Laboratories Ltd', 'Linetic Dry Syrup', 'Can I get my child vaccinated while on treatment with Linetic Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linetic Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(16904, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'What is Lineuron Plus 750mcg/75mg Injection?', 'Lineuron Plus 750mcg/75mg Injection is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(16905, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'Can I stop taking Lineuron Plus 750mcg/75mg Injection when my pain is relieved?', 'No, you should not stop taking Lineuron Plus 750mcg/75mg Injection even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Lineuron Plus 750mcg/75mg Injection, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Lineuron Plus 750mcg/75mg Injection before you stop the medication completely.'),
(16906, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'How to manage weight gain associated with the use of Lineuron Plus 750mcg/75mg Injection?', 'Lineuron Plus 750mcg/75mg Injection can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(16907, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'Can the use of Lineuron Plus 750mcg/75mg Injection cause sleepiness or drowsiness?', 'Yes, Lineuron Plus 750mcg/75mg Injection may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(16908, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'Are there any serious side effects associated with the use of Lineuron Plus 750mcg/75mg Injection?', 'Serious side effects caused because of the use of Lineuron Plus 750mcg/75mg Injection are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Lineuron Plus 750mcg/75mg Injection and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(16909, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'How long will the Lineuron Plus 750mcg/75mg Injection take to act?', 'An initial benefit with Lineuron Plus 750mcg/75mg Injection may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(16910, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'What if I forget to take Lineuron Plus 750mcg/75mg Injection?', 'If you forget to take the scheduled dose of Lineuron Plus 750mcg/75mg Injection and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(16911, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'Will a higher than the recommended dose of Lineuron Plus 750mcg/75mg Injection be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16912, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'Can I drink alcohol while taking Lineuron Plus 750mcg/75mg Injection?', 'No, do not drink alcohol while taking Lineuron Plus 750mcg/75mg Injection. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lineuron Plus 750mcg/75mg Injection.'),
(16913, 'Lineuron Plus 750mcg/75mg Injection', 'Lee Benz Life Science', 'Lineuron Plus 750mcg/75mg Injection', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Lineuron Plus 750mcg/75mg Injection. However, you must consult your doctor if the advised dosage of Lineuron Plus 750mcg/75mg Injection does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(16914, 'Linewar 600mg Tablet', 'Arlak Biotech Pvt Ltd', 'Linewar 600mg Tablet', 'Can the use of Linewar 600mg Tablet cause diarrhea?', 'Yes, the use of Linewar 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16915, 'Linewar 600mg Tablet', 'Arlak Biotech Pvt Ltd', 'Linewar 600mg Tablet', 'What foods should I avoid while taking Linewar 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linewar 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16916, 'Linewar C 200mg/600mg Tablet', 'Arlak Biotech Pvt Ltd', 'Linewar C 200mg/600mg Tablet', 'What is Linewar C 200mg/600mg Tablet used for?', 'Linewar C 200mg/600mg Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(16917, 'Linewar C 200mg/600mg Tablet', 'Arlak Biotech Pvt Ltd', 'Linewar C 200mg/600mg Tablet', 'Can the use of Linewar C 200mg/600mg Tablet cause diarrhea?', 'Yes, the use of Linewar C 200mg/600mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(16918, 'Linewar C 200mg/600mg Tablet', 'Arlak Biotech Pvt Ltd', 'Linewar C 200mg/600mg Tablet', 'Is the use of Linewar C 200mg/600mg Tablet helpful in the treatment of bronchitis?', 'Yes, Linewar C 200mg/600mg Tablet is helpful in the treatment of bronchitis.'),
(16919, 'Linewar C 200mg/600mg Tablet', 'Arlak Biotech Pvt Ltd', 'Linewar C 200mg/600mg Tablet', 'What are the instructions for the storage and disposal of Linewar C 200mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16920, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'Why have I been prescribed Linez 2.5mg Tablet?', 'Linez 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(16921, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'How does Linez 2.5mg Tablet work?', 'Linez 2.5mg Tablet is also known as an anti-estrogen drug. It is called so because it acts by reducing the production of estrogen in your body by blocking the enzyme aromatase, which is responsible for the production of estrogen. Estrogen stimulates the production of certain types of breast cancer in your body. These cancers are called \'__\'estrogen-dependent cancers\'__\'. Reducing the production of estrogen may prevent cancer from growing.'),
(16922, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'For how long should I take Linez 2.5mg Tablet?', 'If the breast tumor is in the advanced stage or has spread to other parts of the body, it is recommended that you continue taking Linez 2.5mg Tablet till the tumor shows progression. In cases where Linez 2.5mg Tablet is given after tamoxifen (another anti-estrogen used for breast cancer) or surgery, it should be given for 5 years or until the tumor comes back, whichever is first. It can also be given as a sequential treatment; 2 years of Linez 2.5mg Tablet followed by 3 years of tamoxifen.'),
(16923, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'If I am taking irbesartan to control my blood pressure, can I take Linez 2.5mg Tablet?', 'Yes, you can take irbesartan and Linez 2.5mg Tablet together. However, be careful and keep a regular check on your blood pressure since Linez 2.5mg Tablet may increase your blood pressure. Consult your doctor in case you have problems controlling your blood pressure.'),
(16924, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'Does Linez 2.5mg Tablet affect vision?', 'Although it is very uncommon, Linez 2.5mg Tablet may cause a cataract. So, if you experience blurred vision or eye irritation, consult your doctor immediately.'),
(16925, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'My friend who is taking Linez 2.5mg Tablet often sweats a lot. Is it because of Linez 2.5mg Tablet?', 'This could be a sign of hot flushes which is a very common side effect of Linez 2.5mg Tablet. It happens due to decreased estrogen levels. The frequency of hot flushes reduces once your body adjusts to Linez 2.5mg Tablet. However, in some people, the flushes and sweats may continue during the treatment and stop a few months after the treatment finishes. You can consult your doctor who will provide you a remedy if it is very bothersome.'),
(16926, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'What are the serious side effects of Linez 2.5mg Tablet?', 'The serious side effects do not occur in everyone and very few people experience them. The serious side effects of Linez 2.5mg Tablet include stroke, angina, heart attack, blood clotting, cataract, osteoporosis, and severe skin reactions.'),
(16927, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'Does Linez 2.5mg Tablet cause bone loss?', 'Linez 2.5mg Tablet may cause thinning or wasting of your bones (osteoporosis), which is due to the decrease in estrogen levels in your body. Your doctor may decide to measure your bone density (a way of monitoring for osteoporosis) before, during and after treatment.'),
(16928, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'Can I take Linez 2.5mg Tablet for induction of ovulation in anovulatory infertility?', 'As per the Ministry of Health and Family Welfare, Linez 2.5mg Tablet is restricted for use in induction of ovulation in anovulatory infertility.'),
(16929, 'Linez 2.5mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Linez 2.5mg Tablet', 'Why have I been prescribed Linez 2.5mg Tablet?', 'Linez 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(16930, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'What if I give an excess of Linezed Syrup 100mg by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(16931, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linezed Syrup 100mg along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(16932, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'What should I do if my child shows no improvement even after taking Linezed Syrup 100mg for the prescribed duration?', 'Ineffective treatment with Linezed Syrup 100mg could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(16933, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'Can Linezed Syrup 100mg be given for a long duration?', 'Prolonged use of Linezed Syrup 100mg may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(16934, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'Can other medicines be given at the same time as Linezed Syrup 100mg?', 'Linezed Syrup 100mg can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linezed Syrup 100mg. Also, check with your child’s doctor before giving any medicine to your child.'),
(16935, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'What lab tests that are required for monitoring while my child is taking Linezed Syrup 100mg?', 'For children receiving Linezed Syrup 100mg for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(16936, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'In which disease conditions should I avoid giving Linezed Syrup 100mg to my child?', 'Avoid giving Linezed Syrup 100mg if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linezed Syrup 100mg to your child.'),
(16937, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'What food items should my child avoid while taking Linezed Syrup 100mg?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linezed Syrup 100mg. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(16938, 'Linezed Syrup 100mg', 'Helik Pharmaceuticals', 'Linezed Syrup 100mg', 'Can I get my child vaccinated while on treatment with Linezed Syrup 100mg?', 'It is advised not to get your child vaccinated while they are on treatment with Linezed Syrup 100mg. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(16939, 'Linezhot 600mg Tablet', 'Holista Health Care', 'Linezhot 600mg Tablet', 'Can the use of Linezhot 600mg Tablet cause diarrhea?', 'Yes, the use of Linezhot 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16940, 'Linezhot 600mg Tablet', 'Holista Health Care', 'Linezhot 600mg Tablet', 'What foods should I avoid while taking Linezhot 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezhot 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(16941, 'Linezo 600mg Tablet', 'Scott Edil Pharmacia Ltd', 'Linezo 600mg Tablet', 'Can the use of Linezo 600mg Tablet cause diarrhea?', 'Yes, the use of Linezo 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16942, 'Linezo 600mg Tablet', 'Scott Edil Pharmacia Ltd', 'Linezo 600mg Tablet', 'What foods should I avoid while taking Linezo 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezo 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16943, 'Linezochem 2mg Infusion', 'Swastik Life Sciences', 'Linezochem 2mg Infusion', 'Can the use of Linezochem 2mg Infusion cause diarrhea?', 'Yes, the use of Linezochem 2mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16944, 'Linezochem 2mg Infusion', 'Swastik Life Sciences', 'Linezochem 2mg Infusion', 'What foods should I avoid while taking Linezochem 2mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezochem 2mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(16945, 'Linezol 600mg Tablet', 'Elder Pharmaceuticals Ltd', 'Linezol 600mg Tablet', 'Can the use of Linezol 600mg Tablet cause diarrhea?', 'Yes, the use of Linezol 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16946, 'Linezol 600mg Tablet', 'Elder Pharmaceuticals Ltd', 'Linezol 600mg Tablet', 'What foods should I avoid while taking Linezol 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezol 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16947, 'Linezole 600mg Tablet', 'Zedlon Pharmaceuticals', 'Linezole 600mg Tablet', 'Can the use of Linezole 600mg Tablet cause diarrhea?', 'Yes, the use of Linezole 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16948, 'Linezole 600mg Tablet', 'Zedlon Pharmaceuticals', 'Linezole 600mg Tablet', 'What foods should I avoid while taking Linezole 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezole 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16949, 'Linezolid 600mg Tablet', 'Elder Pharmaceuticals Ltd', 'Linezolid 600mg Tablet', 'Can the use of Linezolid 600mg Tablet cause diarrhea?', 'Yes, the use of Linezolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16950, 'Linezolid 600mg Tablet', 'Elder Pharmaceuticals Ltd', 'Linezolid 600mg Tablet', 'What foods should I avoid while taking Linezolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16951, 'Linezomentin 600mg Tablet', 'Skg Internationals', 'Linezomentin 600mg Tablet', 'Can the use of Linezomentin 600mg Tablet cause diarrhea?', 'Yes, the use of Linezomentin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16952, 'Linezomentin 600mg Tablet', 'Skg Internationals', 'Linezomentin 600mg Tablet', 'What foods should I avoid while taking Linezomentin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezomentin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16953, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'What if I give an excess of Linezomentin Dry Syrup 100mg by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(16954, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linezomentin Dry Syrup 100mg along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(16955, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'What should I do if my child shows no improvement even after taking Linezomentin Dry Syrup 100mg for the prescribed duration?', 'Ineffective treatment with Linezomentin Dry Syrup 100mg could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(16956, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'Can Linezomentin Dry Syrup 100mg be given for a long duration?', 'Prolonged use of Linezomentin Dry Syrup 100mg may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(16957, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'Can other medicines be given at the same time as Linezomentin Dry Syrup 100mg?', 'Linezomentin Dry Syrup 100mg can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linezomentin Dry Syrup 100mg. Also, check with your child’s doctor before giving any medicine to your child.'),
(16958, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'What lab tests that are required for monitoring while my child is taking Linezomentin Dry Syrup 100mg?', 'For children receiving Linezomentin Dry Syrup 100mg for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(16959, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'In which disease conditions should I avoid giving Linezomentin Dry Syrup 100mg to my child?', 'Avoid giving Linezomentin Dry Syrup 100mg if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linezomentin Dry Syrup 100mg to your child.'),
(16960, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'What food items should my child avoid while taking Linezomentin Dry Syrup 100mg?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linezomentin Dry Syrup 100mg. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(16961, 'Linezomentin Dry Syrup 100mg', 'Skg Internationals', 'Linezomentin Dry Syrup 100mg', 'Can I get my child vaccinated while on treatment with Linezomentin Dry Syrup 100mg?', 'It is advised not to get your child vaccinated while they are on treatment with Linezomentin Dry Syrup 100mg. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(16962, 'Linezonic 600mg Tablet', 'Laxin Healthcare', 'Linezonic 600mg Tablet', 'Can the use of Linezonic 600mg Tablet cause diarrhea?', 'Yes, the use of Linezonic 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16963, 'Linezonic 600mg Tablet', 'Laxin Healthcare', 'Linezonic 600mg Tablet', 'What foods should I avoid while taking Linezonic 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezonic 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16964, 'Linezosar 600mg Tablet', 'Sarvodaya Drugs & Pharma Ltd', 'Linezosar 600mg Tablet', 'Can the use of Linezosar 600mg Tablet cause diarrhea?', 'Yes, the use of Linezosar 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16965, 'Linezosar 600mg Tablet', 'Sarvodaya Drugs & Pharma Ltd', 'Linezosar 600mg Tablet', 'What foods should I avoid while taking Linezosar 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezosar 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16966, 'Linezox IV Injection', 'Claris Lifesciences Ltd', 'Linezox IV Injection', 'Can the use of Linezox IV Injection cause diarrhea?', 'Yes, the use of Linezox IV Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16967, 'Linezox IV Injection', 'Claris Lifesciences Ltd', 'Linezox IV Injection', 'What foods should I avoid while taking Linezox IV Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezox IV Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(16968, 'Linezu 600mg Tablet', 'Eveson Pharma', 'Linezu 600mg Tablet', 'Can the use of Linezu 600mg Tablet cause diarrhea?', 'Yes, the use of Linezu 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16969, 'Linezu 600mg Tablet', 'Eveson Pharma', 'Linezu 600mg Tablet', 'What foods should I avoid while taking Linezu 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linezu 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16970, 'Linfomet Tablet', 'SCG Healthcare Private Limited', 'Linfomet Tablet', 'Can the use of Linfomet Tablet cause lactic acidosis?', 'Yes, the use of Linfomet Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linfomet Tablet and immediately consult your doctor.'),
(16971, 'Linfomet Tablet', 'SCG Healthcare Private Limited', 'Linfomet Tablet', 'What are the possible side effects of Linfomet Tablet?', 'The use of Linfomet Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16972, 'Linfomet Tablet', 'SCG Healthcare Private Limited', 'Linfomet Tablet', 'Are there any specific conditions in which Linfomet Tablet should not be taken?', 'The use of Linfomet Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linfomet Tablet.'),
(16973, 'Linfomet Tablet', 'SCG Healthcare Private Limited', 'Linfomet Tablet', 'Is it safe to take alcohol while I am also taking Linfomet Tablet?', 'No, it is not safe to take Linfomet Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16974, 'Linfomet Tablet', 'SCG Healthcare Private Limited', 'Linfomet Tablet', 'What are the instructions for the storage and disposal of Linfomet Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16975, 'Linfomet Tablet', 'SCG Healthcare Private Limited', 'Linfomet Tablet', 'Can the use of Linfomet Tablet cause hypoglycemia?', 'The use of Linfomet Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16976, 'Linfomet Tablet', 'SCG Healthcare Private Limited', 'Linfomet Tablet', 'Can the use of Linfomet Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linfomet Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16977, 'Linfomet-DS Tablet', 'SCG Healthcare Private Limited', 'Linfomet-DS Tablet', 'Can the use of Linfomet-DS Tablet cause lactic acidosis?', 'Yes, the use of Linfomet-DS Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linfomet-DS Tablet and immediately consult your doctor.'),
(16978, 'Linfomet-DS Tablet', 'SCG Healthcare Private Limited', 'Linfomet-DS Tablet', 'What are the possible side effects of Linfomet-DS Tablet?', 'The use of Linfomet-DS Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(16979, 'Linfomet-DS Tablet', 'SCG Healthcare Private Limited', 'Linfomet-DS Tablet', 'Are there any specific conditions in which Linfomet-DS Tablet should not be taken?', 'The use of Linfomet-DS Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linfomet-DS Tablet.'),
(16980, 'Linfomet-DS Tablet', 'SCG Healthcare Private Limited', 'Linfomet-DS Tablet', 'Is it safe to take alcohol while I am also taking Linfomet-DS Tablet?', 'No, it is not safe to take Linfomet-DS Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(16981, 'Linfomet-DS Tablet', 'SCG Healthcare Private Limited', 'Linfomet-DS Tablet', 'What are the instructions for the storage and disposal of Linfomet-DS Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16982, 'Linfomet-DS Tablet', 'SCG Healthcare Private Limited', 'Linfomet-DS Tablet', 'Can the use of Linfomet-DS Tablet cause hypoglycemia?', 'The use of Linfomet-DS Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(16983, 'Linfomet-DS Tablet', 'SCG Healthcare Private Limited', 'Linfomet-DS Tablet', 'Can the use of Linfomet-DS Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Linfomet-DS Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(16984, 'Linfulid 600mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Linfulid 600mg Tablet', 'Can the use of Linfulid 600mg Tablet cause diarrhea?', 'Yes, the use of Linfulid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16985, 'Linfulid 600mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Linfulid 600mg Tablet', 'What foods should I avoid while taking Linfulid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linfulid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16986, 'Lingame 300mg/500mcg Tablet', 'Linex Pharmaceuticals', 'Lingame 300mg/500mcg Tablet', 'What is Lingame 300mg/500mcg Tablet?', 'Lingame 300mg/500mcg Tablet is a combination of two medicines: Gabapentin and Methylcobalamin. This medication is useful in the treatment of pain due to nerve damage (peripheral neuropathy). This medication works by regenerating damaged nerves in the body and decreasing the pain sensation.'),
(16987, 'Lingame 300mg/500mcg Tablet', 'Linex Pharmaceuticals', 'Lingame 300mg/500mcg Tablet', 'What is peripheral neuropathy?', 'The nerves in the periphery of your body, such as the nerves in your toes and fingertip are called peripheral nerves and any damage to one or more of these nerves is called peripheral neuropathy. These nerves carry messages to/from the brain and spinal cord from/to the rest of the body. A damage caused to these nerves stops them from functioning properly and the messages traveling between your central and peripheral nervous system get disrupted.'),
(16988, 'Lingame 300mg/500mcg Tablet', 'Linex Pharmaceuticals', 'Lingame 300mg/500mcg Tablet', 'Can I stop taking Lingame 300mg/500mcg Tablet when my pain is relieved?', 'No, take Lingame 300mg/500mcg Tablet for the full prescribed length of time. Your symptoms may improve before the nerves are completely regenerated and healed.'),
(16989, 'Lingame 300mg/500mcg Tablet', 'Linex Pharmaceuticals', 'Lingame 300mg/500mcg Tablet', 'Can the use of Lingame 300mg/500mcg Tablet cause sleepiness?', 'Yes, the most common side effect of Lingame 300mg/500mcg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention. Do not drink alcohol while taking Lingame 300mg/500mcg Tablet as it can lead to severe sleepiness , causing falls or accidents.'),
(16990, 'Lingame 300mg/500mcg Tablet', 'Linex Pharmaceuticals', 'Lingame 300mg/500mcg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lingame 300mg/500mcg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(16991, 'Lingame 300mg/500mcg Tablet', 'Linex Pharmaceuticals', 'Lingame 300mg/500mcg Tablet', 'What is the recommended storage condition for the Lingame 300mg/500mcg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(16992, 'Lingax 600 Tablet', 'Manith Healthcare Pvt Ltd', 'Lingax 600 Tablet', 'Can the use of Lingax 600 Tablet cause diarrhea?', 'Yes, the use of Lingax 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16993, 'Lingax 600 Tablet', 'Manith Healthcare Pvt Ltd', 'Lingax 600 Tablet', 'What foods should I avoid while taking Lingax 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lingax 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(16994, 'Lingess 500mg Tablet', 'Westin Pharmaceuticals Pvt. Ltd', 'Lingess 500mg Tablet', 'Is Lingess 500mg Tablet safe?', 'Lingess 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(16995, 'Lingess 500mg Tablet', 'Westin Pharmaceuticals Pvt. Ltd', 'Lingess 500mg Tablet', 'What if I forget to take a dose of Lingess 500mg Tablet?', 'If you forget a dose of Lingess 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(16996, 'Lingess 500mg Tablet', 'Westin Pharmaceuticals Pvt. Ltd', 'Lingess 500mg Tablet', 'Can the use of Lingess 500mg Tablet cause diarrhea?', 'Yes, the use of Lingess 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(16997, 'Lingess 500mg Tablet', 'Westin Pharmaceuticals Pvt. Ltd', 'Lingess 500mg Tablet', 'Can I stop taking Lingess 500mg Tablet when I feel better?', 'No, do not stop taking Lingess 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lingess 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lingess 500mg Tablet in the dose and duration advised by the doctor.'),
(16998, 'Lingess 500mg Tablet', 'Westin Pharmaceuticals Pvt. Ltd', 'Lingess 500mg Tablet', 'Can the use of Lingess 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lingess 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lingess 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(16999, 'Linglim M 1mg/500mg Tablet', 'Linear Pharma Private Limited', 'Linglim M 1mg/500mg Tablet', 'What are the recommended storage conditions for Linglim M 1mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17000, 'Linglim M 1mg/500mg Tablet', 'Linear Pharma Private Limited', 'Linglim M 1mg/500mg Tablet', 'Can the use of Linglim M 1mg/500mg Tablet lead to lactic acidosis?', 'Yes, the use of Linglim M 1mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linglim M 1mg/500mg Tablet and consult your doctor immediately.'),
(17001, 'Linglim M 1mg/500mg Tablet', 'Linear Pharma Private Limited', 'Linglim M 1mg/500mg Tablet', 'What is Linglim M 1mg/500mg Tablet?', 'Linglim M 1mg/500mg Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(17002, 'Linglim M 1mg/500mg Tablet', 'Linear Pharma Private Limited', 'Linglim M 1mg/500mg Tablet', 'What are the possible side effects of Linglim M 1mg/500mg Tablet?', 'The use of Linglim M 1mg/500mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(17003, 'Linglim M 1mg/500mg Tablet', 'Linear Pharma Private Limited', 'Linglim M 1mg/500mg Tablet', 'Can the use of Linglim M 1mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Linglim M 1mg/500mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(17004, 'Linglim M 1mg/500mg Tablet', 'Linear Pharma Private Limited', 'Linglim M 1mg/500mg Tablet', 'Can the use of Linglim M 1mg/500mg Tablet cause hypoglycemia?', 'Yes, the use of Linglim M 1mg/500mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(17005, 'Linglim M 1mg/500mg Tablet', 'Linear Pharma Private Limited', 'Linglim M 1mg/500mg Tablet', 'Is it safe to take alcohol while I am also taking Linglim M 1mg/500mg Tablet?', 'No, it is not safe to take Linglim M 1mg/500mg Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(17006, 'Linglim M 2mg/500mg Tablet', 'Olens Healthcare Pvt Ltd', 'Linglim M 2mg/500mg Tablet', 'What are the recommended storage conditions for Linglim M 2mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17007, 'Linglim M 2mg/500mg Tablet', 'Olens Healthcare Pvt Ltd', 'Linglim M 2mg/500mg Tablet', 'Can the use of Linglim M 2mg/500mg Tablet lead to lactic acidosis?', 'Yes, the use of Linglim M 2mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linglim M 2mg/500mg Tablet and consult your doctor immediately.'),
(17008, 'Linglim M 2mg/500mg Tablet', 'Olens Healthcare Pvt Ltd', 'Linglim M 2mg/500mg Tablet', 'What is Linglim M 2mg/500mg Tablet?', 'Linglim M 2mg/500mg Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(17009, 'Linglim M 2mg/500mg Tablet', 'Olens Healthcare Pvt Ltd', 'Linglim M 2mg/500mg Tablet', 'What are the possible side effects of Linglim M 2mg/500mg Tablet?', 'The use of Linglim M 2mg/500mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(17010, 'Linglim M 2mg/500mg Tablet', 'Olens Healthcare Pvt Ltd', 'Linglim M 2mg/500mg Tablet', 'Can the use of Linglim M 2mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Linglim M 2mg/500mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(17011, 'Linglim M 2mg/500mg Tablet', 'Olens Healthcare Pvt Ltd', 'Linglim M 2mg/500mg Tablet', 'Can the use of Linglim M 2mg/500mg Tablet cause hypoglycemia?', 'Yes, the use of Linglim M 2mg/500mg Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(17012, 'Linglim M 2mg/500mg Tablet', 'Olens Healthcare Pvt Ltd', 'Linglim M 2mg/500mg Tablet', 'Is it safe to take alcohol while I am also taking Linglim M 2mg/500mg Tablet?', 'No, it is not safe to take Linglim M 2mg/500mg Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(17013, 'Lingretin 5 Tablet', 'Abbott Healthcare Private Limited', 'Lingretin 5 Tablet', 'What is Lingretin 5 Tablet used for?', 'Lingretin 5 Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Lingretin 5 Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Lingretin 5 Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(17014, 'Lingretin 5 Tablet', 'Abbott Healthcare Private Limited', 'Lingretin 5 Tablet', 'When should I take Lingretin 5 Tablet? What if I miss a dose?', 'Lingretin 5 Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(17015, 'Lingretin 5 Tablet', 'Abbott Healthcare Private Limited', 'Lingretin 5 Tablet', 'Is Lingretin 5 Tablet bad for kidneys?', 'No, there is no evidence that Lingretin 5 Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(17016, 'Lingretin 5 Tablet', 'Abbott Healthcare Private Limited', 'Lingretin 5 Tablet', 'Is Lingretin 5 Tablet safe to be taken for a long time?', 'Yes, it is safe to take Lingretin 5 Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(17017, 'Lingretin 5 Tablet', 'Abbott Healthcare Private Limited', 'Lingretin 5 Tablet', 'For how long I have to take Lingretin 5 Tablet? Can I stop the medication?', 'You should keep taking Lingretin 5 Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(17018, 'Lingretin M 1000mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 1000mg/2.5mg Tablet', 'Can the use of Lingretin M 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lingretin M 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lingretin M 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(17019, 'Lingretin M 1000mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 1000mg/2.5mg Tablet', 'What are the possible side effects of Lingretin M 1000mg/2.5mg Tablet?', 'The use of Lingretin M 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(17020, 'Lingretin M 1000mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Lingretin M 1000mg/2.5mg Tablet should not be taken?', 'The use of Lingretin M 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lingretin M 1000mg/2.5mg Tablet.'),
(17021, 'Lingretin M 1000mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lingretin M 1000mg/2.5mg Tablet?', 'No, it is not safe to take Lingretin M 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(17022, 'Lingretin M 1000mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lingretin M 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17023, 'Lingretin M 1000mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 1000mg/2.5mg Tablet', 'Can the use of Lingretin M 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lingretin M 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(17024, 'Lingretin M 1000mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 1000mg/2.5mg Tablet', 'Can the use of Lingretin M 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lingretin M 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(17025, 'Lingretin M 500mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 500mg/2.5mg Tablet', 'Can the use of Lingretin M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lingretin M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lingretin M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(17026, 'Lingretin M 500mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 500mg/2.5mg Tablet', 'What are the possible side effects of Lingretin M 500mg/2.5mg Tablet?', 'The use of Lingretin M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(17027, 'Lingretin M 500mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Lingretin M 500mg/2.5mg Tablet should not be taken?', 'The use of Lingretin M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lingretin M 500mg/2.5mg Tablet.'),
(17028, 'Lingretin M 500mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lingretin M 500mg/2.5mg Tablet?', 'No, it is not safe to take Lingretin M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(17029, 'Lingretin M 500mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lingretin M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17030, 'Lingretin M 500mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 500mg/2.5mg Tablet', 'Can the use of Lingretin M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lingretin M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(17031, 'Lingretin M 500mg/2.5mg Tablet', 'Abbott Healthcare Private Limited', 'Lingretin M 500mg/2.5mg Tablet', 'Can the use of Lingretin M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lingretin M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(17032, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'How should Lini Injection injection be administered?', 'Lini Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(17033, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'What is the most important information I need to know about Lini Injection?', 'It is important to know that Lini Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lini Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(17034, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'Is Lini Injection a good painkiller?', 'Lini Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17035, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'Can Lini Injection hurt your kidneys?', 'Long-term use and high doses of Lini Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(17036, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'Does Lini Injection make you drowsy?', 'Lini Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(17037, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'Can Lini Injection be taken during pregnancy?', 'You should not take Lini Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lini Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lini Injection during the first 6 months of pregnancy also.  In some cases, Lini Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(17038, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'Does Lini Injection get you high?', 'No, Lini Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(17039, 'Lini Injection', 'Saffron Medicare Pvt Ltd', 'Lini Injection', 'Is Lini Injection a narcotic?', 'No, Lini Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(17040, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'What is Lini MR 250mg/50mg/325mg Tablet?', 'Lini MR 250mg/50mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(17041, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'Is it safe to use Lini MR 250mg/50mg/325mg Tablet?', 'Lini MR 250mg/50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(17042, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'Can I stop taking Lini MR 250mg/50mg/325mg Tablet when my pain is relieved?', 'Lini MR 250mg/50mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(17043, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'Can the use of Lini MR 250mg/50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lini MR 250mg/50mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(17044, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'Can the use of Lini MR 250mg/50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lini MR 250mg/50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(17045, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'Can the use of Lini MR 250mg/50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lini MR 250mg/50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(17046, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lini MR 250mg/50mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(17047, 'Lini MR 250mg/50mg/325mg Tablet', 'Saffron Medicare Pvt Ltd', 'Lini MR 250mg/50mg/325mg Tablet', 'What are the recommended storage conditions for Lini MR 250mg/50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17048, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'What is Lini P 50 mg/500 mg Tablet?', 'Lini P 50 mg/500 mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(17049, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Is it safe to use Lini P 50 mg/500 mg Tablet?', 'Yes, Lini P 50 mg/500 mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(17050, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Can I stop taking Lini P 50 mg/500 mg Tablet when my pain is relieved?', 'Lini P 50 mg/500 mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(17051, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Can the use of Lini P 50 mg/500 mg Tablet cause nausea and vomiting?', 'Yes, the use of Lini P 50 mg/500 mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(17052, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Can the use of Lini P 50 mg/500 mg Tablet cause dizziness?', 'Yes, the use of Lini P 50 mg/500 mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(17053, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Can the use of Lini P 50 mg/500 mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lini P 50 mg/500 mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(17054, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Are there any specific contraindications associated with the use of Lini P 50 mg/500 mg Tablet?', 'The use of Lini P 50 mg/500 mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(17055, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Can Lini P 50 mg/500 mg Tablet be taken with Vitamin B-complex?', 'Yes, Lini P 50 mg/500 mg Tablet can be taken with Vitamin B-complex preparations. While Lini P 50 mg/500 mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(17056, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'Is it safe to take a higher than the recommended dose of Lini P 50 mg/500 mg Tablet?', 'No, taking a higher than the recommended dose of Lini P 50 mg/500 mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(17057, 'Lini P 50 mg/500 mg Tablet', 'Orange Healthcare Pvt Ltd', 'Lini P 50 mg/500 mg Tablet', 'What is the recommended storage condition for Lini P 50 mg/500 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17058, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'Is Lini S Tablet a good painkiller?', 'Lini S Tablet is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(17059, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'Is Lini S Tablet safe?', 'Lini S Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(17060, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'Does Lini S Tablet get you high?', 'No, Lini S Tablet does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(17061, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'Can Lini S Tablet hurt your kidneys?', 'Long-term use and high doses of Lini S Tablet may cause renal problems, such as protein or blood in urine and pain during urination. Patients  who had or have heart failure, impaired kidney function and hypertension are at risk of kidney problems. The risk of developing kidney problems is also high in patients who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Along with that, Lini S Tablet can affect kidneys of patients who are above 65 years of age or who remain dehydrated. Therefore, kidney function monitoring is recommended for such patients.'),
(17062, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'What if I forget to take a dose of Lini S Tablet?', 'If you forget a dose of Lini S Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17063, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'Does Lini S Tablet make you drowsy?', 'Lini S Tablet can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(17064, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'What is the most important information I need to know about Lini S Tablet?', 'It is important to know that Lini S Tablet may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, the use of Lini S Tablet may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(17065, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'Can Lini S Tablet be taken during pregnancy?', 'You should not take Lini S Tablet during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lini S Tablet can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lini S Tablet during the first 6 months of pregnancy also.  In some cases, Lini S Tablet may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(17066, 'Lini S Tablet', 'Orange Healthcare Pvt Ltd', 'Lini S Tablet', 'Is Lini S Tablet effective?', 'Lini S Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lini S Tablet too early, the symptoms may return or worsen.'),
(17067, 'Linia M 10mg/120mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Linia M 10mg/120mg Tablet', 'What is Linia M 10mg/120mg Tablet ?', 'Linia M 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(17068, 'Linia M 10mg/120mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Linia M 10mg/120mg Tablet', 'Can Linia M 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Linia M 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Linia M 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(17069, 'Linia M 10mg/120mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Linia M 10mg/120mg Tablet', 'Can the use of Linia M 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Linia M 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(17070, 'Linia M 10mg/120mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Linia M 10mg/120mg Tablet', 'What should be avoided in food while taking Linia M 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Linia M 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Linia M 10mg/120mg Tablet.'),
(17071, 'Linia M 10mg/120mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Linia M 10mg/120mg Tablet', 'Will Linia M 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(17072, 'Linia M 10mg/120mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Linia M 10mg/120mg Tablet', 'What is the recommended storage condition for Linia M 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17073, 'Lini-Art Injection', 'Sarthi Life Sciences', 'Lini-Art Injection', 'Who should not use Lini-Art Injection?', 'Use of Lini-Art Injection should be avoided in patients who are allergic to Lini-Art Injection or any of its components. However, if you are not aware of any allergy or if you are using Lini-Art Injection for the first time, consult your doctor.'),
(17074, 'Lini-Art Injection', 'Sarthi Life Sciences', 'Lini-Art Injection', 'What should I tell my doctor before starting treatment with Lini-Art Injection?', 'Before starting treatment with Lini-Art Injection, inform your doctor if you have any other health condition like a kidney- or heart-related problems. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(17075, 'Lini-Art Injection', 'Sarthi Life Sciences', 'Lini-Art Injection', 'Is Lini-Art Injection safe?', 'Lini-Art Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(17076, 'Lini-Art Injection', 'Sarthi Life Sciences', 'Lini-Art Injection', 'How is Lini-Art Injection administered?', 'Lini-Art Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lini-Art Injection.'),
(17077, 'Linicef 100mg Tablet DT', 'Sarthi Life Sciences', 'Linicef 100mg Tablet DT', 'How long should I take Linicef 100mg Tablet DT?', 'Linicef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(17078, 'Linicef 100mg Tablet DT', 'Sarthi Life Sciences', 'Linicef 100mg Tablet DT', 'What if I do not get better after using Linicef 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17079, 'Linicef 100mg Tablet DT', 'Sarthi Life Sciences', 'Linicef 100mg Tablet DT', 'Can the use of Linicef 100mg Tablet DT cause diarrhea?', 'Yes, the use of Linicef 100mg Tablet DT can cause diarrhea. Linicef 100mg Tablet DT is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17080, 'Linicef 100mg Tablet DT', 'Sarthi Life Sciences', 'Linicef 100mg Tablet DT', 'Is Linicef 100mg Tablet DT effective?', 'Linicef 100mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linicef 100mg Tablet DT too early, the symptoms may return or worsen.'),
(17081, 'Linicef 100mg Tablet DT', 'Sarthi Life Sciences', 'Linicef 100mg Tablet DT', 'What if I forget to take a dose of Linicef 100mg Tablet DT?', 'If you forget a dose of Linicef 100mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17082, 'Linicef 100mg Tablet DT', 'Sarthi Life Sciences', 'Linicef 100mg Tablet DT', 'Is Linicef 100mg Tablet DT safe for the kidneys?', 'Yes, Linicef 100mg Tablet DT is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(17083, 'Linicef 100mg Tablet DT', 'Sarthi Life Sciences', 'Linicef 100mg Tablet DT', 'How long should I take Linicef 100mg Tablet DT?', 'Linicef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(17084, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'How to take Linicef CV 200mg/125mg Tablet?', 'Take this medication by mouth, with or without food as directed by your doctor, usually once a day. If you are consuming chewable tablets, chew thoroughly and then swallow. Complete the full course of this medicine, even if symptoms disappear after a few days.'),
(17085, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'Is the use of Linicef CV 200mg/125mg Tablet contraindicated in patients with impaired renal function?', 'Linicef CV 200mg/125mg Tablet should be used with particular care in patients with severely impaired renal function. Dose modification is advised for patients with moderate or severe renal impairment.'),
(17086, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'What are the precautions that need to be taken while taking Linicef CV 200mg/125mg Tablet?', 'The dose of Linicef CV 200mg/125mg Tablet should be adjusted in patients with impairment of kidneys and for those who have gastrointestinal disease or colitis.'),
(17087, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'What are the serious side effects associated with the use of Linicef CV 200mg/125mg Tablet?', 'The use of Linicef CV 200mg/125mg Tablet can also lead to serious side effects like severe stomach/abdominal pain, persistent nausea/vomiting, unusual tiredness, new signs of infection (e.g., persistent sore throat, fever), yellowing of eyes/skin, dark urine, easy bruising/bleeding, signs of kidney problems (such as change in the amount of urine) and mental/mood changes (such as confusion).'),
(17088, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'What all should I tell my doctor before starting the course of this medicine?', 'Please inform your doctor if you are pregnant or trying for a baby or breastfeeding before you start taking this medicine. Let your doctor know if you are using any other medicine.'),
(17089, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'Can the use of Linicef CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linicef CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17090, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'How long does Linicef CV 200mg/125mg Tablet takes to work?', 'Usually, Linicef CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17091, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'What if I don\'t get better after using Linicef CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17092, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'Can I stop taking Linicef CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Linicef CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17093, 'Linicef CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linicef CV 200mg/125mg Tablet', 'What are the instructions for storage and disposal of Linicef CV 200mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17094, 'Linicef Dry Syrup', 'Sarthi Life Sciences', 'Linicef Dry Syrup', 'How long should I take Linicef Dry Syrup?', 'Linicef Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(17095, 'Linicef Dry Syrup', 'Sarthi Life Sciences', 'Linicef Dry Syrup', 'What if I do not get better after using Linicef Dry Syrup?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17096, 'Linicef Dry Syrup', 'Sarthi Life Sciences', 'Linicef Dry Syrup', 'Can the use of Linicef Dry Syrup cause diarrhea?', 'Yes, the use of Linicef Dry Syrup can cause diarrhea. Linicef Dry Syrup is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17097, 'Linicef Dry Syrup', 'Sarthi Life Sciences', 'Linicef Dry Syrup', 'Is Linicef Dry Syrup effective?', 'Linicef Dry Syrup is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linicef Dry Syrup too early, the symptoms may return or worsen.'),
(17098, 'Linicef Dry Syrup', 'Sarthi Life Sciences', 'Linicef Dry Syrup', 'What if I forget to take a dose of Linicef Dry Syrup?', 'If you forget a dose of Linicef Dry Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17099, 'Linicef Dry Syrup', 'Sarthi Life Sciences', 'Linicef Dry Syrup', 'Is Linicef Dry Syrup safe for the kidneys?', 'Yes, Linicef Dry Syrup is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(17100, 'Linicef Dry Syrup', 'Sarthi Life Sciences', 'Linicef Dry Syrup', 'How long should I take Linicef Dry Syrup?', 'Linicef Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(17101, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'Can I stop taking Linicef O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Linicef O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17102, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Linicef O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(17103, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'Can the use of Linicef O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Linicef O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17104, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'What if I don\'t get better after using Linicef O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17105, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'Does the use of Linicef O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Linicef O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(17106, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(17107, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'Can I drive while I am taking Linicef O 200mg/200mg Tablet?', 'No, taking Linicef O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(17108, 'Linicef O 200mg/200mg Tablet', 'Sarthi Life Sciences', 'Linicef O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Linicef O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17109, 'Linicef OZ 200mg/500mg Tablet', 'Sarthi Life Sciences', 'Linicef OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Linicef OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(17110, 'Liniceft 1000mg Injection', 'Sarthi Life Sciences', 'Liniceft 1000mg Injection', 'What organisms does Liniceft 1000mg Injection cover?', 'Liniceft 1000mg Injection is active against pseudomonas, anaerobes, and staphylococcus bacteria. It may not be effective against methicillin- resistant Staphylococcus aureus (MRSA).'),
(17111, 'Liniceft 1000mg Injection', 'Sarthi Life Sciences', 'Liniceft 1000mg Injection', 'How is Liniceft 1000mg Injection administered?', 'Liniceft 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Liniceft 1000mg Injection.'),
(17112, 'Liniceft 1000mg Injection', 'Sarthi Life Sciences', 'Liniceft 1000mg Injection', 'Can the use of Liniceft 1000mg Injection cause diarrhea?', 'Yes, the use of Liniceft 1000mg Injection can cause diarrhea. Liniceft 1000mg Injection is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17113, 'Liniceft 1000mg Injection', 'Sarthi Life Sciences', 'Liniceft 1000mg Injection', 'How long does Liniceft 1000mg Injection take to work?', 'Usually, Liniceft 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(17114, 'Liniceft 1000mg Injection', 'Sarthi Life Sciences', 'Liniceft 1000mg Injection', 'What if I do not get better after using Liniceft 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17115, 'Liniceft 1000mg Injection', 'Sarthi Life Sciences', 'Liniceft 1000mg Injection', 'Is Liniceft 1000mg Injection effective?', 'Liniceft 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Liniceft 1000mg Injection too early, the symptoms may return or worsen.'),
(17116, 'Liniceft SB 1000mg/500mg Injection', 'Sarthi Life Sciences', 'Liniceft SB 1000mg/500mg Injection', 'How long does Liniceft SB 1000mg/500mg Injection takes to work?', 'Usually, Liniceft SB 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17117, 'Liniceft SB 1000mg/500mg Injection', 'Sarthi Life Sciences', 'Liniceft SB 1000mg/500mg Injection', 'What if I don\'t get better after using Liniceft SB 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17118, 'Liniceft-TZ Injection', 'Sarthi Life Sciences', 'Liniceft-TZ Injection', 'Can the use of Liniceft-TZ Injection cause diarrhea?', 'Yes, the use of Liniceft-TZ Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17119, 'Liniceft-TZ Injection', 'Sarthi Life Sciences', 'Liniceft-TZ Injection', 'How long does Liniceft-TZ Injection takes to work?', 'Usually, Liniceft-TZ Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17120, 'Liniceft-TZ Injection', 'Sarthi Life Sciences', 'Liniceft-TZ Injection', 'What if I don\'t get better after using Liniceft-TZ Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17121, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'What is Liniclav 250mg/125mg Tablet?', 'Liniclav 250mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(17122, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Is it safe to use Liniclav 250mg/125mg Tablet?', 'Liniclav 250mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(17123, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Are there any specific cautions associated with the use of Liniclav 250mg/125mg Tablet?', 'The use of Liniclav 250mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(17124, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Can the use of Liniclav 250mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Liniclav 250mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Liniclav 250mg/125mg Tablet.'),
(17125, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Can I take a higher than the recommended dose of Liniclav 250mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Liniclav 250mg/125mg Tablet can increase the risks of side effects. Liniclav 250mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(17126, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'What are the instructions for the storage and disposal of Liniclav 250mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17127, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Can I stop taking Liniclav 250mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Liniclav 250mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(17128, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Can Liniclav 250mg/125mg Tablet cause an allergic reaction?', 'Yes, Liniclav 250mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(17129, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Can the use of Liniclav 250mg/125mg Tablet cause diarrhea?', 'Yes, the use of Liniclav 250mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(17130, 'Liniclav 250mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav 250mg/125mg Tablet', 'Can I take Liniclav 250mg/125mg Tablet to treat cold and flu?', 'No, Liniclav 250mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(17131, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Can other medicines be given at the same time as Liniclav Dry Syrup?', 'Liniclav Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Liniclav Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17132, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Can I get my child vaccinated while on treatment with Liniclav Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17133, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Which lab tests may my child undergo while taking Liniclav Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(17134, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Can I give a higher than the recommended dose of Liniclav Dry Syrup to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(17135, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Can I stop giving Liniclav Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(17136, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Can the use of Liniclav Dry Syrup cause diarrhea?', 'Yes, Liniclav Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(17137, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(17138, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(17139, 'Liniclav Dry Syrup', 'Sarthi Life Sciences', 'Liniclav Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(17140, 'Liniclav LB 500mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav LB 500mg/125mg Tablet', 'What are the contraindications associated with the use of Liniclav LB 500mg/125mg Tablet?', 'Liniclav LB 500mg/125mg Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(17141, 'Liniclav LB 500mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav LB 500mg/125mg Tablet', 'Which is the best time to take Liniclav LB 500mg/125mg Tablet?', 'Liniclav LB 500mg/125mg Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(17142, 'Liniclav LB 500mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav LB 500mg/125mg Tablet', 'Can I stop Liniclav LB 500mg/125mg Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(17143, 'Liniclav LB 500mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav LB 500mg/125mg Tablet', 'Can I take Liniclav LB 500mg/125mg Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(17144, 'Liniclav LB 500mg/125mg Tablet', 'Sarthi Life Sciences', 'Liniclav LB 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Liniclav LB 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17145, 'Linicort 30mg Tablet', 'Sarthi Life Sciences', 'Linicort 30mg Tablet', 'Is Linicort 30mg Tablet a steroid?', 'Yes, Linicort 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Linicort 30mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(17146, 'Linicort 30mg Tablet', 'Sarthi Life Sciences', 'Linicort 30mg Tablet', 'What is Linicort 30mg Tablet used for?', 'Linicort 30mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(17147, 'Linicort 30mg Tablet', 'Sarthi Life Sciences', 'Linicort 30mg Tablet', 'How does Linicort 30mg Tablet work?', 'Linicort 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(17148, 'Linicort 30mg Tablet', 'Sarthi Life Sciences', 'Linicort 30mg Tablet', 'Is Linicort 30mg Tablet better than Prednisone?', 'Clinical studies have shown that Linicort 30mg Tablet has a similar effect as that of prednisone. Moreover, Linicort 30mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(17149, 'Linicort 30mg Tablet', 'Sarthi Life Sciences', 'Linicort 30mg Tablet', 'Is Linicort 30mg Tablet a painkiller?', 'No, Linicort 30mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(17150, 'Linicort 30mg Tablet', 'Sarthi Life Sciences', 'Linicort 30mg Tablet', 'Can I take Linicort 30mg Tablet with Tamsulosin?', 'Yes, Linicort 30mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17151, 'Linicort 6mg Tablet', 'Sarthi Life Sciences', 'Linicort 6mg Tablet', 'Is Linicort 6mg Tablet a steroid?', 'Yes, Linicort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Linicort 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(17152, 'Linicort 6mg Tablet', 'Sarthi Life Sciences', 'Linicort 6mg Tablet', 'What is Linicort 6mg Tablet used for?', 'Linicort 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(17153, 'Linicort 6mg Tablet', 'Sarthi Life Sciences', 'Linicort 6mg Tablet', 'How does Linicort 6mg Tablet work?', 'Linicort 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(17154, 'Linicort 6mg Tablet', 'Sarthi Life Sciences', 'Linicort 6mg Tablet', 'Is Linicort 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Linicort 6mg Tablet has a similar effect as that of prednisone. Moreover, Linicort 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(17155, 'Linicort 6mg Tablet', 'Sarthi Life Sciences', 'Linicort 6mg Tablet', 'Is Linicort 6mg Tablet a painkiller?', 'No, Linicort 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(17156, 'Linicort 6mg Tablet', 'Sarthi Life Sciences', 'Linicort 6mg Tablet', 'Can I take Linicort 6mg Tablet with Tamsulosin?', 'Yes, Linicort 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(17157, 'Linid IV 600mg Infusion', 'Zydus Cadila', 'Linid IV 600mg Infusion', 'Can the use of Linid IV 600mg Infusion cause diarrhea?', 'Yes, the use of Linid IV 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17158, 'Linid IV 600mg Infusion', 'Zydus Cadila', 'Linid IV 600mg Infusion', 'What foods should I avoid while taking Linid IV 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linid IV 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17159, 'Linid Tablet', 'Zydus Cadila', 'Linid Tablet', 'Q. Can the use of Linid Tablet cause diarrhea?', 'Yes, the use of Linid Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17160, 'Linid Tablet', 'Zydus Cadila', 'Linid Tablet', 'Q. What foods should I avoid while taking Linid Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linid Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17161, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'Is Linidox 100mg Tablet safe to use?', 'Linidox 100mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(17162, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'Can the use of Linidox 100mg Tablet cause diarrhea?', 'Yes, the use of Linidox 100mg Tablet can cause diarrhea. Linidox 100mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17163, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'Is Linidox 100mg Tablet an antibiotic?', 'Yes, Linidox 100mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(17164, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'Can Linidox 100mg Tablet cause constipation?', 'Yes, Linidox 100mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(17165, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'Can I stop taking Linidox 100mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Linidox 100mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(17166, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'How long does Linidox 100mg Tablet take to work?', 'Usually, Linidox 100mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(17167, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'What if I do not get better after using Linidox 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17168, 'Linidox 100mg Tablet', 'Sarthi Life Sciences', 'Linidox 100mg Tablet', 'Can Linidox 100mg Tablet treat UTI?', 'Yes, Linidox 100mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Linidox 100mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(17169, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'Is Linidox 200mg Tablet safe to use?', 'Linidox 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(17170, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'Can the use of Linidox 200mg Tablet cause diarrhea?', 'Yes, the use of Linidox 200mg Tablet can cause diarrhea. Linidox 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17171, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'Is Linidox 200mg Tablet an antibiotic?', 'Yes, Linidox 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(17172, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'Can Linidox 200mg Tablet cause constipation?', 'Yes, Linidox 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(17173, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'Can I stop taking Linidox 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Linidox 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(17174, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'How long does Linidox 200mg Tablet take to work?', 'Usually, Linidox 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(17175, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'What if I do not get better after using Linidox 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17176, 'Linidox 200mg Tablet', 'Sarthi Life Sciences', 'Linidox 200mg Tablet', 'Can Linidox 200mg Tablet treat UTI?', 'Yes, Linidox 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Linidox 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(17177, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'What if I give too much of Linidox 50mg Dry Syrup by mistake?', 'An extra dose of Linidox 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Linidox 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(17178, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'Are there any possible serious side effects of Linidox 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(17179, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'Can other medicines be given at the same time as Linidox 50mg Dry Syrup?', 'Linidox 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linidox 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17180, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linidox 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17181, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Linidox 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(17182, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(17183, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(17184, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(17185, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'Can Linidox 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Linidox 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Linidox 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(17186, 'Linidox 50mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox 50mg Dry Syrup', 'Can Linidox 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Linidox 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(17187, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. Can the use of Linidox CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linidox CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17188, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. How long does Linidox CV 200mg/125mg Tablet takes to work?', 'Usually, Linidox CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17189, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. What if I don\'t get better after using Linidox CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17190, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. Can I stop taking Linidox CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Linidox CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17191, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. What is Linidox CV 200mg/125mg Tablet?', 'Linidox CV 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(17192, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. Can the use of Linidox CV 200mg/125mg Tablet cause any serious side effects?', 'Linidox CV 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(17193, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. Can I stop taking Linidox CV 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Linidox CV 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17194, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. Can Linidox CV 200mg/125mg Tablet cause allergic reaction?', 'Yes, Linidox CV 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(17195, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. Are there any specific contraindications associated with the use of Linidox CV 200mg/125mg Tablet?', 'The use of Linidox CV 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Linidox CV 200mg/125mg Tablet.'),
(17196, 'Linidox CV 200mg/125mg Tablet', 'Sarthi Life Sciences', 'Linidox CV 200mg/125mg Tablet', 'Q. Can I take oral contraceptive pills while taking Linidox CV 200mg/125mg Tablet?', 'No, Linidox CV 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(17197, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'Can the use of Linidox CV Dry Syrup cause diarrhea?', 'Yes, the use of Linidox CV Dry Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17198, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'How long does Linidox CV Dry Syrup takes to work?', 'Usually, Linidox CV Dry Syrup starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17199, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'What if I don\'t get better after using Linidox CV Dry Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17200, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'Can I stop taking Linidox CV Dry Syrup when I feel better?', 'No, do not stop taking Linidox CV Dry Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17201, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'What is Linidox CV Dry Syrup?', 'Linidox CV Dry Syrup is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(17202, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'Can the use of Linidox CV Dry Syrup cause any serious side effects?', 'Linidox CV Dry Syrup may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(17203, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'Can I stop taking Linidox CV Dry Syrup when my symptoms are relieved?', 'No, do not stop taking Linidox CV Dry Syrup and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17204, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'Can Linidox CV Dry Syrup cause allergic reaction?', 'Yes, Linidox CV Dry Syrup can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(17205, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'Are there any specific contraindications associated with the use of Linidox CV Dry Syrup?', 'The use of Linidox CV Dry Syrup is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Linidox CV Dry Syrup.'),
(17206, 'Linidox CV Dry Syrup', 'Sarthi Life Sciences', 'Linidox CV Dry Syrup', 'Can I take oral contraceptive pills while taking Linidox CV Dry Syrup?', 'No, Linidox CV Dry Syrup can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(17207, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'What if I give too much of Linidox DS 100mg Dry Syrup by mistake?', 'An extra dose of Linidox DS 100mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Linidox DS 100mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(17208, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'Are there any possible serious side effects of Linidox DS 100mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(17209, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'Can other medicines be given at the same time as Linidox DS 100mg Dry Syrup?', 'Linidox DS 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linidox DS 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17210, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linidox DS 100mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17211, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'Which lab tests may my child undergo while taking Linidox DS 100mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(17212, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(17213, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(17214, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(17215, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'Can Linidox DS 100mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Linidox DS 100mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Linidox DS 100mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(17216, 'Linidox DS 100mg Dry Syrup', 'Sarthi Life Sciences', 'Linidox DS 100mg Dry Syrup', 'Can Linidox DS 100mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Linidox DS 100mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(17217, 'Linifex 100 Tablet DT', 'Santo Formulations', 'Linifex 100 Tablet DT', 'What if I miss my dose?', 'Take Linifex 100 Tablet DT as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(17218, 'Linifex 100 Tablet DT', 'Santo Formulations', 'Linifex 100 Tablet DT', 'How long does Linifex 100 Tablet DT take to work?', 'Usually, Linifex 100 Tablet DT starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17219, 'Linifex 100 Tablet DT', 'Santo Formulations', 'Linifex 100 Tablet DT', 'What if I don\'t get better after using Linifex 100 Tablet DT?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17220, 'Linifex 100 Tablet DT', 'Santo Formulations', 'Linifex 100 Tablet DT', 'Can I stop taking Linifex 100 Tablet DT when I feel better?', 'No, do not stop taking Linifex 100 Tablet DT and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17221, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'What is Linifex 120mg Tablet used for?', 'Linifex 120mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(17222, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'What should I tell my doctor before starting treatment with Linifex 120mg Tablet?', 'Before starting treatment with Linifex 120mg Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(17223, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'What if I forget to take a dose of Linifex 120mg Tablet?', 'If you forget a dose of Linifex 120mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17224, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'Who should not take Linifex 120mg Tablet?', 'Linifex 120mg Tablet should not be given to patients with known allergy to any other ingredients of this medicine. Signs of an allergic reaction may include an itchy skin rash, shortness of breath, and swelling of the face or tongue.'),
(17225, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'Can I stop taking Linifex 120mg Tablet if I feel better?', 'No. You should not stop taking Linifex 120mg Tablet even if you feel better unless your doctor tells you to stop taking it. This is because, stopping the medicine suddenly, without completing your full course of treatment may cause the returning of your symptoms and it can even worsen your condition. Consult your doctor if you are not sure.'),
(17226, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'Is Linifex 120mg Tablet an antibiotic?', 'No. Linifex 120mg Tablet is not an antibiotic. It is an anti-allergy medicine and helps to treat allergic conditions such as sneezing, stuffy or runny nose, hives, etc. On the other hand, antibiotics are used to treat infections caused by bacteria.'),
(17227, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'Can Linifex 120mg Tablet cause dizziness?', 'Yes, Linifex 120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for some time and resume once you feel better.'),
(17228, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'What is Linifex 120mg Tablet used for?', 'Linifex 120mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(17229, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'What should I tell my doctor before starting treatment with Linifex 120mg Tablet?', 'Before starting treatment with Linifex 120mg Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(17230, 'Linifex 120mg Tablet', 'Sarthi Life Sciences', 'Linifex 120mg Tablet', 'What if I forget to take a dose of Linifex 120mg Tablet?', 'If you forget a dose of Linifex 120mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17231, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'What is Linifex 180 Tablet used for?', 'Linifex 180 Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(17232, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'Can other medicines be given at the same time as Linifex 180 Tablet?', 'Linifex 180 Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linifex 180 Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(17233, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'Can I take Linifex 180 Tablet along with juices?', 'Avoid taking Linifex 180 Tablet with fatty meals and fruit juices as both can reduce the absorption of the medicine from the gut. If you need to take it, ensure a gap of at least 4 hours to decrease any possible medicine-food interaction.'),
(17234, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'How much Linifex 180 Tablet should I take?', 'Linifex 180 Tablet should be taken strictly as prescribed by your doctor. The dose of the medicine is calculated according to your body\'s weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your condition.'),
(17235, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'How should Linifex 180 Tablet be stored?', 'Keep Linifex 180 Tablet at room temperature, in a dry place, away from direct heat and light. Always keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(17236, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'Who should not take Linifex 180 Tablet?', 'Linifex 180 Tablet should not be given to patients with known allergies to any ingredients of this medicine. Signs of an allergic reaction may include an itchy skin rash, shortness of breath, and swelling of the face or tongue'),
(17237, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'What is Linifex 180 Tablet used for?', 'Linifex 180 Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(17238, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'What should I tell my doctor before starting treatment with Linifex 180 Tablet?', 'Before starting treatment with Linifex 180 Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(17239, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'What if I forget to take a dose of Linifex 180 Tablet?', 'If you forget a dose of Linifex 180 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17240, 'Linifex 180 Tablet', 'Sarthi Life Sciences', 'Linifex 180 Tablet', 'Can I stop taking Linifex 180 Tablet if I feel better?', 'No. You should not stop taking Linifex 180 Tablet even if you feel better unless your doctor tells you to stop taking it. This is because, stopping the medicine suddenly, without completing your full course of treatment may cause the returning of your symptoms and it can even worsen your condition. Consult your doctor if you are not sure.'),
(17241, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'What if I give too much of Linifex Dry Syrup by mistake?', 'An extra dose of Linifex Dry Syrup is unlikely to do harm. However, if you think you have given too much of Linifex Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(17242, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'Are there any possible serious side effects of Linifex Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(17243, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'Can other medicines be given at the same time as Linifex Dry Syrup?', 'Linifex Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linifex Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17244, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'Can I get my child vaccinated while on treatment with Linifex Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17245, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'Which lab tests may my child undergo while taking Linifex Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(17246, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(17247, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(17248, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'Can Linifex Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Linifex Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Linifex Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(17249, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'Can Linifex Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Linifex Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(17250, 'Linifex Dry Syrup', 'Santo Formulations', 'Linifex Dry Syrup', 'How long should I take Linifex Dry Syrup?', 'Linifex Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(17251, 'Linifex M 10mg/120mg Tablet', 'Sarthi Life Sciences', 'Linifex M 10mg/120mg Tablet', 'What is Linifex M 10mg/120mg Tablet ?', 'Linifex M 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(17252, 'Linifex M 10mg/120mg Tablet', 'Sarthi Life Sciences', 'Linifex M 10mg/120mg Tablet', 'Can Linifex M 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Linifex M 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Linifex M 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(17253, 'Linifex M 10mg/120mg Tablet', 'Sarthi Life Sciences', 'Linifex M 10mg/120mg Tablet', 'Can the use of Linifex M 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Linifex M 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(17254, 'Linifex M 10mg/120mg Tablet', 'Sarthi Life Sciences', 'Linifex M 10mg/120mg Tablet', 'What should be avoided in food while taking Linifex M 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Linifex M 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Linifex M 10mg/120mg Tablet.'),
(17255, 'Linifex M 10mg/120mg Tablet', 'Sarthi Life Sciences', 'Linifex M 10mg/120mg Tablet', 'Will Linifex M 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(17256, 'Linifex M 10mg/120mg Tablet', 'Sarthi Life Sciences', 'Linifex M 10mg/120mg Tablet', 'What is the recommended storage condition for Linifex M 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17257, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'What is Linigab NT 75mg/10mg Tablet?', 'Linigab NT 75mg/10mg Tablet is a combination of two medicines: Pregabalin and Nortriptyline. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain. Thereby, decreasing the pain sensation.'),
(17258, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'Can I stop taking Linigab NT 75mg/10mg Tablet when my pain is relieved?', 'No, you should not stop taking Linigab NT 75mg/10mg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Linigab NT 75mg/10mg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.'),
(17259, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'How to manage weight gain associated with the use of Linigab NT 75mg/10mg Tablet?', 'Linigab NT 75mg/10mg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight.. However, preventing weight gain is easier than losing increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). DO not eat foods that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(17260, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'Can the use of Linigab NT 75mg/10mg Tablet cause sleepiness or drowsiness?', 'Yes, Linigab NT 75mg/10mg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(17261, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'Can the use of Linigab NT 75mg/10mg Tablet affect my sexual life?', 'The use of Linigab NT 75mg/10mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Linigab NT 75mg/10mg Tablet.'),
(17262, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'Are there any serious side effects associated with the use of Linigab NT 75mg/10mg Tablet?', 'Serious side effects because of Linigab NT 75mg/10mg Tablet are uncommon and rare. Consult your doctor if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(17263, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'How long will the Linigab NT 75mg/10mg Tablet take to act?', 'An initial benefit with Linigab NT 75mg/10mg Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months to see full benefit. It may even take longer in some patients.'),
(17264, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'What if I forget to take Linigab NT 75mg/10mg Tablet?', 'If you forget to take the scheduled dose of Linigab NT 75mg/10mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(17265, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Symptoms of an overdose may include drowsiness, weakness, unsteadiness while walking, having double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(17266, 'Linigab NT 75mg/10mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Linigab NT 75mg/10mg Tablet', 'Will Linigab NT 75mg/10mg Tablet be more effective if a higher than the recommended dosage is taken?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17267, 'Linigem Injection', 'Sarthi Life Sciences', 'Linigem Injection', 'What is Linigem Injection used for?', 'Linigem Injection is an antiemetic medicine used to treat and prevent nausea or vomiting caused after any surgical procedure or due to certain medicines, stomach upset, or cancer treatment. It also prevents nausea due to motion sickness to some extent.'),
(17268, 'Linigem Injection', 'Sarthi Life Sciences', 'Linigem Injection', 'What are the side effects of Linigem Injection?', 'The most common side effects of Linigem Injection are sleepiness, weakness, headache, constipation and diarrhea. However, these are not usually bothersome and resolve in some time on their own. Consult your doctor, if the symptoms worry you or persist for a longer duration. Your doctor will suggest ways to cope up with these side effects and to prevent them in future.'),
(17269, 'Linigem Injection', 'Sarthi Life Sciences', 'Linigem Injection', 'Is Linigem Injection safe to be used in pregnant women?', 'Linigem Injection did not show any adverse effects in research studies done on animals. However, since the safety and efficiency of Linigem Injection in pregnant women is unknown. It is not recommended to be used in women who are pregnant women or if you are planning to conceive unless prescribed by your doctor.'),
(17270, 'Linigem Injection', 'Sarthi Life Sciences', 'Linigem Injection', 'Is Linigem Injection better than Ondansetron?', 'Linigem Injection and Ondansetron belong to the same class of medicines, that is serotonin 5-HT3 receptor antagonists. Both these medicines help prevent nausea and vomiting effectively. However, some studies suggest that Linigem Injection is more effective than Ondansetron. According to some reports, Linigem Injection is comparatively well tolerated, quicker in action and alleviates nausea and vomiting relatively faster.'),
(17271, 'Linigem Injection', 'Sarthi Life Sciences', 'Linigem Injection', 'Does Linigem Injection cause constipation?', 'Yes, Linigem Injection may cause constipation as one of the common side effects. However, this is usually not bothersome. Taking a fiber-rich diet can enhance your digestion and avoid constipation. You may also consider taking laxatives for relief and drink plenty of water too. Avoid drinking alcohol as it may worsen your constipation. If you still face issues, please consult your doctor to know about ways to treat it.'),
(17272, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'What is Linim P 100mg/325mg Tablet?', 'Linim P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(17273, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'Can I stop taking Linim P 100mg/325mg Tablet when my pain is relieved?', 'Linim P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(17274, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'Can the use of Linim P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Linim P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(17275, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Linim P 100mg/325mg Tablet?', 'The use of Linim P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(17276, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'Can I take Linim P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Linim P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Linim P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(17277, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'Does Linim P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Linim P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(17278, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'Can the use of Linim P 100mg/325mg Tablet cause damage to the liver?', 'Linim P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(17279, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Linim P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Linim P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(17280, 'Linim P 100mg/325mg Tablet', 'Allien Pharmaceuticals', 'Linim P 100mg/325mg Tablet', 'What are the recommended storage conditions for Linim P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17281, 'Linim S 100mg/325mg/15mg Tablet', 'Allien Pharmaceuticals', 'Linim S 100mg/325mg/15mg Tablet', 'Can I stop taking Linim S 100mg/325mg/15mg Tablet when my pain is relieved?', 'Linim S 100mg/325mg/15mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if advised by the doctor.'),
(17282, 'Linim S 100mg/325mg/15mg Tablet', 'Allien Pharmaceuticals', 'Linim S 100mg/325mg/15mg Tablet', 'Can the use of Linim S 100mg/325mg/15mg Tablet cause damage to the liver?', 'Linim S 100mg/325mg/15mg Tablet contains nimesulide and paracetamol, and both these medicines are known to cause harm to the liver especially in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease.'),
(17283, 'Linim S 100mg/325mg/15mg Tablet', 'Allien Pharmaceuticals', 'Linim S 100mg/325mg/15mg Tablet', 'Can I take a higher than the recommended dose of Linim S 100mg/325mg/15mg Tablet?', 'No, taking a higher than the recommended dose of Linim S 100mg/325mg/15mg Tablet can lead to increased chances of side effects. If the recommended dosage does not relieve your symptoms or you experience increased severity of pain, please consult your doctor for re-evaluation.'),
(17284, 'Linim S 100mg/325mg/15mg Tablet', 'Allien Pharmaceuticals', 'Linim S 100mg/325mg/15mg Tablet', 'What are the instructions for the storage and disposal of Linim S 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17285, 'Linion 600mg Tablet', 'Aeon Pharma Pvt Ltd', 'Linion 600mg Tablet', 'Can the use of Linion 600mg Tablet cause diarrhea?', 'Yes, the use of Linion 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17286, 'Linion 600mg Tablet', 'Aeon Pharma Pvt Ltd', 'Linion 600mg Tablet', 'What foods should I avoid while taking Linion 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linion 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17287, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'What is Linipan 40mg Tablet used for?', 'Linipan 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Linipan 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(17288, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'How long does it take for Linipan 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Linipan 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(17289, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'Is a single dose of Linipan 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Linipan 40mg Tablet you may get relief with the symptoms. Linipan 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Linipan 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Linipan 40mg Tablet regularly for 2 weeks as prescribed.'),
(17290, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'Is Linipan 40mg Tablet safe?', 'Yes, Linipan 40mg Tablet is relatively safe. Most of the people who take Linipan 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(17291, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'Can I take Linipan 40mg Tablet for a long term?', 'Linipan 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Linipan 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Linipan 40mg Tablet as advised by your doctor and under their supervision.'),
(17292, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'What are the long term side effects of Linipan 40mg Tablet?', 'If Linipan 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(17293, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'What is the best time to take Linipan 40mg Tablet?', 'Usually, Linipan 40mg Tablet is taken once a day, first thing in the morning. If you take Linipan 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(17294, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'Can I stop taking Linipan 40mg Tablet if I feel better?', 'If you have been taking Linipan 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Linipan 40mg Tablet.'),
(17295, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'Does Linipan 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Linipan 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(17296, 'Linipan 40mg Tablet', 'Sarthi Life Sciences', 'Linipan 40mg Tablet', 'Can I take alcohol with Linipan 40mg Tablet?', 'No, alcohol intake is not advised with Linipan 40mg Tablet. Alcohol itself does not affect the working of Linipan 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(17297, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'What is Linipan D 10mg/40mg Tablet?', 'Linipan D 10mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(17298, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'Is it safe to use Linipan D 10mg/40mg Tablet?', 'Linipan D 10mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(17299, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Linipan D 10mg/40mg Tablet?', 'The use of Linipan D 10mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(17300, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'Can the use of Linipan D 10mg/40mg Tablet cause dry mouth?', 'Yes, the use of Linipan D 10mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(17301, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'Can the use of Linipan D 10mg/40mg Tablet cause diarrhea?', 'Yes, the use of Linipan D 10mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(17302, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'What are the instructions for storage and disposal of Linipan D 10mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17303, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'What is Linipan D 10mg/40mg Tablet price?', 'You can get Linipan D 10mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(17304, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'While taking Linipan D 10mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(17305, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'Can I take alcohol while taking Linipan D 10mg/40mg Tablet?', 'No, alcohol intake is not advised with Linipan D 10mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(17306, 'Linipan D 10mg/40mg Tablet', 'Sarthi Life Sciences', 'Linipan D 10mg/40mg Tablet', 'Can I stop taking Linipan D 10mg/40mg Tablet if I feel better?', 'If you have been taking Linipan D 10mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(17307, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'What is Linipan D 30mg/40mg Capsule SR?', 'Linipan D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(17308, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'Is it safe to use Linipan D 30mg/40mg Capsule SR?', 'Linipan D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(17309, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'Are there any specific contraindications associated with the use of Linipan D 30mg/40mg Capsule SR?', 'The use of Linipan D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(17310, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'Can the use of Linipan D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Linipan D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(17311, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'Can the use of Linipan D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Linipan D 30mg/40mg Capsule SR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(17312, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Linipan D 30mg/40mg Capsule SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17313, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'What is Linipan D 30mg/40mg Capsule SR price?', 'You can get Linipan D 30mg/40mg Capsule SR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(17314, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'While taking Linipan D 30mg/40mg Capsule SR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(17315, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'Can I take alcohol while taking Linipan D 30mg/40mg Capsule SR?', 'No, alcohol intake is not advised with Linipan D 30mg/40mg Capsule SR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(17316, 'Linipan D 30mg/40mg Capsule SR', 'Sarthi Life Sciences', 'Linipan D 30mg/40mg Capsule SR', 'Can I stop taking Linipan D 30mg/40mg Capsule SR if I feel better?', 'If you have been taking Linipan D 30mg/40mg Capsule SR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(17317, 'Linipred 125 Injection', 'Sarthi Life Sciences', 'Linipred 125 Injection', 'How does Linipred 125 Injection work?', 'Linipred 125 Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(17318, 'Linipred 125 Injection', 'Sarthi Life Sciences', 'Linipred 125 Injection', 'Is Linipred 125 Injection a steroid?', 'Yes, Linipred 125 Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Linipred 125 Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(17319, 'Linipred 125 Injection', 'Sarthi Life Sciences', 'Linipred 125 Injection', 'What is Linipred 125 Injection used for?', 'Linipred 125 Injection has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(17320, 'Linipred 125 Injection', 'Sarthi Life Sciences', 'Linipred 125 Injection', 'How is Linipred 125 Injection administered?', 'Linipred 125 Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). The doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Linipred 125 Injection.'),
(17321, 'Linipred 125 Injection', 'Sarthi Life Sciences', 'Linipred 125 Injection', 'Is Linipred 125 Injection better than Prednisone?', 'Clinical studies have shown that Linipred 125 Injection is more strong and efficient than Prednisone. It stays in our body for a longer duration and is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(17322, 'Linipred 125 Injection', 'Sarthi Life Sciences', 'Linipred 125 Injection', 'Does Linipred 125 Injection cause weight gain?', 'Linipred 125 Injection can cause weight gain especially when high doses taken for a long time or repeated short courses are taken. Please consult your doctor if you experience weight gain after taking Linipred 125 Injection.'),
(17323, 'Linipred 16mg Tablet', 'Sarthi Life Sciences', 'Linipred 16mg Tablet', 'What is Linipred 16mg Tablet used for?', 'Linipred 16mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(17324, 'Linipred 16mg Tablet', 'Sarthi Life Sciences', 'Linipred 16mg Tablet', 'How does Linipred 16mg Tablet work?', 'Linipred 16mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(17325, 'Linipred 16mg Tablet', 'Sarthi Life Sciences', 'Linipred 16mg Tablet', 'Is Linipred 16mg Tablet effective?', 'Linipred 16mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linipred 16mg Tablet too early, the symptoms may return or worsen.'),
(17326, 'Linipred 16mg Tablet', 'Sarthi Life Sciences', 'Linipred 16mg Tablet', 'When will I feel better after taking Linipred 16mg Tablet?', 'Linipred 16mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Linipred 16mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Linipred 16mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(17327, 'Linipred 16mg Tablet', 'Sarthi Life Sciences', 'Linipred 16mg Tablet', 'What if I forget to take a dose of Linipred 16mg Tablet?', 'If you forget a dose of Linipred 16mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17328, 'Linipred 16mg Tablet', 'Sarthi Life Sciences', 'Linipred 16mg Tablet', 'Is Linipred 16mg Tablet safe?', 'Linipred 16mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(17329, 'Linipred 4mg Tablet', 'Sarthi Life Sciences', 'Linipred 4mg Tablet', 'What is Linipred 4mg Tablet used for?', 'Linipred 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(17330, 'Linipred 4mg Tablet', 'Sarthi Life Sciences', 'Linipred 4mg Tablet', 'How does Linipred 4mg Tablet work?', 'Linipred 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(17331, 'Linipred 4mg Tablet', 'Sarthi Life Sciences', 'Linipred 4mg Tablet', 'Is Linipred 4mg Tablet effective?', 'Linipred 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linipred 4mg Tablet too early, the symptoms may return or worsen.'),
(17332, 'Linipred 4mg Tablet', 'Sarthi Life Sciences', 'Linipred 4mg Tablet', 'When will I feel better after taking Linipred 4mg Tablet?', 'Linipred 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Linipred 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Linipred 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(17333, 'Linipred 4mg Tablet', 'Sarthi Life Sciences', 'Linipred 4mg Tablet', 'What if I forget to take a dose of Linipred 4mg Tablet?', 'If you forget a dose of Linipred 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17334, 'Linipred 4mg Tablet', 'Sarthi Life Sciences', 'Linipred 4mg Tablet', 'Is Linipred 4mg Tablet safe?', 'Linipred 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(17335, 'Linipred 8mg Tablet', 'Sarthi Life Sciences', 'Linipred 8mg Tablet', 'What is Linipred 8mg Tablet used for?', 'Linipred 8mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(17336, 'Linipred 8mg Tablet', 'Sarthi Life Sciences', 'Linipred 8mg Tablet', 'How does Linipred 8mg Tablet work?', 'Linipred 8mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(17337, 'Linipred 8mg Tablet', 'Sarthi Life Sciences', 'Linipred 8mg Tablet', 'Is Linipred 8mg Tablet effective?', 'Linipred 8mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linipred 8mg Tablet too early, the symptoms may return or worsen.'),
(17338, 'Linipred 8mg Tablet', 'Sarthi Life Sciences', 'Linipred 8mg Tablet', 'When will I feel better after taking Linipred 8mg Tablet?', 'Linipred 8mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Linipred 8mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Linipred 8mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(17339, 'Linipred 8mg Tablet', 'Sarthi Life Sciences', 'Linipred 8mg Tablet', 'What if I forget to take a dose of Linipred 8mg Tablet?', 'If you forget a dose of Linipred 8mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17340, 'Linipred 8mg Tablet', 'Sarthi Life Sciences', 'Linipred 8mg Tablet', 'Is Linipred 8mg Tablet safe?', 'Linipred 8mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(17341, 'Linipride-R 75mg/20mg Tablet', 'Sarthi Life Sciences', 'Linipride-R 75mg/20mg Tablet', 'Which is the best time to take Linipride-R 75mg/20mg Tablet?', 'Take the Linipride-R 75mg/20mg Tablet exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(17342, 'Linipride-R 75mg/20mg Tablet', 'Sarthi Life Sciences', 'Linipride-R 75mg/20mg Tablet', 'What are the contraindications associated with the use of Linipride-R 75mg/20mg Tablet?', 'Use of Linipride-R 75mg/20mg Tablet should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(17343, 'Linipride-R 75mg/20mg Tablet', 'Sarthi Life Sciences', 'Linipride-R 75mg/20mg Tablet', 'Can the use of Linipride-R 75mg/20mg Tablet cause dizziness?', 'Yes, the use of Linipride-R 75mg/20mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(17344, 'Linipride-R 75mg/20mg Tablet', 'Sarthi Life Sciences', 'Linipride-R 75mg/20mg Tablet', 'Does the use of Linipride-R 75mg/20mg Tablet lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Linipride-R 75mg/20mg Tablet may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(17345, 'Linipride-R 75mg/20mg Tablet', 'Sarthi Life Sciences', 'Linipride-R 75mg/20mg Tablet', 'Can I drive while taking Linipride-R 75mg/20mg Tablet?', 'No, taking Linipride-R 75mg/20mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(17346, 'Linipride-R 75mg/20mg Tablet', 'Sarthi Life Sciences', 'Linipride-R 75mg/20mg Tablet', 'What are the instructions for the storage and disposal of Linipride-R 75mg/20mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17347, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'What is Liniq-A Tablet?', 'Liniq-A Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(17348, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Is it safe to use Liniq-A Tablet?', 'Liniq-A Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(17349, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Can I stop taking Liniq-A Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Liniq-A Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(17350, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Can the use of Liniq-A Tablet cause nausea and vomiting?', 'Yes, the use of Liniq-A Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(17351, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Can the use of Liniq-A Tablet cause dizziness?', 'Yes, the use of Liniq-A Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(17352, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Are there any specific contraindications associated with the use of Liniq-A Tablet?', 'The use of Liniq-A Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(17353, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Can Liniq-A Tablet be taken with vitamin B-complex?', 'Yes, Liniq-A Tablet can be taken with vitamin B-complex preparations. While Liniq-A Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(17354, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Is Liniq-A Tablet helpful in relieving stomach pain?', 'No, Liniq-A Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(17355, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Can the use of Liniq-A Tablet cause damage to kidneys?', 'Yes, the long-term use of Liniq-A Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(17356, 'Liniq-A Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-A Tablet', 'Is it safe to take a higher dose of Liniq-A Tablet than recommended?', 'No, taking higher than the recommended dose of Liniq-A Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(17357, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'How much Liniq-P Mango Drop should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(17358, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'When will my child’s condition improve after taking Liniq-P Mango Drop?', 'Liniq-P Mango Drop usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(17359, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'My child vomited after taking Liniq-P Mango Drop. What should I do?', 'Liniq-P Mango Drop usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(17360, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'Can I give Liniq-P Mango Drop to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(17361, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'My child’s fever is persistent even after taking Liniq-P Mango Drop. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(17362, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'How much of Liniq-P Mango Drop is considered as an overdose?', 'You should only take four doses of Liniq-P Mango Drop in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(17363, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(17364, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(17365, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'In what conditions Liniq-P Mango Drop must be given with caution?', 'It is advised to use Liniq-P Mango Drop with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(17366, 'Liniq-P Mango Drop', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-P Mango Drop', 'Can I give Liniq-P Mango Drop on a routine basis when my child is taking a vaccine?', 'Ans: Liniq-P Mango Drop usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(17367, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'What is Liniq-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(17368, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Is it safe to take Liniq-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(17369, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Can I stop taking Liniq-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(17370, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Can Liniq-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(17371, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Can Liniq-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(17372, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Are there any specific contraindications associated with taking Liniq-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(17373, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Can I take Liniq-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(17374, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Can the use of Liniq-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17375, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'Can I take a higher dose of Liniq-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(17376, 'Liniq-SP Tablet', 'Drugcliniq Pharmaceuticals Pvt Ltd', 'Liniq-SP Tablet', 'What are the instructions for storage and disposal of Liniq-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17377, 'Linita 5mg Tablet', 'Grievers Remedies', 'Linita 5mg Tablet', 'What is Linita 5mg Tablet used for?', 'Linita 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Linita 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Linita 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(17378, 'Linita 5mg Tablet', 'Grievers Remedies', 'Linita 5mg Tablet', 'When should I take Linita 5mg Tablet? What if I miss a dose?', 'Linita 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(17379, 'Linita 5mg Tablet', 'Grievers Remedies', 'Linita 5mg Tablet', 'Is Linita 5mg Tablet bad for kidneys?', 'No, there is no evidence that Linita 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(17380, 'Linita 5mg Tablet', 'Grievers Remedies', 'Linita 5mg Tablet', 'Is Linita 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Linita 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(17381, 'Linita 5mg Tablet', 'Grievers Remedies', 'Linita 5mg Tablet', 'For how long I have to take Linita 5mg Tablet? Can I stop the medication?', 'You should keep taking Linita 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(17382, 'Linitrip 3 Tablet', 'Sarthi Life Sciences', 'Linitrip 3 Tablet', 'What is Linitrip 3 Tablet used for?', 'This is a combination of three medicines: Bromelain, Trypsin and Rutoside. Bromelain and Trypsin are enzymes which increase blood supply in the affected area and help the body produce substances that fight pain and swelling. Rutoside is an antioxidant which protects the body from any damage caused by chemicals (free radicals) and further reduces swelling.'),
(17383, 'Linitrip 3 Tablet', 'Sarthi Life Sciences', 'Linitrip 3 Tablet', 'Is trypsin a hormone?', 'No, Trypsin is not a hormone. It is an enzyme, a protein and an endopeptidase.'),
(17384, 'Linitrip 3 Tablet', 'Sarthi Life Sciences', 'Linitrip 3 Tablet', 'What is the recommended storage condition for Linitrip 3 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17385, 'Linitrip Tablet', 'Sarthi Life Sciences', 'Linitrip Tablet', 'Can Linitrip Tablet be taken after food?', 'No, Linitrip Tablet should not be taken after food. This medicine works best when taken about 30 minutes before meals. It should be taken in the dose and duration prescribed by the doctor.'),
(17386, 'Linitrip Tablet', 'Sarthi Life Sciences', 'Linitrip Tablet', 'How long can I take Linitrip Tablet?', 'Linitrip Tablet is safe to be used for a short-term. Usually it is prescribed for not more than 10 days. However, you should use it in the dose and duration as advised by your doctor. Do not take it unless prescribed and it should not be stopped before talking to your doctor.'),
(17387, 'Linitrip Tablet', 'Sarthi Life Sciences', 'Linitrip Tablet', 'How does Linitrip Tablet work?', 'Linitrip Tablet acts as a catalyst to relieve the signs of pain and inflammation. It fastens the recovery process and heals your discomfort.'),
(17388, 'Linitrip Tablet', 'Sarthi Life Sciences', 'Linitrip Tablet', 'What happens if I overdose on Linitrip Tablet?', 'Linitrip Tablet should be used as prescribed by your doctor. Do not use more than the recommended dose. Using more than what is prescribed may increase the side effects caused by the medicine.'),
(17389, 'Linitrip Tablet', 'Sarthi Life Sciences', 'Linitrip Tablet', 'When to avoid this medicine?', 'Linitrip Tablet should be avoided if you are allergic to it or any of its components. You must always inform your doctor if you ever had problems with your liver, kidneys or stomach (such as peptic ulcers). It is not recommended in case you suffer from any blood disorders as well. Pregnant or breastfeeding mothers should consult their doctor before taking this medicine.'),
(17390, 'Linitrip Tablet', 'Sarthi Life Sciences', 'Linitrip Tablet', 'Is it safe to use Linitrip Tablet in pregnancy and breastfeeding?', 'There is not enough data available regarding the safety to use Linitrip Tablet in pregnancy and breastfeeding. Therefore, always seek your doctor’s advice before using it while you are pregnant, planning to conceive or breastfeeding.'),
(17391, 'Linitrip-DS Tablet', 'Sarthi Life Sciences', 'Linitrip-DS Tablet', 'What is Linitrip-DS Tablet?', 'Linitrip-DS Tablet is a combination of four medicines: Trypsin, Bromelain, Rutoside and Diclofenac. This medication helps in relieving pain and swelling (inflammation). It works by lowering the levels of those chemical substances in the body which cause pain and swelling (inflammation).'),
(17392, 'Linitrip-DS Tablet', 'Sarthi Life Sciences', 'Linitrip-DS Tablet', 'Can the use of Linitrip-DS Tablet cause dizziness?', 'Yes, the use of Linitrip-DS Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(17393, 'Linitrip-DS Tablet', 'Sarthi Life Sciences', 'Linitrip-DS Tablet', 'Are there any specific contraindications associated with the use of Linitrip-DS Tablet?', 'The use of Linitrip-DS Tablet is considered to be harmful for patients with known allergy to painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(17394, 'Linitrip-DS Tablet', 'Sarthi Life Sciences', 'Linitrip-DS Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Linitrip-DS Tablet can increase the risk of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain and swelling which is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(17395, 'Linitrip-DS Tablet', 'Sarthi Life Sciences', 'Linitrip-DS Tablet', 'What is the recommended storage condition for Linitrip-DS Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17396, 'Linitrip-DS Tablet', 'Sarthi Life Sciences', 'Linitrip-DS Tablet', 'Can Linitrip-DS Tablet be stopped when my pain and swelling (inflammation) are relieved?', 'Linitrip-DS Tablet is usually used for short term and can be discontinued when pain and swelling are relieved. However, Linitrip-DS Tablet should be continued if the doctor has advised you to do so.'),
(17397, 'Linitrip-DS Tablet', 'Sarthi Life Sciences', 'Linitrip-DS Tablet', 'Can the use of Linitrip-DS Tablet cause nausea and vomiting?', 'Yes, the use of Linitrip-DS Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(17398, 'Linitrix 1000mg Injection', 'Sarthi Life Sciences', 'Linitrix 1000mg Injection', 'Is Linitrix 1000mg Injection safe?', 'Linitrix 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(17399, 'Linitrix 1000mg Injection', 'Sarthi Life Sciences', 'Linitrix 1000mg Injection', 'How long does Linitrix 1000mg Injection take to work?', 'Usually, Linitrix 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(17400, 'Linitrix 1000mg Injection', 'Sarthi Life Sciences', 'Linitrix 1000mg Injection', 'Who should not take Linitrix 1000mg Injection?', 'Linitrix 1000mg Injection should not be prescribed to people who are allergic to Linitrix 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Linitrix 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(17401, 'Linitrix 1000mg Injection', 'Sarthi Life Sciences', 'Linitrix 1000mg Injection', 'What if I do not get better after using Linitrix 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17402, 'Linitrix 1000mg Injection', 'Sarthi Life Sciences', 'Linitrix 1000mg Injection', 'For how long does Linitrix 1000mg Injection stay in the body?', 'Usually, Linitrix 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(17403, 'Linitrix 1000mg Injection', 'Sarthi Life Sciences', 'Linitrix 1000mg Injection', 'Is Linitrix 1000mg Injection effective?', 'Linitrix 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linitrix 1000mg Injection too early, the symptoms may return or worsen.'),
(17404, 'Linitrix 1000mg Injection', 'Sarthi Life Sciences', 'Linitrix 1000mg Injection', 'How is Linitrix 1000mg Injection administered?', 'Linitrix 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Linitrix 1000mg Injection.'),
(17405, 'Linitrix S 1000mg/500mg Injection', 'Sarthi Life Sciences', 'Linitrix S 1000mg/500mg Injection', 'Can the use of Linitrix S 1000mg/500mg Injection cause allergic reaction?', 'Yes, Linitrix S 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(17406, 'Linitrix S 1000mg/500mg Injection', 'Sarthi Life Sciences', 'Linitrix S 1000mg/500mg Injection', 'Can the use of Linitrix S 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Linitrix S 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17407, 'Linitrix S 1000mg/500mg Injection', 'Sarthi Life Sciences', 'Linitrix S 1000mg/500mg Injection', 'How long does Linitrix S 1000mg/500mg Injection takes to work?', 'Usually, Linitrix S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17408, 'Linitrix S 1000mg/500mg Injection', 'Sarthi Life Sciences', 'Linitrix S 1000mg/500mg Injection', 'What if I don\'t get better after using Linitrix S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17409, 'Linitrix S 1000mg/500mg Injection', 'Sarthi Life Sciences', 'Linitrix S 1000mg/500mg Injection', 'Can I stop taking Linitrix S 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Linitrix S 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17410, 'Linitrix T 1000mg/125mg Injection', 'Sarthi Life Sciences', 'Linitrix T 1000mg/125mg Injection', 'How long does Linitrix T 1000mg/125mg Injection takes to work?', 'Usually, Linitrix T 1000mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17411, 'Linitrix T 1000mg/125mg Injection', 'Sarthi Life Sciences', 'Linitrix T 1000mg/125mg Injection', 'What if I don\'t get better after using Linitrix T 1000mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17412, 'Linitrix-S 750 Injection', 'Sarthi Life Sciences', 'Linitrix-S 750 Injection', 'Can the use of Linitrix-S 750 Injection cause allergic reaction?', 'Yes, Linitrix-S 750 Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(17413, 'Linitrix-S 750 Injection', 'Sarthi Life Sciences', 'Linitrix-S 750 Injection', 'Can the use of Linitrix-S 750 Injection cause diarrhea?', 'Yes, the use of Linitrix-S 750 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17414, 'Linitrix-S 750 Injection', 'Sarthi Life Sciences', 'Linitrix-S 750 Injection', 'How long does Linitrix-S 750 Injection takes to work?', 'Usually, Linitrix-S 750 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17415, 'Linitrix-S 750 Injection', 'Sarthi Life Sciences', 'Linitrix-S 750 Injection', 'What if I don\'t get better after using Linitrix-S 750 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17416, 'Linitrix-S 750 Injection', 'Sarthi Life Sciences', 'Linitrix-S 750 Injection', 'Can I stop taking Linitrix-S 750 Injection when I feel better?', 'No, do not stop taking Linitrix-S 750 Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17417, 'Linix 100 DT Tablet', 'Nocnil Pharma', 'Linix 100 DT Tablet', 'How long should I take Linix 100 DT Tablet?', 'Linix 100 DT Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(17418, 'Linix 100 DT Tablet', 'Nocnil Pharma', 'Linix 100 DT Tablet', 'What if I do not get better after using Linix 100 DT Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17419, 'Linix 100 DT Tablet', 'Nocnil Pharma', 'Linix 100 DT Tablet', 'Can the use of Linix 100 DT Tablet cause diarrhea?', 'Yes, the use of Linix 100 DT Tablet can cause diarrhea. Linix 100 DT Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17420, 'Linix 100 DT Tablet', 'Nocnil Pharma', 'Linix 100 DT Tablet', 'Is Linix 100 DT Tablet effective?', 'Linix 100 DT Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linix 100 DT Tablet too early, the symptoms may return or worsen.'),
(17421, 'Linix 100 DT Tablet', 'Nocnil Pharma', 'Linix 100 DT Tablet', 'What if I forget to take a dose of Linix 100 DT Tablet?', 'If you forget a dose of Linix 100 DT Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17422, 'Linix 100 DT Tablet', 'Nocnil Pharma', 'Linix 100 DT Tablet', 'Is Linix 100 DT Tablet safe for the kidneys?', 'Yes, Linix 100 DT Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(17423, 'Linix 100 DT Tablet', 'Nocnil Pharma', 'Linix 100 DT Tablet', 'How long should I take Linix 100 DT Tablet?', 'Linix 100 DT Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(17424, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'Is Linix-AZ Tablet safe?', 'Linix-AZ Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(17425, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Linix-AZ Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(17426, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'Can the use of Linix-AZ Tablet cause diarrhea?', 'Yes, the use of Linix-AZ Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17427, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'Can Linix-AZ Tablet be taken at night?', 'Linix-AZ Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Linix-AZ Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(17428, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'How long does it take Linix-AZ Tablet to work?', 'Linix-AZ Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(17429, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'Why is Linix-AZ Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Linix-AZ Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(17430, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'What should I avoid while taking Linix-AZ Tablet?', 'Generally, it is recommended that patients taking Linix-AZ Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Linix-AZ Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Linix-AZ Tablet increases the risk of sunburn.'),
(17431, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'Is Linix-AZ Tablet a strong antibiotic?', 'Linix-AZ Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Linix-AZ Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(17432, 'Linix-AZ Tablet', 'Nocnil Pharma', 'Linix-AZ Tablet', 'Can you get a yeast infection from taking Linix-AZ Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Linix-AZ Tablet. Antibiotics such as Linix-AZ Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Linix-AZ Tablet or soon after stopping it.'),
(17433, 'Linix-O Tablet', 'Nocnil Pharma', 'Linix-O Tablet', 'Can I stop taking Linix-O Tablet when I feel better?', 'No, do not stop taking Linix-O Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17434, 'Linix-O Tablet', 'Nocnil Pharma', 'Linix-O Tablet', 'What if I miss my dose?', 'Take Linix-O Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(17435, 'Linix-O Tablet', 'Nocnil Pharma', 'Linix-O Tablet', 'What if I don\'t get better after using Linix-O Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17436, 'Linizolid 600mg Tablet', 'Kom-med Labrotories Pvt Ltd', 'Linizolid 600mg Tablet', 'Can the use of Linizolid 600mg Tablet cause diarrhea?', 'Yes, the use of Linizolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17437, 'Linizolid 600mg Tablet', 'Kom-med Labrotories Pvt Ltd', 'Linizolid 600mg Tablet', 'What foods should I avoid while taking Linizolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linizolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17438, 'Linjox 600mg Tablet', 'Noxin Biocare Pvt Ltd', 'Linjox 600mg Tablet', 'Q. Can the use of Linjox 600mg Tablet cause diarrhea?', 'Yes, the use of Linjox 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17439, 'Linjox 600mg Tablet', 'Noxin Biocare Pvt Ltd', 'Linjox 600mg Tablet', 'Q. What foods should I avoid while taking Linjox 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linjox 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17440, 'Link Gel', 'Ind Swift Laboratories Ltd', 'Link Gel', 'How to use Link Gel?', 'Before using Link Gel, clean and dry the affected area. Gently and thoroughly massage it into the skin. Be careful not to get the medication in your eyes or mouth. If Link Gel gets in your eyes accidentally, wash with plenty of water and call your doctor if your eyes are irritated.'),
(17441, 'Link Gel', 'Ind Swift Laboratories Ltd', 'Link Gel', 'How long should I use Link Gel?', 'Use Link Gel for as long as your doctor tells you. You may have to use it for several months to clear your acne completely. Even the initial benefits may take several weeks to appear following which you shall be able to note a gradual but definite improvement. Usually, Link Gel should be used for a maximum of 12 weeks. You may need to use more than one tube of Link Gel during each course of treatment.'),
(17442, 'Link Gel', 'Ind Swift Laboratories Ltd', 'Link Gel', 'What does Link Gel do for acne?', 'Link Gel treats and prevents acne by stopping the growth of bacteria (Propionibacterium acnes) which causes it. Acne is an extremely common skin condition. During adolescence, grease glands in the skin produce extra grease in response to normal amounts of sex hormones in the body which can cause blocked pores (i.e., blackheads). When this happens, the pores are invaded by bacteria. As a result, certain chemicals are produced which go into deeper parts of the skin to produce red spots filled with pus, called acne.'),
(17443, 'Link Gel', 'Ind Swift Laboratories Ltd', 'Link Gel', 'Can Link Gel cause skin rash?', 'The common side effects of Link Gel are irritation, swollen, pale red bumps and dryness. A scaly skin rash may occur rarely with the use of Link Gel. You must consult your doctor if it bothers you.'),
(17444, 'Link Gel', 'Ind Swift Laboratories Ltd', 'Link Gel', 'What precautions do I need to take while using Link Gel?', 'Be careful not to get Link Gel into your eyes or mouth. If you happen to get it in your eyes, rinse off with plenty of water immediately and contact your doctor. You must not use Link Gel if you are allergic to it or any of its ingredients. Tell your doctor if you notice any allergic reaction while using it for the first time. Inform your doctor if you are taking any medicines regularly, to prevent any allergic reaction with other medicines. Do not cover the area being treated with Link Gel with a bandage, as this may increase absorption of this medicine and increase the side effects. Do not use more than what is recommended to relieve your symptoms faster. Using more than what is advised will only increase the side effects. Let your doctor know if you are planning to conceive. Pregnant and breastfeeding mothers should use Link Gel only if prescribed by the doctor.'),
(17445, 'Link Gel', 'Ind Swift Laboratories Ltd', 'Link Gel', 'Is Link Gel effective?', 'Link Gel is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Link Gel too early, the symptoms may return or worsen.'),
(17446, 'Linkof 200mg Tablet', 'Frank Medilink', 'Linkof 200mg Tablet', 'Can the use of Linkof 200mg Tablet cause diarrhea?', 'Yes, the use of Linkof 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17447, 'Linkof 200mg Tablet', 'Frank Medilink', 'Linkof 200mg Tablet', 'Can I stop taking Linkof 200mg Tablet when I feel better?', 'No, do not stop taking Linkof 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17448, 'Linkof 200mg Tablet', 'Frank Medilink', 'Linkof 200mg Tablet', 'Can the use of Linkof 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Linkof 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Linkof 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(17449, 'Linkof 50mg Oral Suspension', 'Frank Medilink', 'Linkof 50mg Oral Suspension', 'What if I give too much of Linkof 50mg Oral Suspension by mistake?', 'An extra dose of Linkof 50mg Oral Suspension is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, unconsciousness, and palpitations (irregularities of heartbeat). Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17450, 'Linkof 50mg Oral Suspension', 'Frank Medilink', 'Linkof 50mg Oral Suspension', 'What should I do if my child shows no improvement even after taking Linkof 50mg Oral Suspension for the prescribed duration?', 'Ineffective treatment with Linkof 50mg Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that would be more specific in action. Not all medicines are given by oral route, some may have to be given by IV route (intravenous injection) in the hospital.'),
(17451, 'Linkof 50mg Oral Suspension', 'Frank Medilink', 'Linkof 50mg Oral Suspension', 'Can other medicines be given at the same time as Linkof 50mg Oral Suspension?', 'Linkof 50mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linkof 50mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(17452, 'Linkof 50mg Oral Suspension', 'Frank Medilink', 'Linkof 50mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Linkof 50mg Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17453, 'Linkof 50mg Oral Suspension', 'Frank Medilink', 'Linkof 50mg Oral Suspension', 'What should I tell the doctor before giving Linkof 50mg Oral Suspension to my child?', 'Inform the doctor if your child is suffering from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Linkof 50mg Oral Suspension may aggravate these conditions and result in complications.'),
(17454, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'What is Linkof OZ 200mg/500mg Tablet?', 'Linkof OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(17455, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'Is it safe to use Linkof OZ 200mg/500mg Tablet?', 'Linkof OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(17456, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Linkof OZ 200mg/500mg Tablet?', 'The use of Linkof OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(17457, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Linkof OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(17458, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Linkof OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17459, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'Can I stop taking Linkof OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Linkof OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(17460, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Linkof OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(17461, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'Can I take alcohol while on Linkof OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Linkof OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(17462, 'Linkof OZ 200mg/500mg Tablet', 'Frank Medilink', 'Linkof OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Linkof OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17463, 'Linkof OZ Oral Suspension', 'Frank Medilink', 'Linkof OZ Oral Suspension', 'My child is having a common cold. Is it safe to give Linkof OZ Oral Suspension along with cough & cold medicines?', 'Linkof OZ Oral Suspension can interfere with cough and cold medicines. One of the active ingredients of Linkof OZ Oral Suspension can interact with alcohol-containing medicines like cough syrups and can cause adverse effects. Don’t give your child any medicines along with Linkof OZ Oral Suspension without consulting the doctor.'),
(17464, 'Linkof OZ Oral Suspension', 'Frank Medilink', 'Linkof OZ Oral Suspension', 'What if I give excess Linkof OZ Oral Suspension by mistake?', 'Though an extra dose of Linkof OZ Oral Suspension will not impact your child’s health, never give an overdose of any medicine. If you think you have given too much to your child, immediately speak to a doctor. Exceeding the recommended dose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heart beat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17465, 'Linkof OZ Oral Suspension', 'Frank Medilink', 'Linkof OZ Oral Suspension', 'What should I do if my child shows no improvement even after taking Linkof OZ Oral Suspension for the prescribed duration?', 'Not seeing any improvement could signify that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe an antibiotic having a farther reach of impact than Linkof OZ Oral Suspension. Since not all medicines are given by oral route, your doctor may suggest giving an intravenous injection to your child in the hospital.'),
(17466, 'Linkof OZ Oral Suspension', 'Frank Medilink', 'Linkof OZ Oral Suspension', 'Can other medicines be given at the same time as Linkof OZ Oral Suspension?', 'Linkof OZ Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linkof OZ Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(17467, 'Linkof OZ Oral Suspension', 'Frank Medilink', 'Linkof OZ Oral Suspension', 'Can I get my child vaccinated while on treatment with Linkof OZ Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17468, 'Linkof OZ Oral Suspension', 'Frank Medilink', 'Linkof OZ Oral Suspension', 'What should I tell the doctor before giving Linkof OZ Oral Suspension to my child?', 'Inform the doctor if your child is suffering or has suffered from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Linkof OZ Oral Suspension may aggravate these conditions and result in complications.'),
(17469, 'Linkof Plus Cream', 'Frank Medilink', 'Linkof Plus Cream', 'Can I stop taking Linkof Plus Cream when my symptoms are relieved?', 'No, do not stop taking Linkof Plus Cream and complete the full course of treatment, even if you feel better. Your symptoms may improve before the skin infection is completely cured.'),
(17470, 'Linkof Plus Cream', 'Frank Medilink', 'Linkof Plus Cream', 'What precautions should be taken while using Linkof Plus Cream?', 'Linkof Plus Cream should not be used on the face. Do not use the medication for longer periods of time than you have been advised. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side-effects.This medicine should only be used by the patient and never be given to other people even if their condition appears to be the same.'),
(17471, 'Linkof Plus Cream', 'Frank Medilink', 'Linkof Plus Cream', 'What would happen if I use a higher than the recommended dose of Linkof Plus Cream for long periods?', 'The dosage and duration of using Linkof Plus Cream should be strictly according to the doctor’s advice. It contains clobetasol which when used in higher doses and for longer periods can cause a change in the skin color, at the site of the application. Veins beneath the skin become visible because of thinning and weakening of the skin. There could be an increased hair growth. The medicine may get absorbed into the blood and can cause weight gain, high blood pressure and rounding of the face. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(17472, 'Linkof Plus Cream', 'Frank Medilink', 'Linkof Plus Cream', 'What are the recommended instructions for the storage and disposal of Linkof Plus Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17473, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'What if I give an excess of Linkos 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17474, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linkos 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17475, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linkos 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linkos 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17476, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'Can Linkos 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linkos 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17477, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'Can other medicines be given at the same time as Linkos 100mg Dry Syrup?', 'Linkos 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linkos 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17478, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linkos 100mg Dry Syrup?', 'For children receiving Linkos 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17479, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linkos 100mg Dry Syrup to my child?', 'Avoid giving Linkos 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linkos 100mg Dry Syrup to your child.'),
(17480, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'What food items should my child avoid while taking Linkos 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linkos 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17481, 'Linkos 100mg Dry Syrup', 'Eskos Pharma', 'Linkos 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linkos 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linkos 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17482, 'Linkos 600mg Tablet', 'Eskos Pharma', 'Linkos 600mg Tablet', 'Can the use of Linkos 600mg Tablet cause diarrhea?', 'Yes, the use of Linkos 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17483, 'Linkos 600mg Tablet', 'Eskos Pharma', 'Linkos 600mg Tablet', 'What foods should I avoid while taking Linkos 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linkos 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17484, 'Linkosol 300mg Injection', 'Petrosolv India Ltd', 'Linkosol 300mg Injection', 'What if I don\'t get better after using Linkosol 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17485, 'Linkosol 300mg Injection', 'Petrosolv India Ltd', 'Linkosol 300mg Injection', 'Can the use of Linkosol 300mg Injection cause diarrhea?', 'Yes, the use of Linkosol 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17486, 'Linkosol 300mg Injection', 'Petrosolv India Ltd', 'Linkosol 300mg Injection', 'How long does Linkosol 300mg Injection take to work?', 'Usually, Linkosol 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17487, 'Linkosol 300mg Injection', 'Petrosolv India Ltd', 'Linkosol 300mg Injection', 'How is Linkosol 300mg Injection administered?', 'Linkosol 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linkosol 300mg Injection.'),
(17488, 'Linkosol 300mg Injection', 'Petrosolv India Ltd', 'Linkosol 300mg Injection', 'Is Linkosol 300mg Injection effective?', 'Linkosol 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linkosol 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linkosol 300mg Injection too early, the symptoms may return or worsen.'),
(17489, 'Linkosol 300mg Injection', 'Petrosolv India Ltd', 'Linkosol 300mg Injection', 'Is Linkosol 300mg Injection safe?', 'Linkosol 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17490, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'What is Linkpan D 30mg/40mg Capsule SR?', 'Linkpan D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(17491, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'Is it safe to use Linkpan D 30mg/40mg Capsule SR?', 'Linkpan D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(17492, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'Are there any specific contraindications associated with the use of Linkpan D 30mg/40mg Capsule SR?', 'The use of Linkpan D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(17493, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'Can the use of Linkpan D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Linkpan D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(17494, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'Can the use of Linkpan D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Linkpan D 30mg/40mg Capsule SR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(17495, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Linkpan D 30mg/40mg Capsule SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17496, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'What is Linkpan D 30mg/40mg Capsule SR price?', 'You can get Linkpan D 30mg/40mg Capsule SR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(17497, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'While taking Linkpan D 30mg/40mg Capsule SR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(17498, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'Can I take alcohol while taking Linkpan D 30mg/40mg Capsule SR?', 'No, alcohol intake is not advised with Linkpan D 30mg/40mg Capsule SR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(17499, 'Linkpan D 30mg/40mg Capsule SR', 'Kamork Biotech', 'Linkpan D 30mg/40mg Capsule SR', 'Can I stop taking Linkpan D 30mg/40mg Capsule SR if I feel better?', 'If you have been taking Linkpan D 30mg/40mg Capsule SR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(17500, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'Is Linkpod 100mg Oral Suspension safe to use?', 'Linkpod 100mg Oral Suspension is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(17501, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'Can the use of Linkpod 100mg Oral Suspension cause diarrhea?', 'Yes, the use of Linkpod 100mg Oral Suspension can cause diarrhea. Linkpod 100mg Oral Suspension is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17502, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'Is Linkpod 100mg Oral Suspension an antibiotic?', 'Yes, Linkpod 100mg Oral Suspension is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(17503, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'Can Linkpod 100mg Oral Suspension cause constipation?', 'Yes, Linkpod 100mg Oral Suspension may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(17504, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'Can I stop taking Linkpod 100mg Oral Suspension when my symptoms are relieved or when I feel better?', 'No, do not stop taking Linkpod 100mg Oral Suspension before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(17505, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'How long does Linkpod 100mg Oral Suspension take to work?', 'Usually, Linkpod 100mg Oral Suspension starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(17506, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'What if I do not get better after using Linkpod 100mg Oral Suspension?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17507, 'Linkpod 100mg Oral Suspension', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Oral Suspension', 'Can Linkpod 100mg Oral Suspension treat UTI?', 'Yes, Linkpod 100mg Oral Suspension may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Linkpod 100mg Oral Suspension. It is advisable to take it only if prescribed by a doctor.'),
(17508, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'Is Linkpod 100mg Tablet DT safe to use?', 'Linkpod 100mg Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(17509, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'Can the use of Linkpod 100mg Tablet DT cause diarrhea?', 'Yes, the use of Linkpod 100mg Tablet DT can cause diarrhea. Linkpod 100mg Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17510, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'Is Linkpod 100mg Tablet DT an antibiotic?', 'Yes, Linkpod 100mg Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(17511, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'Can Linkpod 100mg Tablet DT cause constipation?', 'Yes, Linkpod 100mg Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(17512, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'Can I stop taking Linkpod 100mg Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Linkpod 100mg Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(17513, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'How long does Linkpod 100mg Tablet DT take to work?', 'Usually, Linkpod 100mg Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(17514, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'What if I do not get better after using Linkpod 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17515, 'Linkpod 100mg Tablet DT', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 100mg Tablet DT', 'Can Linkpod 100mg Tablet DT treat UTI?', 'Yes, Linkpod 100mg Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Linkpod 100mg Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(17516, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'Is Linkpod 200mg Tablet safe to use?', 'Linkpod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(17517, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'Can the use of Linkpod 200mg Tablet cause diarrhea?', 'Yes, the use of Linkpod 200mg Tablet can cause diarrhea. Linkpod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(17518, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'Is Linkpod 200mg Tablet an antibiotic?', 'Yes, Linkpod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(17519, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'Can Linkpod 200mg Tablet cause constipation?', 'Yes, Linkpod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(17520, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'Can I stop taking Linkpod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Linkpod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(17521, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'How long does Linkpod 200mg Tablet take to work?', 'Usually, Linkpod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(17522, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'What if I do not get better after using Linkpod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(17523, 'Linkpod 200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod 200mg Tablet', 'Can Linkpod 200mg Tablet treat UTI?', 'Yes, Linkpod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Linkpod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(17524, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'Can the use of Linkpod CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linkpod CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17525, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'How long does Linkpod CV 200mg/125mg Tablet takes to work?', 'Usually, Linkpod CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17526, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'What if I don\'t get better after using Linkpod CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17527, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'Can I stop taking Linkpod CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Linkpod CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17528, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'What is Linkpod CV 200mg/125mg Tablet?', 'Linkpod CV 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(17529, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'Can the use of Linkpod CV 200mg/125mg Tablet cause any serious side effects?', 'Linkpod CV 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(17530, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'Can I stop taking Linkpod CV 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Linkpod CV 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17531, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'Can Linkpod CV 200mg/125mg Tablet cause allergic reaction?', 'Yes, Linkpod CV 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(17532, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'Are there any specific contraindications associated with the use of Linkpod CV 200mg/125mg Tablet?', 'The use of Linkpod CV 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Linkpod CV 200mg/125mg Tablet.'),
(17533, 'Linkpod CV 200mg/125mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV 200mg/125mg Tablet', 'Can I take oral contraceptive pills while taking Linkpod CV 200mg/125mg Tablet?', 'No, Linkpod CV 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(17534, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'Can the use of Linkpod CV Dry Syrup cause diarrhea?', 'Yes, the use of Linkpod CV Dry Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17535, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'How long does Linkpod CV Dry Syrup takes to work?', 'Usually, Linkpod CV Dry Syrup starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17536, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'What if I don\'t get better after using Linkpod CV Dry Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17537, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'Can I stop taking Linkpod CV Dry Syrup when I feel better?', 'No, do not stop taking Linkpod CV Dry Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17538, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'What is Linkpod CV Dry Syrup?', 'Linkpod CV Dry Syrup is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(17539, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'Can the use of Linkpod CV Dry Syrup cause any serious side effects?', 'Linkpod CV Dry Syrup may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(17540, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'Can I stop taking Linkpod CV Dry Syrup when my symptoms are relieved?', 'No, do not stop taking Linkpod CV Dry Syrup and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17541, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'Can Linkpod CV Dry Syrup cause allergic reaction?', 'Yes, Linkpod CV Dry Syrup can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(17542, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'Are there any specific contraindications associated with the use of Linkpod CV Dry Syrup?', 'The use of Linkpod CV Dry Syrup is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Linkpod CV Dry Syrup.'),
(17543, 'Linkpod CV Dry Syrup', 'Makronix Life Sciences Pvt Ltd', 'Linkpod CV Dry Syrup', 'Can I take oral contraceptive pills while taking Linkpod CV Dry Syrup?', 'No, Linkpod CV Dry Syrup can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(17544, 'Linkpod O 200mg/200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod O 200mg/200mg Tablet', 'Can Linkpod O 200mg/200mg Tablet be used to treat viral infections?', 'No, Linkpod O 200mg/200mg Tablet is only indicated to treat bacterial infections. It does not treat viral infections (such as common cold and flu).'),
(17545, 'Linkpod O 200mg/200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod O 200mg/200mg Tablet', 'How to take Linkpod O 200mg/200mg Tablet?', 'Take this medication orally with or without food as directed by your doctor. This medicine is usually taken once a day. Take the medicine for the prescribed period, even if symptoms disappear after a few days.'),
(17546, 'Linkpod O 200mg/200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod O 200mg/200mg Tablet', 'Can the use of Linkpod O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Linkpod O 200mg/200mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(17547, 'Linkpod O 200mg/200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod O 200mg/200mg Tablet', 'What are the instructions for the storage and disposal of Linkpod O 200mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(17548, 'Linkpod O 200mg/200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod O 200mg/200mg Tablet', 'Can I stop taking Linkpod O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Linkpod O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17549, 'Linkpod O 200mg/200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Linkpod O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(17550, 'Linkpod O 200mg/200mg Tablet', 'Makronix Life Sciences Pvt Ltd', 'Linkpod O 200mg/200mg Tablet', 'What if I don\'t get better after using Linkpod O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17551, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'What is Linkrab D 30mg/20mg Capsule SR?', 'Linkrab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(17552, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'What are the contraindications of Linkrab D 30mg/20mg Capsule SR?', 'The use of Linkrab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(17553, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'Can the use of Linkrab D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Linkrab D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(17554, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'Can the use of Linkrab D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Linkrab D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(17555, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Linkrab D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17556, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'Is it safe to use Linkrab D 30mg/20mg Capsule SR?', 'Yes, Linkrab D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(17557, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'What is the best time to take Linkrab D 30mg/20mg Capsule SR?', 'It is best to take Linkrab D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(17558, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'Can the use of Linkrab D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Linkrab D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(17559, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'What is Linkrab D 30mg/20mg Capsule SR?', 'Linkrab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(17560, 'Linkrab D 30mg/20mg Capsule SR', 'Kamork Biotech', 'Linkrab D 30mg/20mg Capsule SR', 'What are the contraindications of Linkrab D 30mg/20mg Capsule SR?', 'The use of Linkrab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(17561, 'Linlex 600mg Tablet', 'Medlex Biotechnics Private Limited', 'Linlex 600mg Tablet', 'Can the use of Linlex 600mg Tablet cause diarrhea?', 'Yes, the use of Linlex 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17562, 'Linlex 600mg Tablet', 'Medlex Biotechnics Private Limited', 'Linlex 600mg Tablet', 'What foods should I avoid while taking Linlex 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linlex 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17563, 'Linmed 600mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Linmed 600mg Tablet', 'Can the use of Linmed 600mg Tablet cause diarrhea?', 'Yes, the use of Linmed 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17564, 'Linmed 600mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Linmed 600mg Tablet', 'What foods should I avoid while taking Linmed 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linmed 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17565, 'Linmit 600 Tablet', 'Mits Healthcare Pvt Ltd', 'Linmit 600 Tablet', 'Can the use of Linmit 600 Tablet cause diarrhea?', 'Yes, the use of Linmit 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17566, 'Linmit 600 Tablet', 'Mits Healthcare Pvt Ltd', 'Linmit 600 Tablet', 'What foods should I avoid while taking Linmit 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linmit 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17567, 'Linoall 600mg Tablet', 'AB Allcare Biotech', 'Linoall 600mg Tablet', 'Can the use of Linoall 600mg Tablet cause diarrhea?', 'Yes, the use of Linoall 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17568, 'Linoall 600mg Tablet', 'AB Allcare Biotech', 'Linoall 600mg Tablet', 'What foods should I avoid while taking Linoall 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoall 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17569, 'Linobenz 600 Tablet', 'Ajanta Pharma Ltd', 'Linobenz 600 Tablet', 'Can the use of Linobenz 600 Tablet cause diarrhea?', 'Yes, the use of Linobenz 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17570, 'Linobenz 600 Tablet', 'Ajanta Pharma Ltd', 'Linobenz 600 Tablet', 'What foods should I avoid while taking Linobenz 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linobenz 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17571, 'Linobiz 600mg Tablet', 'Rynn Pharmaceuticals Private Limited', 'Linobiz 600mg Tablet', 'Can the use of Linobiz 600mg Tablet cause diarrhea?', 'Yes, the use of Linobiz 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17572, 'Linobiz 600mg Tablet', 'Rynn Pharmaceuticals Private Limited', 'Linobiz 600mg Tablet', 'What foods should I avoid while taking Linobiz 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linobiz 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17573, 'Linocarb M Plus Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linocarb M Plus Syrup', 'Will a higher than the recommended dose of Linocarb M Plus Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(17574, 'Linocarb M Plus Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linocarb M Plus Syrup', 'What if I miss a dose?', 'Take the missed dose as soon as you remember. But, skip the missed dose if it is time for your next dose. Then follow your normal routine.'),
(17575, 'Linocarb M Plus Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linocarb M Plus Syrup', 'Can the use of Linocarb M Plus Syrup cause diarrhea?', 'Yes, the use of Linocarb M Plus Syrup can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(17576, 'Linocarb M Plus Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linocarb M Plus Syrup', 'Can the use of Linocarb M Plus Syrup cause constipation?', 'Yes, the use of Linocarb M Plus Syrup can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits, and cereals. Drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or taking a short walk. Talk to your doctor about if persistent constipation occurs.'),
(17577, 'Linocarb M Plus Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linocarb M Plus Syrup', 'What are the instructions for the storage and disposal of Linocarb M Plus Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17578, 'Linoced 600mg Tablet', 'Cedna Biotech Pvt Ltd', 'Linoced 600mg Tablet', 'Can the use of Linoced 600mg Tablet cause diarrhea?', 'Yes, the use of Linoced 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17579, 'Linoced 600mg Tablet', 'Cedna Biotech Pvt Ltd', 'Linoced 600mg Tablet', 'What foods should I avoid while taking Linoced 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoced 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17580, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'What if I give an excess of Linocept 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17581, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linocept 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17582, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linocept 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linocept 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17583, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'Can Linocept 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linocept 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17584, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'Can other medicines be given at the same time as Linocept 100mg Dry Syrup?', 'Linocept 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linocept 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17585, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linocept 100mg Dry Syrup?', 'For children receiving Linocept 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17586, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linocept 100mg Dry Syrup to my child?', 'Avoid giving Linocept 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linocept 100mg Dry Syrup to your child.'),
(17587, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'What food items should my child avoid while taking Linocept 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linocept 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17588, 'Linocept 100mg Dry Syrup', 'Incepta Pharma', 'Linocept 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linocept 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linocept 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17589, 'Linocin 1% Cream', 'Therapia Sanjeevani', 'Linocin 1% Cream', 'Is Linocin 1% Cream safe in pregnancy?', 'Linocin 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Linocin 1% Cream.'),
(17590, 'Linocin 1% Cream', 'Therapia Sanjeevani', 'Linocin 1% Cream', 'Is Linocin 1% Cream fungicidal or Fungistatic?', 'Linocin 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(17591, 'Linocin 1% Cream', 'Therapia Sanjeevani', 'Linocin 1% Cream', 'How to use Linocin 1% Cream?', 'Use Linocin 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(17592, 'Linocin 1% Cream', 'Therapia Sanjeevani', 'Linocin 1% Cream', 'How long does it take for Linocin 1% Cream to work?', 'For different ailments, Linocin 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(17593, 'Linocin 1% Cream', 'Therapia Sanjeevani', 'Linocin 1% Cream', 'How should I store Linocin 1% Cream?', 'Keep Linocin 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(17594, 'Linocin 1% Cream', 'Therapia Sanjeevani', 'Linocin 1% Cream', 'Is Linocin 1% Cream safe to use in children?', 'Yes, Linocin 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(17595, 'Linocin 250mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 250mg Capsule', 'How long does Linocin 250mg Capsule take to work?', 'Usually, Linocin 250mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17596, 'Linocin 250mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 250mg Capsule', 'What if I don\'t get better after using Linocin 250mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17597, 'Linocin 250mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 250mg Capsule', 'Is Linocin 250mg Capsule effective?', 'Linocin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linocin 250mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linocin 250mg Capsule too early, the symptoms may return or worsen.'),
(17598, 'Linocin 250mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 250mg Capsule', 'Can I stop taking Linocin 250mg Capsule when I feel better?', 'No, do not stop taking Linocin 250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17599, 'Linocin 250mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 250mg Capsule', 'Can the use of Linocin 250mg Capsule cause diarrhea?', 'Yes, the use of Linocin 250mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17600, 'Linocin 250mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 250mg Capsule', 'Is Linocin 250mg Capsule safe?', 'Linocin 250mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(17601, 'Linocin 300mg Injection', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 300mg Injection', 'What if I don\'t get better after using Linocin 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17602, 'Linocin 300mg Injection', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 300mg Injection', 'Can the use of Linocin 300mg Injection cause diarrhea?', 'Yes, the use of Linocin 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17603, 'Linocin 300mg Injection', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 300mg Injection', 'How long does Linocin 300mg Injection take to work?', 'Usually, Linocin 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17604, 'Linocin 300mg Injection', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 300mg Injection', 'How is Linocin 300mg Injection administered?', 'Linocin 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linocin 300mg Injection.'),
(17605, 'Linocin 300mg Injection', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 300mg Injection', 'Is Linocin 300mg Injection effective?', 'Linocin 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linocin 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linocin 300mg Injection too early, the symptoms may return or worsen.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17606, 'Linocin 300mg Injection', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 300mg Injection', 'Is Linocin 300mg Injection safe?', 'Linocin 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(17607, 'Linocin 500mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 500mg Capsule', 'How long does Linocin 500mg Capsule take to work?', 'Usually, Linocin 500mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17608, 'Linocin 500mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 500mg Capsule', 'What if I don\'t get better after using Linocin 500mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17609, 'Linocin 500mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 500mg Capsule', 'Is Linocin 500mg Capsule effective?', 'Linocin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linocin 500mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linocin 500mg Capsule too early, the symptoms may return or worsen.'),
(17610, 'Linocin 500mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 500mg Capsule', 'Can I stop taking Linocin 500mg Capsule when I feel better?', 'No, do not stop taking Linocin 500mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17611, 'Linocin 500mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 500mg Capsule', 'Can the use of Linocin 500mg Capsule cause diarrhea?', 'Yes, the use of Linocin 500mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17612, 'Linocin 500mg Capsule', 'Sanjeevani Bio-Tech Pvt Ltd', 'Linocin 500mg Capsule', 'Is Linocin 500mg Capsule safe?', 'Linocin 500mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(17613, 'Linocip 600mg Tablet', 'Alienist Pharmaceutical Private Limited', 'Linocip 600mg Tablet', 'Can the use of Linocip 600mg Tablet cause diarrhea?', 'Yes, the use of Linocip 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17614, 'Linocip 600mg Tablet', 'Alienist Pharmaceutical Private Limited', 'Linocip 600mg Tablet', 'What foods should I avoid while taking Linocip 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linocip 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17615, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'What if I give an excess of Linoes 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17616, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linoes 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17617, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linoes 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linoes 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17618, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'Can Linoes 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linoes 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17619, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'Can other medicines be given at the same time as Linoes 100mg Dry Syrup?', 'Linoes 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linoes 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17620, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linoes 100mg Dry Syrup?', 'For children receiving Linoes 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17621, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linoes 100mg Dry Syrup to my child?', 'Avoid giving Linoes 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linoes 100mg Dry Syrup to your child.'),
(17622, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'What food items should my child avoid while taking Linoes 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linoes 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17623, 'Linoes 100mg Dry Syrup', 'Esquire Drug House', 'Linoes 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linoes 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linoes 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17624, 'Linof 200mg Tablet', 'Linex Pharmaceuticals', 'Linof 200mg Tablet', 'Can the use of Linof 200mg Tablet cause diarrhea?', 'Yes, the use of Linof 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17625, 'Linof 200mg Tablet', 'Linex Pharmaceuticals', 'Linof 200mg Tablet', 'Can I stop taking Linof 200mg Tablet when I feel better?', 'No, do not stop taking Linof 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17626, 'Linof 200mg Tablet', 'Linex Pharmaceuticals', 'Linof 200mg Tablet', 'Can the use of Linof 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Linof 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Linof 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(17627, 'Linof 500mg Tablet', 'Cure Kelvin', 'Linof 500mg Tablet', 'Is Linof 500mg Tablet safe?', 'Linof 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(17628, 'Linof 500mg Tablet', 'Cure Kelvin', 'Linof 500mg Tablet', 'What if I forget to take a dose of Linof 500mg Tablet?', 'If you forget a dose of Linof 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(17629, 'Linof 500mg Tablet', 'Cure Kelvin', 'Linof 500mg Tablet', 'Can the use of Linof 500mg Tablet cause diarrhea?', 'Yes, the use of Linof 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17630, 'Linof 500mg Tablet', 'Cure Kelvin', 'Linof 500mg Tablet', 'Can I stop taking Linof 500mg Tablet when I feel better?', 'No, do not stop taking Linof 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Linof 500mg Tablet too early, the symptoms may return or worsen. Continue taking Linof 500mg Tablet in the dose and duration advised by the doctor.'),
(17631, 'Linof 500mg Tablet', 'Cure Kelvin', 'Linof 500mg Tablet', 'Can the use of Linof 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Linof 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Linof 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(17632, 'Linof 50mg Oral Suspension', 'Linex Pharmaceuticals', 'Linof 50mg Oral Suspension', 'What if I give too much of Linof 50mg Oral Suspension by mistake?', 'An extra dose of Linof 50mg Oral Suspension is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, unconsciousness, and palpitations (irregularities of heartbeat). Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17633, 'Linof 50mg Oral Suspension', 'Linex Pharmaceuticals', 'Linof 50mg Oral Suspension', 'What should I do if my child shows no improvement even after taking Linof 50mg Oral Suspension for the prescribed duration?', 'Ineffective treatment with Linof 50mg Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that would be more specific in action. Not all medicines are given by oral route, some may have to be given by IV route (intravenous injection) in the hospital.'),
(17634, 'Linof 50mg Oral Suspension', 'Linex Pharmaceuticals', 'Linof 50mg Oral Suspension', 'Can other medicines be given at the same time as Linof 50mg Oral Suspension?', 'Linof 50mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linof 50mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(17635, 'Linof 50mg Oral Suspension', 'Linex Pharmaceuticals', 'Linof 50mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Linof 50mg Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17636, 'Linof 50mg Oral Suspension', 'Linex Pharmaceuticals', 'Linof 50mg Oral Suspension', 'What should I tell the doctor before giving Linof 50mg Oral Suspension to my child?', 'Inform the doctor if your child is suffering from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Linof 50mg Oral Suspension may aggravate these conditions and result in complications.'),
(17637, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'What is Linof OZ 200mg/500mg Tablet?', 'Linof OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(17638, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'Is it safe to use Linof OZ 200mg/500mg Tablet?', 'Linof OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(17639, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Linof OZ 200mg/500mg Tablet?', 'The use of Linof OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(17640, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Linof OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(17641, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Linof OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17642, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'Can I stop taking Linof OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Linof OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(17643, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Linof OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(17644, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'Can I take alcohol while on Linof OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Linof OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(17645, 'Linof OZ 200mg/500mg Tablet', 'Linnet Life Sciences', 'Linof OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Linof OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17646, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'My child is having a common cold. Is it safe to give Linof OZ Suspension along with cough & cold medicines?', 'Linof OZ Suspension can interfere with cough and cold medicines. One of the active ingredients of Linof OZ Suspension can interact with alcohol-containing medicines like cough syrups and can cause adverse effects. Don’t give your child any medicines along with Linof OZ Suspension without consulting the doctor.'),
(17647, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'What if I give excess Linof OZ Suspension by mistake?', 'Though an extra dose of Linof OZ Suspension will not impact your child’s health, never give an overdose of any medicine. If you think you have given too much to your child, immediately speak to a doctor. Exceeding the recommended dose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heart beat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17648, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'What should I do if my child shows no improvement even after taking Linof OZ Suspension for the prescribed duration?', 'Not seeing any improvement could signify that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe an antibiotic having a farther reach of impact than Linof OZ Suspension. Since not all medicines are given by oral route, your doctor may suggest giving an intravenous injection to your child in the hospital.'),
(17649, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'Can other medicines be given at the same time as Linof OZ Suspension?', 'Linof OZ Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linof OZ Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(17650, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'Can I get my child vaccinated while on treatment with Linof OZ Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(17651, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'What should I tell the doctor before giving Linof OZ Suspension to my child?', 'Inform the doctor if your child is suffering or has suffered from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Linof OZ Suspension may aggravate these conditions and result in complications.'),
(17652, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'What is Linof OZ Suspension?', 'Linof OZ Suspension is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(17653, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'Is it safe to use Linof OZ Suspension?', 'Linof OZ Suspension is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(17654, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'Are there any specific contraindications associated with the use of Linof OZ Suspension?', 'The use of Linof OZ Suspension is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(17655, 'Linof OZ Suspension', 'Linnet Life Sciences', 'Linof OZ Suspension', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Linof OZ Suspension can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(17656, 'Linofast 600 Tablet', 'Astemax Biotech Pvt Ltd', 'Linofast 600 Tablet', 'Can the use of Linofast 600 Tablet cause diarrhea?', 'Yes, the use of Linofast 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17657, 'Linofast 600 Tablet', 'Astemax Biotech Pvt Ltd', 'Linofast 600 Tablet', 'What foods should I avoid while taking Linofast 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linofast 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17658, 'Linofic IV Injection', 'Gufic Bioscience Ltd', 'Linofic IV Injection', 'Can the use of Linofic IV Injection cause diarrhea?', 'Yes, the use of Linofic IV Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17659, 'Linofic IV Injection', 'Gufic Bioscience Ltd', 'Linofic IV Injection', 'What foods should I avoid while taking Linofic IV Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linofic IV Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(17660, 'Linofit 600mg Tablet', 'Morepen Laboratories Ltd', 'Linofit 600mg Tablet', 'Q. Can the use of Linofit 600mg Tablet cause diarrhea?', 'Yes, the use of Linofit 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17661, 'Linofit 600mg Tablet', 'Morepen Laboratories Ltd', 'Linofit 600mg Tablet', 'Q. What foods should I avoid while taking Linofit 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linofit 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17662, 'Linofit 600mg Tablet', 'Morepen Laboratories Ltd', 'Linofit 600mg Tablet', 'Can the use of Linofit 600mg Tablet cause diarrhea?', 'Yes, the use of Linofit 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17663, 'Linofit 600mg Tablet', 'Morepen Laboratories Ltd', 'Linofit 600mg Tablet', 'What foods should I avoid while taking Linofit 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linofit 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17664, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'What if I give an excess of Linofit DS 100mg by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17665, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linofit DS 100mg along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17666, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'What should I do if my child shows no improvement even after taking Linofit DS 100mg for the prescribed duration?', 'Ineffective treatment with Linofit DS 100mg could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17667, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'Can Linofit DS 100mg be given for a long duration?', 'Prolonged use of Linofit DS 100mg may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17668, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'Can other medicines be given at the same time as Linofit DS 100mg?', 'Linofit DS 100mg can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linofit DS 100mg. Also, check with your child’s doctor before giving any medicine to your child.'),
(17669, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'What lab tests that are required for monitoring while my child is taking Linofit DS 100mg?', 'For children receiving Linofit DS 100mg for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17670, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'In which disease conditions should I avoid giving Linofit DS 100mg to my child?', 'Avoid giving Linofit DS 100mg if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linofit DS 100mg to your child.'),
(17671, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'What food items should my child avoid while taking Linofit DS 100mg?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linofit DS 100mg. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17672, 'Linofit DS 100mg', 'Morepen Laboratories Ltd', 'Linofit DS 100mg', 'Can I get my child vaccinated while on treatment with Linofit DS 100mg?', 'It is advised not to get your child vaccinated while they are on treatment with Linofit DS 100mg. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17673, 'Linofrench 600mg Tablet', 'Anglo French Drugs & Industries Ltd', 'Linofrench 600mg Tablet', 'Can the use of Linofrench 600mg Tablet cause diarrhea?', 'Yes, the use of Linofrench 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17674, 'Linofrench 600mg Tablet', 'Anglo French Drugs & Industries Ltd', 'Linofrench 600mg Tablet', 'What foods should I avoid while taking Linofrench 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linofrench 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17675, 'Linogal 600mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Linogal 600mg Tablet', 'Can the use of Linogal 600mg Tablet cause diarrhea?', 'Yes, the use of Linogal 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17676, 'Linogal 600mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Linogal 600mg Tablet', 'What foods should I avoid while taking Linogal 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linogal 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17677, 'Linogem 600mg Tablet', 'Genetic Pharma', 'Linogem 600mg Tablet', 'Can the use of Linogem 600mg Tablet cause diarrhea?', 'Yes, the use of Linogem 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17678, 'Linogem 600mg Tablet', 'Genetic Pharma', 'Linogem 600mg Tablet', 'What foods should I avoid while taking Linogem 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linogem 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17679, 'Linogiv 600mg Tablet', 'Biofield Pharma', 'Linogiv 600mg Tablet', 'Can the use of Linogiv 600mg Tablet cause diarrhea?', 'Yes, the use of Linogiv 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17680, 'Linogiv 600mg Tablet', 'Biofield Pharma', 'Linogiv 600mg Tablet', 'What foods should I avoid while taking Linogiv 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linogiv 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17681, 'Linogram 600mg Tablet', 'Welgenic Pharma', 'Linogram 600mg Tablet', 'Can the use of Linogram 600mg Tablet cause diarrhea?', 'Yes, the use of Linogram 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17682, 'Linogram 600mg Tablet', 'Welgenic Pharma', 'Linogram 600mg Tablet', 'What foods should I avoid while taking Linogram 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linogram 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17683, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'What if I give an excess of Linohit 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17684, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linohit 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17685, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linohit 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linohit 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17686, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'Can Linohit 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linohit 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17687, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'Can other medicines be given at the same time as Linohit 100mg Dry Syrup?', 'Linohit 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linohit 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17688, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linohit 100mg Dry Syrup?', 'For children receiving Linohit 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17689, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linohit 100mg Dry Syrup to my child?', 'Avoid giving Linohit 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linohit 100mg Dry Syrup to your child.'),
(17690, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'What food items should my child avoid while taking Linohit 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linohit 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17691, 'Linohit 100mg Dry Syrup', 'Rosswelt Biosciences', 'Linohit 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linohit 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linohit 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17692, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'What if I give an excess of Linohost 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17693, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linohost 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17694, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linohost 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linohost 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17695, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'Can Linohost 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linohost 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17696, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'Can other medicines be given at the same time as Linohost 100mg Dry Syrup?', 'Linohost 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linohost 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17697, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linohost 100mg Dry Syrup?', 'For children receiving Linohost 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17698, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linohost 100mg Dry Syrup to my child?', 'Avoid giving Linohost 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linohost 100mg Dry Syrup to your child.'),
(17699, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'What food items should my child avoid while taking Linohost 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linohost 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17700, 'Linohost 100mg Dry Syrup', 'Maksun Biotech Pvt Ltd', 'Linohost 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linohost 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linohost 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17701, 'Linokast-M Tablet', 'Damizo Pharmaceuticals Pvt Ltd', 'Linokast-M Tablet', 'What is Linokast-M Tablet?', 'Linokast-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(17702, 'Linokast-M Tablet', 'Damizo Pharmaceuticals Pvt Ltd', 'Linokast-M Tablet', 'Can the use of Linokast-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Linokast-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(17703, 'Linokast-M Tablet', 'Damizo Pharmaceuticals Pvt Ltd', 'Linokast-M Tablet', 'Can Linokast-M Tablet be stopped when allergy symptoms are relieved?', 'No, Linokast-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(17704, 'Linokast-M Tablet', 'Damizo Pharmaceuticals Pvt Ltd', 'Linokast-M Tablet', 'Can the use of Linokast-M Tablet cause dry mouth?', 'Yes, the use of Linokast-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(17705, 'Linokast-M Tablet', 'Damizo Pharmaceuticals Pvt Ltd', 'Linokast-M Tablet', 'Can I drink alcohol while taking Linokast-M Tablet?', 'No, do not take alcohol while taking Linokast-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Linokast-M Tablet.'),
(17706, 'Linokast-M Tablet', 'Damizo Pharmaceuticals Pvt Ltd', 'Linokast-M Tablet', 'Will Linokast-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Linokast-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(17707, 'Linokast-M Tablet', 'Damizo Pharmaceuticals Pvt Ltd', 'Linokast-M Tablet', 'What are the instructions for storage and disposal of Linokast-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(17708, 'Linokem 600 Tablet', 'Alkem Laboratories Ltd', 'Linokem 600 Tablet', 'Can the use of Linokem 600 Tablet cause diarrhea?', 'Yes, the use of Linokem 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17709, 'Linokem 600 Tablet', 'Alkem Laboratories Ltd', 'Linokem 600 Tablet', 'What foods should I avoid while taking Linokem 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linokem 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17710, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'What if I give an excess of Linolet 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17711, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linolet 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17712, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linolet 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linolet 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17713, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'Can Linolet 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linolet 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17714, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'Can other medicines be given at the same time as Linolet 100mg Dry Syrup?', 'Linolet 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linolet 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17715, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linolet 100mg Dry Syrup?', 'For children receiving Linolet 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17716, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linolet 100mg Dry Syrup to my child?', 'Avoid giving Linolet 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linolet 100mg Dry Syrup to your child.'),
(17717, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'What food items should my child avoid while taking Linolet 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linolet 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17718, 'Linolet 100mg Dry Syrup', 'Ikon Remedies Pvt Ltd', 'Linolet 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linolet 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linolet 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17719, 'Linolet 600mg Infusion', 'Ikon Remedies Pvt Ltd', 'Linolet 600mg Infusion', 'Can the use of Linolet 600mg Infusion cause diarrhea?', 'Yes, the use of Linolet 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17720, 'Linolet 600mg Infusion', 'Ikon Remedies Pvt Ltd', 'Linolet 600mg Infusion', 'What foods should I avoid while taking Linolet 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linolet 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17721, 'Linolex 600mg Tablet', 'Lexus Organics', 'Linolex 600mg Tablet', 'Can the use of Linolex 600mg Tablet cause diarrhea?', 'Yes, the use of Linolex 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17722, 'Linolex 600mg Tablet', 'Lexus Organics', 'Linolex 600mg Tablet', 'What foods should I avoid while taking Linolex 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linolex 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17723, 'Linolid 600mg Tablet', 'N K Ethical Laboratories', 'Linolid 600mg Tablet', 'Can the use of Linolid 600mg Tablet cause diarrhea?', 'Yes, the use of Linolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17724, 'Linolid 600mg Tablet', 'N K Ethical Laboratories', 'Linolid 600mg Tablet', 'What foods should I avoid while taking Linolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17725, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'What if I give an excess of Linolim 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17726, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linolim 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17727, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linolim 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linolim 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17728, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'Can Linolim 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linolim 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17729, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'Can other medicines be given at the same time as Linolim 100mg Dry Syrup?', 'Linolim 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linolim 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17730, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linolim 100mg Dry Syrup?', 'For children receiving Linolim 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17731, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linolim 100mg Dry Syrup to my child?', 'Avoid giving Linolim 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linolim 100mg Dry Syrup to your child.'),
(17732, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'What food items should my child avoid while taking Linolim 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linolim 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17733, 'Linolim 100mg Dry Syrup', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linolim 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linolim 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17734, 'Linolim 600mg Tablet', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 600mg Tablet', 'Can the use of Linolim 600mg Tablet cause diarrhea?', 'Yes, the use of Linolim 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17735, 'Linolim 600mg Tablet', 'Westin Pharmaceuticals Pvt. Ltd', 'Linolim 600mg Tablet', 'What foods should I avoid while taking Linolim 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linolim 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17736, 'Linolix 600mg Tablet', 'Hauz Pharma Pvt Ltd', 'Linolix 600mg Tablet', 'Can the use of Linolix 600mg Tablet cause diarrhea?', 'Yes, the use of Linolix 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17737, 'Linolix 600mg Tablet', 'Hauz Pharma Pvt Ltd', 'Linolix 600mg Tablet', 'What foods should I avoid while taking Linolix 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linolix 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17738, 'Linomark 600mg Tablet', 'Mestra Pharma Pvt Ltd', 'Linomark 600mg Tablet', 'Can the use of Linomark 600mg Tablet cause diarrhea?', 'Yes, the use of Linomark 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17739, 'Linomark 600mg Tablet', 'Mestra Pharma Pvt Ltd', 'Linomark 600mg Tablet', 'What foods should I avoid while taking Linomark 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linomark 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17740, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'What if I give an excess of Linomark D 100mg Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17741, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linomark D 100mg Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17742, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'What should I do if my child shows no improvement even after taking Linomark D 100mg Syrup for the prescribed duration?', 'Ineffective treatment with Linomark D 100mg Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17743, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'Can Linomark D 100mg Syrup be given for a long duration?', 'Prolonged use of Linomark D 100mg Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17744, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'Can other medicines be given at the same time as Linomark D 100mg Syrup?', 'Linomark D 100mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linomark D 100mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17745, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'What lab tests that are required for monitoring while my child is taking Linomark D 100mg Syrup?', 'For children receiving Linomark D 100mg Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17746, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'In which disease conditions should I avoid giving Linomark D 100mg Syrup to my child?', 'Avoid giving Linomark D 100mg Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linomark D 100mg Syrup to your child.'),
(17747, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'What food items should my child avoid while taking Linomark D 100mg Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linomark D 100mg Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17748, 'Linomark D 100mg Syrup', 'Mestra Pharma Pvt Ltd', 'Linomark D 100mg Syrup', 'Can I get my child vaccinated while on treatment with Linomark D 100mg Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linomark D 100mg Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17749, 'Linomax 200mg Infusion', 'Venus Remedies Ltd', 'Linomax 200mg Infusion', 'Can the use of Linomax 200mg Infusion cause diarrhea?', 'Yes, the use of Linomax 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17750, 'Linomax 200mg Infusion', 'Venus Remedies Ltd', 'Linomax 200mg Infusion', 'What foods should I avoid while taking Linomax 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linomax 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17751, 'Linomet Tablet 500mg/5mg', 'Vilin Bio Med Ltd', 'Linomet Tablet 500mg/5mg', 'Can the use of Linomet Tablet 500mg/5mg cause lactic acidosis?', 'Yes, the use of Linomet Tablet 500mg/5mg can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linomet Tablet 500mg/5mg and immediately consult your doctor.'),
(17752, 'Linomet Tablet 500mg/5mg', 'Vilin Bio Med Ltd', 'Linomet Tablet 500mg/5mg', 'What are the possible side effects of Linomet Tablet 500mg/5mg?', 'The use of Linomet Tablet 500mg/5mg may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(17753, 'Linomet Tablet 500mg/5mg', 'Vilin Bio Med Ltd', 'Linomet Tablet 500mg/5mg', 'Are there any specific conditions in which Linomet Tablet 500mg/5mg should not be taken?', 'The use of Linomet Tablet 500mg/5mg should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Linomet Tablet 500mg/5mg.'),
(17754, 'Linomet Tablet 500mg/5mg', 'Vilin Bio Med Ltd', 'Linomet Tablet 500mg/5mg', 'Is it safe to take alcohol while I am also taking Linomet Tablet 500mg/5mg?', 'No, it is not safe to take Linomet Tablet 500mg/5mg along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(17755, 'Linomet Tablet 500mg/5mg', 'Vilin Bio Med Ltd', 'Linomet Tablet 500mg/5mg', 'What are the instructions for the storage and disposal of Linomet Tablet 500mg/5mg?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17756, 'Linomet Tablet 500mg/5mg', 'Vilin Bio Med Ltd', 'Linomet Tablet 500mg/5mg', 'Can the use of Linomet Tablet 500mg/5mg cause hypoglycemia?', 'The use of Linomet Tablet 500mg/5mg does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(17757, 'Linomet Tablet 500mg/5mg', 'Vilin Bio Med Ltd', 'Linomet Tablet 500mg/5mg', 'Can the use of Linomet Tablet 500mg/5mg lead to vitamin B12 deficiency?', 'Yes, long-term use of Linomet Tablet 500mg/5mg can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(17758, 'Linonet 600 Tablet', 'Rosnet Pharma', 'Linonet 600 Tablet', 'Can the use of Linonet 600 Tablet cause diarrhea?', 'Yes, the use of Linonet 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17759, 'Linonet 600 Tablet', 'Rosnet Pharma', 'Linonet 600 Tablet', 'What foods should I avoid while taking Linonet 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linonet 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17760, 'Linonex 200mg Infusion', 'Kritikos Care', 'Linonex 200mg Infusion', 'Can the use of Linonex 200mg Infusion cause diarrhea?', 'Yes, the use of Linonex 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17761, 'Linonex 200mg Infusion', 'Kritikos Care', 'Linonex 200mg Infusion', 'What foods should I avoid while taking Linonex 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linonex 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17762, 'Linonex 600mg Tablet', 'Kritikos Care', 'Linonex 600mg Tablet', 'Can the use of Linonex 600mg Tablet cause diarrhea?', 'Yes, the use of Linonex 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17763, 'Linonex 600mg Tablet', 'Kritikos Care', 'Linonex 600mg Tablet', 'What foods should I avoid while taking Linonex 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linonex 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17764, 'Linonix 600 Tablet', 'Saphnix Life Sciences', 'Linonix 600 Tablet', 'Q. Can the use of Linonix 600 Tablet cause diarrhea?', 'Yes, the use of Linonix 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17765, 'Linonix 600 Tablet', 'Saphnix Life Sciences', 'Linonix 600 Tablet', 'Q. What foods should I avoid while taking Linonix 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linonix 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17766, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'What is Linopar Tablet used for?', 'Linopar Tablet is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis, or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Linopar Tablet also prevents acidity associated with the use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES).'),
(17767, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'How long does it take for Linopar Tablet to work?', 'Linopar Tablet starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(17768, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'What is the best time to take Linopar Tablet?', 'It is best to take Linopar Tablet before your breakfast. If you are taking two doses, take it in the morning and evening. Linopar Tablet is more effective when it is taken an hour before your food.'),
(17769, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'Can I stop taking Linopar Tablet if I feel better?', 'No, do not stop taking Linopar Tablet before completing the full course of treatment. You will start to feel better before your treatment is complete.'),
(17770, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'Does Linopar Tablet cause bone problems?', 'Yes, long-term use of Linopar Tablet can cause thinning of bones, which is called osteoporosis. Linopar Tablet decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(17771, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'How is Linopar Tablet useful in the treatment of H. pylori infection?', 'Linopar Tablet is used along with antibiotics for the treatment of H.Pylori infection. It works by decreasing stomach acid volume and decreasing breakdown and washout of antibiotics leading to an increased antibiotic concentration and tissue penetration. It also helps in symptomatic relief by decreasing associated acidity, reflux, and heartburn.'),
(17772, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'Can I take Linopar Tablet with vitamin D?', 'Yes, vitamin D can be taken along with Linopar Tablet. Vitamin D is generally advised to be taken as a supplement with Linopar Tablet as the long-term use of Linopar Tablet decreases the absorption of calcium and may lead to calcium deficiency. This can lead to osteoporosis (thinning of bones) and increase the risk of bone fractures like hip, wrist, and spine fractures. Please consult your doctor to know about ways to prevent this.'),
(17773, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'Can long term use of Linopar Tablet cause magnesium deficiency?', 'Long-term use of Linopar Tablet can lower magnesium levels in patients taking multiple daily doses for 3 months or longer. Get your magnesium levels checked at regular intervals. Tell your doctor if you experience seizures (fits), dizziness, abnormal or fast heartbeat, jitteriness, jerking movements or shaking (tremors), muscle weakness, spasms of the hands and feet, cramps, muscle aches.'),
(17774, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'Is it safe to use Linopar Tablet for a long period of time?', 'Linopar Tablet should be used for as long as it has been prescribed by your doctor. Linopar Tablet is usually considered to be safe when taken in the recommended dose and duration. If Linopar Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood, making you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, subacute cutaneous lupus erythematosus, osteoporosis, and vitamin B12 deficiency.'),
(17775, 'Linopar Tablet', 'Linus Medi Sciences Pvt Ltd', 'Linopar Tablet', 'Can I take alcohol with Linopar Tablet?', 'No, alcohol intake is not advised with Linopar Tablet. Alcohol itself does not affect the working of Linopar Tablet, but it can increase acid production. This may further cause worsening of your symptoms.'),
(17776, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'What is Linopar-D Capsule SR?', 'Linopar-D Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(17777, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'What are the contraindications of Linopar-D Capsule SR?', 'The use of Linopar-D Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(17778, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'Can the use of Linopar-D Capsule SR cause dry mouth?', 'Yes, the use of Linopar-D Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(17779, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'Can the use of Linopar-D Capsule SR cause diarrhea?', 'Yes, the use of Linopar-D Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(17780, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'What is the recommended storage condition for Linopar-D Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(17781, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'Is it safe to use Linopar-D Capsule SR?', 'Yes, Linopar-D Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(17782, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'What is the best time to take Linopar-D Capsule SR?', 'It is best to take Linopar-D Capsule SR before the first meal of the day or on an empty stomach.'),
(17783, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'Can the use of Linopar-D Capsule SR cause abnormal heartbeat?', 'Yes, the use of Linopar-D Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(17784, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'What is Linopar-D Capsule SR?', 'Linopar-D Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(17785, 'Linopar-D Capsule SR', 'Linus Medi Sciences Pvt Ltd', 'Linopar-D Capsule SR', 'What are the contraindications of Linopar-D Capsule SR?', 'The use of Linopar-D Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(17786, 'Linopik 600mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Linopik 600mg Tablet', 'Can the use of Linopik 600mg Tablet cause diarrhea?', 'Yes, the use of Linopik 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17787, 'Linopik 600mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Linopik 600mg Tablet', 'What foods should I avoid while taking Linopik 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linopik 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17788, 'Linopik OD Tablet SR', 'Auxiliare Healthcare Pvt Ltd', 'Linopik OD Tablet SR', 'Can the use of Linopik OD Tablet SR cause diarrhea?', 'Yes, the use of Linopik OD Tablet SR can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17789, 'Linopik OD Tablet SR', 'Auxiliare Healthcare Pvt Ltd', 'Linopik OD Tablet SR', 'What foods should I avoid while taking Linopik OD Tablet SR?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linopik OD Tablet SR can result in elevation of blood pressure, which may result in an emergency situation.'),
(17790, 'Linoplus 2mg/ml Infusion', 'Abbott', 'Linoplus 2mg/ml Infusion', 'Can the use of Linoplus 2mg/ml Infusion cause diarrhea?', 'Yes, the use of Linoplus 2mg/ml Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17791, 'Linoplus 2mg/ml Infusion', 'Abbott', 'Linoplus 2mg/ml Infusion', 'What foods should I avoid while taking Linoplus 2mg/ml Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoplus 2mg/ml Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17792, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'What is Linopril 2.5mg Tablet? What is it used for?', 'Linopril 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(17793, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'What should I tell my doctor before taking Linopril 2.5mg Tablet?', 'Before taking Linopril 2.5mg Tablet you must tell your doctor if you are allergic to Linopril 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Linopril 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(17794, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'What time of the day should I take Linopril 2.5mg Tablet?', 'Linopril 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Linopril 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Linopril 2.5mg Tablet, please consult your doctor.'),
(17795, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'I feel better after taking Linopril 2.5mg Tablet, can I stop taking it?', 'No, continue taking Linopril 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Linopril 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(17796, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'Will Linopril 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Linopril 2.5mg Tablet may make you feel dizzy or lightheaded. If Linopril 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(17797, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'What other lifestyle changes should I make while taking Linopril 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Linopril 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Linopril 2.5mg Tablet and to keep yourself healthy.'),
(17798, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'I have diabetes. Does Linopril 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Linopril 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(17799, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'After starting Linopril 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Linopril 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Linopril 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Linopril 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(17800, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'Can Linopril 2.5mg Tablet affect my fertility?', 'There is no evidence that Linopril 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Linopril 2.5mg Tablet is not recommended in pregnancy.'),
(17801, 'Linopril 2.5mg Tablet', 'East West Pharma', 'Linopril 2.5mg Tablet', 'Can Linopril 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Linopril 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Linopril 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(17802, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'What is Linopril 5mg Tablet? What is it used for?', 'Linopril 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(17803, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'What should I tell my doctor before taking Linopril 5mg Tablet?', 'Before taking Linopril 5mg Tablet you must tell your doctor if you are allergic to Linopril 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Linopril 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(17804, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'What time of the day should I take Linopril 5mg Tablet?', 'Linopril 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Linopril 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Linopril 5mg Tablet, please consult your doctor.'),
(17805, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'I feel better after taking Linopril 5mg Tablet, can I stop taking it?', 'No, continue taking Linopril 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Linopril 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(17806, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'Will Linopril 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Linopril 5mg Tablet may make you feel dizzy or lightheaded. If Linopril 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(17807, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'What other lifestyle changes should I make while taking Linopril 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Linopril 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Linopril 5mg Tablet and to keep yourself healthy.'),
(17808, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'I have diabetes. Does Linopril 5mg Tablet have any effect on blood sugar levels?', 'Yes, Linopril 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(17809, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'After starting Linopril 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Linopril 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Linopril 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Linopril 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(17810, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'Can Linopril 5mg Tablet affect my fertility?', 'There is no evidence that Linopril 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Linopril 5mg Tablet is not recommended in pregnancy.'),
(17811, 'Linopril 5mg Tablet', 'East West Pharma', 'Linopril 5mg Tablet', 'Can Linopril 5mg Tablet increase potassium levels? If so, what should be done?', 'Linopril 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Linopril 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17812, 'Linoprim 600mg Tablet', 'Estrellas Life Sciences Pvt. Ltd.', 'Linoprim 600mg Tablet', 'Can the use of Linoprim 600mg Tablet cause diarrhea?', 'Yes, the use of Linoprim 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17813, 'Linoprim 600mg Tablet', 'Estrellas Life Sciences Pvt. Ltd.', 'Linoprim 600mg Tablet', 'What foods should I avoid while taking Linoprim 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoprim 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17814, 'Linorex Tablet', 'Muffin Biotech', 'Linorex Tablet', 'Can the use of Linorex Tablet cause diarrhea?', 'Yes, the use of Linorex Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17815, 'Linorex Tablet', 'Muffin Biotech', 'Linorex Tablet', 'What foods should I avoid while taking Linorex Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linorex Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17816, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'What is Linoril 2.5mg Tablet? What is it used for?', 'Linoril 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(17817, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'What should I tell my doctor before taking Linoril 2.5mg Tablet?', 'Before taking Linoril 2.5mg Tablet you must tell your doctor if you are allergic to Linoril 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Linoril 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(17818, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'What time of the day should I take Linoril 2.5mg Tablet?', 'Linoril 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Linoril 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Linoril 2.5mg Tablet, please consult your doctor.'),
(17819, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'I feel better after taking Linoril 2.5mg Tablet, can I stop taking it?', 'No, continue taking Linoril 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Linoril 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(17820, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'Will Linoril 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Linoril 2.5mg Tablet may make you feel dizzy or lightheaded. If Linoril 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(17821, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'What other lifestyle changes should I make while taking Linoril 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Linoril 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Linoril 2.5mg Tablet and to keep yourself healthy.'),
(17822, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'I have diabetes. Does Linoril 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Linoril 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(17823, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'After starting Linoril 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Linoril 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Linoril 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Linoril 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(17824, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'Can Linoril 2.5mg Tablet affect my fertility?', 'There is no evidence that Linoril 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Linoril 2.5mg Tablet is not recommended in pregnancy.'),
(17825, 'Linoril 2.5mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 2.5mg Tablet', 'Can Linoril 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Linoril 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Linoril 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(17826, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'What is Linoril 20mg Tablet? What is it used for?', 'Linoril 20mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(17827, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'What should I tell my doctor before taking Linoril 20mg Tablet?', 'Before taking Linoril 20mg Tablet you must tell your doctor if you are allergic to Linoril 20mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Linoril 20mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(17828, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'What time of the day should I take Linoril 20mg Tablet?', 'Linoril 20mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Linoril 20mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Linoril 20mg Tablet, please consult your doctor.'),
(17829, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'I feel better after taking Linoril 20mg Tablet, can I stop taking it?', 'No, continue taking Linoril 20mg Tablet even if you feel better and your blood pressure is under control. Stopping Linoril 20mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(17830, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'Will Linoril 20mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Linoril 20mg Tablet may make you feel dizzy or lightheaded. If Linoril 20mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(17831, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'What other lifestyle changes should I make while taking Linoril 20mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Linoril 20mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Linoril 20mg Tablet and to keep yourself healthy.'),
(17832, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'I have diabetes. Does Linoril 20mg Tablet have any effect on blood sugar levels?', 'Yes, Linoril 20mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(17833, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'After starting Linoril 20mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Linoril 20mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Linoril 20mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Linoril 20mg Tablet, the cough may take a few days to a month to resolve completely.'),
(17834, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'Can Linoril 20mg Tablet affect my fertility?', 'There is no evidence that Linoril 20mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Linoril 20mg Tablet is not recommended in pregnancy.'),
(17835, 'Linoril 20mg Tablet', 'Klintoz Pharmaceuticals Pvt Ltd', 'Linoril 20mg Tablet', 'Can Linoril 20mg Tablet increase potassium levels? If so, what should be done?', 'Linoril 20mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Linoril 20mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(17836, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'What is Linoril 5mg Tablet? What is it used for?', 'Linoril 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(17837, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'What should I tell my doctor before taking Linoril 5mg Tablet?', 'Before taking Linoril 5mg Tablet you must tell your doctor if you are allergic to Linoril 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Linoril 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(17838, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'What time of the day should I take Linoril 5mg Tablet?', 'Linoril 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Linoril 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Linoril 5mg Tablet, please consult your doctor.'),
(17839, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'I feel better after taking Linoril 5mg Tablet, can I stop taking it?', 'No, continue taking Linoril 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Linoril 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(17840, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'Will Linoril 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Linoril 5mg Tablet may make you feel dizzy or lightheaded. If Linoril 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(17841, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'What other lifestyle changes should I make while taking Linoril 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Linoril 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Linoril 5mg Tablet and to keep yourself healthy.'),
(17842, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'I have diabetes. Does Linoril 5mg Tablet have any effect on blood sugar levels?', 'Yes, Linoril 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(17843, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'After starting Linoril 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Linoril 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Linoril 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Linoril 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(17844, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'Can Linoril 5mg Tablet affect my fertility?', 'There is no evidence that Linoril 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Linoril 5mg Tablet is not recommended in pregnancy.'),
(17845, 'Linoril 5mg Tablet', 'Excare Laboratories', 'Linoril 5mg Tablet', 'Can Linoril 5mg Tablet increase potassium levels? If so, what should be done?', 'Linoril 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Linoril 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(17846, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'What if I give an excess of Linoriz 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17847, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linoriz 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17848, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linoriz 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linoriz 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17849, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'Can Linoriz 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linoriz 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17850, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'Can other medicines be given at the same time as Linoriz 100mg Dry Syrup?', 'Linoriz 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linoriz 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17851, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linoriz 100mg Dry Syrup?', 'For children receiving Linoriz 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17852, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linoriz 100mg Dry Syrup to my child?', 'Avoid giving Linoriz 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linoriz 100mg Dry Syrup to your child.'),
(17853, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'What food items should my child avoid while taking Linoriz 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linoriz 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17854, 'Linoriz 100mg Dry Syrup', 'Tansy Molequle', 'Linoriz 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linoriz 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linoriz 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17855, 'Linoriz 600mg Tablet', 'Tansy Molequle', 'Linoriz 600mg Tablet', 'Can the use of Linoriz 600mg Tablet cause diarrhea?', 'Yes, the use of Linoriz 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17856, 'Linoriz 600mg Tablet', 'Tansy Molequle', 'Linoriz 600mg Tablet', 'What foods should I avoid while taking Linoriz 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoriz 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17857, 'Linorma T3 20mcg Tablet', 'Abbott', 'Linorma T3 20mcg Tablet', 'What is the best time to take Linorma T3 20mcg Tablet?', 'It is best to take Linorma T3 20mcg Tablet on an empty stomach, at least 30 minutes before or 2 hours after food. Follow the directions on the prescription label. Take it at the same time each day and do not take it more often than directed.'),
(17858, 'Linorma T3 20mcg Tablet', 'Abbott', 'Linorma T3 20mcg Tablet', 'Does Linorma T3 20mcg Tablet raise blood sugar?', 'Yes, Linorma T3 20mcg Tablet may worsen blood sugar levels and thus increase the need of antidiabetic medications in patients with diabetes. Carefully monitor your blood sugar level while taking this drug.'),
(17859, 'Linorma T3 20mcg Tablet', 'Abbott', 'Linorma T3 20mcg Tablet', 'Can Linorma T3 20mcg Tablet be used for weight loss?', 'No, Linorma T3 20mcg Tablet should not be used to treat obesity or for weight loss. It is ineffective for weight reduction and when taken in larger amounts, may cause more serious side effects.'),
(17860, 'Linorma T3 20mcg Tablet', 'Abbott', 'Linorma T3 20mcg Tablet', 'Can Linorma T3 20mcg Tablet be taken at night?', 'Yes, you can take your thyroid medication at night, as long as you are taking it on an empty stomach.'),
(17861, 'Linorma T3 20mcg Tablet', 'Abbott', 'Linorma T3 20mcg Tablet', 'Does Linorma T3 20mcg Tablet cause hair loss?', 'Yes, while taking this medicine, your hair may become brittle, break, or fall from the roots. These conditions tend to resolve once the treatment is stopped. Be gentle when brushing and washing hair to manage hair loss.'),
(17862, 'Linorma T3 20mcg Tablet', 'Abbott', 'Linorma T3 20mcg Tablet', 'Can Linorma T3 20mcg Tablet be given during pregnancy?', 'Pregnancy may increase Linorma T3 20mcg Tablet requirements. Serum thyroid stimulating hormone levels should be monitored and the dosage should be adjusted during pregnancy.'),
(17863, 'Linorma T3 20mcg Tablet', 'Abbott', 'Linorma T3 20mcg Tablet', 'How to get relief from diarrhea while on treatment with Linorma T3 20mcg Tablet?', 'Food items with soluble fiber can help relieve diarrhea as they help absorb excess fluid from the body. These food items include bananas (ripe), oranges, boiled potatoes, white rice, curd, and oatmeal. Diarrhea can also cause dehydration in the body, so drink 8-10 glasses of water to avoid it. You can also have soups and juices frequently to hydrate yourself.'),
(17864, 'Linorma T3 5mcg Tablet', 'Abbott', 'Linorma T3 5mcg Tablet', 'What is the best time to take Linorma T3 5mcg Tablet?', 'It is best to take Linorma T3 5mcg Tablet on an empty stomach, at least 30 minutes before or 2 hours after food. Follow the directions on the prescription label. Take it at the same time each day and do not take it more often than directed.'),
(17865, 'Linorma T3 5mcg Tablet', 'Abbott', 'Linorma T3 5mcg Tablet', 'Does Linorma T3 5mcg Tablet raise blood sugar?', 'Yes, Linorma T3 5mcg Tablet may worsen blood sugar levels and thus increase the need of antidiabetic medications in patients with diabetes. Carefully monitor your blood sugar level while taking this drug.'),
(17866, 'Linorma T3 5mcg Tablet', 'Abbott', 'Linorma T3 5mcg Tablet', 'Can Linorma T3 5mcg Tablet be used for weight loss?', 'No, Linorma T3 5mcg Tablet should not be used to treat obesity or for weight loss. It is ineffective for weight reduction and when taken in larger amounts, may cause more serious side effects.'),
(17867, 'Linorma T3 5mcg Tablet', 'Abbott', 'Linorma T3 5mcg Tablet', 'Can Linorma T3 5mcg Tablet be taken at night?', 'Yes, you can take your thyroid medication at night, as long as you are taking it on an empty stomach.'),
(17868, 'Linorma T3 5mcg Tablet', 'Abbott', 'Linorma T3 5mcg Tablet', 'Does Linorma T3 5mcg Tablet cause hair loss?', 'Yes, while taking this medicine, your hair may become brittle, break, or fall from the roots. These conditions tend to resolve once the treatment is stopped. Be gentle when brushing and washing hair to manage hair loss.'),
(17869, 'Linorma T3 5mcg Tablet', 'Abbott', 'Linorma T3 5mcg Tablet', 'Can Linorma T3 5mcg Tablet be given during pregnancy?', 'Pregnancy may increase Linorma T3 5mcg Tablet requirements. Serum thyroid stimulating hormone levels should be monitored and the dosage should be adjusted during pregnancy.'),
(17870, 'Linorma T3 5mcg Tablet', 'Abbott', 'Linorma T3 5mcg Tablet', 'How to get relief from diarrhea while on treatment with Linorma T3 5mcg Tablet?', 'Food items with soluble fiber can help relieve diarrhea as they help absorb excess fluid from the body. These food items include bananas (ripe), oranges, boiled potatoes, white rice, curd, and oatmeal. Diarrhea can also cause dehydration in the body, so drink 8-10 glasses of water to avoid it. You can also have soups and juices frequently to hydrate yourself.'),
(17871, 'Linorma T3 Tablet', 'Abbott', 'Linorma T3 Tablet', 'Q. What is the best time to take Linorma T3 Tablet?', 'It is best to take Linorma T3 Tablet on an empty stomach, at least 30 minutes before or 2 hours after food. Follow the directions on the prescription label. Take it at the same time each day and do not take it more often than directed.'),
(17872, 'Linorma T3 Tablet', 'Abbott', 'Linorma T3 Tablet', 'Q. Does Linorma T3 Tablet raise blood sugar?', 'Yes, Linorma T3 Tablet may worsen blood sugar levels and thus increase the need of antidiabetic medications in patients with diabetes. Carefully monitor your blood sugar level while taking this drug.'),
(17873, 'Linorma T3 Tablet', 'Abbott', 'Linorma T3 Tablet', 'Q. Can Linorma T3 Tablet be used for weight loss?', 'No, Linorma T3 Tablet should not be used to treat obesity or for weight loss. It is ineffective for weight reduction and when taken in larger amounts, may cause more serious side effects.'),
(17874, 'Linorma T3 Tablet', 'Abbott', 'Linorma T3 Tablet', 'Q. Can Linorma T3 Tablet be taken at night?', 'Yes, you can take your thyroid medication at night, as long as you are taking it on an empty stomach.'),
(17875, 'Linorma T3 Tablet', 'Abbott', 'Linorma T3 Tablet', 'Q. Does Linorma T3 Tablet cause hair loss?', 'Yes, while taking this medicine, your hair may become brittle, break, or fall from the roots. These conditions tend to resolve once the treatment is stopped. Be gentle when brushing and washing hair to manage hair loss.'),
(17876, 'Linorma T3 Tablet', 'Abbott', 'Linorma T3 Tablet', 'Q. Can Linorma T3 Tablet be given during pregnancy?', 'Pregnancy may increase Linorma T3 Tablet requirements. Serum thyroid stimulating hormone levels should be monitored and the dosage should be adjusted during pregnancy.'),
(17877, 'Linorma T3 Tablet', 'Abbott', 'Linorma T3 Tablet', 'Q. How to get relief from diarrhea while on treatment with Linorma T3 Tablet?', 'Food items with soluble fiber can help relieve diarrhea as they help absorb excess fluid from the body. These food items include bananas (ripe), oranges, boiled potatoes, white rice, curd, and oatmeal. Diarrhea can also cause dehydration in the body, so drink 8-10 glasses of water to avoid it. You can also have soups and juices frequently to hydrate yourself.'),
(17878, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'Should Linortel 40mg Tablet be taken in the morning or at night?', 'Linortel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(17879, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'How long does it take for Linortel 40mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(17880, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'My blood pressure is now controlled. Can I stop taking Linortel 40mg Tablet now?', 'No, do not stop taking Linortel 40mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Linortel 40mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(17881, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'If I have some kidney problem, can I take Linortel 40mg Tablet? Can it further deteriorate my kidney function?', 'You can take Linortel 40mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Linortel 40mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(17882, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'I am overweight and the doctor has prescribed me Linortel 40mg Tablet for blood pressure control. I am bothered that Linortel 40mg Tablet can increase my weight. Is it true?', 'No, do not worry since Linortel 40mg Tablet is not known to cause weight gain. In fact in animal studies Linortel 40mg Tablet has been found to decrease fat tissue.'),
(17883, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'Does Linortel 40mg Tablet affect blood glucose levels in diabetics?', 'Linortel 40mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(17884, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'Can the use of Linortel 40mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Linortel 40mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(17885, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'Does Linortel 40mg Tablet work by causing excessive urination?', 'No, Linortel 40mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Linortel 40mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(17886, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Linortel 40mg Tablet together?', 'If you are taking ibuprofen and Linortel 40mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Linortel 40mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Linortel 40mg Tablet for heart failure. Ibuprofen may interfere with the working of Linortel 40mg Tablet and decrease its efficiency at lowering blood pressure.'),
(17887, 'Linortel 40mg Tablet', 'Lino Morgan Pharmaceuticals', 'Linortel 40mg Tablet', 'Should Linortel 40mg Tablet be taken in the morning or at night?', 'Linortel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(17888, 'Linosaf 600 Tablet', 'Avyukt Pharmaceuticals', 'Linosaf 600 Tablet', 'Can the use of Linosaf 600 Tablet cause diarrhea?', 'Yes, the use of Linosaf 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17889, 'Linosaf 600 Tablet', 'Avyukt Pharmaceuticals', 'Linosaf 600 Tablet', 'What foods should I avoid while taking Linosaf 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linosaf 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17890, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'Is Linoscab Lotion lotion available over-the-counter?', 'No. Linoscab Lotion is not available over-the-counter. It is sold only upon the prescription by a registered medical practitioner'),
(17891, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'Does Linoscab Lotion kill scabies, lice eggs, and nits?', 'Yes. Linoscab Lotion does kill scabies, lice eggs and nits. However, if you do not see any effects, do not use Linoscab Lotion more than once and consult the doctor'),
(17892, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'Is Linoscab Lotion lotion safe?', 'Linoscab Lotion is safe when used at prescribed dose and duration as recommended doctor.'),
(17893, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'What is Linoscab Lotion used for?', 'Linoscab Lotion is used to treat scabies and to relieve itching and skin irritation associated with sunburn, dry eczema (type of itchy skin rash), dermatitis (red and itchy skin), allergic rashes, hives, nettle rash, chickenpox, heat rashes, personal itching, insect bites and stings.'),
(17894, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'How should Linoscab Lotion be applied?', 'You should remove all of the make-up. Wash your hands and the affected area and gently dry. Put a thin layer of Linoscab Lotion cream on the affected skin, using your fingertips. Apply it to the entire area affected by acne, not just each spot. Remember, it is important to wash your hands before and after applying Linoscab Lotion.'),
(17895, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'Should Linoscab Lotion be left on overnight?', 'At the beginning of the treatment, Linoscab Lotion is usually used once daily in the evening. The area should not be washed after applying Linoscab Lotion. Leave it overnight unless you experience irritation. However, if you experience irritation, consult your doctor.'),
(17896, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'What should prompt me to discontinue Linoscab Lotion?', 'If you experience severe local irritation, which means severe redness, dryness and itching and stinging/burning sensation, discontinue the medicine and consult the doctor.'),
(17897, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'What precautions should be followed while applying Linoscab Lotion?', 'Use Linoscab Lotion only on your skin. Keep it away from your eyes, eyelids, lips, mouth and inside of the nose. If the medicine comes in contact with any of these areas, wash the affected area with water immediately. Avoid using Linoscab Lotion on scratched or eroded skin and open wounds. Take care when using Linoscab Lotion on sensitive areas of skin such as your neck. This is because Linoscab Lotion can make your skin more sensitive to the harmful effects of the sunlight. So, avoid the use of sunbeds/lamps and minimize the time you spend in the sun. You should use sunscreen and wear protective clothing while using Linoscab Lotion. Avoid contact with hair as Linoscab Lotion has strong bleaching properties. Consult your doctor for any other query related to Linoscab Lotion.'),
(17898, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'How often should I apply Linoscab Lotion?', 'The initial dose is preferably once daily in the evening. Later, the doctor will gradually increase the dose to twice daily (most probably morning and evening) depending upon the requirement.'),
(17899, 'Linoscab Lotion', 'Admit Pharmaceuticals Pvt Ltd', 'Linoscab Lotion', 'How long does Linoscab Lotion take to show its effects?', 'You may see an improvement after 4-6 weeks of treatment. You may need to use this treatment for a longer duration to gain maximum benefit. Do not worry, this is normal for acne treatments. If your acne does not get better after 1 month or if it gets worse, talk to your doctor immediately.'),
(17900, 'Linoseep 600mg Tablet', 'Seepi Pharma Pvt Ltd', 'Linoseep 600mg Tablet', 'Can the use of Linoseep 600mg Tablet cause diarrhea?', 'Yes, the use of Linoseep 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17901, 'Linoseep 600mg Tablet', 'Seepi Pharma Pvt Ltd', 'Linoseep 600mg Tablet', 'What foods should I avoid while taking Linoseep 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoseep 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17902, 'Linosept 200mg Infusion', 'Micro Labs Ltd', 'Linosept 200mg Infusion', 'Can the use of Linosept 200mg Infusion cause diarrhea?', 'Yes, the use of Linosept 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17903, 'Linosept 200mg Infusion', 'Micro Labs Ltd', 'Linosept 200mg Infusion', 'What foods should I avoid while taking Linosept 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linosept 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17904, 'Linoson 600mg Injection', 'Adison Laboratories', 'Linoson 600mg Injection', 'What if I don\'t get better after using Linoson 600mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17905, 'Linoson 600mg Injection', 'Adison Laboratories', 'Linoson 600mg Injection', 'Can the use of Linoson 600mg Injection cause diarrhea?', 'Yes, the use of Linoson 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17906, 'Linoson 600mg Injection', 'Adison Laboratories', 'Linoson 600mg Injection', 'How long does Linoson 600mg Injection take to work?', 'Usually, Linoson 600mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17907, 'Linoson 600mg Injection', 'Adison Laboratories', 'Linoson 600mg Injection', 'How is Linoson 600mg Injection administered?', 'Linoson 600mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linoson 600mg Injection.'),
(17908, 'Linoson 600mg Injection', 'Adison Laboratories', 'Linoson 600mg Injection', 'Is Linoson 600mg Injection effective?', 'Linoson 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linoson 600mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linoson 600mg Injection too early, the symptoms may return or worsen.'),
(17909, 'Linoson 600mg Injection', 'Adison Laboratories', 'Linoson 600mg Injection', 'Is Linoson 600mg Injection safe?', 'Linoson 600mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(17910, 'Linospan 200mg Infusion', 'Cipla Ltd', 'Linospan 200mg Infusion', 'Can the use of Linospan 200mg Infusion cause diarrhea?', 'Yes, the use of Linospan 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17911, 'Linospan 200mg Infusion', 'Cipla Ltd', 'Linospan 200mg Infusion', 'What foods should I avoid while taking Linospan 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linospan 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17912, 'Linospan 600 Tablet', 'Cipla Ltd', 'Linospan 600 Tablet', 'Q. Can the use of Linospan 600 Tablet cause diarrhea?', 'Yes, the use of Linospan 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17913, 'Linospan 600 Tablet', 'Cipla Ltd', 'Linospan 600 Tablet', 'Q. What foods should I avoid while taking Linospan 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linospan 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17914, 'Linospan 600mg Infusion', 'Cipla Ltd', 'Linospan 600mg Infusion', 'Can the use of Linospan 600mg Infusion cause diarrhea?', 'Yes, the use of Linospan 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17915, 'Linospan 600mg Infusion', 'Cipla Ltd', 'Linospan 600mg Infusion', 'What foods should I avoid while taking Linospan 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linospan 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(17916, 'Linostat 600mg Tablet', 'Systacare Remedies', 'Linostat 600mg Tablet', 'Can the use of Linostat 600mg Tablet cause diarrhea?', 'Yes, the use of Linostat 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17917, 'Linostat 600mg Tablet', 'Systacare Remedies', 'Linostat 600mg Tablet', 'What foods should I avoid while taking Linostat 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linostat 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17918, 'Linosyn 600mg Infusion', 'Synonn Lifesciences Ltd', 'Linosyn 600mg Infusion', 'Can the use of Linosyn 600mg Infusion cause diarrhea?', 'Yes, the use of Linosyn 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17919, 'Linosyn 600mg Infusion', 'Synonn Lifesciences Ltd', 'Linosyn 600mg Infusion', 'What foods should I avoid while taking Linosyn 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linosyn 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17920, 'Linotic 600mg Tablet', 'Vistica Life Sciences', 'Linotic 600mg Tablet', 'Can the use of Linotic 600mg Tablet cause diarrhea?', 'Yes, the use of Linotic 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17921, 'Linotic 600mg Tablet', 'Vistica Life Sciences', 'Linotic 600mg Tablet', 'What foods should I avoid while taking Linotic 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linotic 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17922, 'Linotic-IV Infusion', 'Vistica Life Sciences', 'Linotic-IV Infusion', 'Can the use of Linotic-IV Infusion cause diarrhea?', 'Yes, the use of Linotic-IV Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17923, 'Linotic-IV Infusion', 'Vistica Life Sciences', 'Linotic-IV Infusion', 'What foods should I avoid while taking Linotic-IV Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linotic-IV Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(17924, 'Linotop 600mg Tablet', 'Itelic Labs', 'Linotop 600mg Tablet (Itelic Labs)', 'Q. Can the use of Linotop 600mg Tablet cause diarrhea?', 'Yes, the use of Linotop 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17925, 'Linotop 600mg Tablet', 'Itelic Labs', 'Linotop 600mg Tablet (Itelic Labs)', 'Q. What foods should I avoid while taking Linotop 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linotop 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17926, 'Linotop 600mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Linotop 600mg Tablet (Atlina Life Sciences (OPC) Pvt Ltd)', 'Can the use of Linotop 600mg Tablet cause diarrhea?', 'Yes, the use of Linotop 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17927, 'Linotop 600mg Tablet', 'Atlina Life Sciences (OPC) Pvt Ltd', 'Linotop 600mg Tablet (Atlina Life Sciences (OPC) Pvt Ltd)', 'What foods should I avoid while taking Linotop 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linotop 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17928, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'What if I give an excess of Linotrik 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17929, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linotrik 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17930, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linotrik 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linotrik 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(17931, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'Can Linotrik 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linotrik 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(17932, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'Can other medicines be given at the same time as Linotrik 100mg Dry Syrup?', 'Linotrik 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linotrik 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(17933, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linotrik 100mg Dry Syrup?', 'For children receiving Linotrik 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(17934, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linotrik 100mg Dry Syrup to my child?', 'Avoid giving Linotrik 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linotrik 100mg Dry Syrup to your child.'),
(17935, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'What food items should my child avoid while taking Linotrik 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linotrik 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(17936, 'Linotrik 100mg Dry Syrup', 'Aronex Life Sciences Pvt Ltd', 'Linotrik 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linotrik 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linotrik 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(17937, 'Linotril 0.25mg Tablet', 'Linux Laboratories', 'Linotril 0.25mg Tablet', 'Is Linotril 0.25mg Tablet a sleeping pill?', 'Linotril 0.25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(17938, 'Linotril 0.25mg Tablet', 'Linux Laboratories', 'Linotril 0.25mg Tablet', 'Does Linotril 0.25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Linotril 0.25mg Tablet?', 'Yes, Linotril 0.25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Linotril 0.25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(17939, 'Linotril 0.25mg Tablet', 'Linux Laboratories', 'Linotril 0.25mg Tablet', 'For how long should I take Linotril 0.25mg Tablet?', 'The duration of treatment with Linotril 0.25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(17940, 'Linotril 0.25mg Tablet', 'Linux Laboratories', 'Linotril 0.25mg Tablet', 'Is it safe to take Linotril 0.25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Linotril 0.25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Linotril 0.25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(17941, 'Linotril 0.25mg Tablet', 'Linux Laboratories', 'Linotril 0.25mg Tablet', 'Is Linotril 0.25mg Tablet addictive?', 'People taking Linotril 0.25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Linotril 0.25mg Tablet. Therefore, Linotril 0.25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(17942, 'Linotril 0.25mg Tablet', 'Linux Laboratories', 'Linotril 0.25mg Tablet', 'Can I stop taking Linotril 0.25mg Tablet if I start feeling better?', 'No, do not stop taking Linotril 0.25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(17943, 'Linotril 0.25mg Tablet', 'Linux Laboratories', 'Linotril 0.25mg Tablet', 'Are there any foods we need to avoid while taking Linotril 0.25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Linotril 0.25mg Tablet. This is because caffeine stimulates your brain and Linotril 0.25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Linotril 0.25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Linotril 0.25mg Tablet.'),
(17944, 'Linotril 0.5mg Tablet', 'Linux Laboratories', 'Linotril 0.5mg Tablet', 'Is Linotril 0.5mg Tablet a sleeping pill?', 'Linotril 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(17945, 'Linotril 0.5mg Tablet', 'Linux Laboratories', 'Linotril 0.5mg Tablet', 'Does Linotril 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Linotril 0.5mg Tablet?', 'Yes, Linotril 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Linotril 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(17946, 'Linotril 0.5mg Tablet', 'Linux Laboratories', 'Linotril 0.5mg Tablet', 'For how long should I take Linotril 0.5mg Tablet?', 'The duration of treatment with Linotril 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(17947, 'Linotril 0.5mg Tablet', 'Linux Laboratories', 'Linotril 0.5mg Tablet', 'Is it safe to take Linotril 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Linotril 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Linotril 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(17948, 'Linotril 0.5mg Tablet', 'Linux Laboratories', 'Linotril 0.5mg Tablet', 'Is Linotril 0.5mg Tablet addictive?', 'People taking Linotril 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Linotril 0.5mg Tablet. Therefore, Linotril 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(17949, 'Linotril 0.5mg Tablet', 'Linux Laboratories', 'Linotril 0.5mg Tablet', 'Can I stop taking Linotril 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Linotril 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(17950, 'Linotril 0.5mg Tablet', 'Linux Laboratories', 'Linotril 0.5mg Tablet', 'Are there any foods we need to avoid while taking Linotril 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Linotril 0.5mg Tablet. This is because caffeine stimulates your brain and Linotril 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Linotril 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Linotril 0.5mg Tablet.'),
(17951, 'Linotril 1mg Tablet', 'Linux Laboratories', 'Linotril 1mg Tablet', 'Is Linotril 1mg Tablet a sleeping pill?', 'Linotril 1mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(17952, 'Linotril 1mg Tablet', 'Linux Laboratories', 'Linotril 1mg Tablet', 'Does Linotril 1mg Tablet cause sleepiness? If yes, then should I stop driving while taking Linotril 1mg Tablet?', 'Yes, Linotril 1mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Linotril 1mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(17953, 'Linotril 1mg Tablet', 'Linux Laboratories', 'Linotril 1mg Tablet', 'For how long should I take Linotril 1mg Tablet?', 'The duration of treatment with Linotril 1mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(17954, 'Linotril 1mg Tablet', 'Linux Laboratories', 'Linotril 1mg Tablet', 'Is it safe to take Linotril 1mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Linotril 1mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Linotril 1mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(17955, 'Linotril 1mg Tablet', 'Linux Laboratories', 'Linotril 1mg Tablet', 'Is Linotril 1mg Tablet addictive?', 'People taking Linotril 1mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Linotril 1mg Tablet. Therefore, Linotril 1mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(17956, 'Linotril 1mg Tablet', 'Linux Laboratories', 'Linotril 1mg Tablet', 'Can I stop taking Linotril 1mg Tablet if I start feeling better?', 'No, do not stop taking Linotril 1mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(17957, 'Linotril 1mg Tablet', 'Linux Laboratories', 'Linotril 1mg Tablet', 'Are there any foods we need to avoid while taking Linotril 1mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Linotril 1mg Tablet. This is because caffeine stimulates your brain and Linotril 1mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Linotril 1mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Linotril 1mg Tablet.'),
(17958, 'Linotril 2mg Tablet', 'Linux Laboratories', 'Linotril 2mg Tablet', 'Is Linotril 2mg Tablet a sleeping pill?', 'Linotril 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(17959, 'Linotril 2mg Tablet', 'Linux Laboratories', 'Linotril 2mg Tablet', 'Does Linotril 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Linotril 2mg Tablet?', 'Yes, Linotril 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Linotril 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(17960, 'Linotril 2mg Tablet', 'Linux Laboratories', 'Linotril 2mg Tablet', 'For how long should I take Linotril 2mg Tablet?', 'The duration of treatment with Linotril 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(17961, 'Linotril 2mg Tablet', 'Linux Laboratories', 'Linotril 2mg Tablet', 'Is it safe to take Linotril 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Linotril 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Linotril 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(17962, 'Linotril 2mg Tablet', 'Linux Laboratories', 'Linotril 2mg Tablet', 'Is Linotril 2mg Tablet addictive?', 'People taking Linotril 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Linotril 2mg Tablet. Therefore, Linotril 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(17963, 'Linotril 2mg Tablet', 'Linux Laboratories', 'Linotril 2mg Tablet', 'Can I stop taking Linotril 2mg Tablet if I start feeling better?', 'No, do not stop taking Linotril 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(17964, 'Linotril 2mg Tablet', 'Linux Laboratories', 'Linotril 2mg Tablet', 'Are there any foods we need to avoid while taking Linotril 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Linotril 2mg Tablet. This is because caffeine stimulates your brain and Linotril 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Linotril 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Linotril 2mg Tablet.'),
(17965, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'What other lifestyle changes should I make to get maximum benefit of Linotryp 50 SR Tablet?', 'Antidepressants, including Linotryp 50 SR Tablet, are just one of several approaches to treat depression. Certain lifestyle changes can help you get maximum benefit of Linotryp 50 SR Tablet and help you recover fast. Keeping active and eating a healthy diet can make a significant difference to how quickly you recover from depression. Think positively and try to discuss your thoughts with others to reduce stress. Practice yoga or take up a hobby. Ensure that you have a sound sleep to calm your mind. Stay away from smoking or alcohol consumption as these will only worsen your depression. Take your medicines as prescribed even if you start feeling better.'),
(17966, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'Is there anything I need to be careful about while on therapy with Linotryp 50 SR Tablet?', 'Linotryp 50 SR Tablet may cause drowsiness and dizziness, especially in the beginning of the treatment. So, avoid driving or using machinery until you know how the medicine affects you. Also, it is not advisable to drink alcohol during treatment with this medicine as it might increase sleepiness.'),
(17967, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'Can the use of Linotryp 50 SR Tablet affect my sex life?', 'Yes, Linotryp 50 SR Tablet can affect sex life in both men and women. It may cause decreased sexual desire or you may experience discomfort during intercourse. Men may experience inability to develop or maintain an erection during sexual activity and may be unable to have an orgasm. If you notice these symptoms, do not stop taking the medicine but consult your doctor.'),
(17968, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'I have been taking Linotryp 50 SR Tablet for depression since a week and recently I have been wanting to harm myself. What should I do? Is it because of the medicine?', 'You should immediately consult your doctor or go to the hospital. Your suicidal tendencies may have increased because of your disease or the medicine. Generally, Linotryp 50 SR Tablet takes about 2 weeks to show its effect but may take longer. Therefore, when you start taking Linotryp 50 SR Tablet, you may have thoughts about killing or harming yourself. This is more common in people who previously had suicidal tendencies or are young adults (less than 25 years old). However, the effect of medicine is different for every individual.'),
(17969, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'Can Linotryp 50 SR Tablet cause urinary problems?', 'Yes, Linotryp 50 SR Tablet can cause urinary problems. It is more commonly seen in elderly patients who are more than 65 years old. The patient may face difficulty in passing urine which can further lead to a urinary tract infection. Consult your doctor immediately if you develop these symptoms.'),
(17970, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'If my pain is not relieved, can I take more than the recommended dose?', 'No, you should use Linotryp 50 SR Tablet strictly as prescribed by the doctor. If the dose exceeds, you may develop drowsiness, confusion, difficulty in speech, dry mouth, tiredness, difficulty in walking, fever, difficulty in breathing, blue discoloration of the skin and decreased heartbeat. Your pain may not be relieved because Linotryp 50 SR Tablet takes about 2 weeks to show its effect, but it may take longer in some cases. The duration of treatment can differ from individual to individual. Consult your doctor if your symptoms are not relieved.'),
(17971, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'Does Linotryp 50 SR Tablet cause any effect on pregnancy or the newborn?', 'Do not take Linotryp 50 SR Tablet during pregnancy unless recommended by the doctor. If you take this medicine during the last trimester of the pregnancy, the newborn may develop symptoms such as irritability, rigidity, irregular body movements, irregular breathing, poor drinking, loud crying, difficulty in urinating and constipation.'),
(17972, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'I have been prescribed Linotryp 50 SR Tablet for pain. When will I start feeling better?', 'You may start feeling better after 2 weeks of starting Linotryp 50 SR Tablet. However, it may take 4-6 weeks to see the full benefits of the medicine.'),
(17973, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'Can I stop taking Linotryp 50 SR Tablet when my pain is relieved?', 'No, do not stop taking Linotryp 50 SR Tablet even if the pain is relieved. You should use Linotryp 50 SR Tablet as advised by the doctor. Stopping the medicine suddenly may cause unpleasant symptoms like headache, feeling unwell, sleeplessness and irritability. Consult your doctor for the duration of the treatment since the dose of Linotryp 50 SR Tablet needs to be reduced gradually.'),
(17974, 'Linotryp 50 SR Tablet', 'Durpha Lifesciences', 'Linotryp 50 SR Tablet', 'How long does Linotryp 50 SR Tablet take to work?', 'You may see an improvement in your symptoms after a couple of weeks, although it usually takes between 4 and 6 weeks before you feel the benefits. Do not stop taking Linotryp 50 SR Tablet after 1 or 2 weeks just because you feel it is not helping your symptoms. Give the medicine at least 6 weeks to work.'),
(17975, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'Can the use of Linotyl CL 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Linotyl CL 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17976, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'How long does Linotyl CL 200mg/125mg Tablet takes to work?', 'Usually, Linotyl CL 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(17977, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'What if I don\'t get better after using Linotyl CL 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(17978, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'Can I stop taking Linotyl CL 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Linotyl CL 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17979, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'What is Linotyl CL 200mg/125mg Tablet?', 'Linotyl CL 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(17980, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'Can the use of Linotyl CL 200mg/125mg Tablet cause any serious side effects?', 'Linotyl CL 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(17981, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'Can I stop taking Linotyl CL 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Linotyl CL 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(17982, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'Can Linotyl CL 200mg/125mg Tablet cause allergic reaction?', 'Yes, Linotyl CL 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(17983, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'Are there any specific contraindications associated with the use of Linotyl CL 200mg/125mg Tablet?', 'The use of Linotyl CL 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Linotyl CL 200mg/125mg Tablet.'),
(17984, 'Linotyl CL 200mg/125mg Tablet', 'Zota Health care Ltd', 'Linotyl CL 200mg/125mg Tablet', 'Can I take oral contraceptive pills while taking Linotyl CL 200mg/125mg Tablet?', 'No, Linotyl CL 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(17985, 'Linova 600mg Tablet', 'Fenestra Pharmaceuticals', 'Linova 600mg Tablet', 'Can the use of Linova 600mg Tablet cause diarrhea?', 'Yes, the use of Linova 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17986, 'Linova 600mg Tablet', 'Fenestra Pharmaceuticals', 'Linova 600mg Tablet', 'What foods should I avoid while taking Linova 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linova 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17987, 'Linovent 600mg Tablet', 'Invent Biotech', 'Linovent 600mg Tablet', 'Can the use of Linovent 600mg Tablet cause diarrhea?', 'Yes, the use of Linovent 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17988, 'Linovent 600mg Tablet', 'Invent Biotech', 'Linovent 600mg Tablet', 'What foods should I avoid while taking Linovent 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linovent 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17989, 'Linovet Cream', 'Skinnovate Therapeutics LLP', 'Linovet Cream', 'Is Linovet Cream safe in pregnancy?', 'Linovet Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Linovet Cream.'),
(17990, 'Linovet Cream', 'Skinnovate Therapeutics LLP', 'Linovet Cream', 'Is Linovet Cream fungicidal or Fungistatic?', 'Linovet Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(17991, 'Linovet Cream', 'Skinnovate Therapeutics LLP', 'Linovet Cream', 'How to use Linovet Cream?', 'Use Linovet Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(17992, 'Linovet Cream', 'Skinnovate Therapeutics LLP', 'Linovet Cream', 'How long does it take for Linovet Cream to work?', 'For different ailments, Linovet Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(17993, 'Linovet Cream', 'Skinnovate Therapeutics LLP', 'Linovet Cream', 'How should I store Linovet Cream?', 'Keep Linovet Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(17994, 'Linovet Cream', 'Skinnovate Therapeutics LLP', 'Linovet Cream', 'Is Linovet Cream safe to use in children?', 'Yes, Linovet Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(17995, 'Linovil 600mg Tablet', 'Viilbery Healthcare Pvt Ltd', 'Linovil 600mg Tablet', 'Can the use of Linovil 600mg Tablet cause diarrhea?', 'Yes, the use of Linovil 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(17996, 'Linovil 600mg Tablet', 'Viilbery Healthcare Pvt Ltd', 'Linovil 600mg Tablet', 'What foods should I avoid while taking Linovil 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linovil 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(17997, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'What if I give an excess of Linowal 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(17998, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linowal 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(17999, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linowal 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linowal 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18000, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'Can Linowal 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linowal 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18001, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'Can other medicines be given at the same time as Linowal 100mg Dry Syrup?', 'Linowal 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linowal 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18002, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linowal 100mg Dry Syrup?', 'For children receiving Linowal 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18003, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linowal 100mg Dry Syrup to my child?', 'Avoid giving Linowal 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linowal 100mg Dry Syrup to your child.'),
(18004, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'What food items should my child avoid while taking Linowal 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linowal 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18005, 'Linowal 100mg Dry Syrup', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linowal 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linowal 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18006, 'Linowal 600mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 600mg Tablet', 'Can the use of Linowal 600mg Tablet cause diarrhea?', 'Yes, the use of Linowal 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18007, 'Linowal 600mg Tablet', 'Wallace Pharmaceuticals Pvt Ltd', 'Linowal 600mg Tablet', 'What foods should I avoid while taking Linowal 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linowal 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18008, 'Linowell 600mg Tablet', 'Everwell Pharma Pvt Ltd', 'Linowell 600mg Tablet', 'Can the use of Linowell 600mg Tablet cause diarrhea?', 'Yes, the use of Linowell 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18009, 'Linowell 600mg Tablet', 'Everwell Pharma Pvt Ltd', 'Linowell 600mg Tablet', 'What foods should I avoid while taking Linowell 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linowell 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18010, 'Linowin 600mg Tablet', 'Hetero Drugs Ltd', 'Linowin 600mg Tablet', 'Can the use of Linowin 600mg Tablet cause diarrhea?', 'Yes, the use of Linowin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18011, 'Linowin 600mg Tablet', 'Hetero Drugs Ltd', 'Linowin 600mg Tablet', 'What foods should I avoid while taking Linowin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linowin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18012, 'Linox 200mg Infusion', 'Torrent Pharmaceuticals Ltd', 'Linox 200mg Infusion', 'Can the use of Linox 200mg Infusion cause diarrhea?', 'Yes, the use of Linox 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18013, 'Linox 200mg Infusion', 'Torrent Pharmaceuticals Ltd', 'Linox 200mg Infusion', 'What foods should I avoid while taking Linox 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linox 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18014, 'Linox 600 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox 600 Tablet', 'Can the use of Linox 600 Tablet cause diarrhea?', 'Yes, the use of Linox 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18015, 'Linox 600 Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox 600 Tablet', 'What foods should I avoid while taking Linox 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linox 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18016, 'Linox 600mg Infusion', 'Torrent Pharmaceuticals Ltd', 'Linox 600mg Infusion', 'Can the use of Linox 600mg Infusion cause diarrhea?', 'Yes, the use of Linox 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18017, 'Linox 600mg Infusion', 'Torrent Pharmaceuticals Ltd', 'Linox 600mg Infusion', 'What foods should I avoid while taking Linox 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linox 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18018, 'Linox 600mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox 600mg Tablet', 'Can the use of Linox 600mg Tablet cause diarrhea?', 'Yes, the use of Linox 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18019, 'Linox 600mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox 600mg Tablet', 'What foods should I avoid while taking Linox 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linox 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18020, 'Linox Life 600mg Injection', 'Torrent Pharmaceuticals Ltd', 'Linox Life 600mg Injection', 'Can the use of Linox Life 600mg Injection cause diarrhea?', 'Yes, the use of Linox Life 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18021, 'Linox Life 600mg Injection', 'Torrent Pharmaceuticals Ltd', 'Linox Life 600mg Injection', 'What foods should I avoid while taking Linox Life 600mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linox Life 600mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(18022, 'Linox OD 1200mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox OD 1200mg Tablet', 'Can the use of Linox OD 1200mg Tablet cause diarrhea?', 'Yes, the use of Linox OD 1200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18023, 'Linox OD 1200mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox OD 1200mg Tablet', 'What foods should I avoid while taking Linox OD 1200mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linox OD 1200mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18024, 'Linox Total Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox Total Tablet', 'What is Linox Total Tablet used for?', 'Linox Total Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(18025, 'Linox Total Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox Total Tablet', 'Can the use of Linox Total Tablet cause diarrhea?', 'Yes, the use of Linox Total Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18026, 'Linox Total Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox Total Tablet', 'Is the use of Linox Total Tablet helpful in the treatment of bronchitis?', 'Yes, Linox Total Tablet is helpful in the treatment of bronchitis.'),
(18027, 'Linox Total Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox Total Tablet', 'What are the instructions for the storage and disposal of Linox Total Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18028, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'What if I miss my dose?', 'Take Linox XT Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(18029, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'Can I stop taking Linox XT Tablet when I feel better?', 'No, do not stop taking Linox XT Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(18030, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'What is Linox XT Tablet used for?', 'Linox XT Tablet is used in the treatment of bacterial infections. Cefuroxime treats infections of acute or chronic bronchitis, tonsillitis,  gonorrhea, syphilis, pneumonia, and urinary tract infection. Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(18031, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'Does the use of Linox XT Tablet help to treat UTI?', 'Urinary tract infections (UTIs) are among the most common infections people suffer from. The use of Linox XT Tablet is usually helpful in treating urinary tract infection.'),
(18032, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'Can the use of Linox XT Tablet cause diarrhea?', 'Yes, the use of Linox XT Tablet can cause diarrhea. Antibiotics can kill good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18033, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'Is the use of Linox XT Tablet helpful in the treatment of bronchitis?', 'Yes, Linox XT Tablet is helpful in the treatment of bronchitis.'),
(18034, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'Is the use of Linox XT Tablet contraindicated in patients with the impaired kidney?', 'The drug is eliminated by the renal mechanisms and a patient with impaired renal function will clear it more slowly. This can prove harmful for the patient. Therefore, caution is advised when administering Linox XT Tablet to patients with renal impairment or renal failure.'),
(18035, 'Linox XT Tablet', 'Torrent Pharmaceuticals Ltd', 'Linox XT Tablet', 'What are the instructions for the storage and disposal of Linox XT Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18036, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'What if I give an excess of Linoxia 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18037, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linoxia 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18038, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linoxia 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linoxia 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18039, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'Can Linoxia 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linoxia 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18040, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'Can other medicines be given at the same time as Linoxia 100mg Dry Syrup?', 'Linoxia 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linoxia 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18041, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linoxia 100mg Dry Syrup?', 'For children receiving Linoxia 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18042, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linoxia 100mg Dry Syrup to my child?', 'Avoid giving Linoxia 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linoxia 100mg Dry Syrup to your child.'),
(18043, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'What food items should my child avoid while taking Linoxia 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linoxia 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18044, 'Linoxia 100mg Dry Syrup', 'Medishri Healthcare', 'Linoxia 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linoxia 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linoxia 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18045, 'Linoxia 600 Tablet', 'Medishri Healthcare', 'Linoxia 600 Tablet', 'Can the use of Linoxia 600 Tablet cause diarrhea?', 'Yes, the use of Linoxia 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18046, 'Linoxia 600 Tablet', 'Medishri Healthcare', 'Linoxia 600 Tablet', 'What foods should I avoid while taking Linoxia 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoxia 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18047, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'What is Linoxib 90mg Tablet used for?', 'Linoxib 90mg Tablet is used to reduce the pain and swelling (inflammation) in the joints and muscles of people 16 years of age and older with rheumatoid arthritis, ankylosing spondylitis and gout. Linoxib 90mg Tablet is also used for the short term treatment of moderate pain after dental surgery in people 16 years of age and older.'),
(18048, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Is it safe to use Linoxib 90mg Tablet?', 'Linoxib 90mg Tablet is safe for most patients. However, in some patients, it may cause some unwanted side effects like nausea, vomiting, stomach pain, fatigue, diarrhea, etc. Inform your doctor if you experience any persistent problem due to this medication.'),
(18049, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Can I stop taking Linoxib 90mg Tablet when my pain is relieved?', 'Linoxib 90mg Tablet should be continued as advised by your doctor, if you are using the medicine for a condition associated with long-term pain. It can be discontinued if you are using it for short-term pain relief.'),
(18050, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Can the use of Linoxib 90mg Tablet cause nausea and vomiting?', 'Yes, the use of Linoxib 90mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(18051, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Can the use of Linoxib 90mg Tablet cause dizziness?', 'Yes, the use of Linoxib 90mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for sometime and resume once you feel better.'),
(18052, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Are there any specific contraindications associated with the use of Linoxib 90mg Tablet?', 'The use of Linoxib 90mg Tablet is considered to be harmful for patients with known allergy to any of the components of this medicine. It should be avoided in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active or recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(18053, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Is Linoxib 90mg Tablet helpful in relieving stomach pain?', 'No, Linoxib 90mg Tablet should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(18054, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Can the use of Linoxib 90mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Linoxib 90mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lowers the levels of prostaglandins in the body, leading to kidney damage because of long-term use. Therefore, the use of painkillers is not recommended in patients with underlying kidney disease.'),
(18055, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Is it safe to take a higher than the recommended dose of Linoxib 90mg Tablet ?', 'No, taking a higher than the recommended dose of Linoxib 90mg Tablet can increase the risks of side effects like stomach pain, nausea, vomiting, indigestion and diarrhea. In fact, using this medicine for a long-term can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(18056, 'Linoxib 90mg Tablet', 'Linex Pharmaceuticals', 'Linoxib 90mg Tablet', 'Can Linoxib 90mg Tablet cause high blood pressure?', 'Yes. Linoxib 90mg Tablet can increase blood pressure in some people, especially in high doses, and your doctor may advise you to check your blood pressure at home or even monitor it from time to time. If you have high blood pressure that has not been controlled by treatment, you must inform your doctor before starting treatment with Linoxib 90mg Tablet, to avoid any mishap.'),
(18057, 'Linoxon 600mg Tablet', 'Medxone Healthcare', 'Linoxon 600mg Tablet', 'Can the use of Linoxon 600mg Tablet cause diarrhea?', 'Yes, the use of Linoxon 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18058, 'Linoxon 600mg Tablet', 'Medxone Healthcare', 'Linoxon 600mg Tablet', 'What foods should I avoid while taking Linoxon 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoxon 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18059, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'What if I give an excess of Linoza 100mg Dry Syrup Orange by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18060, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linoza 100mg Dry Syrup Orange along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18061, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'What should I do if my child shows no improvement even after taking Linoza 100mg Dry Syrup Orange for the prescribed duration?', 'Ineffective treatment with Linoza 100mg Dry Syrup Orange could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18062, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'Can Linoza 100mg Dry Syrup Orange be given for a long duration?', 'Prolonged use of Linoza 100mg Dry Syrup Orange may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18063, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'Can other medicines be given at the same time as Linoza 100mg Dry Syrup Orange?', 'Linoza 100mg Dry Syrup Orange can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linoza 100mg Dry Syrup Orange. Also, check with your child’s doctor before giving any medicine to your child.'),
(18064, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'What lab tests that are required for monitoring while my child is taking Linoza 100mg Dry Syrup Orange?', 'For children receiving Linoza 100mg Dry Syrup Orange for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18065, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'In which disease conditions should I avoid giving Linoza 100mg Dry Syrup Orange to my child?', 'Avoid giving Linoza 100mg Dry Syrup Orange if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linoza 100mg Dry Syrup Orange to your child.'),
(18066, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'What food items should my child avoid while taking Linoza 100mg Dry Syrup Orange?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linoza 100mg Dry Syrup Orange. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18067, 'Linoza 100mg Dry Syrup Orange', 'Medinza Biotech', 'Linoza 100mg Dry Syrup Orange', 'Can I get my child vaccinated while on treatment with Linoza 100mg Dry Syrup Orange?', 'It is advised not to get your child vaccinated while they are on treatment with Linoza 100mg Dry Syrup Orange. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18068, 'Linoza 600mg Tablet', 'Medinza Biotech', 'Linoza 600mg Tablet', 'Can the use of Linoza 600mg Tablet cause diarrhea?', 'Yes, the use of Linoza 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18069, 'Linoza 600mg Tablet', 'Medinza Biotech', 'Linoza 600mg Tablet', 'What foods should I avoid while taking Linoza 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linoza 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18070, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'What if I give an excess of Linozat 100mg Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18071, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linozat 100mg Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18072, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'What should I do if my child shows no improvement even after taking Linozat 100mg Oral Suspension for the prescribed duration?', 'Ineffective treatment with Linozat 100mg Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18073, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'Can Linozat 100mg Oral Suspension be given for a long duration?', 'Prolonged use of Linozat 100mg Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18074, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'Can other medicines be given at the same time as Linozat 100mg Oral Suspension?', 'Linozat 100mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linozat 100mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(18075, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Linozat 100mg Oral Suspension?', 'For children receiving Linozat 100mg Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18076, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'In which disease conditions should I avoid giving Linozat 100mg Oral Suspension to my child?', 'Avoid giving Linozat 100mg Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linozat 100mg Oral Suspension to your child.'),
(18077, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'What food items should my child avoid while taking Linozat 100mg Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linozat 100mg Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18078, 'Linozat 100mg Oral Suspension', 'Zatropha Pharma', 'Linozat 100mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Linozat 100mg Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Linozat 100mg Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18079, 'Linozat 600mg Tablet', 'Zatropha Pharma', 'Linozat 600mg Tablet', 'Can the use of Linozat 600mg Tablet cause diarrhea?', 'Yes, the use of Linozat 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18080, 'Linozat 600mg Tablet', 'Zatropha Pharma', 'Linozat 600mg Tablet', 'What foods should I avoid while taking Linozat 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozat 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18081, 'Linozem 600mg Tablet', 'Delight Medica Private Limited', 'Linozem 600mg Tablet', 'Can the use of Linozem 600mg Tablet cause diarrhea?', 'Yes, the use of Linozem 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18082, 'Linozem 600mg Tablet', 'Delight Medica Private Limited', 'Linozem 600mg Tablet', 'What foods should I avoid while taking Linozem 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozem 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18083, 'Linozest 600mg Tablet', 'Stetho Pharma', 'Linozest 600mg Tablet', 'Can the use of Linozest 600mg Tablet cause diarrhea?', 'Yes, the use of Linozest 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18084, 'Linozest 600mg Tablet', 'Stetho Pharma', 'Linozest 600mg Tablet', 'What foods should I avoid while taking Linozest 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozest 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18085, 'Linozic IV 600mg Injection', 'Laxin Healthcare', 'Linozic IV 600mg Injection', 'Can the use of Linozic IV  600mg Injection cause diarrhea?', 'Yes, the use of Linozic IV  600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18086, 'Linozic IV 600mg Injection', 'Laxin Healthcare', 'Linozic IV 600mg Injection', 'What foods should I avoid while taking Linozic IV  600mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozic IV  600mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(18087, 'Linozid 600mg Tablet', 'Spancer Pharmaceuticals', 'Linozid 600mg Tablet', 'Can the use of Linozid 600mg Tablet cause diarrhea?', 'Yes, the use of Linozid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18088, 'Linozid 600mg Tablet', 'Spancer Pharmaceuticals', 'Linozid 600mg Tablet', 'What foods should I avoid while taking Linozid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18089, 'Linozid C 200mg/600mg Tablet', 'Spancer Pharmaceuticals', 'Linozid C 200mg/600mg Tablet', 'What is Linozid C 200mg/600mg Tablet used for?', 'Linozid C 200mg/600mg Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(18090, 'Linozid C 200mg/600mg Tablet', 'Spancer Pharmaceuticals', 'Linozid C 200mg/600mg Tablet', 'Can the use of Linozid C 200mg/600mg Tablet cause diarrhea?', 'Yes, the use of Linozid C 200mg/600mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18091, 'Linozid C 200mg/600mg Tablet', 'Spancer Pharmaceuticals', 'Linozid C 200mg/600mg Tablet', 'Is the use of Linozid C 200mg/600mg Tablet helpful in the treatment of bronchitis?', 'Yes, Linozid C 200mg/600mg Tablet is helpful in the treatment of bronchitis.'),
(18092, 'Linozid C 200mg/600mg Tablet', 'Spancer Pharmaceuticals', 'Linozid C 200mg/600mg Tablet', 'What are the instructions for the storage and disposal of Linozid C 200mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18093, 'Linozid Infusion', 'Troikaa Pharmaceuticals Ltd', 'Linozid Infusion', 'Can the use of Linozid Infusion cause diarrhea?', 'Yes, the use of Linozid Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18094, 'Linozid Infusion', 'Troikaa Pharmaceuticals Ltd', 'Linozid Infusion', 'What foods should I avoid while taking Linozid Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozid Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18095, 'Linozil 600mg Tablet', 'Trillest Healthcare', 'Linozil 600mg Tablet', 'Can the use of Linozil 600mg Tablet cause diarrhea?', 'Yes, the use of Linozil 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18096, 'Linozil 600mg Tablet', 'Trillest Healthcare', 'Linozil 600mg Tablet', 'What foods should I avoid while taking Linozil 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozil 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18097, 'Linozin 5mg Tablet', 'Rely on Pharmaceuticals', 'Linozin 5mg Tablet', 'Is Linozin 5mg Tablet a steroid? What is it used for?', 'No, Linozin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(18098, 'Linozin 5mg Tablet', 'Rely on Pharmaceuticals', 'Linozin 5mg Tablet', 'Does Linozin 5mg Tablet make you tired and drowsy?', 'Yes, Linozin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(18099, 'Linozin 5mg Tablet', 'Rely on Pharmaceuticals', 'Linozin 5mg Tablet', 'How long does it take for Linozin 5mg Tablet to work?', 'Linozin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(18100, 'Linozin 5mg Tablet', 'Rely on Pharmaceuticals', 'Linozin 5mg Tablet', 'Can I take Linozin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Linozin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(18101, 'Linozin 5mg Tablet', 'Rely on Pharmaceuticals', 'Linozin 5mg Tablet', 'Is it safe to take Linozin 5mg Tablet for a long time?', 'Linozin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Linozin 5mg Tablet for only as long as you need it.'),
(18102, 'Linozin 5mg Tablet', 'Rely on Pharmaceuticals', 'Linozin 5mg Tablet', 'For how long should I continue Linozin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Linozin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Linozin 5mg Tablet'),
(18103, 'Linozin M 5mg/10mg Tablet', 'Rely on Pharmaceuticals', 'Linozin M 5mg/10mg Tablet', 'What is Linozin M 5mg/10mg Tablet?', 'Linozin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(18104, 'Linozin M 5mg/10mg Tablet', 'Rely on Pharmaceuticals', 'Linozin M 5mg/10mg Tablet', 'Can the use of Linozin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Linozin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(18105, 'Linozin M 5mg/10mg Tablet', 'Rely on Pharmaceuticals', 'Linozin M 5mg/10mg Tablet', 'Can Linozin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Linozin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(18106, 'Linozin M 5mg/10mg Tablet', 'Rely on Pharmaceuticals', 'Linozin M 5mg/10mg Tablet', 'Can the use of Linozin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Linozin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(18107, 'Linozin M 5mg/10mg Tablet', 'Rely on Pharmaceuticals', 'Linozin M 5mg/10mg Tablet', 'Can I drink alcohol while taking Linozin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Linozin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Linozin M 5mg/10mg Tablet.'),
(18108, 'Linozin M 5mg/10mg Tablet', 'Rely on Pharmaceuticals', 'Linozin M 5mg/10mg Tablet', 'Will Linozin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Linozin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(18109, 'Linozin M 5mg/10mg Tablet', 'Rely on Pharmaceuticals', 'Linozin M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Linozin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(18110, 'Linozit 600mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Linozit 600mg Tablet', 'Can the use of Linozit 600mg Tablet cause diarrhea?', 'Yes, the use of Linozit 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18111, 'Linozit 600mg Tablet', 'Nilrise Pharmaceuticals Pvt Ltd', 'Linozit 600mg Tablet', 'What foods should I avoid while taking Linozit 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozit 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18112, 'Linozocid 600 Tablet', 'Unitas Healthcare Private Limited', 'Linozocid 600 Tablet', 'Can the use of Linozocid 600 Tablet cause diarrhea?', 'Yes, the use of Linozocid 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18113, 'Linozocid 600 Tablet', 'Unitas Healthcare Private Limited', 'Linozocid 600 Tablet', 'What foods should I avoid while taking Linozocid 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozocid 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18114, 'Linozom 600mg Tablet', 'Zoom Healthcare', 'Linozom 600mg Tablet', 'Can the use of Linozom 600mg Tablet cause diarrhea?', 'Yes, the use of Linozom 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18115, 'Linozom 600mg Tablet', 'Zoom Healthcare', 'Linozom 600mg Tablet', 'What foods should I avoid while taking Linozom 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozom 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18116, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'For how long can Linozoy 500mg Injection be taken?', 'The usual course of treatment with Linozoy 500mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Linozoy 500mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(18117, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'Is Linozoy 500mg Injection safe?', 'Linozoy 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(18118, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'How is Linozoy 500mg Injection administered?', 'Linozoy 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Linozoy 500mg Injection.'),
(18119, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Linozoy 500mg Injection should be taken in the recommended dose only. Overdose of Linozoy 500mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(18120, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'What are the instructions for the storage and disposal of Linozoy 500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(18121, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'What if I don\'t get better after using Linozoy 500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(18122, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'Can I stop taking Linozoy 500mg Injection when I feel better?', 'No, do not stop taking Linozoy 500mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(18123, 'Linozoy 500mg Injection', 'Crinova Healthcare', 'Linozoy 500mg Injection', 'Can I take alcohol while on Linozoy 500mg Injection?', 'You should avoid alcohol while being on treatment with Linozoy 500mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Linozoy 500mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(18124, 'Linozoy 600mg Tablet', 'Crinova Healthcare', 'Linozoy 600mg Tablet', 'Can the use of Linozoy 600mg Tablet cause diarrhea?', 'Yes, the use of Linozoy 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18125, 'Linozoy 600mg Tablet', 'Crinova Healthcare', 'Linozoy 600mg Tablet', 'What foods should I avoid while taking Linozoy 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozoy 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18126, 'Linozoy Syrup', 'Crinova Healthcare', 'Linozoy Syrup', 'Will a higher than the recommended dose of Linozoy Syrup be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Linozoy Syrup, please consult your doctor.'),
(18127, 'Linozoy Syrup', 'Crinova Healthcare', 'Linozoy Syrup', 'In which type of cough will the doctor prescribe Linozoy Syrup?', 'Linozoy Syrup is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(18128, 'Linozoy Syrup', 'Crinova Healthcare', 'Linozoy Syrup', 'Are there any contraindications associated with use of Linozoy Syrup?', 'It is not recommended to use Linozoy Syrup if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(18129, 'Linozoy Syrup', 'Crinova Healthcare', 'Linozoy Syrup', 'What are the instructions for the storage and disposal of Linozoy Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18130, 'Linozu 600mg Tablet', 'Kristal Pharmaceutical', 'Linozu 600mg Tablet', 'Can the use of Linozu 600mg Tablet cause diarrhea?', 'Yes, the use of Linozu 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18131, 'Linozu 600mg Tablet', 'Kristal Pharmaceutical', 'Linozu 600mg Tablet', 'What foods should I avoid while taking Linozu 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linozu 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18132, 'Linpact 600mg Tablet', 'Anjali Pharmaceuticals Private Limited', 'Linpact 600mg Tablet', 'Can the use of Linpact 600mg Tablet cause diarrhea?', 'Yes, the use of Linpact 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18133, 'Linpact 600mg Tablet', 'Anjali Pharmaceuticals Private Limited', 'Linpact 600mg Tablet', 'What foods should I avoid while taking Linpact 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linpact 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18134, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'What is Linpan Tablet used for?', 'Linpan Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Linpan Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(18135, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'How long does it take for Linpan Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Linpan Tablet to work properly so you may still have some symptoms during this time.'),
(18136, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'Is a single dose of Linpan Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Linpan Tablet you may get relief with the symptoms. Linpan Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Linpan Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Linpan Tablet regularly for 2 weeks as prescribed.'),
(18137, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'Is Linpan Tablet safe?', 'Yes, Linpan Tablet is relatively safe. Most of the people who take Linpan Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(18138, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'Can I take Linpan Tablet for a long term?', 'Linpan Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Linpan Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Linpan Tablet as advised by your doctor and under their supervision.'),
(18139, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'What are the long term side effects of Linpan Tablet?', 'If Linpan Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(18140, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'What is the best time to take Linpan Tablet?', 'Usually, Linpan Tablet is taken once a day, first thing in the morning. If you take Linpan Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(18141, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'Can I stop taking Linpan Tablet if I feel better?', 'If you have been taking Linpan Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Linpan Tablet.'),
(18142, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'Does Linpan Tablet cause weight gain?', 'Although rare but long-term treatment with Linpan Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(18143, 'Linpan Tablet', 'Linchpin Biosciences Pvt Ltd', 'Linpan Tablet', 'Can I take alcohol with Linpan Tablet?', 'No, alcohol intake is not advised with Linpan Tablet. Alcohol itself does not affect the working of Linpan Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(18144, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'What is Linpan-D Capsule PR?', 'Linpan-D Capsule PR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(18145, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'Is it safe to use Linpan-D Capsule PR?', 'Linpan-D Capsule PR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(18146, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'Are there any specific contraindications associated with the use of Linpan-D Capsule PR?', 'The use of Linpan-D Capsule PR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(18147, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'Can the use of Linpan-D Capsule PR cause dry mouth?', 'Yes, the use of Linpan-D Capsule PR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(18148, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'Can the use of Linpan-D Capsule PR cause diarrhea?', 'Yes, the use of Linpan-D Capsule PR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(18149, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'What are the instructions for storage and disposal of Linpan-D Capsule PR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18150, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'What is Linpan-D Capsule PR price?', 'You can get Linpan-D Capsule PR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(18151, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'While taking Linpan-D Capsule PR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(18152, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'Can I take alcohol while taking Linpan-D Capsule PR?', 'No, alcohol intake is not advised with Linpan-D Capsule PR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(18153, 'Linpan-D Capsule PR', 'Linchpin Biosciences Pvt Ltd', 'Linpan-D Capsule PR', 'Can I stop taking Linpan-D Capsule PR if I feel better?', 'If you have been taking Linpan-D Capsule PR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(18154, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'What if I vomit after taking Linpar 650mg Tablet?', 'If you vomit in less than 30 minutes after having a dose of Linpar 650mg Tablet tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(18155, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'When will I feel better after taking the Linpar 650mg Tablet?', 'Usually, you will start feeling better after about half an hour of taking a Linpar 650mg Tablet.'),
(18156, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'How often can I take the Linpar 650mg Tablet?', 'You should only take four doses of Linpar 650mg Tablet in 24 hours. There should be a gap of at least 4 hours between two doses. Do not take Linpar 650mg Tablet for more than 3 days without consulting a doctor first.'),
(18157, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'Is Linpar 650mg Tablet an antibiotic?', 'No, Linpar 650mg Tablet is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(18158, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'Can I take Linpar 650mg Tablet and ibuprofen together?', 'Ibuprofen and Linpar 650mg Tablet are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(18159, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'How long does a Linpar 650mg Tablet take to work?', 'Linpar 650mg Tablet takes around 30-45 min to start working and show its effects. It is advised to take this medicine for the duration suggested by the doctor. Consult your doctor if you experience any bothersome side effects.'),
(18160, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'What are the serious side effects of taking an excess of the Linpar 650mg Tablet?', 'Overdose of Linpar 650mg Tablete may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(18161, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'Can Linpar 650mg Tablet cause nausea and vomiting?', 'Yes, Linpar 650mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.u003cbr>'),
(18162, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'Is Linpar 650mg Tablet helpful in relieving stomach pain due to indigestion?', 'No, Linpar 650mg Tablet should not be taken for stomach pain without consulting a doctor. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(18163, 'Linpar 650mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar 650mg Tablet', 'Can I take Linpar 650mg Tablet with an antibiotic?', 'Yes, taking Linpar 650mg Tablet and antibiotics at the same time should not cause any problems. Antibiotics are used to help clear infections but often don\'t do anything to relieve pain. Therefore you can generally take Linpar 650mg Tablet alongside your antibiotics. However, always consult your doctor before taking any medications.'),
(18164, 'Linpar Cold 5mg/325mg/5mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold 5mg/325mg/5mg Tablet', 'Q. Is it safe to use Linpar Cold 5mg/325mg/5mg Tablet?', 'Yes, Linpar Cold 5mg/325mg/5mg Tablet is safe for most of the patients. However, in some patients it may cause unwanted side effects like nausea, vomiting, headache, fatigue, dizziness, dryness in the mouth, sleepiness, allergic reaction. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(18165, 'Linpar Cold 5mg/325mg/5mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold 5mg/325mg/5mg Tablet', 'Q. Can the use of Linpar Cold 5mg/325mg/5mg Tablet cause dizziness?', 'Yes, the use of Linpar Cold 5mg/325mg/5mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(18166, 'Linpar Cold 5mg/325mg/5mg Tablet', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold 5mg/325mg/5mg Tablet', 'Q. Can the use of Linpar Cold 5mg/325mg/5mg Tablet cause nausea and vomiting?', 'Yes, the use of Linpar Cold 5mg/325mg/5mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. If vomiting occurs, drink plenty of water or other fluids. Talk to your doctor if vomiting persists. You should also let your doctor know if you are unable to drink water and there are signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without consulting your doctor.'),
(18167, 'Linpar Cold Kid Oral Drops', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold Kid Oral Drops', 'What if  I give too much Linpar Cold Kid Oral Drops by mistake?', 'Prolonged or excess intake of Linpar Cold Kid Oral Drops can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects, and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(18168, 'Linpar Cold Kid Oral Drops', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold Kid Oral Drops', 'Can other medicines be given at the same time as Linpar Cold Kid Oral Drops?', 'Linpar Cold Kid Oral Drops can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linpar Cold Kid Oral Drops. Also, check with your child’s doctor before giving any medicine to your child.'),
(18169, 'Linpar Cold Kid Oral Drops', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold Kid Oral Drops', 'In what all conditions should I avoid giving Linpar Cold Kid Oral Drops to my child?', 'If your child is suffering from any Cardiovascular disease (hypertension, heart disease), Diabetes mellitus, GI obstruction, increased intraocular pressure, urinary obstruction, or thyroid dysfunction, avoid giving Linpar Cold Kid Oral Drops. Always inform your doctor about your child’s medical history before giving Linpar Cold Kid Oral Drops.'),
(18170, 'Linpar Cold Kid Oral Drops', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold Kid Oral Drops', 'My child has a cough and fever. Can I give him two different cough and fever medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. This is because both the medicines could have the same ingredients and taking them together would cause an overdose and could result in serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(18171, 'Linpar Cold Kid Oral Drops', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold Kid Oral Drops', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(18172, 'Linpar Cold Kid Oral Drops', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold Kid Oral Drops', 'Can Linpar Cold Kid Oral Drops make my child sleepy?', 'Linpar Cold Kid Oral Drops may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(18173, 'Linpar Cold Kid Oral Drops', 'Cablin Healthcare Pvt Ltd', 'Linpar Cold Kid Oral Drops', 'How can I store Linpar Cold Kid Oral Drops?', 'Linpar Cold Kid Oral Drops should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(18174, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'How much Linpar DS 250mg Syrup should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(18175, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'When will my child’s condition improve after taking Linpar DS 250mg Syrup?', 'Linpar DS 250mg Syrup usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(18176, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'Can I give Linpar DS 250mg Syrup to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(18177, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'My child’s fever is persistent even after taking Linpar DS 250mg Syrup. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(18178, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'How much of Linpar DS 250mg Syrup is considered as an overdose?', 'You should only take four doses of Linpar DS 250mg Syrup in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(18179, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(18180, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(18181, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'In what conditions Linpar DS 250mg Syrup must be given with caution?', 'It is advised to use Linpar DS 250mg Syrup with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(18182, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'Can I give Linpar DS 250mg Syrup on a routine basis when my child is taking a vaccine?', 'Linpar DS 250mg Syrup usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(18183, 'Linpar DS 250mg Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar DS 250mg Syrup', 'What if I vomit after taking Linpar DS 250mg Syrup?', 'If you vomit in less than 30 minutes after having a dose of Linpar DS 250mg Syrup tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(18184, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'How much Linpar M Syrup should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure safe and complete recovery of your child.'),
(18185, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'Can I change the dose of Linpar M Syrup for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unnecessary increase in dose may lead to toxicity, a sudden lowering of the dosing may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(18186, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'Can all children be given the same dose of Linpar M Syrup?', 'No. Linpar M Syrup cannot be given to everyone in the same dose. The doctor decides the appropriate dose based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(18187, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'When will my child feel better?', 'The doctor may advise you to keep giving Linpar M Syrup to your child for a few days to weeks, depending upon the severity of the illness. You’ll notice that the pain or fever will reduce and your child will start feeling better gradually as the course approaches its end. In case your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(18188, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'Are there any serious side effects of this medicine for my child?', 'Linpar M Syrup is well-tolerated by most children. However, if your child experiences any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, serious allergic reaction, and severe pain due to gastric ulcers, then rush to your doctor on an immediate basis.'),
(18189, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'How should I store Linpar M Syrup?', 'Store Linpar M Syrup at room temperature, in a dry place, away from direct heat and light. Avoid leaving medicines within the reach and sight of children.'),
(18190, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'My child is taking Linpar M Syrup for toothache and now has to undergo an extraction procedure. Should I continue giving Linpar M Syrup?', 'Withhold Linpar M Syrup from at least 3 to 5 days before a surgical procedure to prevent excessive bleeding. In case of any confusion, it is best to reach out to your child’s doctor.'),
(18191, 'Linpar M Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar M Syrup', 'Can other medicines be given at the same time as Linpar M Syrup?', 'Linpar M Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linpar M Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18192, 'Linpar Plus Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar Plus Syrup', 'What if  I give too much Linpar Plus Syrup by mistake?', 'Prolonged or excess intake of Linpar Plus Syrup can put your child at risk of developing serious side effects like seizures, rapid heart rate, depression, cognition defects and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(18193, 'Linpar Plus Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar Plus Syrup', 'How can I store Linpar Plus Syrup?', 'Linpar Plus Syrup should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(18194, 'Linpar Plus Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar Plus Syrup', 'My child has a cough and fever. Can I give him two medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. The reason being, both the medicines could have the same ingredients. This would be equivalent to an overdose and could have serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(18195, 'Linpar Plus Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar Plus Syrup', 'Can  I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(18196, 'Linpar Plus Syrup', 'Cablin Healthcare Pvt Ltd', 'Linpar Plus Syrup', 'Can Linpar Plus Syrup make my child sleepy?', 'Linpar Plus Syrup may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(18197, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'How much Linpara Syrup should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(18198, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'When will my child’s condition improve after taking Linpara Syrup?', 'Linpara Syrup usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(18199, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'Can I give Linpara Syrup to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(18200, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'My child’s fever is persistent even after taking Linpara Syrup. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(18201, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'How much of Linpara Syrup is considered as an overdose?', 'You should only take four doses of Linpara Syrup in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(18202, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(18203, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(18204, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'In what conditions Linpara Syrup must be given with caution?', 'It is advised to use Linpara Syrup with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(18205, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'Can I give Linpara Syrup on a routine basis when my child is taking a vaccine?', 'Linpara Syrup usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(18206, 'Linpara Syrup', 'Linex Pharmaceuticals', 'Linpara Syrup', 'What if I vomit after taking Linpara Syrup?', 'If you vomit in less than 30 minutes after having a dose of Linpara Syrup tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(18207, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'What is Linpitaz 4.5gm Injection?', 'Linpitaz 4.5gm Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(18208, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'Is it safe to use Linpitaz 4.5gm Injection?', 'Linpitaz 4.5gm Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(18209, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'How is Linpitaz 4.5gm Injection administered?', 'Linpitaz 4.5gm Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linpitaz 4.5gm Injection.'),
(18210, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'Are there any specific cautions associated with the use of Linpitaz 4.5gm Injection?', 'The use of Linpitaz 4.5gm Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Linpitaz 4.5gm Injection.'),
(18211, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'Can the use of Linpitaz 4.5gm Injection cause contraceptive failure?', 'Yes, the use of Linpitaz 4.5gm Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Linpitaz 4.5gm Injection.'),
(18212, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'Can I take a higher than the recommended dose of Linpitaz 4.5gm Injection?', 'No, Linpitaz 4.5gm Injection should be used in the recommended dose only. Overdose of Linpitaz 4.5gm Injection can increase the risks of side effects. Linpitaz 4.5gm Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(18213, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'What are the instructions for the storage and disposal of Linpitaz 4.5gm Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18214, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'Can Linpitaz 4.5gm Injection cause an allergic reaction?', 'Yes, Linpitaz 4.5gm Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(18215, 'Linpitaz 4.5gm Injection', 'Onerous Pharma', 'Linpitaz 4.5gm Injection', 'Can the use of Linpitaz 4.5gm Injection cause diarrhea?', 'Yes, the use of Linpitaz 4.5gm Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18216, 'Linpred 1% Eye Drop', 'Liosun Pharmaceuticals India Pvt Ltd', 'Linpred 1% Eye Drop', 'What is Linpred 1% Eye Drop? What is it used for?', 'Linpred 1% Eye Drop belongs to a group of medicines called steroids, also known as corticosteroids. It is used to relieve swelling, itchiness, and redness of the eyes that may be caused due to infection.'),
(18217, 'Linpred 1% Eye Drop', 'Liosun Pharmaceuticals India Pvt Ltd', 'Linpred 1% Eye Drop', 'Is Linpred 1% Eye Drop effective?', 'Linpred 1% Eye Drop is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linpred 1% Eye Drop too early, the symptoms may return or worsen.'),
(18218, 'Linpred 1% Eye Drop', 'Liosun Pharmaceuticals India Pvt Ltd', 'Linpred 1% Eye Drop', 'I feel better now, can I stop using Linpred 1% Eye Drop?', 'No, you should not stop using Linpred 1% Eye Drop suddenly without talking to your doctor. Your symptoms may improve and you may feel better before the infection is completely cleared. Still, it is advised to complete the full course of treatment. Stopping the medication too early may worsen your symptoms and your infection may return. It could also allow the spread of the infection and hence prevent complete healing.'),
(18219, 'Linpred 1% Eye Drop', 'Liosun Pharmaceuticals India Pvt Ltd', 'Linpred 1% Eye Drop', 'In which conditions should the use of Linpred 1% Eye Drop be avoided?', 'Use of Linpred 1% Eye Drop should be avoided in patients who are allergic to Linpred 1% Eye Drop or any of its components. However, if you are not aware of any allergy or if you are using Linpred 1% Eye Drop for the first time, consult your doctor.'),
(18220, 'Linpred 1% Eye Drop', 'Liosun Pharmaceuticals India Pvt Ltd', 'Linpred 1% Eye Drop', 'What are the instructions for the storage and disposal of Linpred 1% Eye Drop?', 'Keep Linpred 1% Eye Drop in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Keep it away from children and other people to avoid any misuse.'),
(18221, 'Linpress AT 5mg/50mg Tablet', 'Linex Pharmaceuticals', 'Linpress AT 5mg/50mg Tablet', 'What lifestyle changes should be made while using Linpress AT 5mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Linpress AT 5mg/50mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(18222, 'Linpress AT 5mg/50mg Tablet', 'Linex Pharmaceuticals', 'Linpress AT 5mg/50mg Tablet', 'Can I stop taking Linpress AT 5mg/50mg Tablet if I feel well?', 'No, keep using Linpress AT 5mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Linpress AT 5mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(18223, 'Linpress AT 5mg/50mg Tablet', 'Linex Pharmaceuticals', 'Linpress AT 5mg/50mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18224, 'Linpress AT 5mg/50mg Tablet', 'Linex Pharmaceuticals', 'Linpress AT 5mg/50mg Tablet', 'What are the contraindications associated with the use of Linpress AT 5mg/50mg Tablet?', 'Linpress AT 5mg/50mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(18225, 'Linpress AT 5mg/50mg Tablet', 'Linex Pharmaceuticals', 'Linpress AT 5mg/50mg Tablet', 'Can the use of Linpress AT 5mg/50mg Tablet cause headache?', 'Yes, the use of Linpress AT 5mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(18226, 'Linpress AT 5mg/50mg Tablet', 'Linex Pharmaceuticals', 'Linpress AT 5mg/50mg Tablet', 'Can I feel dizzy after taking Linpress AT 5mg/50mg Tablet?', 'Yes, the use of Linpress AT 5mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(18227, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'What is the dosage of Linpride 1mg Tablet?', 'The recommended starting dose of Linpride 1mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(18228, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'Does Linpride 1mg Tablet make you sleepy?', 'Linpride 1mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(18229, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'Is Linpride 1mg Tablet safe for kidneys?', 'Linpride 1mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Linpride 1mg Tablet is principally eliminated by the kidneys.'),
(18230, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'Does Linpride 1mg Tablet cause memory loss?', 'No, it is not known that Linpride 1mg Tablet causes memory loss. However, the use of Linpride 1mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(18231, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'Who should not take Linpride 1mg Tablet?', 'Linpride 1mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Linpride 1mg Tablet.'),
(18232, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'How long does it take for Linpride 1mg Tablet to start working?', 'Linpride 1mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(18233, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'How long do I need to take Linpride 1mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Linpride 1mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Linpride 1mg Tablet without talking to your doctor. If you stop taking Linpride 1mg Tablet suddenly your diabetes may get worse.'),
(18234, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'What can happen if I take more than the recommended dose of Linpride 1mg Tablet?', 'Linpride 1mg Tablet should be taken strictly as advised by the doctor. Overdose of Linpride 1mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(18235, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'Can you take Linpride 1mg Tablet on an empty stomach?', 'No. Taking Linpride 1mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Linpride 1mg Tablet.'),
(18236, 'Linpride 1mg Tablet', 'Balint pharmaceuticals', 'Linpride 1mg Tablet', 'Can Linpride 1mg Tablet cause weight gain?', 'Yes, Linpride 1mg Tablet can cause weight gain. Linpride 1mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18237, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'What is the dosage of Linpride 2mg Tablet?', 'The recommended starting dose of Linpride 2mg Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(18238, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'Does Linpride 2mg Tablet make you sleepy?', 'Linpride 2mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(18239, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'Is Linpride 2mg Tablet safe for kidneys?', 'Linpride 2mg Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Linpride 2mg Tablet is principally eliminated by the kidneys.'),
(18240, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'Does Linpride 2mg Tablet cause memory loss?', 'No, it is not known that Linpride 2mg Tablet causes memory loss. However, the use of Linpride 2mg Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(18241, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'Who should not take Linpride 2mg Tablet?', 'Linpride 2mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Linpride 2mg Tablet.'),
(18242, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'How long does it take for Linpride 2mg Tablet to start working?', 'Linpride 2mg Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(18243, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'How long do I need to take Linpride 2mg Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Linpride 2mg Tablet only controls the sugar levels but does not cure it. Do not stop taking Linpride 2mg Tablet without talking to your doctor. If you stop taking Linpride 2mg Tablet suddenly your diabetes may get worse.'),
(18244, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'What can happen if I take more than the recommended dose of Linpride 2mg Tablet?', 'Linpride 2mg Tablet should be taken strictly as advised by the doctor. Overdose of Linpride 2mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(18245, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'Can you take Linpride 2mg Tablet on an empty stomach?', 'No. Taking Linpride 2mg Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Linpride 2mg Tablet.'),
(18246, 'Linpride 2mg Tablet', 'Balint pharmaceuticals', 'Linpride 2mg Tablet', 'Can Linpride 2mg Tablet cause weight gain?', 'Yes, Linpride 2mg Tablet can cause weight gain. Linpride 2mg Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(18247, 'Linpride MF 1 Tablet', 'Balint pharmaceuticals', 'Linpride MF 1 Tablet', 'What are the recommended storage conditions for Linpride MF 1 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18248, 'Linpride MF 1 Tablet', 'Balint pharmaceuticals', 'Linpride MF 1 Tablet', 'Can the use of Linpride MF 1 Tablet lead to lactic acidosis?', 'Yes, the use of Linpride MF 1 Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linpride MF 1 Tablet and consult your doctor immediately.'),
(18249, 'Linpride MF 1 Tablet', 'Balint pharmaceuticals', 'Linpride MF 1 Tablet', 'What is Linpride MF 1 Tablet?', 'Linpride MF 1 Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(18250, 'Linpride MF 1 Tablet', 'Balint pharmaceuticals', 'Linpride MF 1 Tablet', 'What are the possible side effects of Linpride MF 1 Tablet?', 'The use of Linpride MF 1 Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(18251, 'Linpride MF 1 Tablet', 'Balint pharmaceuticals', 'Linpride MF 1 Tablet', 'Can the use of Linpride MF 1 Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Linpride MF 1 Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(18252, 'Linpride MF 1 Tablet', 'Balint pharmaceuticals', 'Linpride MF 1 Tablet', 'Can the use of Linpride MF 1 Tablet cause hypoglycemia?', 'Yes, the use of Linpride MF 1 Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(18253, 'Linpride MF 1 Tablet', 'Balint pharmaceuticals', 'Linpride MF 1 Tablet', 'Is it safe to take alcohol while I am also taking Linpride MF 1 Tablet?', 'No, it is not safe to take Linpride MF 1 Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(18254, 'Linpride MF 2 Tablet', 'Balint pharmaceuticals', 'Linpride MF 2 Tablet', 'What are the recommended storage conditions for Linpride MF 2 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18255, 'Linpride MF 2 Tablet', 'Balint pharmaceuticals', 'Linpride MF 2 Tablet', 'Can the use of Linpride MF 2 Tablet lead to lactic acidosis?', 'Yes, the use of Linpride MF 2 Tablet can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Linpride MF 2 Tablet and consult your doctor immediately.'),
(18256, 'Linpride MF 2 Tablet', 'Balint pharmaceuticals', 'Linpride MF 2 Tablet', 'What is Linpride MF 2 Tablet?', 'Linpride MF 2 Tablet is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(18257, 'Linpride MF 2 Tablet', 'Balint pharmaceuticals', 'Linpride MF 2 Tablet', 'What are the possible side effects of Linpride MF 2 Tablet?', 'The use of Linpride MF 2 Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(18258, 'Linpride MF 2 Tablet', 'Balint pharmaceuticals', 'Linpride MF 2 Tablet', 'Can the use of Linpride MF 2 Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Linpride MF 2 Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(18259, 'Linpride MF 2 Tablet', 'Balint pharmaceuticals', 'Linpride MF 2 Tablet', 'Can the use of Linpride MF 2 Tablet cause hypoglycemia?', 'Yes, the use of Linpride MF 2 Tablet can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(18260, 'Linpride MF 2 Tablet', 'Balint pharmaceuticals', 'Linpride MF 2 Tablet', 'Is it safe to take alcohol while I am also taking Linpride MF 2 Tablet?', 'No, it is not safe to take Linpride MF 2 Tablet along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(18261, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'Who should not use Linquine F 300mg Syrup?', 'Use of Linquine F 300mg Syrup should be avoided in patients who are allergic to Linquine F 300mg Syrup or any of its components. However, if you are not aware of any allergy or if you are using Linquine F 300mg Syrup for the first time, consult your doctor.'),
(18262, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'What should I tell my doctor before starting treatment with Linquine F 300mg Syrup?', 'Before starting treatment with Linquine F 300mg Syrup, inform your doctor if you have any other health conditions like kidney or heart-related problems. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Also, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant or breastfeeding.'),
(18263, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'Is Linquine F 300mg Syrup safe?', 'Linquine F 300mg Syrup is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(18264, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'What if I forget to take a dose of Linquine F 300mg Syrup?', 'If you forget a dose of Linquine F 300mg Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(18265, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'Can I stop taking Linquine F 300mg Syrup when I feel better?', 'No, do not stop taking Linquine F 300mg Syrup without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(18266, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'How long does it take for malaria symptoms to show?', 'Symptoms of malaria can develop as quickly as 7 days after you are being bitten by an infected mosquito. Typically, the time between being infected and the appearance of symptoms (incubation period) is 7 to 18 days. However, in some cases it can take up to one year for the symptoms to develop. Initial symptoms of malaria are flu-like which include feeling hot and shivery, muscle pains, vomiting, headaches and diarrhea.'),
(18267, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'How can you prevent yourself from getting malaria?', 'Malaria can be avoided by taking the right approach towards prevention. Avoid mosquito bites by covering your arms and legs, using mosquito net and insect repellent. Check with your doctor whether you need to take malaria prevention tablets. If you do, make sure you take the right antimalarial tablets at the right dose, and finish the proper course of treatment. Seek immediate medical advice from the doctor if you have malaria symptoms.'),
(18268, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'Can I take Linquine F 300mg Syrup if I have kidney disease?', 'Linquine F 300mg Syrup should be used with caution in patients having an impaired kidney function. Do not self medicate and avoid its use. If the impairment is very severe then the use of this medicine should be avoided. Therefore, inform your doctor before taking Linquine F 300mg Syrup.'),
(18269, 'Linquine F 300mg Syrup', 'Lincoln Pharmaceuticals Ltd', 'Linquine F 300mg Syrup', 'Can I take Linquine F 300mg Syrup when I am pregnant?', 'No, the use of Linquine F 300mg Syrup is not recommended during pregnancy as it may harm your unborn baby. Seek proper advice from your doctor on using this medicine, if you are pregnant.'),
(18270, 'Linrise 600 Tablet', 'Tridev Pharmaceutical', 'Linrise 600 Tablet', 'Can the use of Linrise 600 Tablet cause diarrhea?', 'Yes, the use of Linrise 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18271, 'Linrise 600 Tablet', 'Tridev Pharmaceutical', 'Linrise 600 Tablet', 'What foods should I avoid while taking Linrise 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linrise 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18272, 'Linrox 600mg Tablet', 'Cadwell Pharma Private Limited', 'Linrox 600mg Tablet', 'Can the use of Linrox 600mg Tablet cause diarrhea?', 'Yes, the use of Linrox 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18273, 'Linrox 600mg Tablet', 'Cadwell Pharma Private Limited', 'Linrox 600mg Tablet', 'What foods should I avoid while taking Linrox 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linrox 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18274, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'Can I stop taking Linsa Junior Syrup on my own if my cough reduces?', 'Do not stop taking Linsa Junior Syrup on your own as it may worsen cough or cause recurring symptoms. Therefore, take Linsa Junior Syrup for as long as your doctor has prescribed it.'),
(18275, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'Does Linsa Junior Syrup cause diarrhea?', 'Diarrhea could be a side-effect of Linsa Junior Syrup. Stick to simple meals, avoid rich or spicy food, and drink plenty of water while taking Linsa Junior Syrup. Consult your doctor if you have severe diarrhea.'),
(18276, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'Does Linsa Junior Syrup cause irregular heartbeat?', 'Linsa Junior Syrup may cause palpitations or increased heartbeat. A minor fluctuation in the heart rate should not be a worry. You can monitor your heart rate regularly while taking Linsa Junior Syrup and consult your doctor if you notice any major changes in heart rate.'),
(18277, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'How will I know if Linsa Junior Syrup is working?', 'When you take this medicine, you may notice an increase in thin watery mucus from your air passages. This is an indication that it is working as it is helping to remove mucus by making it easier to cough up.'),
(18278, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'Is Linsa Junior Syrup good for dry cough?', 'No. Linsa Junior Syrup is more effective in the treatment of productive cough associated with thickened mucus. Consult your doctor to prescribe you the right medication for dry cough.'),
(18279, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'Does Linsa Junior Syrup make you drowsy?', 'This medicine may cause dizziness or drowsiness in some people. If you have any of these symptoms, do not drive, operate machinery or do anything else that could be dangerous.'),
(18280, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'Can I take other cough syrups while taking Linsa Junior Syrup?', 'No, you should not start taking any other cough syrups without consulting your doctor. The cough syrups which suppress the cough should be avoided with this medication as it would interfere with the action of the medicine.'),
(18281, 'Linsa Junior Syrup', 'Benmed Pharmaceuticals', 'Linsa Junior Syrup', 'Along with taking Linsa Junior Syrup, what other tips should I follow to get relief from congestion?', 'Along with taking Linsa Junior Syrup, drink plenty of warm fluids (soup, water, herbal tea), gargle with saline water, avoid smoking, alcohol, caffeine, oily food, and take a healthy diet.'),
(18282, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'Can I stop taking Linsa Syrup on my own if my cough reduces?', 'Do not stop taking Linsa Syrup on your own as it may worsen cough or cause recurring symptoms. Therefore, take Linsa Syrup for as long as your doctor has prescribed it.'),
(18283, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'Does Linsa Syrup cause diarrhea?', 'Diarrhea could be a side-effect of Linsa Syrup. Stick to simple meals, avoid rich or spicy food, and drink plenty of water while taking Linsa Syrup. Consult your doctor if you have severe diarrhea.'),
(18284, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'Does Linsa Syrup cause irregular heartbeat?', 'Linsa Syrup may cause palpitations or increased heartbeat. A minor fluctuation in the heart rate should not be a worry. You can monitor your heart rate regularly while taking Linsa Syrup and consult your doctor if you notice any major changes in heart rate.'),
(18285, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'How will I know if Linsa Syrup is working?', 'When you take this medicine, you may notice an increase in thin watery mucus from your air passages. This is an indication that it is working as it is helping to remove mucus by making it easier to cough up.'),
(18286, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'Is Linsa Syrup good for dry cough?', 'No. Linsa Syrup is more effective in the treatment of productive cough associated with thickened mucus. Consult your doctor to prescribe you the right medication for dry cough.'),
(18287, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'Does Linsa Syrup make you drowsy?', 'This medicine may cause dizziness or drowsiness in some people. If you have any of these symptoms, do not drive, operate machinery or do anything else that could be dangerous.'),
(18288, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'Can I take other cough syrups while taking Linsa Syrup?', 'No, you should not start taking any other cough syrups without consulting your doctor. The cough syrups which suppress the cough should be avoided with this medication as it would interfere with the action of the medicine.'),
(18289, 'Linsa Syrup', 'Benmed Pharmaceuticals', 'Linsa Syrup', 'Along with taking Linsa Syrup, what other tips should I follow to get relief from congestion?', 'Along with taking Linsa Syrup, drink plenty of warm fluids (soup, water, herbal tea), gargle with saline water, avoid smoking, alcohol, caffeine, oily food, and take a healthy diet.'),
(18290, 'Linsan 600 Tablet', 'Ritsan Healthcare Pvt. Ltd.', 'Linsan 600 Tablet', 'Can the use of Linsan 600 Tablet cause diarrhea?', 'Yes, the use of Linsan 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18291, 'Linsan 600 Tablet', 'Ritsan Healthcare Pvt. Ltd.', 'Linsan 600 Tablet', 'What foods should I avoid while taking Linsan 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linsan 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18292, 'Linsin 300 Injection', 'Gurgrace Pharmaceuticals', 'Linsin 300 Injection', 'What if I don\'t get better after using Linsin 300 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(18293, 'Linsin 300 Injection', 'Gurgrace Pharmaceuticals', 'Linsin 300 Injection', 'Can the use of Linsin 300 Injection cause diarrhea?', 'Yes, the use of Linsin 300 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18294, 'Linsin 300 Injection', 'Gurgrace Pharmaceuticals', 'Linsin 300 Injection', 'How long does Linsin 300 Injection take to work?', 'Usually, Linsin 300 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(18295, 'Linsin 300 Injection', 'Gurgrace Pharmaceuticals', 'Linsin 300 Injection', 'How is Linsin 300 Injection administered?', 'Linsin 300 Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Linsin 300 Injection.'),
(18296, 'Linsin 300 Injection', 'Gurgrace Pharmaceuticals', 'Linsin 300 Injection', 'Is Linsin 300 Injection effective?', 'Linsin 300 Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Linsin 300 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Linsin 300 Injection too early, the symptoms may return or worsen.'),
(18297, 'Linsin 300 Injection', 'Gurgrace Pharmaceuticals', 'Linsin 300 Injection', 'Is Linsin 300 Injection safe?', 'Linsin 300 Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(18298, 'Linsita M 50mg/500mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linsita M 50mg/500mg Tablet', 'What is Linsita M 50mg/500mg Tablet?', 'Linsita M 50mg/500mg Tablet is a combination of two medicines: Sitagliptin and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus. It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Metformin lowers glucose production in the liver and improves insulin sensitivity. Sitagliptin inhibits the enzyme DPP4 and increases insulin release from the pancreas. This combination is not indicated for the patients below 18 years of age.'),
(18299, 'Linsita M 50mg/500mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linsita M 50mg/500mg Tablet', 'What are the possible side effects of Linsita M 50mg/500mg Tablet?', 'The use of Linsita M 50mg/500mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache, and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to Vitamin B12 deficiency.'),
(18300, 'Linsita M 50mg/500mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linsita M 50mg/500mg Tablet', 'Are there any specific conditions in which Linsita M 50mg/500mg Tablet should not be taken?', 'The use of Linsita M 50mg/500mg Tablet should be avoided in patients with known allergies to any of the components or excipients of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis, or diabetic ketoacidosis.'),
(18301, 'Linsita M 50mg/500mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linsita M 50mg/500mg Tablet', 'Is it safe to take alcohol while I am taking Linsita M 50mg/500mg Tablet?', 'No, it is not safe to consume alcohol along with Linsita M 50mg/500mg Tablet, as it can increase the chances of lactic acidosis.'),
(18302, 'Linsita M 50mg/500mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linsita M 50mg/500mg Tablet', 'Can the use of Linsita M 50mg/500mg Tablet lead to lactic acidosis?', 'Yes, the use of Linsita M 50mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency caused by the increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin. Therefore, it is avoided in patients with underlying kidney disease, old age patients, or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain, or slow heart rate. If you have these symptoms, stop taking Sitagliptin + Metformin and immediately consult your doctor.'),
(18303, 'Linsita M 50mg/500mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linsita M 50mg/500mg Tablet', 'Can the use of Linsita M 50mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, using Linsita M 50mg/500mg Tablet can cause Vitamin B12 deficiency in the long term. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems, as a result of which the patient can feel a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status, and difficulty maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(18304, 'Linsita M 50mg/500mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linsita M 50mg/500mg Tablet', 'What are the instructions for storage and disposal of Linsita M 50mg/500mg Tablet?', 'Keep this medicine tightly closed in the container or pack it came in. Store it according to the instructions on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, or other people.'),
(18305, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Is Linslide 100mg Tablet MD an antibiotic?', 'Linslide 100mg Tablet MD is not an antibiotic, it belongs to the class of medicines known as non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug) which helps in relieving pain associated with various disease conditions.'),
(18306, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Can I take Linslide 100mg Tablet MD with paracetamol?', 'Linslide 100mg Tablet MD and paracetamol belong to the same class of medicines known as non-steroidal anti-inflammatory drugs (NSAIDs; pain-relieving drugs). Taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding. However, please consult your doctor before using the two medicines together.'),
(18307, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Does Linslide 100mg Tablet MD contain aspirin?', 'Linslide 100mg Tablet MD is a non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug). It does not contain aspirin.'),
(18308, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Is Linslide 100mg Tablet MD safe?', 'Linslide 100mg Tablet MD is safe to use if taken at prescribed dose and duration as advised by your doctor.'),
(18309, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Can I take Linslide 100mg Tablet MD for headache?', 'Linslide 100mg Tablet MD can be taken for a headache only when advised by your doctor.'),
(18310, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Does Linslide 100mg Tablet MD make you drowsy (feeling sleepy)?', 'Linslide 100mg Tablet MD does not make you feel drowsy at prescribed doses. However, an overdose of Linslide 100mg Tablet MD can make you drowsy (feeling sleepy).'),
(18311, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Does Linslide 100mg Tablet MD contain sulphur?', 'No, Linslide 100mg Tablet MD does not contain sulphur.'),
(18312, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'What does Linslide 100mg Tablet MD treat or used for?', 'Linslide 100mg Tablet MD is used to treat acute pain, painful osteoarthritis (degeneration of joints) and primary dysmenorrhea (painful menstruation) in adolescents and adults above 12 years old.'),
(18313, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Can I take Linslide 100mg Tablet MD with ibuprofen?', 'Linslide 100mg Tablet MD can be taken with ibuprofen. No drug-drug interactions have been reported between the two. However, taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding.  Please consult your doctor before taking the two medicines together.u003cbr>'),
(18314, 'Linslide 100mg Tablet MD', 'Linex Pharmaceuticals', 'Linslide 100mg Tablet MD', 'Can I take Linslide 100mg Tablet MD with aspirin?', 'Linslide 100mg Tablet MD can be taken with aspirin. No drug-drug interactions have been clinically observed between the two. However, this does not mean that interactions cannot occur. Please consult your doctor before taking the two medicines together.'),
(18315, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'What is Linslide Plus 100mg/325mg Tablet?', 'Linslide Plus 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(18316, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'Can I stop taking Linslide Plus 100mg/325mg Tablet when my pain is relieved?', 'Linslide Plus 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(18317, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'Can the use of Linslide Plus 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Linslide Plus 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(18318, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Linslide Plus 100mg/325mg Tablet?', 'The use of Linslide Plus 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(18319, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'Can I take Linslide Plus 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Linslide Plus 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Linslide Plus 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(18320, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'Does Linslide Plus 100mg/325mg Tablet help in relieving stomach pain?', 'No, Linslide Plus 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(18321, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'Can the use of Linslide Plus 100mg/325mg Tablet cause damage to the liver?', 'Linslide Plus 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(18322, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Linslide Plus 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Linslide Plus 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(18323, 'Linslide Plus 100mg/325mg Tablet', 'Linex Pharmaceuticals', 'Linslide Plus 100mg/325mg Tablet', 'What are the recommended storage conditions for Linslide Plus 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18324, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'Can I increase or decrease the dose of my child’s medicine by myself?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While increasing the dose without proper judgment may lead to toxicity, decreasing it may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(18325, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'How much Linslide Plus Syrup should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure the safe and complete recovery of your child.'),
(18326, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'How should Linslide Plus Syrup be stored?', 'Linslide Plus Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(18327, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'Can all children be given the same dose of Linslide Plus Syrup?', 'No. Linslide Plus Syrup cannot be given to everyone in the same dose. The doctor decides the appropriate dose of Linslide Plus Syrup based on the child’s age and body weight.'),
(18328, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'When will my child feel better?', 'You may be required to give Linslide Plus Syrup to your child for a few days to weeks, depending upon the severity of the infection.If your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(18329, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'Are there any serious side effects of this medicine for my child?', 'Although Linslide Plus Syrup is well-tolerated by children, if you notice your child experiencing any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, or serious allergic reaction, rush to your doctor on an immediate basis.'),
(18330, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'What is Linslide Plus Syrup?', 'Linslide Plus Syrup is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(18331, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'Can I stop taking Linslide Plus Syrup when my pain is relieved?', 'Linslide Plus Syrup is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(18332, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'Can the use of Linslide Plus Syrup cause nausea and vomiting?', 'Yes, the use of Linslide Plus Syrup can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(18333, 'Linslide Plus Syrup', 'Linex Pharmaceuticals', 'Linslide Plus Syrup', 'Are there any specific contraindications associated with the use of Linslide Plus Syrup?', 'The use of Linslide Plus Syrup is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(18334, 'Linslide SP 100mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Linslide SP 100mg/325mg/15mg Tablet', 'Can I stop taking Linslide SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'Linslide SP 100mg/325mg/15mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if advised by the doctor.'),
(18335, 'Linslide SP 100mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Linslide SP 100mg/325mg/15mg Tablet', 'Can the use of Linslide SP 100mg/325mg/15mg Tablet cause damage to the liver?', 'Linslide SP 100mg/325mg/15mg Tablet contains nimesulide and paracetamol, and both these medicines are known to cause harm to the liver especially in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease.'),
(18336, 'Linslide SP 100mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Linslide SP 100mg/325mg/15mg Tablet', 'Can I take a higher than the recommended dose of Linslide SP 100mg/325mg/15mg Tablet?', 'No, taking a higher than the recommended dose of Linslide SP 100mg/325mg/15mg Tablet can lead to increased chances of side effects. If the recommended dosage does not relieve your symptoms or you experience increased severity of pain, please consult your doctor for re-evaluation.'),
(18337, 'Linslide SP 100mg/325mg/15mg Tablet', 'Linex Pharmaceuticals', 'Linslide SP 100mg/325mg/15mg Tablet', 'What are the instructions for the storage and disposal of Linslide SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18338, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'Can I increase or decrease the dose of my child’s medicine by myself?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While increasing the dose without proper judgment may lead to toxicity, decreasing it may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(18339, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'How much Linslide Syrup should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure the safe and complete recovery of your child.'),
(18340, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'Is it safe to give Linslide Syrup to my child for more than two weeks?', 'Prolong intake of Linslide Syrup can lead to increased secretion of acid in the stomach. These increased acid levels can result in ulcer formations which eventually can lead to gastrointestinal bleeding. Therefore, it is advised to use Linslide Syrup in its lowest effective dose for the shortest duration of time. Consult your doctor if not sure.'),
(18341, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'How should Linslide Syrup be stored?', 'Linslide Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(18342, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'Can all children be given the same dose of Linslide Syrup?', 'No. Linslide Syrup cannot be given to everyone in the same dose. The doctor decides the appropriate dose of Linslide Syrup based on the child’s age and body weight.'),
(18343, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'When will my child feel better?', 'You may be required to give Linslide Syrup to your child for a few days to weeks, depending upon the severity of the infection. If your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(18344, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'Are there any serious side effects of this medicine for my child?', 'Although Linslide Syrup is well-tolerated by children, if you notice your child experiencing any intolerable episodes like persistent vomiting, body swelling, hepatotoxicity, decreased urine frequency, or serious allergic reaction, rush to your doctor on an immediate basis.'),
(18345, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'Is Linslide Syrup an antibiotic?', 'Linslide Syrup is not an antibiotic, it belongs to the class of medicines known as non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug) which helps in relieving pain associated with various disease conditions.'),
(18346, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'Can I take Linslide Syrup with paracetamol?', 'Linslide Syrup and paracetamol belong to the same class of medicines known as non-steroidal anti-inflammatory drugs (NSAIDs; pain-relieving drugs). Taking the two medicines together is not advisable as it may increase the potential for gastric ulceration and bleeding. However, please consult your doctor before using the two medicines together.'),
(18347, 'Linslide Syrup', 'Linex Pharmaceuticals', 'Linslide Syrup', 'Does Linslide Syrup contain aspirin?', 'Linslide Syrup is a non-steroidal anti-inflammatory drug (NSAIDs; pain-relieving drug). It does not contain aspirin.'),
(18348, 'Linso 600mg Tablet', 'Astrica Biomedics Pvt Ltd', 'Linso 600mg Tablet', 'Can the use of Linso 600mg Tablet cause diarrhea?', 'Yes, the use of Linso 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18349, 'Linso 600mg Tablet', 'Astrica Biomedics Pvt Ltd', 'Linso 600mg Tablet', 'What foods should I avoid while taking Linso 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linso 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18350, 'Linstar 600mg Tablet', 'Captab Biotec', 'Linstar 600mg Tablet', 'Can the use of Linstar 600mg Tablet cause diarrhea?', 'Yes, the use of Linstar 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18351, 'Linstar 600mg Tablet', 'Captab Biotec', 'Linstar 600mg Tablet', 'What foods should I avoid while taking Linstar 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linstar 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18352, 'Linster 1000mg Injection', 'Brooks Laboratories Limited', 'Linster 1000mg Injection', 'How does Linster 1000mg Injection work?', 'Linster 1000mg Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(18353, 'Linster 1000mg Injection', 'Brooks Laboratories Limited', 'Linster 1000mg Injection', 'Is Linster 1000mg Injection a steroid?', 'Yes, Linster 1000mg Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Linster 1000mg Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(18354, 'Linster 1000mg Injection', 'Brooks Laboratories Limited', 'Linster 1000mg Injection', 'What is Linster 1000mg Injection used for?', 'Linster 1000mg Injection has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(18355, 'Linster 1000mg Injection', 'Brooks Laboratories Limited', 'Linster 1000mg Injection', 'How is Linster 1000mg Injection administered?', 'Linster 1000mg Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). The doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Linster 1000mg Injection.'),
(18356, 'Linster 1000mg Injection', 'Brooks Laboratories Limited', 'Linster 1000mg Injection', 'Is Linster 1000mg Injection better than Prednisone?', 'Clinical studies have shown that Linster 1000mg Injection is more strong and efficient than Prednisone. It stays in our body for a longer duration and is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(18357, 'Linster 1000mg Injection', 'Brooks Laboratories Limited', 'Linster 1000mg Injection', 'Does Linster 1000mg Injection cause weight gain?', 'Linster 1000mg Injection can cause weight gain especially when high doses taken for a long time or repeated short courses are taken. Please consult your doctor if you experience weight gain after taking Linster 1000mg Injection.'),
(18358, 'Linster 125mg Injection', 'Brooks Laboratories Limited', 'Linster 125mg Injection', 'How does Linster 125mg Injection work?', 'Linster 125mg Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(18359, 'Linster 125mg Injection', 'Brooks Laboratories Limited', 'Linster 125mg Injection', 'Is Linster 125mg Injection a steroid?', 'Yes, Linster 125mg Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Linster 125mg Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(18360, 'Linster 125mg Injection', 'Brooks Laboratories Limited', 'Linster 125mg Injection', 'What is Linster 125mg Injection used for?', 'Linster 125mg Injection has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(18361, 'Linster 125mg Injection', 'Brooks Laboratories Limited', 'Linster 125mg Injection', 'How is Linster 125mg Injection administered?', 'Linster 125mg Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). The doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Linster 125mg Injection.'),
(18362, 'Linster 125mg Injection', 'Brooks Laboratories Limited', 'Linster 125mg Injection', 'Is Linster 125mg Injection better than Prednisone?', 'Clinical studies have shown that Linster 125mg Injection is more strong and efficient than Prednisone. It stays in our body for a longer duration and is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(18363, 'Linster 125mg Injection', 'Brooks Laboratories Limited', 'Linster 125mg Injection', 'Does Linster 125mg Injection cause weight gain?', 'Linster 125mg Injection can cause weight gain especially when high doses taken for a long time or repeated short courses are taken. Please consult your doctor if you experience weight gain after taking Linster 125mg Injection.'),
(18364, 'Linster 500mg Injection', 'Brooks Laboratories Limited', 'Linster 500mg Injection', 'How does Linster 500mg Injection work?', 'Linster 500mg Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(18365, 'Linster 500mg Injection', 'Brooks Laboratories Limited', 'Linster 500mg Injection', 'Is Linster 500mg Injection a steroid?', 'Yes, Linster 500mg Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Linster 500mg Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(18366, 'Linster 500mg Injection', 'Brooks Laboratories Limited', 'Linster 500mg Injection', 'What is Linster 500mg Injection used for?', 'Linster 500mg Injection has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(18367, 'Linster 500mg Injection', 'Brooks Laboratories Limited', 'Linster 500mg Injection', 'How is Linster 500mg Injection administered?', 'Linster 500mg Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). The doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Linster 500mg Injection.'),
(18368, 'Linster 500mg Injection', 'Brooks Laboratories Limited', 'Linster 500mg Injection', 'Is Linster 500mg Injection better than Prednisone?', 'Clinical studies have shown that Linster 500mg Injection is more strong and efficient than Prednisone. It stays in our body for a longer duration and is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(18369, 'Linster 500mg Injection', 'Brooks Laboratories Limited', 'Linster 500mg Injection', 'Does Linster 500mg Injection cause weight gain?', 'Linster 500mg Injection can cause weight gain especially when high doses taken for a long time or repeated short courses are taken. Please consult your doctor if you experience weight gain after taking Linster 500mg Injection.'),
(18370, 'Linsu SP 100mg/325mg/15mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu SP 100mg/325mg/15mg Tablet', 'Can I stop taking Linsu SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'Linsu SP 100mg/325mg/15mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if advised by the doctor.'),
(18371, 'Linsu SP 100mg/325mg/15mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu SP 100mg/325mg/15mg Tablet', 'Can the use of Linsu SP 100mg/325mg/15mg Tablet cause damage to the liver?', 'Linsu SP 100mg/325mg/15mg Tablet contains nimesulide and paracetamol, and both these medicines are known to cause harm to the liver especially in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease.'),
(18372, 'Linsu SP 100mg/325mg/15mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu SP 100mg/325mg/15mg Tablet', 'Can I take a higher than the recommended dose of Linsu SP 100mg/325mg/15mg Tablet?', 'No, taking a higher than the recommended dose of Linsu SP 100mg/325mg/15mg Tablet can lead to increased chances of side effects. If the recommended dosage does not relieve your symptoms or you experience increased severity of pain, please consult your doctor for re-evaluation.'),
(18373, 'Linsu SP 100mg/325mg/15mg Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu SP 100mg/325mg/15mg Tablet', 'What are the instructions for the storage and disposal of Linsu SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18374, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'What is Linsu-P Tablet?', 'Linsu-P Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(18375, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'Can I stop taking Linsu-P Tablet when my pain is relieved?', 'Linsu-P Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(18376, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'Can the use of Linsu-P Tablet cause nausea and vomiting?', 'Yes, the use of Linsu-P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(18377, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'Are there any specific contraindications associated with the use of Linsu-P Tablet?', 'The use of Linsu-P Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(18378, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'Can I take Linsu-P Tablet with Vitamin B-complex?', 'Yes, Linsu-P Tablet can be taken with Vitamin B-complex preparations. While Linsu-P Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(18379, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'Does Linsu-P Tablet help in relieving stomach pain?', 'No, Linsu-P Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(18380, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'Can the use of Linsu-P Tablet cause damage to the liver?', 'Linsu-P Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(18381, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'Is it safe to take a higher than the recommended dose of Linsu-P Tablet?', 'No, you should avoid taking a higher than the recommended dose of Linsu-P Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(18382, 'Linsu-P Tablet', 'Grapple Life Sciences Pvt Ltd', 'Linsu-P Tablet', 'What are the recommended storage conditions for Linsu-P Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18383, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'How long does it take for Linta 50mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Linta 50mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(18384, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'How long do I need to take Linta 50mg Tablet?', 'You should continue taking Linta 50mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(18385, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'When is the best time to take Linta 50mg Tablet?', 'Linta 50mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Linta 50mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.'),
(18386, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'Does Linta 50mg Tablet cause sleepiness?', 'Yes, Linta 50mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Linta 50mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Linta 50mg Tablet, which may disappear after 2-3 months of use of Linta 50mg Tablet.'),
(18387, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'What does Linta 50mg Tablet do for anxiety?', 'Linta 50mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(18388, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'Can I stop taking Linta 50mg Tablet if I am better now?', 'No, you should not stop taking Linta 50mg Tablet without consulting your doctor. This is because sudden discontinuation of Linta 50mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(18389, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'What are the withdrawal symptoms of Linta 50mg Tablet?', 'The withdrawal symptoms of Linta 50mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Linta 50mg Tablet.'),
(18390, 'Linta 50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Linta 50mg Tablet', 'What are the symptoms of overdose of Linta 50mg Tablet?', 'The symptoms of overdose of Linta 50mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(18391, 'Lintab 5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab 5mg Tablet', 'What is Lintab 5mg Tablet used for?', 'Lintab 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Lintab 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Lintab 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(18392, 'Lintab 5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab 5mg Tablet', 'When should I take Lintab 5mg Tablet? What if I miss a dose?', 'Lintab 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(18393, 'Lintab 5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab 5mg Tablet', 'Is Lintab 5mg Tablet bad for kidneys?', 'No, there is no evidence that Lintab 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(18394, 'Lintab 5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab 5mg Tablet', 'Is Lintab 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Lintab 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(18395, 'Lintab 5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab 5mg Tablet', 'For how long I have to take Lintab 5mg Tablet? Can I stop the medication?', 'You should keep taking Lintab 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(18396, 'Lintab IR 1000mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 1000mg/2.5mg Tablet', 'Can the use of Lintab IR 1000mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lintab IR 1000mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lintab IR 1000mg/2.5mg Tablet and immediately consult your doctor.'),
(18397, 'Lintab IR 1000mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 1000mg/2.5mg Tablet', 'What are the possible side effects of Lintab IR 1000mg/2.5mg Tablet?', 'The use of Lintab IR 1000mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(18398, 'Lintab IR 1000mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 1000mg/2.5mg Tablet', 'Are there any specific conditions in which Lintab IR 1000mg/2.5mg Tablet should not be taken?', 'The use of Lintab IR 1000mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lintab IR 1000mg/2.5mg Tablet.'),
(18399, 'Lintab IR 1000mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 1000mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lintab IR 1000mg/2.5mg Tablet?', 'No, it is not safe to take Lintab IR 1000mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(18400, 'Lintab IR 1000mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 1000mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lintab IR 1000mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18401, 'Lintab IR 1000mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 1000mg/2.5mg Tablet', 'Can the use of Lintab IR 1000mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lintab IR 1000mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(18402, 'Lintab IR 1000mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 1000mg/2.5mg Tablet', 'Can the use of Lintab IR 1000mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lintab IR 1000mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(18403, 'Lintab IR 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 500mg/2.5mg Tablet', 'Can the use of Lintab IR 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lintab IR 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lintab IR 500mg/2.5mg Tablet and immediately consult your doctor.'),
(18404, 'Lintab IR 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 500mg/2.5mg Tablet', 'What are the possible side effects of Lintab IR 500mg/2.5mg Tablet?', 'The use of Lintab IR 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(18405, 'Lintab IR 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 500mg/2.5mg Tablet', 'Are there any specific conditions in which Lintab IR 500mg/2.5mg Tablet should not be taken?', 'The use of Lintab IR 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lintab IR 500mg/2.5mg Tablet.'),
(18406, 'Lintab IR 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lintab IR 500mg/2.5mg Tablet?', 'No, it is not safe to take Lintab IR 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(18407, 'Lintab IR 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lintab IR 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18408, 'Lintab IR 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 500mg/2.5mg Tablet', 'Can the use of Lintab IR 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lintab IR 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(18409, 'Lintab IR 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab IR 500mg/2.5mg Tablet', 'Can the use of Lintab IR 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lintab IR 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(18410, 'Lintab M 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab M 500mg/2.5mg Tablet', 'Can the use of Lintab M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lintab M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lintab M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(18411, 'Lintab M 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab M 500mg/2.5mg Tablet', 'What are the possible side effects of Lintab M 500mg/2.5mg Tablet?', 'The use of Lintab M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(18412, 'Lintab M 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Lintab M 500mg/2.5mg Tablet should not be taken?', 'The use of Lintab M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lintab M 500mg/2.5mg Tablet.'),
(18413, 'Lintab M 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lintab M 500mg/2.5mg Tablet?', 'No, it is not safe to take Lintab M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(18414, 'Lintab M 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lintab M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18415, 'Lintab M 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab M 500mg/2.5mg Tablet', 'Can the use of Lintab M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lintab M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(18416, 'Lintab M 500mg/2.5mg Tablet', 'Alteus Biogenics Pvt Ltd', 'Lintab M 500mg/2.5mg Tablet', 'Can the use of Lintab M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lintab M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(18417, 'Lintam AT 50 MG Tablet', 'Balint pharmaceuticals', 'Lintam AT 50 MG Tablet', 'What lifestyle changes should be made while using Lintam AT 50 MG Tablet?', 'Making lifestyle changes can boost your health while taking Lintam AT 50 MG Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(18418, 'Lintam AT 50 MG Tablet', 'Balint pharmaceuticals', 'Lintam AT 50 MG Tablet', 'Can I stop taking Lintam AT 50 MG Tablet if I feel well?', 'No, keep using Lintam AT 50 MG Tablet as advised by your doctor, even if you feel well. Stopping Lintam AT 50 MG Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(18419, 'Lintam AT 50 MG Tablet', 'Balint pharmaceuticals', 'Lintam AT 50 MG Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18420, 'Lintam AT 50 MG Tablet', 'Balint pharmaceuticals', 'Lintam AT 50 MG Tablet', 'What are the contraindications associated with the use of Lintam AT 50 MG Tablet?', 'Lintam AT 50 MG Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(18421, 'Lintam AT 50 MG Tablet', 'Balint pharmaceuticals', 'Lintam AT 50 MG Tablet', 'Can the use of Lintam AT 50 MG Tablet cause headache?', 'Yes, the use of Lintam AT 50 MG Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(18422, 'Lintam AT 50 MG Tablet', 'Balint pharmaceuticals', 'Lintam AT 50 MG Tablet', 'Can I feel dizzy after taking Lintam AT 50 MG Tablet?', 'Yes, the use of Lintam AT 50 MG Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(18423, 'Lintaptin 5mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Lintaptin 5mg Tablet', 'What is Lintaptin 5mg Tablet used for?', 'Lintaptin 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Lintaptin 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Lintaptin 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(18424, 'Lintaptin 5mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Lintaptin 5mg Tablet', 'When should I take Lintaptin 5mg Tablet? What if I miss a dose?', 'Lintaptin 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(18425, 'Lintaptin 5mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Lintaptin 5mg Tablet', 'Is Lintaptin 5mg Tablet bad for kidneys?', 'No, there is no evidence that Lintaptin 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(18426, 'Lintaptin 5mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Lintaptin 5mg Tablet', 'Is Lintaptin 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Lintaptin 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(18427, 'Lintaptin 5mg Tablet', 'Knoll Healthcare Pvt Ltd', 'Lintaptin 5mg Tablet', 'For how long I have to take Lintaptin 5mg Tablet? Can I stop the medication?', 'You should keep taking Lintaptin 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(18428, 'Lintaptin M 500mg/2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lintaptin M 500mg/2.5mg Tablet', 'Can the use of Lintaptin M 500mg/2.5mg Tablet cause lactic acidosis?', 'Yes, the use of Lintaptin M 500mg/2.5mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lintaptin M 500mg/2.5mg Tablet and immediately consult your doctor.'),
(18429, 'Lintaptin M 500mg/2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lintaptin M 500mg/2.5mg Tablet', 'What are the possible side effects of Lintaptin M 500mg/2.5mg Tablet?', 'The use of Lintaptin M 500mg/2.5mg Tablet may cause some common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. It can also lead to a serious but rare side effect known as lactic acidosis. Additionally, its long-term use can also lead to vitamin B12 deficiency.'),
(18430, 'Lintaptin M 500mg/2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lintaptin M 500mg/2.5mg Tablet', 'Are there any specific conditions in which Lintaptin M 500mg/2.5mg Tablet should not be taken?', 'The use of Lintaptin M 500mg/2.5mg Tablet should be avoided in patients with known allergy to any of the components of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis. Therefore, consult your doctor before using Lintaptin M 500mg/2.5mg Tablet.'),
(18431, 'Lintaptin M 500mg/2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lintaptin M 500mg/2.5mg Tablet', 'Is it safe to take alcohol while I am also taking Lintaptin M 500mg/2.5mg Tablet?', 'No, it is not safe to take Lintaptin M 500mg/2.5mg Tablet along with alcohol. Doing so can increase the chances of lactic acidosis, particularly in cases of fasting, malnutrition or kidney dysfunction. However, if you are not sure, consult your doctor.'),
(18432, 'Lintaptin M 500mg/2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lintaptin M 500mg/2.5mg Tablet', 'What are the instructions for the storage and disposal of Lintaptin M 500mg/2.5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18433, 'Lintaptin M 500mg/2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lintaptin M 500mg/2.5mg Tablet', 'Can the use of Lintaptin M 500mg/2.5mg Tablet cause hypoglycemia?', 'The use of Lintaptin M 500mg/2.5mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(18434, 'Lintaptin M 500mg/2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lintaptin M 500mg/2.5mg Tablet', 'Can the use of Lintaptin M 500mg/2.5mg Tablet lead to vitamin B12 deficiency?', 'Yes, long-term use of Lintaptin M 500mg/2.5mg Tablet can cause vitamin B12 deficiency as it interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(18435, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. What is Lintaz 1000mg/125mg Injection?', 'Lintaz 1000mg/125mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(18436, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. Is it safe to use Lintaz 1000mg/125mg Injection?', 'Lintaz 1000mg/125mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(18437, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. How is Lintaz 1000mg/125mg Injection administered?', 'Lintaz 1000mg/125mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lintaz 1000mg/125mg Injection.'),
(18438, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. Are there any specific cautions associated with the use of Lintaz 1000mg/125mg Injection?', 'The use of Lintaz 1000mg/125mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lintaz 1000mg/125mg Injection.'),
(18439, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. Can the use of Lintaz 1000mg/125mg Injection cause contraceptive failure?', 'Yes, the use of Lintaz 1000mg/125mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lintaz 1000mg/125mg Injection.'),
(18440, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. Can I take a higher than the recommended dose of Lintaz 1000mg/125mg Injection?', 'No, Lintaz 1000mg/125mg Injection should be used in the recommended dose only. Overdose of Lintaz 1000mg/125mg Injection can increase the risks of side effects. Lintaz 1000mg/125mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(18441, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. What are the instructions for the storage and disposal of Lintaz 1000mg/125mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18442, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. Can Lintaz 1000mg/125mg Injection cause an allergic reaction?', 'Yes, Lintaz 1000mg/125mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(18443, 'Lintaz 1000mg/125mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 1000mg/125mg Injection', 'Q. Can the use of Lintaz 1000mg/125mg Injection cause diarrhea?', 'Yes, the use of Lintaz 1000mg/125mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18444, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. What is Lintaz 2000 mg/250 mg Injection?', 'Lintaz 2000 mg/250 mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(18445, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. Is it safe to use Lintaz 2000 mg/250 mg Injection?', 'Lintaz 2000 mg/250 mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(18446, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. How is Lintaz 2000 mg/250 mg Injection administered?', 'Lintaz 2000 mg/250 mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lintaz 2000 mg/250 mg Injection.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18447, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. Are there any specific cautions associated with the use of Lintaz 2000 mg/250 mg Injection?', 'The use of Lintaz 2000 mg/250 mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lintaz 2000 mg/250 mg Injection.'),
(18448, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. Can the use of Lintaz 2000 mg/250 mg Injection cause contraceptive failure?', 'Yes, the use of Lintaz 2000 mg/250 mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lintaz 2000 mg/250 mg Injection.'),
(18449, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. Can I take a higher than the recommended dose of Lintaz 2000 mg/250 mg Injection?', 'No, Lintaz 2000 mg/250 mg Injection should be used in the recommended dose only. Overdose of Lintaz 2000 mg/250 mg Injection can increase the risks of side effects. Lintaz 2000 mg/250 mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(18450, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. What are the instructions for the storage and disposal of Lintaz 2000 mg/250 mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18451, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. Can Lintaz 2000 mg/250 mg Injection cause an allergic reaction?', 'Yes, Lintaz 2000 mg/250 mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(18452, 'Lintaz 2000 mg/250 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 2000 mg/250 mg Injection', 'Q. Can the use of Lintaz 2000 mg/250 mg Injection cause diarrhea?', 'Yes, the use of Lintaz 2000 mg/250 mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18453, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'What is Lintaz 4000 mg/500 mg Injection?', 'Lintaz 4000 mg/500 mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(18454, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'Is it safe to use Lintaz 4000 mg/500 mg Injection?', 'Lintaz 4000 mg/500 mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(18455, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'How is Lintaz 4000 mg/500 mg Injection administered?', 'Lintaz 4000 mg/500 mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lintaz 4000 mg/500 mg Injection.'),
(18456, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'Are there any specific cautions associated with the use of Lintaz 4000 mg/500 mg Injection?', 'The use of Lintaz 4000 mg/500 mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lintaz 4000 mg/500 mg Injection.'),
(18457, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'Can the use of Lintaz 4000 mg/500 mg Injection cause contraceptive failure?', 'Yes, the use of Lintaz 4000 mg/500 mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lintaz 4000 mg/500 mg Injection.'),
(18458, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'Can I take a higher than the recommended dose of Lintaz 4000 mg/500 mg Injection?', 'No, Lintaz 4000 mg/500 mg Injection should be used in the recommended dose only. Overdose of Lintaz 4000 mg/500 mg Injection can increase the risks of side effects. Lintaz 4000 mg/500 mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(18459, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'What are the instructions for the storage and disposal of Lintaz 4000 mg/500 mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18460, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'Can Lintaz 4000 mg/500 mg Injection cause an allergic reaction?', 'Yes, Lintaz 4000 mg/500 mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(18461, 'Lintaz 4000 mg/500 mg Injection', 'Veritaz Healthcare Ltd', 'Lintaz 4000 mg/500 mg Injection', 'Can the use of Lintaz 4000 mg/500 mg Injection cause diarrhea?', 'Yes, the use of Lintaz 4000 mg/500 mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18462, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'Should Lintel 20 Tablet be taken in the morning or at night?', 'Lintel 20 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(18463, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'How long does it take for Lintel 20 Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(18464, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'My blood pressure is now controlled. Can I stop taking Lintel 20 Tablet now?', 'No, do not stop taking Lintel 20 Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Lintel 20 Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(18465, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'If I have some kidney problem, can I take Lintel 20 Tablet? Can it further deteriorate my kidney function?', 'You can take Lintel 20 Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Lintel 20 Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(18466, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'I am overweight and the doctor has prescribed me Lintel 20 Tablet for blood pressure control. I am bothered that Lintel 20 Tablet can increase my weight. Is it true?', 'No, do not worry since Lintel 20 Tablet is not known to cause weight gain. In fact in animal studies Lintel 20 Tablet has been found to decrease fat tissue.'),
(18467, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'Does Lintel 20 Tablet affect blood glucose levels in diabetics?', 'Lintel 20 Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(18468, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'Can the use of Lintel 20 Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Lintel 20 Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(18469, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'Does Lintel 20 Tablet work by causing excessive urination?', 'No, Lintel 20 Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Lintel 20 Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(18470, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'Do I need to follow any precautions if I take ibuprofen and Lintel 20 Tablet together?', 'If you are taking ibuprofen and Lintel 20 Tablet together, you should continuously keep a check on your blood pressure and kidney function. Lintel 20 Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Lintel 20 Tablet for heart failure. Ibuprofen may interfere with the working of Lintel 20 Tablet and decrease its efficiency at lowering blood pressure.'),
(18471, 'Lintel 20 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 20 Tablet', 'Should Lintel 20 Tablet be taken in the morning or at night?', 'Lintel 20 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(18472, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'Should Lintel 40 Tablet be taken in the morning or at night?', 'Lintel 40 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(18473, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'How long does it take for Lintel 40 Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(18474, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'My blood pressure is now controlled. Can I stop taking Lintel 40 Tablet now?', 'No, do not stop taking Lintel 40 Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Lintel 40 Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(18475, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'If I have some kidney problem, can I take Lintel 40 Tablet? Can it further deteriorate my kidney function?', 'You can take Lintel 40 Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Lintel 40 Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(18476, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'I am overweight and the doctor has prescribed me Lintel 40 Tablet for blood pressure control. I am bothered that Lintel 40 Tablet can increase my weight. Is it true?', 'No, do not worry since Lintel 40 Tablet is not known to cause weight gain. In fact in animal studies Lintel 40 Tablet has been found to decrease fat tissue.'),
(18477, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'Does Lintel 40 Tablet affect blood glucose levels in diabetics?', 'Lintel 40 Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(18478, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'Can the use of Lintel 40 Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Lintel 40 Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(18479, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'Does Lintel 40 Tablet work by causing excessive urination?', 'No, Lintel 40 Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Lintel 40 Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(18480, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'Do I need to follow any precautions if I take ibuprofen and Lintel 40 Tablet together?', 'If you are taking ibuprofen and Lintel 40 Tablet together, you should continuously keep a check on your blood pressure and kidney function. Lintel 40 Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Lintel 40 Tablet for heart failure. Ibuprofen may interfere with the working of Lintel 40 Tablet and decrease its efficiency at lowering blood pressure.'),
(18481, 'Lintel 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel 40 Tablet', 'Should Lintel 40 Tablet be taken in the morning or at night?', 'Lintel 40 Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(18482, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'What should I avoid while taking Lintel- AM Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(18483, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'What happens if I take too much of Lintel- AM Tablet?', 'If you accidentally take too much of Lintel- AM Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any of such symptoms contact your doctor immediately and seek medical help.'),
(18484, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'Can I come off Lintel- AM Tablet when my blood pressure is under control or normal?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Lintel- AM Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it. You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or stroke.'),
(18485, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'What happens if I forget to take Lintel- AM Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure then you can consult your doctor for other ways to help you remember.'),
(18486, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'What will happen if I stop taking Lintel- AM Tablet?', 'You should not stop taking Lintel- AM Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea, etc., talk to your doctor.'),
(18487, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'Is it safe to take Lintel- AM Tablet for a long time?', 'Lintel- AM Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(18488, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'How long will I be taking Lintel- AM Tablet for?', 'You may have to take Lintel- AM Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(18489, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'What if Lintel- AM Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(18490, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'Can Lintel- AM Tablet affect my fertility or sex life?', 'Lintel- AM Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep track of your blood pressure.'),
(18491, 'Lintel- AM Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel- AM Tablet', 'What other lifestyle changes should I make while taking Lintel- AM Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lintel- AM Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lintel- AM Tablet and to keep yourself healthy.'),
(18492, 'Lintel MT Tablet ER', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel MT Tablet ER', 'Can I feel dizzy after taking Lintel MT Tablet ER?', 'Yes, the use of Lintel MT Tablet ER Succinate can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(18493, 'Lintel MT Tablet ER', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel MT Tablet ER', 'What lifestyle changes should be made while using Lintel MT Tablet ER?', 'Making lifestyle changes can boost your health while taking Lintel MT Tablet ER Succinate. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce your risk of heart attack.'),
(18494, 'Lintel MT Tablet ER', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel MT Tablet ER', 'Can I stop taking Lintel MT Tablet ER when I feel better?', 'No, keep using Lintel MT Tablet ER as advised by your doctor, even if you feel well. Stopping Lintel MT Tablet ER suddenly may lead to serious complications such as heart attack and stroke.'),
(18495, 'Lintel MT Tablet ER', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel MT Tablet ER', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18496, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'What is Lintel-CT 40 Tablet?', 'Lintel-CT 40 Tablet is a combination of two medicines that helps keep the blood pressure under control. The medicine works by reducing the risk of strokes and myocardial infarction (heart attack), thereby treating hypertension (high blood pressure).'),
(18497, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'Can the use of Lintel-CT 40 Tablet cause dizziness?', 'Yes, the use of Lintel-CT 40 Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some people. If you feel dizzy or lightheaded, it would be best to rest for some time and resume once you feel better.'),
(18498, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'Are there any specific contraindications associated with the use of Lintel-CT 40 Tablet?', 'The use of Lintel-CT 40 Tablet is considered to be harmful for people with known allergy to any of the components of this medicine. It should preferably be avoided in people with severe kidney or liver impairment and in people with anuria (reduction or absence of urine). Its use should also be avoided in women who are in the second and third trimesters of their pregnancy.'),
(18499, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'What is the recommended storage condition for Lintel-CT 40 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose the unused or expired medicine. Make sure it is not consumed by pets, children and other people.'),
(18500, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'Can I come off Lintel-CT 40 Tablet when my blood pressure is controlled?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Lintel-CT 40 Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it.  You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or a stroke.'),
(18501, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'What will happen if I stop taking Lintel-CT 40 Tablet?', 'You should not stop taking Lintel-CT 40 Tablet without consulting your doctor. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience any persistent side effects, talk to your doctor.'),
(18502, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'Is it safe to take Lintel-CT 40 Tablet for a long time?', 'Lintel-CT 40 Tablet is generally safe to take for a long time. Some blood pressure medicines work best when they are taken for a long time. Consult your doctor if not sure.'),
(18503, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'How long will I be taking Lintel-CT 40 Tablet for?', 'Usually, treatment with Lintel-CT 40 Tablet is long-term and may even be for the rest of your life. Talk to your doctor in case you have any concerns regarding Lintel-CT 40 Tablet, but do not stop taking it without consulting the doctor.'),
(18504, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'What if Lintel-CT 40 Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you do not feel ill if there is any fluctuation in blood pressure. Therefore, these tablets may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(18505, 'Lintel-CT 40 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 40 Tablet', 'Can Lintel-CT 40 Tablet affect my fertility or sex life?', 'Some blood pressure medicines (including water pills like hydrochlorothiazide) may affect a man’s ability to gain or maintain an erection (erectile dysfunction). However, it is thought that other blood pressure medicines can actually improve erectile dysfunction. If you are worried or notice some changes, talk to your doctor. There is no firm evidence which suggests any effect on the fertility of either men or women with the use of Lintel-CT 40 Tablet.'),
(18506, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'What is Lintel-CT 80 Tablet?', 'Lintel-CT 80 Tablet is a combination of two medicines that helps keep the blood pressure under control. The medicine works by reducing the risk of strokes and myocardial infarction (heart attack), thereby treating hypertension (high blood pressure).'),
(18507, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'Can the use of Lintel-CT 80 Tablet cause dizziness?', 'Yes, the use of Lintel-CT 80 Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some people. If you feel dizzy or lightheaded, it would be best to rest for some time and resume once you feel better.'),
(18508, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'Are there any specific contraindications associated with the use of Lintel-CT 80 Tablet?', 'The use of Lintel-CT 80 Tablet is considered to be harmful for people with known allergy to any of the components of this medicine. It should preferably be avoided in people with severe kidney or liver impairment and in people with anuria (reduction or absence of urine). Its use should also be avoided in women who are in the second and third trimesters of their pregnancy.'),
(18509, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'What is the recommended storage condition for Lintel-CT 80 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose the unused or expired medicine. Make sure it is not consumed by pets, children and other people.'),
(18510, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'Can I come off Lintel-CT 80 Tablet when my blood pressure is controlled?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Lintel-CT 80 Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it.  You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or a stroke.'),
(18511, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'What will happen if I stop taking Lintel-CT 80 Tablet?', 'You should not stop taking Lintel-CT 80 Tablet without consulting your doctor. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience any persistent side effects, talk to your doctor.'),
(18512, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'Is it safe to take Lintel-CT 80 Tablet for a long time?', 'Lintel-CT 80 Tablet is generally safe to take for a long time. Some blood pressure medicines work best when they are taken for a long time. Consult your doctor if not sure.'),
(18513, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'How long will I be taking Lintel-CT 80 Tablet for?', 'Usually, treatment with Lintel-CT 80 Tablet is long-term and may even be for the rest of your life. Talk to your doctor in case you have any concerns regarding Lintel-CT 80 Tablet, but do not stop taking it without consulting the doctor.'),
(18514, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'What if Lintel-CT 80 Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you do not feel ill if there is any fluctuation in blood pressure. Therefore, these tablets may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(18515, 'Lintel-CT 80 Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-CT 80 Tablet', 'Can Lintel-CT 80 Tablet affect my fertility or sex life?', 'Some blood pressure medicines (including water pills like hydrochlorothiazide) may affect a man’s ability to gain or maintain an erection (erectile dysfunction). However, it is thought that other blood pressure medicines can actually improve erectile dysfunction. If you are worried or notice some changes, talk to your doctor. There is no firm evidence which suggests any effect on the fertility of either men or women with the use of Lintel-CT 80 Tablet.'),
(18516, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'What should I avoid while taking Lintel-H Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(18517, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'What happens if I take too much of Lintel-H Tablet?', 'If you accidentally take too much of Lintel-H Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any such symptoms, contact your doctor immediately and seek medical help.'),
(18518, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'Can I come off Lintel-H Tablet when my blood pressure is under control or normal?', 'Remember, Lintel-H Tablet does not cure your hypertension (high blood pressure) but helps normalize it. You should continue taking this medicine even if your blood pressure is controlled. If you stop taking Lintel-H Tablet, your blood pressure could rise back up again. Generally, blood pressure-lowering medicines are to be taken for the rest of your life. It is important to know that by keeping your blood pressure controlled you are reducing your risk of having a heart attack or a stroke.'),
(18519, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'What happens if I forget to take Lintel-H Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure, consult your doctor for other ways to help you remember.'),
(18520, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'What will happen if I stop taking Lintel-H Tablet?', 'You should not stop taking Lintel-H Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea etc., talk to your doctor.'),
(18521, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'Is it safe to take Lintel-H Tablet for a long time?', 'Lintel-H Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(18522, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'How long will I be taking Lintel-H Tablet for?', 'You may have to take Lintel-H Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(18523, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'What if Lintel-H Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(18524, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'Can Lintel-H Tablet affect my fertility or sex life?', 'Lintel-H Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep a track of your blood pressure.'),
(18525, 'Lintel-H Tablet', 'Morningg Life Pharmaceuticals Pvt Ltd', 'Lintel-H Tablet', 'What other lifestyle changes should I make while taking Lintel-H Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lintel-H Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lintel-H Tablet and to keep yourself healthy.'),
(18526, 'Lintico 1000mg Injection', 'Accilex Nutricorp', 'Lintico 1000mg Injection', 'I have been prescribed Lintico 1000mg Injection for Alzheimer’s disease. What is its role, and how does it work?', 'Lintico 1000mg Injection is a form of an essential nutrient called choline which is naturally present in the body. It protects the nerve cells in the brain from damage and also helps to repair the damaged nerve cells. Therefore, it improves learning, memory, and cognitive function (processing information or perception) in Alzheimer’s disease.'),
(18527, 'Lintico 1000mg Injection', 'Accilex Nutricorp', 'Lintico 1000mg Injection', 'Can I take alcohol during treatment with Lintico 1000mg Injection?', 'There are no studies to determine the effect of alcohol on treatment with Lintico 1000mg Injection. However, since Lintico 1000mg Injection is prescribed for stroke, Alzheimer’s disease, Parkinson’s disease, head injury, and age-related memory impairment, it is best to avoid the consumption of alcohol.'),
(18528, 'Lintico 1000mg Injection', 'Accilex Nutricorp', 'Lintico 1000mg Injection', 'Can students take Lintico 1000mg Injection to improve memory and learning?', 'No, students should not take Lintico 1000mg Injection since studies show that Lintico 1000mg Injection is effective only in age-related memory problems, memory problems associated with long-standing stroke, and in Alzheimer’s disease. Moreover, there is no data available for use of this medicine in children.'),
(18529, 'Lintico 1000mg Injection', 'Accilex Nutricorp', 'Lintico 1000mg Injection', 'What is the role of Lintico 1000mg Injection in stroke?', 'In cases of stroke caused due to blood clots, taking Lintico 1000mg Injection orally can help the patient recover completely within 3 months. Also, giving Lintico 1000mg Injection either intravenously (injecting the medicine in vein directly) within 12 hours of having a stroke or daily for 7 days after the stroke can help the patient recover sooner.'),
(18530, 'Lintico 500mg Injection', 'Accilex Nutricorp', 'Lintico 500mg Injection', 'I have been prescribed Lintico 500mg Injection for Alzheimer’s disease. What is its role, and how does it work?', 'Lintico 500mg Injection is a form of an essential nutrient called choline which is naturally present in the body. It protects the nerve cells in the brain from damage and also helps to repair the damaged nerve cells. Therefore, it improves learning, memory, and cognitive function (processing information or perception) in Alzheimer’s disease.'),
(18531, 'Lintico 500mg Injection', 'Accilex Nutricorp', 'Lintico 500mg Injection', 'Can I take alcohol during treatment with Lintico 500mg Injection?', 'There are no studies to determine the effect of alcohol on treatment with Lintico 500mg Injection. However, since Lintico 500mg Injection is prescribed for stroke, Alzheimer’s disease, Parkinson’s disease, head injury, and age-related memory impairment, it is best to avoid the consumption of alcohol.'),
(18532, 'Lintico 500mg Injection', 'Accilex Nutricorp', 'Lintico 500mg Injection', 'Can students take Lintico 500mg Injection to improve memory and learning?', 'No, students should not take Lintico 500mg Injection since studies show that Lintico 500mg Injection is effective only in age-related memory problems, memory problems associated with long-standing stroke, and in Alzheimer’s disease. Moreover, there is no data available for use of this medicine in children.'),
(18533, 'Lintico 500mg Injection', 'Accilex Nutricorp', 'Lintico 500mg Injection', 'What is the role of Lintico 500mg Injection in stroke?', 'In cases of stroke caused due to blood clots, taking Lintico 500mg Injection orally can help the patient recover completely within 3 months. Also, giving Lintico 500mg Injection either intravenously (injecting the medicine in vein directly) within 12 hours of having a stroke or daily for 7 days after the stroke can help the patient recover sooner.'),
(18534, 'Lintico-Plus Tablet', 'Accilex Nutricorp', 'Lintico-Plus Tablet', 'How to manage weight gain associated with the use of Lintico-Plus Tablet?', 'There are reports which suggest that the use of Lintico-Plus Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain rather than losing increased weight.'),
(18535, 'Lintico-Plus Tablet', 'Accilex Nutricorp', 'Lintico-Plus Tablet', 'What are the instructions for storage and disposal of Lintico-Plus Tablet?	', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18536, 'Lintio 800mg Tablet', 'Accilex Nutricorp', 'Lintio 800mg Tablet', 'If I do not see an improvement in my symptoms, can I stop taking Lintio 800mg Tablet?', 'No, do not stop taking Lintio 800mg Tablet on your own. Stopping it suddenly may have unwanted effects like twitching and jerking movements. If Lintio 800mg Tablet does not improve your symptoms, consult your doctor. The doctor may suggest a slow reduction of Lintio 800mg Tablet dose.'),
(18537, 'Lintio 800mg Tablet', 'Accilex Nutricorp', 'Lintio 800mg Tablet', 'Who should avoid taking Lintio 800mg Tablet?', 'You should not take Lintio 800mg Tablet if you are allergic to Lintio 800mg Tablet or any of the ingredients in the medicine. Also, avoid taking Lintio 800mg Tablet if your kidney functions are severely deranged or if you ever had localized bleeding in the brain (cerebral hemorrhage). You should also avoid taking this medicine if you are suffering from Huntington’s disease/chorea (a genetic disorder where the brain cells die quickly causing deterioration of mental and physical abilities over time).'),
(18538, 'Lintio 800mg Tablet', 'Accilex Nutricorp', 'Lintio 800mg Tablet', 'What is the correct way of taking Lintio 800mg Tablet?', 'Lintio 800mg Tablet can be taken with or without food. Swallow the tablets as a whole with a glass of water. Do not break or chew the tablets. If you find it difficult to swallow, tell your doctor as soon as possible. Your doctor may prescribe Lintio 800mg Tablet in the form of a solution.'),
(18539, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'What is Lintoz 2000mg/500mg Injection?', 'Lintoz 2000mg/500mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(18540, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'Is it safe to use Lintoz 2000mg/500mg Injection?', 'Lintoz 2000mg/500mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(18541, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'How is Lintoz 2000mg/500mg Injection administered?', 'Lintoz 2000mg/500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lintoz 2000mg/500mg Injection.'),
(18542, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'Are there any specific cautions associated with the use of Lintoz 2000mg/500mg Injection?', 'The use of Lintoz 2000mg/500mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lintoz 2000mg/500mg Injection.'),
(18543, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'Can the use of Lintoz 2000mg/500mg Injection cause contraceptive failure?', 'Yes, the use of Lintoz 2000mg/500mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lintoz 2000mg/500mg Injection.'),
(18544, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'Can I take a higher than the recommended dose of Lintoz 2000mg/500mg Injection?', 'No, Lintoz 2000mg/500mg Injection should be used in the recommended dose only. Overdose of Lintoz 2000mg/500mg Injection can increase the risks of side effects. Lintoz 2000mg/500mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(18545, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'What are the instructions for the storage and disposal of Lintoz 2000mg/500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18546, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'Can Lintoz 2000mg/500mg Injection cause an allergic reaction?', 'Yes, Lintoz 2000mg/500mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(18547, 'Lintoz 2000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 2000mg/500mg Injection', 'Can the use of Lintoz 2000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lintoz 2000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18548, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'What is Lintoz 4000mg/500mg Injection?', 'Lintoz 4000mg/500mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18549, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'Is it safe to use Lintoz 4000mg/500mg Injection?', 'Lintoz 4000mg/500mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(18550, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'How is Lintoz 4000mg/500mg Injection administered?', 'Lintoz 4000mg/500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lintoz 4000mg/500mg Injection.'),
(18551, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'Are there any specific cautions associated with the use of Lintoz 4000mg/500mg Injection?', 'The use of Lintoz 4000mg/500mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lintoz 4000mg/500mg Injection.'),
(18552, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'Can the use of Lintoz 4000mg/500mg Injection cause contraceptive failure?', 'Yes, the use of Lintoz 4000mg/500mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lintoz 4000mg/500mg Injection.'),
(18553, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'Can I take a higher than the recommended dose of Lintoz 4000mg/500mg Injection?', 'No, Lintoz 4000mg/500mg Injection should be used in the recommended dose only. Overdose of Lintoz 4000mg/500mg Injection can increase the risks of side effects. Lintoz 4000mg/500mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(18554, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'What are the instructions for the storage and disposal of Lintoz 4000mg/500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18555, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'Can Lintoz 4000mg/500mg Injection cause an allergic reaction?', 'Yes, Lintoz 4000mg/500mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(18556, 'Lintoz 4000mg/500mg Injection', 'Linnet Life Sciences', 'Lintoz 4000mg/500mg Injection', 'Can the use of Lintoz 4000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lintoz 4000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18557, 'Lintramic 500mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lintramic 500mg/250mg Tablet', 'What is Lintramic 500mg/250mg Tablet?', 'Lintramic 500mg/250mg Tablet is a combination of two medicines: Tranexamic Acid and Mefenamic Acid. This medication is used to treat pain and is used to treat heavy bleeding during menstrual cycle (monthly periods) in women.'),
(18558, 'Lintramic 500mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lintramic 500mg/250mg Tablet', 'Are there any specific contraindications associated with the use of Lintramic 500mg/250mg Tablet?', 'Yes, it is considered to be harmful for patients with severe kidney failure, active intravascular clotting (obstruction in the blood flow due to blood clots), and color vision disorders.'),
(18559, 'Lintramic 500mg/250mg Tablet', 'Linex Pharmaceuticals', 'Lintramic 500mg/250mg Tablet', 'What is the recommended storage condition for Lintramic 500mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18560, 'Lintran 600mg Infusion', 'Shreya Life Sciences Pvt Ltd', 'Lintran 600mg Infusion', 'Can the use of Lintran 600mg Infusion cause diarrhea?', 'Yes, the use of Lintran 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18561, 'Lintran 600mg Infusion', 'Shreya Life Sciences Pvt Ltd', 'Lintran 600mg Infusion', 'What foods should I avoid while taking Lintran 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lintran 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18562, 'Lintron 4mg Tablet', 'Linex Pharmaceuticals', 'Lintron 4mg Tablet', 'How quickly does Lintron 4mg Tablet work?', 'Lintron 4mg Tablet starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(18563, 'Lintron 4mg Tablet', 'Linex Pharmaceuticals', 'Lintron 4mg Tablet', 'What are the side effects of Lintron 4mg Tablet?', 'The most common side effects of Lintron 4mg Tablet are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(18564, 'Lintron 4mg Tablet', 'Linex Pharmaceuticals', 'Lintron 4mg Tablet', 'When should you take Lintron 4mg Tablet?', 'Lintron 4mg Tablet should be taken with a full glass of water, with or without food. It should be used exactly as per the dose and duration advised by the doctor. Usually, the first dose of Lintron 4mg Tablet is taken before the start of your surgery, chemotherapy or radiation treatment.'),
(18565, 'Lintron 4mg Tablet', 'Linex Pharmaceuticals', 'Lintron 4mg Tablet', 'Is Lintron 4mg Tablet a steroid?', 'No, Lintron 4mg Tablet is an antiemetic and not a steroid. Lintron 4mg Tablet is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(18566, 'Lintron 4mg Tablet', 'Linex Pharmaceuticals', 'Lintron 4mg Tablet', 'Does Lintron 4mg Tablet work for seasickness?', 'No, Lintron 4mg Tablet does not work for seasickness. This is because Lintron 4mg Tablet has very little effect on the nausea associated with motion sickness.'),
(18567, 'Lintron Injection', 'Linex Pharmaceuticals', 'Lintron Injection', 'Q. How quickly does Lintron Injection work?', 'Lintron Injection starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(18568, 'Lintron Injection', 'Linex Pharmaceuticals', 'Lintron Injection', 'Q. What are the side effects of Lintron Injection?', 'The most common side effects of Lintron Injection are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(18569, 'Lintron Injection', 'Linex Pharmaceuticals', 'Lintron Injection', 'Q. Is Lintron Injection a steroid?', 'No, Lintron Injection is an antiemetic and not a steroid. Lintron Injection is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(18570, 'Lintron Injection', 'Linex Pharmaceuticals', 'Lintron Injection', 'Q. Does Lintron Injection work for seasickness?', 'No, Lintron Injection does not work for seasickness. This is because Lintron Injection has very little effect on the nausea associated with motion sickness.'),
(18571, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'What is Lintum 4000mg/500mg Injection?', 'Lintum 4000mg/500mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(18572, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'Is it safe to use Lintum 4000mg/500mg Injection?', 'Lintum 4000mg/500mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(18573, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'How is Lintum 4000mg/500mg Injection administered?', 'Lintum 4000mg/500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lintum 4000mg/500mg Injection.'),
(18574, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'Are there any specific cautions associated with the use of Lintum 4000mg/500mg Injection?', 'The use of Lintum 4000mg/500mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lintum 4000mg/500mg Injection.'),
(18575, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'Can the use of Lintum 4000mg/500mg Injection cause contraceptive failure?', 'Yes, the use of Lintum 4000mg/500mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lintum 4000mg/500mg Injection.'),
(18576, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'Can I take a higher than the recommended dose of Lintum 4000mg/500mg Injection?', 'No, Lintum 4000mg/500mg Injection should be used in the recommended dose only. Overdose of Lintum 4000mg/500mg Injection can increase the risks of side effects. Lintum 4000mg/500mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(18577, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'What are the instructions for the storage and disposal of Lintum 4000mg/500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18578, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'Can Lintum 4000mg/500mg Injection cause an allergic reaction?', 'Yes, Lintum 4000mg/500mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(18579, 'Lintum 4000mg/500mg Injection', 'SBS Biosciences', 'Lintum 4000mg/500mg Injection', 'Can the use of Lintum 4000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lintum 4000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(18580, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'How should Linus AQ 75mg Injection injection be administered?', 'Linus AQ 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(18581, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'What is the most important information I need to know about Linus AQ 75mg Injection?', 'It is important to know that Linus AQ 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Linus AQ 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(18582, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'Is Linus AQ 75mg Injection a good painkiller?', 'Linus AQ 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(18583, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'Can Linus AQ 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Linus AQ 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(18584, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'Does Linus AQ 75mg Injection make you drowsy?', 'Linus AQ 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(18585, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'Can Linus AQ 75mg Injection be taken during pregnancy?', 'You should not take Linus AQ 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Linus AQ 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Linus AQ 75mg Injection during the first 6 months of pregnancy also.  In some cases, Linus AQ 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(18586, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'Does Linus AQ 75mg Injection get you high?', 'No, Linus AQ 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(18587, 'Linus AQ 75mg Injection', 'Symbiosis Life Sciences Limited', 'Linus AQ 75mg Injection', 'Is Linus AQ 75mg Injection a narcotic?', 'No, Linus AQ 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(18588, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'What are the storage condition for Linus SP 50mg/325mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18589, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'What is Linus SP 50mg/325mg/10mg Tablet?', 'Linus SP 50mg/325mg/10mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(18590, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Is it safe to use Linus SP 50mg/325mg/10mg Tablet?', 'Yes, Linus SP 50mg/325mg/10mg Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(18591, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Can I stop taking Linus SP 50mg/325mg/10mg Tablet when my pain is relieved?', 'Linus SP 50mg/325mg/10mg Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Linus SP 50mg/325mg/10mg Tablet should be continued if you are advised by your physician to do so.'),
(18592, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Can the use of Linus SP 50mg/325mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Linus SP 50mg/325mg/10mg Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(18593, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Can the use of Linus SP 50mg/325mg/10mg Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(18594, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Linus SP 50mg/325mg/10mg Tablet?', 'The use of Linus SP 50mg/325mg/10mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(18595, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Can I take Linus SP 50mg/325mg/10mg Tablet with Vitamin B-complex?', 'Linus SP 50mg/325mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Linus SP 50mg/325mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(18596, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Can I take Linus SP 50mg/325mg/10mg Tablet for stomach pain?', 'No, Linus SP 50mg/325mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(18597, 'Linus SP 50mg/325mg/10mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus SP 50mg/325mg/10mg Tablet', 'Can the use of Linus SP 50mg/325mg/10mg Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Linus SP 50mg/325mg/10mg Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(18598, 'Linus T 8mg/50mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus T 8mg/50mg Tablet', 'Are there any specific contraindications associated with the use of Linus T 8mg/50mg Tablet?', 'The use of Linus T 8mg/50mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/ bleeding. Its use should also be avoided in a patient with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(18599, 'Linus T 8mg/50mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus T 8mg/50mg Tablet', 'Can I stop taking Linus T 8mg/50mg Tablet when my pain is relieved?', 'Linus T 8mg/50mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Linus T 8mg/50mg Tablet should be continued if you are advised by your doctor to do so.'),
(18600, 'Linus T 8mg/50mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus T 8mg/50mg Tablet', 'What are the instructions for the storage and disposal of Linus T 8mg/50mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(18601, 'Linus T 8mg/50mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus T 8mg/50mg Tablet', 'Can the use of Linus T 8mg/50mg Tablet cause dizziness?', 'Yes, the use of Linus T 8mg/50mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(18602, 'Linus T 8mg/50mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus T 8mg/50mg Tablet', 'Can the use of Linus T 8mg/50mg Tablet cause damage to kidneys?', 'Yes, long-term use of Linus T 8mg/50mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(18603, 'Linus T 8mg/50mg Tablet', 'Symbiosis Pharmaceuticals Pvt Ltd', 'Linus T 8mg/50mg Tablet', 'Will a higher than the recommended dose of Linus T 8mg/50mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(18604, 'Linvas Tablet', 'Lupin Ltd', 'Linvas Tablet', 'Who should not take Linvas Tablet?', 'Linvas Tablet should not be taken by people who are allergic to Linvas Tablet or any of its ingredients. If you are not sure, please consult your doctor.'),
(18605, 'Linvas Tablet', 'Lupin Ltd', 'Linvas Tablet', 'Is there a chance of weight gain with Linvas Tablet?', 'It has been observed from clinical research conducted on Linvas Tablet that there is no significant risk of weight gain in patients taking Linvas Tablet. However, if a patient experiences a rapid increase in weight, any other difficulty, or fluid accumulation in the body then it should be immediately informed to the doctor for further assessment or change of therapy.'),
(18606, 'Linvas Tablet', 'Lupin Ltd', 'Linvas Tablet', 'Is Linvas Tablet is helpful in increasing good cholesterol?', 'Yes, it has been found that Linvas Tablet helps improve the good cholesterol or HDL-C and at the same time helps reduce the bad cholesterol like LDL, triglycerides etc. Though the effectiveness of this medicine varies from patient to patient still it has been found to be effective in controlling the high triglyceride levels in the blood. Consult your doctor before you start taking this medication.'),
(18607, 'Linvas Tablet', 'Lupin Ltd', 'Linvas Tablet', 'What other lifestyle changes should I make to manage nonalcoholic steatohepatitis (NASH)', 'Lifestyle changes play a major role in managing nonalcoholic steatohepatitis (NASH). A healthy body weight helps you manage this condition very effectively. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life as it increases body weight too. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels. Stop smoking and alcohol consumption. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Linvas Tablet and to keep yourself healthy.'),
(18608, 'Linvas Tablet', 'Lupin Ltd', 'Linvas Tablet', 'Can I take Linvas Tablet in pregnancy?', 'There is no clarity on the use of Linvas Tablet in pregnancy and it may be unsafe to take it in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Linvas Tablet. You may take it only if prescribed by your doctor.'),
(18609, 'Linvas Tablet', 'Lupin Ltd', 'Linvas Tablet', 'Is it safe for lactating mothers to take Linvas Tablet?', 'No, it is not safe for lactating mothers to take Linvas Tablet because there is no evidence of its safety for usage during breastfeeding. The other reason for not using this medicine is that it is not known whether Linvas Tablet gets excreted via breast milk. Consult your doctor before taking this medicine if you are breastfeeding to make sure there is no harm to your baby.'),
(18610, 'Linvicta 300mg Infusion', 'Strathspey Labs Pvt Ltd', 'Linvicta 300mg Infusion', 'Can the use of Linvicta 300mg Infusion cause diarrhea?', 'Yes, the use of Linvicta 300mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18611, 'Linvicta 300mg Infusion', 'Strathspey Labs Pvt Ltd', 'Linvicta 300mg Infusion', 'What foods should I avoid while taking Linvicta 300mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linvicta 300mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18612, 'Linvil GM Cream', 'Agrosaf Pharmaceuticals', 'Linvil GM Cream', 'Can I stop taking Linvil GM Cream when I feel better?', 'No, do not stop taking Linvil GM Cream and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(18613, 'Linvil GM Cream', 'Agrosaf Pharmaceuticals', 'Linvil GM Cream', 'What if I don\'t get better after using Linvil GM Cream?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(18614, 'Linvil GM Cream', 'Agrosaf Pharmaceuticals', 'Linvil GM Cream', 'How long does Linvil GM Cream takes to work?', 'Usually, Linvil GM Cream starts working soon after applying it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(18615, 'Linwel 600mg Tablet', 'Primus Remedies Pvt Ltd', 'Linwel 600mg Tablet', 'Can the use of Linwel 600mg Tablet cause diarrhea?', 'Yes, the use of Linwel 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18616, 'Linwel 600mg Tablet', 'Primus Remedies Pvt Ltd', 'Linwel 600mg Tablet', 'What foods should I avoid while taking Linwel 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linwel 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18617, 'Linwell 600mg Tablet', 'Primus Remedies Pvt Ltd', 'Linwell 600mg Tablet', 'Can the use of Linwell 600mg Tablet cause diarrhea?', 'Yes, the use of Linwell 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18618, 'Linwell 600mg Tablet', 'Primus Remedies Pvt Ltd', 'Linwell 600mg Tablet', 'What foods should I avoid while taking Linwell 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linwell 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18619, 'Linz 600mg Tablet', 'Aster Pharma', 'Linz 600mg Tablet', 'Can the use of Linz 600mg Tablet cause diarrhea?', 'Yes, the use of Linz 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18620, 'Linz 600mg Tablet', 'Aster Pharma', 'Linz 600mg Tablet', 'What foods should I avoid while taking Linz 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linz 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18621, 'Linzam 600mg Tablet', 'Zamixo Pharmaceuticals', 'Linzam 600mg Tablet', 'Can the use of Linzam 600mg Tablet cause diarrhea?', 'Yes, the use of Linzam 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18622, 'Linzam 600mg Tablet', 'Zamixo Pharmaceuticals', 'Linzam 600mg Tablet', 'What foods should I avoid while taking Linzam 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzam 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18623, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'What if I give an excess of Linzam Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18624, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzam Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18625, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzam Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzam Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18626, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'Can Linzam Dry Syrup be given for a long duration?', 'Prolonged use of Linzam Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18627, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'Can other medicines be given at the same time as Linzam Dry Syrup?', 'Linzam Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzam Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18628, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzam Dry Syrup?', 'For children receiving Linzam Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18629, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'In which disease conditions should I avoid giving Linzam Dry Syrup to my child?', 'Avoid giving Linzam Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzam Dry Syrup to your child.'),
(18630, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'What food items should my child avoid while taking Linzam Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzam Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18631, 'Linzam Dry Syrup', 'Zamixo Pharmaceuticals', 'Linzam Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzam Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzam Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18632, 'Linzanur 600mg Tablet', 'Nurtureplus Biotech Private Limited', 'Linzanur 600mg Tablet', 'Can the use of Linzanur 600mg Tablet cause diarrhea?', 'Yes, the use of Linzanur 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18633, 'Linzanur 600mg Tablet', 'Nurtureplus Biotech Private Limited', 'Linzanur 600mg Tablet', 'What foods should I avoid while taking Linzanur 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzanur 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18634, 'Linzax 600mg Tablet', 'Axodin Pharmaceuticals Pvt. Ltd.', 'Linzax 600mg Tablet', 'Can the use of Linzax 600mg Tablet cause diarrhea?', 'Yes, the use of Linzax 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18635, 'Linzax 600mg Tablet', 'Axodin Pharmaceuticals Pvt. Ltd.', 'Linzax 600mg Tablet', 'What foods should I avoid while taking Linzax 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzax 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18636, 'Linzeal 600mg Tablet', 'Makshi Healthcare', 'Linzeal 600mg Tablet', 'Can the use of Linzeal 600mg Tablet cause diarrhea?', 'Yes, the use of Linzeal 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18637, 'Linzeal 600mg Tablet', 'Makshi Healthcare', 'Linzeal 600mg Tablet', 'What foods should I avoid while taking Linzeal 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzeal 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18638, 'Linzen IV 600mg Infusion', 'Zencus Pharma', 'Linzen IV 600mg Infusion', 'Can the use of Linzen IV 600mg Infusion cause diarrhea?', 'Yes, the use of Linzen IV 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18639, 'Linzen IV 600mg Infusion', 'Zencus Pharma', 'Linzen IV 600mg Infusion', 'What foods should I avoid while taking Linzen IV 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzen IV 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18640, 'Linzep 10 Tablet', 'Orcalo Lifesciences', 'Linzep 10 Tablet', 'Can Linzep 10 Tablet be used for anxiety?', 'The treatment of anxiety with Linzep 10 Tablet is not an approved indication. Linzep 10 Tablet has been studied for treatment of anxiety disorders but the results have not been very convincing. However, it can be used along with anxiolytics in anxiety disorders for better results.'),
(18641, 'Linzep 10 Tablet', 'Orcalo Lifesciences', 'Linzep 10 Tablet', 'Is Linzep 10 Tablet a sleeping pill?', 'No, Linzep 10 Tablet is not a sleeping pill. It belongs to the atypical antipsychotic class of medicines. It is used to treat schizophrenia. Schizophrenia is a mental illness that causes disturbed or unusual thinking, loss of interest in life, and strong or inappropriate emotions. Linzep 10 Tablet also helps with bipolar disorder (manic depressive disorder). It is a disease that causes episodes of depression, mania, and other abnormal moods.'),
(18642, 'Linzep 10 Tablet', 'Orcalo Lifesciences', 'Linzep 10 Tablet', 'How long does it take for Linzep 10 Tablet to kick in?', 'Linzep 10 Tablet may start showing initial improvement within 1-2 week of starting. However, for full benefits it may take about 4-6 weeks. You should continue taking it and consult your doctor in case you feel that Linzep 10 Tablet is not helping you.'),
(18643, 'Linzep 10 Tablet', 'Orcalo Lifesciences', 'Linzep 10 Tablet', 'What is the most important information that I should know about Linzep 10 Tablet?', 'Linzep 10 Tablet can cause serious side effects which include increased risk of death in elderly people who are confused, have memory loss and have lost touch with reality (dementia-related psychosis). It is important to know that it may increase blood sugar levels in diabetics and also in patients who never had diabetes. Furthermore, it may cause weight gain and high fat levels in the blood which is more common in teenagers.'),
(18644, 'Linzep 10 Tablet', 'Orcalo Lifesciences', 'Linzep 10 Tablet', 'Can Linzep 10 Tablet be taken during pregnancy?', 'Linzep 10 Tablet should be avoided during pregnancy and should only be given if benefits outweigh the risk. Using Linzep 10 Tablet during last 3 months of pregnancy may cause unwanted symptoms in the unborn baby. These symptoms include shaking, muscle stiffness and/or weakness, sleepiness, agitation, breathing problems, and difficulty in feeding.'),
(18645, 'Linzep 10 Tablet', 'Orcalo Lifesciences', 'Linzep 10 Tablet', 'Can I stop taking Linzep 10 Tablet if I am better?', 'You should not stop taking Linzep 10 Tablet without consulting your doctor. This is because sudden discontinuation of the medicine may cause unpleasant side effects which include sweating, unable to sleep, tremor, anxiety or nausea, and vomiting. To avoid such effects, your doctor will reduce the dose gradually before stopping the treatment.'),
(18646, 'Linzep 10 Tablet', 'Orcalo Lifesciences', 'Linzep 10 Tablet', 'Does smoking or alcohol interfere with working of Linzep 10 Tablet?', 'Yes, smoking interferes with working of Linzep 10 Tablet causing an increase in its metabolism. One should avoid alcohol while taking Linzep 10 Tablet since it may cause more drowsiness. However, if you are a smoker then your doctor may increase your dose depending on your response to treatment.'),
(18647, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'What if I give an excess of Linzer 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18648, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzer 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18649, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzer 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzer 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18650, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'Can Linzer 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzer 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18651, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzer 100mg Dry Syrup?', 'Linzer 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzer 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18652, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzer 100mg Dry Syrup?', 'For children receiving Linzer 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18653, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzer 100mg Dry Syrup to my child?', 'Avoid giving Linzer 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzer 100mg Dry Syrup to your child.'),
(18654, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'What food items should my child avoid while taking Linzer 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzer 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18655, 'Linzer 100mg Dry Syrup', 'Osvel Pharma', 'Linzer 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzer 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzer 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18656, 'Linzest 600mg Tablet', 'Alde Medi Impex Ltd', 'Linzest 600mg Tablet', 'Can the use of Linzest 600mg Tablet cause diarrhea?', 'Yes, the use of Linzest 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18657, 'Linzest 600mg Tablet', 'Alde Medi Impex Ltd', 'Linzest 600mg Tablet', 'What foods should I avoid while taking Linzest 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzest 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18658, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'What if I give an excess of Linzex 100mg/5ml Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18659, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzex 100mg/5ml Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18660, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzex 100mg/5ml Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzex 100mg/5ml Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18661, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'Can Linzex 100mg/5ml Dry Syrup be given for a long duration?', 'Prolonged use of Linzex 100mg/5ml Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18662, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'Can other medicines be given at the same time as Linzex 100mg/5ml Dry Syrup?', 'Linzex 100mg/5ml Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzex 100mg/5ml Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18663, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzex 100mg/5ml Dry Syrup?', 'For children receiving Linzex 100mg/5ml Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18664, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'In which disease conditions should I avoid giving Linzex 100mg/5ml Dry Syrup to my child?', 'Avoid giving Linzex 100mg/5ml Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzex 100mg/5ml Dry Syrup to your child.'),
(18665, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'What food items should my child avoid while taking Linzex 100mg/5ml Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzex 100mg/5ml Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18666, 'Linzex 100mg/5ml Dry Syrup', 'H & Care Incorp', 'Linzex 100mg/5ml Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzex 100mg/5ml Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzex 100mg/5ml Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18667, 'Linzex 600 Tablet', 'H & Care Incorp', 'Linzex 600 Tablet', 'Can the use of Linzex 600 Tablet cause diarrhea?', 'Yes, the use of Linzex 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18668, 'Linzex 600 Tablet', 'H & Care Incorp', 'Linzex 600 Tablet', 'What foods should I avoid while taking Linzex 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzex 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18669, 'Linzex I V 600mg Infusion', 'H & Care Incorp', 'Linzex I V 600mg Infusion', 'Can the use of Linzex I V 600mg Infusion cause diarrhea?', 'Yes, the use of Linzex I V 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18670, 'Linzex I V 600mg Infusion', 'H & Care Incorp', 'Linzex I V 600mg Infusion', 'What foods should I avoid while taking Linzex I V 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzex I V 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18671, 'Linzic 600mg Tablet', 'Bioxtreme Pharma', 'Linzic 600mg Tablet', 'Can the use of Linzic 600mg Tablet cause diarrhea?', 'Yes, the use of Linzic 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18672, 'Linzic 600mg Tablet', 'Bioxtreme Pharma', 'Linzic 600mg Tablet', 'What foods should I avoid while taking Linzic 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzic 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18673, 'Linzilix 600 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Linzilix 600 Tablet', 'Q. Can the use of Linzilix 600 Tablet cause diarrhea?', 'Yes, the use of Linzilix 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18674, 'Linzilix 600 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Linzilix 600 Tablet', 'Q. What foods should I avoid while taking Linzilix 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzilix 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18675, 'Linzixo 600mg Tablet', 'Aleixo Pharma', 'Linzixo 600mg Tablet', 'Q. Can the use of Linzixo 600mg Tablet cause diarrhea?', 'Yes, the use of Linzixo 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18676, 'Linzixo 600mg Tablet', 'Aleixo Pharma', 'Linzixo 600mg Tablet', 'Q. What foods should I avoid while taking Linzixo 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzixo 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18677, 'Linzixo Tablet', 'Aleixo Pharma', 'Linzixo Tablet', 'Can the use of Linzixo Tablet cause diarrhea?', 'Yes, the use of Linzixo Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18678, 'Linzixo Tablet', 'Aleixo Pharma', 'Linzixo Tablet', 'What foods should I avoid while taking Linzixo Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzixo Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18679, 'Linzo 600mg Tablet', 'Yodley Life Sciences Private Limited', 'Linzo 600mg Tablet (Yodley Life Sciences Private Limited)', 'Can the use of Linzo 600mg Tablet cause diarrhea?', 'Yes, the use of Linzo 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18680, 'Linzo 600mg Tablet', 'Yodley Life Sciences Private Limited', 'Linzo 600mg Tablet (Yodley Life Sciences Private Limited)', 'What foods should I avoid while taking Linzo 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzo 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18681, 'Linzo 600mg Tablet', 'Noor Pharmaceuticals', 'Linzo 600mg Tablet (Noor Pharmaceuticals)', 'Can the use of Linzo 600mg Tablet cause diarrhea?', 'Yes, the use of Linzo 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18682, 'Linzo 600mg Tablet', 'Noor Pharmaceuticals', 'Linzo 600mg Tablet (Noor Pharmaceuticals)', 'What foods should I avoid while taking Linzo 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzo 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18683, 'Linzo Ven 600mg Tablet', 'Biovenice Criticure', 'Linzo Ven 600mg Tablet (Biovenice Criticure)', 'Can the use of Linzo Ven 600mg Tablet cause diarrhea?', 'Yes, the use of Linzo Ven 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18684, 'Linzo Ven 600mg Tablet', 'Biovenice Criticure', 'Linzo Ven 600mg Tablet (Biovenice Criticure)', 'What foods should I avoid while taking Linzo Ven 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzo Ven 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18685, 'Linzo Ven 600mg Tablet', 'Findcare Remedies', 'Linzo Ven 600mg Tablet (Findcare Remedies)', 'Can the use of Linzo Ven 600mg Tablet cause diarrhea?', 'Yes, the use of Linzo Ven 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18686, 'Linzo Ven 600mg Tablet', 'Findcare Remedies', 'Linzo Ven 600mg Tablet (Findcare Remedies)', 'What foods should I avoid while taking Linzo Ven 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzo Ven 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18687, 'Linzobact 600mg Tablet', 'Max pharma', 'Linzobact 600mg Tablet', 'Can the use of Linzobact 600mg Tablet cause diarrhea?', 'Yes, the use of Linzobact 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18688, 'Linzobact 600mg Tablet', 'Max pharma', 'Linzobact 600mg Tablet', 'What foods should I avoid while taking Linzobact 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzobact 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18689, 'Linzobee 600mg Tablet', 'Bonsai India Ltd', 'Linzobee 600mg Tablet', 'Can the use of Linzobee 600mg Tablet cause diarrhea?', 'Yes, the use of Linzobee 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18690, 'Linzobee 600mg Tablet', 'Bonsai India Ltd', 'Linzobee 600mg Tablet', 'What foods should I avoid while taking Linzobee 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzobee 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18691, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'What if I give an excess of Linzobest 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18692, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzobest 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18693, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzobest 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzobest 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18694, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'Can Linzobest 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzobest 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18695, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzobest 100mg Dry Syrup?', 'Linzobest 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzobest 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18696, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzobest 100mg Dry Syrup?', 'For children receiving Linzobest 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18697, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzobest 100mg Dry Syrup to my child?', 'Avoid giving Linzobest 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzobest 100mg Dry Syrup to your child.'),
(18698, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'What food items should my child avoid while taking Linzobest 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzobest 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18699, 'Linzobest 100mg Dry Syrup', 'Pharm Biotech', 'Linzobest 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzobest 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzobest 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18700, 'Linzobis 600mg Tablet', 'BSA Pharma Inc', 'Linzobis 600mg Tablet', 'Can the use of Linzobis 600mg Tablet cause diarrhea?', 'Yes, the use of Linzobis 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18701, 'Linzobis 600mg Tablet', 'BSA Pharma Inc', 'Linzobis 600mg Tablet', 'What foods should I avoid while taking Linzobis 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzobis 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18702, 'Linzoblast 600mg Tablet', 'Zalman Life Sciences', 'Linzoblast 600mg Tablet', 'Q. Can the use of Linzoblast 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoblast 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18703, 'Linzoblast 600mg Tablet', 'Zalman Life Sciences', 'Linzoblast 600mg Tablet', 'Q. What foods should I avoid while taking Linzoblast 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoblast 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18704, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'What if I give an excess of Linzocare DS Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18705, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzocare DS Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18706, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzocare DS Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzocare DS Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18707, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'Can Linzocare DS Dry Syrup be given for a long duration?', 'Prolonged use of Linzocare DS Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18708, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'Can other medicines be given at the same time as Linzocare DS Dry Syrup?', 'Linzocare DS Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzocare DS Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18709, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzocare DS Dry Syrup?', 'For children receiving Linzocare DS Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18710, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'In which disease conditions should I avoid giving Linzocare DS Dry Syrup to my child?', 'Avoid giving Linzocare DS Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzocare DS Dry Syrup to your child.'),
(18711, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'What food items should my child avoid while taking Linzocare DS Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzocare DS Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18712, 'Linzocare DS Dry Syrup', 'Blessway Care Private Limited', 'Linzocare DS Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzocare DS Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzocare DS Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18713, 'Linzocare Tablet', 'Blessway Care Private Limited', 'Linzocare Tablet', 'Can the use of Linzocare Tablet cause diarrhea?', 'Yes, the use of Linzocare Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18714, 'Linzocare Tablet', 'Blessway Care Private Limited', 'Linzocare Tablet', 'What foods should I avoid while taking Linzocare Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzocare Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18715, 'Linzocel 600mg Injection', 'Aishwarya Healthcare', 'Linzocel 600mg Injection', 'Can the use of Linzocel 600mg Injection cause diarrhea?', 'Yes, the use of Linzocel 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18716, 'Linzocel 600mg Injection', 'Aishwarya Healthcare', 'Linzocel 600mg Injection', 'What foods should I avoid while taking Linzocel 600mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzocel 600mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(18717, 'Linzocia 600mg Tablet', 'Humencia Lifesciences', 'Linzocia 600mg Tablet', 'Can the use of Linzocia 600mg Tablet cause diarrhea?', 'Yes, the use of Linzocia 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18718, 'Linzocia 600mg Tablet', 'Humencia Lifesciences', 'Linzocia 600mg Tablet', 'What foods should I avoid while taking Linzocia 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzocia 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18719, 'Linzocliff 600 Tablet', 'Medcliff Pharmaceuticals Pvt Ltd', 'Linzocliff 600 Tablet', 'Can the use of Linzocliff 600 Tablet cause diarrhea?', 'Yes, the use of Linzocliff 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18720, 'Linzocliff 600 Tablet', 'Medcliff Pharmaceuticals Pvt Ltd', 'Linzocliff 600 Tablet', 'What foods should I avoid while taking Linzocliff 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzocliff 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18721, 'Linzocube 600mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Linzocube 600mg Tablet', 'Can the use of Linzocube 600mg Tablet cause diarrhea?', 'Yes, the use of Linzocube 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18722, 'Linzocube 600mg Tablet', 'Veecube Healthcare Pvt Ltd', 'Linzocube 600mg Tablet', 'What foods should I avoid while taking Linzocube 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzocube 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18723, 'Linzod 600 Tablet', 'Viribus Healthcare', 'Linzod 600 Tablet', 'Can the use of Linzod 600 Tablet cause diarrhea?', 'Yes, the use of Linzod 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18724, 'Linzod 600 Tablet', 'Viribus Healthcare', 'Linzod 600 Tablet', 'What foods should I avoid while taking Linzod 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzod 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18725, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'What if I give an excess of Linzod Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18726, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzod Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18727, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzod Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzod Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18728, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'Can Linzod Dry Syrup be given for a long duration?', 'Prolonged use of Linzod Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18729, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'Can other medicines be given at the same time as Linzod Dry Syrup?', 'Linzod Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzod Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18730, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzod Dry Syrup?', 'For children receiving Linzod Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18731, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'In which disease conditions should I avoid giving Linzod Dry Syrup to my child?', 'Avoid giving Linzod Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzod Dry Syrup to your child.'),
(18732, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'What food items should my child avoid while taking Linzod Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzod Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18733, 'Linzod Dry Syrup', 'Viribus Healthcare', 'Linzod Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzod Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzod Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18734, 'Linzodal 600mg Tablet', 'Glomphy Pharma', 'Linzodal 600mg Tablet', 'Can the use of Linzodal 600mg Tablet cause diarrhea?', 'Yes, the use of Linzodal 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18735, 'Linzodal 600mg Tablet', 'Glomphy Pharma', 'Linzodal 600mg Tablet', 'What foods should I avoid while taking Linzodal 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzodal 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18736, 'Linzodel 600mg Tablet', 'Delroy Pharma', 'Linzodel 600mg Tablet', 'Can the use of Linzodel 600mg Tablet cause diarrhea?', 'Yes, the use of Linzodel 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18737, 'Linzodel 600mg Tablet', 'Delroy Pharma', 'Linzodel 600mg Tablet', 'What foods should I avoid while taking Linzodel 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzodel 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18738, 'Linzodic 600mg Tablet', 'Periodic Healthcare', 'Linzodic 600mg Tablet', 'Q. Can the use of Linzodic 600mg Tablet cause diarrhea?', 'Yes, the use of Linzodic 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18739, 'Linzodic 600mg Tablet', 'Periodic Healthcare', 'Linzodic 600mg Tablet', 'Q. What foods should I avoid while taking Linzodic 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzodic 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18740, 'Linzodux 600mg Tablet', 'Nydux Pharma', 'Linzodux 600mg Tablet', 'Can the use of Linzodux 600mg Tablet cause diarrhea?', 'Yes, the use of Linzodux 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18741, 'Linzodux 600mg Tablet', 'Nydux Pharma', 'Linzodux 600mg Tablet', 'What foods should I avoid while taking Linzodux 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzodux 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18742, 'Linzof 600 Tablet', 'Skiptuit Healthcare', 'Linzof 600 Tablet', 'Can the use of Linzof 600 Tablet cause diarrhea?', 'Yes, the use of Linzof 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18743, 'Linzof 600 Tablet', 'Skiptuit Healthcare', 'Linzof 600 Tablet', 'What foods should I avoid while taking Linzof 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzof 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18744, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'What if I give an excess of Linzofed 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18745, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzofed 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18746, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzofed 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzofed 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18747, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'Can Linzofed 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzofed 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18748, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzofed 100mg Dry Syrup?', 'Linzofed 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzofed 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18749, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzofed 100mg Dry Syrup?', 'For children receiving Linzofed 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18750, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzofed 100mg Dry Syrup to my child?', 'Avoid giving Linzofed 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzofed 100mg Dry Syrup to your child.'),
(18751, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'What food items should my child avoid while taking Linzofed 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzofed 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18752, 'Linzofed 100mg Dry Syrup', 'Fedley Healthcare Private Limited', 'Linzofed 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzofed 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzofed 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18753, 'Linzofer 600mg Tablet', 'Feravix Lifesciences', 'Linzofer 600mg Tablet', 'Can the use of Linzofer 600mg Tablet cause diarrhea?', 'Yes, the use of Linzofer 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18754, 'Linzofer 600mg Tablet', 'Feravix Lifesciences', 'Linzofer 600mg Tablet', 'What foods should I avoid while taking Linzofer 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzofer 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18755, 'Linzofin 600mg Tablet', 'Caresfield Healthcare Private Limited', 'Linzofin 600mg Tablet', 'Q. Can the use of Linzofin 600mg Tablet cause diarrhea?', 'Yes, the use of Linzofin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18756, 'Linzofin 600mg Tablet', 'Caresfield Healthcare Private Limited', 'Linzofin 600mg Tablet', 'Q. What foods should I avoid while taking Linzofin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzofin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18757, 'Linzoforce 600 Tablet', 'IGP Mediventures Pvt Ltd', 'Linzoforce 600 Tablet', 'Can the use of Linzoforce 600 Tablet cause diarrhea?', 'Yes, the use of Linzoforce 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18758, 'Linzoforce 600 Tablet', 'IGP Mediventures Pvt Ltd', 'Linzoforce 600 Tablet', 'What foods should I avoid while taking Linzoforce 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoforce 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18759, 'Linzogam 600mg Tablet', 'Gamp Technologies Private Limited', 'Linzogam 600mg Tablet', 'Can the use of Linzogam 600mg Tablet cause diarrhea?', 'Yes, the use of Linzogam 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18760, 'Linzogam 600mg Tablet', 'Gamp Technologies Private Limited', 'Linzogam 600mg Tablet', 'What foods should I avoid while taking Linzogam 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzogam 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18761, 'Linzogate 600mg Tablet', 'Healthgate Private Limited', 'Linzogate 600mg Tablet', 'Can the use of Linzogate 600mg Tablet cause diarrhea?', 'Yes, the use of Linzogate 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18762, 'Linzogate 600mg Tablet', 'Healthgate Private Limited', 'Linzogate 600mg Tablet', 'What foods should I avoid while taking Linzogate 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzogate 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18763, 'Linzogrip Tablet', 'Nectar Pharma', 'Linzogrip Tablet', 'Can the use of Linzogrip Tablet cause diarrhea?', 'Yes, the use of Linzogrip Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18764, 'Linzogrip Tablet', 'Nectar Pharma', 'Linzogrip Tablet', 'What foods should I avoid while taking Linzogrip Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzogrip Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18765, 'Linzoheal 600 Tablet', 'Mascot Health Series Pvt Ltd', 'Linzoheal 600 Tablet', 'Can the use of Linzoheal 600 Tablet cause diarrhea?', 'Yes, the use of Linzoheal 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18766, 'Linzoheal 600 Tablet', 'Mascot Health Series Pvt Ltd', 'Linzoheal 600 Tablet', 'What foods should I avoid while taking Linzoheal 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoheal 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18767, 'Linzoid 600mg Tablet', 'Alicanto Drugs Pvt Ltd', 'Linzoid 600mg Tablet', 'Can the use of Linzoid 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18768, 'Linzoid 600mg Tablet', 'Alicanto Drugs Pvt Ltd', 'Linzoid 600mg Tablet', 'What foods should I avoid while taking Linzoid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18769, 'Linzoinn 600mg Tablet', 'Asvins Lifecare', 'Linzoinn 600mg Tablet', 'Can the use of Linzoinn 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoinn 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18770, 'Linzoinn 600mg Tablet', 'Asvins Lifecare', 'Linzoinn 600mg Tablet', 'What foods should I avoid while taking Linzoinn 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoinn 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18771, 'Linzojet 600 Tablet', 'Om Biotec', 'Linzojet 600 Tablet', 'Q. Can the use of Linzojet 600 Tablet cause diarrhea?', 'Yes, the use of Linzojet 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18772, 'Linzojet 600 Tablet', 'Om Biotec', 'Linzojet 600 Tablet', 'Q. What foods should I avoid while taking Linzojet 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzojet 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18773, 'Linzokap 600mg Tablet', 'Kaplin Healthcare', 'Linzokap 600mg Tablet', 'Can the use of Linzokap 600mg Tablet cause diarrhea?', 'Yes, the use of Linzokap 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18774, 'Linzokap 600mg Tablet', 'Kaplin Healthcare', 'Linzokap 600mg Tablet', 'What foods should I avoid while taking Linzokap 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzokap 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18775, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'What if I give an excess of Linzokem 600mg Tablet by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18776, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzokem 600mg Tablet along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18777, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'What should I do if my child shows no improvement even after taking Linzokem 600mg Tablet for the prescribed duration?', 'Ineffective treatment with Linzokem 600mg Tablet could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18778, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'Can Linzokem 600mg Tablet be given for a long duration?', 'Prolonged use of Linzokem 600mg Tablet may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18779, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'Can other medicines be given at the same time as Linzokem 600mg Tablet?', 'Linzokem 600mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzokem 600mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(18780, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'What lab tests that are required for monitoring while my child is taking Linzokem 600mg Tablet?', 'For children receiving Linzokem 600mg Tablet for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18781, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'In which disease conditions should I avoid giving Linzokem 600mg Tablet to my child?', 'Avoid giving Linzokem 600mg Tablet if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzokem 600mg Tablet to your child.'),
(18782, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'What food items should my child avoid while taking Linzokem 600mg Tablet?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzokem 600mg Tablet. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18783, 'Linzokem 600mg Tablet', 'Adikem Lifescience', 'Linzokem 600mg Tablet', 'Can I get my child vaccinated while on treatment with Linzokem 600mg Tablet?', 'It is advised not to get your child vaccinated while they are on treatment with Linzokem 600mg Tablet. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18784, 'Linzokin 600mg Tablet', 'Kindwaves Healthcare Pvt Ltd.', 'Linzokin 600mg Tablet', 'Can the use of Linzokin 600mg Tablet cause diarrhea?', 'Yes, the use of Linzokin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18785, 'Linzokin 600mg Tablet', 'Kindwaves Healthcare Pvt Ltd.', 'Linzokin 600mg Tablet', 'What foods should I avoid while taking Linzokin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzokin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18786, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'What if I give an excess of Linzoking DS 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18787, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzoking DS 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18788, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzoking DS 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzoking DS 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18789, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'Can Linzoking DS 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzoking DS 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18790, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzoking DS 100mg Dry Syrup?', 'Linzoking DS 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzoking DS 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18791, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzoking DS 100mg Dry Syrup?', 'For children receiving Linzoking DS 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18792, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzoking DS 100mg Dry Syrup to my child?', 'Avoid giving Linzoking DS 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzoking DS 100mg Dry Syrup to your child.'),
(18793, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'What food items should my child avoid while taking Linzoking DS 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzoking DS 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18794, 'Linzoking DS 100mg Dry Syrup', 'Aptus Pharma Pvt Ltd', 'Linzoking DS 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzoking DS 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzoking DS 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18795, 'Linzoknock 600mg Tablet', 'Reunis Healthcare Pvt Ltd', 'Linzoknock 600mg Tablet', 'Can the use of Linzoknock 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoknock 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18796, 'Linzoknock 600mg Tablet', 'Reunis Healthcare Pvt Ltd', 'Linzoknock 600mg Tablet', 'What foods should I avoid while taking Linzoknock 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoknock 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18797, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'What if I give an excess of Linzol 100mg Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18798, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzol 100mg Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18799, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'What should I do if my child shows no improvement even after taking Linzol 100mg Syrup for the prescribed duration?', 'Ineffective treatment with Linzol 100mg Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18800, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'Can Linzol 100mg Syrup be given for a long duration?', 'Prolonged use of Linzol 100mg Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18801, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'Can other medicines be given at the same time as Linzol 100mg Syrup?', 'Linzol 100mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzol 100mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18802, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'What lab tests that are required for monitoring while my child is taking Linzol 100mg Syrup?', 'For children receiving Linzol 100mg Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18803, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'In which disease conditions should I avoid giving Linzol 100mg Syrup to my child?', 'Avoid giving Linzol 100mg Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzol 100mg Syrup to your child.'),
(18804, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'What food items should my child avoid while taking Linzol 100mg Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzol 100mg Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18805, 'Linzol 100mg Syrup', 'Edinburgh Pharmaceuticals', 'Linzol 100mg Syrup', 'Can I get my child vaccinated while on treatment with Linzol 100mg Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzol 100mg Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18806, 'Linzolance 600mg Tablet', 'Medilance Healthcare', 'Linzolance 600mg Tablet', 'Can the use of Linzolance 600mg Tablet cause diarrhea?', 'Yes, the use of Linzolance 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18807, 'Linzolance 600mg Tablet', 'Medilance Healthcare', 'Linzolance 600mg Tablet', 'What foods should I avoid while taking Linzolance 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzolance 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18808, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'What if I give an excess of Linzolex 600mg Tablet by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18809, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzolex 600mg Tablet along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18810, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'What should I do if my child shows no improvement even after taking Linzolex 600mg Tablet for the prescribed duration?', 'Ineffective treatment with Linzolex 600mg Tablet could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18811, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'Can Linzolex 600mg Tablet be given for a long duration?', 'Prolonged use of Linzolex 600mg Tablet may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18812, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'Can other medicines be given at the same time as Linzolex 600mg Tablet?', 'Linzolex 600mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzolex 600mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(18813, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'What lab tests that are required for monitoring while my child is taking Linzolex 600mg Tablet?', 'For children receiving Linzolex 600mg Tablet for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18814, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'In which disease conditions should I avoid giving Linzolex 600mg Tablet to my child?', 'Avoid giving Linzolex 600mg Tablet if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzolex 600mg Tablet to your child.'),
(18815, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'What food items should my child avoid while taking Linzolex 600mg Tablet?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzolex 600mg Tablet. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18816, 'Linzolex 600mg Tablet', 'Alexcure Lifesciences Pvt. Ltd.', 'Linzolex 600mg Tablet', 'Can I get my child vaccinated while on treatment with Linzolex 600mg Tablet?', 'It is advised not to get your child vaccinated while they are on treatment with Linzolex 600mg Tablet. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18817, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'What if I give an excess of Linzolid 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18818, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzolid 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18819, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzolid 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzolid 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18820, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'Can Linzolid 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzolid 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18821, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzolid 100mg Dry Syrup?', 'Linzolid 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzolid 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18822, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzolid 100mg Dry Syrup?', 'For children receiving Linzolid 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18823, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzolid 100mg Dry Syrup to my child?', 'Avoid giving Linzolid 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzolid 100mg Dry Syrup to your child.'),
(18824, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'What food items should my child avoid while taking Linzolid 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzolid 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18825, 'Linzolid 100mg Dry Syrup', 'Cellrox Life Sciences', 'Linzolid 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzolid 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzolid 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18826, 'Linzolid 600 Tablet', 'Concept Biosciences India Private Limited', 'Linzolid 600 Tablet (Concept Biosciences India Private Limited)', 'Q. Can the use of Linzolid 600 Tablet cause diarrhea?', 'Yes, the use of Linzolid 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18827, 'Linzolid 600 Tablet', 'Concept Biosciences India Private Limited', 'Linzolid 600 Tablet (Concept Biosciences India Private Limited)', 'Q. What foods should I avoid while taking Linzolid 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzolid 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18828, 'Linzolid 600 Tablet', 'Allenburys Pharma Limited', 'Linzolid 600 Tablet (Allenburys Pharma Limited)', 'Q. Can the use of Linzolid 600 Tablet cause diarrhea?', 'Yes, the use of Linzolid 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18829, 'Linzolid 600 Tablet', 'Allenburys Pharma Limited', 'Linzolid 600 Tablet (Allenburys Pharma Limited)', 'Q. What foods should I avoid while taking Linzolid 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzolid 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18830, 'Linzoline 600mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Linzoline 600mg Tablet', 'Can the use of Linzoline 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoline 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18831, 'Linzoline 600mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Linzoline 600mg Tablet', 'What foods should I avoid while taking Linzoline 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoline 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18832, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'What if I give an excess of Linzolix 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18833, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzolix 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18834, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzolix 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzolix 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18835, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'Can Linzolix 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzolix 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18836, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzolix 100mg Dry Syrup?', 'Linzolix 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzolix 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18837, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzolix 100mg Dry Syrup?', 'For children receiving Linzolix 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18838, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzolix 100mg Dry Syrup to my child?', 'Avoid giving Linzolix 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzolix 100mg Dry Syrup to your child.'),
(18839, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'What food items should my child avoid while taking Linzolix 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzolix 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18840, 'Linzolix 100mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Linzolix 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzolix 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzolix 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18841, 'Linzolix 600mg Tablet', 'Elixir Life Care Pvt Ltd', 'Linzolix 600mg Tablet (Elixir Life Care Pvt Ltd)', 'Can the use of Linzolix 600mg Tablet cause diarrhea?', 'Yes, the use of Linzolix 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18842, 'Linzolix 600mg Tablet', 'Elixir Life Care Pvt Ltd', 'Linzolix 600mg Tablet (Elixir Life Care Pvt Ltd)', 'What foods should I avoid while taking Linzolix 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzolix 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18843, 'Linzolix 600mg Tablet', 'Human Biolife India Pvt Ltd', 'Linzolix 600mg Tablet (Human Biolife India Pvt Ltd)', 'Can the use of Linzolix 600mg Tablet cause diarrhea?', 'Yes, the use of Linzolix 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18844, 'Linzolix 600mg Tablet', 'Human Biolife India Pvt Ltd', 'Linzolix 600mg Tablet (Human Biolife India Pvt Ltd)', 'What foods should I avoid while taking Linzolix 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzolix 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18845, 'Linzolix IV 2mg Infusion', 'Human Biolife India Pvt Ltd', 'Linzolix IV 2mg Infusion', 'Can the use of Linzolix IV 2mg Infusion cause diarrhea?', 'Yes, the use of Linzolix IV 2mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18846, 'Linzolix IV 2mg Infusion', 'Human Biolife India Pvt Ltd', 'Linzolix IV 2mg Infusion', 'What foods should I avoid while taking Linzolix IV 2mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzolix IV 2mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18847, 'Linzolo 600mg Tablet', 'Medmom Pharmaceuticals LLP', 'Linzolo 600mg Tablet', 'Can the use of Linzolo 600mg Tablet cause diarrhea?', 'Yes, the use of Linzolo 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18848, 'Linzolo 600mg Tablet', 'Medmom Pharmaceuticals LLP', 'Linzolo 600mg Tablet', 'What foods should I avoid while taking Linzolo 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzolo 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18849, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'What if I give an excess of Linzomac 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18850, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzomac 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18851, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzomac 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzomac 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18852, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'Can Linzomac 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzomac 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18853, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzomac 100mg Dry Syrup?', 'Linzomac 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzomac 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18854, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzomac 100mg Dry Syrup?', 'For children receiving Linzomac 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18855, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzomac 100mg Dry Syrup to my child?', 'Avoid giving Linzomac 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzomac 100mg Dry Syrup to your child.'),
(18856, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'What food items should my child avoid while taking Linzomac 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzomac 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18857, 'Linzomac 100mg Dry Syrup', 'Spark Bless Pharma', 'Linzomac 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzomac 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzomac 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18858, 'Linzomac 600mg Tablet', 'Spark Bless Pharma', 'Linzomac 600mg Tablet', 'Can the use of Linzomac 600mg Tablet cause diarrhea?', 'Yes, the use of Linzomac 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18859, 'Linzomac 600mg Tablet', 'Spark Bless Pharma', 'Linzomac 600mg Tablet', 'What foods should I avoid while taking Linzomac 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomac 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18860, 'Linzomag 600mg Tablet', 'Magbro Healthcare Pvt Ltd', 'Linzomag 600mg Tablet', 'Can the use of Linzomag 600mg Tablet cause diarrhea?', 'Yes, the use of Linzomag 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18861, 'Linzomag 600mg Tablet', 'Magbro Healthcare Pvt Ltd', 'Linzomag 600mg Tablet', 'What foods should I avoid while taking Linzomag 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomag 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18862, 'Linzomax 600mg Tablet', 'Future Pharma Pvt Ltd', 'Linzomax 600mg Tablet', 'Can the use of Linzomax 600mg Tablet cause diarrhea?', 'Yes, the use of Linzomax 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18863, 'Linzomax 600mg Tablet', 'Future Pharma Pvt Ltd', 'Linzomax 600mg Tablet', 'What foods should I avoid while taking Linzomax 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomax 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18864, 'Linzomax IV 600mg Infusion', 'Future Pharma Pvt Ltd', 'Linzomax IV 600mg Infusion', 'Can the use of Linzomax IV 600mg Infusion cause diarrhea?', 'Yes, the use of Linzomax IV 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18865, 'Linzomax IV 600mg Infusion', 'Future Pharma Pvt Ltd', 'Linzomax IV 600mg Infusion', 'What foods should I avoid while taking Linzomax IV 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomax IV 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18866, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'What if I give an excess of Linzomed 100mg Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18867, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzomed 100mg Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18868, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'What should I do if my child shows no improvement even after taking Linzomed 100mg Syrup for the prescribed duration?', 'Ineffective treatment with Linzomed 100mg Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18869, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'Can Linzomed 100mg Syrup be given for a long duration?', 'Prolonged use of Linzomed 100mg Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18870, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'Can other medicines be given at the same time as Linzomed 100mg Syrup?', 'Linzomed 100mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzomed 100mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18871, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'What lab tests that are required for monitoring while my child is taking Linzomed 100mg Syrup?', 'For children receiving Linzomed 100mg Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18872, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'In which disease conditions should I avoid giving Linzomed 100mg Syrup to my child?', 'Avoid giving Linzomed 100mg Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzomed 100mg Syrup to your child.'),
(18873, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'What food items should my child avoid while taking Linzomed 100mg Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzomed 100mg Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18874, 'Linzomed 100mg Syrup', 'Medroz Pharmaceuticals', 'Linzomed 100mg Syrup', 'Can I get my child vaccinated while on treatment with Linzomed 100mg Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzomed 100mg Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18875, 'Linzomed 600mg Tablet', 'Medok Life Sciences Pvt Ltd', 'Linzomed 600mg Tablet', 'Can the use of Linzomed 600mg Tablet cause diarrhea?', 'Yes, the use of Linzomed 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18876, 'Linzomed 600mg Tablet', 'Medok Life Sciences Pvt Ltd', 'Linzomed 600mg Tablet', 'What foods should I avoid while taking Linzomed 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomed 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18877, 'Linzomera 600 Tablet', 'Numera Life Sciences', 'Linzomera 600 Tablet', 'Can the use of Linzomera 600 Tablet cause diarrhea?', 'Yes, the use of Linzomera 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18878, 'Linzomera 600 Tablet', 'Numera Life Sciences', 'Linzomera 600 Tablet', 'What foods should I avoid while taking Linzomera 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomera 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18879, 'Linzomust 600mg Infusion', 'Sunaxa Pharma', 'Linzomust 600mg Infusion', 'Can the use of Linzomust 600mg Infusion cause diarrhea?', 'Yes, the use of Linzomust 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18880, 'Linzomust 600mg Infusion', 'Sunaxa Pharma', 'Linzomust 600mg Infusion', 'What foods should I avoid while taking Linzomust 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomust 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18881, 'Linzomust 600mg Tablet', 'Sunaxa Pharma', 'Linzomust 600mg Tablet', 'Can the use of Linzomust 600mg Tablet cause diarrhea?', 'Yes, the use of Linzomust 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18882, 'Linzomust 600mg Tablet', 'Sunaxa Pharma', 'Linzomust 600mg Tablet', 'What foods should I avoid while taking Linzomust 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzomust 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18883, 'Linzon Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linzon Tablet', 'Can the use of Linzon Tablet cause diarrhea?', 'Yes, the use of Linzon Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18884, 'Linzon Tablet', 'Lincoln Pharmaceuticals Ltd', 'Linzon Tablet', 'What foods should I avoid while taking Linzon Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzon Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18885, 'Linzone 500mg/500mg Injection', 'Linex Pharmaceuticals', 'Linzone 500mg/500mg Injection', 'What is Linzone 500mg/500mg Injection?', 'Linzone 500mg/500mg Injection is a combination of two medicines: Cefoperazone and Sulbactam. Cefoperazone is an antibiotic which works by preventing the formation of the bacterial protective covering which is essential for the survival of bacteria. Sulbactam is a beta-lactamase inhibitor which reduces resistance and enhances the activity of Cefoperazone against bacteria.'),
(18886, 'Linzone 500mg/500mg Injection', 'Linex Pharmaceuticals', 'Linzone 500mg/500mg Injection', 'How long does Linzone 500mg/500mg Injection takes to work?', 'Usually, Linzone 500mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(18887, 'Linzone 500mg/500mg Injection', 'Linex Pharmaceuticals', 'Linzone 500mg/500mg Injection', 'What if I don\'t get better after using Linzone 500mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(18888, 'Linzonia 600mg Tablet', 'Hamswell Lifecare', 'Linzonia 600mg Tablet', 'Can the use of Linzonia 600mg Tablet cause diarrhea?', 'Yes, the use of Linzonia 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18889, 'Linzonia 600mg Tablet', 'Hamswell Lifecare', 'Linzonia 600mg Tablet', 'What foods should I avoid while taking Linzonia 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzonia 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18890, 'Linzonip 600 Tablet', 'Nova Indus Pharmaceuticals', 'Linzonip 600 Tablet', 'Can the use of Linzonip 600 Tablet cause diarrhea?', 'Yes, the use of Linzonip 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18891, 'Linzonip 600 Tablet', 'Nova Indus Pharmaceuticals', 'Linzonip 600 Tablet', 'What foods should I avoid while taking Linzonip 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzonip 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18892, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'What if I give an excess of Linzonix Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18893, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzonix Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18894, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzonix Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzonix Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18895, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'Can Linzonix Dry Syrup be given for a long duration?', 'Prolonged use of Linzonix Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18896, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'Can other medicines be given at the same time as Linzonix Dry Syrup?', 'Linzonix Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzonix Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18897, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzonix Dry Syrup?', 'For children receiving Linzonix Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18898, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'In which disease conditions should I avoid giving Linzonix Dry Syrup to my child?', 'Avoid giving Linzonix Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzonix Dry Syrup to your child.'),
(18899, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'What food items should my child avoid while taking Linzonix Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzonix Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18900, 'Linzonix Dry Syrup', 'Saphnix Life Sciences', 'Linzonix Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzonix Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzonix Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18901, 'Linzonol 600mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Linzonol 600mg Tablet', 'Can the use of Linzonol 600mg Tablet cause diarrhea?', 'Yes, the use of Linzonol 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18902, 'Linzonol 600mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Linzonol 600mg Tablet', 'What foods should I avoid while taking Linzonol 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzonol 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18903, 'Linzopex 600mg Tablet', 'Cospex Pharmaceuticals Pvt Ltd', 'Linzopex 600mg Tablet', 'Can the use of Linzopex 600mg Tablet cause diarrhea?', 'Yes, the use of Linzopex 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18904, 'Linzopex 600mg Tablet', 'Cospex Pharmaceuticals Pvt Ltd', 'Linzopex 600mg Tablet', 'What foods should I avoid while taking Linzopex 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzopex 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18905, 'Linzophen 600mg Tablet', 'Phenomax Pharmaceuticals', 'Linzophen 600mg Tablet', 'Can the use of Linzophen 600mg Tablet cause diarrhea?', 'Yes, the use of Linzophen 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18906, 'Linzophen 600mg Tablet', 'Phenomax Pharmaceuticals', 'Linzophen 600mg Tablet', 'What foods should I avoid while taking Linzophen 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzophen 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18907, 'Linzopill 600mg Tablet', 'Kalmia Healthcare', 'Linzopill 600mg Tablet', 'Can the use of Linzopill 600mg Tablet cause diarrhea?', 'Yes, the use of Linzopill 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18908, 'Linzopill 600mg Tablet', 'Kalmia Healthcare', 'Linzopill 600mg Tablet', 'What foods should I avoid while taking Linzopill 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzopill 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18909, 'Linzopoint 600mg Infusion', 'Abbott', 'Linzopoint 600mg Infusion', 'Can the use of Linzopoint 600mg Infusion cause diarrhea?', 'Yes, the use of Linzopoint 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18910, 'Linzopoint 600mg Infusion', 'Abbott', 'Linzopoint 600mg Infusion', 'What foods should I avoid while taking Linzopoint 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzopoint 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18911, 'Linzopower Tablet', 'Anevay Pharmaceuticals Pvt. Ltd.', 'Linzopower Tablet', 'Can the use of Linzopower Tablet cause diarrhea?', 'Yes, the use of Linzopower Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18912, 'Linzopower Tablet', 'Anevay Pharmaceuticals Pvt. Ltd.', 'Linzopower Tablet', 'What foods should I avoid while taking Linzopower Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzopower Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18913, 'Linzoprime 600mg Tablet', 'Scott Morrison', 'Linzoprime 600mg Tablet', 'Can the use of Linzoprime 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoprime 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18914, 'Linzoprime 600mg Tablet', 'Scott Morrison', 'Linzoprime 600mg Tablet', 'What foods should I avoid while taking Linzoprime 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoprime 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18915, 'Linzorab 600mg Tablet', 'Abaris Healthcare', 'Linzorab 600mg Tablet', 'Can the use of Linzorab 600mg Tablet cause diarrhea?', 'Yes, the use of Linzorab 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18916, 'Linzorab 600mg Tablet', 'Abaris Healthcare', 'Linzorab 600mg Tablet', 'What foods should I avoid while taking Linzorab 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzorab 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18917, 'Linzorax 600mg Tablet', 'Vytrax Healthcare', 'Linzorax 600mg Tablet', 'Can the use of Linzorax 600mg Tablet cause diarrhea?', 'Yes, the use of Linzorax 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18918, 'Linzorax 600mg Tablet', 'Vytrax Healthcare', 'Linzorax 600mg Tablet', 'What foods should I avoid while taking Linzorax 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzorax 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18919, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'What if I give an excess of Linzorel Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18920, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzorel Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18921, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzorel Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzorel Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18922, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'Can Linzorel Dry Syrup be given for a long duration?', 'Prolonged use of Linzorel Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18923, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'Can other medicines be given at the same time as Linzorel Dry Syrup?', 'Linzorel Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzorel Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18924, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzorel Dry Syrup?', 'For children receiving Linzorel Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18925, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'In which disease conditions should I avoid giving Linzorel Dry Syrup to my child?', 'Avoid giving Linzorel Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzorel Dry Syrup to your child.'),
(18926, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'What food items should my child avoid while taking Linzorel Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzorel Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18927, 'Linzorel Dry Syrup', 'Elivia Life Sciences Pvt Ltd', 'Linzorel Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzorel Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzorel Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18928, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'What if I give an excess of Linzoric 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18929, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzoric 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18930, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzoric 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzoric 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18931, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'Can Linzoric 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzoric 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18932, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzoric 100mg Dry Syrup?', 'Linzoric 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzoric 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18933, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzoric 100mg Dry Syrup?', 'For children receiving Linzoric 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18934, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzoric 100mg Dry Syrup to my child?', 'Avoid giving Linzoric 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzoric 100mg Dry Syrup to your child.'),
(18935, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'What food items should my child avoid while taking Linzoric 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzoric 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18936, 'Linzoric 100mg Dry Syrup', 'Biorika Healthcare', 'Linzoric 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzoric 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzoric 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18937, 'Linzoript 600mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Linzoript 600mg Tablet', 'Can the use of Linzoript 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoript 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18938, 'Linzoript 600mg Tablet', 'Kript Pharmaceuticals Private Limited', 'Linzoript 600mg Tablet', 'What foods should I avoid while taking Linzoript 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoript 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18939, 'Linzorit IV Infusion', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzorit IV Infusion', 'Can the use of Linzorit IV  Infusion cause diarrhea?', 'Yes, the use of Linzorit IV  Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18940, 'Linzorit IV Infusion', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzorit IV Infusion', 'What foods should I avoid while taking Linzorit IV  Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzorit IV  Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(18941, 'Linzosafe 600mg Tablet', 'Saffron Medicare Pvt Ltd', 'Linzosafe 600mg Tablet', 'Can the use of Linzosafe 600mg Tablet cause diarrhea?', 'Yes, the use of Linzosafe 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18942, 'Linzosafe 600mg Tablet', 'Saffron Medicare Pvt Ltd', 'Linzosafe 600mg Tablet', 'What foods should I avoid while taking Linzosafe 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzosafe 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18943, 'linzosak 600mg Tablet', 'Saksham Pharmaceuticals', 'linzosak 600mg Tablet', 'Can the use of linzosak 600mg Tablet cause diarrhea?', 'Yes, the use of linzosak 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18944, 'linzosak 600mg Tablet', 'Saksham Pharmaceuticals', 'linzosak 600mg Tablet', 'What foods should I avoid while taking linzosak 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking linzosak 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18945, 'Linzosal 600mg Tablet', 'Salveo Lifecare', 'Linzosal 600mg Tablet', 'Can the use of Linzosal 600mg Tablet cause diarrhea?', 'Yes, the use of Linzosal 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18946, 'Linzosal 600mg Tablet', 'Salveo Lifecare', 'Linzosal 600mg Tablet', 'What foods should I avoid while taking Linzosal 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzosal 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18947, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'What if I give an excess of Linzosal Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18948, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzosal Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18949, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzosal Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzosal Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18950, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'Can Linzosal Dry Syrup be given for a long duration?', 'Prolonged use of Linzosal Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18951, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'Can other medicines be given at the same time as Linzosal Dry Syrup?', 'Linzosal Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzosal Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18952, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzosal Dry Syrup?', 'For children receiving Linzosal Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18953, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'In which disease conditions should I avoid giving Linzosal Dry Syrup to my child?', 'Avoid giving Linzosal Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzosal Dry Syrup to your child.'),
(18954, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'What food items should my child avoid while taking Linzosal Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzosal Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18955, 'Linzosal Dry Syrup', 'Salveo Lifecare', 'Linzosal Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzosal Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzosal Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18956, 'Linzoser 600mg Tablet', 'Serbia Molecules Pvt Ltd', 'Linzoser 600mg Tablet', 'Can the use of Linzoser 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoser 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18957, 'Linzoser 600mg Tablet', 'Serbia Molecules Pvt Ltd', 'Linzoser 600mg Tablet', 'What foods should I avoid while taking Linzoser 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoser 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18958, 'Linzoshine 600 Tablet', 'Willshine Healthcare Pvt Ltd', 'Linzoshine 600 Tablet', 'Can the use of Linzoshine 600 Tablet cause diarrhea?', 'Yes, the use of Linzoshine 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18959, 'Linzoshine 600 Tablet', 'Willshine Healthcare Pvt Ltd', 'Linzoshine 600 Tablet', 'What foods should I avoid while taking Linzoshine 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoshine 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18960, 'Linzosil 600mg Tablet', 'Silver Life Sciences', 'Linzosil 600mg Tablet', 'Q. Can the use of Linzosil 600mg Tablet cause diarrhea?', 'Yes, the use of Linzosil 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18961, 'Linzosil 600mg Tablet', 'Silver Life Sciences', 'Linzosil 600mg Tablet', 'Q. What foods should I avoid while taking Linzosil 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzosil 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18962, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'What if I give an excess of Linzosin 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18963, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzosin 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18964, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzosin 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzosin 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18965, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'Can Linzosin 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzosin 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18966, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzosin 100mg Dry Syrup?', 'Linzosin 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzosin 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18967, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzosin 100mg Dry Syrup?', 'For children receiving Linzosin 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18968, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzosin 100mg Dry Syrup to my child?', 'Avoid giving Linzosin 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzosin 100mg Dry Syrup to your child.'),
(18969, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'What food items should my child avoid while taking Linzosin 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzosin 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18970, 'Linzosin 100mg Dry Syrup', 'Insinius Pharmaceuticals', 'Linzosin 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzosin 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzosin 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18971, 'Linzosin 600mg Tablet', 'Insinius Pharmaceuticals', 'Linzosin 600mg Tablet', 'Can the use of Linzosin 600mg Tablet cause diarrhea?', 'Yes, the use of Linzosin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18972, 'Linzosin 600mg Tablet', 'Insinius Pharmaceuticals', 'Linzosin 600mg Tablet', 'What foods should I avoid while taking Linzosin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzosin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18973, 'Linzoson 600mg Tablet', 'Orison Pharmaceuticals', 'Linzoson 600mg Tablet', 'Can the use of Linzoson 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoson 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(18974, 'Linzoson 600mg Tablet', 'Orison Pharmaceuticals', 'Linzoson 600mg Tablet', 'What foods should I avoid while taking Linzoson 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoson 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18975, 'Linzostar 600mg Tablet', 'Macro Labs Pvt Ltd', 'Linzostar 600mg Tablet', 'Can the use of Linzostar 600mg Tablet cause diarrhea?', 'Yes, the use of Linzostar 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18976, 'Linzostar 600mg Tablet', 'Macro Labs Pvt Ltd', 'Linzostar 600mg Tablet', 'What foods should I avoid while taking Linzostar 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzostar 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18977, 'Linzostiv 600mg Tablet', 'Indoscot Healthcare LLP', 'Linzostiv 600mg Tablet', 'Can the use of Linzostiv 600mg Tablet cause diarrhea?', 'Yes, the use of Linzostiv 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18978, 'Linzostiv 600mg Tablet', 'Indoscot Healthcare LLP', 'Linzostiv 600mg Tablet', 'What foods should I avoid while taking Linzostiv 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzostiv 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18979, 'Linzot IV Injection', 'Saturn Group', 'Linzot IV Injection', 'Can the use of Linzot IV Injection cause diarrhea?', 'Yes, the use of Linzot IV Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18980, 'Linzot IV Injection', 'Saturn Group', 'Linzot IV Injection', 'What foods should I avoid while taking Linzot IV Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzot IV Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(18981, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'What if I give an excess of Linzotec 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18982, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzotec 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(18983, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzotec 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzotec 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(18984, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'Can Linzotec 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzotec 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(18985, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzotec 100mg Dry Syrup?', 'Linzotec 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzotec 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(18986, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzotec 100mg Dry Syrup?', 'For children receiving Linzotec 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(18987, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzotec 100mg Dry Syrup to my child?', 'Avoid giving Linzotec 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzotec 100mg Dry Syrup to your child.'),
(18988, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'What food items should my child avoid while taking Linzotec 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzotec 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(18989, 'Linzotec 100mg Dry Syrup', 'Orange Biotech Pvt Ltd', 'Linzotec 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzotec 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzotec 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(18990, 'Linzotec 600mg Tablet', 'Orange Biotech Pvt Ltd', 'Linzotec 600mg Tablet', 'Can the use of Linzotec 600mg Tablet cause diarrhea?', 'Yes, the use of Linzotec 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18991, 'Linzotec 600mg Tablet', 'Orange Biotech Pvt Ltd', 'Linzotec 600mg Tablet', 'What foods should I avoid while taking Linzotec 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzotec 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18992, 'Linzoten 600mg Tablet', 'Medcure Pharma', 'Linzoten 600mg Tablet', 'Can the use of Linzoten 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoten 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18993, 'Linzoten 600mg Tablet', 'Medcure Pharma', 'Linzoten 600mg Tablet', 'What foods should I avoid while taking Linzoten 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoten 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18994, 'Linzotic 600mg Tablet', 'Elder Pharmaceuticals Ltd', 'Linzotic 600mg Tablet (Elder Pharmaceuticals Ltd)', 'Can the use of Linzotic 600mg Tablet cause diarrhea?', 'Yes, the use of Linzotic 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18995, 'Linzotic 600mg Tablet', 'Elder Pharmaceuticals Ltd', 'Linzotic 600mg Tablet (Elder Pharmaceuticals Ltd)', 'What foods should I avoid while taking Linzotic 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzotic 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18996, 'Linzotic 600mg Tablet', 'Asiatic Pharmaceuticals', 'Linzotic 600mg Tablet (Asiatic Pharmaceuticals)', 'Can the use of Linzotic 600mg Tablet cause diarrhea?', 'Yes, the use of Linzotic 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(18997, 'Linzotic 600mg Tablet', 'Asiatic Pharmaceuticals', 'Linzotic 600mg Tablet (Asiatic Pharmaceuticals)', 'What foods should I avoid while taking Linzotic 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzotic 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(18998, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'What if I give an excess of Linzotic DS 100mg Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(18999, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzotic DS 100mg Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(19000, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'What should I do if my child shows no improvement even after taking Linzotic DS 100mg Oral Suspension for the prescribed duration?', 'Ineffective treatment with Linzotic DS 100mg Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(19001, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'Can Linzotic DS 100mg Oral Suspension be given for a long duration?', 'Prolonged use of Linzotic DS 100mg Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(19002, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'Can other medicines be given at the same time as Linzotic DS 100mg Oral Suspension?', 'Linzotic DS 100mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzotic DS 100mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(19003, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Linzotic DS 100mg Oral Suspension?', 'For children receiving Linzotic DS 100mg Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(19004, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'In which disease conditions should I avoid giving Linzotic DS 100mg Oral Suspension to my child?', 'Avoid giving Linzotic DS 100mg Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzotic DS 100mg Oral Suspension to your child.'),
(19005, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'What food items should my child avoid while taking Linzotic DS 100mg Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzotic DS 100mg Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(19006, 'Linzotic DS 100mg Oral Suspension', 'Asiatic Pharmaceuticals', 'Linzotic DS 100mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Linzotic DS 100mg Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Linzotic DS 100mg Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(19007, 'Linzotip 600mg Tablet', 'Indizen Pharmaceutical', 'Linzotip 600mg Tablet', 'Can the use of Linzotip 600mg Tablet cause diarrhea?', 'Yes, the use of Linzotip 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19008, 'Linzotip 600mg Tablet', 'Indizen Pharmaceutical', 'Linzotip 600mg Tablet', 'What foods should I avoid while taking Linzotip 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzotip 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19009, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'What if I give an excess of Linzoton 600mg Tablet by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(19010, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzoton 600mg Tablet along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(19011, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'What should I do if my child shows no improvement even after taking Linzoton 600mg Tablet for the prescribed duration?', 'Ineffective treatment with Linzoton 600mg Tablet could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(19012, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'Can Linzoton 600mg Tablet be given for a long duration?', 'Prolonged use of Linzoton 600mg Tablet may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(19013, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'Can other medicines be given at the same time as Linzoton 600mg Tablet?', 'Linzoton 600mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzoton 600mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(19014, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'What lab tests that are required for monitoring while my child is taking Linzoton 600mg Tablet?', 'For children receiving Linzoton 600mg Tablet for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(19015, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'In which disease conditions should I avoid giving Linzoton 600mg Tablet to my child?', 'Avoid giving Linzoton 600mg Tablet if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzoton 600mg Tablet to your child.'),
(19016, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'What food items should my child avoid while taking Linzoton 600mg Tablet?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzoton 600mg Tablet. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(19017, 'Linzoton 600mg Tablet', 'Caxton Biotech Private Limited', 'Linzoton 600mg Tablet', 'Can I get my child vaccinated while on treatment with Linzoton 600mg Tablet?', 'It is advised not to get your child vaccinated while they are on treatment with Linzoton 600mg Tablet. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(19018, 'Linzotruzy 200mg Injection', 'Truecure Healthcare Private Limited', 'Linzotruzy 200mg Injection', 'Can the use of Linzotruzy 200mg Injection cause diarrhea?', 'Yes, the use of Linzotruzy 200mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19019, 'Linzotruzy 200mg Injection', 'Truecure Healthcare Private Limited', 'Linzotruzy 200mg Injection', 'What foods should I avoid while taking Linzotruzy 200mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzotruzy 200mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(19020, 'Linzotyx 600mg Tablet', 'Quria Healthcare', 'Linzotyx 600mg Tablet', 'Can the use of Linzotyx 600mg Tablet cause diarrhea?', 'Yes, the use of Linzotyx 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19021, 'Linzotyx 600mg Tablet', 'Quria Healthcare', 'Linzotyx 600mg Tablet', 'What foods should I avoid while taking Linzotyx 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzotyx 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19022, 'Linzov 600 Tablet', 'Vrevive Medicure Pvt. Ltd.', 'Linzov 600 Tablet', 'Can the use of Linzov 600 Tablet cause diarrhea?', 'Yes, the use of Linzov 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19023, 'Linzov 600 Tablet', 'Vrevive Medicure Pvt. Ltd.', 'Linzov 600 Tablet', 'What foods should I avoid while taking Linzov 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzov 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19024, 'Linzovar 600mg Tablet', 'Inavars Biologicals Inc', 'Linzovar 600mg Tablet', 'Can the use of Linzovar 600mg Tablet cause diarrhea?', 'Yes, the use of Linzovar 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19025, 'Linzovar 600mg Tablet', 'Inavars Biologicals Inc', 'Linzovar 600mg Tablet', 'What foods should I avoid while taking Linzovar 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzovar 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19026, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'What if I give an excess of Linzovax Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(19027, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzovax Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(19028, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzovax Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzovax Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(19029, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'Can Linzovax Dry Syrup be given for a long duration?', 'Prolonged use of Linzovax Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(19030, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'Can other medicines be given at the same time as Linzovax Dry Syrup?', 'Linzovax Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzovax Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(19031, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzovax Dry Syrup?', 'For children receiving Linzovax Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(19032, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'In which disease conditions should I avoid giving Linzovax Dry Syrup to my child?', 'Avoid giving Linzovax Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzovax Dry Syrup to your child.'),
(19033, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'What food items should my child avoid while taking Linzovax Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzovax Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(19034, 'Linzovax Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovax Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzovax Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzovax Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(19035, 'Linzovib Tablet', 'Vibdrugs Biosciences', 'Linzovib Tablet', 'Can the use of Linzovib Tablet cause diarrhea?', 'Yes, the use of Linzovib Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19036, 'Linzovib Tablet', 'Vibdrugs Biosciences', 'Linzovib Tablet', 'What foods should I avoid while taking Linzovib Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzovib Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19037, 'Linzovik 600mg Tablet', 'Norvick Lifesciences', 'Linzovik 600mg Tablet', 'Can the use of Linzovik 600mg Tablet cause diarrhea?', 'Yes, the use of Linzovik 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19038, 'Linzovik 600mg Tablet', 'Norvick Lifesciences', 'Linzovik 600mg Tablet', 'What foods should I avoid while taking Linzovik 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzovik 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19039, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'What if I give an excess of Linzovil 100mg/5ml Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(19040, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzovil 100mg/5ml Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(19041, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzovil 100mg/5ml Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzovil 100mg/5ml Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(19042, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'Can Linzovil 100mg/5ml Dry Syrup be given for a long duration?', 'Prolonged use of Linzovil 100mg/5ml Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(19043, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'Can other medicines be given at the same time as Linzovil 100mg/5ml Dry Syrup?', 'Linzovil 100mg/5ml Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzovil 100mg/5ml Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(19044, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzovil 100mg/5ml Dry Syrup?', 'For children receiving Linzovil 100mg/5ml Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(19045, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'In which disease conditions should I avoid giving Linzovil 100mg/5ml Dry Syrup to my child?', 'Avoid giving Linzovil 100mg/5ml Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzovil 100mg/5ml Dry Syrup to your child.'),
(19046, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'What food items should my child avoid while taking Linzovil 100mg/5ml Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzovil 100mg/5ml Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(19047, 'Linzovil 100mg/5ml Dry Syrup', 'Fibovil Pharmaceuticals Pvt Ltd', 'Linzovil 100mg/5ml Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzovil 100mg/5ml Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzovil 100mg/5ml Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(19048, 'Linzovin 600 Tablet', 'Asvins Lifecare', 'Linzovin 600 Tablet', 'Can the use of Linzovin 600 Tablet cause diarrhea?', 'Yes, the use of Linzovin 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19049, 'Linzovin 600 Tablet', 'Asvins Lifecare', 'Linzovin 600 Tablet', 'What foods should I avoid while taking Linzovin 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzovin 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19050, 'Linzowell 600mg Tablet', 'Meditouch Wellness', 'Linzowell 600mg Tablet', 'Can the use of Linzowell 600mg Tablet cause diarrhea?', 'Yes, the use of Linzowell 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19051, 'Linzowell 600mg Tablet', 'Meditouch Wellness', 'Linzowell 600mg Tablet', 'What foods should I avoid while taking Linzowell 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzowell 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19052, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'What if I give an excess of Linzowell Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(19053, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzowell Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(19054, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'What should I do if my child shows no improvement even after taking Linzowell Oral Suspension for the prescribed duration?', 'Ineffective treatment with Linzowell Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(19055, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'Can Linzowell Oral Suspension be given for a long duration?', 'Prolonged use of Linzowell Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(19056, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'Can other medicines be given at the same time as Linzowell Oral Suspension?', 'Linzowell Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzowell Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(19057, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Linzowell Oral Suspension?', 'For children receiving Linzowell Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(19058, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'In which disease conditions should I avoid giving Linzowell Oral Suspension to my child?', 'Avoid giving Linzowell Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzowell Oral Suspension to your child.'),
(19059, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'What food items should my child avoid while taking Linzowell Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzowell Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(19060, 'Linzowell Oral Suspension', 'Meditouch Wellness', 'Linzowell Oral Suspension', 'Can I get my child vaccinated while on treatment with Linzowell Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Linzowell Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(19061, 'Linzox 600mg Tablet', 'Hochest Biotech India', 'Linzox 600mg Tablet', 'Can the use of Linzox 600mg Tablet cause diarrhea?', 'Yes, the use of Linzox 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19062, 'Linzox 600mg Tablet', 'Hochest Biotech India', 'Linzox 600mg Tablet', 'What foods should I avoid while taking Linzox 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzox 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19063, 'Linzoyam 600mg Tablet', 'Yami Pharma', 'Linzoyam 600mg Tablet', 'Can the use of Linzoyam 600mg Tablet cause diarrhea?', 'Yes, the use of Linzoyam 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19064, 'Linzoyam 600mg Tablet', 'Yami Pharma', 'Linzoyam 600mg Tablet', 'What foods should I avoid while taking Linzoyam 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoyam 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19065, 'Linzoz 600mg Syrup', 'Pureza Pharmaceuticals', 'Linzoz 600mg Syrup', 'Can the use of Linzoz 600mg Syrup cause diarrhea?', 'Yes, the use of Linzoz 600mg Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19066, 'Linzoz 600mg Syrup', 'Pureza Pharmaceuticals', 'Linzoz 600mg Syrup', 'What foods should I avoid while taking Linzoz 600mg Syrup?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzoz 600mg Syrup can result in elevation of blood pressure, which may result in an emergency situation.'),
(19067, 'Linzozet 600mg Tablet', 'Healthpride', 'Linzozet 600mg Tablet', 'Can the use of Linzozet 600mg Tablet cause diarrhea?', 'Yes, the use of Linzozet 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19068, 'Linzozet 600mg Tablet', 'Healthpride', 'Linzozet 600mg Tablet', 'What foods should I avoid while taking Linzozet 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzozet 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19069, 'Linzozip 600mg Tablet', 'Elisa Biotech Pvt Ltd', 'Linzozip 600mg Tablet (Elisa Biotech Pvt Ltd)', 'Can the use of Linzozip 600mg Tablet cause diarrhea?', 'Yes, the use of Linzozip 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19070, 'Linzozip 600mg Tablet', 'Elisa Biotech Pvt Ltd', 'Linzozip 600mg Tablet (Elisa Biotech Pvt Ltd)', 'What foods should I avoid while taking Linzozip 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzozip 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19071, 'Linzozip 600mg Tablet', 'Biochem Pharmaceutical Industries', 'Linzozip 600mg Tablet (Biochem Pharmaceutical Industries)', 'Can the use of Linzozip 600mg Tablet cause diarrhea?', 'Yes, the use of Linzozip 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19072, 'Linzozip 600mg Tablet', 'Biochem Pharmaceutical Industries', 'Linzozip 600mg Tablet (Biochem Pharmaceutical Industries)', 'What foods should I avoid while taking Linzozip 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzozip 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19073, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'What if I give an excess of Linzozip DS 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(19074, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Linzozip DS 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(19075, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Linzozip DS 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Linzozip DS 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(19076, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'Can Linzozip DS 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Linzozip DS 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19077, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'Can other medicines be given at the same time as Linzozip DS 100mg Dry Syrup?', 'Linzozip DS 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Linzozip DS 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(19078, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Linzozip DS 100mg Dry Syrup?', 'For children receiving Linzozip DS 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(19079, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'In which disease conditions should I avoid giving Linzozip DS 100mg Dry Syrup to my child?', 'Avoid giving Linzozip DS 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Linzozip DS 100mg Dry Syrup to your child.'),
(19080, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'What food items should my child avoid while taking Linzozip DS 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Linzozip DS 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(19081, 'Linzozip DS 100mg Dry Syrup', 'Elisa Biotech Pvt Ltd', 'Linzozip DS 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Linzozip DS 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Linzozip DS 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(19082, 'Linzozit 600mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Linzozit 600mg Tablet', 'Can the use of Linzozit 600mg Tablet cause diarrhea?', 'Yes, the use of Linzozit 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19083, 'Linzozit 600mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Linzozit 600mg Tablet', 'What foods should I avoid while taking Linzozit 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzozit 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19084, 'Linzrom 600mg Tablet', 'Romas Remedies', 'Linzrom 600mg Tablet', 'Can the use of Linzrom 600mg Tablet cause diarrhea?', 'Yes, the use of Linzrom 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19085, 'Linzrom 600mg Tablet', 'Romas Remedies', 'Linzrom 600mg Tablet', 'What foods should I avoid while taking Linzrom 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzrom 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19086, 'Linzwel 600mg Tablet', 'Wellgo Pharmaceuticals', 'Linzwel 600mg Tablet', 'Can the use of Linzwel 600mg Tablet cause diarrhea?', 'Yes, the use of Linzwel 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19087, 'Linzwel 600mg Tablet', 'Wellgo Pharmaceuticals', 'Linzwel 600mg Tablet', 'What foods should I avoid while taking Linzwel 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzwel 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19088, 'Linzy 600 Tablet', 'Abrowell Pharmaceuticals', 'Linzy 600 Tablet', 'Can the use of Linzy 600 Tablet cause diarrhea?', 'Yes, the use of Linzy 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19089, 'Linzy 600 Tablet', 'Abrowell Pharmaceuticals', 'Linzy 600 Tablet', 'What foods should I avoid while taking Linzy 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzy 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19090, 'Linzy 600mg Tablet', 'Stenhill Labs', 'Linzy 600mg Tablet', 'Can the use of Linzy 600mg Tablet cause diarrhea?', 'Yes, the use of Linzy 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19091, 'Linzy 600mg Tablet', 'Stenhill Labs', 'Linzy 600mg Tablet', 'What foods should I avoid while taking Linzy 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzy 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19092, 'Linzyn 600mg Tablet', 'Healthridge Pharmaceuticals Pvt. Ltd.', 'Linzyn 600mg Tablet', 'Can the use of Linzyn 600mg Tablet cause diarrhea?', 'Yes, the use of Linzyn 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19093, 'Linzyn 600mg Tablet', 'Healthridge Pharmaceuticals Pvt. Ltd.', 'Linzyn 600mg Tablet', 'What foods should I avoid while taking Linzyn 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Linzyn 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(19094, 'Lio 500mg Tablet', 'Medicross Pharmaceuticals', 'Lio 500mg Tablet', 'Is Lio 500mg Tablet safe?', 'Lio 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(19095, 'Lio 500mg Tablet', 'Medicross Pharmaceuticals', 'Lio 500mg Tablet', 'What if I forget to take a dose of Lio 500mg Tablet?', 'If you forget a dose of Lio 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(19096, 'Lio 500mg Tablet', 'Medicross Pharmaceuticals', 'Lio 500mg Tablet', 'Can the use of Lio 500mg Tablet cause diarrhea?', 'Yes, the use of Lio 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19097, 'Lio 500mg Tablet', 'Medicross Pharmaceuticals', 'Lio 500mg Tablet', 'Can I stop taking Lio 500mg Tablet when I feel better?', 'No, do not stop taking Lio 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lio 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lio 500mg Tablet in the dose and duration advised by the doctor.'),
(19098, 'Lio 500mg Tablet', 'Medicross Pharmaceuticals', 'Lio 500mg Tablet', 'Can the use of Lio 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lio 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lio 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(19099, 'Lio CV LB 500mg/125mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lio CV LB 500mg/125mg Tablet', 'What are the contraindications associated with the use of Lio CV LB 500mg/125mg Tablet?', 'Lio CV LB 500mg/125mg Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(19100, 'Lio CV LB 500mg/125mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lio CV LB 500mg/125mg Tablet', 'Which is the best time to take Lio CV LB 500mg/125mg Tablet?', 'Lio CV LB 500mg/125mg Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(19101, 'Lio CV LB 500mg/125mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lio CV LB 500mg/125mg Tablet', 'Can I stop Lio CV LB 500mg/125mg Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(19102, 'Lio CV LB 500mg/125mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lio CV LB 500mg/125mg Tablet', 'Can I take Lio CV LB 500mg/125mg Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(19103, 'Lio CV LB 500mg/125mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lio CV LB 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lio CV LB 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19104, 'Liobec 10 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec 10 Tablet', 'Can Liobec 10 Tablet make you sleepy?', 'Yes, Liobec 10 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liobec 10 Tablet affects you.'),
(19105, 'Liobec 10 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec 10 Tablet', 'Does Liobec 10 Tablet help anxiety?', 'Though Liobec 10 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19106, 'Liobec 10 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec 10 Tablet', 'Can I take Liobec 10 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liobec 10 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19107, 'Liobec 10 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec 10 Tablet', 'Does Liobec 10 Tablet have any effect on kidneys?', 'Liobec 10 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19108, 'Liobec 10 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec 10 Tablet', 'How should Liobec 10 Tablet be taken?', 'Take Liobec 10 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liobec 10 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19109, 'Liobec ER 20 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec ER 20 Tablet', 'Can Liobec ER 20 Tablet make you sleepy?', 'Yes, Liobec ER 20 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liobec ER 20 Tablet affects you.'),
(19110, 'Liobec ER 20 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec ER 20 Tablet', 'Does Liobec ER 20 Tablet help anxiety?', 'Though Liobec ER 20 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19111, 'Liobec ER 20 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec ER 20 Tablet', 'Can I take Liobec ER 20 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liobec ER 20 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19112, 'Liobec ER 20 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec ER 20 Tablet', 'Does Liobec ER 20 Tablet have any effect on kidneys?', 'Liobec ER 20 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19113, 'Liobec ER 20 Tablet', 'Transcure Therapeutics Pvt Ltd', 'Liobec ER 20 Tablet', 'How should Liobec ER 20 Tablet be taken?', 'Take Liobec ER 20 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liobec ER 20 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19114, 'Lioburn Syrup', 'R.T. Pharma', 'Lioburn Syrup', 'What is Lioburn Syrup?', 'Lioburn Syrup is a combination of three medicines: oxetacaine, aluminium hydroxide and milk of magnesia. It is used in the treatment of acidity, heartburn and stomach ulcers. Oxetacaine is a local anesthetic that provides relief from pain due to ulcers or acidic injury in the stomach. Aluminium hydroxide and milk of magnesia are antacids which are used together to relieve heartburn, acidity and upset stomach. They may be used to treat the symptoms in patients with peptic ulcer, gastritis, esophagitis or gastric hyperacidity (too much acidity in the stomach).'),
(19115, 'Lioburn Syrup', 'R.T. Pharma', 'Lioburn Syrup', 'Is it safe to use Lioburn Syrup?', 'Lioburn Syrup is safe for most of the patients. However, in some patients it may cause common side effects like constipation, diarrhea, allergic reaction and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(19116, 'Lioburn Syrup', 'R.T. Pharma', 'Lioburn Syrup', 'Can the use of Lioburn Syrup cause constipation?', 'Yes, the use of Lioburn Syrup Of Magnesia can cause constipation. Eat a good amount of high-fiber foods such as fresh fruits, vegetables and cereals. Drink plenty of water or other fluids and exercise regularly. These lifestyle changes will help in relieving constipation.'),
(19117, 'Lioburn Syrup', 'R.T. Pharma', 'Lioburn Syrup', 'Can the use of Lioburn Syrup cause diarrhea?', 'Yes, the use of Lioburn Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(19118, 'Lioburn Syrup', 'R.T. Pharma', 'Lioburn Syrup', 'What are the recommended storage conditions for Lioburn Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19119, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'Q. Can Liocuf A Syrup be used in a dry cough?', 'No, Liocuf A Syrup is used in wet cough i.e. a cough with mucus production.'),
(19120, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'Q. Are there any contraindications associated with the use of Liocuf A Syrup?', 'It is not recommended to use Liocuf A Syrup in patients who are allergic to any of its component. It should also be avoided in patients having heart disease and peptic ulcer.'),
(19121, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'Q. Will a higher than the recommended dose of Liocuf A Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(19122, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'Q. What are the instructions for the storage and disposal of Liocuf A Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19123, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'Can Liocuf A Syrup be used in a dry cough?', 'No, Liocuf A Syrup is used in wet cough i.e. a cough with mucus production.'),
(19124, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'Are there any contraindications associated with the use of Liocuf A Syrup?', 'It is not recommended to use Liocuf A Syrup in patients who are allergic to any of its component. It should also be avoided in patients having heart disease and peptic ulcer.'),
(19125, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'Will a higher than the recommended dose of Liocuf A Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(19126, 'Liocuf A Syrup', 'Lanchestor Biotech', 'Liocuf A Syrup', 'What are the instructions for the storage and disposal of Liocuf A Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19127, 'Liocuf AD Syrup', 'Lanchestor Biotech', 'Liocuf AD Syrup', 'Can the use of Liocuf AD Syrup cause sleepiness or drowsiness?', 'Yes, Liocuf AD Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such an episode while taking this medicine.'),
(19128, 'Liocuf AD Syrup', 'Lanchestor Biotech', 'Liocuf AD Syrup', 'Can I breastfeed while taking Liocuf AD Syrup?', 'No, it is not advisable to breastfeed while using Liocuf AD Syrup. This medicine contains chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(19129, 'Liocuf AD Syrup', 'Lanchestor Biotech', 'Liocuf AD Syrup', 'What are the instructions for the storage and disposal of Liocuf AD Syrup?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19130, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'Q. Can the use of Liocuf D Syrup cause sleepiness or drowsiness?', 'Yes, Liocuf D Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(19131, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'Q. Will Liocuf D Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(19132, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'Q. Can I breastfeed while taking Liocuf D Syrup?', 'No, it is not advisable to breastfeed while using Liocuf D Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(19133, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'Q. What are the instructions for storage and disposal of Liocuf D Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19134, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'Can the use of Liocuf D Syrup cause sleepiness or drowsiness?', 'Yes, Liocuf D Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(19135, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'Will Liocuf D Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(19136, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'Can I breastfeed while taking Liocuf D Syrup?', 'No, it is not advisable to breastfeed while using Liocuf D Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(19137, 'Liocuf D Syrup', 'Lanchestor Biotech', 'Liocuf D Syrup', 'What are the instructions for storage and disposal of Liocuf D Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19138, 'Liocuf Xl Syrup', 'Lanchestor Biotech', 'Liocuf Xl Syrup', 'What is Liocuf Xl Syrup?', 'Liocuf Xl Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(19139, 'Liocuf Xl Syrup', 'Lanchestor Biotech', 'Liocuf Xl Syrup', 'Is it safe to use Liocuf Xl Syrup?', 'Yes, it is safe to use Liocuf Xl Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(19140, 'Liocuf Xl Syrup', 'Lanchestor Biotech', 'Liocuf Xl Syrup', 'Are there any specific contraindications associated with the use of Liocuf Xl Syrup?', 'Use of Liocuf Xl Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(19141, 'Liocuf Xl Syrup', 'Lanchestor Biotech', 'Liocuf Xl Syrup', 'Can the use of Liocuf Xl Syrup cause dizziness?', 'Yes, the use of Liocuf Xl Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(19142, 'Liocuf Xl Syrup', 'Lanchestor Biotech', 'Liocuf Xl Syrup', 'Can the use of Liocuf Xl Syrup cause diarrhea?', 'Yes, the use of Liocuf Xl Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(19143, 'Liocuf Xl Syrup', 'Lanchestor Biotech', 'Liocuf Xl Syrup', 'What are the recommended storage conditions for Liocuf Xl Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19144, 'Liod 300mg Injection', 'Bennet Pharmaceuticals Limited', 'Liod 300mg Injection', 'What if I don\'t get better after using Liod 300mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(19145, 'Liod 300mg Injection', 'Bennet Pharmaceuticals Limited', 'Liod 300mg Injection', 'Can the use of Liod 300mg Injection cause diarrhea?', 'Yes, the use of Liod 300mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19146, 'Liod 300mg Injection', 'Bennet Pharmaceuticals Limited', 'Liod 300mg Injection', 'How long does Liod 300mg Injection take to work?', 'Usually, Liod 300mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(19147, 'Liod 300mg Injection', 'Bennet Pharmaceuticals Limited', 'Liod 300mg Injection', 'How is Liod 300mg Injection administered?', 'Liod 300mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Liod 300mg Injection.'),
(19148, 'Liod 300mg Injection', 'Bennet Pharmaceuticals Limited', 'Liod 300mg Injection', 'Is Liod 300mg Injection effective?', 'Liod 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.Liod 300mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Liod 300mg Injection too early, the symptoms may return or worsen.'),
(19149, 'Liod 300mg Injection', 'Bennet Pharmaceuticals Limited', 'Liod 300mg Injection', 'Is Liod 300mg Injection safe?', 'Liod 300mg Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(19150, 'Liofast 10mg Tablet', 'Inqor Pharmaceuticals Private Limited', 'Liofast 10mg Tablet', 'Can Liofast 10mg Tablet make you sleepy?', 'Yes, Liofast 10mg Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofast 10mg Tablet affects you.'),
(19151, 'Liofast 10mg Tablet', 'Inqor Pharmaceuticals Private Limited', 'Liofast 10mg Tablet', 'Does Liofast 10mg Tablet help anxiety?', 'Though Liofast 10mg Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19152, 'Liofast 10mg Tablet', 'Inqor Pharmaceuticals Private Limited', 'Liofast 10mg Tablet', 'Can I take Liofast 10mg Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofast 10mg Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19153, 'Liofast 10mg Tablet', 'Inqor Pharmaceuticals Private Limited', 'Liofast 10mg Tablet', 'Does Liofast 10mg Tablet have any effect on kidneys?', 'Liofast 10mg Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19154, 'Liofast 10mg Tablet', 'Inqor Pharmaceuticals Private Limited', 'Liofast 10mg Tablet', 'How should Liofast 10mg Tablet be taken?', 'Take Liofast 10mg Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liofast 10mg Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19155, 'Liofen 10 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 10 Tablet', 'Can Liofen 10 Tablet make you sleepy?', 'Yes, Liofen 10 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen 10 Tablet affects you.'),
(19156, 'Liofen 10 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 10 Tablet', 'Does Liofen 10 Tablet help anxiety?', 'Though Liofen 10 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19157, 'Liofen 10 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 10 Tablet', 'Can I take Liofen 10 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen 10 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19158, 'Liofen 10 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 10 Tablet', 'Does Liofen 10 Tablet have any effect on kidneys?', 'Liofen 10 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19159, 'Liofen 10 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 10 Tablet', 'How should Liofen 10 Tablet be taken?', 'Take Liofen 10 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liofen 10 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19160, 'Liofen 25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 25 Tablet', 'Can Liofen 25 Tablet make you sleepy?', 'Yes, Liofen 25 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen 25 Tablet affects you.'),
(19161, 'Liofen 25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 25 Tablet', 'Does Liofen 25 Tablet help anxiety?', 'Though Liofen 25 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19162, 'Liofen 25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 25 Tablet', 'Can I take Liofen 25 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen 25 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19163, 'Liofen 25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 25 Tablet', 'Does Liofen 25 Tablet have any effect on kidneys?', 'Liofen 25 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19164, 'Liofen 25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 25 Tablet', 'How should Liofen 25 Tablet be taken?', 'Take Liofen 25 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liofen 25 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19165, 'Liofen 40mg Capsule XL', 'Sun Pharmaceutical Industries Ltd', 'Liofen 40mg Capsule XL', 'Can Liofen 40mg Capsule XL make you sleepy?', 'Yes, Liofen 40mg Capsule XL can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen 40mg Capsule XL affects you.'),
(19166, 'Liofen 40mg Capsule XL', 'Sun Pharmaceutical Industries Ltd', 'Liofen 40mg Capsule XL', 'Does Liofen 40mg Capsule XL help anxiety?', 'Though Liofen 40mg Capsule XL is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19167, 'Liofen 40mg Capsule XL', 'Sun Pharmaceutical Industries Ltd', 'Liofen 40mg Capsule XL', 'Can I take Liofen 40mg Capsule XL if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen 40mg Capsule XL. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19168, 'Liofen 40mg Capsule XL', 'Sun Pharmaceutical Industries Ltd', 'Liofen 40mg Capsule XL', 'Does Liofen 40mg Capsule XL have any effect on kidneys?', 'Liofen 40mg Capsule XL may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19169, 'Liofen 40mg Capsule XL', 'Sun Pharmaceutical Industries Ltd', 'Liofen 40mg Capsule XL', 'How should Liofen 40mg Capsule XL be taken?', 'Take Liofen 40mg Capsule XL exactly as directed by your doctor. If a person experiences nausea while taking Liofen 40mg Capsule XL then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19170, 'Liofen 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 5 Tablet', 'Can Liofen 5 Tablet make you sleepy?', 'Yes, Liofen 5 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen 5 Tablet affects you.'),
(19171, 'Liofen 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 5 Tablet', 'Does Liofen 5 Tablet help anxiety?', 'Though Liofen 5 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19172, 'Liofen 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 5 Tablet', 'Can I take Liofen 5 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen 5 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19173, 'Liofen 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 5 Tablet', 'Does Liofen 5 Tablet have any effect on kidneys?', 'Liofen 5 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19174, 'Liofen 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Liofen 5 Tablet', 'How should Liofen 5 Tablet be taken?', 'Take Liofen 5 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liofen 5 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19175, 'Liofen Liquid', 'Sun Pharmaceutical Industries Ltd', 'Liofen Liquid', 'Can Liofen Liquid make you sleepy?', 'Yes, Liofen Liquid can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen Liquid affects you.'),
(19176, 'Liofen Liquid', 'Sun Pharmaceutical Industries Ltd', 'Liofen Liquid', 'Does Liofen Liquid help anxiety?', 'Though Liofen Liquid is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19177, 'Liofen Liquid', 'Sun Pharmaceutical Industries Ltd', 'Liofen Liquid', 'Can I take Liofen Liquid if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen Liquid. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19178, 'Liofen Liquid', 'Sun Pharmaceutical Industries Ltd', 'Liofen Liquid', 'Does Liofen Liquid have any effect on kidneys?', 'Liofen Liquid may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19179, 'Liofen Liquid', 'Sun Pharmaceutical Industries Ltd', 'Liofen Liquid', 'How should Liofen Liquid be taken?', 'Take Liofen Liquid exactly as directed by your doctor. If a person experiences nausea while taking Liofen Liquid then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19180, 'Liofen XL 10 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 10 Capsule', 'Q. Can Liofen XL 10 Capsule make you sleepy?', 'Yes, Liofen XL 10 Capsule can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen XL 10 Capsule affects you.'),
(19181, 'Liofen XL 10 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 10 Capsule', 'Q. Does Liofen XL 10 Capsule help anxiety?', 'Though Liofen XL 10 Capsule is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19182, 'Liofen XL 10 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 10 Capsule', 'Q. Can I take Liofen XL 10 Capsule if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen XL 10 Capsule. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19183, 'Liofen XL 10 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 10 Capsule', 'Q. Does Liofen XL 10 Capsule have any effect on kidneys?', 'Liofen XL 10 Capsule may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19184, 'Liofen XL 10 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 10 Capsule', 'Q. How should Liofen XL 10 Capsule be taken?', 'Take Liofen XL 10 Capsule exactly as directed by your doctor. If a person experiences nausea while taking Liofen XL 10 Capsule then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19185, 'Liofen XL 20 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 20 Capsule', 'Can Liofen XL 20 Capsule make you sleepy?', 'Yes, Liofen XL 20 Capsule can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen XL 20 Capsule affects you.'),
(19186, 'Liofen XL 20 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 20 Capsule', 'Does Liofen XL 20 Capsule help anxiety?', 'Though Liofen XL 20 Capsule is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19187, 'Liofen XL 20 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 20 Capsule', 'Can I take Liofen XL 20 Capsule if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen XL 20 Capsule. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19188, 'Liofen XL 20 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 20 Capsule', 'Does Liofen XL 20 Capsule have any effect on kidneys?', 'Liofen XL 20 Capsule may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19189, 'Liofen XL 20 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 20 Capsule', 'How should Liofen XL 20 Capsule be taken?', 'Take Liofen XL 20 Capsule exactly as directed by your doctor. If a person experiences nausea while taking Liofen XL 20 Capsule then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19190, 'Liofen XL 30 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 30 Capsule', 'Can Liofen XL 30 Capsule make you sleepy?', 'Yes, Liofen XL 30 Capsule can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liofen XL 30 Capsule affects you.'),
(19191, 'Liofen XL 30 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 30 Capsule', 'Does Liofen XL 30 Capsule help anxiety?', 'Though Liofen XL 30 Capsule is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19192, 'Liofen XL 30 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 30 Capsule', 'Can I take Liofen XL 30 Capsule if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liofen XL 30 Capsule. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19193, 'Liofen XL 30 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 30 Capsule', 'Does Liofen XL 30 Capsule have any effect on kidneys?', 'Liofen XL 30 Capsule may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19194, 'Liofen XL 30 Capsule', 'Sun Pharmaceutical Industries Ltd', 'Liofen XL 30 Capsule', 'How should Liofen XL 30 Capsule be taken?', 'Take Liofen XL 30 Capsule exactly as directed by your doctor. If a person experiences nausea while taking Liofen XL 30 Capsule then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19195, 'Lioflox 200mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox 200mg Tablet', 'Can the use of Lioflox 200mg Tablet cause diarrhea?', 'Yes, the use of Lioflox 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19196, 'Lioflox 200mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox 200mg Tablet', 'Can I stop taking Lioflox 200mg Tablet when I feel better?', 'No, do not stop taking Lioflox 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(19197, 'Lioflox 200mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox 200mg Tablet', 'Can the use of Lioflox 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lioflox 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lioflox 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(19198, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'What is Lioflox OZ 200mg/500mg Tablet?', 'Lioflox OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(19199, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'Is it safe to use Lioflox OZ 200mg/500mg Tablet?', 'Lioflox OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(19200, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lioflox OZ 200mg/500mg Tablet?', 'The use of Lioflox OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(19201, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lioflox OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(19202, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lioflox OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(19203, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'Can I stop taking Lioflox OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lioflox OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(19204, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lioflox OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(19205, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lioflox OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lioflox OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(19206, 'Lioflox OZ 200mg/500mg Tablet', 'Biolive Pharmaceuticals', 'Lioflox OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lioflox OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19207, 'Liokast 2.5 Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast 2.5 Syrup', 'My child is restless and unable to sleep properly at night. Can I give Liokast 2.5 Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(19208, 'Liokast 2.5 Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast 2.5 Syrup', 'Can other medicines be given at the same time as Liokast 2.5 Syrup?', 'Liokast 2.5 Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Liokast 2.5 Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(19209, 'Liokast 2.5 Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast 2.5 Syrup', 'How much Liokast 2.5 Syrup should I give to my child?', 'Liokast 2.5 Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(19210, 'Liokast 2.5 Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast 2.5 Syrup', 'What if I give too much of Liokast 2.5 Syrup by mistake?', 'Although Liokast 2.5 Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(19211, 'Liokast 2.5 Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast 2.5 Syrup', 'How should Liokast 2.5 Syrup be stored?', 'Store Liokast 2.5 Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(19212, 'Liokast 2.5 Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast 2.5 Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(19213, 'Liokast 5mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast 5mg Tablet', 'Is Liokast 5mg Tablet a steroid? What is it used for?', 'No, Liokast 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(19214, 'Liokast 5mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast 5mg Tablet', 'Does Liokast 5mg Tablet make you tired and drowsy?', 'Yes, Liokast 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(19215, 'Liokast 5mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast 5mg Tablet', 'How long does it take for Liokast 5mg Tablet to work?', 'Liokast 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(19216, 'Liokast 5mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast 5mg Tablet', 'Can I take Liokast 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liokast 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(19217, 'Liokast 5mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast 5mg Tablet', 'Is it safe to take Liokast 5mg Tablet for a long time?', 'Liokast 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liokast 5mg Tablet for only as long as you need it.'),
(19218, 'Liokast 5mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast 5mg Tablet', 'For how long should I continue Liokast 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liokast 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liokast 5mg Tablet'),
(19219, 'Liokast-M 5mg/10mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M 5mg/10mg Tablet', 'What is Liokast-M 5mg/10mg Tablet?', 'Liokast-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(19220, 'Liokast-M 5mg/10mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M 5mg/10mg Tablet', 'Can the use of Liokast-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liokast-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(19221, 'Liokast-M 5mg/10mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M 5mg/10mg Tablet', 'Can Liokast-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Liokast-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(19222, 'Liokast-M 5mg/10mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M 5mg/10mg Tablet', 'Can the use of Liokast-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Liokast-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(19223, 'Liokast-M 5mg/10mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M 5mg/10mg Tablet', 'Can I drink alcohol while taking Liokast-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Liokast-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liokast-M 5mg/10mg Tablet.'),
(19224, 'Liokast-M 5mg/10mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M 5mg/10mg Tablet', 'Will Liokast-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liokast-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(19225, 'Liokast-M 5mg/10mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Liokast-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(19226, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(19227, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Liokast-M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(19228, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'How should Liokast-M Kid 2.5mg/4mg Tablet be stored?', 'Liokast-M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(19229, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'Can Liokast-M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Liokast-M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(19230, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Liokast-M Kid 2.5mg/4mg Tablet?', 'No, don’t start Liokast-M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Liokast-M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(19231, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Liokast-M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(19232, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Liokast-M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Liokast-M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(19233, 'Liokast-M Kid 2.5mg/4mg Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Kid 2.5mg/4mg Tablet', 'Can I use Liokast-M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Liokast-M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(19234, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(19235, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'Can I decrease the dose of Liokast-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(19236, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'How should Liokast-M Syrup be stored?', 'Liokast-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(19237, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'Can Liokast-M Syrup make my child sleepy?', 'Liokast-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(19238, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Liokast-M Syrup?', 'No, don’t start Liokast-M Syrup without speaking to your child’s doctor. Moreover, Liokast-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(19239, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Liokast-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(19240, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Liokast-M Syrup to my child?', 'Some studies show that Liokast-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(19241, 'Liokast-M Syrup', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Syrup', 'Can I use Liokast-M Syrup for treating acute asthma attacks in my child?', 'Liokast-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(19242, 'Liokast-M Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Tablet', 'What is Liokast-M Tablet?', 'Liokast-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(19243, 'Liokast-M Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Tablet', 'Can the use of Liokast-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liokast-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(19244, 'Liokast-M Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Tablet', 'Can Liokast-M Tablet be stopped when allergy symptoms are relieved?', 'No, Liokast-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(19245, 'Liokast-M Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Tablet', 'Can the use of Liokast-M Tablet cause dry mouth?', 'Yes, the use of Liokast-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(19246, 'Liokast-M Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Tablet', 'Can I drink alcohol while taking Liokast-M Tablet?', 'No, do not take alcohol while taking Liokast-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liokast-M Tablet.'),
(19247, 'Liokast-M Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Tablet', 'Will Liokast-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liokast-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(19248, 'Liokast-M Tablet', 'Welcott Lifesciences Pvt Ltd', 'Liokast-M Tablet', 'What are the instructions for storage and disposal of Liokast-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(19249, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. How long does it take for Liolac Oral Solution to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Liolac Oral Solution.'),
(19250, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. What is Liolac Oral Solution used for?', 'Liolac Oral Solution is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(19251, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. Is Liolac Oral Solution a laxative?', 'Yes, Liolac Oral Solution is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(19252, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. What are the side effects of taking Liolac Oral Solution?', 'Liolac Oral Solution very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(19253, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. Is it okay to take Liolac Oral Solution every day?', 'You should take Liolac Oral Solution for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(19254, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. Who should not be given Liolac Oral Solution?', 'Liolac Oral Solution should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(19255, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. Can I take other laxatives along with Liolac Oral Solution?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Liolac Oral Solution. The risk of side effects is more with two laxatives.'),
(19256, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. What if I take more than the recommended dose of Liolac Oral Solution?', 'Taking more than the recommended dose of Liolac Oral Solution may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(19257, 'Liolac Oral Solution', 'Latika Biotech Pvt. Ltd.', 'Liolac Oral Solution', 'Q. How should Liolac Oral Solution be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(19258, 'Liolid Infusion', 'Accilex Nutricorp', 'Liolid Infusion', 'Can the use of Liolid Infusion cause diarrhea?', 'Yes, the use of Liolid Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19259, 'Liolid Infusion', 'Accilex Nutricorp', 'Liolid Infusion', 'What foods should I avoid while taking Liolid Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Liolid Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(19260, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'Can I take Liom 20mg Tablet with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Liom 20mg Tablet decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(19261, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'What should I know before taking Liom 20mg Tablet?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(19262, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'Can Liom 20mg Tablet cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(19263, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'For how long can Liom 20mg Tablet be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(19264, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'Can Liom 20mg Tablet cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(19265, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'What are the long term side effects of Liom 20mg Tablet?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(19266, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'Does Liom 20mg Tablet cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(19267, 'Liom 20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom 20mg Tablet', 'Can Liom 20mg Tablet be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(19268, 'Liom D 10mg/20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom D 10mg/20mg Tablet', 'Is it safe to use Liom D 10mg/20mg Tablet?', 'Yes, Liom D 10mg/20mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(19269, 'Liom D 10mg/20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom D 10mg/20mg Tablet', 'What are the contraindications of Liom D 10mg/20mg Tablet?', 'The use of Liom D 10mg/20mg Tablet is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(19270, 'Liom D 10mg/20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom D 10mg/20mg Tablet', 'What is the best time to take Liom D 10mg/20mg Tablet?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(19271, 'Liom D 10mg/20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom D 10mg/20mg Tablet', 'Can the use of Liom D 10mg/20mg Tablet cause abnormal heartbeat?', 'Yes, the use of Liom D 10mg/20mg Tablet can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(19272, 'Liom D 10mg/20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom D 10mg/20mg Tablet', 'Does the use of Liom D 10mg/20mg Tablet lead to dry mouth?', 'Yes, the use of Liom D 10mg/20mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(19273, 'Liom D 10mg/20mg Tablet', 'Yodley Life Sciences Private Limited', 'Liom D 10mg/20mg Tablet', 'What is the recommended storage condition for Liom D 10mg/20mg Tablet?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19274, 'Lion 500mg Tablet', 'Bio Sars Pharma Pvt Ltd', 'Lion 500mg Tablet', 'Is Lion 500mg Tablet safe?', 'Lion 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(19275, 'Lion 500mg Tablet', 'Bio Sars Pharma Pvt Ltd', 'Lion 500mg Tablet', 'What if I forget to take a dose of Lion 500mg Tablet?', 'If you forget a dose of Lion 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(19276, 'Lion 500mg Tablet', 'Bio Sars Pharma Pvt Ltd', 'Lion 500mg Tablet', 'Can the use of Lion 500mg Tablet cause diarrhea?', 'Yes, the use of Lion 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19277, 'Lion 500mg Tablet', 'Bio Sars Pharma Pvt Ltd', 'Lion 500mg Tablet', 'Can I stop taking Lion 500mg Tablet when I feel better?', 'No, do not stop taking Lion 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lion 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lion 500mg Tablet in the dose and duration advised by the doctor.'),
(19278, 'Lion 500mg Tablet', 'Bio Sars Pharma Pvt Ltd', 'Lion 500mg Tablet', 'Can the use of Lion 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lion 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lion 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(19279, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'What is Lionac P 100mg/325mg Tablet?', 'Lionac P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(19280, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Is it safe to use Lionac P 100mg/325mg Tablet?', 'Lionac P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(19281, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Can I stop taking Lionac P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lionac P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(19282, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Can the use of Lionac P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lionac P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(19283, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Can the use of Lionac P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lionac P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(19284, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lionac P 100mg/325mg Tablet?', 'The use of Lionac P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(19285, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Can Lionac P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lionac P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lionac P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(19286, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Is Lionac P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lionac P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(19287, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Can the use of Lionac P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lionac P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(19288, 'Lionac P 100mg/325mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Lionac P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lionac P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(19289, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'What is Lionac SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(19290, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Is it safe to take Lionac SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(19291, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Can I stop taking Lionac SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(19292, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Can Lionac SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(19293, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Can Lionac SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(19294, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Lionac SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(19295, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Can I take Lionac SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(19296, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Can the use of Lionac SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(19297, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Lionac SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(19298, 'Lionac SP 100mg/325mg/15mg Tablet', 'Liosun Pharmaceuticals India Pvt Ltd', 'Lionac SP 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Lionac SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19299, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'Can I feel dizzy after taking Lionel 20mg Tablet?', 'Yes, the use of Lionel 20mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(19300, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'How long does it take for Lionel 20mg Tablet to work?', 'You may notice a decrease in your blood pressure effectively within 1 weeks of starting Lionel 20mg Tablet. However, it may take about 2 weeks to see the full benefits of this medicine.'),
(19301, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'What are some lifestyle changes to make while using Lionel 20mg Tablet?', 'Making lifestyle changes while taking Lionel 20mg Tablet can boost your health. Avoid smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of a heart attack.'),
(19302, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'Does Lionel 20mg Tablet have a diuretic?', 'Lionel 20mg Tablet does not have a diuretic. Lionel 20mg Tablet is a medicine used to lower high blood pressure. It belongs to a group of medicines called angiotensin receptor blocker (ARB). These medicines lower blood pressure by relaxing the blood vessels. When prescribed by a doctor, Lionel 20mg Tablet can also be combined with a diuretic for providing additional benefit in the reduction of blood pressure.'),
(19303, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'At what time of the day should you take Lionel 20mg Tablet?', 'Your doctor may suggest to take your first dose before bedtime, considering that this medicine can make you feel dizzy. After the very first dose you can take Lionel 20mg Tablet at any time of the day. It is important to take this medicine at the same time every day.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19304, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'For how long do I need to take Lionel 20mg Tablet? Is it safe to take long term?', 'You may have to take Lionel 20mg Tablet life long. Lionel 20mg Tablet controls high blood pressure but does not cure it. Do not stop taking it even if your blood pressure is well controlled. Lionel 20mg Tablet is generally considered safe to be taken for long term. In some cases, long-term use may adversely affect the kidneys and the kidneys may not function as they should. Therefore, to keep a track of how well your kidneys are working, your doctor may prescribe regular blood tests to check urea, creatinine and potassium levels.'),
(19305, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'Can Lionel 20mg Tablet cause weight gain?', 'No, Lionel 20mg Tablet does not cause weight gain. However, in very rare cases, chronic diarrhea with substantial weight loss may occur. If a patient develops diarrhea while taking Lionel 20mg Tablet and no other cause of diarrhea can be deduced, then the doctor may advise the patient to discontinue it immediately and recommend another medicine.'),
(19306, 'Lionel 20mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 20mg Tablet', 'Can I take Lionel 20mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lionel 20mg Tablet 24 hours before surgery. This is because Lionel 20mg Tablet can further reduce your blood pressure when used with anesthetics. So, tell your doctor that you are taking Lionel 20mg Tablet if you will be given general anesthetics (medicines that put you to sleep) or are scheduled to have any surgery.'),
(19307, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'Can I feel dizzy after taking Lionel 40mg Tablet?', 'Yes, the use of Lionel 40mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(19308, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'How long does it take for Lionel 40mg Tablet to work?', 'You may notice a decrease in your blood pressure effectively within 1 weeks of starting Lionel 40mg Tablet. However, it may take about 2 weeks to see the full benefits of this medicine.'),
(19309, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'What are some lifestyle changes to make while using Lionel 40mg Tablet?', 'Making lifestyle changes while taking Lionel 40mg Tablet can boost your health. Avoid smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of a heart attack.'),
(19310, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'Does Lionel 40mg Tablet have a diuretic?', 'Lionel 40mg Tablet does not have a diuretic. Lionel 40mg Tablet is a medicine used to lower high blood pressure. It belongs to a group of medicines called angiotensin receptor blocker (ARB). These medicines lower blood pressure by relaxing the blood vessels. When prescribed by a doctor, Lionel 40mg Tablet can also be combined with a diuretic for providing additional benefit in the reduction of blood pressure.'),
(19311, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'At what time of the day should you take Lionel 40mg Tablet?', 'Your doctor may suggest to take your first dose before bedtime, considering that this medicine can make you feel dizzy. After the very first dose you can take Lionel 40mg Tablet at any time of the day. It is important to take this medicine at the same time every day.'),
(19312, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'For how long do I need to take Lionel 40mg Tablet? Is it safe to take long term?', 'You may have to take Lionel 40mg Tablet life long. Lionel 40mg Tablet controls high blood pressure but does not cure it. Do not stop taking it even if your blood pressure is well controlled. Lionel 40mg Tablet is generally considered safe to be taken for long term. In some cases, long-term use may adversely affect the kidneys and the kidneys may not function as they should. Therefore, to keep a track of how well your kidneys are working, your doctor may prescribe regular blood tests to check urea, creatinine and potassium levels.'),
(19313, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'Can Lionel 40mg Tablet cause weight gain?', 'No, Lionel 40mg Tablet does not cause weight gain. However, in very rare cases, chronic diarrhea with substantial weight loss may occur. If a patient develops diarrhea while taking Lionel 40mg Tablet and no other cause of diarrhea can be deduced, then the doctor may advise the patient to discontinue it immediately and recommend another medicine.'),
(19314, 'Lionel 40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel 40mg Tablet', 'Can I take Lionel 40mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lionel 40mg Tablet 24 hours before surgery. This is because Lionel 40mg Tablet can further reduce your blood pressure when used with anesthetics. So, tell your doctor that you are taking Lionel 40mg Tablet if you will be given general anesthetics (medicines that put you to sleep) or are scheduled to have any surgery.'),
(19315, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'How long does it take for Lionel H 12.5mg/40mg Tablet to work?', 'You may notice a decrease in your blood pressure effectively within 2 weeks of starting Lionel H 12.5mg/40mg Tablet. However, it may take about 8 weeks to see the full benefits of this medicine.'),
(19316, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'At what time of the day should you take Lionel H 12.5mg/40mg Tablet?', 'Your doctor may suggest to take your first dose before bedtime, considering that this medicine can make you feel dizzy. After the very first dose you can take Lionel H 12.5mg/40mg Tablet at any time of the day. It is important to take this medicine at the same time every day.'),
(19317, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'Can I feel dizzy after taking Lionel H 12.5mg/40mg Tablet?', 'Yes, the use of Lionel H 12.5mg/40mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(19318, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'What are the other lifestyle changes I should make while using Lionel H 12.5mg/40mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lionel H 12.5mg/40mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lionel H 12.5mg/40mg Tablet and to keep yourself healthy.'),
(19319, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'Can Lionel H 12.5mg/40mg Tablet cause weight gain?', 'No, Lionel H 12.5mg/40mg Tablet does not cause weight gain. However, in very rare cases, chronic diarrhea with substantial weight loss may occur. If a patient develops diarrhea while taking Lionel H 12.5mg/40mg Tablet and no other cause of diarrhea can be deduced, then the doctor may advise the patient to discontinue it immediately and recommend another medicine.'),
(19320, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'What are the serious side effects of Lionel H 12.5mg/40mg Tablet?', 'The serious side effects of Lionel H 12.5mg/40mg Tablet include skin rash or itchiness, painful joints, fast heart beat, shortness of breath or tightness in the chest. Serious side effects may also include aching, tender or weak muscles not caused by exercise and swelling of the hands, feet or ankles. Lionel H 12.5mg/40mg Tablet may also cause symptoms that may indicate high potassium levels in the blood, such as nausea, diarrhea, muscle weakness and change in heart rhythm. If you experience any of these symptoms, call your doctor immediately.'),
(19321, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'Can Lionel H 12.5mg/40mg Tablet affect my fertility or sex life?', 'Some blood pressure medicines (including water pills like hydrochlorothiazide) may affect a man’s ability to gain or maintain an erection (erectile dysfunction). However, it is thought that other blood pressure medicines can actually improve erectile dysfunction. If you are worried or notice some changes, talk to your doctor. There is no firm evidence which suggests any effect on the fertility of either men or women with the use of Lionel H 12.5mg/40mg Tablet.'),
(19322, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'For how long do I need to take Lionel H 12.5mg/40mg Tablet? Is it safe to take long term?', 'You may have to take Lionel H 12.5mg/40mg Tablet life long. Lionel H 12.5mg/40mg Tablet controls high blood pressure but does not cure it. Do not stop taking it even if your blood pressure is well controlled. Lionel H 12.5mg/40mg Tablet is generally considered safe to be taken for long term. In some cases, long-term use may adversely affect the kidneys and the kidneys may not function as they should. Therefore, your doctor may prescribe regular blood tests to check urea, creatinine and potassium levels to keep a track of how well your kidneys are working.'),
(19323, 'Lionel H 12.5mg/40mg Tablet', 'Dynamed Pharmaceuticals Pvt Ltd', 'Lionel H 12.5mg/40mg Tablet', 'Can I take Lionel H 12.5mg/40mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lionel H 12.5mg/40mg Tablet 24 hours before surgery. This is because Lionel H 12.5mg/40mg Tablet can further reduce your blood pressure when used with anesthetics. So, inform your doctor that you are taking Lionel H 12.5mg/40mg Tablet if you will be given general anesthetics (medicines that put you to sleep) or are scheduled to have any surgery.'),
(19324, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'What is Lionex P 100mg/325mg Tablet?', 'Lionex P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(19325, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Is it safe to use Lionex P 100mg/325mg Tablet?', 'Lionex P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(19326, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Can I stop taking Lionex P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lionex P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(19327, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Can the use of Lionex P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lionex P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(19328, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Can the use of Lionex P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lionex P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(19329, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lionex P 100mg/325mg Tablet?', 'The use of Lionex P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(19330, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Can Lionex P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lionex P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lionex P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(19331, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Is Lionex P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lionex P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(19332, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Can the use of Lionex P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lionex P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(19333, 'Lionex P 100mg/325mg Tablet', 'Astranova Biotech', 'Lionex P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Lionex P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lionex P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(19334, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'What is Lionex PS 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(19335, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Is it safe to take Lionex PS 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(19336, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Can I stop taking Lionex PS 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(19337, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Can Lionex PS 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(19338, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Can Lionex PS 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(19339, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Lionex PS 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(19340, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Can I take Lionex PS 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(19341, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Can the use of Lionex PS 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(19342, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Lionex PS 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(19343, 'Lionex PS 100mg/325mg/15mg Tablet', 'Astranova Biotech', 'Lionex PS 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Lionex PS 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19344, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'What is Lionex TH 100mg/4mg Tablet?', 'Lionex TH 100mg/4mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(19345, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'Is it safe to use Lionex TH 100mg/4mg Tablet?', 'Yes, Lionex TH 100mg/4mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(19346, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'Can the Lionex TH 100mg/4mg Tablet be stopped when my pain is relieved?', 'Lionex TH 100mg/4mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lionex TH 100mg/4mg Tablet should be continued if your doctor has advised you to do so.'),
(19347, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'Can the use of Lionex TH 100mg/4mg Tablet cause dizziness?', 'Yes, the use of Lionex TH 100mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(19348, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'Are there any specific contraindications associated with the use of Lionex TH 100mg/4mg Tablet?', 'The use of Lionex TH 100mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(19349, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'Can Lionex TH 100mg/4mg Tablet be taken with Vitamin B-complex?', 'Yes, Lionex TH 100mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Lionex TH 100mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(19350, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'Can the use of Lionex TH 100mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lionex TH 100mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(19351, 'Lionex TH 100mg/4mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/4mg Tablet', 'Will Lionex TH 100mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(19352, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'What is Lionex TH 100mg/8mg Tablet?', 'Lionex TH 100mg/8mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(19353, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'Is it safe to use Lionex TH 100mg/8mg Tablet?', 'Yes, Lionex TH 100mg/8mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(19354, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'Can the Lionex TH 100mg/8mg Tablet be stopped when my pain is relieved?', 'Lionex TH 100mg/8mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lionex TH 100mg/8mg Tablet should be continued if your doctor has advised you to do so.'),
(19355, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'Can the use of Lionex TH 100mg/8mg Tablet cause dizziness?', 'Yes, the use of Lionex TH 100mg/8mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(19356, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'Are there any specific contraindications associated with the use of Lionex TH 100mg/8mg Tablet?', 'The use of Lionex TH 100mg/8mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(19357, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'Can Lionex TH 100mg/8mg Tablet be taken with Vitamin B-complex?', 'Yes, Lionex TH 100mg/8mg Tablet can be taken with Vitamin B-complex preparations. While Lionex TH 100mg/8mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(19358, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'Can the use of Lionex TH 100mg/8mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lionex TH 100mg/8mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(19359, 'Lionex TH 100mg/8mg Tablet', 'Astranova Biotech', 'Lionex TH 100mg/8mg Tablet', 'Will Lionex TH 100mg/8mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(19360, 'Liorel 10mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 10mg Tablet', 'Can Liorel 10mg Tablet make you sleepy?', 'Yes, Liorel 10mg Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liorel 10mg Tablet affects you.'),
(19361, 'Liorel 10mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 10mg Tablet', 'Does Liorel 10mg Tablet help anxiety?', 'Though Liorel 10mg Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19362, 'Liorel 10mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 10mg Tablet', 'Can I take Liorel 10mg Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liorel 10mg Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19363, 'Liorel 10mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 10mg Tablet', 'Does Liorel 10mg Tablet have any effect on kidneys?', 'Liorel 10mg Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19364, 'Liorel 10mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 10mg Tablet', 'How should Liorel 10mg Tablet be taken?', 'Take Liorel 10mg Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liorel 10mg Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19365, 'Liorel 5mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 5mg Tablet', 'Can Liorel 5mg Tablet make you sleepy?', 'Yes, Liorel 5mg Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liorel 5mg Tablet affects you.'),
(19366, 'Liorel 5mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 5mg Tablet', 'Does Liorel 5mg Tablet help anxiety?', 'Though Liorel 5mg Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19367, 'Liorel 5mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 5mg Tablet', 'Can I take Liorel 5mg Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liorel 5mg Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19368, 'Liorel 5mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 5mg Tablet', 'Does Liorel 5mg Tablet have any effect on kidneys?', 'Liorel 5mg Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19369, 'Liorel 5mg Tablet', 'Aci Pharma Pvt Ltd', 'Liorel 5mg Tablet', 'How should Liorel 5mg Tablet be taken?', 'Take Liorel 5mg Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liorel 5mg Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19370, 'Lioresal 25 Tablet', 'Novartis India Ltd', 'Lioresal 25 Tablet', 'Can Lioresal 25 Tablet make you sleepy?', 'Yes, Lioresal 25 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Lioresal 25 Tablet affects you.'),
(19371, 'Lioresal 25 Tablet', 'Novartis India Ltd', 'Lioresal 25 Tablet', 'Does Lioresal 25 Tablet help anxiety?', 'Though Lioresal 25 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19372, 'Lioresal 25 Tablet', 'Novartis India Ltd', 'Lioresal 25 Tablet', 'Can I take Lioresal 25 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Lioresal 25 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19373, 'Lioresal 25 Tablet', 'Novartis India Ltd', 'Lioresal 25 Tablet', 'Does Lioresal 25 Tablet have any effect on kidneys?', 'Lioresal 25 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19374, 'Lioresal 25 Tablet', 'Novartis India Ltd', 'Lioresal 25 Tablet', 'How should Lioresal 25 Tablet be taken?', 'Take Lioresal 25 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Lioresal 25 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19375, 'Lioresal 50mg Tablet', 'Novartis India Ltd', 'Lioresal 50mg Tablet', 'Can Lioresal 50mg Tablet make you sleepy?', 'Yes, Lioresal 50mg Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Lioresal 50mg Tablet affects you.'),
(19376, 'Lioresal 50mg Tablet', 'Novartis India Ltd', 'Lioresal 50mg Tablet', 'Does Lioresal 50mg Tablet help anxiety?', 'Though Lioresal 50mg Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19377, 'Lioresal 50mg Tablet', 'Novartis India Ltd', 'Lioresal 50mg Tablet', 'Can I take Lioresal 50mg Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Lioresal 50mg Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19378, 'Lioresal 50mg Tablet', 'Novartis India Ltd', 'Lioresal 50mg Tablet', 'Does Lioresal 50mg Tablet have any effect on kidneys?', 'Lioresal 50mg Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19379, 'Lioresal 50mg Tablet', 'Novartis India Ltd', 'Lioresal 50mg Tablet', 'How should Lioresal 50mg Tablet be taken?', 'Take Lioresal 50mg Tablet exactly as directed by your doctor. If a person experiences nausea while taking Lioresal 50mg Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19380, 'Lioresal Liquid Raspberry', 'Novartis India Ltd', 'Lioresal Liquid Raspberry', 'Can Lioresal Liquid Raspberry make you sleepy?', 'Yes, Lioresal Liquid Raspberry can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Lioresal Liquid Raspberry affects you.'),
(19381, 'Lioresal Liquid Raspberry', 'Novartis India Ltd', 'Lioresal Liquid Raspberry', 'Does Lioresal Liquid Raspberry help anxiety?', 'Though Lioresal Liquid Raspberry is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19382, 'Lioresal Liquid Raspberry', 'Novartis India Ltd', 'Lioresal Liquid Raspberry', 'Can I take Lioresal Liquid Raspberry if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Lioresal Liquid Raspberry. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19383, 'Lioresal Liquid Raspberry', 'Novartis India Ltd', 'Lioresal Liquid Raspberry', 'Does Lioresal Liquid Raspberry have any effect on kidneys?', 'Lioresal Liquid Raspberry may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19384, 'Lioresal Liquid Raspberry', 'Novartis India Ltd', 'Lioresal Liquid Raspberry', 'How should Lioresal Liquid Raspberry be taken?', 'Take Lioresal Liquid Raspberry exactly as directed by your doctor. If a person experiences nausea while taking Lioresal Liquid Raspberry then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19385, 'Liosag 10 Tablet', 'SAG Health Science Pvt Ltd', 'Liosag 10 Tablet', 'Can Liosag 10 Tablet make you sleepy?', 'Yes, Liosag 10 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liosag 10 Tablet affects you.'),
(19386, 'Liosag 10 Tablet', 'SAG Health Science Pvt Ltd', 'Liosag 10 Tablet', 'Does Liosag 10 Tablet help anxiety?', 'Though Liosag 10 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19387, 'Liosag 10 Tablet', 'SAG Health Science Pvt Ltd', 'Liosag 10 Tablet', 'Can I take Liosag 10 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liosag 10 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19388, 'Liosag 10 Tablet', 'SAG Health Science Pvt Ltd', 'Liosag 10 Tablet', 'Does Liosag 10 Tablet have any effect on kidneys?', 'Liosag 10 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19389, 'Liosag 10 Tablet', 'SAG Health Science Pvt Ltd', 'Liosag 10 Tablet', 'How should Liosag 10 Tablet be taken?', 'Take Liosag 10 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liosag 10 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19390, 'Liosal 10mg Tablet', 'Deltas Pharma', 'Liosal 10mg Tablet', 'Can Liosal 10mg Tablet make you sleepy?', 'Yes, Liosal 10mg Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Liosal 10mg Tablet affects you.'),
(19391, 'Liosal 10mg Tablet', 'Deltas Pharma', 'Liosal 10mg Tablet', 'Does Liosal 10mg Tablet help anxiety?', 'Though Liosal 10mg Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(19392, 'Liosal 10mg Tablet', 'Deltas Pharma', 'Liosal 10mg Tablet', 'Can I take Liosal 10mg Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Liosal 10mg Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(19393, 'Liosal 10mg Tablet', 'Deltas Pharma', 'Liosal 10mg Tablet', 'Does Liosal 10mg Tablet have any effect on kidneys?', 'Liosal 10mg Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(19394, 'Liosal 10mg Tablet', 'Deltas Pharma', 'Liosal 10mg Tablet', 'How should Liosal 10mg Tablet be taken?', 'Take Liosal 10mg Tablet exactly as directed by your doctor. If a person experiences nausea while taking Liosal 10mg Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(19395, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'Should Liotel 40mg Tablet be taken in the morning or at night?', 'Liotel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(19396, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'How long does it take for Liotel 40mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(19397, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'My blood pressure is now controlled. Can I stop taking Liotel 40mg Tablet now?', 'No, do not stop taking Liotel 40mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Liotel 40mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(19398, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'If I have some kidney problem, can I take Liotel 40mg Tablet? Can it further deteriorate my kidney function?', 'You can take Liotel 40mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Liotel 40mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(19399, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'I am overweight and the doctor has prescribed me Liotel 40mg Tablet for blood pressure control. I am bothered that Liotel 40mg Tablet can increase my weight. Is it true?', 'No, do not worry since Liotel 40mg Tablet is not known to cause weight gain. In fact in animal studies Liotel 40mg Tablet has been found to decrease fat tissue.'),
(19400, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'Does Liotel 40mg Tablet affect blood glucose levels in diabetics?', 'Liotel 40mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(19401, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'Can the use of Liotel 40mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Liotel 40mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(19402, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'Does Liotel 40mg Tablet work by causing excessive urination?', 'No, Liotel 40mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Liotel 40mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(19403, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Liotel 40mg Tablet together?', 'If you are taking ibuprofen and Liotel 40mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Liotel 40mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Liotel 40mg Tablet for heart failure. Ibuprofen may interfere with the working of Liotel 40mg Tablet and decrease its efficiency at lowering blood pressure.'),
(19404, 'Liotel 40mg Tablet', 'Alio Lifesciences', 'Liotel 40mg Tablet', 'Should Liotel 40mg Tablet be taken in the morning or at night?', 'Liotel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(19405, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'What should I avoid while taking Liotel AM 40mg/5mg Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(19406, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'What happens if I take too much of Liotel AM 40mg/5mg Tablet?', 'If you accidentally take too much of Liotel AM 40mg/5mg Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any of such symptoms contact your doctor immediately and seek medical help.'),
(19407, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'Can I come off Liotel AM 40mg/5mg Tablet when my blood pressure is under control or normal?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Liotel AM 40mg/5mg Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it. You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or stroke.'),
(19408, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'What happens if I forget to take Liotel AM 40mg/5mg Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure then you can consult your doctor for other ways to help you remember.'),
(19409, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'What will happen if I stop taking Liotel AM 40mg/5mg Tablet?', 'You should not stop taking Liotel AM 40mg/5mg Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea, etc., talk to your doctor.'),
(19410, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'Is it safe to take Liotel AM 40mg/5mg Tablet for a long time?', 'Liotel AM 40mg/5mg Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19411, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'How long will I be taking Liotel AM 40mg/5mg Tablet for?', 'You may have to take Liotel AM 40mg/5mg Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(19412, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'What if Liotel AM 40mg/5mg Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(19413, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'Can Liotel AM 40mg/5mg Tablet affect my fertility or sex life?', 'Liotel AM 40mg/5mg Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep track of your blood pressure.'),
(19414, 'Liotel AM 40mg/5mg Tablet', 'Alio Lifesciences', 'Liotel AM 40mg/5mg Tablet', 'What other lifestyle changes should I make while taking Liotel AM 40mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Liotel AM 40mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Liotel AM 40mg/5mg Tablet and to keep yourself healthy.'),
(19415, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'What is Liotel CH 40mg/12.5mg Tablet?', 'Liotel CH 40mg/12.5mg Tablet is a combination of two medicines that helps keep the blood pressure under control. The medicine works by reducing the risk of strokes and myocardial infarction (heart attack), thereby treating hypertension (high blood pressure).'),
(19416, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'Can the use of Liotel CH 40mg/12.5mg Tablet cause dizziness?', 'Yes, the use of Liotel CH 40mg/12.5mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some people. If you feel dizzy or lightheaded, it would be best to rest for some time and resume once you feel better.'),
(19417, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'Are there any specific contraindications associated with the use of Liotel CH 40mg/12.5mg Tablet?', 'The use of Liotel CH 40mg/12.5mg Tablet is considered to be harmful for people with known allergy to any of the components of this medicine. It should preferably be avoided in people with severe kidney or liver impairment and in people with anuria (reduction or absence of urine). Its use should also be avoided in women who are in the second and third trimesters of their pregnancy.'),
(19418, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'What is the recommended storage condition for Liotel CH 40mg/12.5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose the unused or expired medicine. Make sure it is not consumed by pets, children and other people.'),
(19419, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'Can I come off Liotel CH 40mg/12.5mg Tablet when my blood pressure is controlled?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Liotel CH 40mg/12.5mg Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it.  You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or a stroke.'),
(19420, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'What will happen if I stop taking Liotel CH 40mg/12.5mg Tablet?', 'You should not stop taking Liotel CH 40mg/12.5mg Tablet without consulting your doctor. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience any persistent side effects, talk to your doctor.'),
(19421, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'Is it safe to take Liotel CH 40mg/12.5mg Tablet for a long time?', 'Liotel CH 40mg/12.5mg Tablet is generally safe to take for a long time. Some blood pressure medicines work best when they are taken for a long time. Consult your doctor if not sure.'),
(19422, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'How long will I be taking Liotel CH 40mg/12.5mg Tablet for?', 'Usually, treatment with Liotel CH 40mg/12.5mg Tablet is long-term and may even be for the rest of your life. Talk to your doctor in case you have any concerns regarding Liotel CH 40mg/12.5mg Tablet, but do not stop taking it without consulting the doctor.'),
(19423, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'What if Liotel CH 40mg/12.5mg Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you do not feel ill if there is any fluctuation in blood pressure. Therefore, these tablets may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(19424, 'Liotel CH 40mg/12.5mg Tablet', 'Alio Lifesciences', 'Liotel CH 40mg/12.5mg Tablet', 'Can Liotel CH 40mg/12.5mg Tablet affect my fertility or sex life?', 'Some blood pressure medicines (including water pills like hydrochlorothiazide) may affect a man’s ability to gain or maintain an erection (erectile dysfunction). However, it is thought that other blood pressure medicines can actually improve erectile dysfunction. If you are worried or notice some changes, talk to your doctor. There is no firm evidence which suggests any effect on the fertility of either men or women with the use of Liotel CH 40mg/12.5mg Tablet.'),
(19425, 'Liotel MT 40mg/25mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/25mg Tablet', 'Can I feel dizzy after taking Liotel MT 40mg/25mg Tablet?', 'Yes, the use of Liotel MT 40mg/25mg Tablet Succinate can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(19426, 'Liotel MT 40mg/25mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/25mg Tablet', 'What lifestyle changes should be made while using Liotel MT 40mg/25mg Tablet?', 'Making lifestyle changes can boost your health while taking Liotel MT 40mg/25mg Tablet Succinate. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce your risk of heart attack.'),
(19427, 'Liotel MT 40mg/25mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/25mg Tablet', 'Can I stop taking Liotel MT 40mg/25mg Tablet when I feel better?', 'No, keep using Liotel MT 40mg/25mg Tablet as advised by your doctor, even if you feel well. Stopping Liotel MT 40mg/25mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(19428, 'Liotel MT 40mg/25mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/25mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19429, 'Liotel MT 40mg/50mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/50mg Tablet', 'Can I feel dizzy after taking Liotel MT 40mg/50mg Tablet?', 'Yes, the use of Liotel MT 40mg/50mg Tablet Succinate can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(19430, 'Liotel MT 40mg/50mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/50mg Tablet', 'What lifestyle changes should be made while using Liotel MT 40mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Liotel MT 40mg/50mg Tablet Succinate. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce your risk of heart attack.'),
(19431, 'Liotel MT 40mg/50mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/50mg Tablet', 'Can I stop taking Liotel MT 40mg/50mg Tablet when I feel better?', 'No, keep using Liotel MT 40mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Liotel MT 40mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(19432, 'Liotel MT 40mg/50mg Tablet', 'Alio Lifesciences', 'Liotel MT 40mg/50mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19433, 'Lioton 500 Gel', 'A. Menarini India Pvt Ltd', 'Lioton 500 Gel', 'What conditions does Lioton 500 Gel treat?', 'Lioton 500 Gel is used for the prevention of a blood clot that causes inflammation or swelling of a vein. When applied to the affected area, Lioton 500 Gel penetrates the skin to help reduce inflammation and pain, and aid faster healing.'),
(19434, 'Lioton 500 Gel', 'A. Menarini India Pvt Ltd', 'Lioton 500 Gel', 'Can Lioton 500 Gel be stopped when my symptoms are relieved?', 'Lioton 500 Gel is usually used for a short term and can be discontinued when the symptoms are relieved. However, Lioton 500 Gel should be continued if the doctor has advised to do so.'),
(19435, 'Lioton 500 Gel', 'A. Menarini India Pvt Ltd', 'Lioton 500 Gel', 'What is the storage condition for the Lioton 500 Gel?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19436, 'Lioton 500 Gel', 'A. Menarini India Pvt Ltd', 'Lioton 500 Gel', 'What are the precautions I need to follow while using Lioton 500 Gel?', 'It is important to know that Lioton 500 Gel is for external use only. Do not apply close to the eyes, mouth, nose, or any cut, broken, or burned skin. In some patients, use of this medicine causes an increase in sensitivity to UV rays. It is recommended to avoid the exposure to direct sunlight as much as possible. If it is unavoidable to expose yourself to sunlight then wear as much protective clothing as possible and use sunscreen.'),
(19437, 'Lioton 500 Gel', 'A. Menarini India Pvt Ltd', 'Lioton 500 Gel', 'Is Lioton 500 Gel effective?', 'Lioton 500 Gel is effective if used in the dose and duration advised by your doctor. Do not stop using it even if you see improvement in your condition. If you stop using Lioton 500 Gel too early, the symptoms may return or worsen.'),
(19438, 'Lioxin 500mg Tablet', 'Astra Eureka Pharmaceuticals', 'Lioxin 500mg Tablet', 'Is Lioxin 500mg Tablet safe?', 'Lioxin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(19439, 'Lioxin 500mg Tablet', 'Astra Eureka Pharmaceuticals', 'Lioxin 500mg Tablet', 'What if I forget to take a dose of Lioxin 500mg Tablet?', 'If you forget a dose of Lioxin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(19440, 'Lioxin 500mg Tablet', 'Astra Eureka Pharmaceuticals', 'Lioxin 500mg Tablet', 'Can the use of Lioxin 500mg Tablet cause diarrhea?', 'Yes, the use of Lioxin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19441, 'Lioxin 500mg Tablet', 'Astra Eureka Pharmaceuticals', 'Lioxin 500mg Tablet', 'Can I stop taking Lioxin 500mg Tablet when I feel better?', 'No, do not stop taking Lioxin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lioxin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lioxin 500mg Tablet in the dose and duration advised by the doctor.'),
(19442, 'Lioxin 500mg Tablet', 'Astra Eureka Pharmaceuticals', 'Lioxin 500mg Tablet', 'Can the use of Lioxin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lioxin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lioxin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(19443, 'Liozin 5mg Tablet', 'Nosme Pharmaceuticals', 'Liozin 5mg Tablet', 'Is Liozin 5mg Tablet a steroid? What is it used for?', 'No, Liozin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(19444, 'Liozin 5mg Tablet', 'Nosme Pharmaceuticals', 'Liozin 5mg Tablet', 'Does Liozin 5mg Tablet make you tired and drowsy?', 'Yes, Liozin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(19445, 'Liozin 5mg Tablet', 'Nosme Pharmaceuticals', 'Liozin 5mg Tablet', 'How long does it take for Liozin 5mg Tablet to work?', 'Liozin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(19446, 'Liozin 5mg Tablet', 'Nosme Pharmaceuticals', 'Liozin 5mg Tablet', 'Can I take Liozin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liozin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(19447, 'Liozin 5mg Tablet', 'Nosme Pharmaceuticals', 'Liozin 5mg Tablet', 'Is it safe to take Liozin 5mg Tablet for a long time?', 'Liozin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liozin 5mg Tablet for only as long as you need it.'),
(19448, 'Liozin 5mg Tablet', 'Nosme Pharmaceuticals', 'Liozin 5mg Tablet', 'For how long should I continue Liozin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liozin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liozin 5mg Tablet'),
(19449, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'What is Lipa D 30mg/40mg Tablet?', 'Lipa D 30mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(19450, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'Is it safe to use Lipa D 30mg/40mg Tablet?', 'Lipa D 30mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(19451, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Lipa D 30mg/40mg Tablet?', 'The use of Lipa D 30mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(19452, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'Can the use of Lipa D 30mg/40mg Tablet cause dry mouth?', 'Yes, the use of Lipa D 30mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(19453, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'Can the use of Lipa D 30mg/40mg Tablet cause diarrhea?', 'Yes, the use of Lipa D 30mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(19454, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'What are the instructions for storage and disposal of Lipa D 30mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19455, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'What is Lipa D 30mg/40mg Tablet price?', 'You can get Lipa D 30mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(19456, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'While taking Lipa D 30mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(19457, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'Can I take alcohol while taking Lipa D 30mg/40mg Tablet?', 'No, alcohol intake is not advised with Lipa D 30mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(19458, 'Lipa D 30mg/40mg Tablet', 'Lincoln Pharmaceuticals Ltd', 'Lipa D 30mg/40mg Tablet', 'Can I stop taking Lipa D 30mg/40mg Tablet if I feel better?', 'If you have been taking Lipa D 30mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(19459, 'Lipadon 8mg Tablet MD', 'Nicolan', 'Lipadon 8mg Tablet MD', 'How quickly does Lipadon 8mg Tablet MD work?', 'Lipadon 8mg Tablet MD starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(19460, 'Lipadon 8mg Tablet MD', 'Nicolan', 'Lipadon 8mg Tablet MD', 'What are the side effects of Lipadon 8mg Tablet MD?', 'The most common side effects of Lipadon 8mg Tablet MD are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(19461, 'Lipadon 8mg Tablet MD', 'Nicolan', 'Lipadon 8mg Tablet MD', 'When should you take Lipadon 8mg Tablet MD?', 'Lipadon 8mg Tablet MD should be taken with a full glass of water, with or without food. It should be used exactly as per the dose and duration advised by the doctor. Usually, the first dose of Lipadon 8mg Tablet MD is taken before the start of your surgery, chemotherapy or radiation treatment.'),
(19462, 'Lipadon 8mg Tablet MD', 'Nicolan', 'Lipadon 8mg Tablet MD', 'Is Lipadon 8mg Tablet MD a steroid?', 'No, Lipadon 8mg Tablet MD is an antiemetic and not a steroid. Lipadon 8mg Tablet MD is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(19463, 'Lipadon 8mg Tablet MD', 'Nicolan', 'Lipadon 8mg Tablet MD', 'Does Lipadon 8mg Tablet MD work for seasickness?', 'No, Lipadon 8mg Tablet MD does not work for seasickness. This is because Lipadon 8mg Tablet MD has very little effect on the nausea associated with motion sickness.'),
(19464, 'Lipadon MD 4 Tablet', 'Nicolan', 'Lipadon MD 4 Tablet', 'How quickly does Lipadon MD 4 Tablet work?', 'Lipadon MD 4 Tablet starts working within half an hour to 2 hours. It dissolves rapidly into the bloodstream and starts showing its effect.'),
(19465, 'Lipadon MD 4 Tablet', 'Nicolan', 'Lipadon MD 4 Tablet', 'What are the side effects of Lipadon MD 4 Tablet?', 'The most common side effects of Lipadon MD 4 Tablet are constipation, diarrhea, fatigue and headache. However, these are usually not bothersome and resolve on their own after some time. Consult your doctor if these persist or worry you.'),
(19466, 'Lipadon MD 4 Tablet', 'Nicolan', 'Lipadon MD 4 Tablet', 'When should you take Lipadon MD 4 Tablet?', 'Lipadon MD 4 Tablet should be taken with a full glass of water, with or without food. It should be used exactly as per the dose and duration advised by the doctor. Usually, the first dose of Lipadon MD 4 Tablet is taken before the start of your surgery, chemotherapy or radiation treatment.'),
(19467, 'Lipadon MD 4 Tablet', 'Nicolan', 'Lipadon MD 4 Tablet', 'Is Lipadon MD 4 Tablet a steroid?', 'No, Lipadon MD 4 Tablet is an antiemetic and not a steroid. Lipadon MD 4 Tablet is a selective 5-HT3 receptor antagonist. It is prescribed for the prevention and treatment of nausea and vomiting which is commonly observed after surgery or due to cancer chemotherapy.'),
(19468, 'Lipadon MD 4 Tablet', 'Nicolan', 'Lipadon MD 4 Tablet', 'Does Lipadon MD 4 Tablet work for seasickness?', 'No, Lipadon MD 4 Tablet does not work for seasickness. This is because Lipadon MD 4 Tablet has very little effect on the nausea associated with motion sickness.'),
(19469, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'For how long should I take Lipage 10mg Tablet?', 'You may need to take Lipage 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipage 10mg Tablet. Stopping Lipage 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19470, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'Does Lipage 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipage 10mg Tablet causing weight gain. If you are taking Lipage 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19471, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'Does Lipage 10mg Tablet make you tired?', 'Yes, Lipage 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipage 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipage 10mg Tablet.'),
(19472, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'Should Lipage 10mg Tablet be taken at night?', 'Lipage 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19473, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'What foods should be avoided when taking Lipage 10mg Tablet?', 'Lipage 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19474, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'How do I know whether Lipage 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipage 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipage 10mg Tablet versus the risks of not taking it at all.'),
(19475, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'Can Lipage 10mg Tablet cause memory loss?', 'Lipage 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipage 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19476, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'Can Lipage 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipage 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19477, 'Lipage 10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage 10mg Tablet', 'Is it true that Lipage 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipage 10mg Tablet may slightly increase this risk. This is because Lipage 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19478, 'Lipage F 160mg/10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage F 160mg/10mg Tablet', 'Can the use of Lipage F 160mg/10mg Tablet cause liver damage?', 'Lipage F 160mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19479, 'Lipage F 160mg/10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage F 160mg/10mg Tablet', 'Can the use of Lipage F 160mg/10mg Tablet cause muscle pain?', 'Yes, Lipage F 160mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(19480, 'Lipage F 160mg/10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage F 160mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lipage F 160mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipage F 160mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19481, 'Lipage F 160mg/10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage F 160mg/10mg Tablet', 'What medicines should I avoid while taking Lipage F 160mg/10mg Tablet?', 'Lipage F 160mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipage F 160mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(19482, 'Lipage F 160mg/10mg Tablet', 'Trimark Pharmaceuticals Pvt Ltd', 'Lipage F 160mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lipage F 160mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19483, 'Lipaglyn Tablet', 'Zydus Cadila', 'Lipaglyn Tablet', 'Who should not take Lipaglyn Tablet?', 'Lipaglyn Tablet should not be taken by people who are allergic to Lipaglyn Tablet or any of its ingredients. If you are not sure, please consult your doctor.'),
(19484, 'Lipaglyn Tablet', 'Zydus Cadila', 'Lipaglyn Tablet', 'Is there a chance of weight gain with Lipaglyn Tablet?', 'It has been observed from clinical research conducted on Lipaglyn Tablet that there is no significant risk of weight gain in patients taking Lipaglyn Tablet. However, if a patient experiences a rapid increase in weight, any other difficulty, or fluid accumulation in the body then it should be immediately informed to the doctor for further assessment or change of therapy.'),
(19485, 'Lipaglyn Tablet', 'Zydus Cadila', 'Lipaglyn Tablet', 'Is Lipaglyn Tablet is helpful in increasing good cholesterol?', 'Yes, it has been found that Lipaglyn Tablet helps improve the good cholesterol or HDL-C and at the same time helps reduce the bad cholesterol like LDL, triglycerides etc. Though the effectiveness of this medicine varies from patient to patient still it has been found to be effective in controlling the high triglyceride levels in the blood. Consult your doctor before you start taking this medication.'),
(19486, 'Lipaglyn Tablet', 'Zydus Cadila', 'Lipaglyn Tablet', 'What other lifestyle changes should I make to manage nonalcoholic steatohepatitis (NASH)', 'Lifestyle changes play a major role in managing nonalcoholic steatohepatitis (NASH). A healthy body weight helps you manage this condition very effectively. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life as it increases body weight too. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels. Stop smoking and alcohol consumption. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lipaglyn Tablet and to keep yourself healthy.'),
(19487, 'Lipaglyn Tablet', 'Zydus Cadila', 'Lipaglyn Tablet', 'Can I take Lipaglyn Tablet in pregnancy?', 'There is no clarity on the use of Lipaglyn Tablet in pregnancy and it may be unsafe to take it in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Lipaglyn Tablet. You may take it only if prescribed by your doctor.'),
(19488, 'Lipaglyn Tablet', 'Zydus Cadila', 'Lipaglyn Tablet', 'Is it safe for lactating mothers to take Lipaglyn Tablet?', 'No, it is not safe for lactating mothers to take Lipaglyn Tablet because there is no evidence of its safety for usage during breastfeeding. The other reason for not using this medicine is that it is not known whether Lipaglyn Tablet gets excreted via breast milk. Consult your doctor before taking this medicine if you are breastfeeding to make sure there is no harm to your baby.'),
(19489, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'What is Lipant 40mg Tablet used for?', 'Lipant 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lipant 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(19490, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'How long does it take for Lipant 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lipant 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(19491, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'Is a single dose of Lipant 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lipant 40mg Tablet you may get relief with the symptoms. Lipant 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lipant 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lipant 40mg Tablet regularly for 2 weeks as prescribed.'),
(19492, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'Is Lipant 40mg Tablet safe?', 'Yes, Lipant 40mg Tablet is relatively safe. Most of the people who take Lipant 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(19493, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'Can I take Lipant 40mg Tablet for a long term?', 'Lipant 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Lipant 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lipant 40mg Tablet as advised by your doctor and under their supervision.'),
(19494, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'What are the long term side effects of Lipant 40mg Tablet?', 'If Lipant 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(19495, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'What is the best time to take Lipant 40mg Tablet?', 'Usually, Lipant 40mg Tablet is taken once a day, first thing in the morning. If you take Lipant 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(19496, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'Can I stop taking Lipant 40mg Tablet if I feel better?', 'If you have been taking Lipant 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lipant 40mg Tablet.'),
(19497, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'Does Lipant 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Lipant 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(19498, 'Lipant 40mg Tablet', 'Ahen Pharmaceuticals', 'Lipant 40mg Tablet', 'Can I take alcohol with Lipant 40mg Tablet?', 'No, alcohol intake is not advised with Lipant 40mg Tablet. Alcohol itself does not affect the working of Lipant 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(19499, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'What is Lipant-DSR Capsule?', 'Lipant-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(19500, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'Is it safe to use Lipant-DSR Capsule?', 'Lipant-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(19501, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'Are there any specific contraindications associated with the use of Lipant-DSR Capsule?', 'The use of Lipant-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(19502, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'Can the use of Lipant-DSR Capsule cause dry mouth?', 'Yes, the use of Lipant-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(19503, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'Can the use of Lipant-DSR Capsule cause diarrhea?', 'Yes, the use of Lipant-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(19504, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'What are the instructions for storage and disposal of Lipant-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19505, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'What is Lipant-DSR Capsule price?', 'You can get Lipant-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(19506, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'While taking Lipant-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(19507, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'Can I take alcohol while taking Lipant-DSR Capsule?', 'No, alcohol intake is not advised with Lipant-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(19508, 'Lipant-DSR Capsule', 'Ahen Pharmaceuticals', 'Lipant-DSR Capsule', 'Can I stop taking Lipant-DSR Capsule if I feel better?', 'If you have been taking Lipant-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(19509, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'For how long should I take Liparoz 10 Tablet?', 'You may need to take Liparoz 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liparoz 10 Tablet. Stopping Liparoz 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19510, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'Does Liparoz 10 Tablet cause weight gain?', 'No, there is no evidence of Liparoz 10 Tablet causing weight gain. If you are taking Liparoz 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19511, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'Does Liparoz 10 Tablet make you tired?', 'Yes, Liparoz 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liparoz 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liparoz 10 Tablet.'),
(19512, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'Should Liparoz 10 Tablet be taken at night?', 'Liparoz 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19513, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'What foods should be avoided when taking Liparoz 10 Tablet?', 'Liparoz 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19514, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'How do I know whether Liparoz 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liparoz 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liparoz 10 Tablet versus the risks of not taking it at all.'),
(19515, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'Can Liparoz 10 Tablet cause memory loss?', 'Liparoz 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liparoz 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19516, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'Can Liparoz 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Liparoz 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19517, 'Liparoz 10 Tablet', 'Sugarline Pharma', 'Liparoz 10 Tablet', 'Is it true that Liparoz 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liparoz 10 Tablet may slightly increase this risk. This is because Liparoz 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19518, 'Lipcee Drop', 'Abron Healthcare', 'Lipcee Drop', 'Can the use of Lipcee Drop cause dryness in mouth?', 'Yes, the use of Lipcee Drop can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(19519, 'Lipcee Drop', 'Abron Healthcare', 'Lipcee Drop', 'Can the use of Lipcee Drop cause dizziness?', 'Yes, the use of Lipcee Drop can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better. Do not drive or use any machines.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19520, 'Lipcee Drop', 'Abron Healthcare', 'Lipcee Drop', '\\What is the recommended storage condition for Lipcee Drop?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19521, 'Lipcee Syrup', 'Abron Healthcare', 'Lipcee Syrup', 'Can the use of Lipcee Syrup cause dryness in mouth?', 'Yes, the use of Lipcee Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(19522, 'Lipcee Syrup', 'Abron Healthcare', 'Lipcee Syrup', 'Can the use of Lipcee Syrup cause dizziness?', 'Yes, the use of Lipcee Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(19523, 'Lipcee Syrup', 'Abron Healthcare', 'Lipcee Syrup', '\\What is the recommended storage condition for Lipcee Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19524, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'What is Lipcy 500 mg/50 mg/500 mg Tablet MR?', 'Lipcy 500 mg/50 mg/500 mg Tablet MR is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(19525, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Is it safe to use Lipcy 500 mg/50 mg/500 mg Tablet MR?', 'Lipcy 500 mg/50 mg/500 mg Tablet MR is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(19526, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Can I stop taking Lipcy 500 mg/50 mg/500 mg Tablet MR when my pain is relieved?', 'Lipcy 500 mg/50 mg/500 mg Tablet MR should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(19527, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Can the use of Lipcy 500 mg/50 mg/500 mg Tablet MR cause nausea and vomiting?', 'Yes, the use of Lipcy 500 mg/50 mg/500 mg Tablet MR can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(19528, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Can the use of Lipcy 500 mg/50 mg/500 mg Tablet MR cause dizziness?', 'Yes, the use of Lipcy 500 mg/50 mg/500 mg Tablet MR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(19529, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Can the use of Lipcy 500 mg/50 mg/500 mg Tablet MR cause damage to kidneys?', 'Yes, the long-term use of Lipcy 500 mg/50 mg/500 mg Tablet MR can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(19530, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lipcy 500 mg/50 mg/500 mg Tablet MR can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(19531, 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'Comed Chemicals Ltd', 'Lipcy 500 mg/50 mg/500 mg Tablet MR', 'What are the recommended storage conditions for Lipcy 500 mg/50 mg/500 mg Tablet MR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19532, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19533, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Can Lipekure Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipekure Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19534, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Is Lipekure Tablet used for lowering cholesterol?', 'Lipekure Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipekure Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipekure Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19535, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Can Lipekure Tablet be prescribed to children?', 'Lipekure Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19536, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Is Lipekure Tablet a blood thinner?', 'No, Lipekure Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19537, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Will taking Lipekure Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipekure Tablet may increase this risk slightly. This is because Lipekure Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19538, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. For how long do I need to take Lipekure Tablet? Is it safe for long-term use?', 'You may need to take Lipekure Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipekure Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19539, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Does Lipekure Tablet cause weight loss?', 'No, Lipekure Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipekure Tablet.'),
(19540, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Can I stop taking Lipekure Tablet?', 'No, you should not stop taking Lipekure Tablet without consulting your doctor. If you think that Lipekure Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19541, 'Lipekure Tablet', 'Kurere Pharma', 'Lipekure Tablet', 'Q. Can I take alcohol with Lipekure Tablet?', 'No, it is not advised to take alcohol with Lipekure Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipekure Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipekure Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19542, 'Lipep 500mg Tablet', 'savoy Biotech', 'Lipep 500mg Tablet', 'Is Lipep 500mg Tablet safe?', 'Lipep 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(19543, 'Lipep 500mg Tablet', 'savoy Biotech', 'Lipep 500mg Tablet', 'What if I forget to take a dose of Lipep 500mg Tablet?', 'If you forget a dose of Lipep 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(19544, 'Lipep 500mg Tablet', 'savoy Biotech', 'Lipep 500mg Tablet', 'Can the use of Lipep 500mg Tablet cause diarrhea?', 'Yes, the use of Lipep 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(19545, 'Lipep 500mg Tablet', 'savoy Biotech', 'Lipep 500mg Tablet', 'Can I stop taking Lipep 500mg Tablet when I feel better?', 'No, do not stop taking Lipep 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lipep 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lipep 500mg Tablet in the dose and duration advised by the doctor.'),
(19546, 'Lipep 500mg Tablet', 'savoy Biotech', 'Lipep 500mg Tablet', 'Can the use of Lipep 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lipep 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lipep 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(19547, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19548, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Can Lipgard 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipgard 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19549, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Is Lipgard 20mg Tablet used for lowering cholesterol?', 'Lipgard 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipgard 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipgard 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19550, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Can Lipgard 20mg Tablet be prescribed to children?', 'Lipgard 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19551, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Is Lipgard 20mg Tablet a blood thinner?', 'No, Lipgard 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19552, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Will taking Lipgard 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipgard 20mg Tablet may increase this risk slightly. This is because Lipgard 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19553, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'For how long do I need to take Lipgard 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipgard 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipgard 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19554, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Does Lipgard 20mg Tablet cause weight loss?', 'No, Lipgard 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipgard 20mg Tablet.'),
(19555, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Can I stop taking Lipgard 20mg Tablet?', 'No, you should not stop taking Lipgard 20mg Tablet without consulting your doctor. If you think that Lipgard 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19556, 'Lipgard 20mg Tablet', 'Allied Chemicals & Pharmaceuticals Pvt Ltd', 'Lipgard 20mg Tablet', 'Can I take alcohol with Lipgard 20mg Tablet?', 'No, it is not advised to take alcohol with Lipgard 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipgard 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipgard 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19557, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'What is the best time to take Lipi 2.5mg Tablet?', 'Take Lipi 2.5mg Tablet before meals or exactly as instructed by your doctor. There is evidence stating that Lipi 2.5mg Tablet works best at controlling post meal high blood sugar levels when taken 30 minutes before breakfast. So, if you are supposed to take it once daily, take it in the morning before breakfast with a glass of water.'),
(19558, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Is Lipi 2.5mg Tablet the same as metformin?', 'No, Lipi 2.5mg Tablet is not the same as metformin. Although both these oral medicines are used in the treatment of type 2 diabetes, the way they work to reduce the sugar levels are different. While Lipi 2.5mg Tablet acts by increasing the secretion of insulin by the pancreas, metformin acts by improving the functioning and effectiveness of the insulin already available in the body.'),
(19559, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Is Lipi 2.5mg Tablet bad for kidneys?', 'No, Lipi 2.5mg Tablet is not harmful if your kidney function is normal. Any previous case of kidney problem should be informed to the doctor, so that the use of Lipi 2.5mg Tablet can be assessed. This is done in order to analyze whether Lipi 2.5mg Tablet can be given or not because it is principally excreted by the kidney. If you have kidney problems you will be started at a lower dose.'),
(19560, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Does Lipi 2.5mg Tablet make you sleepy?', 'Lipi 2.5mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(19561, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Can I take Lipi 2.5mg Tablet with insulin?', 'Lipi 2.5mg Tablet, when used with insulin, can help to control high blood sugar levels. Taking them together can help to lower the dose of insulin but there could also be an increased risk of hypoglycemia. Dose of these medicines may need to be adjusted along with regular blood sugar level monitoring.'),
(19562, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Does Lipi 2.5mg Tablet cause weight gain?', 'Yes, Lipi 2.5mg Tablet can cause weight gain. It is advisable to closely monitor your diet and do regular exercise while taking this medicine. Avoid skipping your meal as it can cause very low blood sugar levels and you may end up snacking or taking a lot of sugars.'),
(19563, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Is Lipi 2.5mg Tablet a Thiazolidinedione?', 'No, Lipi 2.5mg Tablet is not a Thiazolidinedione, it is a sulfonylurea. However, both are antidiabetic medicines but belong to a different group of medicines.'),
(19564, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Who should not take Lipi 2.5mg Tablet?', 'Lipi 2.5mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells), or are due to have surgery. Along with that, patients who are trying to get pregnant, are pregnant, or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should also avoid taking Lipi 2.5mg Tablet.'),
(19565, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'What can happen if I take more than the recommended dose of Lipi 2.5mg Tablet?', 'Overdose of Lipi 2.5mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you have taken an excess dose then you should instantly consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma are cases of medical emergency requiring immediate medical attention.'),
(19566, 'Lipi 2.5mg Tablet', 'Deys Medical', 'Lipi 2.5mg Tablet', 'Can I skip Lipi 2.5mg Tablet for a few days?', 'No, Lipi 2.5mg Tablet should not be skipped, as it can make your diabetes worse. If, you miss the dose by mistake, take it as soon as you remember.'),
(19567, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'What is the best time to take Lipi 5mg Tablet?', 'Take Lipi 5mg Tablet before meals or exactly as instructed by your doctor. There is evidence stating that Lipi 5mg Tablet works best at controlling post meal high blood sugar levels when taken 30 minutes before breakfast. So, if you are supposed to take it once daily, take it in the morning before breakfast with a glass of water.'),
(19568, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Is Lipi 5mg Tablet the same as metformin?', 'No, Lipi 5mg Tablet is not the same as metformin. Although both these oral medicines are used in the treatment of type 2 diabetes, the way they work to reduce the sugar levels are different. While Lipi 5mg Tablet acts by increasing the secretion of insulin by the pancreas, metformin acts by improving the functioning and effectiveness of the insulin already available in the body.'),
(19569, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Is Lipi 5mg Tablet bad for kidneys?', 'No, Lipi 5mg Tablet is not harmful if your kidney function is normal. Any previous case of kidney problem should be informed to the doctor, so that the use of Lipi 5mg Tablet can be assessed. This is done in order to analyze whether Lipi 5mg Tablet can be given or not because it is principally excreted by the kidney. If you have kidney problems you will be started at a lower dose.'),
(19570, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Does Lipi 5mg Tablet make you sleepy?', 'Lipi 5mg Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(19571, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Can I take Lipi 5mg Tablet with insulin?', 'Lipi 5mg Tablet, when used with insulin, can help to control high blood sugar levels. Taking them together can help to lower the dose of insulin but there could also be an increased risk of hypoglycemia. Dose of these medicines may need to be adjusted along with regular blood sugar level monitoring.'),
(19572, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Does Lipi 5mg Tablet cause weight gain?', 'Yes, Lipi 5mg Tablet can cause weight gain. It is advisable to closely monitor your diet and do regular exercise while taking this medicine. Avoid skipping your meal as it can cause very low blood sugar levels and you may end up snacking or taking a lot of sugars.'),
(19573, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Is Lipi 5mg Tablet a Thiazolidinedione?', 'No, Lipi 5mg Tablet is not a Thiazolidinedione, it is a sulfonylurea. However, both are antidiabetic medicines but belong to a different group of medicines.'),
(19574, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Who should not take Lipi 5mg Tablet?', 'Lipi 5mg Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells), or are due to have surgery. Along with that, patients who are trying to get pregnant, are pregnant, or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should also avoid taking Lipi 5mg Tablet.'),
(19575, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'What can happen if I take more than the recommended dose of Lipi 5mg Tablet?', 'Overdose of Lipi 5mg Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you have taken an excess dose then you should instantly consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma are cases of medical emergency requiring immediate medical attention.'),
(19576, 'Lipi 5mg Tablet', 'Deys Medical', 'Lipi 5mg Tablet', 'Can I skip Lipi 5mg Tablet for a few days?', 'No, Lipi 5mg Tablet should not be skipped, as it can make your diabetes worse. If, you miss the dose by mistake, take it as soon as you remember.'),
(19577, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'For how long should I take Lipibay 10mg Tablet?', 'You may need to take Lipibay 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipibay 10mg Tablet. Stopping Lipibay 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19578, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'Does Lipibay 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipibay 10mg Tablet causing weight gain. If you are taking Lipibay 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19579, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'Does Lipibay 10mg Tablet make you tired?', 'Yes, Lipibay 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipibay 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipibay 10mg Tablet.'),
(19580, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'Should Lipibay 10mg Tablet be taken at night?', 'Lipibay 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19581, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'What foods should be avoided when taking Lipibay 10mg Tablet?', 'Lipibay 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19582, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'How do I know whether Lipibay 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipibay 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipibay 10mg Tablet versus the risks of not taking it at all.'),
(19583, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'Can Lipibay 10mg Tablet cause memory loss?', 'Lipibay 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipibay 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19584, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'Can Lipibay 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipibay 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19585, 'Lipibay 10mg Tablet', 'Gopal Lifesciences', 'Lipibay 10mg Tablet', 'Is it true that Lipibay 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipibay 10mg Tablet may slightly increase this risk. This is because Lipibay 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19586, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'For how long should I take Lipibay 20mg Tablet?', 'You may need to take Lipibay 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipibay 20mg Tablet. Stopping Lipibay 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19587, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'Does Lipibay 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipibay 20mg Tablet causing weight gain. If you are taking Lipibay 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19588, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'Does Lipibay 20mg Tablet make you tired?', 'Yes, Lipibay 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipibay 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipibay 20mg Tablet.'),
(19589, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'Should Lipibay 20mg Tablet be taken at night?', 'Lipibay 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19590, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'What foods should be avoided when taking Lipibay 20mg Tablet?', 'Lipibay 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19591, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'How do I know whether Lipibay 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipibay 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipibay 20mg Tablet versus the risks of not taking it at all.'),
(19592, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'Can Lipibay 20mg Tablet cause memory loss?', 'Lipibay 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipibay 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19593, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'Can Lipibay 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipibay 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19594, 'Lipibay 20mg Tablet', 'Gopal Lifesciences', 'Lipibay 20mg Tablet', 'Is it true that Lipibay 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipibay 20mg Tablet may slightly increase this risk. This is because Lipibay 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19595, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'For how long should I take Lipibay 5mg Tablet?', 'You may need to take Lipibay 5mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipibay 5mg Tablet. Stopping Lipibay 5mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19596, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'Does Lipibay 5mg Tablet cause weight gain?', 'No, there is no evidence of Lipibay 5mg Tablet causing weight gain. If you are taking Lipibay 5mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19597, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'Does Lipibay 5mg Tablet make you tired?', 'Yes, Lipibay 5mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipibay 5mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipibay 5mg Tablet.'),
(19598, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'Should Lipibay 5mg Tablet be taken at night?', 'Lipibay 5mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19599, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'What foods should be avoided when taking Lipibay 5mg Tablet?', 'Lipibay 5mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19600, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'How do I know whether Lipibay 5mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipibay 5mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipibay 5mg Tablet versus the risks of not taking it at all.'),
(19601, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'Can Lipibay 5mg Tablet cause memory loss?', 'Lipibay 5mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipibay 5mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19602, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'Can Lipibay 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipibay 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19603, 'Lipibay 5mg Tablet', 'Gopal Lifesciences', 'Lipibay 5mg Tablet', 'Is it true that Lipibay 5mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipibay 5mg Tablet may slightly increase this risk. This is because Lipibay 5mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19604, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'For how long should I take Lipibeat 20 Tablet?', 'You may need to take Lipibeat 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipibeat 20 Tablet. Stopping Lipibeat 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19605, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'Does Lipibeat 20 Tablet cause weight gain?', 'No, there is no evidence of Lipibeat 20 Tablet causing weight gain. If you are taking Lipibeat 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19606, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'Does Lipibeat 20 Tablet make you tired?', 'Yes, Lipibeat 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipibeat 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipibeat 20 Tablet.'),
(19607, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'Should Lipibeat 20 Tablet be taken at night?', 'Lipibeat 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19608, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'What foods should be avoided when taking Lipibeat 20 Tablet?', 'Lipibeat 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19609, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'How do I know whether Lipibeat 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipibeat 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipibeat 20 Tablet versus the risks of not taking it at all.'),
(19610, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'Can Lipibeat 20 Tablet cause memory loss?', 'Lipibeat 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipibeat 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19611, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'Can Lipibeat 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipibeat 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19612, 'Lipibeat 20 Tablet', 'Gaba Care Pvt Ltd', 'Lipibeat 20 Tablet', 'Is it true that Lipibeat 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipibeat 20 Tablet may slightly increase this risk. This is because Lipibeat 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19613, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19614, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Can Lipibond 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipibond 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19615, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Is Lipibond 20mg Tablet used for lowering cholesterol?', 'Lipibond 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipibond 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipibond 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19616, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Can Lipibond 20mg Tablet be prescribed to children?', 'Lipibond 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19617, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Is Lipibond 20mg Tablet a blood thinner?', 'No, Lipibond 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19618, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Will taking Lipibond 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipibond 20mg Tablet may increase this risk slightly. This is because Lipibond 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19619, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'For how long do I need to take Lipibond 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipibond 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipibond 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19620, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Does Lipibond 20mg Tablet cause weight loss?', 'No, Lipibond 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipibond 20mg Tablet.'),
(19621, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Can I stop taking Lipibond 20mg Tablet?', 'No, you should not stop taking Lipibond 20mg Tablet without consulting your doctor. If you think that Lipibond 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19622, 'Lipibond 20mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 20mg Tablet', 'Can I take alcohol with Lipibond 20mg Tablet?', 'No, it is not advised to take alcohol with Lipibond 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipibond 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipibond 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19623, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19624, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Can Lipibond 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipibond 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19625, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Is Lipibond 40mg Tablet used for lowering cholesterol?', 'Lipibond 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipibond 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipibond 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19626, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Can Lipibond 40mg Tablet be prescribed to children?', 'Lipibond 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19627, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Is Lipibond 40mg Tablet a blood thinner?', 'No, Lipibond 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19628, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Will taking Lipibond 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipibond 40mg Tablet may increase this risk slightly. This is because Lipibond 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19629, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'For how long do I need to take Lipibond 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipibond 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipibond 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19630, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Does Lipibond 40mg Tablet cause weight loss?', 'No, Lipibond 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipibond 40mg Tablet.'),
(19631, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Can I stop taking Lipibond 40mg Tablet?', 'No, you should not stop taking Lipibond 40mg Tablet without consulting your doctor. If you think that Lipibond 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19632, 'Lipibond 40mg Tablet', 'Dr. Bond Healthcare Private Limited', 'Lipibond 40mg Tablet', 'Can I take alcohol with Lipibond 40mg Tablet?', 'No, it is not advised to take alcohol with Lipibond 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipibond 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipibond 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19633, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19634, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Can Lipicalm 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicalm 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19635, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Is Lipicalm 10mg Tablet used for lowering cholesterol?', 'Lipicalm 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicalm 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicalm 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19636, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Can Lipicalm 10mg Tablet be prescribed to children?', 'Lipicalm 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19637, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Is Lipicalm 10mg Tablet a blood thinner?', 'No, Lipicalm 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19638, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Will taking Lipicalm 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicalm 10mg Tablet may increase this risk slightly. This is because Lipicalm 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19639, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'For how long do I need to take Lipicalm 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicalm 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicalm 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19640, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Does Lipicalm 10mg Tablet cause weight loss?', 'No, Lipicalm 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicalm 10mg Tablet.'),
(19641, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Can I stop taking Lipicalm 10mg Tablet?', 'No, you should not stop taking Lipicalm 10mg Tablet without consulting your doctor. If you think that Lipicalm 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19642, 'Lipicalm 10mg Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm 10mg Tablet', 'Can I take alcohol with Lipicalm 10mg Tablet?', 'No, it is not advised to take alcohol with Lipicalm 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicalm 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicalm 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19643, 'Lipicalm F Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm F Tablet', 'Can Lipicalm F Tablet cause liver damage?', 'Lipicalm F Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19644, 'Lipicalm F Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm F Tablet', 'Can Lipicalm F Tablet cause muscle pain?', 'Yes, Lipicalm F Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicalm F Tablet.'),
(19645, 'Lipicalm F Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm F Tablet', 'What lifestyle changes should be adopted while taking Lipicalm F Tablet?', 'Making lifestyle changes can boost your health while taking Lipicalm F Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19646, 'Lipicalm F Tablet', 'Votary Laboratories  I  Ltd', 'Lipicalm F Tablet', 'What medicines should I avoid while taking Lipicalm F Tablet?', 'The use of Lipicalm F Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipicalm F Tablet.'),
(19647, 'Lipicard 160 Tablet', 'USV Ltd', 'Lipicard 160 Tablet', 'When should Lipicard 160 Tablet be taken?', 'Usually, Lipicard 160 Tablet is taken once daily with a meal. The initial dose of the medicine will depend on the type and age of the patient. Consult your doctor before you start taking the medication and follow the instructions as provided.'),
(19648, 'Lipicard 160 Tablet', 'USV Ltd', 'Lipicard 160 Tablet', 'Does Lipicard 160 Tablet raise blood pressure?', 'There is no or negligible effect on blood pressure in patients with normal blood pressure levels. However, Lipicard 160 Tablet may lead to a decrease in blood pressure in patients with high blood pressure.'),
(19649, 'Lipicard 160 Tablet', 'USV Ltd', 'Lipicard 160 Tablet', 'Can Lipicard 160 Tablet cause kidney problems?', 'Lipicard 160 Tablet should be used with caution in patients with kidney disorders. Serum creatinine levels may increase with long-term usage of Lipicard 160 Tablet but is completely reversible. The evidence of kidney damage with this medicine is rare still the kidney function blood test should be done regularly if there is a possibility of kidney damage. Consult your doctor before taking the medicine. Inform the doctor if you have had any disease and all the medicines that you are taking for a better diagnosis and treatment.'),
(19650, 'Lipicard 160 Tablet', 'USV Ltd', 'Lipicard 160 Tablet', 'Can I take grapefruit juice with Lipicard 160 Tablet?', 'Yes, you can take Lipicard 160 Tablet with grapefruit juice. The possibility of interaction of the medicine with grapefruit is unlikely as they are broken down in our body by different enzymes. However, if in doubt then limit the intake of grapefruit juice while taking Lipicard 160 Tablet.'),
(19651, 'Lipicard 160 Tablet', 'USV Ltd', 'Lipicard 160 Tablet', 'What drugs should not be taken with Lipicard 160 Tablet?', 'There are few drugs like Oral Anticoagulants or blood thinners, ciclosporin, cholesterol-lowering medications like statins and contraceptives are contraindicated while you take Lipicard 160 Tablet. Along with that, there are certain medicines which should not be taken with Lipicard 160 Tablet and therefore you must give a proper history to your doctor regarding your ongoing medication. This is done to analyze the condition and provide a proper therapy and prescription which will help minimizing the side effects of the medication.'),
(19652, 'Lipicard Capsule', 'USV Ltd', 'Lipicard Capsule', 'When should Lipicard Capsule be taken?', 'Usually, Lipicard Capsule is taken once daily with a meal. The initial dose of the medicine will depend on the type and age of the patient. Consult your doctor before you start taking the medication and follow the instructions as provided.'),
(19653, 'Lipicard Capsule', 'USV Ltd', 'Lipicard Capsule', 'Does Lipicard Capsule raise blood pressure?', 'There is no or negligible effect on blood pressure in patients with normal blood pressure levels. However, Lipicard Capsule may lead to a decrease in blood pressure in patients with high blood pressure.'),
(19654, 'Lipicard Capsule', 'USV Ltd', 'Lipicard Capsule', 'Can Lipicard Capsule cause kidney problems?', 'Lipicard Capsule should be used with caution in patients with kidney disorders. Serum creatinine levels may increase with long-term usage of Lipicard Capsule but is completely reversible. The evidence of kidney damage with this medicine is rare still the kidney function blood test should be done regularly if there is a possibility of kidney damage. Consult your doctor before taking the medicine. Inform the doctor if you have had any disease and all the medicines that you are taking for a better diagnosis and treatment.'),
(19655, 'Lipicard Capsule', 'USV Ltd', 'Lipicard Capsule', 'Can I take grapefruit juice with Lipicard Capsule?', 'Yes, you can take Lipicard Capsule with grapefruit juice. The possibility of interaction of the medicine with grapefruit is unlikely as they are broken down in our body by different enzymes. However, if in doubt then limit the intake of grapefruit juice while taking Lipicard Capsule.'),
(19656, 'Lipicard Capsule', 'USV Ltd', 'Lipicard Capsule', 'What drugs should not be taken with Lipicard Capsule?', 'There are few drugs like Oral Anticoagulants or blood thinners, ciclosporin, cholesterol-lowering medications like statins and contraceptives are contraindicated while you take Lipicard Capsule. Along with that, there are certain medicines which should not be taken with Lipicard Capsule and therefore you must give a proper history to your doctor regarding your ongoing medication. This is done to analyze the condition and provide a proper therapy and prescription which will help minimizing the side effects of the medication.'),
(19657, 'Lipicard-AV Tablet', 'USV Ltd', 'Lipicard-AV Tablet', 'Can Lipicard-AV Tablet cause liver damage?', 'Lipicard-AV Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19658, 'Lipicard-AV Tablet', 'USV Ltd', 'Lipicard-AV Tablet', 'Can Lipicard-AV Tablet cause muscle pain?', 'Yes, Lipicard-AV Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicard-AV Tablet.'),
(19659, 'Lipicard-AV Tablet', 'USV Ltd', 'Lipicard-AV Tablet', 'What lifestyle changes should be adopted while taking Lipicard-AV Tablet?', 'Making lifestyle changes can boost your health while taking Lipicard-AV Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19660, 'Lipicard-AV Tablet', 'USV Ltd', 'Lipicard-AV Tablet', 'What medicines should I avoid while taking Lipicard-AV Tablet?', 'The use of Lipicard-AV Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipicard-AV Tablet.'),
(19661, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19662, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Can Lipicheck 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicheck 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19663, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Is Lipicheck 10mg Tablet used for lowering cholesterol?', 'Lipicheck 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicheck 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicheck 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19664, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Can Lipicheck 10mg Tablet be prescribed to children?', 'Lipicheck 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19665, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Is Lipicheck 10mg Tablet a blood thinner?', 'No, Lipicheck 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19666, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Will taking Lipicheck 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicheck 10mg Tablet may increase this risk slightly. This is because Lipicheck 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19667, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'For how long do I need to take Lipicheck 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicheck 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicheck 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19668, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Does Lipicheck 10mg Tablet cause weight loss?', 'No, Lipicheck 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicheck 10mg Tablet.'),
(19669, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Can I stop taking Lipicheck 10mg Tablet?', 'No, you should not stop taking Lipicheck 10mg Tablet without consulting your doctor. If you think that Lipicheck 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19670, 'Lipicheck 10mg Tablet', 'Indi Pharma', 'Lipicheck 10mg Tablet', 'Can I take alcohol with Lipicheck 10mg Tablet?', 'No, it is not advised to take alcohol with Lipicheck 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicheck 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicheck 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19671, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19672, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Can Lipicheck 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicheck 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19673, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Is Lipicheck 20mg Tablet used for lowering cholesterol?', 'Lipicheck 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicheck 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicheck 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19674, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Can Lipicheck 20mg Tablet be prescribed to children?', 'Lipicheck 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19675, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Is Lipicheck 20mg Tablet a blood thinner?', 'No, Lipicheck 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19676, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Will taking Lipicheck 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicheck 20mg Tablet may increase this risk slightly. This is because Lipicheck 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19677, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'For how long do I need to take Lipicheck 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicheck 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicheck 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19678, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Does Lipicheck 20mg Tablet cause weight loss?', 'No, Lipicheck 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicheck 20mg Tablet.'),
(19679, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Can I stop taking Lipicheck 20mg Tablet?', 'No, you should not stop taking Lipicheck 20mg Tablet without consulting your doctor. If you think that Lipicheck 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19680, 'Lipicheck 20mg Tablet', 'Indi Pharma', 'Lipicheck 20mg Tablet', 'Can I take alcohol with Lipicheck 20mg Tablet?', 'No, it is not advised to take alcohol with Lipicheck 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicheck 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicheck 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19681, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19682, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Can Lipichek 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipichek 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19683, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Is Lipichek 20mg Tablet used for lowering cholesterol?', 'Lipichek 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipichek 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipichek 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19684, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Can Lipichek 20mg Tablet be prescribed to children?', 'Lipichek 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19685, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Is Lipichek 20mg Tablet a blood thinner?', 'No, Lipichek 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19686, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Will taking Lipichek 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipichek 20mg Tablet may increase this risk slightly. This is because Lipichek 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19687, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'For how long do I need to take Lipichek 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipichek 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipichek 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19688, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Does Lipichek 20mg Tablet cause weight loss?', 'No, Lipichek 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipichek 20mg Tablet.'),
(19689, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Can I stop taking Lipichek 20mg Tablet?', 'No, you should not stop taking Lipichek 20mg Tablet without consulting your doctor. If you think that Lipichek 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19690, 'Lipichek 20mg Tablet', 'Indi Pharma', 'Lipichek 20mg Tablet', 'Can I take alcohol with Lipichek 20mg Tablet?', 'No, it is not advised to take alcohol with Lipichek 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipichek 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipichek 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19691, 'Lipiclear F 10mg/160mg Tablet', 'Best Biotech', 'Lipiclear F 10mg/160mg Tablet', 'Can Lipiclear F 10mg/160mg Tablet cause liver damage?', 'Lipiclear F 10mg/160mg Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19692, 'Lipiclear F 10mg/160mg Tablet', 'Best Biotech', 'Lipiclear F 10mg/160mg Tablet', 'Can Lipiclear F 10mg/160mg Tablet cause muscle pain?', 'Yes, Lipiclear F 10mg/160mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipiclear F 10mg/160mg Tablet.'),
(19693, 'Lipiclear F 10mg/160mg Tablet', 'Best Biotech', 'Lipiclear F 10mg/160mg Tablet', 'What lifestyle changes should be adopted while taking Lipiclear F 10mg/160mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipiclear F 10mg/160mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19694, 'Lipiclear F 10mg/160mg Tablet', 'Best Biotech', 'Lipiclear F 10mg/160mg Tablet', 'What medicines should I avoid while taking Lipiclear F 10mg/160mg Tablet?', 'The use of Lipiclear F 10mg/160mg Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipiclear F 10mg/160mg Tablet.'),
(19695, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19696, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Can Lipicon 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicon 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19697, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Is Lipicon 10mg Tablet used for lowering cholesterol?', 'Lipicon 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicon 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicon 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19698, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Can Lipicon 10mg Tablet be prescribed to children?', 'Lipicon 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19699, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Is Lipicon 10mg Tablet a blood thinner?', 'No, Lipicon 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19700, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Will taking Lipicon 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicon 10mg Tablet may increase this risk slightly. This is because Lipicon 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19701, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'For how long do I need to take Lipicon 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicon 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicon 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19702, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Does Lipicon 10mg Tablet cause weight loss?', 'No, Lipicon 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicon 10mg Tablet.'),
(19703, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Can I stop taking Lipicon 10mg Tablet?', 'No, you should not stop taking Lipicon 10mg Tablet without consulting your doctor. If you think that Lipicon 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19704, 'Lipicon 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 10mg Tablet', 'Can I take alcohol with Lipicon 10mg Tablet?', 'No, it is not advised to take alcohol with Lipicon 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicon 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicon 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19705, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19706, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Can Lipicon 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicon 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19707, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Is Lipicon 20mg Tablet used for lowering cholesterol?', 'Lipicon 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicon 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicon 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19708, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Can Lipicon 20mg Tablet be prescribed to children?', 'Lipicon 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19709, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Is Lipicon 20mg Tablet a blood thinner?', 'No, Lipicon 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19710, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Will taking Lipicon 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicon 20mg Tablet may increase this risk slightly. This is because Lipicon 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19711, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'For how long do I need to take Lipicon 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicon 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicon 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19712, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Does Lipicon 20mg Tablet cause weight loss?', 'No, Lipicon 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicon 20mg Tablet.'),
(19713, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Can I stop taking Lipicon 20mg Tablet?', 'No, you should not stop taking Lipicon 20mg Tablet without consulting your doctor. If you think that Lipicon 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19714, 'Lipicon 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 20mg Tablet', 'Can I take alcohol with Lipicon 20mg Tablet?', 'No, it is not advised to take alcohol with Lipicon 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicon 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicon 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19715, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19716, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Can Lipicon 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicon 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19717, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Is Lipicon 40mg Tablet used for lowering cholesterol?', 'Lipicon 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicon 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicon 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19718, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Can Lipicon 40mg Tablet be prescribed to children?', 'Lipicon 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19719, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Is Lipicon 40mg Tablet a blood thinner?', 'No, Lipicon 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19720, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Will taking Lipicon 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicon 40mg Tablet may increase this risk slightly. This is because Lipicon 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19721, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'For how long do I need to take Lipicon 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicon 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicon 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19722, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Does Lipicon 40mg Tablet cause weight loss?', 'No, Lipicon 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicon 40mg Tablet.'),
(19723, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Can I stop taking Lipicon 40mg Tablet?', 'No, you should not stop taking Lipicon 40mg Tablet without consulting your doctor. If you think that Lipicon 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19724, 'Lipicon 40mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon 40mg Tablet', 'Can I take alcohol with Lipicon 40mg Tablet?', 'No, it is not advised to take alcohol with Lipicon 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicon 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicon 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19725, 'Lipicon F 10mg/160mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon F 10mg/160mg Tablet', 'Can Lipicon F 10mg/160mg Tablet cause liver damage?', 'Lipicon F 10mg/160mg Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19726, 'Lipicon F 10mg/160mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon F 10mg/160mg Tablet', 'Can Lipicon F 10mg/160mg Tablet cause muscle pain?', 'Yes, Lipicon F 10mg/160mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicon F 10mg/160mg Tablet.'),
(19727, 'Lipicon F 10mg/160mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon F 10mg/160mg Tablet', 'What lifestyle changes should be adopted while taking Lipicon F 10mg/160mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipicon F 10mg/160mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19728, 'Lipicon F 10mg/160mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipicon F 10mg/160mg Tablet', 'What medicines should I avoid while taking Lipicon F 10mg/160mg Tablet?', 'The use of Lipicon F 10mg/160mg Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipicon F 10mg/160mg Tablet.'),
(19729, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19730, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Can Lipicor 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicor 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19731, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Is Lipicor 5mg Tablet used for lowering cholesterol?', 'Lipicor 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicor 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicor 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19732, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Can Lipicor 5mg Tablet be prescribed to children?', 'Lipicor 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19733, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Is Lipicor 5mg Tablet a blood thinner?', 'No, Lipicor 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19734, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Will taking Lipicor 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicor 5mg Tablet may increase this risk slightly. This is because Lipicor 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19735, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'For how long do I need to take Lipicor 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicor 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicor 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19736, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Does Lipicor 5mg Tablet cause weight loss?', 'No, Lipicor 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicor 5mg Tablet.'),
(19737, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Can I stop taking Lipicor 5mg Tablet?', 'No, you should not stop taking Lipicor 5mg Tablet without consulting your doctor. If you think that Lipicor 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19738, 'Lipicor 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicor 5mg Tablet', 'Can I take alcohol with Lipicor 5mg Tablet?', 'No, it is not advised to take alcohol with Lipicor 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicor 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicor 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19739, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19740, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Can Lipicrest 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicrest 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19741, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Is Lipicrest 10mg Tablet used for lowering cholesterol?', 'Lipicrest 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicrest 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicrest 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19742, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Can Lipicrest 10mg Tablet be prescribed to children?', 'Lipicrest 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19743, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Is Lipicrest 10mg Tablet a blood thinner?', 'No, Lipicrest 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19744, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Will taking Lipicrest 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicrest 10mg Tablet may increase this risk slightly. This is because Lipicrest 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19745, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'For how long do I need to take Lipicrest 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicrest 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicrest 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19746, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Does Lipicrest 10mg Tablet cause weight loss?', 'No, Lipicrest 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicrest 10mg Tablet.'),
(19747, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Can I stop taking Lipicrest 10mg Tablet?', 'No, you should not stop taking Lipicrest 10mg Tablet without consulting your doctor. If you think that Lipicrest 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19748, 'Lipicrest 10mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 10mg Tablet', 'Can I take alcohol with Lipicrest 10mg Tablet?', 'No, it is not advised to take alcohol with Lipicrest 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicrest 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicrest 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19749, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19750, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Can Lipicrest 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicrest 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19751, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Is Lipicrest 20mg Tablet used for lowering cholesterol?', 'Lipicrest 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicrest 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicrest 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19752, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Can Lipicrest 20mg Tablet be prescribed to children?', 'Lipicrest 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19753, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Is Lipicrest 20mg Tablet a blood thinner?', 'No, Lipicrest 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19754, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Will taking Lipicrest 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicrest 20mg Tablet may increase this risk slightly. This is because Lipicrest 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19755, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'For how long do I need to take Lipicrest 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicrest 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicrest 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19756, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Does Lipicrest 20mg Tablet cause weight loss?', 'No, Lipicrest 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicrest 20mg Tablet.'),
(19757, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Can I stop taking Lipicrest 20mg Tablet?', 'No, you should not stop taking Lipicrest 20mg Tablet without consulting your doctor. If you think that Lipicrest 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19758, 'Lipicrest 20mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 20mg Tablet', 'Can I take alcohol with Lipicrest 20mg Tablet?', 'No, it is not advised to take alcohol with Lipicrest 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicrest 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicrest 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19759, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19760, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Can Lipicrest 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicrest 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19761, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Is Lipicrest 40mg Tablet used for lowering cholesterol?', 'Lipicrest 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicrest 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicrest 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19762, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Can Lipicrest 40mg Tablet be prescribed to children?', 'Lipicrest 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19763, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Is Lipicrest 40mg Tablet a blood thinner?', 'No, Lipicrest 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19764, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Will taking Lipicrest 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicrest 40mg Tablet may increase this risk slightly. This is because Lipicrest 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19765, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'For how long do I need to take Lipicrest 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicrest 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicrest 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19766, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Does Lipicrest 40mg Tablet cause weight loss?', 'No, Lipicrest 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicrest 40mg Tablet.'),
(19767, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Can I stop taking Lipicrest 40mg Tablet?', 'No, you should not stop taking Lipicrest 40mg Tablet without consulting your doctor. If you think that Lipicrest 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19768, 'Lipicrest 40mg Tablet', 'Wonset Healthcare Pvt Ltd', 'Lipicrest 40mg Tablet', 'Can I take alcohol with Lipicrest 40mg Tablet?', 'No, it is not advised to take alcohol with Lipicrest 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicrest 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicrest 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19769, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'For how long should I take Lipicross R 10mg Tablet?', 'You may need to take Lipicross R 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipicross R 10mg Tablet. Stopping Lipicross R 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19770, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'Does Lipicross R 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipicross R 10mg Tablet causing weight gain. If you are taking Lipicross R 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19771, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'Does Lipicross R 10mg Tablet make you tired?', 'Yes, Lipicross R 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipicross R 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipicross R 10mg Tablet.'),
(19772, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'Should Lipicross R 10mg Tablet be taken at night?', 'Lipicross R 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19773, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'What foods should be avoided when taking Lipicross R 10mg Tablet?', 'Lipicross R 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19774, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'How do I know whether Lipicross R 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipicross R 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipicross R 10mg Tablet versus the risks of not taking it at all.'),
(19775, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'Can Lipicross R 10mg Tablet cause memory loss?', 'Lipicross R 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipicross R 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19776, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'Can Lipicross R 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicross R 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19777, 'Lipicross R 10mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 10mg Tablet', 'Is it true that Lipicross R 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicross R 10mg Tablet may slightly increase this risk. This is because Lipicross R 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19778, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'For how long should I take Lipicross R 20mg Tablet?', 'You may need to take Lipicross R 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipicross R 20mg Tablet. Stopping Lipicross R 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(19779, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'Does Lipicross R 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipicross R 20mg Tablet causing weight gain. If you are taking Lipicross R 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(19780, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'Does Lipicross R 20mg Tablet make you tired?', 'Yes, Lipicross R 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipicross R 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipicross R 20mg Tablet.'),
(19781, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'Should Lipicross R 20mg Tablet be taken at night?', 'Lipicross R 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(19782, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'What foods should be avoided when taking Lipicross R 20mg Tablet?', 'Lipicross R 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(19783, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'How do I know whether Lipicross R 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipicross R 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipicross R 20mg Tablet versus the risks of not taking it at all.'),
(19784, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'Can Lipicross R 20mg Tablet cause memory loss?', 'Lipicross R 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipicross R 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(19785, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'Can Lipicross R 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicross R 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19786, 'Lipicross R 20mg Tablet', 'Mankind Pharma Ltd', 'Lipicross R 20mg Tablet', 'Is it true that Lipicross R 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicross R 20mg Tablet may slightly increase this risk. This is because Lipicross R 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19787, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19788, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Can Lipicure 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19789, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Is Lipicure 10 Tablet used for lowering cholesterol?', 'Lipicure 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19790, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Can Lipicure 10 Tablet be prescribed to children?', 'Lipicure 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19791, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Is Lipicure 10 Tablet a blood thinner?', 'No, Lipicure 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19792, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Will taking Lipicure 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 10 Tablet may increase this risk slightly. This is because Lipicure 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19793, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. For how long do I need to take Lipicure 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19794, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Does Lipicure 10 Tablet cause weight loss?', 'No, Lipicure 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 10 Tablet.'),
(19795, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Can I stop taking Lipicure 10 Tablet?', 'No, you should not stop taking Lipicure 10 Tablet without consulting your doctor. If you think that Lipicure 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19796, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Q. Can I take alcohol with Lipicure 10 Tablet?', 'No, it is not advised to take alcohol with Lipicure 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19797, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19798, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Can Lipicure 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19799, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Is Lipicure 10 Tablet used for lowering cholesterol?', 'Lipicure 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19800, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Can Lipicure 10 Tablet be prescribed to children?', 'Lipicure 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19801, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Is Lipicure 10 Tablet a blood thinner?', 'No, Lipicure 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19802, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Will taking Lipicure 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 10 Tablet may increase this risk slightly. This is because Lipicure 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19803, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'For how long do I need to take Lipicure 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19804, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Does Lipicure 10 Tablet cause weight loss?', 'No, Lipicure 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 10 Tablet.'),
(19805, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Can I stop taking Lipicure 10 Tablet?', 'No, you should not stop taking Lipicure 10 Tablet without consulting your doctor. If you think that Lipicure 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19806, 'Lipicure 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 10 Tablet', 'Can I take alcohol with Lipicure 10 Tablet?', 'No, it is not advised to take alcohol with Lipicure 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19807, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19808, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Can Lipicure 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19809, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Is Lipicure 20 Tablet used for lowering cholesterol?', 'Lipicure 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19810, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Can Lipicure 20 Tablet be prescribed to children?', 'Lipicure 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19811, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Is Lipicure 20 Tablet a blood thinner?', 'No, Lipicure 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19812, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Will taking Lipicure 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 20 Tablet may increase this risk slightly. This is because Lipicure 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19813, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'For how long do I need to take Lipicure 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19814, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Does Lipicure 20 Tablet cause weight loss?', 'No, Lipicure 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 20 Tablet.'),
(19815, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Can I stop taking Lipicure 20 Tablet?', 'No, you should not stop taking Lipicure 20 Tablet without consulting your doctor. If you think that Lipicure 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19816, 'Lipicure 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 20 Tablet', 'Can I take alcohol with Lipicure 20 Tablet?', 'No, it is not advised to take alcohol with Lipicure 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19817, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19818, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Can Lipicure 30 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 30 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19819, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Is Lipicure 30 Tablet used for lowering cholesterol?', 'Lipicure 30 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 30 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 30 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19820, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Can Lipicure 30 Tablet be prescribed to children?', 'Lipicure 30 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19821, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Is Lipicure 30 Tablet a blood thinner?', 'No, Lipicure 30 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19822, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Will taking Lipicure 30 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 30 Tablet may increase this risk slightly. This is because Lipicure 30 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19823, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'For how long do I need to take Lipicure 30 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 30 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 30 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19824, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Does Lipicure 30 Tablet cause weight loss?', 'No, Lipicure 30 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 30 Tablet.'),
(19825, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Can I stop taking Lipicure 30 Tablet?', 'No, you should not stop taking Lipicure 30 Tablet without consulting your doctor. If you think that Lipicure 30 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19826, 'Lipicure 30 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 30 Tablet', 'Can I take alcohol with Lipicure 30 Tablet?', 'No, it is not advised to take alcohol with Lipicure 30 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 30 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 30 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19827, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19828, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Can Lipicure 40 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 40 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19829, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Is Lipicure 40 Tablet used for lowering cholesterol?', 'Lipicure 40 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 40 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 40 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19830, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Can Lipicure 40 Tablet be prescribed to children?', 'Lipicure 40 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19831, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Is Lipicure 40 Tablet a blood thinner?', 'No, Lipicure 40 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19832, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Will taking Lipicure 40 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 40 Tablet may increase this risk slightly. This is because Lipicure 40 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19833, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'For how long do I need to take Lipicure 40 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 40 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 40 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19834, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Does Lipicure 40 Tablet cause weight loss?', 'No, Lipicure 40 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 40 Tablet.'),
(19835, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Can I stop taking Lipicure 40 Tablet?', 'No, you should not stop taking Lipicure 40 Tablet without consulting your doctor. If you think that Lipicure 40 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19836, 'Lipicure 40 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40 Tablet', 'Can I take alcohol with Lipicure 40 Tablet?', 'No, it is not advised to take alcohol with Lipicure 40 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 40 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 40 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19837, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19838, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Can Lipicure 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19839, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Is Lipicure 40mg Tablet used for lowering cholesterol?', 'Lipicure 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19840, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Can Lipicure 40mg Tablet be prescribed to children?', 'Lipicure 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19841, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Is Lipicure 40mg Tablet a blood thinner?', 'No, Lipicure 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19842, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Will taking Lipicure 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 40mg Tablet may increase this risk slightly. This is because Lipicure 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19843, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'For how long do I need to take Lipicure 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19844, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Does Lipicure 40mg Tablet cause weight loss?', 'No, Lipicure 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 40mg Tablet.'),
(19845, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Can I stop taking Lipicure 40mg Tablet?', 'No, you should not stop taking Lipicure 40mg Tablet without consulting your doctor. If you think that Lipicure 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19846, 'Lipicure 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 40mg Tablet', 'Can I take alcohol with Lipicure 40mg Tablet?', 'No, it is not advised to take alcohol with Lipicure 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19847, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19848, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Can Lipicure 5 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 5 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19849, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Is Lipicure 5 Tablet used for lowering cholesterol?', 'Lipicure 5 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 5 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 5 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19850, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Can Lipicure 5 Tablet be prescribed to children?', 'Lipicure 5 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19851, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Is Lipicure 5 Tablet a blood thinner?', 'No, Lipicure 5 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19852, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Will taking Lipicure 5 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 5 Tablet may increase this risk slightly. This is because Lipicure 5 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19853, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'For how long do I need to take Lipicure 5 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 5 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 5 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19854, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Does Lipicure 5 Tablet cause weight loss?', 'No, Lipicure 5 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 5 Tablet.'),
(19855, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Can I stop taking Lipicure 5 Tablet?', 'No, you should not stop taking Lipicure 5 Tablet without consulting your doctor. If you think that Lipicure 5 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19856, 'Lipicure 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 5 Tablet', 'Can I take alcohol with Lipicure 5 Tablet?', 'No, it is not advised to take alcohol with Lipicure 5 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 5 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 5 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19857, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19858, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Can Lipicure 60 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 60 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19859, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Is Lipicure 60 Tablet used for lowering cholesterol?', 'Lipicure 60 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 60 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 60 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19860, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Can Lipicure 60 Tablet be prescribed to children?', 'Lipicure 60 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19861, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Is Lipicure 60 Tablet a blood thinner?', 'No, Lipicure 60 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19862, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Will taking Lipicure 60 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 60 Tablet may increase this risk slightly. This is because Lipicure 60 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19863, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'For how long do I need to take Lipicure 60 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 60 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 60 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19864, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Does Lipicure 60 Tablet cause weight loss?', 'No, Lipicure 60 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 60 Tablet.'),
(19865, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Can I stop taking Lipicure 60 Tablet?', 'No, you should not stop taking Lipicure 60 Tablet without consulting your doctor. If you think that Lipicure 60 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19866, 'Lipicure 60 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 60 Tablet', 'Can I take alcohol with Lipicure 60 Tablet?', 'No, it is not advised to take alcohol with Lipicure 60 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 60 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 60 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19867, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19868, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Can Lipicure 80 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 80 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19869, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Is Lipicure 80 Tablet used for lowering cholesterol?', 'Lipicure 80 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 80 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 80 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19870, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Can Lipicure 80 Tablet be prescribed to children?', 'Lipicure 80 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19871, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Is Lipicure 80 Tablet a blood thinner?', 'No, Lipicure 80 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19872, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Will taking Lipicure 80 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 80 Tablet may increase this risk slightly. This is because Lipicure 80 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19873, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. For how long do I need to take Lipicure 80 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 80 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 80 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19874, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Does Lipicure 80 Tablet cause weight loss?', 'No, Lipicure 80 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 80 Tablet.'),
(19875, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Can I stop taking Lipicure 80 Tablet?', 'No, you should not stop taking Lipicure 80 Tablet without consulting your doctor. If you think that Lipicure 80 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19876, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Q. Can I take alcohol with Lipicure 80 Tablet?', 'No, it is not advised to take alcohol with Lipicure 80 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 80 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 80 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19877, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19878, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Can Lipicure 80 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicure 80 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19879, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Is Lipicure 80 Tablet used for lowering cholesterol?', 'Lipicure 80 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicure 80 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicure 80 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19880, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Can Lipicure 80 Tablet be prescribed to children?', 'Lipicure 80 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19881, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Is Lipicure 80 Tablet a blood thinner?', 'No, Lipicure 80 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19882, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Will taking Lipicure 80 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicure 80 Tablet may increase this risk slightly. This is because Lipicure 80 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19883, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'For how long do I need to take Lipicure 80 Tablet? Is it safe for long-term use?', 'You may need to take Lipicure 80 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicure 80 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19884, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Does Lipicure 80 Tablet cause weight loss?', 'No, Lipicure 80 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicure 80 Tablet.'),
(19885, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Can I stop taking Lipicure 80 Tablet?', 'No, you should not stop taking Lipicure 80 Tablet without consulting your doctor. If you think that Lipicure 80 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19886, 'Lipicure 80 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure 80 Tablet', 'Can I take alcohol with Lipicure 80 Tablet?', 'No, it is not advised to take alcohol with Lipicure 80 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicure 80 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicure 80 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19887, 'Lipicure CF 10 Capsule IR', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 10 Capsule IR', 'Can Lipicure CF 10 Capsule IR cause liver damage?', 'Lipicure CF 10 Capsule IR contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19888, 'Lipicure CF 10 Capsule IR', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 10 Capsule IR', 'Can Lipicure CF 10 Capsule IR cause muscle pain?', 'Yes, Lipicure CF 10 Capsule IR can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicure CF 10 Capsule IR.'),
(19889, 'Lipicure CF 10 Capsule IR', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 10 Capsule IR', 'What lifestyle changes should be adopted while taking Lipicure CF 10 Capsule IR?', 'Making lifestyle changes can boost your health while taking Lipicure CF 10 Capsule IR. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19890, 'Lipicure CF 10 Capsule IR', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 10 Capsule IR', 'What medicines should I avoid while taking Lipicure CF 10 Capsule IR?', 'The use of Lipicure CF 10 Capsule IR along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipicure CF 10 Capsule IR.'),
(19891, 'Lipicure CF 20mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 20mg Capsule', 'Can Lipicure CF 20mg Capsule cause liver damage?', 'Lipicure CF 20mg Capsule contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19892, 'Lipicure CF 20mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 20mg Capsule', 'Can Lipicure CF 20mg Capsule cause muscle pain?', 'Yes, Lipicure CF 20mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicure CF 20mg Capsule.'),
(19893, 'Lipicure CF 20mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 20mg Capsule', 'What lifestyle changes should be adopted while taking Lipicure CF 20mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipicure CF 20mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19894, 'Lipicure CF 20mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CF 20mg Capsule', 'What medicines should I avoid while taking Lipicure CF 20mg Capsule?', 'The use of Lipicure CF 20mg Capsule along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipicure CF 20mg Capsule.'),
(19895, 'Lipicure CV 10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 10mg/75mg Capsule', 'Can Lipicure CV 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipicure CV 10mg/75mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicure CV 10mg/75mg Capsule.'),
(19896, 'Lipicure CV 10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 10mg/75mg Capsule', 'Will I need to stop Lipicure CV 10mg/75mg Capsule before surgery or dental procedure?', 'Lipicure CV 10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipicure CV 10mg/75mg Capsule. But, you should not stop taking Lipicure CV 10mg/75mg Capsule on your own.'),
(19897, 'Lipicure CV 10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 10mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipicure CV 10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipicure CV 10mg/75mg Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19898, 'Lipicure CV 10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 10mg/75mg Capsule', 'Which painkiller is safe while taking Lipicure CV 10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipicure CV 10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipicure CV 10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(19899, 'Lipicure CV 10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 10mg/75mg Capsule', 'Can the use of Lipicure CV 10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipicure CV 10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(19900, 'Lipicure CV 10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 10mg/75mg Capsule', 'What medicines should I avoid while taking Lipicure CV 10mg/75mg Capsule?', 'Lipicure CV 10mg/75mg Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipicure CV 10mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(19901, 'Lipicure CV 10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipicure CV 10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19902, 'Lipicure CV 20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 20mg/75mg Capsule', 'Can Lipicure CV 20mg/75mg Capsule cause muscle pain?', 'Yes, Lipicure CV 20mg/75mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicure CV 20mg/75mg Capsule.'),
(19903, 'Lipicure CV 20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 20mg/75mg Capsule', 'Will I need to stop Lipicure CV 20mg/75mg Capsule before surgery or dental procedure?', 'Lipicure CV 20mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipicure CV 20mg/75mg Capsule. But, you should not stop taking Lipicure CV 20mg/75mg Capsule on your own.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(19904, 'Lipicure CV 20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 20mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipicure CV 20mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipicure CV 20mg/75mg Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19905, 'Lipicure CV 20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 20mg/75mg Capsule', 'Which painkiller is safe while taking Lipicure CV 20mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipicure CV 20mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipicure CV 20mg/75mg Capsule, as they may increase the risk of bleeding.'),
(19906, 'Lipicure CV 20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 20mg/75mg Capsule', 'Can the use of Lipicure CV 20mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipicure CV 20mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(19907, 'Lipicure CV 20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 20mg/75mg Capsule', 'What medicines should I avoid while taking Lipicure CV 20mg/75mg Capsule?', 'Lipicure CV 20mg/75mg Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipicure CV 20mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(19908, 'Lipicure CV 20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 20mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipicure CV 20mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19909, 'Lipicure CV 40mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 40mg/75mg Capsule', 'Can Lipicure CV 40mg/75mg Capsule cause muscle pain?', 'Yes, Lipicure CV 40mg/75mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicure CV 40mg/75mg Capsule.'),
(19910, 'Lipicure CV 40mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 40mg/75mg Capsule', 'Will I need to stop Lipicure CV 40mg/75mg Capsule before surgery or dental procedure?', 'Lipicure CV 40mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipicure CV 40mg/75mg Capsule. But, you should not stop taking Lipicure CV 40mg/75mg Capsule on your own.'),
(19911, 'Lipicure CV 40mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 40mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipicure CV 40mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipicure CV 40mg/75mg Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19912, 'Lipicure CV 40mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 40mg/75mg Capsule', 'Which painkiller is safe while taking Lipicure CV 40mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipicure CV 40mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipicure CV 40mg/75mg Capsule, as they may increase the risk of bleeding.'),
(19913, 'Lipicure CV 40mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 40mg/75mg Capsule', 'Can the use of Lipicure CV 40mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipicure CV 40mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(19914, 'Lipicure CV 40mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 40mg/75mg Capsule', 'What medicines should I avoid while taking Lipicure CV 40mg/75mg Capsule?', 'Lipicure CV 40mg/75mg Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipicure CV 40mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(19915, 'Lipicure CV 40mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure CV 40mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipicure CV 40mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19916, 'Lipicure Gold 10 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 10 Capsule', 'What is Lipicure Gold 10 Capsule?', 'Lipicure Gold 10 Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(19917, 'Lipicure Gold 10 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 10 Capsule', 'Can the use of Lipicure Gold 10 Capsule cause dizziness?', 'Yes, the use of Lipicure Gold 10 Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(19918, 'Lipicure Gold 10 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 10 Capsule', 'Can the use of Lipicure Gold 10 Capsule cause nausea and vomiting?', 'Yes, the use of Lipicure Gold 10 Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(19919, 'Lipicure Gold 10 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 10 Capsule', 'What is the recommended storage condition for the Lipicure Gold 10 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19920, 'Lipicure Gold 20 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 20 Capsule', 'What is Lipicure Gold 20 Capsule?', 'Lipicure Gold 20 Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(19921, 'Lipicure Gold 20 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 20 Capsule', 'Can the use of Lipicure Gold 20 Capsule cause dizziness?', 'Yes, the use of Lipicure Gold 20 Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(19922, 'Lipicure Gold 20 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 20 Capsule', 'Can the use of Lipicure Gold 20 Capsule cause nausea and vomiting?', 'Yes, the use of Lipicure Gold 20 Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(19923, 'Lipicure Gold 20 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 20 Capsule', 'What is the recommended storage condition for the Lipicure Gold 20 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19924, 'Lipicure Gold 40 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 40 Capsule', 'What is Lipicure Gold 40 Capsule?', 'Lipicure Gold 40 Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(19925, 'Lipicure Gold 40 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 40 Capsule', 'Can the use of Lipicure Gold 40 Capsule cause dizziness?', 'Yes, the use of Lipicure Gold 40 Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(19926, 'Lipicure Gold 40 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 40 Capsule', 'Can the use of Lipicure Gold 40 Capsule cause nausea and vomiting?', 'Yes, the use of Lipicure Gold 40 Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(19927, 'Lipicure Gold 40 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure Gold 40 Capsule', 'What is the recommended storage condition for the Lipicure Gold 40 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19928, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'Can Lipicure-AS 150 Capsule affect the liver?', 'Yes, Lipicure-AS 150 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(19929, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'What are the recommended storage conditions for Lipicure-AS 150 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19930, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'Can the Lipicure-AS 150 Capsule cause muscle pain?', 'Yes, Lipicure-AS 150 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(19931, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'Will I need to stop Lipicure-AS 150 Capsule before surgery or dental procedure?', 'Lipicure-AS 150 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipicure-AS 150 Capsule. You should not stop taking Lipicure-AS 150 Capsule on your own.'),
(19932, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'What are the lifestyle changes one should adopt while taking Lipicure-AS 150 Capsule?', 'Making lifestyle changes can boost your health while taking Lipicure-AS 150 Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19933, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'Which painkiller is safe while taking Lipicure-AS 150 Capsule?', 'Paracetamol is safe to use while taking Lipicure-AS 150 Capsule for reducing pain. Avoid the use of other painkillers while taking Lipicure-AS 150 Capsule, as they may increase the risk of bleeding.'),
(19934, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'Which medicines should I avoid while taking Lipicure-AS 150 Capsule?', 'Lipicure-AS 150 Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipicure-AS 150 Capsule before taking any prescription or non-prescription medicine.'),
(19935, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'Can Lipicure-AS 150 Capsule affect the liver?', 'Yes, Lipicure-AS 150 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(19936, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'What are the recommended storage conditions for Lipicure-AS 150 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19937, 'Lipicure-AS 150 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 150 Capsule', 'Can the Lipicure-AS 150 Capsule cause muscle pain?', 'Yes, Lipicure-AS 150 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(19938, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. Can Lipicure-AS 75 Capsule affect the liver?', 'Yes, Lipicure-AS 75 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(19939, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. What are the recommended storage conditions for Lipicure-AS 75 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19940, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. Can the Lipicure-AS 75 Capsule cause muscle pain?', 'Yes, Lipicure-AS 75 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(19941, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. Will I need to stop Lipicure-AS 75 Capsule before surgery or dental procedure?', 'Lipicure-AS 75 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipicure-AS 75 Capsule. You should not stop taking Lipicure-AS 75 Capsule on your own.'),
(19942, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. What are the lifestyle changes one should adopt while taking Lipicure-AS 75 Capsule?', 'Making lifestyle changes can boost your health while taking Lipicure-AS 75 Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19943, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. Which painkiller is safe while taking Lipicure-AS 75 Capsule?', 'Paracetamol is safe to use while taking Lipicure-AS 75 Capsule for reducing pain. Avoid the use of other painkillers while taking Lipicure-AS 75 Capsule, as they may increase the risk of bleeding.'),
(19944, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. Which medicines should I avoid while taking Lipicure-AS 75 Capsule?', 'Lipicure-AS 75 Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipicure-AS 75 Capsule before taking any prescription or non-prescription medicine.'),
(19945, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. Can Lipicure-AS 75 Capsule affect the liver?', 'Yes, Lipicure-AS 75 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(19946, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. What are the recommended storage conditions for Lipicure-AS 75 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(19947, 'Lipicure-AS 75 Capsule', 'Intas Pharmaceuticals Ltd', 'Lipicure-AS 75 Capsule', 'Q. Can the Lipicure-AS 75 Capsule cause muscle pain?', 'Yes, Lipicure-AS 75 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(19948, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'Q. Can Lipicure-TG Tablet cause liver damage?', 'Lipicure-TG Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19949, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'Q. Can Lipicure-TG Tablet cause muscle pain?', 'Yes, Lipicure-TG Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicure-TG Tablet.'),
(19950, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'Q. What lifestyle changes should be adopted while taking Lipicure-TG Tablet?', 'Making lifestyle changes can boost your health while taking Lipicure-TG Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19951, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'Q. What medicines should I avoid while taking Lipicure-TG Tablet?', 'The use of Lipicure-TG Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipicure-TG Tablet.'),
(19952, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'Can Lipicure-TG Tablet cause liver damage?', 'Lipicure-TG Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(19953, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'Can Lipicure-TG Tablet cause muscle pain?', 'Yes, Lipicure-TG Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipicure-TG Tablet.'),
(19954, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'What lifestyle changes should be adopted while taking Lipicure-TG Tablet?', 'Making lifestyle changes can boost your health while taking Lipicure-TG Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(19955, 'Lipicure-TG Tablet', 'Intas Pharmaceuticals Ltd', 'Lipicure-TG Tablet', 'What medicines should I avoid while taking Lipicure-TG Tablet?', 'The use of Lipicure-TG Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipicure-TG Tablet.'),
(19956, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19957, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Can Lipicute 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicute 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19958, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Is Lipicute 10mg Tablet used for lowering cholesterol?', 'Lipicute 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicute 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicute 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19959, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Can Lipicute 10mg Tablet be prescribed to children?', 'Lipicute 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19960, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Is Lipicute 10mg Tablet a blood thinner?', 'No, Lipicute 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19961, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Will taking Lipicute 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicute 10mg Tablet may increase this risk slightly. This is because Lipicute 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19962, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. For how long do I need to take Lipicute 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicute 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicute 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19963, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Does Lipicute 10mg Tablet cause weight loss?', 'No, Lipicute 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicute 10mg Tablet.'),
(19964, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Can I stop taking Lipicute 10mg Tablet?', 'No, you should not stop taking Lipicute 10mg Tablet without consulting your doctor. If you think that Lipicute 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19965, 'Lipicute 10mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 10mg Tablet', 'Q. Can I take alcohol with Lipicute 10mg Tablet?', 'No, it is not advised to take alcohol with Lipicute 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicute 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicute 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19966, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19967, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Can Lipicute 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipicute 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19968, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Is Lipicute 20mg Tablet used for lowering cholesterol?', 'Lipicute 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipicute 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipicute 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19969, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Can Lipicute 20mg Tablet be prescribed to children?', 'Lipicute 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19970, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Is Lipicute 20mg Tablet a blood thinner?', 'No, Lipicute 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19971, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Will taking Lipicute 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipicute 20mg Tablet may increase this risk slightly. This is because Lipicute 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19972, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. For how long do I need to take Lipicute 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipicute 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipicute 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19973, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Does Lipicute 20mg Tablet cause weight loss?', 'No, Lipicute 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipicute 20mg Tablet.'),
(19974, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Can I stop taking Lipicute 20mg Tablet?', 'No, you should not stop taking Lipicute 20mg Tablet without consulting your doctor. If you think that Lipicute 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19975, 'Lipicute 20mg Tablet', 'AAR ESS Remedies Pvt Ltd', 'Lipicute 20mg Tablet', 'Q. Can I take alcohol with Lipicute 20mg Tablet?', 'No, it is not advised to take alcohol with Lipicute 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipicute 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipicute 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19976, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19977, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Can Lipid 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipid 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19978, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Is Lipid 10mg Tablet used for lowering cholesterol?', 'Lipid 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipid 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipid 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19979, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Can Lipid 10mg Tablet be prescribed to children?', 'Lipid 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19980, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Is Lipid 10mg Tablet a blood thinner?', 'No, Lipid 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19981, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Will taking Lipid 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipid 10mg Tablet may increase this risk slightly. This is because Lipid 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19982, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'For how long do I need to take Lipid 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipid 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipid 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19983, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Does Lipid 10mg Tablet cause weight loss?', 'No, Lipid 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipid 10mg Tablet.'),
(19984, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Can I stop taking Lipid 10mg Tablet?', 'No, you should not stop taking Lipid 10mg Tablet without consulting your doctor. If you think that Lipid 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19985, 'Lipid 10mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 10mg Tablet', 'Can I take alcohol with Lipid 10mg Tablet?', 'No, it is not advised to take alcohol with Lipid 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipid 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipid 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19986, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19987, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Can Lipid 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipid 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19988, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Is Lipid 20mg Tablet used for lowering cholesterol?', 'Lipid 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipid 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipid 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19989, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Can Lipid 20mg Tablet be prescribed to children?', 'Lipid 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(19990, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Is Lipid 20mg Tablet a blood thinner?', 'No, Lipid 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(19991, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Will taking Lipid 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipid 20mg Tablet may increase this risk slightly. This is because Lipid 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(19992, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'For how long do I need to take Lipid 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipid 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipid 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(19993, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Does Lipid 20mg Tablet cause weight loss?', 'No, Lipid 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipid 20mg Tablet.'),
(19994, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Can I stop taking Lipid 20mg Tablet?', 'No, you should not stop taking Lipid 20mg Tablet without consulting your doctor. If you think that Lipid 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(19995, 'Lipid 20mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 20mg Tablet', 'Can I take alcohol with Lipid 20mg Tablet?', 'No, it is not advised to take alcohol with Lipid 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipid 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipid 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(19996, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(19997, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Can Lipid 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipid 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(19998, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Is Lipid 5mg Tablet used for lowering cholesterol?', 'Lipid 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipid 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipid 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(19999, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Can Lipid 5mg Tablet be prescribed to children?', 'Lipid 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20000, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Is Lipid 5mg Tablet a blood thinner?', 'No, Lipid 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20001, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Will taking Lipid 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipid 5mg Tablet may increase this risk slightly. This is because Lipid 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20002, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'For how long do I need to take Lipid 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipid 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipid 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20003, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Does Lipid 5mg Tablet cause weight loss?', 'No, Lipid 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipid 5mg Tablet.'),
(20004, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Can I stop taking Lipid 5mg Tablet?', 'No, you should not stop taking Lipid 5mg Tablet without consulting your doctor. If you think that Lipid 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20005, 'Lipid 5mg Tablet', 'Stadmed Pvt Ltd', 'Lipid 5mg Tablet', 'Can I take alcohol with Lipid 5mg Tablet?', 'No, it is not advised to take alcohol with Lipid 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipid 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipid 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20006, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20007, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Can Lipidator 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidator 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20008, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Is Lipidator 20mg Tablet used for lowering cholesterol?', 'Lipidator 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipidator 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipidator 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20009, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Can Lipidator 20mg Tablet be prescribed to children?', 'Lipidator 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20010, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Is Lipidator 20mg Tablet a blood thinner?', 'No, Lipidator 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20011, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Will taking Lipidator 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidator 20mg Tablet may increase this risk slightly. This is because Lipidator 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20012, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'For how long do I need to take Lipidator 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipidator 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipidator 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20013, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Does Lipidator 20mg Tablet cause weight loss?', 'No, Lipidator 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipidator 20mg Tablet.'),
(20014, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Can I stop taking Lipidator 20mg Tablet?', 'No, you should not stop taking Lipidator 20mg Tablet without consulting your doctor. If you think that Lipidator 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20015, 'Lipidator 20mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 20mg Tablet', 'Can I take alcohol with Lipidator 20mg Tablet?', 'No, it is not advised to take alcohol with Lipidator 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipidator 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipidator 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20016, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20017, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Can Lipidator 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidator 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20018, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Is Lipidator 40mg Tablet used for lowering cholesterol?', 'Lipidator 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipidator 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipidator 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20019, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Can Lipidator 40mg Tablet be prescribed to children?', 'Lipidator 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20020, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Is Lipidator 40mg Tablet a blood thinner?', 'No, Lipidator 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20021, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Will taking Lipidator 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidator 40mg Tablet may increase this risk slightly. This is because Lipidator 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20022, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'For how long do I need to take Lipidator 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipidator 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipidator 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20023, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Does Lipidator 40mg Tablet cause weight loss?', 'No, Lipidator 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipidator 40mg Tablet.'),
(20024, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Can I stop taking Lipidator 40mg Tablet?', 'No, you should not stop taking Lipidator 40mg Tablet without consulting your doctor. If you think that Lipidator 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20025, 'Lipidator 40mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 40mg Tablet', 'Can I take alcohol with Lipidator 40mg Tablet?', 'No, it is not advised to take alcohol with Lipidator 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipidator 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipidator 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20026, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20027, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Can Lipidator 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidator 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20028, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Is Lipidator 5mg Tablet used for lowering cholesterol?', 'Lipidator 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipidator 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipidator 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20029, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Can Lipidator 5mg Tablet be prescribed to children?', 'Lipidator 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20030, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Is Lipidator 5mg Tablet a blood thinner?', 'No, Lipidator 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20031, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Will taking Lipidator 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidator 5mg Tablet may increase this risk slightly. This is because Lipidator 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20032, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'For how long do I need to take Lipidator 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipidator 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipidator 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20033, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Does Lipidator 5mg Tablet cause weight loss?', 'No, Lipidator 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipidator 5mg Tablet.'),
(20034, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Can I stop taking Lipidator 5mg Tablet?', 'No, you should not stop taking Lipidator 5mg Tablet without consulting your doctor. If you think that Lipidator 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20035, 'Lipidator 5mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 5mg Tablet', 'Can I take alcohol with Lipidator 5mg Tablet?', 'No, it is not advised to take alcohol with Lipidator 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipidator 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipidator 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20036, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20037, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Can Lipidator 80mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidator 80mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20038, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Is Lipidator 80mg Tablet used for lowering cholesterol?', 'Lipidator 80mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipidator 80mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipidator 80mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20039, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Can Lipidator 80mg Tablet be prescribed to children?', 'Lipidator 80mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20040, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Is Lipidator 80mg Tablet a blood thinner?', 'No, Lipidator 80mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20041, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Will taking Lipidator 80mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidator 80mg Tablet may increase this risk slightly. This is because Lipidator 80mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20042, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'For how long do I need to take Lipidator 80mg Tablet? Is it safe for long-term use?', 'You may need to take Lipidator 80mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipidator 80mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20043, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Does Lipidator 80mg Tablet cause weight loss?', 'No, Lipidator 80mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipidator 80mg Tablet.'),
(20044, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Can I stop taking Lipidator 80mg Tablet?', 'No, you should not stop taking Lipidator 80mg Tablet without consulting your doctor. If you think that Lipidator 80mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20045, 'Lipidator 80mg Tablet', 'Healing Pharma India Pvt Ltd', 'Lipidator 80mg Tablet', 'Can I take alcohol with Lipidator 80mg Tablet?', 'No, it is not advised to take alcohol with Lipidator 80mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipidator 80mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipidator 80mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20046, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20047, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Can Lipiden 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiden 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20048, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Is Lipiden 10 Tablet used for lowering cholesterol?', 'Lipiden 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiden 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiden 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20049, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Can Lipiden 10 Tablet be prescribed to children?', 'Lipiden 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20050, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Is Lipiden 10 Tablet a blood thinner?', 'No, Lipiden 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20051, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Will taking Lipiden 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiden 10 Tablet may increase this risk slightly. This is because Lipiden 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20052, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. For how long do I need to take Lipiden 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipiden 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiden 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20053, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Does Lipiden 10 Tablet cause weight loss?', 'No, Lipiden 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiden 10 Tablet.'),
(20054, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Can I stop taking Lipiden 10 Tablet?', 'No, you should not stop taking Lipiden 10 Tablet without consulting your doctor. If you think that Lipiden 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20055, 'Lipiden 10 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 10 Tablet', 'Q. Can I take alcohol with Lipiden 10 Tablet?', 'No, it is not advised to take alcohol with Lipiden 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiden 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiden 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20056, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20057, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Can Lipiden 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiden 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20058, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Is Lipiden 20 Tablet used for lowering cholesterol?', 'Lipiden 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiden 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiden 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20059, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Can Lipiden 20 Tablet be prescribed to children?', 'Lipiden 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20060, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Is Lipiden 20 Tablet a blood thinner?', 'No, Lipiden 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20061, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Will taking Lipiden 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiden 20 Tablet may increase this risk slightly. This is because Lipiden 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20062, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. For how long do I need to take Lipiden 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipiden 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiden 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20063, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Does Lipiden 20 Tablet cause weight loss?', 'No, Lipiden 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiden 20 Tablet.'),
(20064, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Can I stop taking Lipiden 20 Tablet?', 'No, you should not stop taking Lipiden 20 Tablet without consulting your doctor. If you think that Lipiden 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20065, 'Lipiden 20 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 20 Tablet', 'Q. Can I take alcohol with Lipiden 20 Tablet?', 'No, it is not advised to take alcohol with Lipiden 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiden 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiden 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20066, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20067, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Can Lipiden 40 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiden 40 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20068, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Is Lipiden 40 Tablet used for lowering cholesterol?', 'Lipiden 40 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiden 40 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiden 40 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20069, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Can Lipiden 40 Tablet be prescribed to children?', 'Lipiden 40 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20070, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Is Lipiden 40 Tablet a blood thinner?', 'No, Lipiden 40 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20071, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Will taking Lipiden 40 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiden 40 Tablet may increase this risk slightly. This is because Lipiden 40 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20072, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'For how long do I need to take Lipiden 40 Tablet? Is it safe for long-term use?', 'You may need to take Lipiden 40 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiden 40 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20073, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Does Lipiden 40 Tablet cause weight loss?', 'No, Lipiden 40 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiden 40 Tablet.'),
(20074, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Can I stop taking Lipiden 40 Tablet?', 'No, you should not stop taking Lipiden 40 Tablet without consulting your doctor. If you think that Lipiden 40 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20075, 'Lipiden 40 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 40 Tablet', 'Can I take alcohol with Lipiden 40 Tablet?', 'No, it is not advised to take alcohol with Lipiden 40 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiden 40 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiden 40 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20076, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20077, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Can Lipiden 80 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiden 80 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20078, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Is Lipiden 80 Tablet used for lowering cholesterol?', 'Lipiden 80 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiden 80 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiden 80 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20079, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Can Lipiden 80 Tablet be prescribed to children?', 'Lipiden 80 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20080, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Is Lipiden 80 Tablet a blood thinner?', 'No, Lipiden 80 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20081, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Will taking Lipiden 80 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiden 80 Tablet may increase this risk slightly. This is because Lipiden 80 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20082, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'For how long do I need to take Lipiden 80 Tablet? Is it safe for long-term use?', 'You may need to take Lipiden 80 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiden 80 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20083, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Does Lipiden 80 Tablet cause weight loss?', 'No, Lipiden 80 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiden 80 Tablet.'),
(20084, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Can I stop taking Lipiden 80 Tablet?', 'No, you should not stop taking Lipiden 80 Tablet without consulting your doctor. If you think that Lipiden 80 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20085, 'Lipiden 80 Tablet', 'Halden Healthcare & Research Pvt Ltd', 'Lipiden 80 Tablet', 'Can I take alcohol with Lipiden 80 Tablet?', 'No, it is not advised to take alcohol with Lipiden 80 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiden 80 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiden 80 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20086, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20087, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Can Lipider 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipider 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20088, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Is Lipider 20mg Tablet used for lowering cholesterol?', 'Lipider 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipider 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipider 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20089, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Can Lipider 20mg Tablet be prescribed to children?', 'Lipider 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20090, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Is Lipider 20mg Tablet a blood thinner?', 'No, Lipider 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20091, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Will taking Lipider 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipider 20mg Tablet may increase this risk slightly. This is because Lipider 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20092, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. For how long do I need to take Lipider 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipider 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipider 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20093, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Does Lipider 20mg Tablet cause weight loss?', 'No, Lipider 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipider 20mg Tablet.'),
(20094, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Can I stop taking Lipider 20mg Tablet?', 'No, you should not stop taking Lipider 20mg Tablet without consulting your doctor. If you think that Lipider 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20095, 'Lipider 20mg Tablet', 'Elder Laboratories Limited', 'Lipider 20mg Tablet', 'Q. Can I take alcohol with Lipider 20mg Tablet?', 'No, it is not advised to take alcohol with Lipider 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipider 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipider 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20096, 'Lipidex Plus 10mg/200mg Tablet', 'Pharmasynth Formulations Ltd', 'Lipidex Plus 10mg/200mg Tablet', 'Can Lipidex Plus 10mg/200mg Tablet cause liver damage?', 'Lipidex Plus 10mg/200mg Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20097, 'Lipidex Plus 10mg/200mg Tablet', 'Pharmasynth Formulations Ltd', 'Lipidex Plus 10mg/200mg Tablet', 'Can Lipidex Plus 10mg/200mg Tablet cause muscle pain?', 'Yes, Lipidex Plus 10mg/200mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipidex Plus 10mg/200mg Tablet.'),
(20098, 'Lipidex Plus 10mg/200mg Tablet', 'Pharmasynth Formulations Ltd', 'Lipidex Plus 10mg/200mg Tablet', 'What lifestyle changes should be adopted while taking Lipidex Plus 10mg/200mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipidex Plus 10mg/200mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20099, 'Lipidex Plus 10mg/200mg Tablet', 'Pharmasynth Formulations Ltd', 'Lipidex Plus 10mg/200mg Tablet', 'What medicines should I avoid while taking Lipidex Plus 10mg/200mg Tablet?', 'The use of Lipidex Plus 10mg/200mg Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipidex Plus 10mg/200mg Tablet.'),
(20100, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'For how long should I take Lipidin 10 Tablet?', 'You may need to take Lipidin 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipidin 10 Tablet. Stopping Lipidin 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20101, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'Does Lipidin 10 Tablet cause weight gain?', 'No, there is no evidence of Lipidin 10 Tablet causing weight gain. If you are taking Lipidin 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20102, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'Does Lipidin 10 Tablet make you tired?', 'Yes, Lipidin 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipidin 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipidin 10 Tablet.'),
(20103, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'Should Lipidin 10 Tablet be taken at night?', 'Lipidin 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20104, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'What foods should be avoided when taking Lipidin 10 Tablet?', 'Lipidin 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20105, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'How do I know whether Lipidin 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipidin 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipidin 10 Tablet versus the risks of not taking it at all.'),
(20106, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'Can Lipidin 10 Tablet cause memory loss?', 'Lipidin 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipidin 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20107, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'Can Lipidin 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidin 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20108, 'Lipidin 10 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 10 Tablet', 'Is it true that Lipidin 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidin 10 Tablet may slightly increase this risk. This is because Lipidin 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20109, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'For how long should I take Lipidin 20 Tablet?', 'You may need to take Lipidin 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipidin 20 Tablet. Stopping Lipidin 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20110, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'Does Lipidin 20 Tablet cause weight gain?', 'No, there is no evidence of Lipidin 20 Tablet causing weight gain. If you are taking Lipidin 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20111, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'Does Lipidin 20 Tablet make you tired?', 'Yes, Lipidin 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipidin 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipidin 20 Tablet.'),
(20112, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'Should Lipidin 20 Tablet be taken at night?', 'Lipidin 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20113, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'What foods should be avoided when taking Lipidin 20 Tablet?', 'Lipidin 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20114, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'How do I know whether Lipidin 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipidin 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipidin 20 Tablet versus the risks of not taking it at all.'),
(20115, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'Can Lipidin 20 Tablet cause memory loss?', 'Lipidin 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipidin 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20116, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'Can Lipidin 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidin 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20117, 'Lipidin 20 Tablet', 'Astrodin Lifescience Pvt Ltd', 'Lipidin 20 Tablet', 'Is it true that Lipidin 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidin 20 Tablet may slightly increase this risk. This is because Lipidin 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20118, 'Lipidin-Gold 10 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 10 Capsule', 'What are the instructions for the storage and disposal of Lipidin-Gold 10 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20119, 'Lipidin-Gold 10 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 10 Capsule', 'Will I need to stop Lipidin-Gold 10 Capsule before surgery or dental procedure?', 'Lipidin-Gold 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipidin-Gold 10 Capsule. However, do not stop taking Lipidin-Gold 10 Capsule on your own.'),
(20120, 'Lipidin-Gold 10 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 10 Capsule', 'What are the lifestyle changes to adapt while taking Lipidin-Gold 10 Capsule?', 'Making lifestyle changes can boost your health while taking Lipidin-Gold 10 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20121, 'Lipidin-Gold 10 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 10 Capsule', 'Which painkiller is safe while taking Lipidin-Gold 10 Capsule?', 'Paracetamol is safe to use while taking Lipidin-Gold 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipidin-Gold 10 Capsule, as they may increase the risk of bleeding.'),
(20122, 'Lipidin-Gold 10 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 10 Capsule', 'Can the use of Lipidin-Gold 10 Capsule increase the risk of bleeding?', 'Yes, Lipidin-Gold 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20123, 'Lipidin-Gold 20 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 20 Capsule', 'What are the instructions for the storage and disposal of Lipidin-Gold 20 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20124, 'Lipidin-Gold 20 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 20 Capsule', 'Will I need to stop Lipidin-Gold 20 Capsule before surgery or dental procedure?', 'Lipidin-Gold 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipidin-Gold 20 Capsule. However, do not stop taking Lipidin-Gold 20 Capsule on your own.'),
(20125, 'Lipidin-Gold 20 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 20 Capsule', 'What are the lifestyle changes to adapt while taking Lipidin-Gold 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipidin-Gold 20 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20126, 'Lipidin-Gold 20 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 20 Capsule', 'Which painkiller is safe while taking Lipidin-Gold 20 Capsule?', 'Paracetamol is safe to use while taking Lipidin-Gold 20 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipidin-Gold 20 Capsule, as they may increase the risk of bleeding.'),
(20127, 'Lipidin-Gold 20 Capsule', 'Astrodin Lifescience Pvt Ltd', 'Lipidin-Gold 20 Capsule', 'Can the use of Lipidin-Gold 20 Capsule increase the risk of bleeding?', 'Yes, Lipidin-Gold 20 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20128, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20129, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Can Lipidlo 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidlo 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20130, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Is Lipidlo 20mg Tablet used for lowering cholesterol?', 'Lipidlo 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipidlo 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipidlo 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20131, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Can Lipidlo 20mg Tablet be prescribed to children?', 'Lipidlo 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20132, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Is Lipidlo 20mg Tablet a blood thinner?', 'No, Lipidlo 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20133, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Will taking Lipidlo 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidlo 20mg Tablet may increase this risk slightly. This is because Lipidlo 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20134, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'For how long do I need to take Lipidlo 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipidlo 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipidlo 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20135, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Does Lipidlo 20mg Tablet cause weight loss?', 'No, Lipidlo 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipidlo 20mg Tablet.'),
(20136, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Can I stop taking Lipidlo 20mg Tablet?', 'No, you should not stop taking Lipidlo 20mg Tablet without consulting your doctor. If you think that Lipidlo 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20137, 'Lipidlo 20mg Tablet', 'Octane Biotech Pvt Ltd', 'Lipidlo 20mg Tablet', 'Can I take alcohol with Lipidlo 20mg Tablet?', 'No, it is not advised to take alcohol with Lipidlo 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipidlo 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipidlo 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20138, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'For how long should I take Lipidlow 10 Tablet?', 'You may need to take Lipidlow 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipidlow 10 Tablet. Stopping Lipidlow 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20139, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'Does Lipidlow 10 Tablet cause weight gain?', 'No, there is no evidence of Lipidlow 10 Tablet causing weight gain. If you are taking Lipidlow 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20140, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'Does Lipidlow 10 Tablet make you tired?', 'Yes, Lipidlow 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipidlow 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipidlow 10 Tablet.'),
(20141, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'Should Lipidlow 10 Tablet be taken at night?', 'Lipidlow 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20142, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'What foods should be avoided when taking Lipidlow 10 Tablet?', 'Lipidlow 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20143, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'How do I know whether Lipidlow 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipidlow 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipidlow 10 Tablet versus the risks of not taking it at all.'),
(20144, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'Can Lipidlow 10 Tablet cause memory loss?', 'Lipidlow 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipidlow 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20145, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'Can Lipidlow 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipidlow 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20146, 'Lipidlow 10 Tablet', 'Cure & Care Therapeutics', 'Lipidlow 10 Tablet', 'Is it true that Lipidlow 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipidlow 10 Tablet may slightly increase this risk. This is because Lipidlow 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20147, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20148, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Can Lipifine 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipifine 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20149, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Is Lipifine 20mg Tablet used for lowering cholesterol?', 'Lipifine 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipifine 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipifine 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20150, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Can Lipifine 20mg Tablet be prescribed to children?', 'Lipifine 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20151, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Is Lipifine 20mg Tablet a blood thinner?', 'No, Lipifine 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20152, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Will taking Lipifine 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipifine 20mg Tablet may increase this risk slightly. This is because Lipifine 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20153, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'For how long do I need to take Lipifine 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipifine 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipifine 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20154, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Does Lipifine 20mg Tablet cause weight loss?', 'No, Lipifine 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipifine 20mg Tablet.'),
(20155, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Can I stop taking Lipifine 20mg Tablet?', 'No, you should not stop taking Lipifine 20mg Tablet without consulting your doctor. If you think that Lipifine 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20156, 'Lipifine 20mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 20mg Tablet', 'Can I take alcohol with Lipifine 20mg Tablet?', 'No, it is not advised to take alcohol with Lipifine 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipifine 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipifine 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20157, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20158, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Can Lipifine 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipifine 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20159, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Is Lipifine 40mg Tablet used for lowering cholesterol?', 'Lipifine 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipifine 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipifine 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20160, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Can Lipifine 40mg Tablet be prescribed to children?', 'Lipifine 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20161, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Is Lipifine 40mg Tablet a blood thinner?', 'No, Lipifine 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20162, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Will taking Lipifine 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipifine 40mg Tablet may increase this risk slightly. This is because Lipifine 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20163, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. For how long do I need to take Lipifine 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipifine 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipifine 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20164, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Does Lipifine 40mg Tablet cause weight loss?', 'No, Lipifine 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipifine 40mg Tablet.'),
(20165, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Can I stop taking Lipifine 40mg Tablet?', 'No, you should not stop taking Lipifine 40mg Tablet without consulting your doctor. If you think that Lipifine 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20166, 'Lipifine 40mg Tablet', 'Cognitive Life Sciences Ltd', 'Lipifine 40mg Tablet', 'Q. Can I take alcohol with Lipifine 40mg Tablet?', 'No, it is not advised to take alcohol with Lipifine 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipifine 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipifine 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20167, 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Empower Life Sciences', 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipifine R Gold 75mg/10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20168, 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Empower Life Sciences', 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Will I need to stop Lipifine R Gold 75mg/10mg/75mg Capsule before surgery or dental procedure?', 'Lipifine R Gold 75mg/10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipifine R Gold 75mg/10mg/75mg Capsule. However, do not stop taking Lipifine R Gold 75mg/10mg/75mg Capsule on your own.'),
(20169, 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Empower Life Sciences', 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'What are the lifestyle changes to adapt while taking Lipifine R Gold 75mg/10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipifine R Gold 75mg/10mg/75mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20170, 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Empower Life Sciences', 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Which painkiller is safe while taking Lipifine R Gold 75mg/10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipifine R Gold 75mg/10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipifine R Gold 75mg/10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(20171, 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Empower Life Sciences', 'Lipifine R Gold 75mg/10mg/75mg Capsule', 'Can the use of Lipifine R Gold 75mg/10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipifine R Gold 75mg/10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20172, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20173, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Can Lipifit 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipifit 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20174, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Is Lipifit 20mg Tablet used for lowering cholesterol?', 'Lipifit 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipifit 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipifit 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20175, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Can Lipifit 20mg Tablet be prescribed to children?', 'Lipifit 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20176, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Is Lipifit 20mg Tablet a blood thinner?', 'No, Lipifit 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20177, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Will taking Lipifit 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipifit 20mg Tablet may increase this risk slightly. This is because Lipifit 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20178, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'For how long do I need to take Lipifit 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipifit 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipifit 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20179, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Does Lipifit 20mg Tablet cause weight loss?', 'No, Lipifit 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipifit 20mg Tablet.'),
(20180, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Can I stop taking Lipifit 20mg Tablet?', 'No, you should not stop taking Lipifit 20mg Tablet without consulting your doctor. If you think that Lipifit 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20181, 'Lipifit 20mg Tablet', 'Global Care', 'Lipifit 20mg Tablet', 'Can I take alcohol with Lipifit 20mg Tablet?', 'No, it is not advised to take alcohol with Lipifit 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipifit 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipifit 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20182, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20183, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Can Lipifol 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipifol 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20184, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Is Lipifol 10mg Tablet used for lowering cholesterol?', 'Lipifol 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipifol 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipifol 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20185, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Can Lipifol 10mg Tablet be prescribed to children?', 'Lipifol 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20186, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Is Lipifol 10mg Tablet a blood thinner?', 'No, Lipifol 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20187, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Will taking Lipifol 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipifol 10mg Tablet may increase this risk slightly. This is because Lipifol 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20188, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'For how long do I need to take Lipifol 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipifol 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipifol 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20189, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Does Lipifol 10mg Tablet cause weight loss?', 'No, Lipifol 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipifol 10mg Tablet.'),
(20190, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Can I stop taking Lipifol 10mg Tablet?', 'No, you should not stop taking Lipifol 10mg Tablet without consulting your doctor. If you think that Lipifol 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20191, 'Lipifol 10mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 10mg Tablet', 'Can I take alcohol with Lipifol 10mg Tablet?', 'No, it is not advised to take alcohol with Lipifol 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipifol 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipifol 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20192, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20193, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Can Lipifol 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipifol 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20194, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Is Lipifol 20mg Tablet used for lowering cholesterol?', 'Lipifol 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipifol 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipifol 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20195, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Can Lipifol 20mg Tablet be prescribed to children?', 'Lipifol 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20196, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Is Lipifol 20mg Tablet a blood thinner?', 'No, Lipifol 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20197, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Will taking Lipifol 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipifol 20mg Tablet may increase this risk slightly. This is because Lipifol 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20198, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. For how long do I need to take Lipifol 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipifol 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipifol 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20199, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Does Lipifol 20mg Tablet cause weight loss?', 'No, Lipifol 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipifol 20mg Tablet.'),
(20200, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Can I stop taking Lipifol 20mg Tablet?', 'No, you should not stop taking Lipifol 20mg Tablet without consulting your doctor. If you think that Lipifol 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20201, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Q. Can I take alcohol with Lipifol 20mg Tablet?', 'No, it is not advised to take alcohol with Lipifol 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipifol 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipifol 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20202, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20203, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Can Lipifol 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipifol 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20204, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Is Lipifol 20mg Tablet used for lowering cholesterol?', 'Lipifol 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipifol 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipifol 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20205, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Can Lipifol 20mg Tablet be prescribed to children?', 'Lipifol 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20206, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Is Lipifol 20mg Tablet a blood thinner?', 'No, Lipifol 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20207, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Will taking Lipifol 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipifol 20mg Tablet may increase this risk slightly. This is because Lipifol 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20208, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'For how long do I need to take Lipifol 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipifol 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipifol 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20209, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Does Lipifol 20mg Tablet cause weight loss?', 'No, Lipifol 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipifol 20mg Tablet.'),
(20210, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Can I stop taking Lipifol 20mg Tablet?', 'No, you should not stop taking Lipifol 20mg Tablet without consulting your doctor. If you think that Lipifol 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20211, 'Lipifol 20mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipifol 20mg Tablet', 'Can I take alcohol with Lipifol 20mg Tablet?', 'No, it is not advised to take alcohol with Lipifol 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipifol 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipifol 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20212, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20213, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Can Lipigard 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigard 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20214, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Is Lipigard 40mg Tablet used for lowering cholesterol?', 'Lipigard 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipigard 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipigard 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20215, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Can Lipigard 40mg Tablet be prescribed to children?', 'Lipigard 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20216, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Is Lipigard 40mg Tablet a blood thinner?', 'No, Lipigard 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20217, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Will taking Lipigard 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigard 40mg Tablet may increase this risk slightly. This is because Lipigard 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20218, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'For how long do I need to take Lipigard 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipigard 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipigard 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20219, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Does Lipigard 40mg Tablet cause weight loss?', 'No, Lipigard 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipigard 40mg Tablet.'),
(20220, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Can I stop taking Lipigard 40mg Tablet?', 'No, you should not stop taking Lipigard 40mg Tablet without consulting your doctor. If you think that Lipigard 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20221, 'Lipigard 40mg Tablet', 'Nova Lifesciences Pvt. Ltd.', 'Lipigard 40mg Tablet', 'Can I take alcohol with Lipigard 40mg Tablet?', 'No, it is not advised to take alcohol with Lipigard 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipigard 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipigard 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20222, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20223, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Can Lipigaurd 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigaurd 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20224, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Is Lipigaurd 10mg Tablet used for lowering cholesterol?', 'Lipigaurd 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipigaurd 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipigaurd 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20225, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Can Lipigaurd 10mg Tablet be prescribed to children?', 'Lipigaurd 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20226, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Is Lipigaurd 10mg Tablet a blood thinner?', 'No, Lipigaurd 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20227, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Will taking Lipigaurd 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigaurd 10mg Tablet may increase this risk slightly. This is because Lipigaurd 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20228, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'For how long do I need to take Lipigaurd 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipigaurd 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipigaurd 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20229, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Does Lipigaurd 10mg Tablet cause weight loss?', 'No, Lipigaurd 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipigaurd 10mg Tablet.'),
(20230, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Can I stop taking Lipigaurd 10mg Tablet?', 'No, you should not stop taking Lipigaurd 10mg Tablet without consulting your doctor. If you think that Lipigaurd 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20231, 'Lipigaurd 10mg Tablet', 'Nova Healthcare', 'Lipigaurd 10mg Tablet', 'Can I take alcohol with Lipigaurd 10mg Tablet?', 'No, it is not advised to take alcohol with Lipigaurd 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipigaurd 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipigaurd 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20232, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20233, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Can Lipigaurd 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigaurd 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20234, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Is Lipigaurd 20mg Tablet used for lowering cholesterol?', 'Lipigaurd 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipigaurd 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipigaurd 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20235, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Can Lipigaurd 20mg Tablet be prescribed to children?', 'Lipigaurd 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20236, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Is Lipigaurd 20mg Tablet a blood thinner?', 'No, Lipigaurd 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20237, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Will taking Lipigaurd 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigaurd 20mg Tablet may increase this risk slightly. This is because Lipigaurd 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20238, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'For how long do I need to take Lipigaurd 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipigaurd 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipigaurd 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20239, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Does Lipigaurd 20mg Tablet cause weight loss?', 'No, Lipigaurd 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipigaurd 20mg Tablet.'),
(20240, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Can I stop taking Lipigaurd 20mg Tablet?', 'No, you should not stop taking Lipigaurd 20mg Tablet without consulting your doctor. If you think that Lipigaurd 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20241, 'Lipigaurd 20mg Tablet', 'Nova Healthcare', 'Lipigaurd 20mg Tablet', 'Can I take alcohol with Lipigaurd 20mg Tablet?', 'No, it is not advised to take alcohol with Lipigaurd 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipigaurd 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipigaurd 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20242, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'For how long should I take Lipigo 10 Tablet?', 'You may need to take Lipigo 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipigo 10 Tablet. Stopping Lipigo 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20243, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'Does Lipigo 10 Tablet cause weight gain?', 'No, there is no evidence of Lipigo 10 Tablet causing weight gain. If you are taking Lipigo 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20244, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'Does Lipigo 10 Tablet make you tired?', 'Yes, Lipigo 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipigo 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipigo 10 Tablet.'),
(20245, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'Should Lipigo 10 Tablet be taken at night?', 'Lipigo 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20246, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'What foods should be avoided when taking Lipigo 10 Tablet?', 'Lipigo 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20247, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'How do I know whether Lipigo 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipigo 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipigo 10 Tablet versus the risks of not taking it at all.'),
(20248, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'Can Lipigo 10 Tablet cause memory loss?', 'Lipigo 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipigo 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20249, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'Can Lipigo 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigo 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20250, 'Lipigo 10 Tablet', 'Merck Ltd', 'Lipigo 10 Tablet', 'Is it true that Lipigo 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigo 10 Tablet may slightly increase this risk. This is because Lipigo 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20251, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'For how long should I take Lipigo 20 Tablet?', 'You may need to take Lipigo 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipigo 20 Tablet. Stopping Lipigo 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20252, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'Does Lipigo 20 Tablet cause weight gain?', 'No, there is no evidence of Lipigo 20 Tablet causing weight gain. If you are taking Lipigo 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20253, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'Does Lipigo 20 Tablet make you tired?', 'Yes, Lipigo 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipigo 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipigo 20 Tablet.'),
(20254, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'Should Lipigo 20 Tablet be taken at night?', 'Lipigo 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20255, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'What foods should be avoided when taking Lipigo 20 Tablet?', 'Lipigo 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20256, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'How do I know whether Lipigo 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipigo 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipigo 20 Tablet versus the risks of not taking it at all.'),
(20257, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'Can Lipigo 20 Tablet cause memory loss?', 'Lipigo 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipigo 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20258, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'Can Lipigo 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigo 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20259, 'Lipigo 20 Tablet', 'Merck Ltd', 'Lipigo 20 Tablet', 'Is it true that Lipigo 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigo 20 Tablet may slightly increase this risk. This is because Lipigo 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20260, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'For how long should I take Lipigo 40 Tablet?', 'You may need to take Lipigo 40 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipigo 40 Tablet. Stopping Lipigo 40 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20261, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'Does Lipigo 40 Tablet cause weight gain?', 'No, there is no evidence of Lipigo 40 Tablet causing weight gain. If you are taking Lipigo 40 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20262, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'Does Lipigo 40 Tablet make you tired?', 'Yes, Lipigo 40 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipigo 40 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipigo 40 Tablet.'),
(20263, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'Should Lipigo 40 Tablet be taken at night?', 'Lipigo 40 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20264, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'What foods should be avoided when taking Lipigo 40 Tablet?', 'Lipigo 40 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20265, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'How do I know whether Lipigo 40 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipigo 40 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipigo 40 Tablet versus the risks of not taking it at all.'),
(20266, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'Can Lipigo 40 Tablet cause memory loss?', 'Lipigo 40 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipigo 40 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20267, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'Can Lipigo 40 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigo 40 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20268, 'Lipigo 40 Tablet', 'Merck Ltd', 'Lipigo 40 Tablet', 'Is it true that Lipigo 40 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigo 40 Tablet may slightly increase this risk. This is because Lipigo 40 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20269, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'For how long should I take Lipigo 5 Tablet?', 'You may need to take Lipigo 5 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipigo 5 Tablet. Stopping Lipigo 5 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20270, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'Does Lipigo 5 Tablet cause weight gain?', 'No, there is no evidence of Lipigo 5 Tablet causing weight gain. If you are taking Lipigo 5 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20271, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'Does Lipigo 5 Tablet make you tired?', 'Yes, Lipigo 5 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipigo 5 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipigo 5 Tablet.'),
(20272, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'Should Lipigo 5 Tablet be taken at night?', 'Lipigo 5 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20273, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'What foods should be avoided when taking Lipigo 5 Tablet?', 'Lipigo 5 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20274, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'How do I know whether Lipigo 5 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipigo 5 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipigo 5 Tablet versus the risks of not taking it at all.'),
(20275, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'Can Lipigo 5 Tablet cause memory loss?', 'Lipigo 5 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipigo 5 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20276, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'Can Lipigo 5 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigo 5 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20277, 'Lipigo 5 Tablet', 'Merck Ltd', 'Lipigo 5 Tablet', 'Is it true that Lipigo 5 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigo 5 Tablet may slightly increase this risk. This is because Lipigo 5 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20278, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'Can the Lipigo A 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipigo A 10mg/75mg Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20279, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'Will I need to stop Lipigo A 10mg/75mg Capsule before surgery or dental procedure?', 'Lipigo A 10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipigo A 10mg/75mg Capsule. You should not stop taking Lipigo A 10mg/75mg Capsule on your own.'),
(20280, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipigo A 10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipigo A 10mg/75mg Capsule. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20281, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'Which painkiller is safe while taking Lipigo A 10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipigo A 10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipigo A 10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(20282, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'Can the use of Lipigo A 10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipigo A 10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20283, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'How to manage indigestion associated with Lipigo A 10mg/75mg Capsule?', 'Take Lipigo A 10mg/75mg Capsule with or after food to avoid indigestion. Talk to your doctor, if the indigestion problem persists.'),
(20284, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'What medicines should I avoid while taking Lipigo A 10mg/75mg Capsule?', 'Lipigo A 10mg/75mg Capsule can interact with several medicines and can cause serious life-threatening problems. Talk to your doctor and inform him about using Lipigo A 10mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(20285, 'Lipigo A 10mg/75mg Capsule', 'Merck Ltd', 'Lipigo A 10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipigo A 10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20286, 'Lipigo F 10 Tablet', 'Merck Ltd', 'Lipigo F 10 Tablet', 'Q. Can the use of Lipigo F 10 Tablet cause liver damage?', 'Lipigo F 10 Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20287, 'Lipigo F 10 Tablet', 'Merck Ltd', 'Lipigo F 10 Tablet', 'Q. Can the use of Lipigo F 10 Tablet cause muscle pain?', 'Yes, Lipigo F 10 Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20288, 'Lipigo F 10 Tablet', 'Merck Ltd', 'Lipigo F 10 Tablet', 'Q. What lifestyle changes should I adopt while taking Lipigo F 10 Tablet?', 'Making lifestyle changes can boost your health while taking Lipigo F 10 Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20289, 'Lipigo F 10 Tablet', 'Merck Ltd', 'Lipigo F 10 Tablet', 'Q. What medicines should I avoid while taking Lipigo F 10 Tablet?', 'Lipigo F 10 Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipigo F 10 Tablet before taking any prescription or non-prescription medicine.'),
(20290, 'Lipigo F 10 Tablet', 'Merck Ltd', 'Lipigo F 10 Tablet', 'Q. What are the instructions for the storage and disposal of Lipigo F 10 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20291, 'Lipigo F 5 Tablet', 'Merck Ltd', 'Lipigo F 5 Tablet', 'Can the use of Lipigo F 5 Tablet cause liver damage?', 'Lipigo F 5 Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20292, 'Lipigo F 5 Tablet', 'Merck Ltd', 'Lipigo F 5 Tablet', 'Can the use of Lipigo F 5 Tablet cause muscle pain?', 'Yes, Lipigo F 5 Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20293, 'Lipigo F 5 Tablet', 'Merck Ltd', 'Lipigo F 5 Tablet', 'What lifestyle changes should I adopt while taking Lipigo F 5 Tablet?', 'Making lifestyle changes can boost your health while taking Lipigo F 5 Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20294, 'Lipigo F 5 Tablet', 'Merck Ltd', 'Lipigo F 5 Tablet', 'What medicines should I avoid while taking Lipigo F 5 Tablet?', 'Lipigo F 5 Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipigo F 5 Tablet before taking any prescription or non-prescription medicine.'),
(20295, 'Lipigo F 5 Tablet', 'Merck Ltd', 'Lipigo F 5 Tablet', 'What are the instructions for the storage and disposal of Lipigo F 5 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20296, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'For how long should I take Lipigrace 10mg Tablet?', 'You may need to take Lipigrace 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipigrace 10mg Tablet. Stopping Lipigrace 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20297, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'Does Lipigrace 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipigrace 10mg Tablet causing weight gain. If you are taking Lipigrace 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20298, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'Does Lipigrace 10mg Tablet make you tired?', 'Yes, Lipigrace 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipigrace 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipigrace 10mg Tablet.'),
(20299, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'Should Lipigrace 10mg Tablet be taken at night?', 'Lipigrace 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20300, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'What foods should be avoided when taking Lipigrace 10mg Tablet?', 'Lipigrace 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20301, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'How do I know whether Lipigrace 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipigrace 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipigrace 10mg Tablet versus the risks of not taking it at all.'),
(20302, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'Can Lipigrace 10mg Tablet cause memory loss?', 'Lipigrace 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipigrace 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20303, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'Can Lipigrace 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigrace 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20304, 'Lipigrace 10mg Tablet', 'Gracious Pharmaceuticals', 'Lipigrace 10mg Tablet', 'Is it true that Lipigrace 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigrace 10mg Tablet may slightly increase this risk. This is because Lipigrace 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20305, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20306, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Can Lipigran 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigran 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20307, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Is Lipigran 10mg Tablet used for lowering cholesterol?', 'Lipigran 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipigran 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipigran 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20308, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Can Lipigran 10mg Tablet be prescribed to children?', 'Lipigran 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20309, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Is Lipigran 10mg Tablet a blood thinner?', 'No, Lipigran 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20310, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Will taking Lipigran 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigran 10mg Tablet may increase this risk slightly. This is because Lipigran 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20311, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. For how long do I need to take Lipigran 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipigran 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipigran 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20312, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Does Lipigran 10mg Tablet cause weight loss?', 'No, Lipigran 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipigran 10mg Tablet.'),
(20313, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Can I stop taking Lipigran 10mg Tablet?', 'No, you should not stop taking Lipigran 10mg Tablet without consulting your doctor. If you think that Lipigran 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20314, 'Lipigran 10mg Tablet', 'Grantham Lifesciences', 'Lipigran 10mg Tablet (Grantham Lifesciences)', 'Q. Can I take alcohol with Lipigran 10mg Tablet?', 'No, it is not advised to take alcohol with Lipigran 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipigran 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipigran 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20315, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20316, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Can Lipigran 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipigran 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20317, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Is Lipigran 10mg Tablet used for lowering cholesterol?', 'Lipigran 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipigran 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipigran 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20318, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Can Lipigran 10mg Tablet be prescribed to children?', 'Lipigran 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20319, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Is Lipigran 10mg Tablet a blood thinner?', 'No, Lipigran 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20320, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Will taking Lipigran 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipigran 10mg Tablet may increase this risk slightly. This is because Lipigran 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20321, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. For how long do I need to take Lipigran 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipigran 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipigran 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20322, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Does Lipigran 10mg Tablet cause weight loss?', 'No, Lipigran 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipigran 10mg Tablet.'),
(20323, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Can I stop taking Lipigran 10mg Tablet?', 'No, you should not stop taking Lipigran 10mg Tablet without consulting your doctor. If you think that Lipigran 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20324, 'Lipigran 10mg Tablet', 'Scythian Healthcare', 'Lipigran 10mg Tablet (Scythian Healthcare)', 'Q. Can I take alcohol with Lipigran 10mg Tablet?', 'No, it is not advised to take alcohol with Lipigran 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipigran 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipigran 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20325, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20326, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Can Lipiheal 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiheal 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20327, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Is Lipiheal 10mg Tablet used for lowering cholesterol?', 'Lipiheal 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiheal 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiheal 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20328, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Can Lipiheal 10mg Tablet be prescribed to children?', 'Lipiheal 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20329, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Is Lipiheal 10mg Tablet a blood thinner?', 'No, Lipiheal 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20330, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Will taking Lipiheal 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiheal 10mg Tablet may increase this risk slightly. This is because Lipiheal 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20331, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'For how long do I need to take Lipiheal 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiheal 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiheal 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20332, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Does Lipiheal 10mg Tablet cause weight loss?', 'No, Lipiheal 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiheal 10mg Tablet.'),
(20333, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Can I stop taking Lipiheal 10mg Tablet?', 'No, you should not stop taking Lipiheal 10mg Tablet without consulting your doctor. If you think that Lipiheal 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20334, 'Lipiheal 10mg Tablet', 'Medxone Healthcare', 'Lipiheal 10mg Tablet', 'Can I take alcohol with Lipiheal 10mg Tablet?', 'No, it is not advised to take alcohol with Lipiheal 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiheal 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiheal 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20335, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20336, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Can Lipiheal 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiheal 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20337, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Is Lipiheal 20mg Tablet used for lowering cholesterol?', 'Lipiheal 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiheal 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiheal 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20338, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Can Lipiheal 20mg Tablet be prescribed to children?', 'Lipiheal 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20339, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Is Lipiheal 20mg Tablet a blood thinner?', 'No, Lipiheal 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20340, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Will taking Lipiheal 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiheal 20mg Tablet may increase this risk slightly. This is because Lipiheal 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20341, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. For how long do I need to take Lipiheal 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiheal 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiheal 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20342, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Does Lipiheal 20mg Tablet cause weight loss?', 'No, Lipiheal 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiheal 20mg Tablet.'),
(20343, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Can I stop taking Lipiheal 20mg Tablet?', 'No, you should not stop taking Lipiheal 20mg Tablet without consulting your doctor. If you think that Lipiheal 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20344, 'Lipiheal 20mg Tablet', 'Medxone Healthcare', 'Lipiheal 20mg Tablet', 'Q. Can I take alcohol with Lipiheal 20mg Tablet?', 'No, it is not advised to take alcohol with Lipiheal 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiheal 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiheal 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20345, 'Lipihit CV 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit CV 10 Capsule', 'Can the use of Lipihit CV 10 Capsule increase the risk of bleeding?', 'Yes, Lipihit CV 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20346, 'Lipihit CV 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit CV 10 Capsule', 'What medicines should I avoid while taking Lipihit CV 10 Capsule?', 'Lipihit CV 10 Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipihit CV 10 Capsule before taking any prescription or non-prescription medicine.'),
(20347, 'Lipihit CV 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit CV 10 Capsule', 'Can Lipihit CV 10 Capsule cause muscle pain?', 'Yes, Lipihit CV 10 Capsule can cause muscle pain by injuring muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipihit CV 10 Capsule.'),
(20348, 'Lipihit CV 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit CV 10 Capsule', 'Will I need to stop Lipihit CV 10 Capsule before surgery or dental procedure?', 'Lipihit CV 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipihit CV 10 Capsule. You should not stop taking Lipihit CV 10 Capsule on your own.'),
(20349, 'Lipihit CV 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit CV 10 Capsule', 'What lifestyle changes should be adopted while taking Lipihit CV 10 Capsule?', 'Making lifestyle changes can boost your health while taking Lipihit CV 10 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20350, 'Lipihit CV 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit CV 10 Capsule', 'Which painkiller is safe while taking Lipihit CV 10 Capsule?', 'Paracetamol is safe to use while taking Lipihit CV 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipihit CV 10 Capsule, as they may increase the risk of bleeding.'),
(20351, 'Lipihit F 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit F 10 Tablet', 'Can the use of Lipihit F 10 Tablet cause liver damage?', 'Lipihit F 10 Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20352, 'Lipihit F 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit F 10 Tablet', 'Can the use of Lipihit F 10 Tablet cause muscle pain?', 'Yes, Lipihit F 10 Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20353, 'Lipihit F 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit F 10 Tablet', 'What lifestyle changes should I adopt while taking Lipihit F 10 Tablet?', 'Making lifestyle changes can boost your health while taking Lipihit F 10 Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20354, 'Lipihit F 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit F 10 Tablet', 'What medicines should I avoid while taking Lipihit F 10 Tablet?', 'Lipihit F 10 Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipihit F 10 Tablet before taking any prescription or non-prescription medicine.'),
(20355, 'Lipihit F 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit F 10 Tablet', 'What are the instructions for the storage and disposal of Lipihit F 10 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20356, 'Lipihit Gold 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit Gold 10 Capsule', 'Q. What are the instructions for the storage and disposal of Lipihit Gold 10 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20357, 'Lipihit Gold 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit Gold 10 Capsule', 'Q. Will I need to stop Lipihit Gold 10 Capsule before surgery or dental procedure?', 'Lipihit Gold 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipihit Gold 10 Capsule. However, do not stop taking Lipihit Gold 10 Capsule on your own.'),
(20358, 'Lipihit Gold 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit Gold 10 Capsule', 'Q. What are the lifestyle changes to adapt while taking Lipihit Gold 10 Capsule?', 'Making lifestyle changes can boost your health while taking Lipihit Gold 10 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20359, 'Lipihit Gold 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit Gold 10 Capsule', 'Q. Which painkiller is safe while taking Lipihit Gold 10 Capsule?', 'Paracetamol is safe to use while taking Lipihit Gold 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipihit Gold 10 Capsule, as they may increase the risk of bleeding.'),
(20360, 'Lipihit Gold 10 Capsule', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit Gold 10 Capsule', 'Q. Can the use of Lipihit Gold 10 Capsule increase the risk of bleeding?', 'Yes, Lipihit Gold 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20361, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'For how long should I take Lipihit OD 10 Tablet?', 'You may need to take Lipihit OD 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipihit OD 10 Tablet. Stopping Lipihit OD 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20362, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'Does Lipihit OD 10 Tablet cause weight gain?', 'No, there is no evidence of Lipihit OD 10 Tablet causing weight gain. If you are taking Lipihit OD 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20363, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'Does Lipihit OD 10 Tablet make you tired?', 'Yes, Lipihit OD 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipihit OD 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipihit OD 10 Tablet.'),
(20364, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'Should Lipihit OD 10 Tablet be taken at night?', 'Lipihit OD 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20365, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'What foods should be avoided when taking Lipihit OD 10 Tablet?', 'Lipihit OD 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20366, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'How do I know whether Lipihit OD 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipihit OD 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipihit OD 10 Tablet versus the risks of not taking it at all.'),
(20367, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'Can Lipihit OD 10 Tablet cause memory loss?', 'Lipihit OD 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipihit OD 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20368, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'Can Lipihit OD 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipihit OD 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20369, 'Lipihit OD 10 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 10 Tablet', 'Is it true that Lipihit OD 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipihit OD 10 Tablet may slightly increase this risk. This is because Lipihit OD 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20370, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'For how long should I take Lipihit OD 20 Tablet?', 'You may need to take Lipihit OD 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipihit OD 20 Tablet. Stopping Lipihit OD 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20371, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'Does Lipihit OD 20 Tablet cause weight gain?', 'No, there is no evidence of Lipihit OD 20 Tablet causing weight gain. If you are taking Lipihit OD 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20372, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'Does Lipihit OD 20 Tablet make you tired?', 'Yes, Lipihit OD 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipihit OD 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipihit OD 20 Tablet.'),
(20373, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'Should Lipihit OD 20 Tablet be taken at night?', 'Lipihit OD 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20374, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'What foods should be avoided when taking Lipihit OD 20 Tablet?', 'Lipihit OD 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20375, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'How do I know whether Lipihit OD 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipihit OD 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipihit OD 20 Tablet versus the risks of not taking it at all.'),
(20376, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'Can Lipihit OD 20 Tablet cause memory loss?', 'Lipihit OD 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipihit OD 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20377, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'Can Lipihit OD 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipihit OD 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20378, 'Lipihit OD 20 Tablet', 'Stemgrow Pharmaceuticals Pvt Ltd', 'Lipihit OD 20 Tablet', 'Is it true that Lipihit OD 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipihit OD 20 Tablet may slightly increase this risk. This is because Lipihit OD 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20379, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20380, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Can Lipijoy 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipijoy 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20381, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Is Lipijoy 20mg Tablet used for lowering cholesterol?', 'Lipijoy 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipijoy 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipijoy 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20382, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Can Lipijoy 20mg Tablet be prescribed to children?', 'Lipijoy 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20383, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Is Lipijoy 20mg Tablet a blood thinner?', 'No, Lipijoy 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20384, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Will taking Lipijoy 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipijoy 20mg Tablet may increase this risk slightly. This is because Lipijoy 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20385, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'For how long do I need to take Lipijoy 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipijoy 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipijoy 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20386, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Does Lipijoy 20mg Tablet cause weight loss?', 'No, Lipijoy 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipijoy 20mg Tablet.'),
(20387, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Can I stop taking Lipijoy 20mg Tablet?', 'No, you should not stop taking Lipijoy 20mg Tablet without consulting your doctor. If you think that Lipijoy 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20388, 'Lipijoy 20mg Tablet', 'Vjovis Health Care Private Limited', 'Lipijoy 20mg Tablet', 'Can I take alcohol with Lipijoy 20mg Tablet?', 'No, it is not advised to take alcohol with Lipijoy 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipijoy 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipijoy 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20389, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20390, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Can Lipikay 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipikay 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20391, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Is Lipikay 10 Tablet used for lowering cholesterol?', 'Lipikay 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipikay 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipikay 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20392, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Can Lipikay 10 Tablet be prescribed to children?', 'Lipikay 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20393, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Is Lipikay 10 Tablet a blood thinner?', 'No, Lipikay 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20394, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Will taking Lipikay 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipikay 10 Tablet may increase this risk slightly. This is because Lipikay 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20395, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'For how long do I need to take Lipikay 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipikay 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipikay 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20396, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Does Lipikay 10 Tablet cause weight loss?', 'No, Lipikay 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipikay 10 Tablet.'),
(20397, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Can I stop taking Lipikay 10 Tablet?', 'No, you should not stop taking Lipikay 10 Tablet without consulting your doctor. If you think that Lipikay 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20398, 'Lipikay 10 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 10 Tablet', 'Can I take alcohol with Lipikay 10 Tablet?', 'No, it is not advised to take alcohol with Lipikay 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipikay 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipikay 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20399, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20400, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Can Lipikay 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipikay 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20401, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Is Lipikay 20 Tablet used for lowering cholesterol?', 'Lipikay 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipikay 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipikay 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20402, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Can Lipikay 20 Tablet be prescribed to children?', 'Lipikay 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20403, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Is Lipikay 20 Tablet a blood thinner?', 'No, Lipikay 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20404, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Will taking Lipikay 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipikay 20 Tablet may increase this risk slightly. This is because Lipikay 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20405, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'For how long do I need to take Lipikay 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipikay 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipikay 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20406, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Does Lipikay 20 Tablet cause weight loss?', 'No, Lipikay 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipikay 20 Tablet.'),
(20407, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Can I stop taking Lipikay 20 Tablet?', 'No, you should not stop taking Lipikay 20 Tablet without consulting your doctor. If you think that Lipikay 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20408, 'Lipikay 20 Tablet', 'Nava Healthcare Pvt Ltd', 'Lipikay 20 Tablet', 'Can I take alcohol with Lipikay 20 Tablet?', 'No, it is not advised to take alcohol with Lipikay 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipikay 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipikay 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20409, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20410, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Can Lipikind 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipikind 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20411, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Is Lipikind 10 Tablet used for lowering cholesterol?', 'Lipikind 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipikind 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipikind 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20412, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Can Lipikind 10 Tablet be prescribed to children?', 'Lipikind 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20413, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Is Lipikind 10 Tablet a blood thinner?', 'No, Lipikind 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20414, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Will taking Lipikind 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipikind 10 Tablet may increase this risk slightly. This is because Lipikind 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20415, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'For how long do I need to take Lipikind 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipikind 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipikind 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20416, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Does Lipikind 10 Tablet cause weight loss?', 'No, Lipikind 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipikind 10 Tablet.'),
(20417, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Can I stop taking Lipikind 10 Tablet?', 'No, you should not stop taking Lipikind 10 Tablet without consulting your doctor. If you think that Lipikind 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20418, 'Lipikind 10 Tablet', 'Mankind Pharma Ltd', 'Lipikind 10 Tablet', 'Can I take alcohol with Lipikind 10 Tablet?', 'No, it is not advised to take alcohol with Lipikind 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipikind 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipikind 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20419, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20420, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Can Lipikind 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipikind 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20421, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Is Lipikind 20 Tablet used for lowering cholesterol?', 'Lipikind 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipikind 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipikind 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20422, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Can Lipikind 20 Tablet be prescribed to children?', 'Lipikind 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20423, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Is Lipikind 20 Tablet a blood thinner?', 'No, Lipikind 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20424, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Will taking Lipikind 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipikind 20 Tablet may increase this risk slightly. This is because Lipikind 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20425, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'For how long do I need to take Lipikind 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipikind 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipikind 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20426, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Does Lipikind 20 Tablet cause weight loss?', 'No, Lipikind 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipikind 20 Tablet.'),
(20427, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Can I stop taking Lipikind 20 Tablet?', 'No, you should not stop taking Lipikind 20 Tablet without consulting your doctor. If you think that Lipikind 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20428, 'Lipikind 20 Tablet', 'Mankind Pharma Ltd', 'Lipikind 20 Tablet', 'Can I take alcohol with Lipikind 20 Tablet?', 'No, it is not advised to take alcohol with Lipikind 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipikind 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipikind 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20429, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20430, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Can Lipikind 40 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipikind 40 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20431, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Is Lipikind 40 Tablet used for lowering cholesterol?', 'Lipikind 40 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipikind 40 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipikind 40 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20432, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Can Lipikind 40 Tablet be prescribed to children?', 'Lipikind 40 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20433, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Is Lipikind 40 Tablet a blood thinner?', 'No, Lipikind 40 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20434, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Will taking Lipikind 40 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipikind 40 Tablet may increase this risk slightly. This is because Lipikind 40 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20435, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'For how long do I need to take Lipikind 40 Tablet? Is it safe for long-term use?', 'You may need to take Lipikind 40 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipikind 40 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20436, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Does Lipikind 40 Tablet cause weight loss?', 'No, Lipikind 40 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipikind 40 Tablet.'),
(20437, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Can I stop taking Lipikind 40 Tablet?', 'No, you should not stop taking Lipikind 40 Tablet without consulting your doctor. If you think that Lipikind 40 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20438, 'Lipikind 40 Tablet', 'Mankind Pharma Ltd', 'Lipikind 40 Tablet', 'Can I take alcohol with Lipikind 40 Tablet?', 'No, it is not advised to take alcohol with Lipikind 40 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipikind 40 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipikind 40 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20439, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20440, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Can Lipikind 80 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipikind 80 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20441, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Is Lipikind 80 Tablet used for lowering cholesterol?', 'Lipikind 80 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipikind 80 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipikind 80 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20442, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Can Lipikind 80 Tablet be prescribed to children?', 'Lipikind 80 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20443, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Is Lipikind 80 Tablet a blood thinner?', 'No, Lipikind 80 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20444, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Will taking Lipikind 80 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipikind 80 Tablet may increase this risk slightly. This is because Lipikind 80 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20445, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. For how long do I need to take Lipikind 80 Tablet? Is it safe for long-term use?', 'You may need to take Lipikind 80 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipikind 80 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20446, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Does Lipikind 80 Tablet cause weight loss?', 'No, Lipikind 80 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipikind 80 Tablet.'),
(20447, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Can I stop taking Lipikind 80 Tablet?', 'No, you should not stop taking Lipikind 80 Tablet without consulting your doctor. If you think that Lipikind 80 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20448, 'Lipikind 80 Tablet', 'Mankind Pharma Ltd', 'Lipikind 80 Tablet', 'Q. Can I take alcohol with Lipikind 80 Tablet?', 'No, it is not advised to take alcohol with Lipikind 80 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipikind 80 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipikind 80 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20449, 'Lipikind CV 10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 10mg/75mg Capsule', 'Can Lipikind CV 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipikind CV 10mg/75mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipikind CV 10mg/75mg Capsule.'),
(20450, 'Lipikind CV 10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 10mg/75mg Capsule', 'Will I need to stop Lipikind CV 10mg/75mg Capsule before surgery or dental procedure?', 'Lipikind CV 10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipikind CV 10mg/75mg Capsule. But, you should not stop taking Lipikind CV 10mg/75mg Capsule on your own.'),
(20451, 'Lipikind CV 10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 10mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipikind CV 10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipikind CV 10mg/75mg Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20452, 'Lipikind CV 10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 10mg/75mg Capsule', 'Which painkiller is safe while taking Lipikind CV 10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipikind CV 10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipikind CV 10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(20453, 'Lipikind CV 10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 10mg/75mg Capsule', 'Can the use of Lipikind CV 10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipikind CV 10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20454, 'Lipikind CV 10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 10mg/75mg Capsule', 'What medicines should I avoid while taking Lipikind CV 10mg/75mg Capsule?', 'Lipikind CV 10mg/75mg Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipikind CV 10mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(20455, 'Lipikind CV 10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipikind CV 10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20456, 'Lipikind CV 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 20 Capsule', 'Can Lipikind CV 20 Capsule cause muscle pain?', 'Yes, Lipikind CV 20 Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipikind CV 20 Capsule.'),
(20457, 'Lipikind CV 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 20 Capsule', 'Will I need to stop Lipikind CV 20 Capsule before surgery or dental procedure?', 'Lipikind CV 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipikind CV 20 Capsule. But, you should not stop taking Lipikind CV 20 Capsule on your own.'),
(20458, 'Lipikind CV 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 20 Capsule', 'What lifestyle changes should be adopted while taking Lipikind CV 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipikind CV 20 Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20459, 'Lipikind CV 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 20 Capsule', 'Which painkiller is safe while taking Lipikind CV 20 Capsule?', 'Paracetamol is safe to use while taking Lipikind CV 20 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipikind CV 20 Capsule, as they may increase the risk of bleeding.'),
(20460, 'Lipikind CV 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 20 Capsule', 'Can the use of Lipikind CV 20 Capsule increase the risk of bleeding?', 'Yes, Lipikind CV 20 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20461, 'Lipikind CV 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 20 Capsule', 'What medicines should I avoid while taking Lipikind CV 20 Capsule?', 'Lipikind CV 20 Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipikind CV 20 Capsule before taking any prescription or non-prescription medicine.'),
(20462, 'Lipikind CV 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind CV 20 Capsule', 'What are the instructions for the storage and disposal of Lipikind CV 20 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20463, 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Q. What is Lipikind Plus 75mg/10mg/75mg Capsule?', 'Lipikind Plus 75mg/10mg/75mg Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(20464, 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Q. Can the use of Lipikind Plus 75mg/10mg/75mg Capsule cause dizziness?', 'Yes, the use of Lipikind Plus 75mg/10mg/75mg Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(20465, 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Q. Can the use of Lipikind Plus 75mg/10mg/75mg Capsule cause nausea and vomiting?', 'Yes, the use of Lipikind Plus 75mg/10mg/75mg Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(20466, 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Mankind Pharma Ltd', 'Lipikind Plus 75mg/10mg/75mg Capsule', 'Q. What is the recommended storage condition for the Lipikind Plus 75mg/10mg/75mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20467, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'Can Lipikind-AS 20 Capsule affect the liver?', 'Yes, Lipikind-AS 20 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(20468, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'What are the recommended storage conditions for Lipikind-AS 20 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20469, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'Can the Lipikind-AS 20 Capsule cause muscle pain?', 'Yes, Lipikind-AS 20 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20470, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'Will I need to stop Lipikind-AS 20 Capsule before surgery or dental procedure?', 'Lipikind-AS 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipikind-AS 20 Capsule. You should not stop taking Lipikind-AS 20 Capsule on your own.'),
(20471, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'What are the lifestyle changes one should adopt while taking Lipikind-AS 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipikind-AS 20 Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20472, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'Which painkiller is safe while taking Lipikind-AS 20 Capsule?', 'Paracetamol is safe to use while taking Lipikind-AS 20 Capsule for reducing pain. Avoid the use of other painkillers while taking Lipikind-AS 20 Capsule, as they may increase the risk of bleeding.'),
(20473, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'Which medicines should I avoid while taking Lipikind-AS 20 Capsule?', 'Lipikind-AS 20 Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipikind-AS 20 Capsule before taking any prescription or non-prescription medicine.'),
(20474, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'Can Lipikind-AS 20 Capsule affect the liver?', 'Yes, Lipikind-AS 20 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(20475, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'What are the recommended storage conditions for Lipikind-AS 20 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20476, 'Lipikind-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS 20 Capsule', 'Can the Lipikind-AS 20 Capsule cause muscle pain?', 'Yes, Lipikind-AS 20 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20477, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'Can Lipikind-AS Capsule affect the liver?', 'Yes, Lipikind-AS Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(20478, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'What are the recommended storage conditions for Lipikind-AS Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20479, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'Can the Lipikind-AS Capsule cause muscle pain?', 'Yes, Lipikind-AS Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20480, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'Will I need to stop Lipikind-AS Capsule before surgery or dental procedure?', 'Lipikind-AS Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipikind-AS Capsule. You should not stop taking Lipikind-AS Capsule on your own.'),
(20481, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'What are the lifestyle changes one should adopt while taking Lipikind-AS Capsule?', 'Making lifestyle changes can boost your health while taking Lipikind-AS Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20482, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'Which painkiller is safe while taking Lipikind-AS Capsule?', 'Paracetamol is safe to use while taking Lipikind-AS Capsule for reducing pain. Avoid the use of other painkillers while taking Lipikind-AS Capsule, as they may increase the risk of bleeding.'),
(20483, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'Which medicines should I avoid while taking Lipikind-AS Capsule?', 'Lipikind-AS Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipikind-AS Capsule before taking any prescription or non-prescription medicine.'),
(20484, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'Can Lipikind-AS Capsule affect the liver?', 'Yes, Lipikind-AS Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(20485, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'What are the recommended storage conditions for Lipikind-AS Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20486, 'Lipikind-AS Capsule', 'Mankind Pharma Ltd', 'Lipikind-AS Capsule', 'Can the Lipikind-AS Capsule cause muscle pain?', 'Yes, Lipikind-AS Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20487, 'Lipikind-F Tablet', 'Mankind Pharma Ltd', 'Lipikind-F Tablet', 'Can Lipikind-F Tablet cause liver damage?', 'Lipikind-F Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20488, 'Lipikind-F Tablet', 'Mankind Pharma Ltd', 'Lipikind-F Tablet', 'Can Lipikind-F Tablet cause muscle pain?', 'Yes, Lipikind-F Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipikind-F Tablet.'),
(20489, 'Lipikind-F Tablet', 'Mankind Pharma Ltd', 'Lipikind-F Tablet', 'What lifestyle changes should be adopted while taking Lipikind-F Tablet?', 'Making lifestyle changes can boost your health while taking Lipikind-F Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20490, 'Lipikind-F Tablet', 'Mankind Pharma Ltd', 'Lipikind-F Tablet', 'What medicines should I avoid while taking Lipikind-F Tablet?', 'The use of Lipikind-F Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipikind-F Tablet.'),
(20491, 'Lipikind-Plus 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus 20 Capsule', 'What is Lipikind-Plus 20 Capsule?', 'Lipikind-Plus 20 Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(20492, 'Lipikind-Plus 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus 20 Capsule', 'Can the use of Lipikind-Plus 20 Capsule cause dizziness?', 'Yes, the use of Lipikind-Plus 20 Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(20493, 'Lipikind-Plus 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus 20 Capsule', 'Can the use of Lipikind-Plus 20 Capsule cause nausea and vomiting?', 'Yes, the use of Lipikind-Plus 20 Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(20494, 'Lipikind-Plus 20 Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus 20 Capsule', 'What is the recommended storage condition for the Lipikind-Plus 20 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20495, 'Lipikind-Plus Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus Capsule', 'What is Lipikind-Plus Capsule?', 'Lipikind-Plus Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(20496, 'Lipikind-Plus Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus Capsule', 'Can the use of Lipikind-Plus Capsule cause dizziness?', 'Yes, the use of Lipikind-Plus Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(20497, 'Lipikind-Plus Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus Capsule', 'Can the use of Lipikind-Plus Capsule cause nausea and vomiting?', 'Yes, the use of Lipikind-Plus Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(20498, 'Lipikind-Plus Capsule', 'Mankind Pharma Ltd', 'Lipikind-Plus Capsule', 'What is the recommended storage condition for the Lipikind-Plus Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20499, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20500, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Can Lipiles 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiles 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20501, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Is Lipiles 20mg Tablet used for lowering cholesterol?', 'Lipiles 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiles 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiles 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20502, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Can Lipiles 20mg Tablet be prescribed to children?', 'Lipiles 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20503, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Is Lipiles 20mg Tablet a blood thinner?', 'No, Lipiles 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20504, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Will taking Lipiles 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiles 20mg Tablet may increase this risk slightly. This is because Lipiles 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20505, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'For how long do I need to take Lipiles 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiles 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiles 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20506, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Does Lipiles 20mg Tablet cause weight loss?', 'No, Lipiles 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiles 20mg Tablet.'),
(20507, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Can I stop taking Lipiles 20mg Tablet?', 'No, you should not stop taking Lipiles 20mg Tablet without consulting your doctor. If you think that Lipiles 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20508, 'Lipiles 20mg Tablet', 'Indchemie Health Specialities Pvt Ltd', 'Lipiles 20mg Tablet', 'Can I take alcohol with Lipiles 20mg Tablet?', 'No, it is not advised to take alcohol with Lipiles 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiles 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiles 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20509, 'Lipiloss CV 10mg/75mg Tablet', 'Seluria Pharmaceuticals', 'Lipiloss CV 10mg/75mg Tablet', 'Can Lipiloss CV 10mg/75mg Tablet cause muscle pain?', 'Yes, Lipiloss CV 10mg/75mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipiloss CV 10mg/75mg Tablet.'),
(20510, 'Lipiloss CV 10mg/75mg Tablet', 'Seluria Pharmaceuticals', 'Lipiloss CV 10mg/75mg Tablet', 'Will I need to stop Lipiloss CV 10mg/75mg Tablet before surgery or dental procedure?', 'Lipiloss CV 10mg/75mg Tablet may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipiloss CV 10mg/75mg Tablet. But, you should not stop taking Lipiloss CV 10mg/75mg Tablet on your own.'),
(20511, 'Lipiloss CV 10mg/75mg Tablet', 'Seluria Pharmaceuticals', 'Lipiloss CV 10mg/75mg Tablet', 'What lifestyle changes should be adopted while taking Lipiloss CV 10mg/75mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipiloss CV 10mg/75mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20512, 'Lipiloss CV 10mg/75mg Tablet', 'Seluria Pharmaceuticals', 'Lipiloss CV 10mg/75mg Tablet', 'Which painkiller is safe while taking Lipiloss CV 10mg/75mg Tablet?', 'Paracetamol is safe to use while taking Lipiloss CV 10mg/75mg Tablet for relieving pain. Avoid the use of other painkillers while taking Lipiloss CV 10mg/75mg Tablet, as they may increase the risk of bleeding.'),
(20513, 'Lipiloss CV 10mg/75mg Tablet', 'Seluria Pharmaceuticals', 'Lipiloss CV 10mg/75mg Tablet', 'Can the use of Lipiloss CV 10mg/75mg Tablet increase the risk of bleeding?', 'Yes, Lipiloss CV 10mg/75mg Tablet increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20514, 'Lipiloss CV 10mg/75mg Tablet', 'Seluria Pharmaceuticals', 'Lipiloss CV 10mg/75mg Tablet', 'What medicines should I avoid while taking Lipiloss CV 10mg/75mg Tablet?', 'Lipiloss CV 10mg/75mg Tablet should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipiloss CV 10mg/75mg Tablet before taking any prescription or non-prescription medicine.'),
(20515, 'Lipiloss CV 10mg/75mg Tablet', 'Seluria Pharmaceuticals', 'Lipiloss CV 10mg/75mg Tablet', 'What are the instructions for the storage and disposal of Lipiloss CV 10mg/75mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20516, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. How long does it take for Lipin 5mg Tablet to work?', 'Lipin 5mg Tablet starts working on the day it is taken. However, it may take weeks to see the full effect. You should continue taking the medicine even if you feel better or if you do not notice any considerable difference. Consult your doctor if you have any concerns or you feel worse after taking the medicine.'),
(20517, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. Does Lipin 5mg Tablet cause itching?', 'Lipin 5mg Tablet may cause itching in some patients, though it is an uncommon side effect. However, if you experience severe itching contact your doctor.'),
(20518, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. Is Lipin 5mg Tablet bad for the kidneys?', 'No, there is no evidence that Lipin 5mg Tablet causes deterioration of kidney problems. Lipin 5mg Tablet can be used in normal doses in patients with kidney problems. In fact, its blood pressure-lowering effect, it helps to prevent injury to the kidneys due to hypertension.'),
(20519, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. Should I take Lipin 5mg Tablet in the morning or at night?', 'Lipin 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(20520, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. For how long do I need to take Lipin 5mg Tablet?', 'You should keep on taking Lipin 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lipin 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(20521, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. Is Lipin 5mg Tablet a beta-blocker?', 'No, Lipin 5mg Tablet is not a beta-blocker. It belongs to a class of medicines known as calcium channel blockers. It lowers blood pressure by relaxing the blood vessels so that blood can easily flow through the blood vessels.'),
(20522, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. What are the serious side effects of Lipin 5mg Tablet?', 'Lipin 5mg Tablet may cause some serious side effects such as liver problems (yellowing of skin, nausea, vomiting, and loss of appetite), pancreatitis (severe stomach pain, nausea, and vomiting), and recurrent chest pain which may be indicative of a heart attack. However, these side effects are rarely seen. Remember that your doctor has prescribed this medicine to you because the benefit to you is greater than the risk of any potential side effects. Follow your doctor\'s advice.'),
(20523, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. What should I avoid while taking Lipin 5mg Tablet?', 'Consult your doctor first before starting any new prescription or non-prescription medicines or supplements. Take low sodium and low-fat diet, and adhere to the lifestyle changes as advised by your doctor. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lipin 5mg Tablet. Stop smoking and taking alcohol as this helps to lower your blood pressure and prevents heart problems.'),
(20524, 'Lipin 5mg Tablet', 'Lexus Organics', 'Lipin 5mg Tablet', 'Q. I have developed ankle edema and swelling over my feet after using a Lipin 5mg Tablet. What should I do?', 'Lipin 5mg Tablet can cause ankle or foot swelling. To reduce swelling raise your legs while you are sitting down. Talk to your doctor if it does not go away.'),
(20525, 'Lipin AT 5mg/50mg Tablet', 'Lexus Organics', 'Lipin AT 5mg/50mg Tablet', 'What lifestyle changes should be made while using Lipin AT 5mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipin AT 5mg/50mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(20526, 'Lipin AT 5mg/50mg Tablet', 'Lexus Organics', 'Lipin AT 5mg/50mg Tablet', 'Can I stop taking Lipin AT 5mg/50mg Tablet if I feel well?', 'No, keep using Lipin AT 5mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Lipin AT 5mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(20527, 'Lipin AT 5mg/50mg Tablet', 'Lexus Organics', 'Lipin AT 5mg/50mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20528, 'Lipin AT 5mg/50mg Tablet', 'Lexus Organics', 'Lipin AT 5mg/50mg Tablet', 'What are the contraindications associated with the use of Lipin AT 5mg/50mg Tablet?', 'Lipin AT 5mg/50mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(20529, 'Lipin AT 5mg/50mg Tablet', 'Lexus Organics', 'Lipin AT 5mg/50mg Tablet', 'Can the use of Lipin AT 5mg/50mg Tablet cause headache?', 'Yes, the use of Lipin AT 5mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(20530, 'Lipin AT 5mg/50mg Tablet', 'Lexus Organics', 'Lipin AT 5mg/50mg Tablet', 'Can I feel dizzy after taking Lipin AT 5mg/50mg Tablet?', 'Yes, the use of Lipin AT 5mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(20531, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20532, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Can Lipina 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipina 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20533, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Is Lipina 10 Tablet used for lowering cholesterol?', 'Lipina 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipina 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipina 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20534, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Can Lipina 10 Tablet be prescribed to children?', 'Lipina 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20535, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Is Lipina 10 Tablet a blood thinner?', 'No, Lipina 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20536, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Will taking Lipina 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipina 10 Tablet may increase this risk slightly. This is because Lipina 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20537, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'For how long do I need to take Lipina 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipina 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipina 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20538, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Does Lipina 10 Tablet cause weight loss?', 'No, Lipina 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipina 10 Tablet.'),
(20539, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Can I stop taking Lipina 10 Tablet?', 'No, you should not stop taking Lipina 10 Tablet without consulting your doctor. If you think that Lipina 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20540, 'Lipina 10 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 10 Tablet', 'Can I take alcohol with Lipina 10 Tablet?', 'No, it is not advised to take alcohol with Lipina 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipina 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipina 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20541, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20542, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Can Lipina 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipina 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20543, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Is Lipina 20 Tablet used for lowering cholesterol?', 'Lipina 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipina 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipina 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20544, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Can Lipina 20 Tablet be prescribed to children?', 'Lipina 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20545, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Is Lipina 20 Tablet a blood thinner?', 'No, Lipina 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20546, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Will taking Lipina 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipina 20 Tablet may increase this risk slightly. This is because Lipina 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20547, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'For how long do I need to take Lipina 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipina 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipina 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20548, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Does Lipina 20 Tablet cause weight loss?', 'No, Lipina 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipina 20 Tablet.'),
(20549, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Can I stop taking Lipina 20 Tablet?', 'No, you should not stop taking Lipina 20 Tablet without consulting your doctor. If you think that Lipina 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20550, 'Lipina 20 Tablet', 'West-Coast Pharmaceutical Works Ltd', 'Lipina 20 Tablet', 'Can I take alcohol with Lipina 20 Tablet?', 'No, it is not advised to take alcohol with Lipina 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipina 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipina 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20551, 'Lipine 10 Tablet', 'Thelma Lifesciences', 'Lipine 10 Tablet', 'What is the use of Lipine 10 Tablet?', 'Lipine 10 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(20552, 'Lipine 10 Tablet', 'Thelma Lifesciences', 'Lipine 10 Tablet', 'Which is better amlodipine or Lipine 10 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lipine 10 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lipine 10 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(20553, 'Lipine 10 Tablet', 'Thelma Lifesciences', 'Lipine 10 Tablet', 'What are the side effects of Lipine 10 Tablet?', 'Lipine 10 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(20554, 'Lipine 10 Tablet', 'Thelma Lifesciences', 'Lipine 10 Tablet', 'Is Lipine 10 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lipine 10 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(20555, 'Lipine 10 Tablet', 'Thelma Lifesciences', 'Lipine 10 Tablet', 'Should I take Lipine 10 Tablet in the morning or at night?', 'Lipine 10 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(20556, 'Lipine 10 Tablet', 'Thelma Lifesciences', 'Lipine 10 Tablet', 'How long do I need to take Lipine 10 Tablet?', 'You should keep on taking Lipine 10 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lipine 10 Tablet, your blood pressure may increase again and your condition may worsen.'),
(20557, 'Lipine 10 Tablet', 'Thelma Lifesciences', 'Lipine 10 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lipine 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lipine 10 Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lipine 10 Tablet and to keep healthy.'),
(20558, 'Lipine 5 Tablet', 'Thelma Lifesciences', 'Lipine 5 Tablet', 'What is the use of Lipine 5 Tablet?', 'Lipine 5 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(20559, 'Lipine 5 Tablet', 'Thelma Lifesciences', 'Lipine 5 Tablet', 'Which is better amlodipine or Lipine 5 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lipine 5 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lipine 5 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(20560, 'Lipine 5 Tablet', 'Thelma Lifesciences', 'Lipine 5 Tablet', 'What are the side effects of Lipine 5 Tablet?', 'Lipine 5 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(20561, 'Lipine 5 Tablet', 'Thelma Lifesciences', 'Lipine 5 Tablet', 'Is Lipine 5 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lipine 5 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(20562, 'Lipine 5 Tablet', 'Thelma Lifesciences', 'Lipine 5 Tablet', 'Should I take Lipine 5 Tablet in the morning or at night?', 'Lipine 5 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(20563, 'Lipine 5 Tablet', 'Thelma Lifesciences', 'Lipine 5 Tablet', 'How long do I need to take Lipine 5 Tablet?', 'You should keep on taking Lipine 5 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lipine 5 Tablet, your blood pressure may increase again and your condition may worsen.'),
(20564, 'Lipine 5 Tablet', 'Thelma Lifesciences', 'Lipine 5 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lipine 5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lipine 5 Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lipine 5 Tablet and to keep healthy.'),
(20565, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'Can the Lipined-A 10/75 Capsule cause muscle pain?', 'Yes, Lipined-A 10/75 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20566, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'Will I need to stop Lipined-A 10/75 Capsule before surgery or dental procedure?', 'Lipined-A 10/75 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipined-A 10/75 Capsule. You should not stop taking Lipined-A 10/75 Capsule on your own.'),
(20567, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'What lifestyle changes should be adopted while taking Lipined-A 10/75 Capsule?', 'Making lifestyle changes can boost your health while taking Lipined-A 10/75 Capsule. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20568, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'Which painkiller is safe while taking Lipined-A 10/75 Capsule?', 'Paracetamol is safe to use while taking Lipined-A 10/75 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipined-A 10/75 Capsule, as they may increase the risk of bleeding.'),
(20569, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'Can the use of Lipined-A 10/75 Capsule increase the risk of bleeding?', 'Yes, Lipined-A 10/75 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20570, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'How to manage indigestion associated with Lipined-A 10/75 Capsule?', 'Take Lipined-A 10/75 Capsule with or after food to avoid indigestion. Talk to your doctor, if the indigestion problem persists.'),
(20571, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'What medicines should I avoid while taking Lipined-A 10/75 Capsule?', 'Lipined-A 10/75 Capsule can interact with several medicines and can cause serious life-threatening problems. Talk to your doctor and inform him about using Lipined-A 10/75 Capsule before taking any prescription or non-prescription medicine.'),
(20572, 'Lipined-A 10/75 Capsule', 'Akned Healthcare Pvt. Ltd.', 'Lipined-A 10/75 Capsule', 'What are the instructions for the storage and disposal of Lipined-A 10/75 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20573, 'Lipined-Gold 10 Tablet', 'Akned Healthcare Pvt. Ltd.', 'Lipined-Gold 10 Tablet', 'What are the instructions for the storage and disposal of Lipined-Gold 10 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20574, 'Lipined-Gold 10 Tablet', 'Akned Healthcare Pvt. Ltd.', 'Lipined-Gold 10 Tablet', 'Will I need to stop Lipined-Gold 10 Tablet before surgery or dental procedure?', 'Lipined-Gold 10 Tablet may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipined-Gold 10 Tablet. However, do not stop taking Lipined-Gold 10 Tablet on your own.'),
(20575, 'Lipined-Gold 10 Tablet', 'Akned Healthcare Pvt. Ltd.', 'Lipined-Gold 10 Tablet', 'What are the lifestyle changes to adapt while taking Lipined-Gold 10 Tablet?', 'Making lifestyle changes can boost your health while taking Lipined-Gold 10 Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20576, 'Lipined-Gold 10 Tablet', 'Akned Healthcare Pvt. Ltd.', 'Lipined-Gold 10 Tablet', 'Which painkiller is safe while taking Lipined-Gold 10 Tablet?', 'Paracetamol is safe to use while taking Lipined-Gold 10 Tablet for relieving pain. Avoid the use of other painkillers while taking Lipined-Gold 10 Tablet, as they may increase the risk of bleeding.'),
(20577, 'Lipined-Gold 10 Tablet', 'Akned Healthcare Pvt. Ltd.', 'Lipined-Gold 10 Tablet', 'Can the use of Lipined-Gold 10 Tablet increase the risk of bleeding?', 'Yes, Lipined-Gold 10 Tablet increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20578, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20579, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Can Lipinext 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipinext 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20580, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Is Lipinext 20mg Tablet used for lowering cholesterol?', 'Lipinext 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipinext 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipinext 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20581, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Can Lipinext 20mg Tablet be prescribed to children?', 'Lipinext 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20582, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Is Lipinext 20mg Tablet a blood thinner?', 'No, Lipinext 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20583, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Will taking Lipinext 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipinext 20mg Tablet may increase this risk slightly. This is because Lipinext 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20584, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'For how long do I need to take Lipinext 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipinext 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipinext 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20585, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Does Lipinext 20mg Tablet cause weight loss?', 'No, Lipinext 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipinext 20mg Tablet.'),
(20586, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Can I stop taking Lipinext 20mg Tablet?', 'No, you should not stop taking Lipinext 20mg Tablet without consulting your doctor. If you think that Lipinext 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20587, 'Lipinext 20mg Tablet', 'Healthkind Labs Pvt Ltd', 'Lipinext 20mg Tablet', 'Can I take alcohol with Lipinext 20mg Tablet?', 'No, it is not advised to take alcohol with Lipinext 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipinext 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipinext 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20588, 'Lipinis CV 10mg/75mg Tablet', 'Glynis Pharmaceutical Pvt Ltd', 'Lipinis CV 10mg/75mg Tablet', 'Can the use of Lipinis CV 10mg/75mg Tablet increase the risk of bleeding?', 'Yes, Lipinis CV 10mg/75mg Tablet increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20589, 'Lipinis CV 10mg/75mg Tablet', 'Glynis Pharmaceutical Pvt Ltd', 'Lipinis CV 10mg/75mg Tablet', 'What medicines should I avoid while taking Lipinis CV 10mg/75mg Tablet?', 'Lipinis CV 10mg/75mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipinis CV 10mg/75mg Tablet before taking any prescription or non-prescription medicine.'),
(20590, 'Lipinis CV 10mg/75mg Tablet', 'Glynis Pharmaceutical Pvt Ltd', 'Lipinis CV 10mg/75mg Tablet', 'Can Lipinis CV 10mg/75mg Tablet cause muscle pain?', 'Yes, Lipinis CV 10mg/75mg Tablet can cause muscle pain by injuring muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipinis CV 10mg/75mg Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20591, 'Lipinis CV 10mg/75mg Tablet', 'Glynis Pharmaceutical Pvt Ltd', 'Lipinis CV 10mg/75mg Tablet', 'Will I need to stop Lipinis CV 10mg/75mg Tablet before surgery or dental procedure?', 'Lipinis CV 10mg/75mg Tablet may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipinis CV 10mg/75mg Tablet. You should not stop taking Lipinis CV 10mg/75mg Tablet on your own.'),
(20592, 'Lipinis CV 10mg/75mg Tablet', 'Glynis Pharmaceutical Pvt Ltd', 'Lipinis CV 10mg/75mg Tablet', 'What lifestyle changes should be adopted while taking Lipinis CV 10mg/75mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipinis CV 10mg/75mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20593, 'Lipinis CV 10mg/75mg Tablet', 'Glynis Pharmaceutical Pvt Ltd', 'Lipinis CV 10mg/75mg Tablet', 'Which painkiller is safe while taking Lipinis CV 10mg/75mg Tablet?', 'Paracetamol is safe to use while taking Lipinis CV 10mg/75mg Tablet for relieving pain. Avoid the use of other painkillers while taking Lipinis CV 10mg/75mg Tablet, as they may increase the risk of bleeding.'),
(20594, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20595, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Can Lipinoy 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipinoy 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20596, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Is Lipinoy 20mg Tablet used for lowering cholesterol?', 'Lipinoy 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipinoy 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipinoy 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20597, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Can Lipinoy 20mg Tablet be prescribed to children?', 'Lipinoy 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20598, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Is Lipinoy 20mg Tablet a blood thinner?', 'No, Lipinoy 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20599, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Will taking Lipinoy 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipinoy 20mg Tablet may increase this risk slightly. This is because Lipinoy 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20600, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'For how long do I need to take Lipinoy 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipinoy 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipinoy 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20601, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Does Lipinoy 20mg Tablet cause weight loss?', 'No, Lipinoy 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipinoy 20mg Tablet.'),
(20602, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Can I stop taking Lipinoy 20mg Tablet?', 'No, you should not stop taking Lipinoy 20mg Tablet without consulting your doctor. If you think that Lipinoy 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20603, 'Lipinoy 20mg Tablet', 'Werke Healthcare', 'Lipinoy 20mg Tablet', 'Can I take alcohol with Lipinoy 20mg Tablet?', 'No, it is not advised to take alcohol with Lipinoy 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipinoy 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipinoy 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20604, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20605, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Can Lipinoy 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipinoy 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20606, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Is Lipinoy 40mg Tablet used for lowering cholesterol?', 'Lipinoy 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipinoy 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipinoy 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20607, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Can Lipinoy 40mg Tablet be prescribed to children?', 'Lipinoy 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20608, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Is Lipinoy 40mg Tablet a blood thinner?', 'No, Lipinoy 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20609, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Will taking Lipinoy 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipinoy 40mg Tablet may increase this risk slightly. This is because Lipinoy 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20610, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'For how long do I need to take Lipinoy 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipinoy 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipinoy 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20611, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Does Lipinoy 40mg Tablet cause weight loss?', 'No, Lipinoy 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipinoy 40mg Tablet.'),
(20612, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Can I stop taking Lipinoy 40mg Tablet?', 'No, you should not stop taking Lipinoy 40mg Tablet without consulting your doctor. If you think that Lipinoy 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20613, 'Lipinoy 40mg Tablet', 'Werke Healthcare', 'Lipinoy 40mg Tablet', 'Can I take alcohol with Lipinoy 40mg Tablet?', 'No, it is not advised to take alcohol with Lipinoy 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipinoy 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipinoy 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20614, 'Lipinoy C 10mg/75mg Tablet', 'Werke Healthcare', 'Lipinoy C 10mg/75mg Tablet', 'Can Lipinoy C 10mg/75mg Tablet cause muscle pain?', 'Yes, Lipinoy C 10mg/75mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipinoy C 10mg/75mg Tablet.'),
(20615, 'Lipinoy C 10mg/75mg Tablet', 'Werke Healthcare', 'Lipinoy C 10mg/75mg Tablet', 'Will I need to stop Lipinoy C 10mg/75mg Tablet before surgery or dental procedure?', 'Lipinoy C 10mg/75mg Tablet may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipinoy C 10mg/75mg Tablet. But, you should not stop taking Lipinoy C 10mg/75mg Tablet on your own.'),
(20616, 'Lipinoy C 10mg/75mg Tablet', 'Werke Healthcare', 'Lipinoy C 10mg/75mg Tablet', 'What lifestyle changes should be adopted while taking Lipinoy C 10mg/75mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipinoy C 10mg/75mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20617, 'Lipinoy C 10mg/75mg Tablet', 'Werke Healthcare', 'Lipinoy C 10mg/75mg Tablet', 'Which painkiller is safe while taking Lipinoy C 10mg/75mg Tablet?', 'Paracetamol is safe to use while taking Lipinoy C 10mg/75mg Tablet for relieving pain. Avoid the use of other painkillers while taking Lipinoy C 10mg/75mg Tablet, as they may increase the risk of bleeding.'),
(20618, 'Lipinoy C 10mg/75mg Tablet', 'Werke Healthcare', 'Lipinoy C 10mg/75mg Tablet', 'Can the use of Lipinoy C 10mg/75mg Tablet increase the risk of bleeding?', 'Yes, Lipinoy C 10mg/75mg Tablet increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20619, 'Lipinoy C 10mg/75mg Tablet', 'Werke Healthcare', 'Lipinoy C 10mg/75mg Tablet', 'What medicines should I avoid while taking Lipinoy C 10mg/75mg Tablet?', 'Lipinoy C 10mg/75mg Tablet should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipinoy C 10mg/75mg Tablet before taking any prescription or non-prescription medicine.'),
(20620, 'Lipinoy C 10mg/75mg Tablet', 'Werke Healthcare', 'Lipinoy C 10mg/75mg Tablet', 'What are the instructions for the storage and disposal of Lipinoy C 10mg/75mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20621, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'For how long should I take Lipiout 10mg Tablet?', 'You may need to take Lipiout 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipiout 10mg Tablet. Stopping Lipiout 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20622, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'Does Lipiout 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipiout 10mg Tablet causing weight gain. If you are taking Lipiout 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20623, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'Does Lipiout 10mg Tablet make you tired?', 'Yes, Lipiout 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipiout 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipiout 10mg Tablet.'),
(20624, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'Should Lipiout 10mg Tablet be taken at night?', 'Lipiout 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20625, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'What foods should be avoided when taking Lipiout 10mg Tablet?', 'Lipiout 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20626, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'How do I know whether Lipiout 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipiout 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipiout 10mg Tablet versus the risks of not taking it at all.'),
(20627, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'Can Lipiout 10mg Tablet cause memory loss?', 'Lipiout 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipiout 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20628, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'Can Lipiout 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiout 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20629, 'Lipiout 10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 10mg Tablet', 'Is it true that Lipiout 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiout 10mg Tablet may slightly increase this risk. This is because Lipiout 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20630, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'For how long should I take Lipiout 20mg Tablet?', 'You may need to take Lipiout 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipiout 20mg Tablet. Stopping Lipiout 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20631, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'Does Lipiout 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipiout 20mg Tablet causing weight gain. If you are taking Lipiout 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20632, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'Does Lipiout 20mg Tablet make you tired?', 'Yes, Lipiout 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipiout 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipiout 20mg Tablet.'),
(20633, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'Should Lipiout 20mg Tablet be taken at night?', 'Lipiout 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20634, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'What foods should be avoided when taking Lipiout 20mg Tablet?', 'Lipiout 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20635, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'How do I know whether Lipiout 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipiout 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipiout 20mg Tablet versus the risks of not taking it at all.'),
(20636, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'Can Lipiout 20mg Tablet cause memory loss?', 'Lipiout 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipiout 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20637, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'Can Lipiout 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiout 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20638, 'Lipiout 20mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout 20mg Tablet', 'Is it true that Lipiout 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiout 20mg Tablet may slightly increase this risk. This is because Lipiout 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20639, 'Lipiout F 160mg/10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout F 160mg/10mg Tablet', 'Can the use of Lipiout F 160mg/10mg Tablet cause liver damage?', 'Lipiout F 160mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20640, 'Lipiout F 160mg/10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout F 160mg/10mg Tablet', 'Can the use of Lipiout F 160mg/10mg Tablet cause muscle pain?', 'Yes, Lipiout F 160mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20641, 'Lipiout F 160mg/10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout F 160mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lipiout F 160mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipiout F 160mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20642, 'Lipiout F 160mg/10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout F 160mg/10mg Tablet', 'What medicines should I avoid while taking Lipiout F 160mg/10mg Tablet?', 'Lipiout F 160mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipiout F 160mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(20643, 'Lipiout F 160mg/10mg Tablet', 'Foregen Healthcare Ltd', 'Lipiout F 160mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lipiout F 160mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20644, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'What is Lipip TZ 4000mg/500mg Injection?', 'Lipip TZ 4000mg/500mg Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(20645, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'Is it safe to use Lipip TZ 4000mg/500mg Injection?', 'Lipip TZ 4000mg/500mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(20646, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'How is Lipip TZ 4000mg/500mg Injection administered?', 'Lipip TZ 4000mg/500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lipip TZ 4000mg/500mg Injection.'),
(20647, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'Are there any specific cautions associated with the use of Lipip TZ 4000mg/500mg Injection?', 'The use of Lipip TZ 4000mg/500mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Lipip TZ 4000mg/500mg Injection.'),
(20648, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'Can the use of Lipip TZ 4000mg/500mg Injection cause contraceptive failure?', 'Yes, the use of Lipip TZ 4000mg/500mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lipip TZ 4000mg/500mg Injection.'),
(20649, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'Can I take a higher than the recommended dose of Lipip TZ 4000mg/500mg Injection?', 'No, Lipip TZ 4000mg/500mg Injection should be used in the recommended dose only. Overdose of Lipip TZ 4000mg/500mg Injection can increase the risks of side effects. Lipip TZ 4000mg/500mg Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(20650, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'What are the instructions for the storage and disposal of Lipip TZ 4000mg/500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20651, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'Can Lipip TZ 4000mg/500mg Injection cause an allergic reaction?', 'Yes, Lipip TZ 4000mg/500mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(20652, 'Lipip TZ 4000mg/500mg Injection', 'Yodley Life Sciences Private Limited', 'Lipip TZ 4000mg/500mg Injection', 'Can the use of Lipip TZ 4000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lipip TZ 4000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(20653, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'For how long should I take Lipipoint 10 Tablet?', 'You may need to take Lipipoint 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipipoint 10 Tablet. Stopping Lipipoint 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20654, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'Does Lipipoint 10 Tablet cause weight gain?', 'No, there is no evidence of Lipipoint 10 Tablet causing weight gain. If you are taking Lipipoint 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20655, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'Does Lipipoint 10 Tablet make you tired?', 'Yes, Lipipoint 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipipoint 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipipoint 10 Tablet.'),
(20656, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'Should Lipipoint 10 Tablet be taken at night?', 'Lipipoint 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20657, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'What foods should be avoided when taking Lipipoint 10 Tablet?', 'Lipipoint 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20658, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'How do I know whether Lipipoint 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipipoint 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipipoint 10 Tablet versus the risks of not taking it at all.'),
(20659, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'Can Lipipoint 10 Tablet cause memory loss?', 'Lipipoint 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipipoint 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20660, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'Can Lipipoint 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipipoint 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20661, 'Lipipoint 10 Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint 10 Tablet', 'Is it true that Lipipoint 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipipoint 10 Tablet may slightly increase this risk. This is because Lipipoint 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20662, 'Lipipoint-F Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint-F Tablet', 'Can the use of Lipipoint-F Tablet cause liver damage?', 'Lipipoint-F Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20663, 'Lipipoint-F Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint-F Tablet', 'Can the use of Lipipoint-F Tablet cause muscle pain?', 'Yes, Lipipoint-F Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20664, 'Lipipoint-F Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint-F Tablet', 'What lifestyle changes should I adopt while taking Lipipoint-F Tablet?', 'Making lifestyle changes can boost your health while taking Lipipoint-F Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20665, 'Lipipoint-F Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint-F Tablet', 'What medicines should I avoid while taking Lipipoint-F Tablet?', 'Lipipoint-F Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipipoint-F Tablet before taking any prescription or non-prescription medicine.'),
(20666, 'Lipipoint-F Tablet', 'Dewmedic Healthcare Pvt Ltd', 'Lipipoint-F Tablet', 'What are the instructions for the storage and disposal of Lipipoint-F Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20667, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'For how long should I take Lipira 2.5mg Tablet?', 'You may need to take Lipira 2.5mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipira 2.5mg Tablet. Stopping Lipira 2.5mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20668, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'Does Lipira 2.5mg Tablet cause weight gain?', 'No, there is no evidence of Lipira 2.5mg Tablet causing weight gain. If you are taking Lipira 2.5mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20669, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'Does Lipira 2.5mg Tablet make you tired?', 'Yes, Lipira 2.5mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipira 2.5mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipira 2.5mg Tablet.'),
(20670, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'Should Lipira 2.5mg Tablet be taken at night?', 'Lipira 2.5mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20671, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'What foods should be avoided when taking Lipira 2.5mg Tablet?', 'Lipira 2.5mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20672, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'How do I know whether Lipira 2.5mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipira 2.5mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipira 2.5mg Tablet versus the risks of not taking it at all.'),
(20673, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'Can Lipira 2.5mg Tablet cause memory loss?', 'Lipira 2.5mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipira 2.5mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20674, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'Can Lipira 2.5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipira 2.5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20675, 'Lipira 2.5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 2.5mg Tablet', 'Is it true that Lipira 2.5mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipira 2.5mg Tablet may slightly increase this risk. This is because Lipira 2.5mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20676, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'For how long should I take Lipira 20mg Tablet?', 'You may need to take Lipira 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipira 20mg Tablet. Stopping Lipira 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20677, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'Does Lipira 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipira 20mg Tablet causing weight gain. If you are taking Lipira 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20678, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'Does Lipira 20mg Tablet make you tired?', 'Yes, Lipira 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipira 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipira 20mg Tablet.'),
(20679, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'Should Lipira 20mg Tablet be taken at night?', 'Lipira 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20680, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'What foods should be avoided when taking Lipira 20mg Tablet?', 'Lipira 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20681, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'How do I know whether Lipira 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipira 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipira 20mg Tablet versus the risks of not taking it at all.'),
(20682, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'Can Lipira 20mg Tablet cause memory loss?', 'Lipira 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipira 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20683, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'Can Lipira 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipira 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20684, 'Lipira 20mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 20mg Tablet', 'Is it true that Lipira 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipira 20mg Tablet may slightly increase this risk. This is because Lipira 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20685, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'For how long should I take Lipira 40mg Tablet?', 'You may need to take Lipira 40mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipira 40mg Tablet. Stopping Lipira 40mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20686, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'Does Lipira 40mg Tablet cause weight gain?', 'No, there is no evidence of Lipira 40mg Tablet causing weight gain. If you are taking Lipira 40mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20687, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'Does Lipira 40mg Tablet make you tired?', 'Yes, Lipira 40mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipira 40mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipira 40mg Tablet.'),
(20688, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'Should Lipira 40mg Tablet be taken at night?', 'Lipira 40mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20689, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'What foods should be avoided when taking Lipira 40mg Tablet?', 'Lipira 40mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20690, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'How do I know whether Lipira 40mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipira 40mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipira 40mg Tablet versus the risks of not taking it at all.'),
(20691, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'Can Lipira 40mg Tablet cause memory loss?', 'Lipira 40mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipira 40mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20692, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'Can Lipira 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipira 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20693, 'Lipira 40mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 40mg Tablet', 'Is it true that Lipira 40mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipira 40mg Tablet may slightly increase this risk. This is because Lipira 40mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20694, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20695, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Can Lipira 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipira 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20696, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Is Lipira 5mg Tablet used for lowering cholesterol?', 'Lipira 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipira 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipira 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20697, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Can Lipira 5mg Tablet be prescribed to children?', 'Lipira 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20698, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Is Lipira 5mg Tablet a blood thinner?', 'No, Lipira 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20699, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Will taking Lipira 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipira 5mg Tablet may increase this risk slightly. This is because Lipira 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20700, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'For how long do I need to take Lipira 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipira 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipira 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20701, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Does Lipira 5mg Tablet cause weight loss?', 'No, Lipira 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipira 5mg Tablet.'),
(20702, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Can I stop taking Lipira 5mg Tablet?', 'No, you should not stop taking Lipira 5mg Tablet without consulting your doctor. If you think that Lipira 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20703, 'Lipira 5mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Lipira 5mg Tablet', 'Can I take alcohol with Lipira 5mg Tablet?', 'No, it is not advised to take alcohol with Lipira 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipira 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipira 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20704, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20705, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Can Lipired 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipired 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20706, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Is Lipired 20mg Tablet used for lowering cholesterol?', 'Lipired 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipired 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipired 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20707, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Can Lipired 20mg Tablet be prescribed to children?', 'Lipired 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20708, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Is Lipired 20mg Tablet a blood thinner?', 'No, Lipired 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20709, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Will taking Lipired 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipired 20mg Tablet may increase this risk slightly. This is because Lipired 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20710, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'For how long do I need to take Lipired 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipired 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipired 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20711, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Does Lipired 20mg Tablet cause weight loss?', 'No, Lipired 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipired 20mg Tablet.'),
(20712, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Can I stop taking Lipired 20mg Tablet?', 'No, you should not stop taking Lipired 20mg Tablet without consulting your doctor. If you think that Lipired 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20713, 'Lipired 20mg Tablet', 'Jamedex Pharma', 'Lipired 20mg Tablet', 'Can I take alcohol with Lipired 20mg Tablet?', 'No, it is not advised to take alcohol with Lipired 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipired 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipired 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20714, 'Lipireg 160mg Tablet', 'Alembic Pharmaceuticals Ltd', 'Lipireg 160mg Tablet', 'When should Lipireg 160mg Tablet be taken?', 'Usually, Lipireg 160mg Tablet is taken once daily with a meal. The initial dose of the medicine will depend on the type and age of the patient. Consult your doctor before you start taking the medication and follow the instructions as provided.'),
(20715, 'Lipireg 160mg Tablet', 'Alembic Pharmaceuticals Ltd', 'Lipireg 160mg Tablet', 'Does Lipireg 160mg Tablet raise blood pressure?', 'There is no or negligible effect on blood pressure in patients with normal blood pressure levels. However, Lipireg 160mg Tablet may lead to a decrease in blood pressure in patients with high blood pressure.'),
(20716, 'Lipireg 160mg Tablet', 'Alembic Pharmaceuticals Ltd', 'Lipireg 160mg Tablet', 'Can Lipireg 160mg Tablet cause kidney problems?', 'Lipireg 160mg Tablet should be used with caution in patients with kidney disorders. Serum creatinine levels may increase with long-term usage of Lipireg 160mg Tablet but is completely reversible. The evidence of kidney damage with this medicine is rare still the kidney function blood test should be done regularly if there is a possibility of kidney damage. Consult your doctor before taking the medicine. Inform the doctor if you have had any disease and all the medicines that you are taking for a better diagnosis and treatment.'),
(20717, 'Lipireg 160mg Tablet', 'Alembic Pharmaceuticals Ltd', 'Lipireg 160mg Tablet', 'Can I take grapefruit juice with Lipireg 160mg Tablet?', 'Yes, you can take Lipireg 160mg Tablet with grapefruit juice. The possibility of interaction of the medicine with grapefruit is unlikely as they are broken down in our body by different enzymes. However, if in doubt then limit the intake of grapefruit juice while taking Lipireg 160mg Tablet.'),
(20718, 'Lipireg 160mg Tablet', 'Alembic Pharmaceuticals Ltd', 'Lipireg 160mg Tablet', 'What drugs should not be taken with Lipireg 160mg Tablet?', 'There are few drugs like Oral Anticoagulants or blood thinners, ciclosporin, cholesterol-lowering medications like statins and contraceptives are contraindicated while you take Lipireg 160mg Tablet. Along with that, there are certain medicines which should not be taken with Lipireg 160mg Tablet and therefore you must give a proper history to your doctor regarding your ongoing medication. This is done to analyze the condition and provide a proper therapy and prescription which will help minimizing the side effects of the medication.'),
(20719, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20720, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Can Lipirob 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipirob 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20721, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Is Lipirob 20mg Tablet used for lowering cholesterol?', 'Lipirob 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipirob 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipirob 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20722, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Can Lipirob 20mg Tablet be prescribed to children?', 'Lipirob 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20723, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Is Lipirob 20mg Tablet a blood thinner?', 'No, Lipirob 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20724, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Will taking Lipirob 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipirob 20mg Tablet may increase this risk slightly. This is because Lipirob 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20725, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'For how long do I need to take Lipirob 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipirob 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipirob 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20726, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Does Lipirob 20mg Tablet cause weight loss?', 'No, Lipirob 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipirob 20mg Tablet.'),
(20727, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Can I stop taking Lipirob 20mg Tablet?', 'No, you should not stop taking Lipirob 20mg Tablet without consulting your doctor. If you think that Lipirob 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20728, 'Lipirob 20mg Tablet', 'Park Pharmaceuticals', 'Lipirob 20mg Tablet', 'Can I take alcohol with Lipirob 20mg Tablet?', 'No, it is not advised to take alcohol with Lipirob 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipirob 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipirob 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20729, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20730, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Can Lipirol 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipirol 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20731, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Is Lipirol 40mg Tablet used for lowering cholesterol?', 'Lipirol 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipirol 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipirol 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20732, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Can Lipirol 40mg Tablet be prescribed to children?', 'Lipirol 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20733, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Is Lipirol 40mg Tablet a blood thinner?', 'No, Lipirol 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20734, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Will taking Lipirol 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipirol 40mg Tablet may increase this risk slightly. This is because Lipirol 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20735, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'For how long do I need to take Lipirol 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipirol 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipirol 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20736, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Does Lipirol 40mg Tablet cause weight loss?', 'No, Lipirol 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipirol 40mg Tablet.'),
(20737, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Can I stop taking Lipirol 40mg Tablet?', 'No, you should not stop taking Lipirol 40mg Tablet without consulting your doctor. If you think that Lipirol 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20738, 'Lipirol 40mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 40mg Tablet', 'Can I take alcohol with Lipirol 40mg Tablet?', 'No, it is not advised to take alcohol with Lipirol 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipirol 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipirol 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20739, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20740, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Can Lipirol 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipirol 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20741, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Is Lipirol 5mg Tablet used for lowering cholesterol?', 'Lipirol 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipirol 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipirol 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20742, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Can Lipirol 5mg Tablet be prescribed to children?', 'Lipirol 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20743, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Is Lipirol 5mg Tablet a blood thinner?', 'No, Lipirol 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20744, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Will taking Lipirol 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipirol 5mg Tablet may increase this risk slightly. This is because Lipirol 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20745, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'For how long do I need to take Lipirol 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipirol 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipirol 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20746, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Does Lipirol 5mg Tablet cause weight loss?', 'No, Lipirol 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipirol 5mg Tablet.'),
(20747, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Can I stop taking Lipirol 5mg Tablet?', 'No, you should not stop taking Lipirol 5mg Tablet without consulting your doctor. If you think that Lipirol 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20748, 'Lipirol 5mg Tablet', 'Taj Pharma India Ltd', 'Lipirol 5mg Tablet', 'Can I take alcohol with Lipirol 5mg Tablet?', 'No, it is not advised to take alcohol with Lipirol 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipirol 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipirol 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20749, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'For how long should I take Lipirose 10 Tablet?', 'You may need to take Lipirose 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipirose 10 Tablet. Stopping Lipirose 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20750, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'Does Lipirose 10 Tablet cause weight gain?', 'No, there is no evidence of Lipirose 10 Tablet causing weight gain. If you are taking Lipirose 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20751, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'Does Lipirose 10 Tablet make you tired?', 'Yes, Lipirose 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipirose 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipirose 10 Tablet.'),
(20752, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'Should Lipirose 10 Tablet be taken at night?', 'Lipirose 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20753, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'What foods should be avoided when taking Lipirose 10 Tablet?', 'Lipirose 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20754, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'How do I know whether Lipirose 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipirose 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipirose 10 Tablet versus the risks of not taking it at all.'),
(20755, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'Can Lipirose 10 Tablet cause memory loss?', 'Lipirose 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipirose 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20756, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'Can Lipirose 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipirose 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20757, 'Lipirose 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose 10 Tablet', 'Is it true that Lipirose 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipirose 10 Tablet may slightly increase this risk. This is because Lipirose 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20758, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'For how long should I take Lipirose 20 Tablet?', 'You may need to take Lipirose 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipirose 20 Tablet. Stopping Lipirose 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20759, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'Does Lipirose 20 Tablet cause weight gain?', 'No, there is no evidence of Lipirose 20 Tablet causing weight gain. If you are taking Lipirose 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20760, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'Does Lipirose 20 Tablet make you tired?', 'Yes, Lipirose 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipirose 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipirose 20 Tablet.'),
(20761, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'Should Lipirose 20 Tablet be taken at night?', 'Lipirose 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20762, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'What foods should be avoided when taking Lipirose 20 Tablet?', 'Lipirose 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20763, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'How do I know whether Lipirose 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipirose 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipirose 20 Tablet versus the risks of not taking it at all.'),
(20764, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'Can Lipirose 20 Tablet cause memory loss?', 'Lipirose 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipirose 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20765, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'Can Lipirose 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipirose 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20766, 'Lipirose 20 Tablet', 'Mankind Pharma Ltd', 'Lipirose 20 Tablet', 'Is it true that Lipirose 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipirose 20 Tablet may slightly increase this risk. This is because Lipirose 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20767, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'For how long should I take Lipirose 5 Tablet?', 'You may need to take Lipirose 5 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipirose 5 Tablet. Stopping Lipirose 5 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20768, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'Does Lipirose 5 Tablet cause weight gain?', 'No, there is no evidence of Lipirose 5 Tablet causing weight gain. If you are taking Lipirose 5 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(20769, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'Does Lipirose 5 Tablet make you tired?', 'Yes, Lipirose 5 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipirose 5 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipirose 5 Tablet.'),
(20770, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'Should Lipirose 5 Tablet be taken at night?', 'Lipirose 5 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(20771, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'What foods should be avoided when taking Lipirose 5 Tablet?', 'Lipirose 5 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20772, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'How do I know whether Lipirose 5 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipirose 5 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipirose 5 Tablet versus the risks of not taking it at all.'),
(20773, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'Can Lipirose 5 Tablet cause memory loss?', 'Lipirose 5 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipirose 5 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(20774, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'Can Lipirose 5 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipirose 5 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20775, 'Lipirose 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose 5 Tablet', 'Is it true that Lipirose 5 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipirose 5 Tablet may slightly increase this risk. This is because Lipirose 5 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20776, 'Lipirose CV 20mg/75mg Tablet', 'Mankind Pharma Ltd', 'Lipirose CV 20mg/75mg Tablet', 'Can the use of Lipirose CV 20mg/75mg Tablet increase the risk of bleeding?', 'Yes, Lipirose CV 20mg/75mg Tablet increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20777, 'Lipirose CV 20mg/75mg Tablet', 'Mankind Pharma Ltd', 'Lipirose CV 20mg/75mg Tablet', 'What medicines should I avoid while taking Lipirose CV 20mg/75mg Tablet?', 'Lipirose CV 20mg/75mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipirose CV 20mg/75mg Tablet before taking any prescription or non-prescription medicine.'),
(20778, 'Lipirose CV 20mg/75mg Tablet', 'Mankind Pharma Ltd', 'Lipirose CV 20mg/75mg Tablet', 'Can Lipirose CV 20mg/75mg Tablet cause muscle pain?', 'Yes, Lipirose CV 20mg/75mg Tablet can cause muscle pain by injuring muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipirose CV 20mg/75mg Tablet.'),
(20779, 'Lipirose CV 20mg/75mg Tablet', 'Mankind Pharma Ltd', 'Lipirose CV 20mg/75mg Tablet', 'Will I need to stop Lipirose CV 20mg/75mg Tablet before surgery or dental procedure?', 'Lipirose CV 20mg/75mg Tablet may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipirose CV 20mg/75mg Tablet. You should not stop taking Lipirose CV 20mg/75mg Tablet on your own.'),
(20780, 'Lipirose CV 20mg/75mg Tablet', 'Mankind Pharma Ltd', 'Lipirose CV 20mg/75mg Tablet', 'What lifestyle changes should be adopted while taking Lipirose CV 20mg/75mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipirose CV 20mg/75mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20781, 'Lipirose CV 20mg/75mg Tablet', 'Mankind Pharma Ltd', 'Lipirose CV 20mg/75mg Tablet', 'Which painkiller is safe while taking Lipirose CV 20mg/75mg Tablet?', 'Paracetamol is safe to use while taking Lipirose CV 20mg/75mg Tablet for relieving pain. Avoid the use of other painkillers while taking Lipirose CV 20mg/75mg Tablet, as they may increase the risk of bleeding.'),
(20782, 'Lipirose CV Tablet', 'Mankind Pharma Ltd', 'Lipirose CV Tablet', 'Can the use of Lipirose CV Tablet increase the risk of bleeding?', 'Yes, Lipirose CV Tablet increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20783, 'Lipirose CV Tablet', 'Mankind Pharma Ltd', 'Lipirose CV Tablet', 'What medicines should I avoid while taking Lipirose CV Tablet?', 'Lipirose CV Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipirose CV Tablet before taking any prescription or non-prescription medicine.'),
(20784, 'Lipirose CV Tablet', 'Mankind Pharma Ltd', 'Lipirose CV Tablet', 'Can Lipirose CV Tablet cause muscle pain?', 'Yes, Lipirose CV Tablet can cause muscle pain by injuring muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipirose CV Tablet.'),
(20785, 'Lipirose CV Tablet', 'Mankind Pharma Ltd', 'Lipirose CV Tablet', 'Will I need to stop Lipirose CV Tablet before surgery or dental procedure?', 'Lipirose CV Tablet may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipirose CV Tablet. You should not stop taking Lipirose CV Tablet on your own.'),
(20786, 'Lipirose CV Tablet', 'Mankind Pharma Ltd', 'Lipirose CV Tablet', 'What lifestyle changes should be adopted while taking Lipirose CV Tablet?', 'Making lifestyle changes can boost your health while taking Lipirose CV Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20787, 'Lipirose CV Tablet', 'Mankind Pharma Ltd', 'Lipirose CV Tablet', 'Which painkiller is safe while taking Lipirose CV Tablet?', 'Paracetamol is safe to use while taking Lipirose CV Tablet for relieving pain. Avoid the use of other painkillers while taking Lipirose CV Tablet, as they may increase the risk of bleeding.'),
(20788, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'Can the Lipirose-AS 10 Capsule cause muscle pain?', 'Yes, Lipirose-AS 10 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20789, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'Will I need to stop Lipirose-AS 10 Capsule before surgery or dental procedure?', 'Lipirose-AS 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipirose-AS 10 Capsule. You should not stop taking Lipirose-AS 10 Capsule on your own.'),
(20790, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'What lifestyle changes should be adopted while taking Lipirose-AS 10 Capsule?', 'Making lifestyle changes can boost your health while taking Lipirose-AS 10 Capsule. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20791, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'Which painkiller is safe while taking Lipirose-AS 10 Capsule?', 'Paracetamol is safe to use while taking Lipirose-AS 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipirose-AS 10 Capsule, as they may increase the risk of bleeding.'),
(20792, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'Can the use of Lipirose-AS 10 Capsule increase the risk of bleeding?', 'Yes, Lipirose-AS 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20793, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'How to manage indigestion associated with Lipirose-AS 10 Capsule?', 'Take Lipirose-AS 10 Capsule with or after food to avoid indigestion. Talk to your doctor, if the indigestion problem persists.'),
(20794, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'What medicines should I avoid while taking Lipirose-AS 10 Capsule?', 'Lipirose-AS 10 Capsule can interact with several medicines and can cause serious life-threatening problems. Talk to your doctor and inform him about using Lipirose-AS 10 Capsule before taking any prescription or non-prescription medicine.'),
(20795, 'Lipirose-AS 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 10 Capsule', 'What are the instructions for the storage and disposal of Lipirose-AS 10 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20796, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'Can the Lipirose-AS 20 Capsule cause muscle pain?', 'Yes, Lipirose-AS 20 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20797, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'Will I need to stop Lipirose-AS 20 Capsule before surgery or dental procedure?', 'Lipirose-AS 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipirose-AS 20 Capsule. You should not stop taking Lipirose-AS 20 Capsule on your own.'),
(20798, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'What lifestyle changes should be adopted while taking Lipirose-AS 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipirose-AS 20 Capsule. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20799, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'Which painkiller is safe while taking Lipirose-AS 20 Capsule?', 'Paracetamol is safe to use while taking Lipirose-AS 20 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipirose-AS 20 Capsule, as they may increase the risk of bleeding.'),
(20800, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'Can the use of Lipirose-AS 20 Capsule increase the risk of bleeding?', 'Yes, Lipirose-AS 20 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20801, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'How to manage indigestion associated with Lipirose-AS 20 Capsule?', 'Take Lipirose-AS 20 Capsule with or after food to avoid indigestion. Talk to your doctor, if the indigestion problem persists.'),
(20802, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'What medicines should I avoid while taking Lipirose-AS 20 Capsule?', 'Lipirose-AS 20 Capsule can interact with several medicines and can cause serious life-threatening problems. Talk to your doctor and inform him about using Lipirose-AS 20 Capsule before taking any prescription or non-prescription medicine.'),
(20803, 'Lipirose-AS 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-AS 20 Capsule', 'What are the instructions for the storage and disposal of Lipirose-AS 20 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20804, 'Lipirose-F 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 10 Tablet', 'Can the use of Lipirose-F 10 Tablet cause liver damage?', 'Lipirose-F 10 Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20805, 'Lipirose-F 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 10 Tablet', 'Can the use of Lipirose-F 10 Tablet cause muscle pain?', 'Yes, Lipirose-F 10 Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20806, 'Lipirose-F 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 10 Tablet', 'What lifestyle changes should I adopt while taking Lipirose-F 10 Tablet?', 'Making lifestyle changes can boost your health while taking Lipirose-F 10 Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20807, 'Lipirose-F 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 10 Tablet', 'What medicines should I avoid while taking Lipirose-F 10 Tablet?', 'Lipirose-F 10 Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipirose-F 10 Tablet before taking any prescription or non-prescription medicine.'),
(20808, 'Lipirose-F 10 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 10 Tablet', 'What are the instructions for the storage and disposal of Lipirose-F 10 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20809, 'Lipirose-F 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 5 Tablet', 'Can the use of Lipirose-F 5 Tablet cause liver damage?', 'Lipirose-F 5 Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20810, 'Lipirose-F 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 5 Tablet', 'Can the use of Lipirose-F 5 Tablet cause muscle pain?', 'Yes, Lipirose-F 5 Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20811, 'Lipirose-F 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 5 Tablet', 'What lifestyle changes should I adopt while taking Lipirose-F 5 Tablet?', 'Making lifestyle changes can boost your health while taking Lipirose-F 5 Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20812, 'Lipirose-F 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 5 Tablet', 'What medicines should I avoid while taking Lipirose-F 5 Tablet?', 'Lipirose-F 5 Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipirose-F 5 Tablet before taking any prescription or non-prescription medicine.'),
(20813, 'Lipirose-F 5 Tablet', 'Mankind Pharma Ltd', 'Lipirose-F 5 Tablet', 'What are the instructions for the storage and disposal of Lipirose-F 5 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20814, 'Lipirose-Gold 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 10 Capsule', 'What are the instructions for the storage and disposal of Lipirose-Gold 10 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20815, 'Lipirose-Gold 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 10 Capsule', 'Will I need to stop Lipirose-Gold 10 Capsule before surgery or dental procedure?', 'Lipirose-Gold 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipirose-Gold 10 Capsule. However, do not stop taking Lipirose-Gold 10 Capsule on your own.'),
(20816, 'Lipirose-Gold 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 10 Capsule', 'What are the lifestyle changes to adapt while taking Lipirose-Gold 10 Capsule?', 'Making lifestyle changes can boost your health while taking Lipirose-Gold 10 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20817, 'Lipirose-Gold 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 10 Capsule', 'Which painkiller is safe while taking Lipirose-Gold 10 Capsule?', 'Paracetamol is safe to use while taking Lipirose-Gold 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipirose-Gold 10 Capsule, as they may increase the risk of bleeding.'),
(20818, 'Lipirose-Gold 10 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 10 Capsule', 'Can the use of Lipirose-Gold 10 Capsule increase the risk of bleeding?', 'Yes, Lipirose-Gold 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20819, 'Lipirose-Gold 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 20 Capsule', 'What are the instructions for the storage and disposal of Lipirose-Gold 20 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20820, 'Lipirose-Gold 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 20 Capsule', 'Will I need to stop Lipirose-Gold 20 Capsule before surgery or dental procedure?', 'Lipirose-Gold 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipirose-Gold 20 Capsule. However, do not stop taking Lipirose-Gold 20 Capsule on your own.'),
(20821, 'Lipirose-Gold 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 20 Capsule', 'What are the lifestyle changes to adapt while taking Lipirose-Gold 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipirose-Gold 20 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20822, 'Lipirose-Gold 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 20 Capsule', 'Which painkiller is safe while taking Lipirose-Gold 20 Capsule?', 'Paracetamol is safe to use while taking Lipirose-Gold 20 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipirose-Gold 20 Capsule, as they may increase the risk of bleeding.'),
(20823, 'Lipirose-Gold 20 Capsule', 'Mankind Pharma Ltd', 'Lipirose-Gold 20 Capsule', 'Can the use of Lipirose-Gold 20 Capsule increase the risk of bleeding?', 'Yes, Lipirose-Gold 20 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20824, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20825, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Can Lipisafe 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipisafe 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20826, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Is Lipisafe 40mg Tablet used for lowering cholesterol?', 'Lipisafe 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipisafe 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipisafe 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20827, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Can Lipisafe 40mg Tablet be prescribed to children?', 'Lipisafe 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20828, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Is Lipisafe 40mg Tablet a blood thinner?', 'No, Lipisafe 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20829, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Will taking Lipisafe 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipisafe 40mg Tablet may increase this risk slightly. This is because Lipisafe 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20830, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'For how long do I need to take Lipisafe 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipisafe 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipisafe 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20831, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Does Lipisafe 40mg Tablet cause weight loss?', 'No, Lipisafe 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipisafe 40mg Tablet.'),
(20832, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Can I stop taking Lipisafe 40mg Tablet?', 'No, you should not stop taking Lipisafe 40mg Tablet without consulting your doctor. If you think that Lipisafe 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20833, 'Lipisafe 40mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 40mg Tablet', 'Can I take alcohol with Lipisafe 40mg Tablet?', 'No, it is not advised to take alcohol with Lipisafe 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipisafe 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipisafe 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20834, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20835, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Can Lipisafe 80mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipisafe 80mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20836, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Is Lipisafe 80mg Tablet used for lowering cholesterol?', 'Lipisafe 80mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipisafe 80mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipisafe 80mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20837, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Can Lipisafe 80mg Tablet be prescribed to children?', 'Lipisafe 80mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20838, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Is Lipisafe 80mg Tablet a blood thinner?', 'No, Lipisafe 80mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20839, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Will taking Lipisafe 80mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipisafe 80mg Tablet may increase this risk slightly. This is because Lipisafe 80mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20840, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'For how long do I need to take Lipisafe 80mg Tablet? Is it safe for long-term use?', 'You may need to take Lipisafe 80mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipisafe 80mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20841, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Does Lipisafe 80mg Tablet cause weight loss?', 'No, Lipisafe 80mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipisafe 80mg Tablet.'),
(20842, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Can I stop taking Lipisafe 80mg Tablet?', 'No, you should not stop taking Lipisafe 80mg Tablet without consulting your doctor. If you think that Lipisafe 80mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20843, 'Lipisafe 80mg Tablet', 'Lakshya Life Sciences', 'Lipisafe 80mg Tablet', 'Can I take alcohol with Lipisafe 80mg Tablet?', 'No, it is not advised to take alcohol with Lipisafe 80mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipisafe 80mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipisafe 80mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20844, 'Lipisafe CV 10 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10 Capsule', 'Can Lipisafe CV 10 Capsule cause muscle pain?', 'Yes, Lipisafe CV 10 Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipisafe CV 10 Capsule.'),
(20845, 'Lipisafe CV 10 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10 Capsule', 'Will I need to stop Lipisafe CV 10 Capsule before surgery or dental procedure?', 'Lipisafe CV 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipisafe CV 10 Capsule. But, you should not stop taking Lipisafe CV 10 Capsule on your own.'),
(20846, 'Lipisafe CV 10 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10 Capsule', 'What lifestyle changes should be adopted while taking Lipisafe CV 10 Capsule?', 'Making lifestyle changes can boost your health while taking Lipisafe CV 10 Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20847, 'Lipisafe CV 10 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10 Capsule', 'Which painkiller is safe while taking Lipisafe CV 10 Capsule?', 'Paracetamol is safe to use while taking Lipisafe CV 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipisafe CV 10 Capsule, as they may increase the risk of bleeding.'),
(20848, 'Lipisafe CV 10 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10 Capsule', 'Can the use of Lipisafe CV 10 Capsule increase the risk of bleeding?', 'Yes, Lipisafe CV 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20849, 'Lipisafe CV 10 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10 Capsule', 'What medicines should I avoid while taking Lipisafe CV 10 Capsule?', 'Lipisafe CV 10 Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipisafe CV 10 Capsule before taking any prescription or non-prescription medicine.'),
(20850, 'Lipisafe CV 10 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10 Capsule', 'What are the instructions for the storage and disposal of Lipisafe CV 10 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20851, 'Lipisafe CV 10mg/75mg Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10mg/75mg Capsule', 'Can Lipisafe CV 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipisafe CV 10mg/75mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipisafe CV 10mg/75mg Capsule.'),
(20852, 'Lipisafe CV 10mg/75mg Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10mg/75mg Capsule', 'Will I need to stop Lipisafe CV 10mg/75mg Capsule before surgery or dental procedure?', 'Lipisafe CV 10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipisafe CV 10mg/75mg Capsule. But, you should not stop taking Lipisafe CV 10mg/75mg Capsule on your own.'),
(20853, 'Lipisafe CV 10mg/75mg Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipisafe CV 10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipisafe CV 10mg/75mg Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20854, 'Lipisafe CV 10mg/75mg Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10mg/75mg Capsule', 'Which painkiller is safe while taking Lipisafe CV 10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipisafe CV 10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipisafe CV 10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(20855, 'Lipisafe CV 10mg/75mg Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10mg/75mg Capsule', 'Can the use of Lipisafe CV 10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipisafe CV 10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20856, 'Lipisafe CV 10mg/75mg Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10mg/75mg Capsule', 'What medicines should I avoid while taking Lipisafe CV 10mg/75mg Capsule?', 'Lipisafe CV 10mg/75mg Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipisafe CV 10mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(20857, 'Lipisafe CV 10mg/75mg Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipisafe CV 10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20858, 'Lipisafe CV 20 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 20 Capsule', 'Can Lipisafe CV 20 Capsule cause muscle pain?', 'Yes, Lipisafe CV 20 Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipisafe CV 20 Capsule.'),
(20859, 'Lipisafe CV 20 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 20 Capsule', 'Will I need to stop Lipisafe CV 20 Capsule before surgery or dental procedure?', 'Lipisafe CV 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipisafe CV 20 Capsule. But, you should not stop taking Lipisafe CV 20 Capsule on your own.'),
(20860, 'Lipisafe CV 20 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 20 Capsule', 'What lifestyle changes should be adopted while taking Lipisafe CV 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipisafe CV 20 Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20861, 'Lipisafe CV 20 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 20 Capsule', 'Which painkiller is safe while taking Lipisafe CV 20 Capsule?', 'Paracetamol is safe to use while taking Lipisafe CV 20 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipisafe CV 20 Capsule, as they may increase the risk of bleeding.'),
(20862, 'Lipisafe CV 20 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 20 Capsule', 'Can the use of Lipisafe CV 20 Capsule increase the risk of bleeding?', 'Yes, Lipisafe CV 20 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(20863, 'Lipisafe CV 20 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 20 Capsule', 'What medicines should I avoid while taking Lipisafe CV 20 Capsule?', 'Lipisafe CV 20 Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipisafe CV 20 Capsule before taking any prescription or non-prescription medicine.'),
(20864, 'Lipisafe CV 20 Capsule', 'Lakshya Life Sciences', 'Lipisafe CV 20 Capsule', 'What are the instructions for the storage and disposal of Lipisafe CV 20 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20865, 'Lipisafe F Tablet', 'Lakshya Life Sciences', 'Lipisafe F Tablet', 'Can Lipisafe F Tablet cause liver damage?', 'Lipisafe F Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(20866, 'Lipisafe F Tablet', 'Lakshya Life Sciences', 'Lipisafe F Tablet', 'Can Lipisafe F Tablet cause muscle pain?', 'Yes, Lipisafe F Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipisafe F Tablet.'),
(20867, 'Lipisafe F Tablet', 'Lakshya Life Sciences', 'Lipisafe F Tablet', 'What lifestyle changes should be adopted while taking Lipisafe F Tablet?', 'Making lifestyle changes can boost your health while taking Lipisafe F Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20868, 'Lipisafe F Tablet', 'Lakshya Life Sciences', 'Lipisafe F Tablet', 'What medicines should I avoid while taking Lipisafe F Tablet?', 'The use of Lipisafe F Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipisafe F Tablet.'),
(20869, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20870, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Can Lipisave 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipisave 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20871, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Is Lipisave 20 Tablet used for lowering cholesterol?', 'Lipisave 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipisave 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipisave 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20872, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Can Lipisave 20 Tablet be prescribed to children?', 'Lipisave 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20873, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Is Lipisave 20 Tablet a blood thinner?', 'No, Lipisave 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20874, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Will taking Lipisave 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipisave 20 Tablet may increase this risk slightly. This is because Lipisave 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20875, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'For how long do I need to take Lipisave 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipisave 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipisave 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20876, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Does Lipisave 20 Tablet cause weight loss?', 'No, Lipisave 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipisave 20 Tablet.'),
(20877, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Can I stop taking Lipisave 20 Tablet?', 'No, you should not stop taking Lipisave 20 Tablet without consulting your doctor. If you think that Lipisave 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20878, 'Lipisave 20 Tablet', 'Daxin Pharmaceutical Pvt Ltd', 'Lipisave 20 Tablet', 'Can I take alcohol with Lipisave 20 Tablet?', 'No, it is not advised to take alcohol with Lipisave 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipisave 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipisave 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20879, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20880, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Can Lipisit 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipisit 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20881, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Is Lipisit 40mg Tablet used for lowering cholesterol?', 'Lipisit 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipisit 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipisit 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20882, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Can Lipisit 40mg Tablet be prescribed to children?', 'Lipisit 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20883, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Is Lipisit 40mg Tablet a blood thinner?', 'No, Lipisit 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20884, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Will taking Lipisit 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipisit 40mg Tablet may increase this risk slightly. This is because Lipisit 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20885, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'For how long do I need to take Lipisit 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipisit 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipisit 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20886, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Does Lipisit 40mg Tablet cause weight loss?', 'No, Lipisit 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipisit 40mg Tablet.'),
(20887, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Can I stop taking Lipisit 40mg Tablet?', 'No, you should not stop taking Lipisit 40mg Tablet without consulting your doctor. If you think that Lipisit 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20888, 'Lipisit 40mg Tablet', 'Agonist Healthcare', 'Lipisit 40mg Tablet', 'Can I take alcohol with Lipisit 40mg Tablet?', 'No, it is not advised to take alcohol with Lipisit 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipisit 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipisit 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20889, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20890, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Can Lipisky 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipisky 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20891, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Is Lipisky 10mg Tablet used for lowering cholesterol?', 'Lipisky 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipisky 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipisky 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20892, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Can Lipisky 10mg Tablet be prescribed to children?', 'Lipisky 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20893, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Is Lipisky 10mg Tablet a blood thinner?', 'No, Lipisky 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20894, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Will taking Lipisky 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipisky 10mg Tablet may increase this risk slightly. This is because Lipisky 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20895, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. For how long do I need to take Lipisky 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipisky 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipisky 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20896, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Does Lipisky 10mg Tablet cause weight loss?', 'No, Lipisky 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipisky 10mg Tablet.'),
(20897, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Can I stop taking Lipisky 10mg Tablet?', 'No, you should not stop taking Lipisky 10mg Tablet without consulting your doctor. If you think that Lipisky 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20898, 'Lipisky 10mg Tablet', 'Redmax Pharma', 'Lipisky 10mg Tablet', 'Q. Can I take alcohol with Lipisky 10mg Tablet?', 'No, it is not advised to take alcohol with Lipisky 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipisky 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipisky 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20899, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20900, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Can Lipisky 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipisky 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20901, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Is Lipisky 20mg Tablet used for lowering cholesterol?', 'Lipisky 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipisky 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipisky 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20902, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Can Lipisky 20mg Tablet be prescribed to children?', 'Lipisky 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20903, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Is Lipisky 20mg Tablet a blood thinner?', 'No, Lipisky 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20904, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Will taking Lipisky 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipisky 20mg Tablet may increase this risk slightly. This is because Lipisky 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20905, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'For how long do I need to take Lipisky 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipisky 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipisky 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20906, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Does Lipisky 20mg Tablet cause weight loss?', 'No, Lipisky 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipisky 20mg Tablet.'),
(20907, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Can I stop taking Lipisky 20mg Tablet?', 'No, you should not stop taking Lipisky 20mg Tablet without consulting your doctor. If you think that Lipisky 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20908, 'Lipisky 20mg Tablet', 'Redmax Pharma', 'Lipisky 20mg Tablet', 'Can I take alcohol with Lipisky 20mg Tablet?', 'No, it is not advised to take alcohol with Lipisky 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipisky 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipisky 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20909, 'Lipisol 50mg Injection', 'Alkem Laboratories Ltd', 'Lipisol 50mg Injection', 'Q. How does doxorubicin work?', 'Doxorubicin is anti-cancer or antineoplastic chemotherapy drug that belongs to a class of medication called anthracyclines. It slows down or stops the growth of cancer cells by interfering with DNA of the cancer cell.'),
(20910, 'Lipisol 50mg Injection', 'Alkem Laboratories Ltd', 'Lipisol 50mg Injection', 'Q. What is liposomal doxorubicin?', 'The molecules of doxorubicin are coated in a fatty capsule called as liposome. This liposome protects the body and allows the doxorubicin to remain in the blood circulation for a longer duration. This means that more amount of drug can be delivered to the cancer cells with less side effects.'),
(20911, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20912, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Can Lipistan 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipistan 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20913, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Is Lipistan 20mg Tablet used for lowering cholesterol?', 'Lipistan 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipistan 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipistan 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20914, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Can Lipistan 20mg Tablet be prescribed to children?', 'Lipistan 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20915, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Is Lipistan 20mg Tablet a blood thinner?', 'No, Lipistan 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20916, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Will taking Lipistan 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipistan 20mg Tablet may increase this risk slightly. This is because Lipistan 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20917, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'For how long do I need to take Lipistan 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipistan 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipistan 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20918, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Does Lipistan 20mg Tablet cause weight loss?', 'No, Lipistan 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipistan 20mg Tablet.'),
(20919, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Can I stop taking Lipistan 20mg Tablet?', 'No, you should not stop taking Lipistan 20mg Tablet without consulting your doctor. If you think that Lipistan 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20920, 'Lipistan 20mg Tablet', 'Deify Pharma', 'Lipistan 20mg Tablet', 'Can I take alcohol with Lipistan 20mg Tablet?', 'No, it is not advised to take alcohol with Lipistan 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipistan 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipistan 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20921, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20922, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Can Lipistan 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipistan 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20923, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Is Lipistan 40mg Tablet used for lowering cholesterol?', 'Lipistan 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipistan 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipistan 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20924, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Can Lipistan 40mg Tablet be prescribed to children?', 'Lipistan 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20925, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Is Lipistan 40mg Tablet a blood thinner?', 'No, Lipistan 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20926, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Will taking Lipistan 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipistan 40mg Tablet may increase this risk slightly. This is because Lipistan 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20927, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'For how long do I need to take Lipistan 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipistan 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipistan 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20928, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Does Lipistan 40mg Tablet cause weight loss?', 'No, Lipistan 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipistan 40mg Tablet.'),
(20929, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Can I stop taking Lipistan 40mg Tablet?', 'No, you should not stop taking Lipistan 40mg Tablet without consulting your doctor. If you think that Lipistan 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20930, 'Lipistan 40mg Tablet', 'Deify Pharma', 'Lipistan 40mg Tablet', 'Can I take alcohol with Lipistan 40mg Tablet?', 'No, it is not advised to take alcohol with Lipistan 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipistan 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipistan 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20931, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20932, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Can Lipistar 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipistar 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20933, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Is Lipistar 10mg Tablet used for lowering cholesterol?', 'Lipistar 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipistar 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipistar 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20934, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Can Lipistar 10mg Tablet be prescribed to children?', 'Lipistar 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20935, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Is Lipistar 10mg Tablet a blood thinner?', 'No, Lipistar 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20936, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Will taking Lipistar 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipistar 10mg Tablet may increase this risk slightly. This is because Lipistar 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20937, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'For how long do I need to take Lipistar 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipistar 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipistar 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20938, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Does Lipistar 10mg Tablet cause weight loss?', 'No, Lipistar 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipistar 10mg Tablet.'),
(20939, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Can I stop taking Lipistar 10mg Tablet?', 'No, you should not stop taking Lipistar 10mg Tablet without consulting your doctor. If you think that Lipistar 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20940, 'Lipistar 10mg Tablet', 'MMC Healthcare Ltd', 'Lipistar 10mg Tablet', 'Can I take alcohol with Lipistar 10mg Tablet?', 'No, it is not advised to take alcohol with Lipistar 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipistar 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipistar 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20941, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful for you.'),
(20942, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'What is Lipistat 10mg Tablet used for? How does it work?', 'Lipistat 10mg Tablet belongs to a class of medicines called statins that lower the cholesterol in the blood. It is used along with a healthy diet and exercise to reduce bad cholesterol and to increase the amount of good cholesterol in the blood. It works by slowing the production of cholesterol in the liver. This, in turn, decreases the amount of cholesterol that accumulates on the walls of arteries. Improving the level of cholesterol in blood helps to reduce the risk of heart attack or stroke.'),
(20943, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'When should I take Lipistat 10mg Tablet?', 'Lipistat 10mg Tablet is generally taken once a day preferably in the evening after dinner. Try taking this medicine at the same time every day to help remember when to take it.'),
(20944, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'For how long should I take Lipistat 10mg Tablet?', 'You may need to take Lipistat 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you keep taking Lipistat 10mg Tablet. Stopping Lipistat 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20945, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'What foods should be avoided when taking Lipistat 10mg Tablet?', 'Lipistat 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods which are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20946, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'Does Lipistat 10mg Tablet make you tired?', 'Yes, Lipistat 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often seen in people with heart disease or those suffering from liver illness. Lipistat 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipistat 10mg Tablet.'),
(20947, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'Can I take alcohol with Lipistat 10mg Tablet?', 'No, it is not advised to take alcohol with Lipistat 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in triglyceride levels if Lipistat 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness and tenderness. People with liver problems are therefore advised not to take Lipistat 10mg Tablet without consulting their doctor. They must also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20948, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'Is Lipistat 10mg Tablet safe to take?', 'Yes, Lipistat 10mg Tablet is safe to use if used as prescribed by the doctor and if the doctor\'s instructions are followed. The side effects of this medicine are few and do not occur in everyone.'),
(20949, 'Lipistat 10mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 10mg Tablet', 'Does Lipistat 10mg Tablet cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipistat 10mg Tablet may increase this risk slightly. This is because Lipistat 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20950, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful for you.'),
(20951, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'What is Lipistat 20mg Tablet used for? How does it work?', 'Lipistat 20mg Tablet belongs to a class of medicines called statins that lower the cholesterol in the blood. It is used along with a healthy diet and exercise to reduce bad cholesterol and to increase the amount of good cholesterol in the blood. It works by slowing the production of cholesterol in the liver. This, in turn, decreases the amount of cholesterol that accumulates on the walls of arteries. Improving the level of cholesterol in blood helps to reduce the risk of heart attack or stroke.'),
(20952, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'When should I take Lipistat 20mg Tablet?', 'Lipistat 20mg Tablet is generally taken once a day preferably in the evening after dinner. Try taking this medicine at the same time every day to help remember when to take it.'),
(20953, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'For how long should I take Lipistat 20mg Tablet?', 'You may need to take Lipistat 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you keep taking Lipistat 20mg Tablet. Stopping Lipistat 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(20954, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'What foods should be avoided when taking Lipistat 20mg Tablet?', 'Lipistat 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods which are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(20955, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'Does Lipistat 20mg Tablet make you tired?', 'Yes, Lipistat 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often seen in people with heart disease or those suffering from liver illness. Lipistat 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipistat 20mg Tablet.'),
(20956, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'Can I take alcohol with Lipistat 20mg Tablet?', 'No, it is not advised to take alcohol with Lipistat 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in triglyceride levels if Lipistat 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness and tenderness. People with liver problems are therefore advised not to take Lipistat 20mg Tablet without consulting their doctor. They must also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20957, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'Is Lipistat 20mg Tablet safe to take?', 'Yes, Lipistat 20mg Tablet is safe to use if used as prescribed by the doctor and if the doctor\'s instructions are followed. The side effects of this medicine are few and do not occur in everyone.'),
(20958, 'Lipistat 20mg Tablet', 'RPG Life Sciences Ltd', 'Lipistat 20mg Tablet', 'Does Lipistat 20mg Tablet cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipistat 20mg Tablet may increase this risk slightly. This is because Lipistat 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20959, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20960, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Can Lipisun 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipisun 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20961, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Is Lipisun 20mg Tablet used for lowering cholesterol?', 'Lipisun 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipisun 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipisun 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20962, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Can Lipisun 20mg Tablet be prescribed to children?', 'Lipisun 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20963, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Is Lipisun 20mg Tablet a blood thinner?', 'No, Lipisun 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20964, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Will taking Lipisun 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipisun 20mg Tablet may increase this risk slightly. This is because Lipisun 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20965, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'For how long do I need to take Lipisun 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipisun 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipisun 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20966, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Does Lipisun 20mg Tablet cause weight loss?', 'No, Lipisun 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipisun 20mg Tablet.'),
(20967, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Can I stop taking Lipisun 20mg Tablet?', 'No, you should not stop taking Lipisun 20mg Tablet without consulting your doctor. If you think that Lipisun 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20968, 'Lipisun 20mg Tablet', 'Suncor Pharma', 'Lipisun 20mg Tablet', 'Can I take alcohol with Lipisun 20mg Tablet?', 'No, it is not advised to take alcohol with Lipisun 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipisun 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipisun 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20969, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20970, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Can Lipitab 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitab 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20971, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Is Lipitab 40mg Tablet used for lowering cholesterol?', 'Lipitab 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipitab 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipitab 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20972, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Can Lipitab 40mg Tablet be prescribed to children?', 'Lipitab 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20973, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Is Lipitab 40mg Tablet a blood thinner?', 'No, Lipitab 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20974, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Will taking Lipitab 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitab 40mg Tablet may increase this risk slightly. This is because Lipitab 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20975, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'For how long do I need to take Lipitab 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipitab 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipitab 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20976, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Does Lipitab 40mg Tablet cause weight loss?', 'No, Lipitab 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipitab 40mg Tablet.'),
(20977, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Can I stop taking Lipitab 40mg Tablet?', 'No, you should not stop taking Lipitab 40mg Tablet without consulting your doctor. If you think that Lipitab 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20978, 'Lipitab 40mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 40mg Tablet', 'Can I take alcohol with Lipitab 40mg Tablet?', 'No, it is not advised to take alcohol with Lipitab 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipitab 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipitab 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20979, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(20980, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Can Lipitab 80mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitab 80mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(20981, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Is Lipitab 80mg Tablet used for lowering cholesterol?', 'Lipitab 80mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipitab 80mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipitab 80mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(20982, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Can Lipitab 80mg Tablet be prescribed to children?', 'Lipitab 80mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(20983, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Is Lipitab 80mg Tablet a blood thinner?', 'No, Lipitab 80mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(20984, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Will taking Lipitab 80mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitab 80mg Tablet may increase this risk slightly. This is because Lipitab 80mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(20985, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'For how long do I need to take Lipitab 80mg Tablet? Is it safe for long-term use?', 'You may need to take Lipitab 80mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipitab 80mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(20986, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Does Lipitab 80mg Tablet cause weight loss?', 'No, Lipitab 80mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipitab 80mg Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(20987, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Can I stop taking Lipitab 80mg Tablet?', 'No, you should not stop taking Lipitab 80mg Tablet without consulting your doctor. If you think that Lipitab 80mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(20988, 'Lipitab 80mg Tablet', 'Meyer Organics Pvt Ltd', 'Lipitab 80mg Tablet', 'Can I take alcohol with Lipitab 80mg Tablet?', 'No, it is not advised to take alcohol with Lipitab 80mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipitab 80mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipitab 80mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(20989, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'Can Lipitab ASP 10mg/75mg Capsule affect the liver?', 'Yes, Lipitab ASP 10mg/75mg Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(20990, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'What are the recommended storage conditions for Lipitab ASP 10mg/75mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20991, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'Can the Lipitab ASP 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipitab ASP 10mg/75mg Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20992, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'Will I need to stop Lipitab ASP 10mg/75mg Capsule before surgery or dental procedure?', 'Lipitab ASP 10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipitab ASP 10mg/75mg Capsule. You should not stop taking Lipitab ASP 10mg/75mg Capsule on your own.'),
(20993, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'What are the lifestyle changes one should adopt while taking Lipitab ASP 10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipitab ASP 10mg/75mg Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(20994, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'Which painkiller is safe while taking Lipitab ASP 10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipitab ASP 10mg/75mg Capsule for reducing pain. Avoid the use of other painkillers while taking Lipitab ASP 10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(20995, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'Which medicines should I avoid while taking Lipitab ASP 10mg/75mg Capsule?', 'Lipitab ASP 10mg/75mg Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipitab ASP 10mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(20996, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'Can Lipitab ASP 10mg/75mg Capsule affect the liver?', 'Yes, Lipitab ASP 10mg/75mg Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(20997, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'What are the recommended storage conditions for Lipitab ASP 10mg/75mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(20998, 'Lipitab ASP 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab ASP 10mg/75mg Capsule', 'Can the Lipitab ASP 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipitab ASP 10mg/75mg Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(20999, 'Lipitab CV 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 10mg/75mg Capsule', 'Can Lipitab CV 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipitab CV 10mg/75mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipitab CV 10mg/75mg Capsule.'),
(21000, 'Lipitab CV 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 10mg/75mg Capsule', 'Will I need to stop Lipitab CV 10mg/75mg Capsule before surgery or dental procedure?', 'Lipitab CV 10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipitab CV 10mg/75mg Capsule. But, you should not stop taking Lipitab CV 10mg/75mg Capsule on your own.'),
(21001, 'Lipitab CV 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 10mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipitab CV 10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipitab CV 10mg/75mg Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21002, 'Lipitab CV 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 10mg/75mg Capsule', 'Which painkiller is safe while taking Lipitab CV 10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipitab CV 10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipitab CV 10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21003, 'Lipitab CV 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 10mg/75mg Capsule', 'Can the use of Lipitab CV 10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipitab CV 10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21004, 'Lipitab CV 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 10mg/75mg Capsule', 'What medicines should I avoid while taking Lipitab CV 10mg/75mg Capsule?', 'Lipitab CV 10mg/75mg Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipitab CV 10mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(21005, 'Lipitab CV 10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipitab CV 10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21006, 'Lipitab CV 20mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 20mg/75mg Capsule', 'Can Lipitab CV 20mg/75mg Capsule cause muscle pain?', 'Yes, Lipitab CV 20mg/75mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipitab CV 20mg/75mg Capsule.'),
(21007, 'Lipitab CV 20mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 20mg/75mg Capsule', 'Will I need to stop Lipitab CV 20mg/75mg Capsule before surgery or dental procedure?', 'Lipitab CV 20mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipitab CV 20mg/75mg Capsule. But, you should not stop taking Lipitab CV 20mg/75mg Capsule on your own.'),
(21008, 'Lipitab CV 20mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 20mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Lipitab CV 20mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipitab CV 20mg/75mg Capsule. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21009, 'Lipitab CV 20mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 20mg/75mg Capsule', 'Which painkiller is safe while taking Lipitab CV 20mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipitab CV 20mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipitab CV 20mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21010, 'Lipitab CV 20mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 20mg/75mg Capsule', 'Can the use of Lipitab CV 20mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipitab CV 20mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21011, 'Lipitab CV 20mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 20mg/75mg Capsule', 'What medicines should I avoid while taking Lipitab CV 20mg/75mg Capsule?', 'Lipitab CV 20mg/75mg Capsule should be avoided with several medicines as it can cause serious problems. Talk to your doctor and inform him about using Lipitab CV 20mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(21012, 'Lipitab CV 20mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab CV 20mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipitab CV 20mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21013, 'Lipitab Gold 20 Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 20 Capsule', 'What is Lipitab Gold 20 Capsule?', 'Lipitab Gold 20 Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(21014, 'Lipitab Gold 20 Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 20 Capsule', 'Can the use of Lipitab Gold 20 Capsule cause dizziness?', 'Yes, the use of Lipitab Gold 20 Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(21015, 'Lipitab Gold 20 Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 20 Capsule', 'Can the use of Lipitab Gold 20 Capsule cause nausea and vomiting?', 'Yes, the use of Lipitab Gold 20 Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(21016, 'Lipitab Gold 20 Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 20 Capsule', 'What is the recommended storage condition for the Lipitab Gold 20 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21017, 'Lipitab Gold 75mg/10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 75mg/10mg/75mg Capsule', 'What is Lipitab Gold 75mg/10mg/75mg Capsule?', 'Lipitab Gold 75mg/10mg/75mg Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(21018, 'Lipitab Gold 75mg/10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 75mg/10mg/75mg Capsule', 'Can the use of Lipitab Gold 75mg/10mg/75mg Capsule cause dizziness?', 'Yes, the use of Lipitab Gold 75mg/10mg/75mg Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(21019, 'Lipitab Gold 75mg/10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 75mg/10mg/75mg Capsule', 'Can the use of Lipitab Gold 75mg/10mg/75mg Capsule cause nausea and vomiting?', 'Yes, the use of Lipitab Gold 75mg/10mg/75mg Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(21020, 'Lipitab Gold 75mg/10mg/75mg Capsule', 'HBC Lifesciences Pvt Ltd', 'Lipitab Gold 75mg/10mg/75mg Capsule', 'What is the recommended storage condition for the Lipitab Gold 75mg/10mg/75mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21021, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'For how long should I take Lipitas 10 Tablet?', 'You may need to take Lipitas 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipitas 10 Tablet. Stopping Lipitas 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21022, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'Does Lipitas 10 Tablet cause weight gain?', 'No, there is no evidence of Lipitas 10 Tablet causing weight gain. If you are taking Lipitas 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21023, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'Does Lipitas 10 Tablet make you tired?', 'Yes, Lipitas 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipitas 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipitas 10 Tablet.'),
(21024, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'Should Lipitas 10 Tablet be taken at night?', 'Lipitas 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21025, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'What foods should be avoided when taking Lipitas 10 Tablet?', 'Lipitas 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21026, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'How do I know whether Lipitas 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipitas 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipitas 10 Tablet versus the risks of not taking it at all.'),
(21027, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'Can Lipitas 10 Tablet cause memory loss?', 'Lipitas 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipitas 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21028, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'Can Lipitas 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitas 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21029, 'Lipitas 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 10 Tablet', 'Is it true that Lipitas 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitas 10 Tablet may slightly increase this risk. This is because Lipitas 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21030, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. For how long should I take Lipitas 20 Tablet?', 'You may need to take Lipitas 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipitas 20 Tablet. Stopping Lipitas 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21031, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Does Lipitas 20 Tablet cause weight gain?', 'No, there is no evidence of Lipitas 20 Tablet causing weight gain. If you are taking Lipitas 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21032, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Does Lipitas 20 Tablet make you tired?', 'Yes, Lipitas 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipitas 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipitas 20 Tablet.'),
(21033, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Should Lipitas 20 Tablet be taken at night?', 'Lipitas 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21034, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. What foods should be avoided when taking Lipitas 20 Tablet?', 'Lipitas 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21035, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. How do I know whether Lipitas 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipitas 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipitas 20 Tablet versus the risks of not taking it at all.'),
(21036, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Can Lipitas 20 Tablet cause memory loss?', 'Lipitas 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipitas 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21037, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Can Lipitas 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitas 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21038, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Is it true that Lipitas 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitas 20 Tablet may slightly increase this risk. This is because Lipitas 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21039, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. For how long should I take Lipitas 20 Tablet?', 'You may need to take Lipitas 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipitas 20 Tablet. Stopping Lipitas 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21040, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Does Lipitas 20 Tablet cause weight gain?', 'No, there is no evidence of Lipitas 20 Tablet causing weight gain. If you are taking Lipitas 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21041, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Does Lipitas 20 Tablet make you tired?', 'Yes, Lipitas 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipitas 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipitas 20 Tablet.'),
(21042, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Should Lipitas 20 Tablet be taken at night?', 'Lipitas 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21043, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. What foods should be avoided when taking Lipitas 20 Tablet?', 'Lipitas 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21044, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. How do I know whether Lipitas 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipitas 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipitas 20 Tablet versus the risks of not taking it at all.'),
(21045, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Can Lipitas 20 Tablet cause memory loss?', 'Lipitas 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipitas 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21046, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Can Lipitas 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitas 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21047, 'Lipitas 20 Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 20 Tablet', 'Q. Is it true that Lipitas 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitas 20 Tablet may slightly increase this risk. This is because Lipitas 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21048, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'For how long should I take Lipitas 40mg Tablet?', 'You may need to take Lipitas 40mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipitas 40mg Tablet. Stopping Lipitas 40mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21049, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'Does Lipitas 40mg Tablet cause weight gain?', 'No, there is no evidence of Lipitas 40mg Tablet causing weight gain. If you are taking Lipitas 40mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21050, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'Does Lipitas 40mg Tablet make you tired?', 'Yes, Lipitas 40mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipitas 40mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipitas 40mg Tablet.'),
(21051, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'Should Lipitas 40mg Tablet be taken at night?', 'Lipitas 40mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21052, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'What foods should be avoided when taking Lipitas 40mg Tablet?', 'Lipitas 40mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21053, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'How do I know whether Lipitas 40mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipitas 40mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipitas 40mg Tablet versus the risks of not taking it at all.'),
(21054, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'Can Lipitas 40mg Tablet cause memory loss?', 'Lipitas 40mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipitas 40mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21055, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'Can Lipitas 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitas 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21056, 'Lipitas 40mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 40mg Tablet', 'Is it true that Lipitas 40mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitas 40mg Tablet may slightly increase this risk. This is because Lipitas 40mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21057, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'For how long should I take Lipitas 5mg Tablet?', 'You may need to take Lipitas 5mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipitas 5mg Tablet. Stopping Lipitas 5mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21058, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'Does Lipitas 5mg Tablet cause weight gain?', 'No, there is no evidence of Lipitas 5mg Tablet causing weight gain. If you are taking Lipitas 5mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21059, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'Does Lipitas 5mg Tablet make you tired?', 'Yes, Lipitas 5mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipitas 5mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipitas 5mg Tablet.'),
(21060, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'Should Lipitas 5mg Tablet be taken at night?', 'Lipitas 5mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21061, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'What foods should be avoided when taking Lipitas 5mg Tablet?', 'Lipitas 5mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21062, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'How do I know whether Lipitas 5mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipitas 5mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipitas 5mg Tablet versus the risks of not taking it at all.'),
(21063, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'Can Lipitas 5mg Tablet cause memory loss?', 'Lipitas 5mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipitas 5mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21064, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'Can Lipitas 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitas 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21065, 'Lipitas 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas 5mg Tablet', 'Is it true that Lipitas 5mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitas 5mg Tablet may slightly increase this risk. This is because Lipitas 5mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21066, 'Lipitas F 160mg/10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/10mg Tablet', 'Can the use of Lipitas F 160mg/10mg Tablet cause liver damage?', 'Lipitas F 160mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21067, 'Lipitas F 160mg/10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/10mg Tablet', 'Can the use of Lipitas F 160mg/10mg Tablet cause muscle pain?', 'Yes, Lipitas F 160mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21068, 'Lipitas F 160mg/10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lipitas F 160mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipitas F 160mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21069, 'Lipitas F 160mg/10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/10mg Tablet', 'What medicines should I avoid while taking Lipitas F 160mg/10mg Tablet?', 'Lipitas F 160mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipitas F 160mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(21070, 'Lipitas F 160mg/10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lipitas F 160mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21071, 'Lipitas F 160mg/20mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/20mg Tablet', 'Can the use of Lipitas F 160mg/20mg Tablet cause liver damage?', 'Lipitas F 160mg/20mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21072, 'Lipitas F 160mg/20mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/20mg Tablet', 'Can the use of Lipitas F 160mg/20mg Tablet cause muscle pain?', 'Yes, Lipitas F 160mg/20mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21073, 'Lipitas F 160mg/20mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/20mg Tablet', 'What lifestyle changes should I adopt while taking Lipitas F 160mg/20mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipitas F 160mg/20mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21074, 'Lipitas F 160mg/20mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/20mg Tablet', 'What medicines should I avoid while taking Lipitas F 160mg/20mg Tablet?', 'Lipitas F 160mg/20mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipitas F 160mg/20mg Tablet before taking any prescription or non-prescription medicine.'),
(21075, 'Lipitas F 160mg/20mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/20mg Tablet', 'What are the instructions for the storage and disposal of Lipitas F 160mg/20mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21076, 'Lipitas F 160mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/5mg Tablet', 'Can the use of Lipitas F 160mg/5mg Tablet cause liver damage?', 'Lipitas F 160mg/5mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21077, 'Lipitas F 160mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/5mg Tablet', 'Can the use of Lipitas F 160mg/5mg Tablet cause muscle pain?', 'Yes, Lipitas F 160mg/5mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21078, 'Lipitas F 160mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/5mg Tablet', 'What lifestyle changes should I adopt while taking Lipitas F 160mg/5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipitas F 160mg/5mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21079, 'Lipitas F 160mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/5mg Tablet', 'What medicines should I avoid while taking Lipitas F 160mg/5mg Tablet?', 'Lipitas F 160mg/5mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipitas F 160mg/5mg Tablet before taking any prescription or non-prescription medicine.'),
(21080, 'Lipitas F 160mg/5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lipitas F 160mg/5mg Tablet', 'What are the instructions for the storage and disposal of Lipitas F 160mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21081, 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipitas Gold 75mg/10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21082, 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Will I need to stop Lipitas Gold 75mg/10mg/75mg Capsule before surgery or dental procedure?', 'Lipitas Gold 75mg/10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipitas Gold 75mg/10mg/75mg Capsule. However, do not stop taking Lipitas Gold 75mg/10mg/75mg Capsule on your own.'),
(21083, 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/10mg/75mg Capsule', 'What are the lifestyle changes to adapt while taking Lipitas Gold 75mg/10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipitas Gold 75mg/10mg/75mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21084, 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Which painkiller is safe while taking Lipitas Gold 75mg/10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipitas Gold 75mg/10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipitas Gold 75mg/10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21085, 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/10mg/75mg Capsule', 'Can the use of Lipitas Gold 75mg/10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipitas Gold 75mg/10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21086, 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/20mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipitas Gold 75mg/20mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21087, 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Will I need to stop Lipitas Gold 75mg/20mg/75mg Capsule before surgery or dental procedure?', 'Lipitas Gold 75mg/20mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipitas Gold 75mg/20mg/75mg Capsule. However, do not stop taking Lipitas Gold 75mg/20mg/75mg Capsule on your own.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21088, 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/20mg/75mg Capsule', 'What are the lifestyle changes to adapt while taking Lipitas Gold 75mg/20mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipitas Gold 75mg/20mg/75mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21089, 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Which painkiller is safe while taking Lipitas Gold 75mg/20mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipitas Gold 75mg/20mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipitas Gold 75mg/20mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21090, 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lipitas Gold 75mg/20mg/75mg Capsule', 'Can the use of Lipitas Gold 75mg/20mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipitas Gold 75mg/20mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21091, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'For how long should I take Lipithro 10mg Tablet?', 'You may need to take Lipithro 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipithro 10mg Tablet. Stopping Lipithro 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21092, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'Does Lipithro 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipithro 10mg Tablet causing weight gain. If you are taking Lipithro 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21093, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'Does Lipithro 10mg Tablet make you tired?', 'Yes, Lipithro 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipithro 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipithro 10mg Tablet.'),
(21094, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'Should Lipithro 10mg Tablet be taken at night?', 'Lipithro 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21095, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'What foods should be avoided when taking Lipithro 10mg Tablet?', 'Lipithro 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21096, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'How do I know whether Lipithro 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipithro 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipithro 10mg Tablet versus the risks of not taking it at all.'),
(21097, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'Can Lipithro 10mg Tablet cause memory loss?', 'Lipithro 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipithro 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21098, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'Can Lipithro 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipithro 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21099, 'Lipithro 10mg Tablet', 'Octavius Pharma Pvt Ltd', 'Lipithro 10mg Tablet', 'Is it true that Lipithro 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipithro 10mg Tablet may slightly increase this risk. This is because Lipithro 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21100, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'For how long should I take Lipithro 20mg Tablet?', 'You may need to take Lipithro 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipithro 20mg Tablet. Stopping Lipithro 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21101, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'Does Lipithro 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipithro 20mg Tablet causing weight gain. If you are taking Lipithro 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21102, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'Does Lipithro 20mg Tablet make you tired?', 'Yes, Lipithro 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipithro 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipithro 20mg Tablet.'),
(21103, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'Should Lipithro 20mg Tablet be taken at night?', 'Lipithro 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21104, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'What foods should be avoided when taking Lipithro 20mg Tablet?', 'Lipithro 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21105, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'How do I know whether Lipithro 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipithro 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipithro 20mg Tablet versus the risks of not taking it at all.'),
(21106, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'Can Lipithro 20mg Tablet cause memory loss?', 'Lipithro 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipithro 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21107, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'Can Lipithro 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipithro 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21108, 'Lipithro 20mg Tablet', 'Octalife Pharma Pvt Ltd', 'Lipithro 20mg Tablet', 'Is it true that Lipithro 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipithro 20mg Tablet may slightly increase this risk. This is because Lipithro 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21109, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21110, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Can Lipitin 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitin 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21111, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Is Lipitin 40mg Tablet used for lowering cholesterol?', 'Lipitin 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipitin 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipitin 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21112, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Can Lipitin 40mg Tablet be prescribed to children?', 'Lipitin 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21113, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Is Lipitin 40mg Tablet a blood thinner?', 'No, Lipitin 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21114, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Will taking Lipitin 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitin 40mg Tablet may increase this risk slightly. This is because Lipitin 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21115, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'For how long do I need to take Lipitin 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipitin 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipitin 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21116, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Does Lipitin 40mg Tablet cause weight loss?', 'No, Lipitin 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipitin 40mg Tablet.'),
(21117, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Can I stop taking Lipitin 40mg Tablet?', 'No, you should not stop taking Lipitin 40mg Tablet without consulting your doctor. If you think that Lipitin 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21118, 'Lipitin 40mg Tablet', 'General Pharmaceuticals Pvt Ltd', 'Lipitin 40mg Tablet', 'Can I take alcohol with Lipitin 40mg Tablet?', 'No, it is not advised to take alcohol with Lipitin 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipitin 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipitin 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21119, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21120, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Can Lipitor 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitor 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21121, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Is Lipitor 10mg Tablet used for lowering cholesterol?', 'Lipitor 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipitor 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipitor 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21122, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Can Lipitor 10mg Tablet be prescribed to children?', 'Lipitor 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21123, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Is Lipitor 10mg Tablet a blood thinner?', 'No, Lipitor 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21124, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Will taking Lipitor 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitor 10mg Tablet may increase this risk slightly. This is because Lipitor 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21125, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'For how long do I need to take Lipitor 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipitor 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipitor 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21126, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Does Lipitor 10mg Tablet cause weight loss?', 'No, Lipitor 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipitor 10mg Tablet.'),
(21127, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Can I stop taking Lipitor 10mg Tablet?', 'No, you should not stop taking Lipitor 10mg Tablet without consulting your doctor. If you think that Lipitor 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21128, 'Lipitor 10mg Tablet', 'Pfizer Ltd', 'Lipitor 10mg Tablet', 'Can I take alcohol with Lipitor 10mg Tablet?', 'No, it is not advised to take alcohol with Lipitor 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipitor 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipitor 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21129, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'For how long should I take Lipitrack 10mg Tablet?', 'You may need to take Lipitrack 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipitrack 10mg Tablet. Stopping Lipitrack 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21130, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'Does Lipitrack 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipitrack 10mg Tablet causing weight gain. If you are taking Lipitrack 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21131, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'Does Lipitrack 10mg Tablet make you tired?', 'Yes, Lipitrack 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipitrack 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipitrack 10mg Tablet.'),
(21132, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'Should Lipitrack 10mg Tablet be taken at night?', 'Lipitrack 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21133, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'What foods should be avoided when taking Lipitrack 10mg Tablet?', 'Lipitrack 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21134, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'How do I know whether Lipitrack 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipitrack 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipitrack 10mg Tablet versus the risks of not taking it at all.'),
(21135, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'Can Lipitrack 10mg Tablet cause memory loss?', 'Lipitrack 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipitrack 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21136, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'Can Lipitrack 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitrack 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21137, 'Lipitrack 10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 10mg Tablet', 'Is it true that Lipitrack 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitrack 10mg Tablet may slightly increase this risk. This is because Lipitrack 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21138, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'For how long should I take Lipitrack 20mg Tablet?', 'You may need to take Lipitrack 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipitrack 20mg Tablet. Stopping Lipitrack 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21139, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'Does Lipitrack 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipitrack 20mg Tablet causing weight gain. If you are taking Lipitrack 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21140, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'Does Lipitrack 20mg Tablet make you tired?', 'Yes, Lipitrack 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipitrack 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipitrack 20mg Tablet.'),
(21141, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'Should Lipitrack 20mg Tablet be taken at night?', 'Lipitrack 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21142, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'What foods should be avoided when taking Lipitrack 20mg Tablet?', 'Lipitrack 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21143, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'How do I know whether Lipitrack 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipitrack 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipitrack 20mg Tablet versus the risks of not taking it at all.'),
(21144, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'Can Lipitrack 20mg Tablet cause memory loss?', 'Lipitrack 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipitrack 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21145, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'Can Lipitrack 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipitrack 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21146, 'Lipitrack 20mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack 20mg Tablet', 'Is it true that Lipitrack 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipitrack 20mg Tablet may slightly increase this risk. This is because Lipitrack 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21147, 'Lipitrack F 160mg/10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/10mg Tablet', 'Can the use of Lipitrack F 160mg/10mg Tablet cause liver damage?', 'Lipitrack F 160mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21148, 'Lipitrack F 160mg/10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/10mg Tablet', 'Can the use of Lipitrack F 160mg/10mg Tablet cause muscle pain?', 'Yes, Lipitrack F 160mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21149, 'Lipitrack F 160mg/10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lipitrack F 160mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipitrack F 160mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21150, 'Lipitrack F 160mg/10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/10mg Tablet', 'What medicines should I avoid while taking Lipitrack F 160mg/10mg Tablet?', 'Lipitrack F 160mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipitrack F 160mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(21151, 'Lipitrack F 160mg/10mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lipitrack F 160mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21152, 'Lipitrack F 160mg/5mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/5mg Tablet', 'Can the use of Lipitrack F 160mg/5mg Tablet cause liver damage?', 'Lipitrack F 160mg/5mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21153, 'Lipitrack F 160mg/5mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/5mg Tablet', 'Can the use of Lipitrack F 160mg/5mg Tablet cause muscle pain?', 'Yes, Lipitrack F 160mg/5mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21154, 'Lipitrack F 160mg/5mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/5mg Tablet', 'What lifestyle changes should I adopt while taking Lipitrack F 160mg/5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipitrack F 160mg/5mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21155, 'Lipitrack F 160mg/5mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/5mg Tablet', 'What medicines should I avoid while taking Lipitrack F 160mg/5mg Tablet?', 'Lipitrack F 160mg/5mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipitrack F 160mg/5mg Tablet before taking any prescription or non-prescription medicine.'),
(21156, 'Lipitrack F 160mg/5mg Tablet', 'Jarun Pharmaceuticals', 'Lipitrack F 160mg/5mg Tablet', 'What are the instructions for the storage and disposal of Lipitrack F 160mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21157, 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipitrack Gold 75mg/10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21158, 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Will I need to stop Lipitrack Gold 75mg/10mg/75mg Capsule before surgery or dental procedure?', 'Lipitrack Gold 75mg/10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipitrack Gold 75mg/10mg/75mg Capsule. However, do not stop taking Lipitrack Gold 75mg/10mg/75mg Capsule on your own.'),
(21159, 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'What are the lifestyle changes to adapt while taking Lipitrack Gold 75mg/10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipitrack Gold 75mg/10mg/75mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21160, 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Which painkiller is safe while taking Lipitrack Gold 75mg/10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipitrack Gold 75mg/10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipitrack Gold 75mg/10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21161, 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/10mg/75mg Capsule', 'Can the use of Lipitrack Gold 75mg/10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipitrack Gold 75mg/10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21162, 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipitrack Gold 75mg/20mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21163, 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Will I need to stop Lipitrack Gold 75mg/20mg/75mg Capsule before surgery or dental procedure?', 'Lipitrack Gold 75mg/20mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipitrack Gold 75mg/20mg/75mg Capsule. However, do not stop taking Lipitrack Gold 75mg/20mg/75mg Capsule on your own.'),
(21164, 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'What are the lifestyle changes to adapt while taking Lipitrack Gold 75mg/20mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipitrack Gold 75mg/20mg/75mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21165, 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Which painkiller is safe while taking Lipitrack Gold 75mg/20mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipitrack Gold 75mg/20mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipitrack Gold 75mg/20mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21166, 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Jarun Pharmaceuticals', 'Lipitrack Gold 75mg/20mg/75mg Capsule', 'Can the use of Lipitrack Gold 75mg/20mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipitrack Gold 75mg/20mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21167, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'For how long should I take Lipivance 10mg Tablet?', 'You may need to take Lipivance 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipivance 10mg Tablet. Stopping Lipivance 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21168, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'Does Lipivance 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipivance 10mg Tablet causing weight gain. If you are taking Lipivance 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21169, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'Does Lipivance 10mg Tablet make you tired?', 'Yes, Lipivance 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipivance 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipivance 10mg Tablet.'),
(21170, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'Should Lipivance 10mg Tablet be taken at night?', 'Lipivance 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21171, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'What foods should be avoided when taking Lipivance 10mg Tablet?', 'Lipivance 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21172, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'How do I know whether Lipivance 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipivance 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipivance 10mg Tablet versus the risks of not taking it at all.'),
(21173, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'Can Lipivance 10mg Tablet cause memory loss?', 'Lipivance 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipivance 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21174, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'Can Lipivance 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipivance 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21175, 'Lipivance 10mg Tablet', 'Calevance International Private Limited', 'Lipivance 10mg Tablet', 'Is it true that Lipivance 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipivance 10mg Tablet may slightly increase this risk. This is because Lipivance 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21176, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'For how long should I take Lipivance 20mg Tablet?', 'You may need to take Lipivance 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipivance 20mg Tablet. Stopping Lipivance 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21177, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'Does Lipivance 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipivance 20mg Tablet causing weight gain. If you are taking Lipivance 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21178, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'Does Lipivance 20mg Tablet make you tired?', 'Yes, Lipivance 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipivance 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipivance 20mg Tablet.'),
(21179, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'Should Lipivance 20mg Tablet be taken at night?', 'Lipivance 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21180, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'What foods should be avoided when taking Lipivance 20mg Tablet?', 'Lipivance 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21181, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'How do I know whether Lipivance 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipivance 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipivance 20mg Tablet versus the risks of not taking it at all.'),
(21182, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'Can Lipivance 20mg Tablet cause memory loss?', 'Lipivance 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipivance 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21183, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'Can Lipivance 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipivance 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21184, 'Lipivance 20mg Tablet', 'Calevance International Private Limited', 'Lipivance 20mg Tablet', 'Is it true that Lipivance 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipivance 20mg Tablet may slightly increase this risk. This is because Lipivance 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21185, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'For how long should I take Lipivance 5mg Tablet?', 'You may need to take Lipivance 5mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipivance 5mg Tablet. Stopping Lipivance 5mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21186, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'Does Lipivance 5mg Tablet cause weight gain?', 'No, there is no evidence of Lipivance 5mg Tablet causing weight gain. If you are taking Lipivance 5mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21187, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'Does Lipivance 5mg Tablet make you tired?', 'Yes, Lipivance 5mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipivance 5mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipivance 5mg Tablet.'),
(21188, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'Should Lipivance 5mg Tablet be taken at night?', 'Lipivance 5mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21189, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'What foods should be avoided when taking Lipivance 5mg Tablet?', 'Lipivance 5mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21190, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'How do I know whether Lipivance 5mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipivance 5mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipivance 5mg Tablet versus the risks of not taking it at all.'),
(21191, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'Can Lipivance 5mg Tablet cause memory loss?', 'Lipivance 5mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipivance 5mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21192, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'Can Lipivance 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipivance 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21193, 'Lipivance 5mg Tablet', 'Calevance International Private Limited', 'Lipivance 5mg Tablet', 'Is it true that Lipivance 5mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipivance 5mg Tablet may slightly increase this risk. This is because Lipivance 5mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21194, 'Lipivance F 160mg/10mg Tablet', 'Calevance International Private Limited', 'Lipivance F 160mg/10mg Tablet', 'Can the use of Lipivance F 160mg/10mg Tablet cause liver damage?', 'Lipivance F 160mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21195, 'Lipivance F 160mg/10mg Tablet', 'Calevance International Private Limited', 'Lipivance F 160mg/10mg Tablet', 'Can the use of Lipivance F 160mg/10mg Tablet cause muscle pain?', 'Yes, Lipivance F 160mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21196, 'Lipivance F 160mg/10mg Tablet', 'Calevance International Private Limited', 'Lipivance F 160mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lipivance F 160mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipivance F 160mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21197, 'Lipivance F 160mg/10mg Tablet', 'Calevance International Private Limited', 'Lipivance F 160mg/10mg Tablet', 'What medicines should I avoid while taking Lipivance F 160mg/10mg Tablet?', 'Lipivance F 160mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipivance F 160mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(21198, 'Lipivance F 160mg/10mg Tablet', 'Calevance International Private Limited', 'Lipivance F 160mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lipivance F 160mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21199, 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Calevance International Private Limited', 'Lipivance Gold 75mg/10mg/75mg Capsule', 'What are the instructions for the storage and disposal of Lipivance Gold 75mg/10mg/75mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21200, 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Calevance International Private Limited', 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Will I need to stop Lipivance Gold 75mg/10mg/75mg Capsule before surgery or dental procedure?', 'Lipivance Gold 75mg/10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipivance Gold 75mg/10mg/75mg Capsule. However, do not stop taking Lipivance Gold 75mg/10mg/75mg Capsule on your own.'),
(21201, 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Calevance International Private Limited', 'Lipivance Gold 75mg/10mg/75mg Capsule', 'What are the lifestyle changes to adapt while taking Lipivance Gold 75mg/10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipivance Gold 75mg/10mg/75mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21202, 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Calevance International Private Limited', 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Which painkiller is safe while taking Lipivance Gold 75mg/10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipivance Gold 75mg/10mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Lipivance Gold 75mg/10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21203, 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Calevance International Private Limited', 'Lipivance Gold 75mg/10mg/75mg Capsule', 'Can the use of Lipivance Gold 75mg/10mg/75mg Capsule increase the risk of bleeding?', 'Yes, Lipivance Gold 75mg/10mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21204, 'Lipivas F 10mg/160mg Tablet', 'Elder Pharmaceuticals Ltd', 'Lipivas F 10mg/160mg Tablet', 'Can Lipivas F 10mg/160mg Tablet cause liver damage?', 'Lipivas F 10mg/160mg Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21205, 'Lipivas F 10mg/160mg Tablet', 'Elder Pharmaceuticals Ltd', 'Lipivas F 10mg/160mg Tablet', 'Can Lipivas F 10mg/160mg Tablet cause muscle pain?', 'Yes, Lipivas F 10mg/160mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipivas F 10mg/160mg Tablet.'),
(21206, 'Lipivas F 10mg/160mg Tablet', 'Elder Pharmaceuticals Ltd', 'Lipivas F 10mg/160mg Tablet', 'What lifestyle changes should be adopted while taking Lipivas F 10mg/160mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipivas F 10mg/160mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21207, 'Lipivas F 10mg/160mg Tablet', 'Elder Pharmaceuticals Ltd', 'Lipivas F 10mg/160mg Tablet', 'What medicines should I avoid while taking Lipivas F 10mg/160mg Tablet?', 'The use of Lipivas F 10mg/160mg Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipivas F 10mg/160mg Tablet.'),
(21208, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21209, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Can Lipivent 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipivent 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21210, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Is Lipivent 20mg Tablet used for lowering cholesterol?', 'Lipivent 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipivent 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipivent 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21211, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Can Lipivent 20mg Tablet be prescribed to children?', 'Lipivent 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21212, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Is Lipivent 20mg Tablet a blood thinner?', 'No, Lipivent 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21213, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Will taking Lipivent 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipivent 20mg Tablet may increase this risk slightly. This is because Lipivent 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21214, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'For how long do I need to take Lipivent 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipivent 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipivent 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21215, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Does Lipivent 20mg Tablet cause weight loss?', 'No, Lipivent 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipivent 20mg Tablet.'),
(21216, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Can I stop taking Lipivent 20mg Tablet?', 'No, you should not stop taking Lipivent 20mg Tablet without consulting your doctor. If you think that Lipivent 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21217, 'Lipivent 20mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 20mg Tablet', 'Can I take alcohol with Lipivent 20mg Tablet?', 'No, it is not advised to take alcohol with Lipivent 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipivent 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipivent 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21218, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21219, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Can Lipivent 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipivent 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21220, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Is Lipivent 40mg Tablet used for lowering cholesterol?', 'Lipivent 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipivent 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipivent 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21221, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Can Lipivent 40mg Tablet be prescribed to children?', 'Lipivent 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21222, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Is Lipivent 40mg Tablet a blood thinner?', 'No, Lipivent 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21223, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Will taking Lipivent 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipivent 40mg Tablet may increase this risk slightly. This is because Lipivent 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21224, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'For how long do I need to take Lipivent 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipivent 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipivent 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21225, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Does Lipivent 40mg Tablet cause weight loss?', 'No, Lipivent 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipivent 40mg Tablet.'),
(21226, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Can I stop taking Lipivent 40mg Tablet?', 'No, you should not stop taking Lipivent 40mg Tablet without consulting your doctor. If you think that Lipivent 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21227, 'Lipivent 40mg Tablet', 'Univentis Medicare Ltd', 'Lipivent 40mg Tablet', 'Can I take alcohol with Lipivent 40mg Tablet?', 'No, it is not advised to take alcohol with Lipivent 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipivent 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipivent 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21228, 'Lipiverge-Gold 10 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 10 Capsule', 'What are the instructions for the storage and disposal of Lipiverge-Gold 10 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21229, 'Lipiverge-Gold 10 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 10 Capsule', 'Will I need to stop Lipiverge-Gold 10 Capsule before surgery or dental procedure?', 'Lipiverge-Gold 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipiverge-Gold 10 Capsule. However, do not stop taking Lipiverge-Gold 10 Capsule on your own.'),
(21230, 'Lipiverge-Gold 10 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 10 Capsule', 'What are the lifestyle changes to adapt while taking Lipiverge-Gold 10 Capsule?', 'Making lifestyle changes can boost your health while taking Lipiverge-Gold 10 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21231, 'Lipiverge-Gold 10 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 10 Capsule', 'Which painkiller is safe while taking Lipiverge-Gold 10 Capsule?', 'Paracetamol is safe to use while taking Lipiverge-Gold 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipiverge-Gold 10 Capsule, as they may increase the risk of bleeding.'),
(21232, 'Lipiverge-Gold 10 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 10 Capsule', 'Can the use of Lipiverge-Gold 10 Capsule increase the risk of bleeding?', 'Yes, Lipiverge-Gold 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21233, 'Lipiverge-Gold 20 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 20 Capsule', 'What are the instructions for the storage and disposal of Lipiverge-Gold 20 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21234, 'Lipiverge-Gold 20 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 20 Capsule', 'Will I need to stop Lipiverge-Gold 20 Capsule before surgery or dental procedure?', 'Lipiverge-Gold 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lipiverge-Gold 20 Capsule. However, do not stop taking Lipiverge-Gold 20 Capsule on your own.'),
(21235, 'Lipiverge-Gold 20 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 20 Capsule', 'What are the lifestyle changes to adapt while taking Lipiverge-Gold 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipiverge-Gold 20 Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21236, 'Lipiverge-Gold 20 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 20 Capsule', 'Which painkiller is safe while taking Lipiverge-Gold 20 Capsule?', 'Paracetamol is safe to use while taking Lipiverge-Gold 20 Capsule for relieving pain. Avoid the use of other painkillers while taking Lipiverge-Gold 20 Capsule, as they may increase the risk of bleeding.'),
(21237, 'Lipiverge-Gold 20 Capsule', 'Mediverge Healthcare Pvt Ltd', 'Lipiverge-Gold 20 Capsule', 'Can the use of Lipiverge-Gold 20 Capsule increase the risk of bleeding?', 'Yes, Lipiverge-Gold 20 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21238, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21239, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Can Lipiviron 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiviron 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21240, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Is Lipiviron 10 Tablet used for lowering cholesterol?', 'Lipiviron 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiviron 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiviron 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21241, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Can Lipiviron 10 Tablet be prescribed to children?', 'Lipiviron 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21242, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Is Lipiviron 10 Tablet a blood thinner?', 'No, Lipiviron 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21243, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Will taking Lipiviron 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiviron 10 Tablet may increase this risk slightly. This is because Lipiviron 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21244, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'For how long do I need to take Lipiviron 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipiviron 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiviron 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21245, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Does Lipiviron 10 Tablet cause weight loss?', 'No, Lipiviron 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiviron 10 Tablet.'),
(21246, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Can I stop taking Lipiviron 10 Tablet?', 'No, you should not stop taking Lipiviron 10 Tablet without consulting your doctor. If you think that Lipiviron 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21247, 'Lipiviron 10 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 10 Tablet', 'Can I take alcohol with Lipiviron 10 Tablet?', 'No, it is not advised to take alcohol with Lipiviron 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiviron 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiviron 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21248, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21249, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Can Lipiviron 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiviron 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21250, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Is Lipiviron 20 Tablet used for lowering cholesterol?', 'Lipiviron 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiviron 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiviron 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21251, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Can Lipiviron 20 Tablet be prescribed to children?', 'Lipiviron 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21252, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Is Lipiviron 20 Tablet a blood thinner?', 'No, Lipiviron 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21253, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Will taking Lipiviron 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiviron 20 Tablet may increase this risk slightly. This is because Lipiviron 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21254, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'For how long do I need to take Lipiviron 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipiviron 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiviron 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21255, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Does Lipiviron 20 Tablet cause weight loss?', 'No, Lipiviron 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiviron 20 Tablet.'),
(21256, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Can I stop taking Lipiviron 20 Tablet?', 'No, you should not stop taking Lipiviron 20 Tablet without consulting your doctor. If you think that Lipiviron 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21257, 'Lipiviron 20 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 20 Tablet', 'Can I take alcohol with Lipiviron 20 Tablet?', 'No, it is not advised to take alcohol with Lipiviron 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiviron 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiviron 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21258, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21259, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Can Lipiviron 40 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiviron 40 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21260, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Is Lipiviron 40 Tablet used for lowering cholesterol?', 'Lipiviron 40 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiviron 40 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiviron 40 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21261, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Can Lipiviron 40 Tablet be prescribed to children?', 'Lipiviron 40 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21262, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Is Lipiviron 40 Tablet a blood thinner?', 'No, Lipiviron 40 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21263, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Will taking Lipiviron 40 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiviron 40 Tablet may increase this risk slightly. This is because Lipiviron 40 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21264, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'For how long do I need to take Lipiviron 40 Tablet? Is it safe for long-term use?', 'You may need to take Lipiviron 40 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiviron 40 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21265, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Does Lipiviron 40 Tablet cause weight loss?', 'No, Lipiviron 40 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiviron 40 Tablet.'),
(21266, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Can I stop taking Lipiviron 40 Tablet?', 'No, you should not stop taking Lipiviron 40 Tablet without consulting your doctor. If you think that Lipiviron 40 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21267, 'Lipiviron 40 Tablet', 'Nvron Life Science Ltd', 'Lipiviron 40 Tablet', 'Can I take alcohol with Lipiviron 40 Tablet?', 'No, it is not advised to take alcohol with Lipiviron 40 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiviron 40 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiviron 40 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21268, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'Can Lipiviron AP Tablet affect the liver?', 'Yes, Lipiviron AP Tablet may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21269, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'What are the recommended storage conditions for Lipiviron AP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21270, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'Can the Lipiviron AP Tablet cause muscle pain?', 'Yes, Lipiviron AP Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21271, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'Will I need to stop Lipiviron AP Tablet before surgery or dental procedure?', 'Lipiviron AP Tablet may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipiviron AP Tablet. You should not stop taking Lipiviron AP Tablet on your own.'),
(21272, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'What are the lifestyle changes one should adopt while taking Lipiviron AP Tablet?', 'Making lifestyle changes can boost your health while taking Lipiviron AP Tablet. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21273, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'Which painkiller is safe while taking Lipiviron AP Tablet?', 'Paracetamol is safe to use while taking Lipiviron AP Tablet for reducing pain. Avoid the use of other painkillers while taking Lipiviron AP Tablet, as they may increase the risk of bleeding.'),
(21274, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'Which medicines should I avoid while taking Lipiviron AP Tablet?', 'Lipiviron AP Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipiviron AP Tablet before taking any prescription or non-prescription medicine.'),
(21275, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'Can Lipiviron AP Tablet affect the liver?', 'Yes, Lipiviron AP Tablet may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21276, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'What are the recommended storage conditions for Lipiviron AP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21277, 'Lipiviron AP Tablet', 'Nvron Life Science Ltd', 'Lipiviron AP Tablet', 'Can the Lipiviron AP Tablet cause muscle pain?', 'Yes, Lipiviron AP Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21278, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21279, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Can Lipiwave 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiwave 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21280, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Is Lipiwave 10mg Tablet used for lowering cholesterol?', 'Lipiwave 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiwave 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiwave 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21281, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Can Lipiwave 10mg Tablet be prescribed to children?', 'Lipiwave 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21282, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Is Lipiwave 10mg Tablet a blood thinner?', 'No, Lipiwave 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21283, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Will taking Lipiwave 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiwave 10mg Tablet may increase this risk slightly. This is because Lipiwave 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21284, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'For how long do I need to take Lipiwave 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiwave 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiwave 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21285, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Does Lipiwave 10mg Tablet cause weight loss?', 'No, Lipiwave 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiwave 10mg Tablet.'),
(21286, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Can I stop taking Lipiwave 10mg Tablet?', 'No, you should not stop taking Lipiwave 10mg Tablet without consulting your doctor. If you think that Lipiwave 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21287, 'Lipiwave 10mg Tablet', 'Velnik India Limited', 'Lipiwave 10mg Tablet', 'Can I take alcohol with Lipiwave 10mg Tablet?', 'No, it is not advised to take alcohol with Lipiwave 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiwave 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiwave 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21288, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21289, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Can Lipiwave 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiwave 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21290, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Is Lipiwave 20mg Tablet used for lowering cholesterol?', 'Lipiwave 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiwave 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiwave 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21291, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Can Lipiwave 20mg Tablet be prescribed to children?', 'Lipiwave 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21292, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Is Lipiwave 20mg Tablet a blood thinner?', 'No, Lipiwave 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21293, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Will taking Lipiwave 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiwave 20mg Tablet may increase this risk slightly. This is because Lipiwave 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21294, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'For how long do I need to take Lipiwave 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiwave 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiwave 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21295, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Does Lipiwave 20mg Tablet cause weight loss?', 'No, Lipiwave 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiwave 20mg Tablet.'),
(21296, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Can I stop taking Lipiwave 20mg Tablet?', 'No, you should not stop taking Lipiwave 20mg Tablet without consulting your doctor. If you think that Lipiwave 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21297, 'Lipiwave 20mg Tablet', 'Velnik India Limited', 'Lipiwave 20mg Tablet', 'Can I take alcohol with Lipiwave 20mg Tablet?', 'No, it is not advised to take alcohol with Lipiwave 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiwave 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiwave 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21298, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21299, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Can Lipiwave 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiwave 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21300, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Is Lipiwave 40mg Tablet used for lowering cholesterol?', 'Lipiwave 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiwave 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiwave 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21301, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Can Lipiwave 40mg Tablet be prescribed to children?', 'Lipiwave 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21302, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Is Lipiwave 40mg Tablet a blood thinner?', 'No, Lipiwave 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21303, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Will taking Lipiwave 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiwave 40mg Tablet may increase this risk slightly. This is because Lipiwave 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21304, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. For how long do I need to take Lipiwave 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiwave 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiwave 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21305, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Does Lipiwave 40mg Tablet cause weight loss?', 'No, Lipiwave 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiwave 40mg Tablet.'),
(21306, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Can I stop taking Lipiwave 40mg Tablet?', 'No, you should not stop taking Lipiwave 40mg Tablet without consulting your doctor. If you think that Lipiwave 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21307, 'Lipiwave 40mg Tablet', 'Velnik India Limited', 'Lipiwave 40mg Tablet', 'Q. Can I take alcohol with Lipiwave 40mg Tablet?', 'No, it is not advised to take alcohol with Lipiwave 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiwave 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiwave 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21308, 'Lipiwave F 10mg/160mg Tablet', 'Velnik India Limited', 'Lipiwave F 10mg/160mg Tablet', 'Can Lipiwave F 10mg/160mg Tablet cause liver damage?', 'Lipiwave F 10mg/160mg Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21309, 'Lipiwave F 10mg/160mg Tablet', 'Velnik India Limited', 'Lipiwave F 10mg/160mg Tablet', 'Can Lipiwave F 10mg/160mg Tablet cause muscle pain?', 'Yes, Lipiwave F 10mg/160mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipiwave F 10mg/160mg Tablet.'),
(21310, 'Lipiwave F 10mg/160mg Tablet', 'Velnik India Limited', 'Lipiwave F 10mg/160mg Tablet', 'What lifestyle changes should be adopted while taking Lipiwave F 10mg/160mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipiwave F 10mg/160mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21311, 'Lipiwave F 10mg/160mg Tablet', 'Velnik India Limited', 'Lipiwave F 10mg/160mg Tablet', 'What medicines should I avoid while taking Lipiwave F 10mg/160mg Tablet?', 'The use of Lipiwave F 10mg/160mg Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipiwave F 10mg/160mg Tablet.'),
(21312, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21313, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Can Lipiwin 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiwin 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21314, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Is Lipiwin 10mg Tablet used for lowering cholesterol?', 'Lipiwin 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiwin 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiwin 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21315, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Can Lipiwin 10mg Tablet be prescribed to children?', 'Lipiwin 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21316, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Is Lipiwin 10mg Tablet a blood thinner?', 'No, Lipiwin 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21317, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Will taking Lipiwin 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiwin 10mg Tablet may increase this risk slightly. This is because Lipiwin 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21318, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'For how long do I need to take Lipiwin 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiwin 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiwin 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21319, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Does Lipiwin 10mg Tablet cause weight loss?', 'No, Lipiwin 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiwin 10mg Tablet.'),
(21320, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Can I stop taking Lipiwin 10mg Tablet?', 'No, you should not stop taking Lipiwin 10mg Tablet without consulting your doctor. If you think that Lipiwin 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21321, 'Lipiwin 10mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 10mg Tablet', 'Can I take alcohol with Lipiwin 10mg Tablet?', 'No, it is not advised to take alcohol with Lipiwin 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiwin 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiwin 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21322, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21323, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Can Lipiwin 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiwin 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21324, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Is Lipiwin 20mg Tablet used for lowering cholesterol?', 'Lipiwin 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiwin 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiwin 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21325, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Can Lipiwin 20mg Tablet be prescribed to children?', 'Lipiwin 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21326, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Is Lipiwin 20mg Tablet a blood thinner?', 'No, Lipiwin 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21327, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Will taking Lipiwin 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiwin 20mg Tablet may increase this risk slightly. This is because Lipiwin 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21328, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'For how long do I need to take Lipiwin 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiwin 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiwin 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21329, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Does Lipiwin 20mg Tablet cause weight loss?', 'No, Lipiwin 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiwin 20mg Tablet.'),
(21330, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Can I stop taking Lipiwin 20mg Tablet?', 'No, you should not stop taking Lipiwin 20mg Tablet without consulting your doctor. If you think that Lipiwin 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21331, 'Lipiwin 20mg Tablet', 'Mediwin Pharmaceuticals', 'Lipiwin 20mg Tablet', 'Can I take alcohol with Lipiwin 20mg Tablet?', 'No, it is not advised to take alcohol with Lipiwin 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiwin 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiwin 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21332, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21333, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Can Lipiwin 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipiwin 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21334, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Is Lipiwin 40mg Tablet used for lowering cholesterol?', 'Lipiwin 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipiwin 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipiwin 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21335, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Can Lipiwin 40mg Tablet be prescribed to children?', 'Lipiwin 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21336, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Is Lipiwin 40mg Tablet a blood thinner?', 'No, Lipiwin 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21337, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Will taking Lipiwin 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipiwin 40mg Tablet may increase this risk slightly. This is because Lipiwin 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21338, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'For how long do I need to take Lipiwin 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lipiwin 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipiwin 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21339, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Does Lipiwin 40mg Tablet cause weight loss?', 'No, Lipiwin 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipiwin 40mg Tablet.'),
(21340, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Can I stop taking Lipiwin 40mg Tablet?', 'No, you should not stop taking Lipiwin 40mg Tablet without consulting your doctor. If you think that Lipiwin 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21341, 'Lipiwin 40mg Tablet', 'Docwin Healthcare', 'Lipiwin 40mg Tablet', 'Can I take alcohol with Lipiwin 40mg Tablet?', 'No, it is not advised to take alcohol with Lipiwin 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipiwin 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipiwin 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21342, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21343, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Can Lipizeal 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipizeal 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21344, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Is Lipizeal 20 Tablet used for lowering cholesterol?', 'Lipizeal 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipizeal 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipizeal 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21345, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Can Lipizeal 20 Tablet be prescribed to children?', 'Lipizeal 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21346, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Is Lipizeal 20 Tablet a blood thinner?', 'No, Lipizeal 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21347, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Will taking Lipizeal 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipizeal 20 Tablet may increase this risk slightly. This is because Lipizeal 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21348, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'For how long do I need to take Lipizeal 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipizeal 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipizeal 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21349, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Does Lipizeal 20 Tablet cause weight loss?', 'No, Lipizeal 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipizeal 20 Tablet.'),
(21350, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Can I stop taking Lipizeal 20 Tablet?', 'No, you should not stop taking Lipizeal 20 Tablet without consulting your doctor. If you think that Lipizeal 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21351, 'Lipizeal 20 Tablet', 'Lenn Pharmaceuticals', 'Lipizeal 20 Tablet', 'Can I take alcohol with Lipizeal 20 Tablet?', 'No, it is not advised to take alcohol with Lipizeal 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipizeal 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipizeal 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21352, 'Lipizen F 10mg/160mg Tablet', 'Iwynn Pharma Private Limited', 'Lipizen F 10mg/160mg Tablet', 'Can Lipizen F 10mg/160mg Tablet cause liver damage?', 'Lipizen F 10mg/160mg Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21353, 'Lipizen F 10mg/160mg Tablet', 'Iwynn Pharma Private Limited', 'Lipizen F 10mg/160mg Tablet', 'Can Lipizen F 10mg/160mg Tablet cause muscle pain?', 'Yes, Lipizen F 10mg/160mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipizen F 10mg/160mg Tablet.'),
(21354, 'Lipizen F 10mg/160mg Tablet', 'Iwynn Pharma Private Limited', 'Lipizen F 10mg/160mg Tablet', 'What lifestyle changes should be adopted while taking Lipizen F 10mg/160mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipizen F 10mg/160mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21355, 'Lipizen F 10mg/160mg Tablet', 'Iwynn Pharma Private Limited', 'Lipizen F 10mg/160mg Tablet', 'What medicines should I avoid while taking Lipizen F 10mg/160mg Tablet?', 'The use of Lipizen F 10mg/160mg Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipizen F 10mg/160mg Tablet.'),
(21356, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21357, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Can Lipizest 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipizest 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21358, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Is Lipizest 10mg Tablet used for lowering cholesterol?', 'Lipizest 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipizest 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipizest 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21359, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Can Lipizest 10mg Tablet be prescribed to children?', 'Lipizest 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21360, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Is Lipizest 10mg Tablet a blood thinner?', 'No, Lipizest 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21361, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Will taking Lipizest 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipizest 10mg Tablet may increase this risk slightly. This is because Lipizest 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21362, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'For how long do I need to take Lipizest 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipizest 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipizest 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21363, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Does Lipizest 10mg Tablet cause weight loss?', 'No, Lipizest 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipizest 10mg Tablet.'),
(21364, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Can I stop taking Lipizest 10mg Tablet?', 'No, you should not stop taking Lipizest 10mg Tablet without consulting your doctor. If you think that Lipizest 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21365, 'Lipizest 10mg Tablet', 'Rains Healthcare LLP', 'Lipizest 10mg Tablet', 'Can I take alcohol with Lipizest 10mg Tablet?', 'No, it is not advised to take alcohol with Lipizest 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipizest 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipizest 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21366, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful for you.'),
(21367, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'What is Lipizet 10mg Tablet used for? How does it work?', 'Lipizet 10mg Tablet belongs to a class of medicines called statins that lower the cholesterol in the blood. It is used along with a healthy diet and exercise to reduce bad cholesterol and increase the amount of good cholesterol in the blood. It works by slowing the production of cholesterol in the liver in order to decrease the amount of cholesterol that accumulates on the walls of arteries. Improving the levels of cholesterol in the blood helps to reduce the risk of heart attack or stroke.'),
(21368, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'When should I take Lipizet 10mg Tablet?', 'Lipizet 10mg Tablet is generally taken once a day preferably in the evening after dinner. Try taking this medicine at the same time every day to help remember when to take it.'),
(21369, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'For how long should I take Lipizet 10mg Tablet?', 'You may need to take Lipizet 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipizet 10mg Tablet. Stopping Lipizet 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21370, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'What foods should be avoided when taking Lipizet 10mg Tablet?', 'Lipizet 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods which are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21371, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'Does Lipizet 10mg Tablet make you tired?', 'Yes, Lipizet 10mg Tablet can make you feel tired. This is because they reduce the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often seen in people with heart disease or those suffering from liver illness. Lipizet 10mg Tablet also causes muscle damage which further worsens the tiredness and so you must consult your doctor if you feel tired while taking Lipizet 10mg Tablet.'),
(21372, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'Can I take alcohol with Lipizet 10mg Tablet?', 'No, it is not advised to take alcohol with Lipizet 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipizet 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness and tenderness. People with liver problems are therefore advised not to take Lipizet 10mg Tablet without consulting their doctor. They must also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21373, 'Lipizet 10mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 10mg Tablet', 'Is Lipizet 10mg Tablet safe to take?', 'Yes, Lipizet 10mg Tablet is safe to use if used as prescribed by the doctor and if the doctor\'s instructions are followed. The side effects of this medicine are few and do not occur in everyone.'),
(21374, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful for you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21375, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'What is Lipizet 20mg Tablet used for? How does it work?', 'Lipizet 20mg Tablet belongs to a class of medicines called statins that lower the cholesterol in the blood. It is used along with a healthy diet and exercise to reduce bad cholesterol and increase the amount of good cholesterol in the blood. It works by slowing the production of cholesterol in the liver in order to decrease the amount of cholesterol that accumulates on the walls of arteries. Improving the levels of cholesterol in the blood helps to reduce the risk of heart attack or stroke.'),
(21376, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'When should I take Lipizet 20mg Tablet?', 'Lipizet 20mg Tablet is generally taken once a day preferably in the evening after dinner. Try taking this medicine at the same time every day to help remember when to take it.'),
(21377, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'For how long should I take Lipizet 20mg Tablet?', 'You may need to take Lipizet 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipizet 20mg Tablet. Stopping Lipizet 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21378, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'What foods should be avoided when taking Lipizet 20mg Tablet?', 'Lipizet 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods which are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21379, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'Does Lipizet 20mg Tablet make you tired?', 'Yes, Lipizet 20mg Tablet can make you feel tired. This is because they reduce the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often seen in people with heart disease or those suffering from liver illness. Lipizet 20mg Tablet also causes muscle damage which further worsens the tiredness and so you must consult your doctor if you feel tired while taking Lipizet 20mg Tablet.'),
(21380, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'Can I take alcohol with Lipizet 20mg Tablet?', 'No, it is not advised to take alcohol with Lipizet 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipizet 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness and tenderness. People with liver problems are therefore advised not to take Lipizet 20mg Tablet without consulting their doctor. They must also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21381, 'Lipizet 20mg Tablet', 'Concertina Pharma Pvt Ltd', 'Lipizet 20mg Tablet', 'Is Lipizet 20mg Tablet safe to take?', 'Yes, Lipizet 20mg Tablet is safe to use if used as prescribed by the doctor and if the doctor\'s instructions are followed. The side effects of this medicine are few and do not occur in everyone.'),
(21382, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21383, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Can Liplix 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liplix 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21384, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Is Liplix 10mg Tablet used for lowering cholesterol?', 'Liplix 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liplix 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liplix 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21385, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Can Liplix 10mg Tablet be prescribed to children?', 'Liplix 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21386, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Is Liplix 10mg Tablet a blood thinner?', 'No, Liplix 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21387, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Will taking Liplix 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liplix 10mg Tablet may increase this risk slightly. This is because Liplix 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21388, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'For how long do I need to take Liplix 10mg Tablet? Is it safe for long-term use?', 'You may need to take Liplix 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liplix 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21389, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Does Liplix 10mg Tablet cause weight loss?', 'No, Liplix 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liplix 10mg Tablet.'),
(21390, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Can I stop taking Liplix 10mg Tablet?', 'No, you should not stop taking Liplix 10mg Tablet without consulting your doctor. If you think that Liplix 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21391, 'Liplix 10mg Tablet', 'Calix Health Care', 'Liplix 10mg Tablet', 'Can I take alcohol with Liplix 10mg Tablet?', 'No, it is not advised to take alcohol with Liplix 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liplix 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liplix 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21392, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21393, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Can Liplo 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liplo 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21394, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Is Liplo 10mg Tablet used for lowering cholesterol?', 'Liplo 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liplo 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liplo 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21395, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Can Liplo 10mg Tablet be prescribed to children?', 'Liplo 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21396, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Is Liplo 10mg Tablet a blood thinner?', 'No, Liplo 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21397, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Will taking Liplo 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liplo 10mg Tablet may increase this risk slightly. This is because Liplo 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21398, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'For how long do I need to take Liplo 10mg Tablet? Is it safe for long-term use?', 'You may need to take Liplo 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liplo 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21399, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Does Liplo 10mg Tablet cause weight loss?', 'No, Liplo 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liplo 10mg Tablet.'),
(21400, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Can I stop taking Liplo 10mg Tablet?', 'No, you should not stop taking Liplo 10mg Tablet without consulting your doctor. If you think that Liplo 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21401, 'Liplo 10mg Tablet', 'Globela Pharma Pvt Ltd', 'Liplo 10mg Tablet', 'Can I take alcohol with Liplo 10mg Tablet?', 'No, it is not advised to take alcohol with Liplo 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liplo 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liplo 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21402, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21403, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Can Liplo 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liplo 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21404, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Is Liplo 20mg Tablet used for lowering cholesterol?', 'Liplo 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liplo 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liplo 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21405, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Can Liplo 20mg Tablet be prescribed to children?', 'Liplo 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21406, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Is Liplo 20mg Tablet a blood thinner?', 'No, Liplo 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21407, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Will taking Liplo 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liplo 20mg Tablet may increase this risk slightly. This is because Liplo 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21408, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'For how long do I need to take Liplo 20mg Tablet? Is it safe for long-term use?', 'You may need to take Liplo 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liplo 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21409, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Does Liplo 20mg Tablet cause weight loss?', 'No, Liplo 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liplo 20mg Tablet.'),
(21410, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Can I stop taking Liplo 20mg Tablet?', 'No, you should not stop taking Liplo 20mg Tablet without consulting your doctor. If you think that Liplo 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21411, 'Liplo 20mg Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplo 20mg Tablet', 'Can I take alcohol with Liplo 20mg Tablet?', 'No, it is not advised to take alcohol with Liplo 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liplo 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liplo 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21412, 'Liplofin Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplofin Tablet', 'Can Liplofin Tablet cause liver damage?', 'Liplofin Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21413, 'Liplofin Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplofin Tablet', 'Can Liplofin Tablet cause muscle pain?', 'Yes, Liplofin Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Liplofin Tablet.'),
(21414, 'Liplofin Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplofin Tablet', 'What lifestyle changes should be adopted while taking Liplofin Tablet?', 'Making lifestyle changes can boost your health while taking Liplofin Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21415, 'Liplofin Tablet', 'MDC Pharmaceuticals  Pvt Ltd', 'Liplofin Tablet', 'What medicines should I avoid while taking Liplofin Tablet?', 'The use of Liplofin Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Liplofin Tablet.'),
(21416, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. For how long should I take Liplomak 10mg Tablet?', 'You may need to take Liplomak 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liplomak 10mg Tablet. Stopping Liplomak 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21417, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. Does Liplomak 10mg Tablet cause weight gain?', 'No, there is no evidence of Liplomak 10mg Tablet causing weight gain. If you are taking Liplomak 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21418, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. Does Liplomak 10mg Tablet make you tired?', 'Yes, Liplomak 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liplomak 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liplomak 10mg Tablet.'),
(21419, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. Should Liplomak 10mg Tablet be taken at night?', 'Liplomak 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21420, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. What foods should be avoided when taking Liplomak 10mg Tablet?', 'Liplomak 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21421, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. How do I know whether Liplomak 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liplomak 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liplomak 10mg Tablet versus the risks of not taking it at all.'),
(21422, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. Can Liplomak 10mg Tablet cause memory loss?', 'Liplomak 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liplomak 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21423, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. Can Liplomak 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liplomak 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21424, 'Liplomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 10mg Tablet', 'Q. Is it true that Liplomak 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liplomak 10mg Tablet may slightly increase this risk. This is because Liplomak 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21425, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'For how long should I take Liplomak 5mg Tablet?', 'You may need to take Liplomak 5mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liplomak 5mg Tablet. Stopping Liplomak 5mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21426, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'Does Liplomak 5mg Tablet cause weight gain?', 'No, there is no evidence of Liplomak 5mg Tablet causing weight gain. If you are taking Liplomak 5mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21427, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'Does Liplomak 5mg Tablet make you tired?', 'Yes, Liplomak 5mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liplomak 5mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liplomak 5mg Tablet.'),
(21428, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'Should Liplomak 5mg Tablet be taken at night?', 'Liplomak 5mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21429, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'What foods should be avoided when taking Liplomak 5mg Tablet?', 'Liplomak 5mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21430, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'How do I know whether Liplomak 5mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liplomak 5mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liplomak 5mg Tablet versus the risks of not taking it at all.'),
(21431, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'Can Liplomak 5mg Tablet cause memory loss?', 'Liplomak 5mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liplomak 5mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21432, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'Can Liplomak 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liplomak 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21433, 'Liplomak 5mg Tablet', 'Makeway Formulations Pvt Ltd', 'Liplomak 5mg Tablet', 'Is it true that Liplomak 5mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liplomak 5mg Tablet may slightly increase this risk. This is because Liplomak 5mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21434, 'Liplomak CV 20mg/75mg Capsule', 'Makeway Formulations Pvt Ltd', 'Liplomak CV 20mg/75mg Capsule', 'Can the use of Liplomak CV 20mg/75mg Capsule increase the risk of bleeding?', 'Yes, Liplomak CV 20mg/75mg Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21435, 'Liplomak CV 20mg/75mg Capsule', 'Makeway Formulations Pvt Ltd', 'Liplomak CV 20mg/75mg Capsule', 'What medicines should I avoid while taking Liplomak CV 20mg/75mg Capsule?', 'Liplomak CV 20mg/75mg Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Liplomak CV 20mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(21436, 'Liplomak CV 20mg/75mg Capsule', 'Makeway Formulations Pvt Ltd', 'Liplomak CV 20mg/75mg Capsule', 'Can Liplomak CV 20mg/75mg Capsule cause muscle pain?', 'Yes, Liplomak CV 20mg/75mg Capsule can cause muscle pain by injuring muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Liplomak CV 20mg/75mg Capsule.'),
(21437, 'Liplomak CV 20mg/75mg Capsule', 'Makeway Formulations Pvt Ltd', 'Liplomak CV 20mg/75mg Capsule', 'Will I need to stop Liplomak CV 20mg/75mg Capsule before surgery or dental procedure?', 'Liplomak CV 20mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Liplomak CV 20mg/75mg Capsule. You should not stop taking Liplomak CV 20mg/75mg Capsule on your own.'),
(21438, 'Liplomak CV 20mg/75mg Capsule', 'Makeway Formulations Pvt Ltd', 'Liplomak CV 20mg/75mg Capsule', 'What lifestyle changes should be adopted while taking Liplomak CV 20mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Liplomak CV 20mg/75mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21439, 'Liplomak CV 20mg/75mg Capsule', 'Makeway Formulations Pvt Ltd', 'Liplomak CV 20mg/75mg Capsule', 'Which painkiller is safe while taking Liplomak CV 20mg/75mg Capsule?', 'Paracetamol is safe to use while taking Liplomak CV 20mg/75mg Capsule for relieving pain. Avoid the use of other painkillers while taking Liplomak CV 20mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21440, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'For how long should I take Liplor 10 Tablet?', 'You may need to take Liplor 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liplor 10 Tablet. Stopping Liplor 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21441, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'Does Liplor 10 Tablet cause weight gain?', 'No, there is no evidence of Liplor 10 Tablet causing weight gain. If you are taking Liplor 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21442, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'Does Liplor 10 Tablet make you tired?', 'Yes, Liplor 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liplor 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liplor 10 Tablet.'),
(21443, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'Should Liplor 10 Tablet be taken at night?', 'Liplor 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21444, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'What foods should be avoided when taking Liplor 10 Tablet?', 'Liplor 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21445, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'How do I know whether Liplor 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liplor 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liplor 10 Tablet versus the risks of not taking it at all.'),
(21446, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'Can Liplor 10 Tablet cause memory loss?', 'Liplor 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liplor 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21447, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'Can Liplor 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Liplor 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21448, 'Liplor 10 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 10 Tablet', 'Is it true that Liplor 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liplor 10 Tablet may slightly increase this risk. This is because Liplor 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21449, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'For how long should I take Liplor 20 Tablet?', 'You may need to take Liplor 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liplor 20 Tablet. Stopping Liplor 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21450, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'Does Liplor 20 Tablet cause weight gain?', 'No, there is no evidence of Liplor 20 Tablet causing weight gain. If you are taking Liplor 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21451, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'Does Liplor 20 Tablet make you tired?', 'Yes, Liplor 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liplor 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liplor 20 Tablet.'),
(21452, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'Should Liplor 20 Tablet be taken at night?', 'Liplor 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21453, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'What foods should be avoided when taking Liplor 20 Tablet?', 'Liplor 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21454, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'How do I know whether Liplor 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liplor 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liplor 20 Tablet versus the risks of not taking it at all.'),
(21455, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'Can Liplor 20 Tablet cause memory loss?', 'Liplor 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liplor 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21456, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'Can Liplor 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Liplor 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21457, 'Liplor 20 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor 20 Tablet', 'Is it true that Liplor 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liplor 20 Tablet may slightly increase this risk. This is because Liplor 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21458, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'Can the Liplor A 10 Capsule cause muscle pain?', 'Yes, Liplor A 10 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21459, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'Will I need to stop Liplor A 10 Capsule before surgery or dental procedure?', 'Liplor A 10 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Liplor A 10 Capsule. You should not stop taking Liplor A 10 Capsule on your own.'),
(21460, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'What lifestyle changes should be adopted while taking Liplor A 10 Capsule?', 'Making lifestyle changes can boost your health while taking Liplor A 10 Capsule. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21461, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'Which painkiller is safe while taking Liplor A 10 Capsule?', 'Paracetamol is safe to use while taking Liplor A 10 Capsule for relieving pain. Avoid the use of other painkillers while taking Liplor A 10 Capsule, as they may increase the risk of bleeding.'),
(21462, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'Can the use of Liplor A 10 Capsule increase the risk of bleeding?', 'Yes, Liplor A 10 Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(21463, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'How to manage indigestion associated with Liplor A 10 Capsule?', 'Take Liplor A 10 Capsule with or after food to avoid indigestion. Talk to your doctor, if the indigestion problem persists.'),
(21464, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'What medicines should I avoid while taking Liplor A 10 Capsule?', 'Liplor A 10 Capsule can interact with several medicines and can cause serious life-threatening problems. Talk to your doctor and inform him about using Liplor A 10 Capsule before taking any prescription or non-prescription medicine.'),
(21465, 'Liplor A 10 Capsule', 'Unika Pharmaceuticals Pvt. Ltd.', 'Liplor A 10 Capsule', 'What are the instructions for the storage and disposal of Liplor A 10 Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21466, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'How long can you stay on Lipocut 120 Capsule?', 'It is not advised to take Lipocut 120 Capsule for more than 6 months. Consult your doctor and stop the medication if you do not experience any weight reduction 12 weeks after starting your treatment with Lipocut 120 Capsule.'),
(21467, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'Who should not take Lipocut 120 Capsule?', 'You should not take Lipocut 120 Capsule if you are allergic to it, have difficulty absorbing food (chronic malabsorption syndrome), and have cholestasis (a condition where the flow of bile from the liver is blocked). Refrain from using Lipocut 120 Capsule if you are taking cyclosporine medicine or blood thinners like warfarin. Along with that, avoid Lipocut 120 Capsule if you are pregnant or breastfeeding.'),
(21468, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'What kind of diet should I follow while on Lipocut 120 Capsule?', 'You should stick to low-calorie low-fat diet while taking Lipocut 120 Capsule. Having a high-fat meal with Lipocut 120 Capsule might increase the chances of developing unpleasant side effects. Try to eat more vegetables and fruits, have small portions, eat regularly, and do not skip any meals.'),
(21469, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'Can you drink alcohol on Lipocut 120 Capsule?', 'Though alcohol does not interfere with the working of Lipocut 120 Capsule, it is recommended that you cut on or avoid alcohol. Alcohol contains calories which will add to your weight. Hence, for effective weight reduction it is best to avoid alcohol.'),
(21470, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'How quickly does Lipocut 120 Capsule work?', 'Lipocut 120 Capsule starts working quickly, within 24-48 hours of taking it. You may even notice fat in your stools. However, it may take about a week or two to show effective weight reduction, which will vary from person to person.'),
(21471, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'Is it important to follow an exercise program while taking Lipocut 120 Capsule?', 'Yes, exercise may prove to be very helpful for the effective weight reduction and maintenance of reduced weight. An exercise program and low-calorie intake will help maintain your weight even after discontinuation of the medicine.'),
(21472, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'How does Lipocut 120 Capsule help with weight loss?', 'Lipocut 120 Capsule belongs to a class of medicines known as lipase inhibitors. It targets the fat that you eat. It prevents about 25% of fat in your meals from being absorbed. This unabsorbed fat will get passed in stools and get removed from the body.'),
(21473, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'How should I take Lipocut 120 Capsule?', 'Take Lipocut 120 Capsule three times a day and swallow the capsule whole with water. Take it just before, during, or up to one hour after meals. The meal should be well balanced and should include low calorie ingredients. Do not take Lipocut 120 Capsule if you miss a meal or your meal does not contain fat, as it will not work in the absence of fat.'),
(21474, 'Lipocut 120 Capsule', 'Lupin Ltd', 'Lipocut 120 Capsule', 'How much weight can you lose in a week with Lipocut 120 Capsule?', 'You should set a realistic goal of weight reduction. Aim to reduce 5-10% of your starting weight. This weight loss process should be gradual and at a steady pace. You should try to reduce 0.5 kg of weight per week.'),
(21475, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'How long can you stay on Lipocut 60 Capsule?', 'It is not advised to take Lipocut 60 Capsule for more than 6 months. Consult your doctor and stop the medication if you do not experience any weight reduction 12 weeks after starting your treatment with Lipocut 60 Capsule.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21476, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'Who should not take Lipocut 60 Capsule?', 'You should not take Lipocut 60 Capsule if you are allergic to it, have difficulty absorbing food (chronic malabsorption syndrome), and have cholestasis (a condition where the flow of bile from the liver is blocked). Refrain from using Lipocut 60 Capsule if you are taking cyclosporine medicine or blood thinners like warfarin. Along with that, avoid Lipocut 60 Capsule if you are pregnant or breastfeeding.'),
(21477, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'What kind of diet should I follow while on Lipocut 60 Capsule?', 'You should stick to low-calorie low-fat diet while taking Lipocut 60 Capsule. Having a high-fat meal with Lipocut 60 Capsule might increase the chances of developing unpleasant side effects. Try to eat more vegetables and fruits, have small portions, eat regularly, and do not skip any meals.'),
(21478, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'Can you drink alcohol on Lipocut 60 Capsule?', 'Though alcohol does not interfere with the working of Lipocut 60 Capsule, it is recommended that you cut on or avoid alcohol. Alcohol contains calories which will add to your weight. Hence, for effective weight reduction it is best to avoid alcohol.'),
(21479, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'How quickly does Lipocut 60 Capsule work?', 'Lipocut 60 Capsule starts working quickly, within 24-48 hours of taking it. You may even notice fat in your stools. However, it may take about a week or two to show effective weight reduction, which will vary from person to person.'),
(21480, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'Is it important to follow an exercise program while taking Lipocut 60 Capsule?', 'Yes, exercise may prove to be very helpful for the effective weight reduction and maintenance of reduced weight. An exercise program and low-calorie intake will help maintain your weight even after discontinuation of the medicine.'),
(21481, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'How does Lipocut 60 Capsule help with weight loss?', 'Lipocut 60 Capsule belongs to a class of medicines known as lipase inhibitors. It targets the fat that you eat. It prevents about 25% of fat in your meals from being absorbed. This unabsorbed fat will get passed in stools and get removed from the body.'),
(21482, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'How should I take Lipocut 60 Capsule?', 'Take Lipocut 60 Capsule three times a day and swallow the capsule whole with water. Take it just before, during, or up to one hour after meals. The meal should be well balanced and should include low calorie ingredients. Do not take Lipocut 60 Capsule if you miss a meal or your meal does not contain fat, as it will not work in the absence of fat.'),
(21483, 'Lipocut 60 Capsule', 'Lupin Ltd', 'Lipocut 60 Capsule', 'How much weight can you lose in a week with Lipocut 60 Capsule?', 'You should set a realistic goal of weight reduction. Aim to reduce 5-10% of your starting weight. This weight loss process should be gradual and at a steady pace. You should try to reduce 0.5 kg of weight per week.'),
(21484, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'Is Lipod 200mg Tablet safe to use?', 'Lipod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(21485, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'Can the use of Lipod 200mg Tablet cause diarrhea?', 'Yes, the use of Lipod 200mg Tablet can cause diarrhea. Lipod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(21486, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'Is Lipod 200mg Tablet an antibiotic?', 'Yes, Lipod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(21487, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'Can Lipod 200mg Tablet cause constipation?', 'Yes, Lipod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(21488, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'Can I stop taking Lipod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lipod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(21489, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'How long does Lipod 200mg Tablet take to work?', 'Usually, Lipod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(21490, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'What if I do not get better after using Lipod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(21491, 'Lipod 200mg Tablet', 'Kamork Biotech', 'Lipod 200mg Tablet', 'Can Lipod 200mg Tablet treat UTI?', 'Yes, Lipod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lipod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(21492, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'What if I give too much of Lipod 50mg Dry Syrup by mistake?', 'An extra dose of Lipod 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Lipod 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(21493, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'Are there any possible serious side effects of Lipod 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(21494, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'Can other medicines be given at the same time as Lipod 50mg Dry Syrup?', 'Lipod 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lipod 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(21495, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lipod 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(21496, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Lipod 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(21497, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(21498, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(21499, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(21500, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'Can Lipod 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Lipod 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Lipod 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(21501, 'Lipod 50mg Dry Syrup', 'Kamork Biotech', 'Lipod 50mg Dry Syrup', 'Can Lipod 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Lipod 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(21502, 'Lipofibric 10 mg/105 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/105 mg Capsule', 'Can Lipofibric 10 mg/105 mg Capsule cause liver damage?', 'Lipofibric 10 mg/105 mg Capsule contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21503, 'Lipofibric 10 mg/105 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/105 mg Capsule', 'Can Lipofibric 10 mg/105 mg Capsule cause muscle pain?', 'Yes, Lipofibric 10 mg/105 mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipofibric 10 mg/105 mg Capsule.'),
(21504, 'Lipofibric 10 mg/105 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/105 mg Capsule', 'What lifestyle changes should be adopted while taking Lipofibric 10 mg/105 mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipofibric 10 mg/105 mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21505, 'Lipofibric 10 mg/105 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/105 mg Capsule', 'What medicines should I avoid while taking Lipofibric 10 mg/105 mg Capsule?', 'The use of Lipofibric 10 mg/105 mg Capsule along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipofibric 10 mg/105 mg Capsule.'),
(21506, 'Lipofibric 10 mg/35 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/35 mg Capsule', 'Can Lipofibric 10 mg/35 mg Capsule cause liver damage?', 'Lipofibric 10 mg/35 mg Capsule contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21507, 'Lipofibric 10 mg/35 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/35 mg Capsule', 'Can Lipofibric 10 mg/35 mg Capsule cause muscle pain?', 'Yes, Lipofibric 10 mg/35 mg Capsule can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipofibric 10 mg/35 mg Capsule.'),
(21508, 'Lipofibric 10 mg/35 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/35 mg Capsule', 'What lifestyle changes should be adopted while taking Lipofibric 10 mg/35 mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipofibric 10 mg/35 mg Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21509, 'Lipofibric 10 mg/35 mg Capsule', 'Delvin Formulations Pvt Ltd', 'Lipofibric 10 mg/35 mg Capsule', 'What medicines should I avoid while taking Lipofibric 10 mg/35 mg Capsule?', 'The use of Lipofibric 10 mg/35 mg Capsule along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipofibric 10 mg/35 mg Capsule.'),
(21510, 'Lipofit F 160mg/10mg Tablet', 'Alisier Drugs Pvt Ltd', 'Lipofit F 160mg/10mg Tablet', 'Can the use of Lipofit F 160mg/10mg Tablet cause liver damage?', 'Lipofit F 160mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21511, 'Lipofit F 160mg/10mg Tablet', 'Alisier Drugs Pvt Ltd', 'Lipofit F 160mg/10mg Tablet', 'Can the use of Lipofit F 160mg/10mg Tablet cause muscle pain?', 'Yes, Lipofit F 160mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21512, 'Lipofit F 160mg/10mg Tablet', 'Alisier Drugs Pvt Ltd', 'Lipofit F 160mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lipofit F 160mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipofit F 160mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21513, 'Lipofit F 160mg/10mg Tablet', 'Alisier Drugs Pvt Ltd', 'Lipofit F 160mg/10mg Tablet', 'What medicines should I avoid while taking Lipofit F 160mg/10mg Tablet?', 'Lipofit F 160mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipofit F 160mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(21514, 'Lipofit F 160mg/10mg Tablet', 'Alisier Drugs Pvt Ltd', 'Lipofit F 160mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lipofit F 160mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21515, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21516, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Can Lipofix 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipofix 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21517, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Is Lipofix 20mg Tablet used for lowering cholesterol?', 'Lipofix 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipofix 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipofix 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21518, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Can Lipofix 20mg Tablet be prescribed to children?', 'Lipofix 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21519, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Is Lipofix 20mg Tablet a blood thinner?', 'No, Lipofix 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21520, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Will taking Lipofix 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipofix 20mg Tablet may increase this risk slightly. This is because Lipofix 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21521, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'For how long do I need to take Lipofix 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipofix 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipofix 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21522, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Does Lipofix 20mg Tablet cause weight loss?', 'No, Lipofix 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipofix 20mg Tablet.'),
(21523, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Can I stop taking Lipofix 20mg Tablet?', 'No, you should not stop taking Lipofix 20mg Tablet without consulting your doctor. If you think that Lipofix 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21524, 'Lipofix 20mg Tablet', 'Bal Pharma Ltd', 'Lipofix 20mg Tablet', 'Can I take alcohol with Lipofix 20mg Tablet?', 'No, it is not advised to take alcohol with Lipofix 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipofix 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipofix 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21525, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21526, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Can Lipofix 40 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipofix 40 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21527, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Is Lipofix 40 Tablet used for lowering cholesterol?', 'Lipofix 40 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipofix 40 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipofix 40 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21528, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Can Lipofix 40 Tablet be prescribed to children?', 'Lipofix 40 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21529, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Is Lipofix 40 Tablet a blood thinner?', 'No, Lipofix 40 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21530, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Will taking Lipofix 40 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipofix 40 Tablet may increase this risk slightly. This is because Lipofix 40 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21531, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'For how long do I need to take Lipofix 40 Tablet? Is it safe for long-term use?', 'You may need to take Lipofix 40 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipofix 40 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21532, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Does Lipofix 40 Tablet cause weight loss?', 'No, Lipofix 40 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipofix 40 Tablet.'),
(21533, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Can I stop taking Lipofix 40 Tablet?', 'No, you should not stop taking Lipofix 40 Tablet without consulting your doctor. If you think that Lipofix 40 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21534, 'Lipofix 40 Tablet', 'Bal Pharma Ltd', 'Lipofix 40 Tablet', 'Can I take alcohol with Lipofix 40 Tablet?', 'No, it is not advised to take alcohol with Lipofix 40 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipofix 40 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipofix 40 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21535, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21536, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Can Lipofix 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipofix 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21537, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Is Lipofix 5mg Tablet used for lowering cholesterol?', 'Lipofix 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipofix 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipofix 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21538, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Can Lipofix 5mg Tablet be prescribed to children?', 'Lipofix 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21539, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Is Lipofix 5mg Tablet a blood thinner?', 'No, Lipofix 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21540, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Will taking Lipofix 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipofix 5mg Tablet may increase this risk slightly. This is because Lipofix 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21541, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. For how long do I need to take Lipofix 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipofix 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipofix 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21542, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Does Lipofix 5mg Tablet cause weight loss?', 'No, Lipofix 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipofix 5mg Tablet.'),
(21543, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Can I stop taking Lipofix 5mg Tablet?', 'No, you should not stop taking Lipofix 5mg Tablet without consulting your doctor. If you think that Lipofix 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21544, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Q. Can I take alcohol with Lipofix 5mg Tablet?', 'No, it is not advised to take alcohol with Lipofix 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipofix 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipofix 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21545, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21546, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Can Lipofix 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipofix 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21547, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Is Lipofix 5mg Tablet used for lowering cholesterol?', 'Lipofix 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipofix 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipofix 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21548, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Can Lipofix 5mg Tablet be prescribed to children?', 'Lipofix 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21549, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Is Lipofix 5mg Tablet a blood thinner?', 'No, Lipofix 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21550, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Will taking Lipofix 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipofix 5mg Tablet may increase this risk slightly. This is because Lipofix 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21551, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'For how long do I need to take Lipofix 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipofix 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipofix 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21552, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Does Lipofix 5mg Tablet cause weight loss?', 'No, Lipofix 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipofix 5mg Tablet.'),
(21553, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Can I stop taking Lipofix 5mg Tablet?', 'No, you should not stop taking Lipofix 5mg Tablet without consulting your doctor. If you think that Lipofix 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21554, 'Lipofix 5mg Tablet', 'Bal Pharma Ltd', 'Lipofix 5mg Tablet', 'Can I take alcohol with Lipofix 5mg Tablet?', 'No, it is not advised to take alcohol with Lipofix 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipofix 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipofix 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21555, 'Lipofix TG Tablet', 'Bal Pharma Ltd', 'Lipofix TG Tablet', 'Can Lipofix TG Tablet cause liver damage?', 'Lipofix TG Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21556, 'Lipofix TG Tablet', 'Bal Pharma Ltd', 'Lipofix TG Tablet', 'Can Lipofix TG Tablet cause muscle pain?', 'Yes, Lipofix TG Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipofix TG Tablet.'),
(21557, 'Lipofix TG Tablet', 'Bal Pharma Ltd', 'Lipofix TG Tablet', 'What lifestyle changes should be adopted while taking Lipofix TG Tablet?', 'Making lifestyle changes can boost your health while taking Lipofix TG Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21558, 'Lipofix TG Tablet', 'Bal Pharma Ltd', 'Lipofix TG Tablet', 'What medicines should I avoid while taking Lipofix TG Tablet?', 'The use of Lipofix TG Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipofix TG Tablet.'),
(21559, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'For how long should I take Lipomak 10mg Tablet?', 'You may need to take Lipomak 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipomak 10mg Tablet. Stopping Lipomak 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21560, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'Does Lipomak 10mg Tablet cause weight gain?', 'No, there is no evidence of Lipomak 10mg Tablet causing weight gain. If you are taking Lipomak 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21561, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'Does Lipomak 10mg Tablet make you tired?', 'Yes, Lipomak 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipomak 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipomak 10mg Tablet.'),
(21562, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'Should Lipomak 10mg Tablet be taken at night?', 'Lipomak 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21563, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'What foods should be avoided when taking Lipomak 10mg Tablet?', 'Lipomak 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21564, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'How do I know whether Lipomak 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipomak 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipomak 10mg Tablet versus the risks of not taking it at all.'),
(21565, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'Can Lipomak 10mg Tablet cause memory loss?', 'Lipomak 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipomak 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21566, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'Can Lipomak 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipomak 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21567, 'Lipomak 10mg Tablet', 'Makeway Formulations Pvt Ltd', 'Lipomak 10mg Tablet', 'Is it true that Lipomak 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipomak 10mg Tablet may slightly increase this risk. This is because Lipomak 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21568, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21569, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Can Liponorm 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liponorm 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21570, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Is Liponorm 10mg Tablet used for lowering cholesterol?', 'Liponorm 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liponorm 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liponorm 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21571, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Can Liponorm 10mg Tablet be prescribed to children?', 'Liponorm 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21572, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Is Liponorm 10mg Tablet a blood thinner?', 'No, Liponorm 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21573, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Will taking Liponorm 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liponorm 10mg Tablet may increase this risk slightly. This is because Liponorm 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21574, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. For how long do I need to take Liponorm 10mg Tablet? Is it safe for long-term use?', 'You may need to take Liponorm 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liponorm 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21575, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Does Liponorm 10mg Tablet cause weight loss?', 'No, Liponorm 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liponorm 10mg Tablet.'),
(21576, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Can I stop taking Liponorm 10mg Tablet?', 'No, you should not stop taking Liponorm 10mg Tablet without consulting your doctor. If you think that Liponorm 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21577, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Q. Can I take alcohol with Liponorm 10mg Tablet?', 'No, it is not advised to take alcohol with Liponorm 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liponorm 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liponorm 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21578, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21579, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Can Liponorm 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liponorm 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21580, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Is Liponorm 10mg Tablet used for lowering cholesterol?', 'Liponorm 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liponorm 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liponorm 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21581, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Can Liponorm 10mg Tablet be prescribed to children?', 'Liponorm 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21582, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Is Liponorm 10mg Tablet a blood thinner?', 'No, Liponorm 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21583, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Will taking Liponorm 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liponorm 10mg Tablet may increase this risk slightly. This is because Liponorm 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21584, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'For how long do I need to take Liponorm 10mg Tablet? Is it safe for long-term use?', 'You may need to take Liponorm 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liponorm 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21585, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Does Liponorm 10mg Tablet cause weight loss?', 'No, Liponorm 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liponorm 10mg Tablet.'),
(21586, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Can I stop taking Liponorm 10mg Tablet?', 'No, you should not stop taking Liponorm 10mg Tablet without consulting your doctor. If you think that Liponorm 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21587, 'Liponorm 10mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 10mg Tablet', 'Can I take alcohol with Liponorm 10mg Tablet?', 'No, it is not advised to take alcohol with Liponorm 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liponorm 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liponorm 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21588, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21589, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Can Liponorm 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liponorm 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21590, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Is Liponorm 20mg Tablet used for lowering cholesterol?', 'Liponorm 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liponorm 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liponorm 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21591, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Can Liponorm 20mg Tablet be prescribed to children?', 'Liponorm 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21592, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Is Liponorm 20mg Tablet a blood thinner?', 'No, Liponorm 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21593, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Will taking Liponorm 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liponorm 20mg Tablet may increase this risk slightly. This is because Liponorm 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21594, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. For how long do I need to take Liponorm 20mg Tablet? Is it safe for long-term use?', 'You may need to take Liponorm 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liponorm 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21595, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Does Liponorm 20mg Tablet cause weight loss?', 'No, Liponorm 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liponorm 20mg Tablet.'),
(21596, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Can I stop taking Liponorm 20mg Tablet?', 'No, you should not stop taking Liponorm 20mg Tablet without consulting your doctor. If you think that Liponorm 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21597, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Q. Can I take alcohol with Liponorm 20mg Tablet?', 'No, it is not advised to take alcohol with Liponorm 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liponorm 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liponorm 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21598, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21599, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Can Liponorm 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liponorm 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21600, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Is Liponorm 20mg Tablet used for lowering cholesterol?', 'Liponorm 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liponorm 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liponorm 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21601, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Can Liponorm 20mg Tablet be prescribed to children?', 'Liponorm 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21602, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Is Liponorm 20mg Tablet a blood thinner?', 'No, Liponorm 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21603, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Will taking Liponorm 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liponorm 20mg Tablet may increase this risk slightly. This is because Liponorm 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21604, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'For how long do I need to take Liponorm 20mg Tablet? Is it safe for long-term use?', 'You may need to take Liponorm 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liponorm 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21605, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Does Liponorm 20mg Tablet cause weight loss?', 'No, Liponorm 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liponorm 20mg Tablet.'),
(21606, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Can I stop taking Liponorm 20mg Tablet?', 'No, you should not stop taking Liponorm 20mg Tablet without consulting your doctor. If you think that Liponorm 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21607, 'Liponorm 20mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 20mg Tablet', 'Can I take alcohol with Liponorm 20mg Tablet?', 'No, it is not advised to take alcohol with Liponorm 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liponorm 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liponorm 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21608, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21609, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Can Liponorm 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liponorm 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21610, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Is Liponorm 40mg Tablet used for lowering cholesterol?', 'Liponorm 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liponorm 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liponorm 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21611, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Can Liponorm 40mg Tablet be prescribed to children?', 'Liponorm 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21612, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Is Liponorm 40mg Tablet a blood thinner?', 'No, Liponorm 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21613, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Will taking Liponorm 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liponorm 40mg Tablet may increase this risk slightly. This is because Liponorm 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21614, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. For how long do I need to take Liponorm 40mg Tablet? Is it safe for long-term use?', 'You may need to take Liponorm 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liponorm 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21615, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Does Liponorm 40mg Tablet cause weight loss?', 'No, Liponorm 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liponorm 40mg Tablet.'),
(21616, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Can I stop taking Liponorm 40mg Tablet?', 'No, you should not stop taking Liponorm 40mg Tablet without consulting your doctor. If you think that Liponorm 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21617, 'Liponorm 40mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 40mg Tablet', 'Q. Can I take alcohol with Liponorm 40mg Tablet?', 'No, it is not advised to take alcohol with Liponorm 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liponorm 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liponorm 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21618, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21619, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Can Liponorm 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liponorm 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21620, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Is Liponorm 5mg Tablet used for lowering cholesterol?', 'Liponorm 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liponorm 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liponorm 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21621, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Can Liponorm 5mg Tablet be prescribed to children?', 'Liponorm 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21622, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Is Liponorm 5mg Tablet a blood thinner?', 'No, Liponorm 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21623, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Will taking Liponorm 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liponorm 5mg Tablet may increase this risk slightly. This is because Liponorm 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21624, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'For how long do I need to take Liponorm 5mg Tablet? Is it safe for long-term use?', 'You may need to take Liponorm 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liponorm 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21625, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Does Liponorm 5mg Tablet cause weight loss?', 'No, Liponorm 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liponorm 5mg Tablet.'),
(21626, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Can I stop taking Liponorm 5mg Tablet?', 'No, you should not stop taking Liponorm 5mg Tablet without consulting your doctor. If you think that Liponorm 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21627, 'Liponorm 5mg Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm 5mg Tablet', 'Can I take alcohol with Liponorm 5mg Tablet?', 'No, it is not advised to take alcohol with Liponorm 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liponorm 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liponorm 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21628, 'Liponorm F Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm F Tablet', 'Can Liponorm F Tablet cause liver damage?', 'Liponorm F Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21629, 'Liponorm F Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm F Tablet', 'Can Liponorm F Tablet cause muscle pain?', 'Yes, Liponorm F Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Liponorm F Tablet.'),
(21630, 'Liponorm F Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm F Tablet', 'What lifestyle changes should be adopted while taking Liponorm F Tablet?', 'Making lifestyle changes can boost your health while taking Liponorm F Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21631, 'Liponorm F Tablet', 'Blue Cross Laboratories Ltd', 'Liponorm F Tablet', 'What medicines should I avoid while taking Liponorm F Tablet?', 'The use of Liponorm F Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Liponorm F Tablet.'),
(21632, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'Can Liponorm-Asp Capsule affect the liver?', 'Yes, Liponorm-Asp Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21633, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'What are the recommended storage conditions for Liponorm-Asp Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21634, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'Can the Liponorm-Asp Capsule cause muscle pain?', 'Yes, Liponorm-Asp Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21635, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'Will I need to stop Liponorm-Asp Capsule before surgery or dental procedure?', 'Liponorm-Asp Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Liponorm-Asp Capsule. You should not stop taking Liponorm-Asp Capsule on your own.'),
(21636, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'What are the lifestyle changes one should adopt while taking Liponorm-Asp Capsule?', 'Making lifestyle changes can boost your health while taking Liponorm-Asp Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21637, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'Which painkiller is safe while taking Liponorm-Asp Capsule?', 'Paracetamol is safe to use while taking Liponorm-Asp Capsule for reducing pain. Avoid the use of other painkillers while taking Liponorm-Asp Capsule, as they may increase the risk of bleeding.'),
(21638, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'Which medicines should I avoid while taking Liponorm-Asp Capsule?', 'Liponorm-Asp Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Liponorm-Asp Capsule before taking any prescription or non-prescription medicine.'),
(21639, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'Can Liponorm-Asp Capsule affect the liver?', 'Yes, Liponorm-Asp Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21640, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'What are the recommended storage conditions for Liponorm-Asp Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21641, 'Liponorm-Asp Capsule', 'Blue Cross Laboratories Ltd', 'Liponorm-Asp Capsule', 'Can the Liponorm-Asp Capsule cause muscle pain?', 'Yes, Liponorm-Asp Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21642, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'How long can you stay on Lipophage 120 Capsule?', 'It is not advised to take Lipophage 120 Capsule for more than 6 months. Consult your doctor and stop the medication if you do not experience any weight reduction 12 weeks after starting your treatment with Lipophage 120 Capsule.'),
(21643, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'Who should not take Lipophage 120 Capsule?', 'You should not take Lipophage 120 Capsule if you are allergic to it, have difficulty absorbing food (chronic malabsorption syndrome), and have cholestasis (a condition where the flow of bile from the liver is blocked). Refrain from using Lipophage 120 Capsule if you are taking cyclosporine medicine or blood thinners like warfarin. Along with that, avoid Lipophage 120 Capsule if you are pregnant or breastfeeding.'),
(21644, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'What kind of diet should I follow while on Lipophage 120 Capsule?', 'You should stick to low-calorie low-fat diet while taking Lipophage 120 Capsule. Having a high-fat meal with Lipophage 120 Capsule might increase the chances of developing unpleasant side effects. Try to eat more vegetables and fruits, have small portions, eat regularly, and do not skip any meals.'),
(21645, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'Can you drink alcohol on Lipophage 120 Capsule?', 'Though alcohol does not interfere with the working of Lipophage 120 Capsule, it is recommended that you cut on or avoid alcohol. Alcohol contains calories which will add to your weight. Hence, for effective weight reduction it is best to avoid alcohol.'),
(21646, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'How quickly does Lipophage 120 Capsule work?', 'Lipophage 120 Capsule starts working quickly, within 24-48 hours of taking it. You may even notice fat in your stools. However, it may take about a week or two to show effective weight reduction, which will vary from person to person.'),
(21647, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'Is it important to follow an exercise program while taking Lipophage 120 Capsule?', 'Yes, exercise may prove to be very helpful for the effective weight reduction and maintenance of reduced weight. An exercise program and low-calorie intake will help maintain your weight even after discontinuation of the medicine.'),
(21648, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'How does Lipophage 120 Capsule help with weight loss?', 'Lipophage 120 Capsule belongs to a class of medicines known as lipase inhibitors. It targets the fat that you eat. It prevents about 25% of fat in your meals from being absorbed. This unabsorbed fat will get passed in stools and get removed from the body.'),
(21649, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'How should I take Lipophage 120 Capsule?', 'Take Lipophage 120 Capsule three times a day and swallow the capsule whole with water. Take it just before, during, or up to one hour after meals. The meal should be well balanced and should include low calorie ingredients. Do not take Lipophage 120 Capsule if you miss a meal or your meal does not contain fat, as it will not work in the absence of fat.'),
(21650, 'Lipophage 120 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 120 Capsule', 'How much weight can you lose in a week with Lipophage 120 Capsule?', 'You should set a realistic goal of weight reduction. Aim to reduce 5-10% of your starting weight. This weight loss process should be gradual and at a steady pace. You should try to reduce 0.5 kg of weight per week.'),
(21651, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'How long can you stay on Lipophage 60 Capsule?', 'It is not advised to take Lipophage 60 Capsule for more than 6 months. Consult your doctor and stop the medication if you do not experience any weight reduction 12 weeks after starting your treatment with Lipophage 60 Capsule.'),
(21652, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'Who should not take Lipophage 60 Capsule?', 'You should not take Lipophage 60 Capsule if you are allergic to it, have difficulty absorbing food (chronic malabsorption syndrome), and have cholestasis (a condition where the flow of bile from the liver is blocked). Refrain from using Lipophage 60 Capsule if you are taking cyclosporine medicine or blood thinners like warfarin. Along with that, avoid Lipophage 60 Capsule if you are pregnant or breastfeeding.'),
(21653, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'What kind of diet should I follow while on Lipophage 60 Capsule?', 'You should stick to low-calorie low-fat diet while taking Lipophage 60 Capsule. Having a high-fat meal with Lipophage 60 Capsule might increase the chances of developing unpleasant side effects. Try to eat more vegetables and fruits, have small portions, eat regularly, and do not skip any meals.'),
(21654, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'Can you drink alcohol on Lipophage 60 Capsule?', 'Though alcohol does not interfere with the working of Lipophage 60 Capsule, it is recommended that you cut on or avoid alcohol. Alcohol contains calories which will add to your weight. Hence, for effective weight reduction it is best to avoid alcohol.'),
(21655, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'How quickly does Lipophage 60 Capsule work?', 'Lipophage 60 Capsule starts working quickly, within 24-48 hours of taking it. You may even notice fat in your stools. However, it may take about a week or two to show effective weight reduction, which will vary from person to person.'),
(21656, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'Is it important to follow an exercise program while taking Lipophage 60 Capsule?', 'Yes, exercise may prove to be very helpful for the effective weight reduction and maintenance of reduced weight. An exercise program and low-calorie intake will help maintain your weight even after discontinuation of the medicine.'),
(21657, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'How does Lipophage 60 Capsule help with weight loss?', 'Lipophage 60 Capsule belongs to a class of medicines known as lipase inhibitors. It targets the fat that you eat. It prevents about 25% of fat in your meals from being absorbed. This unabsorbed fat will get passed in stools and get removed from the body.'),
(21658, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'How should I take Lipophage 60 Capsule?', 'Take Lipophage 60 Capsule three times a day and swallow the capsule whole with water. Take it just before, during, or up to one hour after meals. The meal should be well balanced and should include low calorie ingredients. Do not take Lipophage 60 Capsule if you miss a meal or your meal does not contain fat, as it will not work in the absence of fat.'),
(21659, 'Lipophage 60 Capsule', 'Franco-Indian Pharmaceuticals Pvt Ltd', 'Lipophage 60 Capsule', 'How much weight can you lose in a week with Lipophage 60 Capsule?', 'You should set a realistic goal of weight reduction. Aim to reduce 5-10% of your starting weight. This weight loss process should be gradual and at a steady pace. You should try to reduce 0.5 kg of weight per week.'),
(21660, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21661, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Can Liporest 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liporest 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21662, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Is Liporest 10mg Tablet used for lowering cholesterol?', 'Liporest 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liporest 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liporest 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21663, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Can Liporest 10mg Tablet be prescribed to children?', 'Liporest 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21664, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Is Liporest 10mg Tablet a blood thinner?', 'No, Liporest 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21665, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Will taking Liporest 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liporest 10mg Tablet may increase this risk slightly. This is because Liporest 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21666, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'For how long do I need to take Liporest 10mg Tablet? Is it safe for long-term use?', 'You may need to take Liporest 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liporest 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21667, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Does Liporest 10mg Tablet cause weight loss?', 'No, Liporest 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liporest 10mg Tablet.'),
(21668, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Can I stop taking Liporest 10mg Tablet?', 'No, you should not stop taking Liporest 10mg Tablet without consulting your doctor. If you think that Liporest 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21669, 'Liporest 10mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 10mg Tablet', 'Can I take alcohol with Liporest 10mg Tablet?', 'No, it is not advised to take alcohol with Liporest 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liporest 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liporest 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21670, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21671, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Can Liporest 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liporest 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21672, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Is Liporest 20mg Tablet used for lowering cholesterol?', 'Liporest 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liporest 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liporest 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21673, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Can Liporest 20mg Tablet be prescribed to children?', 'Liporest 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21674, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Is Liporest 20mg Tablet a blood thinner?', 'No, Liporest 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21675, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Will taking Liporest 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liporest 20mg Tablet may increase this risk slightly. This is because Liporest 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21676, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'For how long do I need to take Liporest 20mg Tablet? Is it safe for long-term use?', 'You may need to take Liporest 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liporest 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21677, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Does Liporest 20mg Tablet cause weight loss?', 'No, Liporest 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liporest 20mg Tablet.'),
(21678, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Can I stop taking Liporest 20mg Tablet?', 'No, you should not stop taking Liporest 20mg Tablet without consulting your doctor. If you think that Liporest 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21679, 'Liporest 20mg Tablet', 'Centaur Pharmaceuticals Pvt Ltd', 'Liporest 20mg Tablet', 'Can I take alcohol with Liporest 20mg Tablet?', 'No, it is not advised to take alcohol with Liporest 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liporest 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liporest 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21680, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. For how long should I take Liporost 10mg Tablet?', 'You may need to take Liporost 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liporost 10mg Tablet. Stopping Liporost 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21681, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. Does Liporost 10mg Tablet cause weight gain?', 'No, there is no evidence of Liporost 10mg Tablet causing weight gain. If you are taking Liporost 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21682, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. Does Liporost 10mg Tablet make you tired?', 'Yes, Liporost 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liporost 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liporost 10mg Tablet.'),
(21683, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. Should Liporost 10mg Tablet be taken at night?', 'Liporost 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21684, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. What foods should be avoided when taking Liporost 10mg Tablet?', 'Liporost 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21685, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. How do I know whether Liporost 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liporost 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liporost 10mg Tablet versus the risks of not taking it at all.'),
(21686, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. Can Liporost 10mg Tablet cause memory loss?', 'Liporost 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liporost 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21687, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. Can Liporost 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liporost 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21688, 'Liporost 10mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 10mg Tablet', 'Q. Is it true that Liporost 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liporost 10mg Tablet may slightly increase this risk. This is because Liporost 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21689, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'For how long should I take Liporost 20mg Tablet?', 'You may need to take Liporost 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liporost 20mg Tablet. Stopping Liporost 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21690, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'Does Liporost 20mg Tablet cause weight gain?', 'No, there is no evidence of Liporost 20mg Tablet causing weight gain. If you are taking Liporost 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21691, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'Does Liporost 20mg Tablet make you tired?', 'Yes, Liporost 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liporost 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liporost 20mg Tablet.'),
(21692, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'Should Liporost 20mg Tablet be taken at night?', 'Liporost 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21693, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'What foods should be avoided when taking Liporost 20mg Tablet?', 'Liporost 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21694, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'How do I know whether Liporost 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liporost 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liporost 20mg Tablet versus the risks of not taking it at all.'),
(21695, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'Can Liporost 20mg Tablet cause memory loss?', 'Liporost 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liporost 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21696, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'Can Liporost 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liporost 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21697, 'Liporost 20mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 20mg Tablet', 'Is it true that Liporost 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liporost 20mg Tablet may slightly increase this risk. This is because Liporost 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21698, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'For how long should I take Liporost 5mg Tablet?', 'You may need to take Liporost 5mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Liporost 5mg Tablet. Stopping Liporost 5mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21699, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'Does Liporost 5mg Tablet cause weight gain?', 'No, there is no evidence of Liporost 5mg Tablet causing weight gain. If you are taking Liporost 5mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21700, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'Does Liporost 5mg Tablet make you tired?', 'Yes, Liporost 5mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Liporost 5mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Liporost 5mg Tablet.'),
(21701, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'Should Liporost 5mg Tablet be taken at night?', 'Liporost 5mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21702, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'What foods should be avoided when taking Liporost 5mg Tablet?', 'Liporost 5mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21703, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'How do I know whether Liporost 5mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Liporost 5mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Liporost 5mg Tablet versus the risks of not taking it at all.'),
(21704, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'Can Liporost 5mg Tablet cause memory loss?', 'Liporost 5mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Liporost 5mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21705, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'Can Liporost 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liporost 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21706, 'Liporost 5mg Tablet', 'AS Pharmaceutical (India) Pvt Ltd', 'Liporost 5mg Tablet', 'Is it true that Liporost 5mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liporost 5mg Tablet may slightly increase this risk. This is because Liporost 5mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21707, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21708, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Can Lipostat 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipostat 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21709, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Is Lipostat 20mg Tablet used for lowering cholesterol?', 'Lipostat 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipostat 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipostat 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21710, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Can Lipostat 20mg Tablet be prescribed to children?', 'Lipostat 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21711, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Is Lipostat 20mg Tablet a blood thinner?', 'No, Lipostat 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21712, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Will taking Lipostat 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipostat 20mg Tablet may increase this risk slightly. This is because Lipostat 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21713, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'For how long do I need to take Lipostat 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipostat 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipostat 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21714, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Does Lipostat 20mg Tablet cause weight loss?', 'No, Lipostat 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipostat 20mg Tablet.'),
(21715, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Can I stop taking Lipostat 20mg Tablet?', 'No, you should not stop taking Lipostat 20mg Tablet without consulting your doctor. If you think that Lipostat 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21716, 'Lipostat 20mg Tablet', 'Ultramark Healthcare Pvt Ltd', 'Lipostat 20mg Tablet', 'Can I take alcohol with Lipostat 20mg Tablet?', 'No, it is not advised to take alcohol with Lipostat 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipostat 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipostat 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21717, 'Lipovid-Forte Softgel Capsule', 'Sea9 Biogenic', 'Lipovid-Forte Softgel Capsule', 'What is Lipovid-Forte Softgel Capsule used for?', 'Lipovid-Forte Softgel Capsule is used to treat and prevent nutritional deficiencies, especially in cases where individuals may have a deficiency in B vitamins and other essential nutrients. It is commonly prescribed to support nerve health, reduce nerve pain, and improve overall energy and well-being.'),
(21718, 'Lipovid-Forte Softgel Capsule', 'Sea9 Biogenic', 'Lipovid-Forte Softgel Capsule', 'How should I take Lipovid-Forte Softgel Capsule?', 'Take Lipovid-Forte Softgel Capsule exactly as your doctor directs, usually once daily with food, to help with absorption and reduce stomach discomfort. For the best results, try to take it at the same time every day.'),
(21719, 'Lipovid-Forte Softgel Capsule', 'Sea9 Biogenic', 'Lipovid-Forte Softgel Capsule', 'What should I avoid while taking Lipovid-Forte Softgel Capsule?', 'Avoid excessive alcohol consumption, as it may interfere with the absorption of the vitamins. Also, avoid taking other vitamin supplements or medications with similar ingredients without your doctor’s guidance to prevent an overdose.'),
(21720, 'Lipovid-Forte Softgel Capsule', 'Sea9 Biogenic', 'Lipovid-Forte Softgel Capsule', 'Can I take Lipovid-Forte Softgel Capsule if I am pregnant or breastfeeding?', 'Consult your doctor before taking Lipovid-Forte Softgel Capsule if you are pregnant, planning to become pregnant, or breastfeeding, as some ingredients may require dose adjustments during these times.'),
(21721, 'Lipovid-Forte Softgel Capsule', 'Sea9 Biogenic', 'Lipovid-Forte Softgel Capsule', 'How long do I need to take Lipovid-Forte Softgel Capsule?', 'The duration of treatment depends on your individual health needs and your doctor\'s recommendation. Some take it for a few weeks, while others need long-term supplementation. Always follow your doctor’s instructions.'),
(21722, 'Lipovid-Forte Softgel Capsule', 'Sea9 Biogenic', 'Lipovid-Forte Softgel Capsule', 'Is Lipovid-Forte Softgel Capsule safe for people with diabetes?', 'Lipovid-Forte Softgel Capsule may be beneficial for people with diabetes, especially for managing symptoms like diabetic neuropathy. However, consult your doctor for personalized advice, as it may interact with certain diabetes medications.'),
(21723, 'Lipovid-Forte Softgel Capsule', 'Sea9 Biogenic', 'Lipovid-Forte Softgel Capsule', 'Can I take Lipovid-Forte Softgel Capsule with other supplements?', 'It is best to discuss with your doctor before combining Lipovid-Forte Softgel Capsule with other supplements to avoid excessive intake of certain vitamins and minerals, which may lead to side effects or interactions.'),
(21724, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'Can the use of Lipox 5mg/2.5mg Tablet cause physical dependence?', 'Yes, Lipox 5mg/2.5mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(21725, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'Are there any specific contraindications associated with the use of Lipox 5mg/2.5mg Tablet?', 'The use of Lipox 5mg/2.5mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Lipox 5mg/2.5mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(21726, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'What precautions do I need to take while using Lipox 5mg/2.5mg Tablet?', 'Lipox 5mg/2.5mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Lipox 5mg/2.5mg Tablet.'),
(21727, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'What are the symptoms of an overdose of Lipox 5mg/2.5mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(21728, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'Can the use of Lipox 5mg/2.5mg Tablet cause sleepiness or drowsiness?', 'Yes, Lipox 5mg/2.5mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(21729, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'Can the use of Lipox 5mg/2.5mg Tablet cause constipation?', 'Yes, the use of Lipox 5mg/2.5mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(21730, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'Can I drink alcohol while taking Lipox 5mg/2.5mg Tablet?', 'No, avoid drinking alcohol while you are taking Lipox 5mg/2.5mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(21731, 'Lipox 5mg/2.5mg Tablet', 'B G Biotech', 'Lipox 5mg/2.5mg Tablet', 'What are the instructions for storage and disposal of Lipox 5mg/2.5mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21732, 'Lipox Plus Tablet', 'B G Biotech', 'Lipox Plus Tablet', 'Is it safe to use Lipox Plus Tablet?', 'Lipox Plus Tablet is safe for most of the patients when taken as per the doctor\'s advice. However, in some patients it may cause common side effects like nausea, constipation, nervousness, dryness in the mouth, difficulty in urination, confusion, sleepiness, weakness, dizziness, blurred vision, impaired coordination and other uncommon or rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(21733, 'Lipox Plus Tablet', 'B G Biotech', 'Lipox Plus Tablet', 'Can the use of Lipox Plus Tablet cause nausea and vomiting?', 'Yes, the use of Lipox Plus Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(21734, 'Lipox Plus Tablet', 'B G Biotech', 'Lipox Plus Tablet', 'Can the use of Lipox Plus Tablet cause dryness in mouth?', 'Yes, the use of Lipox Plus Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(21735, 'Lipox Plus Tablet', 'B G Biotech', 'Lipox Plus Tablet', 'Can the use of Lipox Plus Tablet cause dizziness?', 'Yes, the use of Lipox Plus Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(21736, 'Lipoxil 500mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lipoxil 500mg Tablet', 'Is Lipoxil 500mg Tablet safe?', 'Lipoxil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(21737, 'Lipoxil 500mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lipoxil 500mg Tablet', 'What if I forget to take a dose of Lipoxil 500mg Tablet?', 'If you forget a dose of Lipoxil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(21738, 'Lipoxil 500mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lipoxil 500mg Tablet', 'Can the use of Lipoxil 500mg Tablet cause diarrhea?', 'Yes, the use of Lipoxil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(21739, 'Lipoxil 500mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lipoxil 500mg Tablet', 'Can I stop taking Lipoxil 500mg Tablet when I feel better?', 'No, do not stop taking Lipoxil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lipoxil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lipoxil 500mg Tablet in the dose and duration advised by the doctor.'),
(21740, 'Lipoxil 500mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lipoxil 500mg Tablet', 'Can the use of Lipoxil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lipoxil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lipoxil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(21741, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21742, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Can Lipozac 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipozac 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21743, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Is Lipozac 10mg Tablet used for lowering cholesterol?', 'Lipozac 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipozac 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipozac 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21744, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Can Lipozac 10mg Tablet be prescribed to children?', 'Lipozac 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21745, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Is Lipozac 10mg Tablet a blood thinner?', 'No, Lipozac 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21746, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Will taking Lipozac 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipozac 10mg Tablet may increase this risk slightly. This is because Lipozac 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21747, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'For how long do I need to take Lipozac 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lipozac 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipozac 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21748, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Does Lipozac 10mg Tablet cause weight loss?', 'No, Lipozac 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipozac 10mg Tablet.'),
(21749, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Can I stop taking Lipozac 10mg Tablet?', 'No, you should not stop taking Lipozac 10mg Tablet without consulting your doctor. If you think that Lipozac 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21750, 'Lipozac 10mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 10mg Tablet', 'Can I take alcohol with Lipozac 10mg Tablet?', 'No, it is not advised to take alcohol with Lipozac 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipozac 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipozac 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21751, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21752, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Can Lipozac 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipozac 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21753, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Is Lipozac 20mg Tablet used for lowering cholesterol?', 'Lipozac 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipozac 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipozac 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21754, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Can Lipozac 20mg Tablet be prescribed to children?', 'Lipozac 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21755, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Is Lipozac 20mg Tablet a blood thinner?', 'No, Lipozac 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21756, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Will taking Lipozac 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipozac 20mg Tablet may increase this risk slightly. This is because Lipozac 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21757, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'For how long do I need to take Lipozac 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lipozac 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipozac 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21758, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Does Lipozac 20mg Tablet cause weight loss?', 'No, Lipozac 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipozac 20mg Tablet.'),
(21759, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Can I stop taking Lipozac 20mg Tablet?', 'No, you should not stop taking Lipozac 20mg Tablet without consulting your doctor. If you think that Lipozac 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21760, 'Lipozac 20mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lipozac 20mg Tablet', 'Can I take alcohol with Lipozac 20mg Tablet?', 'No, it is not advised to take alcohol with Lipozac 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipozac 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipozac 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21761, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21762, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Can Lippi 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lippi 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21763, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Is Lippi 40mg Tablet used for lowering cholesterol?', 'Lippi 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lippi 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lippi 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21764, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Can Lippi 40mg Tablet be prescribed to children?', 'Lippi 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21765, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Is Lippi 40mg Tablet a blood thinner?', 'No, Lippi 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21766, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Will taking Lippi 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lippi 40mg Tablet may increase this risk slightly. This is because Lippi 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21767, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'For how long do I need to take Lippi 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lippi 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lippi 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21768, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Does Lippi 40mg Tablet cause weight loss?', 'No, Lippi 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lippi 40mg Tablet.'),
(21769, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Can I stop taking Lippi 40mg Tablet?', 'No, you should not stop taking Lippi 40mg Tablet without consulting your doctor. If you think that Lippi 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21770, 'Lippi 40mg Tablet', 'Lico life sciences', 'Lippi 40mg Tablet', 'Can I take alcohol with Lippi 40mg Tablet?', 'No, it is not advised to take alcohol with Lippi 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lippi 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lippi 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21771, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'What is Lippo 50 mg/10 mg Tablet?', 'Lippo 50 mg/10 mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(21772, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'Is it safe to use Lippo 50 mg/10 mg Tablet?', 'Yes, Lippo 50 mg/10 mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(21773, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'Can I stop taking Lippo 50 mg/10 mg Tablet when my pain is relieved?', 'Lippo 50 mg/10 mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lippo 50 mg/10 mg Tablet should be continued if  your physician has advised you to do so.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21774, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'Can the use of Lippo 50 mg/10 mg Tablet cause nausea and vomiting?', 'Yes, the use of Lippo 50 mg/10 mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(21775, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'Can the use of Lippo 50 mg/10 mg Tablet cause dizziness?', 'Yes, the use of Lippo 50 mg/10 mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(21776, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'Are there any specific contraindications associated with the use of Lippo 50 mg/10 mg Tablet?', 'The use of Lippo 50 mg/10 mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(21777, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'Can I take Lippo 50 mg/10 mg Tablet with Vitamin B-complex?', 'Lippo 50 mg/10 mg Tablet can be taken with Vitamin B-complex preparations. While Lippo 50 mg/10 mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(21778, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'Can I take Lippo 50 mg/10 mg Tablet for stomach pain?', 'No, Lippo 50 mg/10 mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(21779, 'Lippo 50 mg/10 mg Tablet', 'Monokem Labs', 'Lippo 50 mg/10 mg Tablet', 'What is the storage condition for the Lippo 50 mg/10 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21780, 'Liprax 10mg Tablet SR', 'Emocare', 'Liprax 10mg Tablet SR', 'Can Liprax 10mg Tablet SR cause impotence?', 'Yes, Liprax 10mg Tablet SR can cause impotence. Both men and women may experience decreased sexual desire and inability to have an organsm. In males, difficulty in maintaining erection (impotence) or painful ejaculation may be observed. You should consult your doctor immediately if you face any such problems while taking Liprax 10mg Tablet SR.'),
(21781, 'Liprax 10mg Tablet SR', 'Emocare', 'Liprax 10mg Tablet SR', 'Is Liprax 10mg Tablet SR safe?', 'Yes, Liprax 10mg Tablet SR is safe to use if taken in the dose and duration prescribed by the doctor. Liprax 10mg Tablet SR is a medicine that treats Obsessive-Compulsive Disorder (OCD), stabilises mood and behavior. It restores the chemical imbalance in the brain and creates a feeling of well being.'),
(21782, 'Liprax 10mg Tablet SR', 'Emocare', 'Liprax 10mg Tablet SR', 'What are the side effects of Liprax 10mg Tablet SR?', 'Liprax 10mg Tablet SR may cause side effects like difficulty or inability to pass urine, altered libido, constipation, dryness in mouth, ejaculation disorder, indigestion and sleepiness. Please consult your doctor if these side effects worry you. The doctor may suggest ways to treat or prevent them.'),
(21783, 'Liprax 10mg Tablet SR', 'Emocare', 'Liprax 10mg Tablet SR', 'What happens if I take an overdose of Liprax 10mg Tablet SR?', 'If you have taken an overdose of Liprax 10mg Tablet SR, you may experience symptoms such as drowsiness, restlessness, agitation and delirium (disturbed state of mind with restlessness and mental confusion). You may also experience severe sweating, fast heartbeat, feeling of faint, seizures (fits), and you may even go into a state of coma. Immediately consult your doctor and seek medical help if you think you have taken too much of this medicine.'),
(21784, 'Liprax 10mg Tablet SR', 'Emocare', 'Liprax 10mg Tablet SR', 'If I am feeling better, can I stop taking Liprax 10mg Tablet SR?', 'No, do not stop taking Liprax 10mg Tablet SR suddenly even if you are feeling better as it may worsen your condition and also cause withdrawal symptoms such as dizziness, nausea, vomiting, headache, weakness, sleep problems, fever, and irritability. Continue taking Liprax 10mg Tablet SR for the duration as prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(21785, 'Liprax 25mg Tablet SR', 'Emocare', 'Liprax 25mg Tablet SR', 'Can Liprax 25mg Tablet SR cause impotence?', 'Yes, Liprax 25mg Tablet SR can cause impotence. Both men and women may experience decreased sexual desire and inability to have an organsm. In males, difficulty in maintaining erection (impotence) or painful ejaculation may be observed. You should consult your doctor immediately if you face any such problems while taking Liprax 25mg Tablet SR.'),
(21786, 'Liprax 25mg Tablet SR', 'Emocare', 'Liprax 25mg Tablet SR', 'Is Liprax 25mg Tablet SR safe?', 'Yes, Liprax 25mg Tablet SR is safe to use if taken in the dose and duration prescribed by the doctor. Liprax 25mg Tablet SR is a medicine that treats Obsessive-Compulsive Disorder (OCD), stabilises mood and behavior. It restores the chemical imbalance in the brain and creates a feeling of well being.'),
(21787, 'Liprax 25mg Tablet SR', 'Emocare', 'Liprax 25mg Tablet SR', 'What are the side effects of Liprax 25mg Tablet SR?', 'Liprax 25mg Tablet SR may cause side effects like difficulty or inability to pass urine, altered libido, constipation, dryness in mouth, ejaculation disorder, indigestion and sleepiness. Please consult your doctor if these side effects worry you. The doctor may suggest ways to treat or prevent them.'),
(21788, 'Liprax 25mg Tablet SR', 'Emocare', 'Liprax 25mg Tablet SR', 'What happens if I take an overdose of Liprax 25mg Tablet SR?', 'If you have taken an overdose of Liprax 25mg Tablet SR, you may experience symptoms such as drowsiness, restlessness, agitation and delirium (disturbed state of mind with restlessness and mental confusion). You may also experience severe sweating, fast heartbeat, feeling of faint, seizures (fits), and you may even go into a state of coma. Immediately consult your doctor and seek medical help if you think you have taken too much of this medicine.'),
(21789, 'Liprax 25mg Tablet SR', 'Emocare', 'Liprax 25mg Tablet SR', 'If I am feeling better, can I stop taking Liprax 25mg Tablet SR?', 'No, do not stop taking Liprax 25mg Tablet SR suddenly even if you are feeling better as it may worsen your condition and also cause withdrawal symptoms such as dizziness, nausea, vomiting, headache, weakness, sleep problems, fever, and irritability. Continue taking Liprax 25mg Tablet SR for the duration as prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(21790, 'Liprax 50 Tablet', 'Emocare', 'Liprax 50 Tablet', 'Can Liprax 50 Tablet cause impotence?', 'Yes, Liprax 50 Tablet can cause impotence. Both men and women may experience decreased sexual desire and inability to have an organsm. In males, difficulty in maintaining erection (impotence) or painful ejaculation may be observed. You should consult your doctor immediately if you face any such problems while taking Liprax 50 Tablet.'),
(21791, 'Liprax 50 Tablet', 'Emocare', 'Liprax 50 Tablet', 'Is Liprax 50 Tablet safe?', 'Yes, Liprax 50 Tablet is safe to use if taken in the dose and duration prescribed by the doctor. Liprax 50 Tablet is a medicine that treats Obsessive-Compulsive Disorder (OCD), stabilises mood and behavior. It restores the chemical imbalance in the brain and creates a feeling of well being.'),
(21792, 'Liprax 50 Tablet', 'Emocare', 'Liprax 50 Tablet', 'What are the side effects of Liprax 50 Tablet?', 'Liprax 50 Tablet may cause side effects like difficulty or inability to pass urine, altered libido, constipation, dryness in mouth, ejaculation disorder, indigestion and sleepiness. Please consult your doctor if these side effects worry you. The doctor may suggest ways to treat or prevent them.'),
(21793, 'Liprax 50 Tablet', 'Emocare', 'Liprax 50 Tablet', 'What happens if I take an overdose of Liprax 50 Tablet?', 'If you have taken an overdose of Liprax 50 Tablet, you may experience symptoms such as drowsiness, restlessness, agitation and delirium (disturbed state of mind with restlessness and mental confusion). You may also experience severe sweating, fast heartbeat, feeling of faint, seizures (fits), and you may even go into a state of coma. Immediately consult your doctor and seek medical help if you think you have taken too much of this medicine.'),
(21794, 'Liprax 50 Tablet', 'Emocare', 'Liprax 50 Tablet', 'If I am feeling better, can I stop taking Liprax 50 Tablet?', 'No, do not stop taking Liprax 50 Tablet suddenly even if you are feeling better as it may worsen your condition and also cause withdrawal symptoms such as dizziness, nausea, vomiting, headache, weakness, sleep problems, fever, and irritability. Continue taking Liprax 50 Tablet for the duration as prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(21795, 'Liprax 75mg Tablet SR', 'Emocare', 'Liprax 75mg Tablet SR', 'Can Liprax 75mg Tablet SR cause impotence?', 'Yes, Liprax 75mg Tablet SR can cause impotence. Both men and women may experience decreased sexual desire and inability to have an organsm. In males, difficulty in maintaining erection (impotence) or painful ejaculation may be observed. You should consult your doctor immediately if you face any such problems while taking Liprax 75mg Tablet SR.'),
(21796, 'Liprax 75mg Tablet SR', 'Emocare', 'Liprax 75mg Tablet SR', 'Is Liprax 75mg Tablet SR safe?', 'Yes, Liprax 75mg Tablet SR is safe to use if taken in the dose and duration prescribed by the doctor. Liprax 75mg Tablet SR is a medicine that treats Obsessive-Compulsive Disorder (OCD), stabilises mood and behavior. It restores the chemical imbalance in the brain and creates a feeling of well being.'),
(21797, 'Liprax 75mg Tablet SR', 'Emocare', 'Liprax 75mg Tablet SR', 'What are the side effects of Liprax 75mg Tablet SR?', 'Liprax 75mg Tablet SR may cause side effects like difficulty or inability to pass urine, altered libido, constipation, dryness in mouth, ejaculation disorder, indigestion and sleepiness. Please consult your doctor if these side effects worry you. The doctor may suggest ways to treat or prevent them.'),
(21798, 'Liprax 75mg Tablet SR', 'Emocare', 'Liprax 75mg Tablet SR', 'What happens if I take an overdose of Liprax 75mg Tablet SR?', 'If you have taken an overdose of Liprax 75mg Tablet SR, you may experience symptoms such as drowsiness, restlessness, agitation and delirium (disturbed state of mind with restlessness and mental confusion). You may also experience severe sweating, fast heartbeat, feeling of faint, seizures (fits), and you may even go into a state of coma. Immediately consult your doctor and seek medical help if you think you have taken too much of this medicine.'),
(21799, 'Liprax 75mg Tablet SR', 'Emocare', 'Liprax 75mg Tablet SR', 'If I am feeling better, can I stop taking Liprax 75mg Tablet SR?', 'No, do not stop taking Liprax 75mg Tablet SR suddenly even if you are feeling better as it may worsen your condition and also cause withdrawal symptoms such as dizziness, nausea, vomiting, headache, weakness, sleep problems, fever, and irritability. Continue taking Liprax 75mg Tablet SR for the duration as prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(21800, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'What is the dosage of Lipride 1 Tablet?', 'The recommended starting dose of Lipride 1 Tablet is 1 mg or 2 mg once daily, administered with breakfast. If you are at a higher risk of low blood sugar (e.g., the elderly or patients with renal impairment), you will be given a starting dose of 1 mg once daily. The usual maintenance dose is 1–4 mg once daily. The maximum recommended dose is 8 mg once daily. After reaching a daily dose of 2 mg, the dosage will be increased not more than 2 mg at 1- to 2-week intervals, based on your blood glucose level.'),
(21801, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'Does Lipride 1 Tablet make you sleepy?', 'Lipride 1 Tablet itself does not cause sleepiness. However, it may cause hypoglycemia (low blood sugar) when used with other anti-diabetes medicine. Because of this you may feel sleepy or have problems in sleeping.'),
(21802, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'Is Lipride 1 Tablet safe for kidneys?', 'Lipride 1 Tablet does not affect kidneys in patients with normal kidney function. However, its use should be avoided in patients with severe kidney disease since Lipride 1 Tablet is principally eliminated by the kidneys.'),
(21803, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'Does Lipride 1 Tablet cause memory loss?', 'No, it is not known that Lipride 1 Tablet causes memory loss. However, the use of Lipride 1 Tablet may cause low blood sugar which may cause problems with concentration and reduced alertness.'),
(21804, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'Who should not take Lipride 1 Tablet?', 'Lipride 1 Tablet should be avoided by patients who are allergic to it, have severe kidney or liver disease, have G6PD-deficiency (an inherited condition affecting red blood cells) or are due to have surgery. Additionally, patients who are trying to get pregnant, are pregnant or breastfeeding, or have insulin-dependent diabetes (type 1 diabetes mellitus) should avoid taking Lipride 1 Tablet.'),
(21805, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'How long does it take for Lipride 1 Tablet to start working?', 'Lipride 1 Tablet takes about 2 to 3 hours to reduce blood sugar levels. You may not feel any difference, but this does not mean the medicine is not working. Continue taking the medication as directed by your doctor and if you have any concerns, discuss it with your doctor.'),
(21806, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'How long do I need to take Lipride 1 Tablet? Can I stop the medication?', 'Usually, the treatment for diabetes is suggested for a long term. You may have to continue the treatment life long. Lipride 1 Tablet only controls the sugar levels but does not cure it. Do not stop taking Lipride 1 Tablet without talking to your doctor. If you stop taking Lipride 1 Tablet suddenly your diabetes may get worse.'),
(21807, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'What can happen if I take more than the recommended dose of Lipride 1 Tablet?', 'Lipride 1 Tablet should be taken strictly as advised by the doctor. Overdose of Lipride 1 Tablet may significantly decrease your blood sugar levels (hypoglycemia). If you think you have taken an excess dose and experience a dip in your sugar level, consume enough sugar (e.g., a small bar of sugar cubes, sweet juice or sweetened tea) and inform a doctor immediately. Severe cases of hypoglycemia accompanied by loss of consciousness and coma require immediate medical treatment and admission into hospital.'),
(21808, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'Can you take Lipride 1 Tablet on an empty stomach?', 'No. Taking Lipride 1 Tablet on an empty stomach can cause your blood sugar levels to become too low. Low blood sugar can cause dizziness, shaking, anxiety, irritability, a fast heartbeat, and confusion. Therefore, you should always take the medicine with breakfast or the first meal of the day. If you are skipping your meal, then you should also avoid taking Lipride 1 Tablet.'),
(21809, 'Lipride 1 Tablet', 'Akcent Healthcare', 'Lipride 1 Tablet', 'Can Lipride 1 Tablet cause weight gain?', 'Yes, Lipride 1 Tablet can cause weight gain. Lipride 1 Tablet is a sulfonylurea drug and causes the pancreas to release insulin. It may stimulate hunger and cause mild weight gain in some people. Patients are advised to eat a healthy balanced diet and exercise regularly to keep their weight stable.'),
(21810, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'What is Lipril 10 Tablet? What is it used for?', 'Lipril 10 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(21811, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'What should I tell my doctor before taking Lipril 10 Tablet?', 'Before taking Lipril 10 Tablet you must tell your doctor if you are allergic to Lipril 10 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lipril 10 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(21812, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'What time of the day should I take Lipril 10 Tablet?', 'Lipril 10 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lipril 10 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lipril 10 Tablet, please consult your doctor.'),
(21813, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'I feel better after taking Lipril 10 Tablet, can I stop taking it?', 'No, continue taking Lipril 10 Tablet even if you feel better and your blood pressure is under control. Stopping Lipril 10 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(21814, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'Will Lipril 10 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lipril 10 Tablet may make you feel dizzy or lightheaded. If Lipril 10 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(21815, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'What other lifestyle changes should I make while taking Lipril 10 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lipril 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lipril 10 Tablet and to keep yourself healthy.'),
(21816, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'I have diabetes. Does Lipril 10 Tablet have any effect on blood sugar levels?', 'Yes, Lipril 10 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(21817, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'After starting Lipril 10 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lipril 10 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lipril 10 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lipril 10 Tablet, the cough may take a few days to a month to resolve completely.'),
(21818, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'Can Lipril 10 Tablet affect my fertility?', 'There is no evidence that Lipril 10 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lipril 10 Tablet is not recommended in pregnancy.'),
(21819, 'Lipril 10 Tablet', 'Lupin Ltd', 'Lipril 10 Tablet', 'Can Lipril 10 Tablet increase potassium levels? If so, what should be done?', 'Lipril 10 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lipril 10 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(21820, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'What is Lipril 2.5 Tablet? What is it used for?', 'Lipril 2.5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(21821, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'What should I tell my doctor before taking Lipril 2.5 Tablet?', 'Before taking Lipril 2.5 Tablet you must tell your doctor if you are allergic to Lipril 2.5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lipril 2.5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(21822, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'What time of the day should I take Lipril 2.5 Tablet?', 'Lipril 2.5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lipril 2.5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lipril 2.5 Tablet, please consult your doctor.'),
(21823, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'I feel better after taking Lipril 2.5 Tablet, can I stop taking it?', 'No, continue taking Lipril 2.5 Tablet even if you feel better and your blood pressure is under control. Stopping Lipril 2.5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(21824, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'Will Lipril 2.5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lipril 2.5 Tablet may make you feel dizzy or lightheaded. If Lipril 2.5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(21825, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'What other lifestyle changes should I make while taking Lipril 2.5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lipril 2.5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lipril 2.5 Tablet and to keep yourself healthy.'),
(21826, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'I have diabetes. Does Lipril 2.5 Tablet have any effect on blood sugar levels?', 'Yes, Lipril 2.5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(21827, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'After starting Lipril 2.5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lipril 2.5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lipril 2.5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lipril 2.5 Tablet, the cough may take a few days to a month to resolve completely.'),
(21828, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'Can Lipril 2.5 Tablet affect my fertility?', 'There is no evidence that Lipril 2.5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lipril 2.5 Tablet is not recommended in pregnancy.'),
(21829, 'Lipril 2.5 Tablet', 'Lupin Ltd', 'Lipril 2.5 Tablet', 'Can Lipril 2.5 Tablet increase potassium levels? If so, what should be done?', 'Lipril 2.5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lipril 2.5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(21830, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'What is Lipril 5 Tablet? What is it used for?', 'Lipril 5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(21831, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'What should I tell my doctor before taking Lipril 5 Tablet?', 'Before taking Lipril 5 Tablet you must tell your doctor if you are allergic to Lipril 5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lipril 5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(21832, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'What time of the day should I take Lipril 5 Tablet?', 'Lipril 5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lipril 5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lipril 5 Tablet, please consult your doctor.'),
(21833, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'I feel better after taking Lipril 5 Tablet, can I stop taking it?', 'No, continue taking Lipril 5 Tablet even if you feel better and your blood pressure is under control. Stopping Lipril 5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(21834, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'Will Lipril 5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lipril 5 Tablet may make you feel dizzy or lightheaded. If Lipril 5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(21835, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'What other lifestyle changes should I make while taking Lipril 5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lipril 5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lipril 5 Tablet and to keep yourself healthy.'),
(21836, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'I have diabetes. Does Lipril 5 Tablet have any effect on blood sugar levels?', 'Yes, Lipril 5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(21837, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'After starting Lipril 5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lipril 5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lipril 5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lipril 5 Tablet, the cough may take a few days to a month to resolve completely.'),
(21838, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'Can Lipril 5 Tablet affect my fertility?', 'There is no evidence that Lipril 5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lipril 5 Tablet is not recommended in pregnancy.'),
(21839, 'Lipril 5 Tablet', 'Lupin Ltd', 'Lipril 5 Tablet', 'Can Lipril 5 Tablet increase potassium levels? If so, what should be done?', 'Lipril 5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lipril 5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(21840, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'What is Liprinor 5mg Tablet? What is it used for?', 'Liprinor 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(21841, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'What should I tell my doctor before taking Liprinor 5mg Tablet?', 'Before taking Liprinor 5mg Tablet you must tell your doctor if you are allergic to Liprinor 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Liprinor 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(21842, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'What time of the day should I take Liprinor 5mg Tablet?', 'Liprinor 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Liprinor 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Liprinor 5mg Tablet, please consult your doctor.'),
(21843, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'I feel better after taking Liprinor 5mg Tablet, can I stop taking it?', 'No, continue taking Liprinor 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Liprinor 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(21844, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'Will Liprinor 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Liprinor 5mg Tablet may make you feel dizzy or lightheaded. If Liprinor 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(21845, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'What other lifestyle changes should I make while taking Liprinor 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Liprinor 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Liprinor 5mg Tablet and to keep yourself healthy.'),
(21846, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'I have diabetes. Does Liprinor 5mg Tablet have any effect on blood sugar levels?', 'Yes, Liprinor 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(21847, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'After starting Liprinor 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Liprinor 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Liprinor 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Liprinor 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(21848, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'Can Liprinor 5mg Tablet affect my fertility?', 'There is no evidence that Liprinor 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Liprinor 5mg Tablet is not recommended in pregnancy.'),
(21849, 'Liprinor 5mg Tablet', 'Norris Medicines Ltd', 'Liprinor 5mg Tablet', 'Can Liprinor 5mg Tablet increase potassium levels? If so, what should be done?', 'Liprinor 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Liprinor 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(21850, 'Liprolase 10000 Tablet', 'Viilbery Healthcare Pvt Ltd', 'Liprolase 10000 Tablet', 'What does Liprolase 10000 Tablet help with?', 'Liprolase 10000 Tablet is a pancreatic enzyme supplement created with a mixture of enzymes. It is given to patients whose pancreas is not able to create enough of their own enzymes to digest the food. It is also given to treat digestion problems caused in patients whose pancreas have been surgically removed or are not working well.'),
(21851, 'Liprolase 10000 Tablet', 'Viilbery Healthcare Pvt Ltd', 'Liprolase 10000 Tablet', 'Is it safe to take Liprolase 10000 Tablet?', 'Liprolase 10000 Tablet is usually safe in patients who have been prescribed to take it for digestion issues caused due to problems of the pancreas. Liprolase 10000 Tablet can cause an increase in blood uric acid levels, thereby worsening your gout and causing painful swollen joints. Liprolase 10000 Tablet may also cause allergic reactions like skin rashes, swollen lips, increased flatulence, stomach pain, headache, dizziness, etc. Consult your doctor before you start taking this medicine and give a proper history of allergies and the medicines you are currently taking.'),
(21852, 'Liprolase 10000 Tablet', 'Viilbery Healthcare Pvt Ltd', 'Liprolase 10000 Tablet', 'How should I take Liprolase 10000 Tablet?', 'Take the capsule with food and swallow it as a whole. Drink plenty of fluids after taking the medicine. It is very essential to increase your fluid intake while taking Liprolase 10000 Tablet. In case you have trouble swallowing capsules, you can take out the granules from the capsules and mix them with fruit juices or yoghurt and swallow it. Just be careful not to crush the granules.'),
(21853, 'Liprolase 10000 Tablet', 'Viilbery Healthcare Pvt Ltd', 'Liprolase 10000 Tablet', 'What food should I eat if I have pancreatic enzyme insufficiency?', 'You should try to take five small meals to make it easier for your pancreas to digest what you eat. Take a well-balanced, low-fat diet and strictly limit the foods which contain a high amount of saturated and trans fats. Your diet should preferably contain whole grains, fruits, vegetables, fat-free meat/poultry, beans and low-fat dairy sources. Drink plenty of fluids and water throughout the day to stay hydrated. Ask your doctor if you can take regular vitamin like A, D, E, and K, as it will be benefecial for you. You can have limited amounts of healthy polyunsaturated fat. Avoid smoking or drinking alcohol strictly because this can damage your pancreas.'),
(21854, 'Liprolase 10000 Tablet', 'Viilbery Healthcare Pvt Ltd', 'Liprolase 10000 Tablet', 'Can Liprolase 10000 Tablet be given in children?', 'Yes, Liprolase 10000 Tablet can be given to children. Just like adults, even children need to be given a sufficient amount of fluids while on treatment with Liprolase 10000 Tablet. When giving it to infants aged 12 months or less, you can open the capsule and empty the contents directly into the infant’s mouth. Following this, you can feed breast milk or infant milk formula to your baby. However, do not mix the medicine directly into the formula or breast milk. Also, be cautious to see that the baby swallows the entire medicine and nothing is retained in the baby’s mouth, as it can cause irritation in the mouth.'),
(21855, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'For how long should I take Lipross 20mg Tablet?', 'You may need to take Lipross 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lipross 20mg Tablet. Stopping Lipross 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(21856, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'Does Lipross 20mg Tablet cause weight gain?', 'No, there is no evidence of Lipross 20mg Tablet causing weight gain. If you are taking Lipross 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(21857, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'Does Lipross 20mg Tablet make you tired?', 'Yes, Lipross 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lipross 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lipross 20mg Tablet.'),
(21858, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'Should Lipross 20mg Tablet be taken at night?', 'Lipross 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(21859, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'What foods should be avoided when taking Lipross 20mg Tablet?', 'Lipross 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(21860, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'How do I know whether Lipross 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lipross 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lipross 20mg Tablet versus the risks of not taking it at all.'),
(21861, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'Can Lipross 20mg Tablet cause memory loss?', 'Lipross 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lipross 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(21862, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'Can Lipross 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipross 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21863, 'Lipross 20mg Tablet', 'Opsiscare Lifesciences Pvt Ltd', 'Lipross 20mg Tablet', 'Is it true that Lipross 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipross 20mg Tablet may slightly increase this risk. This is because Lipross 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21864, 'Liprot Oral Drops', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Oral Drops', 'My child is having abdominal pain associated with nausea, vomiting, and sensitivity to light. Is Liprot Oral Drops safe in such a case?', 'The above-mentioned symptoms may indicate migraine in a child. It is characterized by recurrent episodes of dull abdominal pain which is moderate to severe in intensity. Such abdominal pain is usually accompanied by anorexia, nausea, vomiting, headache, photophobia, and pallor. Do rule out such types of pain before giving Liprot Oral Drops.'),
(21865, 'Liprot Oral Drops', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Oral Drops', 'What all tests do my child need to undergo if he has abdominal pain?', 'The doctor may advise abdominal ultrasound for a routine examination. In serious abdominal conditions, endoscopy and esophageal pH may also be monitored.'),
(21866, 'Liprot Oral Drops', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Oral Drops', 'In which all diseases should Liprot Oral Drops be avoided?', 'Avoid giving Liprot Oral Drops in obstructive and inflammatory diseases of the digestive tract as Liprot Oral Drops is mainly eliminated from the body through stools and its elimination will be reduced in such kinds of diseases.'),
(21867, 'Liprot Oral Drops', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Oral Drops', 'How should Liprot Oral Drops be stored?', 'Liprot Oral Drops should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(21868, 'Liprot Syrup', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Syrup', 'My child is having abdominal pain associated with nausea, vomiting, and sensitivity to light. Is Liprot Syrup safe in such a case?', 'The above-mentioned symptoms may indicate migraine in a child. It is characterized by recurrent episodes of dull abdominal pain which is moderate to severe in intensity. Such abdominal pain is usually accompanied by anorexia, nausea, vomiting, headache, photophobia, and pallor. Do rule out such types of pain before giving Liprot Syrup.'),
(21869, 'Liprot Syrup', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Syrup', 'What all tests do my child need to undergo if he has abdominal pain?', 'The doctor may advise abdominal ultrasound for a routine examination. In serious abdominal conditions, endoscopy and esophageal pH may also be monitored.'),
(21870, 'Liprot Syrup', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Syrup', 'In which all diseases should Liprot Syrup be avoided?', 'Avoid giving Liprot Syrup in obstructive and inflammatory diseases of the digestive tract as Liprot Syrup is mainly eliminated from the body through stools and its elimination will be reduced in such kinds of diseases.'),
(21871, 'Liprot Syrup', 'Ranip Drugs (India) Pvt. Ltd.', 'Liprot Syrup', 'How should Liprot Syrup be stored?', 'Liprot Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(21872, 'Lipruflox 600mg Tablet', 'United Biotech Pvt Ltd', 'Lipruflox 600mg Tablet', 'Can the use of Lipruflox  600mg Tablet cause diarrhea?', 'Yes, the use of Lipruflox  600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(21873, 'Lipruflox 600mg Tablet', 'United Biotech Pvt Ltd', 'Lipruflox 600mg Tablet', 'Can I stop taking Lipruflox  600mg Tablet when I feel better?', 'No, do not stop taking Lipruflox  600mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(21874, 'Lipruflox 600mg Tablet', 'United Biotech Pvt Ltd', 'Lipruflox 600mg Tablet', 'Can the use of Lipruflox  600mg Tablet increase the risk of muscle damage?', 'Yes, use of Lipruflox  600mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lipruflox  600mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(21875, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'What is Liptex 1500mcg/75mg Tablet SR?', 'Liptex 1500mcg/75mg Tablet SR is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(21876, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'Can I stop taking Liptex 1500mcg/75mg Tablet SR when my pain is relieved?', 'No, you should not stop taking Liptex 1500mcg/75mg Tablet SR even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Liptex 1500mcg/75mg Tablet SR, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Liptex 1500mcg/75mg Tablet SR before you stop the medication completely.'),
(21877, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'How to manage weight gain associated with the use of Liptex 1500mcg/75mg Tablet SR?', 'Liptex 1500mcg/75mg Tablet SR can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(21878, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'Can the use of Liptex 1500mcg/75mg Tablet SR cause sleepiness or drowsiness?', 'Yes, Liptex 1500mcg/75mg Tablet SR may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(21879, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'Are there any serious side effects associated with the use of Liptex 1500mcg/75mg Tablet SR?', 'Serious side effects caused because of the use of Liptex 1500mcg/75mg Tablet SR are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Liptex 1500mcg/75mg Tablet SR and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(21880, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'How long will the Liptex 1500mcg/75mg Tablet SR take to act?', 'An initial benefit with Liptex 1500mcg/75mg Tablet SR may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(21881, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'What if I forget to take Liptex 1500mcg/75mg Tablet SR?', 'If you forget to take the scheduled dose of Liptex 1500mcg/75mg Tablet SR and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(21882, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'Will a higher than the recommended dose of Liptex 1500mcg/75mg Tablet SR be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(21883, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'Can I drink alcohol while taking Liptex 1500mcg/75mg Tablet SR?', 'No, do not drink alcohol while taking Liptex 1500mcg/75mg Tablet SR. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Liptex 1500mcg/75mg Tablet SR.'),
(21884, 'Liptex 1500mcg/75mg Tablet SR', 'Capri Pharmaceuticals', 'Liptex 1500mcg/75mg Tablet SR', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Liptex 1500mcg/75mg Tablet SR. However, you must consult your doctor if the advised dosage of Liptex 1500mcg/75mg Tablet SR does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(21885, 'Liptex Forte 2500mcg Injection', 'Capri Pharmaceuticals', 'Liptex Forte 2500mcg Injection', 'What is Liptex Forte 2500mcg Injection?', 'Liptex Forte 2500mcg Injection is a form of vitamin B12. Vitamin B12 is an essential nutrient which is required by the body to make red blood cells and maintain a healthy nervous system. It is also important for releasing energy from food and using vitamin B11 (folic acid).'),
(21886, 'Liptex Forte 2500mcg Injection', 'Capri Pharmaceuticals', 'Liptex Forte 2500mcg Injection', 'Why can’t I get sufficient vitamin B12 in my diet?', 'You can get vitamin B12 from sources like meat, fish, eggs and dairy products. While people who are vegetarian or vegan may not get Vitamin B12 as it is not found naturally in foods such as fruits, vegetables and grains. Therefore, deficiency of Vitamin B12 is usually noticed in vegetarians or vegans.'),
(21887, 'Liptex Forte 2500mcg Injection', 'Capri Pharmaceuticals', 'Liptex Forte 2500mcg Injection', 'What happens if I have vitamin B12 deficiency?', 'Deficiency of vitamin B12 may cause tiredness, weakness, constipation, loss of appetite, weight loss and megaloblastic anemia (a condition when red blood cells become larger than normal). It may also lead to nerve problems such as numbness and tingling in the hands and feet. Other symptoms of vitamin B12 deficiency may include problems with balance, depression, confusion, dementia, poor memory and soreness of the mouth or tongue.'),
(21888, 'Liptex Forte 2500mcg Injection', 'Capri Pharmaceuticals', 'Liptex Forte 2500mcg Injection', 'Is Liptex Forte 2500mcg Injection safe?', 'Liptex Forte 2500mcg Injection is generally well tolerated and considered safe. However, in some cases, rare side effects may be observed such as nausea, diarrhea, anorexia and rash. Discontinue taking this medicine immediately if a rash occurs.'),
(21889, 'Liptex Forte 2500mcg Injection', 'Capri Pharmaceuticals', 'Liptex Forte 2500mcg Injection', 'How should Liptex Forte 2500mcg Injection be given?', 'Liptex Forte 2500mcg Injection can be injected directly into a vein (intravenously) or into a muscle (intramuscularly). The usual dose is 1 ampoule (0.5 mg of Liptex Forte 2500mcg Injection) and is given 3 times a week. After 2 months, 1 ampoule (0.5 mg of Liptex Forte 2500mcg Injection) is given every one to three months as a part of maintenance therapy.'),
(21890, 'Liptex Forte 2500mcg Injection', 'Capri Pharmaceuticals', 'Liptex Forte 2500mcg Injection', 'What precautions need to be taken while administering Liptex Forte 2500mcg Injection?', 'Avoid taking the injections at the same site every time. If there is intense pain while injecting or if the blood flows back into the syringe, take out the needle and re-insert at a different site.'),
(21891, 'Liptex-GB Tablet', 'Capri Pharmaceuticals', 'Liptex-GB Tablet', 'What is Liptex-GB Tablet?', 'Liptex-GB Tablet is a combination of two medicines: Gabapentin and Methylcobalamin. This medication is useful in the treatment of pain due to nerve damage (peripheral neuropathy). This medication works by regenerating damaged nerves in the body and decreasing the pain sensation.'),
(21892, 'Liptex-GB Tablet', 'Capri Pharmaceuticals', 'Liptex-GB Tablet', 'What is peripheral neuropathy?', 'The nerves in the periphery of your body, such as the nerves in your toes and fingertip are called peripheral nerves and any damage to one or more of these nerves is called peripheral neuropathy. These nerves carry messages to/from the brain and spinal cord from/to the rest of the body. A damage caused to these nerves stops them from functioning properly and the messages traveling between your central and peripheral nervous system get disrupted.'),
(21893, 'Liptex-GB Tablet', 'Capri Pharmaceuticals', 'Liptex-GB Tablet', 'Can I stop taking Liptex-GB Tablet when my pain is relieved?', 'No, take Liptex-GB Tablet for the full prescribed length of time. Your symptoms may improve before the nerves are completely regenerated and healed.'),
(21894, 'Liptex-GB Tablet', 'Capri Pharmaceuticals', 'Liptex-GB Tablet', 'Can the use of Liptex-GB Tablet cause sleepiness?', 'Yes, the most common side effect of Liptex-GB Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention. Do not drink alcohol while taking Liptex-GB Tablet as it can lead to severe sleepiness , causing falls or accidents.'),
(21895, 'Liptex-GB Tablet', 'Capri Pharmaceuticals', 'Liptex-GB Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Liptex-GB Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(21896, 'Liptex-GB Tablet', 'Capri Pharmaceuticals', 'Liptex-GB Tablet', 'What is the recommended storage condition for the Liptex-GB Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21897, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'Can the use of Liptonia M 500mg/50mg Tablet lead to hypoglycemia?', 'The use of Liptonia M 500mg/50mg Tablet does not usually cause hypoglycemia (low blood sugar level) alone. But it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise, or take any other antidiabetic medicine along with it. So, regular monitoring of blood sugar levels is important. It is recommended to always carry glucose tablets, honey, or fruit juice with you.'),
(21898, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'Can the use of Liptonia M 500mg/50mg Tablet cause nausea and vomiting?', 'Yes, the use of Liptonia M 500mg/50mg Tablet can cause nausea and vomiting. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark-colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(21899, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'Are there any specific contraindications associated with the use of Liptonia M 500mg/50mg Tablet?', 'The use of Liptonia M 500mg/50mg Tablet should be avoided in patients with known allergies to any of the components or excipients of this medicine. The use of this medicine is also considered to be harmful to patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis, or diabetic ketoacidosis.'),
(21900, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'What is the storage condition for the Liptonia M 500mg/50mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(21901, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'What is Liptonia M 500mg/50mg Tablet?', 'Liptonia M 500mg/50mg Tablet is a combination of two anti-diabetic drugs: Metformin and Vildagliptin. Metformin is an anti-diabetic medicine and belongs to the class of biguanides. It lowers the glucose production in the liver, delays glucose absorption from the intestines, and increases the body\'s sensitivity to insulin. Vildagliptin inhibits the enzyme DPP4 inhibitor and increases the release of insulin from the pancreas. This combination is not advised for patients below 18 years of age.'),
(21902, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'Can the use of Liptonia M 500mg/50mg Tablet cause lactic acidosis?', 'Yes, the use of Liptonia M 500mg/50mg Tablet can lead to lactic acidosis. It is a medical emergency that is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a very rare side effect associated with the use of metformin and therefore, it is avoided in patients with underlying kidney disease, old age patients, or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain, or slow heart rate. If you have these symptoms, stop taking Liptonia M 500mg/50mg Tablet and immediately consult your doctor.'),
(21903, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'Can the use of Liptonia M 500mg/50mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Liptonia M 500mg/50mg Tablet can cause Vitamin B12 deficiency with long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems.'),
(21904, 'Liptonia M 500mg/50mg Tablet', 'Durga Pharmaceuticals Private Limited', 'Liptonia M 500mg/50mg Tablet', 'Is it safe to use Liptonia M 500mg/50mg Tablet?', 'Yes, it is safe to use Liptonia M 500mg/50mg Tablet if you take it for the prescribed duration and according to the dosage advised by the doctor. However, despite taking the prescribed dosage you might experience common side effects like nausea, diarrhea, vomiting, stomach upset, headache, nasal congestion, sore throat, respiratory tract infection, hypoglycemia (low blood sugar level) in combination with insulin or sulphonylurea. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(21905, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21906, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Can Liptro 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Liptro 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21907, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Is Liptro 5mg Tablet used for lowering cholesterol?', 'Liptro 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Liptro 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Liptro 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21908, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Can Liptro 5mg Tablet be prescribed to children?', 'Liptro 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21909, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Is Liptro 5mg Tablet a blood thinner?', 'No, Liptro 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21910, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Will taking Liptro 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Liptro 5mg Tablet may increase this risk slightly. This is because Liptro 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21911, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'For how long do I need to take Liptro 5mg Tablet? Is it safe for long-term use?', 'You may need to take Liptro 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Liptro 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21912, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Does Liptro 5mg Tablet cause weight loss?', 'No, Liptro 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Liptro 5mg Tablet.'),
(21913, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Can I stop taking Liptro 5mg Tablet?', 'No, you should not stop taking Liptro 5mg Tablet without consulting your doctor. If you think that Liptro 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21914, 'Liptro 5mg Tablet', 'Psycormedies', 'Liptro 5mg Tablet', 'Can I take alcohol with Liptro 5mg Tablet?', 'No, it is not advised to take alcohol with Liptro 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Liptro 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Liptro 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21915, 'Liptry 5mg Tablet', 'Try Drugs Pharmaceuticals', 'Liptry 5mg Tablet', 'Is Liptry 5mg Tablet a steroid? What is it used for?', 'No, Liptry 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(21916, 'Liptry 5mg Tablet', 'Try Drugs Pharmaceuticals', 'Liptry 5mg Tablet', 'Does Liptry 5mg Tablet make you tired and drowsy?', 'Yes, Liptry 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(21917, 'Liptry 5mg Tablet', 'Try Drugs Pharmaceuticals', 'Liptry 5mg Tablet', 'How long does it take for Liptry 5mg Tablet to work?', 'Liptry 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(21918, 'Liptry 5mg Tablet', 'Try Drugs Pharmaceuticals', 'Liptry 5mg Tablet', 'Can I take Liptry 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liptry 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(21919, 'Liptry 5mg Tablet', 'Try Drugs Pharmaceuticals', 'Liptry 5mg Tablet', 'Is it safe to take Liptry 5mg Tablet for a long time?', 'Liptry 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liptry 5mg Tablet for only as long as you need it.'),
(21920, 'Liptry 5mg Tablet', 'Try Drugs Pharmaceuticals', 'Liptry 5mg Tablet', 'For how long should I continue Liptry 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liptry 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liptry 5mg Tablet'),
(21921, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21922, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Can Lipvas 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipvas 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21923, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Is Lipvas 10 Tablet used for lowering cholesterol?', 'Lipvas 10 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipvas 10 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipvas 10 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21924, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Can Lipvas 10 Tablet be prescribed to children?', 'Lipvas 10 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21925, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Is Lipvas 10 Tablet a blood thinner?', 'No, Lipvas 10 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21926, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Will taking Lipvas 10 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipvas 10 Tablet may increase this risk slightly. This is because Lipvas 10 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21927, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'For how long do I need to take Lipvas 10 Tablet? Is it safe for long-term use?', 'You may need to take Lipvas 10 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipvas 10 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21928, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Does Lipvas 10 Tablet cause weight loss?', 'No, Lipvas 10 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipvas 10 Tablet.'),
(21929, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Can I stop taking Lipvas 10 Tablet?', 'No, you should not stop taking Lipvas 10 Tablet without consulting your doctor. If you think that Lipvas 10 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21930, 'Lipvas 10 Tablet', 'Cipla Ltd', 'Lipvas 10 Tablet', 'Can I take alcohol with Lipvas 10 Tablet?', 'No, it is not advised to take alcohol with Lipvas 10 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipvas 10 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipvas 10 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21931, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21932, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Can Lipvas 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipvas 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21933, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Is Lipvas 20 Tablet used for lowering cholesterol?', 'Lipvas 20 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipvas 20 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipvas 20 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21934, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Can Lipvas 20 Tablet be prescribed to children?', 'Lipvas 20 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21935, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Is Lipvas 20 Tablet a blood thinner?', 'No, Lipvas 20 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21936, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Will taking Lipvas 20 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipvas 20 Tablet may increase this risk slightly. This is because Lipvas 20 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21937, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'For how long do I need to take Lipvas 20 Tablet? Is it safe for long-term use?', 'You may need to take Lipvas 20 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipvas 20 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21938, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Does Lipvas 20 Tablet cause weight loss?', 'No, Lipvas 20 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipvas 20 Tablet.'),
(21939, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Can I stop taking Lipvas 20 Tablet?', 'No, you should not stop taking Lipvas 20 Tablet without consulting your doctor. If you think that Lipvas 20 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21940, 'Lipvas 20 Tablet', 'Cipla Ltd', 'Lipvas 20 Tablet', 'Can I take alcohol with Lipvas 20 Tablet?', 'No, it is not advised to take alcohol with Lipvas 20 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipvas 20 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipvas 20 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21941, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21942, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Can Lipvas 40 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipvas 40 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21943, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Is Lipvas 40 Tablet used for lowering cholesterol?', 'Lipvas 40 Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipvas 40 Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipvas 40 Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21944, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Can Lipvas 40 Tablet be prescribed to children?', 'Lipvas 40 Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21945, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Is Lipvas 40 Tablet a blood thinner?', 'No, Lipvas 40 Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21946, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Will taking Lipvas 40 Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipvas 40 Tablet may increase this risk slightly. This is because Lipvas 40 Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21947, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'For how long do I need to take Lipvas 40 Tablet? Is it safe for long-term use?', 'You may need to take Lipvas 40 Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipvas 40 Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21948, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Does Lipvas 40 Tablet cause weight loss?', 'No, Lipvas 40 Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipvas 40 Tablet.'),
(21949, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Can I stop taking Lipvas 40 Tablet?', 'No, you should not stop taking Lipvas 40 Tablet without consulting your doctor. If you think that Lipvas 40 Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21950, 'Lipvas 40 Tablet', 'Cipla Ltd', 'Lipvas 40 Tablet', 'Can I take alcohol with Lipvas 40 Tablet?', 'No, it is not advised to take alcohol with Lipvas 40 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipvas 40 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipvas 40 Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21951, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(21952, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Can Lipvas 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lipvas 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(21953, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Is Lipvas 5mg Tablet used for lowering cholesterol?', 'Lipvas 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lipvas 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lipvas 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(21954, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Can Lipvas 5mg Tablet be prescribed to children?', 'Lipvas 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(21955, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Is Lipvas 5mg Tablet a blood thinner?', 'No, Lipvas 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(21956, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Will taking Lipvas 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lipvas 5mg Tablet may increase this risk slightly. This is because Lipvas 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(21957, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'For how long do I need to take Lipvas 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lipvas 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lipvas 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(21958, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Does Lipvas 5mg Tablet cause weight loss?', 'No, Lipvas 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lipvas 5mg Tablet.'),
(21959, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Can I stop taking Lipvas 5mg Tablet?', 'No, you should not stop taking Lipvas 5mg Tablet without consulting your doctor. If you think that Lipvas 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(21960, 'Lipvas 5mg Tablet', 'Cipla Ltd', 'Lipvas 5mg Tablet', 'Can I take alcohol with Lipvas 5mg Tablet?', 'No, it is not advised to take alcohol with Lipvas 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lipvas 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lipvas 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(21961, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'Can Lipvas ASP 10mg/75mg Capsule affect the liver?', 'Yes, Lipvas ASP 10mg/75mg Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21962, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'What are the recommended storage conditions for Lipvas ASP 10mg/75mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(21963, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'Can the Lipvas ASP 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipvas ASP 10mg/75mg Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21964, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'Will I need to stop Lipvas ASP 10mg/75mg Capsule before surgery or dental procedure?', 'Lipvas ASP 10mg/75mg Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipvas ASP 10mg/75mg Capsule. You should not stop taking Lipvas ASP 10mg/75mg Capsule on your own.'),
(21965, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'What are the lifestyle changes one should adopt while taking Lipvas ASP 10mg/75mg Capsule?', 'Making lifestyle changes can boost your health while taking Lipvas ASP 10mg/75mg Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21966, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'Which painkiller is safe while taking Lipvas ASP 10mg/75mg Capsule?', 'Paracetamol is safe to use while taking Lipvas ASP 10mg/75mg Capsule for reducing pain. Avoid the use of other painkillers while taking Lipvas ASP 10mg/75mg Capsule, as they may increase the risk of bleeding.'),
(21967, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'Which medicines should I avoid while taking Lipvas ASP 10mg/75mg Capsule?', 'Lipvas ASP 10mg/75mg Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipvas ASP 10mg/75mg Capsule before taking any prescription or non-prescription medicine.'),
(21968, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'Can Lipvas ASP 10mg/75mg Capsule affect the liver?', 'Yes, Lipvas ASP 10mg/75mg Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21969, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'What are the recommended storage conditions for Lipvas ASP 10mg/75mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21970, 'Lipvas ASP 10mg/75mg Capsule', 'Cipla Ltd', 'Lipvas ASP 10mg/75mg Capsule', 'Can the Lipvas ASP 10mg/75mg Capsule cause muscle pain?', 'Yes, Lipvas ASP 10mg/75mg Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21971, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'Can Lipvas ASP 20 Capsule affect the liver?', 'Yes, Lipvas ASP 20 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21972, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'What are the recommended storage conditions for Lipvas ASP 20 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21973, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'Can the Lipvas ASP 20 Capsule cause muscle pain?', 'Yes, Lipvas ASP 20 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21974, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'Will I need to stop Lipvas ASP 20 Capsule before surgery or dental procedure?', 'Lipvas ASP 20 Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you maybe asked by your doctor to stop taking Lipvas ASP 20 Capsule. You should not stop taking Lipvas ASP 20 Capsule on your own.'),
(21975, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'What are the lifestyle changes one should adopt while taking Lipvas ASP 20 Capsule?', 'Making lifestyle changes can boost your health while taking Lipvas ASP 20 Capsule. Avoid smoking as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetable in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21976, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'Which painkiller is safe while taking Lipvas ASP 20 Capsule?', 'Paracetamol is safe to use while taking Lipvas ASP 20 Capsule for reducing pain. Avoid the use of other painkillers while taking Lipvas ASP 20 Capsule, as they may increase the risk of bleeding.'),
(21977, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'Which medicines should I avoid while taking Lipvas ASP 20 Capsule?', 'Lipvas ASP 20 Capsule can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lipvas ASP 20 Capsule before taking any prescription or non-prescription medicine.'),
(21978, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'Can Lipvas ASP 20 Capsule affect the liver?', 'Yes, Lipvas ASP 20 Capsule may cause liver damage and should be used with caution in patients who consume substantial quantities of alcohol or have a past history of liver disease.'),
(21979, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'What are the recommended storage conditions for Lipvas ASP 20 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21980, 'Lipvas ASP 20 Capsule', 'Cipla Ltd', 'Lipvas ASP 20 Capsule', 'Can the Lipvas ASP 20 Capsule cause muscle pain?', 'Yes, Lipvas ASP 20 Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(21981, 'Lipvas F 10mg/160mg Tablet', 'Cipla Ltd', 'Lipvas F 10mg/160mg Tablet', 'Can Lipvas F 10mg/160mg Tablet cause liver damage?', 'Lipvas F 10mg/160mg Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(21982, 'Lipvas F 10mg/160mg Tablet', 'Cipla Ltd', 'Lipvas F 10mg/160mg Tablet', 'Can Lipvas F 10mg/160mg Tablet cause muscle pain?', 'Yes, Lipvas F 10mg/160mg Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lipvas F 10mg/160mg Tablet.'),
(21983, 'Lipvas F 10mg/160mg Tablet', 'Cipla Ltd', 'Lipvas F 10mg/160mg Tablet', 'What lifestyle changes should be adopted while taking Lipvas F 10mg/160mg Tablet?', 'Making lifestyle changes can boost your health while taking Lipvas F 10mg/160mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(21984, 'Lipvas F 10mg/160mg Tablet', 'Cipla Ltd', 'Lipvas F 10mg/160mg Tablet', 'What medicines should I avoid while taking Lipvas F 10mg/160mg Tablet?', 'The use of Lipvas F 10mg/160mg Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lipvas F 10mg/160mg Tablet.'),
(21985, 'Lipvas Gold 10 Capsule', 'Cipla Ltd', 'Lipvas Gold 10 Capsule', 'What is Lipvas Gold 10 Capsule?', 'Lipvas Gold 10 Capsule is a combination of three medicines: Aspirin / Acetylsalicylic acid, Atorvastatin and Clopidogrel. Aspirin and Clopidogrel are antiplatelet medicines. They work by preventing the platelets from sticking together and decrease the formation of harmful blood clots. On the other hand, Atorvastatin is a lipid-lowering medicine that blocks an enzyme which makes cholesterol in the body. It lowers the \'__\'bad\'__\' cholesterol (LDL), triglycerides and raises the \'__\'good\'__\' cholesterol (HDL).'),
(21986, 'Lipvas Gold 10 Capsule', 'Cipla Ltd', 'Lipvas Gold 10 Capsule', 'Can the use of Lipvas Gold 10 Capsule cause dizziness?', 'Yes, the use of Lipvas Gold 10 Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(21987, 'Lipvas Gold 10 Capsule', 'Cipla Ltd', 'Lipvas Gold 10 Capsule', 'Can the use of Lipvas Gold 10 Capsule cause nausea and vomiting?', 'Yes, the use of Lipvas Gold 10 Capsule can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(21988, 'Lipvas Gold 10 Capsule', 'Cipla Ltd', 'Lipvas Gold 10 Capsule', 'What is the recommended storage condition for the Lipvas Gold 10 Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(21989, 'Liquibile 150 Tablet DT', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 150 Tablet DT', 'When should I take Liquibile 150 Tablet DT?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liquibile 150 Tablet DT should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(21990, 'Liquibile 150 Tablet DT', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 150 Tablet DT', 'Is Liquibile 150 Tablet DT safe?', 'Liquibile 150 Tablet DT is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(21991, 'Liquibile 150 Tablet DT', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 150 Tablet DT', 'How does Liquibile 150 Tablet DT help the liver?', 'Liquibile 150 Tablet DT acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(21992, 'Liquibile 150 Tablet DT', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 150 Tablet DT', 'Does Liquibile 150 Tablet DT cause weight gain?', 'Yes, there is a chance of weight gain with Liquibile 150 Tablet DT, but it is not common. The use of Liquibile 150 Tablet DT can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(21993, 'Liquibile 150 Tablet DT', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 150 Tablet DT', 'What should I avoid while taking Liquibile 150 Tablet DT?', 'While taking Liquibile 150 Tablet DT, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liquibile 150 Tablet DT. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liquibile 150 Tablet DT. So, ask your doctor about the time gap that should be maintained between Liquibile 150 Tablet DT and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liquibile 150 Tablet DT.'),
(21994, 'Liquibile 300mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 300mg Tablet', 'When should I take Liquibile 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liquibile 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(21995, 'Liquibile 300mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 300mg Tablet', 'Is Liquibile 300mg Tablet safe?', 'Liquibile 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(21996, 'Liquibile 300mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 300mg Tablet', 'How does Liquibile 300mg Tablet help the liver?', 'Liquibile 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(21997, 'Liquibile 300mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 300mg Tablet', 'Does Liquibile 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liquibile 300mg Tablet, but it is not common. The use of Liquibile 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(21998, 'Liquibile 300mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile 300mg Tablet', 'What should I avoid while taking Liquibile 300mg Tablet?', 'While taking Liquibile 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liquibile 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liquibile 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Liquibile 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liquibile 300mg Tablet.'),
(21999, 'Liquibile Junior 75mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile Junior 75mg Tablet', 'When should I take Liquibile Junior 75mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liquibile Junior 75mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(22000, 'Liquibile Junior 75mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile Junior 75mg Tablet', 'Is Liquibile Junior 75mg Tablet safe?', 'Liquibile Junior 75mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(22001, 'Liquibile Junior 75mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile Junior 75mg Tablet', 'How does Liquibile Junior 75mg Tablet help the liver?', 'Liquibile Junior 75mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(22002, 'Liquibile Junior 75mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile Junior 75mg Tablet', 'Does Liquibile Junior 75mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liquibile Junior 75mg Tablet, but it is not common. The use of Liquibile Junior 75mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(22003, 'Liquibile Junior 75mg Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquibile Junior 75mg Tablet', 'What should I avoid while taking Liquibile Junior 75mg Tablet?', 'While taking Liquibile Junior 75mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liquibile Junior 75mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liquibile Junior 75mg Tablet. So, ask your doctor about the time gap that should be maintained between Liquibile Junior 75mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liquibile Junior 75mg Tablet.'),
(22004, 'Liquible 150DT Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 150DT Tablet', 'When should I take Liquible 150DT Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liquible 150DT Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(22005, 'Liquible 150DT Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 150DT Tablet', 'Is Liquible 150DT Tablet safe?', 'Liquible 150DT Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(22006, 'Liquible 150DT Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 150DT Tablet', 'How does Liquible 150DT Tablet help the liver?', 'Liquible 150DT Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(22007, 'Liquible 150DT Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 150DT Tablet', 'Does Liquible 150DT Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liquible 150DT Tablet, but it is not common. The use of Liquible 150DT Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(22008, 'Liquible 150DT Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 150DT Tablet', 'What should I avoid while taking Liquible 150DT Tablet?', 'While taking Liquible 150DT Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liquible 150DT Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liquible 150DT Tablet. So, ask your doctor about the time gap that should be maintained between Liquible 150DT Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liquible 150DT Tablet.'),
(22009, 'Liquible 300 Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 300 Tablet', 'When should I take Liquible 300 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liquible 300 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(22010, 'Liquible 300 Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 300 Tablet', 'Is Liquible 300 Tablet safe?', 'Liquible 300 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(22011, 'Liquible 300 Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 300 Tablet', 'How does Liquible 300 Tablet help the liver?', 'Liquible 300 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(22012, 'Liquible 300 Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 300 Tablet', 'Does Liquible 300 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liquible 300 Tablet, but it is not common. The use of Liquible 300 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(22013, 'Liquible 300 Tablet', 'Mackenzie Pharmaceuticals Pvt Ltd', 'Liquible 300 Tablet', 'What should I avoid while taking Liquible 300 Tablet?', 'While taking Liquible 300 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liquible 300 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liquible 300 Tablet. So, ask your doctor about the time gap that should be maintained between Liquible 300 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liquible 300 Tablet.'),
(22014, 'Liquidix 75mg Tablet SR', 'Novartis India Ltd', 'Liquidix 75mg Tablet SR', 'Is Liquidix 75mg Tablet SR good for dry cough?', 'No. Liquidix 75mg Tablet SR is more effective in the treatment of productive cough associated with thickened mucus and poor mucus clearance'),
(22015, 'Liquidix 75mg Tablet SR', 'Novartis India Ltd', 'Liquidix 75mg Tablet SR', 'Does Liquidix 75mg Tablet SR make you sleepy?', 'No, Liquidix 75mg Tablet SR is not known to make you sleepy.'),
(22016, 'Liquimax Cream', 'Epsilon Biotech', 'Liquimax Cream', 'Is Liquimax Cream safe in pregnancy?', 'Liquimax Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Liquimax Cream.'),
(22017, 'Liquimax Cream', 'Epsilon Biotech', 'Liquimax Cream', 'Is Liquimax Cream fungicidal or Fungistatic?', 'Liquimax Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(22018, 'Liquimax Cream', 'Epsilon Biotech', 'Liquimax Cream', 'How to use Liquimax Cream?', 'Use Liquimax Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(22019, 'Liquimax Cream', 'Epsilon Biotech', 'Liquimax Cream', 'How long does it take for Liquimax Cream to work?', 'For different ailments, Liquimax Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(22020, 'Liquimax Cream', 'Epsilon Biotech', 'Liquimax Cream', 'How should I store Liquimax Cream?', 'Keep Liquimax Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(22021, 'Liquimax Cream', 'Epsilon Biotech', 'Liquimax Cream', 'Is Liquimax Cream safe to use in children?', 'Yes, Liquimax Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(22022, 'Liquiril Expectorant', 'Shivani Healthcare', 'Liquiril Expectorant', 'Will Liquiril Expectorant be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(22023, 'Liquiril Expectorant', 'Shivani Healthcare', 'Liquiril Expectorant', 'What are the instructions for storage and disposal of Liquiril Expectorant?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22024, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'What is Lira D 30mg/20mg Capsule SR?', 'Lira D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(22025, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'What are the contraindications of Lira D 30mg/20mg Capsule SR?', 'The use of Lira D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(22026, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'Can the use of Lira D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Lira D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(22027, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'Can the use of Lira D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Lira D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(22028, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Lira D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22029, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'Is it safe to use Lira D 30mg/20mg Capsule SR?', 'Yes, Lira D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(22030, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'What is the best time to take Lira D 30mg/20mg Capsule SR?', 'It is best to take Lira D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(22031, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'Can the use of Lira D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Lira D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(22032, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'What is Lira D 30mg/20mg Capsule SR?', 'Lira D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(22033, 'Lira D 30mg/20mg Capsule SR', 'Lincoln Pharmaceuticals Ltd', 'Lira D 30mg/20mg Capsule SR', 'What are the contraindications of Lira D 30mg/20mg Capsule SR?', 'The use of Lira D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(22034, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'Can the use of Liracetam 100mg Oral Solution cause sleepiness?', 'Yes, Liracetam 100mg Oral Solution can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22035, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'Will the use of Liracetam 100mg Oral Solution affect my fertility?', 'Liracetam 100mg Oral Solution is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22036, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'I have gained weight since I started taking Liracetam 100mg Oral Solution. Is it because of Liracetam 100mg Oral Solution? What should I do?', 'Weight gain is an uncommon side effect of Liracetam 100mg Oral Solution. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22037, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'How long does Liracetam 100mg Oral Solution take to show its effect?', 'Liracetam 100mg Oral Solution may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Liracetam 100mg Oral Solution starts working completely.'),
(22038, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'For how long do I need to take Liracetam 100mg Oral Solution?', 'You should continue to take Liracetam 100mg Oral Solution for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22039, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'Will I get addicted to Liracetam 100mg Oral Solution if I use it for a long time?', 'No, Liracetam 100mg Oral Solution is not habit-forming. No physical or psychological dependence has been reported with Liracetam 100mg Oral Solution. Consult your doctor if you experience any side effects.'),
(22040, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'What symptoms can occur if someone takes an excess of Liracetam 100mg Oral Solution?', 'Taking an excess of Liracetam 100mg Oral Solution may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22041, 'Liracetam 100mg Oral Solution', 'Venus Remedies Ltd', 'Liracetam 100mg Oral Solution', 'How do I come off Liracetam 100mg Oral Solution?', 'The dose of Liracetam 100mg Oral Solution should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Liracetam 100mg Oral Solution straight away, even if you have epilepsy.'),
(22042, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'Can the use of Liracetam 500mg Tablet cause sleepiness?', 'Yes, Liracetam 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22043, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'Will the use of Liracetam 500mg Tablet affect my fertility?', 'Liracetam 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22044, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'I have gained weight since I started taking Liracetam 500mg Tablet. Is it because of Liracetam 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Liracetam 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22045, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'How long does Liracetam 500mg Tablet take to show its effect?', 'Liracetam 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Liracetam 500mg Tablet starts working completely.'),
(22046, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'For how long do I need to take Liracetam 500mg Tablet?', 'You should continue to take Liracetam 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22047, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'Will I get addicted to Liracetam 500mg Tablet if I use it for a long time?', 'No, Liracetam 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Liracetam 500mg Tablet. Consult your doctor if you experience any side effects.'),
(22048, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'What symptoms can occur if someone takes an excess of Liracetam 500mg Tablet?', 'Taking an excess of Liracetam 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22049, 'Liracetam 500mg Tablet', 'Venus Remedies Ltd', 'Liracetam 500mg Tablet', 'How do I come off Liracetam 500mg Tablet?', 'The dose of Liracetam 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Liracetam 500mg Tablet straight away, even if you have epilepsy.'),
(22050, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'Can the use of Liracetam 750mg Tablet cause sleepiness?', 'Yes, Liracetam 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22051, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'Will the use of Liracetam 750mg Tablet affect my fertility?', 'Liracetam 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22052, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'I have gained weight since I started taking Liracetam 750mg Tablet. Is it because of Liracetam 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Liracetam 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22053, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'How long does Liracetam 750mg Tablet take to show its effect?', 'Liracetam 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Liracetam 750mg Tablet starts working completely.'),
(22054, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'For how long do I need to take Liracetam 750mg Tablet?', 'You should continue to take Liracetam 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22055, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'Will I get addicted to Liracetam 750mg Tablet if I use it for a long time?', 'No, Liracetam 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Liracetam 750mg Tablet. Consult your doctor if you experience any side effects.'),
(22056, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'What symptoms can occur if someone takes an excess of Liracetam 750mg Tablet?', 'Taking an excess of Liracetam 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22057, 'Liracetam 750mg Tablet', 'Venus Remedies Ltd', 'Liracetam 750mg Tablet', 'How do I come off Liracetam 750mg Tablet?', 'The dose of Liracetam 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Liracetam 750mg Tablet straight away, even if you have epilepsy.'),
(22058, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'Is it better to take Lirafit Solution for Injection in the morning or at night?', 'It is advised to take Lirafit Solution for Injection once daily at any time of the day, but preferably at the same time each day. Lirafit Solution for Injection comes as a solution (liquid) in a prefilled dosing pen to inject subcutaneously (under the skin) in your stomach, thigh, or upper arm.'),
(22059, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'What things need to be checked before injecting Lirafit Solution for Injection? How should I inject Lirafit Solution for Injection?', 'Always look at the Lirafit Solution for Injection solution before injecting it. It should be clear, colorless, and free of particles. Do not use Lirafit Solution for Injection if it is colored, cloudy, thickened, or contains solid particles, or expired. You should inject it below the skin (subcutaneously) and not in vein or muscle. It is important to learn the technique before injecting it yourself.'),
(22060, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'What are the other uses of Lirafit Solution for Injection?', 'Lirafit Solution for Injection is used along with diet and exercise program to control blood sugar levels in patients with type 2 diabetes mellitus. It is also used to prevent heart attack, stroke or death in adults with type 2 diabetes mellitus, and heart and blood vessel disease.'),
(22061, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'Can I use other anti-diabetic medicines along with Lirafit Solution for Injection?', 'Yes, you can use other anti-diabetic medicines but the dose needs to be adjusted. Do not mix other insulins with Lirafit Solution for Injection. It is important to know that, other medicines which have similar mechanism of action should not be used like exenatide or lixisenatide with Lirafit Solution for Injection.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22062, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'Can Lirafit Solution for Injection be used for weight loss?', 'Yes, Lirafit Solution for Injection may be used as an add on therapy for weight loss. It may be used along with reduced calorie intake and exercise program for management of weight of obese or overweight patients. However, Lirafit Solution for Injection is approved for the management of patients with type 2 diabetes.'),
(22063, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'What if I forget to inject a dose?', 'If you forget to inject a dose, immediately inject the forgotten dose. But, if it is almost time for your next dose, skip the forgotten dose and continue with your next dose. Remember not to double the dose.'),
(22064, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'What is the most important information I should know about Lirafit Solution for Injection?', 'You should be aware that Lirafit Solution for Injection may cause serious side effects such as thyroid tumors. Therefore, this medicine is not recommended in patients with personal or family history of thyroid tumors. Immediately inform your doctor if you notice a lump in the neck, hoarseness (abnormal voice change), trouble swallowing, or shortness of breath.'),
(22065, 'Lirafit Solution for Injection', 'Glenmark Pharmaceuticals Ltd', 'Lirafit Solution for Injection', 'What are the serious side effects of Lirafit Solution for Injection?', 'The serious side effects of Lirafit Solution for Injection include inflammation (swelling and pain) of pancreas (pancreatitis), severe allergic reactions, low blood sugar levels (hypoglycemia), kidney failure, and gall bladder problems.'),
(22066, 'Liralin Tablet', 'USV Ltd', 'Liralin Tablet', 'What is Liralin Tablet used for?', 'Liralin Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Liralin Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Liralin Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(22067, 'Liralin Tablet', 'USV Ltd', 'Liralin Tablet', 'When should I take Liralin Tablet? What if I miss a dose?', 'Liralin Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(22068, 'Liralin Tablet', 'USV Ltd', 'Liralin Tablet', 'Is Liralin Tablet bad for kidneys?', 'No, there is no evidence that Liralin Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(22069, 'Liralin Tablet', 'USV Ltd', 'Liralin Tablet', 'Is Liralin Tablet safe to be taken for a long time?', 'Yes, it is safe to take Liralin Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(22070, 'Liralin Tablet', 'USV Ltd', 'Liralin Tablet', 'For how long I have to take Liralin Tablet? Can I stop the medication?', 'You should keep taking Liralin Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(22071, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'Can the use of Liratam 500 Tablet cause sleepiness?', 'Yes, Liratam 500 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22072, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'Will the use of Liratam 500 Tablet affect my fertility?', 'Liratam 500 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22073, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'I have gained weight since I started taking Liratam 500 Tablet. Is it because of Liratam 500 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Liratam 500 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22074, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'How long does Liratam 500 Tablet take to show its effect?', 'Liratam 500 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Liratam 500 Tablet starts working completely.'),
(22075, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'For how long do I need to take Liratam 500 Tablet?', 'You should continue to take Liratam 500 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22076, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'Will I get addicted to Liratam 500 Tablet if I use it for a long time?', 'No, Liratam 500 Tablet is not habit-forming. No physical or psychological dependence has been reported with Liratam 500 Tablet. Consult your doctor if you experience any side effects.'),
(22077, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'What symptoms can occur if someone takes an excess of Liratam 500 Tablet?', 'Taking an excess of Liratam 500 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22078, 'Liratam 500 Tablet', 'H & I Critical Care', 'Liratam 500 Tablet', 'How do I come off Liratam 500 Tablet?', 'The dose of Liratam 500 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Liratam 500 Tablet straight away, even if you have epilepsy.'),
(22079, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'Will the use of Liratam Injection affect my fertility?', 'Liratam Injection is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22080, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'Can the use of Liratam Injection cause sleepiness?', 'Yes, Liratam Injection can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22081, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'I have gained weight since I started taking Liratam Injection. Is it because of Liratam Injection? What should I do?', 'Weight gain is an uncommon side effect of Liratam Injection. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22082, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'How long does Liratam Injection take to show its effect?', 'Liratam Injection may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Liratam Injection starts working completely.'),
(22083, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'For how long do I need to take Liratam Injection?', 'You should continue to take Liratam Injection for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22084, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'Can I drink alcohol with Liratam Injection?', 'Yes, you may drink alcohol while taking Liratam Injection. Alcohol itself does not affect the way Liratam Injection works. However, alcohol can increase the sleepiness or dizziness that occur as side effects of Liratam Injection in some individuals. Therefore, you should avoid alcohol while taking Liratam Injection until you know how it affects you.'),
(22085, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'Will I get addicted to Liratam Injection if I use it for a long time?', 'No, Liratam Injection is not habit-forming. No physical or psychological dependence has been reported with Liratam Injection. Consult your doctor if you experience any side effects.'),
(22086, 'Liratam Injection', 'H & I Critical Care', 'Liratam Injection', 'What symptoms can occur if someone takes an excess of Liratam Injection?', 'Taking an excess of Liratam Injection may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22087, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'Can the use of Lircetam 250mg Tablet cause sleepiness?', 'Yes, Lircetam 250mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22088, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'Will the use of Lircetam 250mg Tablet affect my fertility?', 'Lircetam 250mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22089, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'I have gained weight since I started taking Lircetam 250mg Tablet. Is it because of Lircetam 250mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Lircetam 250mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22090, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'How long does Lircetam 250mg Tablet take to show its effect?', 'Lircetam 250mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Lircetam 250mg Tablet starts working completely.'),
(22091, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'For how long do I need to take Lircetam 250mg Tablet?', 'You should continue to take Lircetam 250mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22092, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'Will I get addicted to Lircetam 250mg Tablet if I use it for a long time?', 'No, Lircetam 250mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Lircetam 250mg Tablet. Consult your doctor if you experience any side effects.'),
(22093, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'What symptoms can occur if someone takes an excess of Lircetam 250mg Tablet?', 'Taking an excess of Lircetam 250mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22094, 'Lircetam 250mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 250mg Tablet', 'How do I come off Lircetam 250mg Tablet?', 'The dose of Lircetam 250mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Lircetam 250mg Tablet straight away, even if you have epilepsy.'),
(22095, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'Can the use of Lircetam 500 Tablet cause sleepiness?', 'Yes, Lircetam 500 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22096, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'Will the use of Lircetam 500 Tablet affect my fertility?', 'Lircetam 500 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22097, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'I have gained weight since I started taking Lircetam 500 Tablet. Is it because of Lircetam 500 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Lircetam 500 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22098, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'How long does Lircetam 500 Tablet take to show its effect?', 'Lircetam 500 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Lircetam 500 Tablet starts working completely.'),
(22099, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'For how long do I need to take Lircetam 500 Tablet?', 'You should continue to take Lircetam 500 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22100, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'Will I get addicted to Lircetam 500 Tablet if I use it for a long time?', 'No, Lircetam 500 Tablet is not habit-forming. No physical or psychological dependence has been reported with Lircetam 500 Tablet. Consult your doctor if you experience any side effects.'),
(22101, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'What symptoms can occur if someone takes an excess of Lircetam 500 Tablet?', 'Taking an excess of Lircetam 500 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22102, 'Lircetam 500 Tablet', 'Leeford Healthcare Ltd', 'Lircetam 500 Tablet', 'How do I come off Lircetam 500 Tablet?', 'The dose of Lircetam 500 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Lircetam 500 Tablet straight away, even if you have epilepsy.'),
(22103, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'Can the use of Lircetam 750mg Tablet cause sleepiness?', 'Yes, Lircetam 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22104, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'Will the use of Lircetam 750mg Tablet affect my fertility?', 'Lircetam 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22105, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'I have gained weight since I started taking Lircetam 750mg Tablet. Is it because of Lircetam 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Lircetam 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22106, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'How long does Lircetam 750mg Tablet take to show its effect?', 'Lircetam 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Lircetam 750mg Tablet starts working completely.'),
(22107, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'For how long do I need to take Lircetam 750mg Tablet?', 'You should continue to take Lircetam 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22108, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'Will I get addicted to Lircetam 750mg Tablet if I use it for a long time?', 'No, Lircetam 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Lircetam 750mg Tablet. Consult your doctor if you experience any side effects.'),
(22109, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'What symptoms can occur if someone takes an excess of Lircetam 750mg Tablet?', 'Taking an excess of Lircetam 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22110, 'Lircetam 750mg Tablet', 'Leeford Healthcare Ltd', 'Lircetam 750mg Tablet', 'How do I come off Lircetam 750mg Tablet?', 'The dose of Lircetam 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Lircetam 750mg Tablet straight away, even if you have epilepsy.'),
(22111, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'Can the use of Lircetam Oral Solution cause sleepiness?', 'Yes, Lircetam Oral Solution can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(22112, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'Will the use of Lircetam Oral Solution affect my fertility?', 'Lircetam Oral Solution is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(22113, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'I have gained weight since I started taking Lircetam Oral Solution. Is it because of Lircetam Oral Solution? What should I do?', 'Weight gain is an uncommon side effect of Lircetam Oral Solution. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(22114, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'How long does Lircetam Oral Solution take to show its effect?', 'Lircetam Oral Solution may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Lircetam Oral Solution starts working completely.'),
(22115, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'For how long do I need to take Lircetam Oral Solution?', 'You should continue to take Lircetam Oral Solution for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(22116, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'Will I get addicted to Lircetam Oral Solution if I use it for a long time?', 'No, Lircetam Oral Solution is not habit-forming. No physical or psychological dependence has been reported with Lircetam Oral Solution. Consult your doctor if you experience any side effects.'),
(22117, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'What symptoms can occur if someone takes an excess of Lircetam Oral Solution?', 'Taking an excess of Lircetam Oral Solution may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(22118, 'Lircetam Oral Solution', 'Leeford Healthcare Ltd', 'Lircetam Oral Solution', 'How do I come off Lircetam Oral Solution?', 'The dose of Lircetam Oral Solution should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Lircetam Oral Solution straight away, even if you have epilepsy.'),
(22119, 'Lirifax 400 Tablet', 'Medisa Medilife', 'Lirifax 400 Tablet', 'Should I take Lirifax 400 Tablet with food?', 'Yes, Lirifax 400 Tablet can be taken orally with or without food with a glass of water. Take it as prescribed by your doctor for the exact period of time.'),
(22120, 'Lirifax 400 Tablet', 'Medisa Medilife', 'Lirifax 400 Tablet', 'What does Lirifax 400 Tablet do for the liver?', 'In liver disease, there is an increased growth of bacteria in the intestine which increases the load of toxins travelling through the body. This further increases the possibility of toxins reaching the brain which can cause abnormal brain function. Lirifax 400 Tablet slows down the growth of bacteria in the gut, decreasing the symptoms in cases of liver disease.'),
(22121, 'Lirifax 400 Tablet', 'Medisa Medilife', 'Lirifax 400 Tablet', 'Can Lirifax 400 Tablet cause weight gain?', 'Usually Lirifax 400 Tablet does not cause weight gain. However, in case you feel there is an increase in weight, you should consult your doctor to determine the reason of weight gain.'),
(22122, 'Lirinox 250mg/250mg Capsule', 'Alpha Drugs & Pharmaceuticals', 'Lirinox 250mg/250mg Capsule', 'How long does Lirinox 250mg/250mg Capsule takes to work?', 'Usually, Lirinox 250mg/250mg Capsule starts working soon after using it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(22123, 'Lirinox 250mg/250mg Capsule', 'Alpha Drugs & Pharmaceuticals', 'Lirinox 250mg/250mg Capsule', 'Can I stop taking Lirinox 250mg/250mg Capsule when I feel better?', 'No, do not stop taking Lirinox 250mg/250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(22124, 'Lirinox 250mg/250mg Capsule', 'Alpha Drugs & Pharmaceuticals', 'Lirinox 250mg/250mg Capsule', 'What is Lirinox 250mg/250mg Capsule used for?', 'Lirinox 250mg/250mg Capsule is used to treat patients with bacterial infections. It is a semi-synthetic derivative of the drug penicillin. It is used to treat urinary tract and respiratory tract infections, meningitis, gonorrhea and infections of the stomach or intestine.'),
(22125, 'Lirinox 250mg/250mg Capsule', 'Alpha Drugs & Pharmaceuticals', 'Lirinox 250mg/250mg Capsule', 'Which medicines should be avoided while taking Lirinox 250mg/250mg Capsule?', 'Lirinox 250mg/250mg Capsule should be avoided with methotrexate which is used to treat rheumatoid arthritis, psoriasis and some forms of cancer. This is because combining the two medications can cause some serious side effects.'),
(22126, 'Lirium 10 Tablet', 'Quintus Lifesciences Pvt Ltd', 'Lirium 10 Tablet', 'Does Lirium 10 Tablet work and what does Lirium 10 Tablet treat?', 'Lirium 10 Tablet is used for the short-term (2-4 weeks only) treatment of severe anxiety, which may occur alone or in association with sleeping problems (insomnia) or personality/behavioral disorders. It may also be used to treat muscle spasms, and to relieve alcohol withdrawal symptoms'),
(22127, 'Lirium 10 Tablet', 'Quintus Lifesciences Pvt Ltd', 'Lirium 10 Tablet', 'Is Lirium 10 Tablet addictive?', 'Yes. Lirium 10 Tablet is not recommended for long term use as it may increase the risk of dependence'),
(22128, 'Lirium 10 Tablet', 'Quintus Lifesciences Pvt Ltd', 'Lirium 10 Tablet', 'Is Lirium 10 Tablet stronger than Xanax?', 'Xanax is a trade name for active drug alprazolam which belongs to the same group of medicines as Lirium 10 Tablet called benzodiazepines. Lirium 10 Tablet used to treat anxiety disorders, alcohol withdrawal symptoms, or muscle spasms. Xanax (alprazolam) is used to treat severe anxiety and severe anxiety associated with depression'),
(22129, 'Lirium 10 Tablet', 'Quintus Lifesciences Pvt Ltd', 'Lirium 10 Tablet', 'Can I take ibuprofen with chlordiazepoxide?', 'Chlordiazepoxide has no known harmful interaction with ibuprofen. Always consult your physician for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(22130, 'Lirium 10 Tablet', 'Quintus Lifesciences Pvt Ltd', 'Lirium 10 Tablet', 'Does Lirium 10 Tablet make you sleepy?', 'Yes, Lirium 10 Tablet may make you sleepy'),
(22131, 'Lirium 10 Tablet', 'Quintus Lifesciences Pvt Ltd', 'Lirium 10 Tablet', 'Does Lirium 10 Tablet get you high?', 'Lirium 10 Tablet does have the risk of causing dependence on long term use due to the calming effects, which may be described by some as ‘getting high'),
(22132, 'Lirizine M Tablet', 'Shrion Pharmaceuticals', 'Lirizine M Tablet', 'What is Lirizine M Tablet?', 'Lirizine M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(22133, 'Lirizine M Tablet', 'Shrion Pharmaceuticals', 'Lirizine M Tablet', 'Can the use of Lirizine M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lirizine M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(22134, 'Lirizine M Tablet', 'Shrion Pharmaceuticals', 'Lirizine M Tablet', 'Can Lirizine M Tablet be stopped when allergy symptoms are relieved?', 'No, Lirizine M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(22135, 'Lirizine M Tablet', 'Shrion Pharmaceuticals', 'Lirizine M Tablet', 'Can the use of Lirizine M Tablet cause dry mouth?', 'Yes, the use of Lirizine M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(22136, 'Lirizine M Tablet', 'Shrion Pharmaceuticals', 'Lirizine M Tablet', 'Can I drink alcohol while taking Lirizine M Tablet?', 'No, do not take alcohol while taking Lirizine M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lirizine M Tablet.'),
(22137, 'Lirizine M Tablet', 'Shrion Pharmaceuticals', 'Lirizine M Tablet', 'Will Lirizine M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lirizine M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(22138, 'Lirizine M Tablet', 'Shrion Pharmaceuticals', 'Lirizine M Tablet', 'What are the instructions for storage and disposal of Lirizine M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(22139, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'For how long should I take Lirostzen 10 Tablet?', 'You may need to take Lirostzen 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lirostzen 10 Tablet. Stopping Lirostzen 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(22140, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'Does Lirostzen 10 Tablet cause weight gain?', 'No, there is no evidence of Lirostzen 10 Tablet causing weight gain. If you are taking Lirostzen 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(22141, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'Does Lirostzen 10 Tablet make you tired?', 'Yes, Lirostzen 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lirostzen 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lirostzen 10 Tablet.'),
(22142, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'Should Lirostzen 10 Tablet be taken at night?', 'Lirostzen 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(22143, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'What foods should be avoided when taking Lirostzen 10 Tablet?', 'Lirostzen 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(22144, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'How do I know whether Lirostzen 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lirostzen 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lirostzen 10 Tablet versus the risks of not taking it at all.'),
(22145, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'Can Lirostzen 10 Tablet cause memory loss?', 'Lirostzen 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lirostzen 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(22146, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'Can Lirostzen 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lirostzen 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(22147, 'Lirostzen 10 Tablet', 'Zeno Healthcare', 'Lirostzen 10 Tablet', 'Is it true that Lirostzen 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lirostzen 10 Tablet may slightly increase this risk. This is because Lirostzen 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(22148, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'Is Lirox 150mg Tablet safe?', 'Lirox 150mg Tablet is safe if taken for prescribed duration in prescribed doses as advised by your doctor.'),
(22149, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'Does Lirox 150mg Tablet treat urinary tract infections (UTI)?', 'Lirox 150mg Tablet can be used to treat lower urinary tract infections i.e. infections of the urinary bladder and urethra. However, please consult a doctor before taking any antibiotics for your condition as it is important to diagnose the infection before starting antibiotics.'),
(22150, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'Can the use of Lirox 150mg Tablet cause diarrhea?', 'Yes, the use of Lirox 150mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(22151, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'How long does Lirox 150mg Tablet takes to work?', 'Usually, Lirox 150mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(22152, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'What if I don\'t get better after using Lirox 150mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(22153, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'Can I stop taking Lirox 150mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lirox 150mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(22154, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'Can the use of Lirox 150mg Tablet cause infertility?', 'There is no firm evidence to suggest that the use of Lirox 150mg Tablet will cause infertility in males or females.'),
(22155, 'Lirox 150mg Tablet', 'Arlak Biotech Pvt Ltd', 'Lirox 150mg Tablet', 'Is Lirox 150mg Tablet an antibiotic?', 'Lirox 150mg Tablet is an antibiotic and belongs to the group of antibiotics known as macrolides. Lirox 150mg Tablet prevents bacteria from growing, by interfering with their protein synthesis.'),
(22156, 'Lirox Powder Delicious Orange Sugar Free', 'Hind Bioscience', 'Lirox Powder Delicious Orange Sugar Free', 'How to take Lirox Powder Delicious Orange Sugar Free?', 'Take Lirox Powder Delicious Orange Sugar Free exactly as your doctor tells you to, or as directed on the pack. Pour a scoop of granules (15g) into a glass of water (about 150 ml), stir well, and then drink the liquid as soon as possible.'),
(22157, 'Lirox Powder Delicious Orange Sugar Free', 'Hind Bioscience', 'Lirox Powder Delicious Orange Sugar Free', 'Are there any specific contraindications associated with the use of Lirox Powder Delicious Orange Sugar Free?', 'The use of Lirox Powder Delicious Orange Sugar Free is considered to harmful for patients with known allergy to any of its components or excipients. Its use should be avoided in patients with chronic constipation or intestinal obstruction.'),
(22158, 'Lirox Powder Delicious Orange Sugar Free', 'Hind Bioscience', 'Lirox Powder Delicious Orange Sugar Free', 'What are the instructions for the storage and disposal of Lirox Powder Delicious Orange Sugar Free?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22159, 'Lirro 5mg Tablet', 'Vancorp Pharmaceuticals Private Limited', 'Lirro 5mg Tablet', 'What is Lirro 5mg Tablet used for?', 'Lirro 5mg Tablet is used for the treatment of allergic conditions causing runny nose, redness and watering of eyes, sneezing and allergic reactions to medicines and food.'),
(22160, 'Lirro 5mg Tablet', 'Vancorp Pharmaceuticals Private Limited', 'Lirro 5mg Tablet', 'What should I know before using Lirro 5mg Tablet?', 'Before using Lirro 5mg Tablet, you should tell your doctor if you are allergic to Lirro 5mg Tablet or any of its ingredients to avoid any allergic reactions. Let your doctor know if you have, or have had any problems with your eyes. Inform your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are pregnant, planning to conceive or breastfeeding to prevent any harmful effects on the baby.'),
(22161, 'Lirro 5mg Tablet', 'Vancorp Pharmaceuticals Private Limited', 'Lirro 5mg Tablet', 'Is Lirro 5mg Tablet safe?', 'Lirro 5mg Tablet is safe if used in the dose and duration as advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22162, 'Lirro 5mg Tablet', 'Vancorp Pharmaceuticals Private Limited', 'Lirro 5mg Tablet', 'How does Lirro 5mg Tablet work?', 'Lirro 5mg Tablet works by blocking the release of a naturally occurring substance in our body known as histamine, that is responsible for producing symptoms of allergies such as runny nose, sneezing and red or watery eyes.'),
(22163, 'Lirro 5mg Tablet', 'Vancorp Pharmaceuticals Private Limited', 'Lirro 5mg Tablet', 'What if I forget to take a dose of Lirro 5mg Tablet?', 'If you have missed a dose of Lirro 5mg Tablet, take it as soon as you remember it. However, if it is almost time for your next dose, take it in the regular schedule instead of taking the missed dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(22164, 'Lirro 5mg Tablet', 'Vancorp Pharmaceuticals Private Limited', 'Lirro 5mg Tablet', 'Is Lirro 5mg Tablet effective?', 'Lirro 5mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lirro 5mg Tablet too early, the symptoms may return or worsen.'),
(22165, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'What is Lis 5mg Tablet? What is it used for?', 'Lis 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22166, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'What should I tell my doctor before taking Lis 5mg Tablet?', 'Before taking Lis 5mg Tablet you must tell your doctor if you are allergic to Lis 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lis 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22167, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'What time of the day should I take Lis 5mg Tablet?', 'Lis 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lis 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lis 5mg Tablet, please consult your doctor.'),
(22168, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'I feel better after taking Lis 5mg Tablet, can I stop taking it?', 'No, continue taking Lis 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lis 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22169, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'Will Lis 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lis 5mg Tablet may make you feel dizzy or lightheaded. If Lis 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22170, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'What other lifestyle changes should I make while taking Lis 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lis 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lis 5mg Tablet and to keep yourself healthy.'),
(22171, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'I have diabetes. Does Lis 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lis 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22172, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'After starting Lis 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lis 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lis 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lis 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22173, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'Can Lis 5mg Tablet affect my fertility?', 'There is no evidence that Lis 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lis 5mg Tablet is not recommended in pregnancy.'),
(22174, 'Lis 5mg Tablet', 'Gloucester Pharma', 'Lis 5mg Tablet', 'Can Lis 5mg Tablet increase potassium levels? If so, what should be done?', 'Lis 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lis 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22175, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'What is Lis Ten 10mg Tablet? What is it used for?', 'Lis Ten 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22176, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'What should I tell my doctor before taking Lis Ten 10mg Tablet?', 'Before taking Lis Ten 10mg Tablet you must tell your doctor if you are allergic to Lis Ten 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lis Ten 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22177, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'What time of the day should I take Lis Ten 10mg Tablet?', 'Lis Ten 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lis Ten 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lis Ten 10mg Tablet, please consult your doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22178, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'I feel better after taking Lis Ten 10mg Tablet, can I stop taking it?', 'No, continue taking Lis Ten 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lis Ten 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22179, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'Will Lis Ten 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lis Ten 10mg Tablet may make you feel dizzy or lightheaded. If Lis Ten 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22180, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'What other lifestyle changes should I make while taking Lis Ten 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lis Ten 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lis Ten 10mg Tablet and to keep yourself healthy.'),
(22181, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'I have diabetes. Does Lis Ten 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lis Ten 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22182, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'After starting Lis Ten 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lis Ten 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lis Ten 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lis Ten 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22183, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'Can Lis Ten 10mg Tablet affect my fertility?', 'There is no evidence that Lis Ten 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lis Ten 10mg Tablet is not recommended in pregnancy.'),
(22184, 'Lis Ten 10mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 10mg Tablet', 'Can Lis Ten 10mg Tablet increase potassium levels? If so, what should be done?', 'Lis Ten 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lis Ten 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22185, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'What is Lis Ten 5mg Tablet? What is it used for?', 'Lis Ten 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22186, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'What should I tell my doctor before taking Lis Ten 5mg Tablet?', 'Before taking Lis Ten 5mg Tablet you must tell your doctor if you are allergic to Lis Ten 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lis Ten 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22187, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'What time of the day should I take Lis Ten 5mg Tablet?', 'Lis Ten 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lis Ten 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lis Ten 5mg Tablet, please consult your doctor.'),
(22188, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'I feel better after taking Lis Ten 5mg Tablet, can I stop taking it?', 'No, continue taking Lis Ten 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lis Ten 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22189, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'Will Lis Ten 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lis Ten 5mg Tablet may make you feel dizzy or lightheaded. If Lis Ten 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22190, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'What other lifestyle changes should I make while taking Lis Ten 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lis Ten 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lis Ten 5mg Tablet and to keep yourself healthy.'),
(22191, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'I have diabetes. Does Lis Ten 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lis Ten 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22192, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'After starting Lis Ten 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lis Ten 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lis Ten 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lis Ten 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22193, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'Can Lis Ten 5mg Tablet affect my fertility?', 'There is no evidence that Lis Ten 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lis Ten 5mg Tablet is not recommended in pregnancy.'),
(22194, 'Lis Ten 5mg Tablet', 'Twilight Mercantiles Ltd', 'Lis Ten 5mg Tablet', 'Can Lis Ten 5mg Tablet increase potassium levels? If so, what should be done?', 'Lis Ten 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lis Ten 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22195, 'Lisa 5mg Tablet', 'Sapiens Labs', 'Lisa 5mg Tablet', 'Is Lisa 5mg Tablet a steroid? What is it used for?', 'No, Lisa 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(22196, 'Lisa 5mg Tablet', 'Sapiens Labs', 'Lisa 5mg Tablet', 'Does Lisa 5mg Tablet make you tired and drowsy?', 'Yes, Lisa 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(22197, 'Lisa 5mg Tablet', 'Sapiens Labs', 'Lisa 5mg Tablet', 'How long does it take for Lisa 5mg Tablet to work?', 'Lisa 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(22198, 'Lisa 5mg Tablet', 'Sapiens Labs', 'Lisa 5mg Tablet', 'Can I take Lisa 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lisa 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(22199, 'Lisa 5mg Tablet', 'Sapiens Labs', 'Lisa 5mg Tablet', 'Is it safe to take Lisa 5mg Tablet for a long time?', 'Lisa 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lisa 5mg Tablet for only as long as you need it.'),
(22200, 'Lisa 5mg Tablet', 'Sapiens Labs', 'Lisa 5mg Tablet', 'For how long should I continue Lisa 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lisa 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lisa 5mg Tablet'),
(22201, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'What is Lisac P 100mg/325mg Tablet?', 'Lisac P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(22202, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Is it safe to use Lisac P 100mg/325mg Tablet?', 'Lisac P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(22203, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Can I stop taking Lisac P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lisac P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(22204, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Can the use of Lisac P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lisac P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(22205, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Can the use of Lisac P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lisac P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(22206, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lisac P 100mg/325mg Tablet?', 'The use of Lisac P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(22207, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Can Lisac P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lisac P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lisac P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(22208, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Is Lisac P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lisac P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(22209, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Can the use of Lisac P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lisac P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(22210, 'Lisac P 100mg/325mg Tablet', 'Lister Life Sciences', 'Lisac P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Lisac P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lisac P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(22211, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'What is Lisace 10mg Tablet? What is it used for?', 'Lisace 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22212, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'What should I tell my doctor before taking Lisace 10mg Tablet?', 'Before taking Lisace 10mg Tablet you must tell your doctor if you are allergic to Lisace 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisace 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22213, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'What time of the day should I take Lisace 10mg Tablet?', 'Lisace 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisace 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisace 10mg Tablet, please consult your doctor.'),
(22214, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'I feel better after taking Lisace 10mg Tablet, can I stop taking it?', 'No, continue taking Lisace 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisace 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22215, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'Will Lisace 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisace 10mg Tablet may make you feel dizzy or lightheaded. If Lisace 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22216, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'What other lifestyle changes should I make while taking Lisace 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisace 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisace 10mg Tablet and to keep yourself healthy.'),
(22217, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'I have diabetes. Does Lisace 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisace 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22218, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'After starting Lisace 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisace 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisace 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisace 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22219, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'Can Lisace 10mg Tablet affect my fertility?', 'There is no evidence that Lisace 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisace 10mg Tablet is not recommended in pregnancy.'),
(22220, 'Lisace 10mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 10mg Tablet', 'Can Lisace 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisace 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisace 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22221, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'What is Lisace 2.5mg Tablet? What is it used for?', 'Lisace 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22222, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'What should I tell my doctor before taking Lisace 2.5mg Tablet?', 'Before taking Lisace 2.5mg Tablet you must tell your doctor if you are allergic to Lisace 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisace 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22223, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'What time of the day should I take Lisace 2.5mg Tablet?', 'Lisace 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisace 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisace 2.5mg Tablet, please consult your doctor.'),
(22224, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'I feel better after taking Lisace 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lisace 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisace 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22225, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'Will Lisace 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisace 2.5mg Tablet may make you feel dizzy or lightheaded. If Lisace 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22226, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lisace 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisace 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisace 2.5mg Tablet and to keep yourself healthy.'),
(22227, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'I have diabetes. Does Lisace 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisace 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22228, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'After starting Lisace 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisace 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisace 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisace 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22229, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'Can Lisace 2.5mg Tablet affect my fertility?', 'There is no evidence that Lisace 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisace 2.5mg Tablet is not recommended in pregnancy.'),
(22230, 'Lisace 2.5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 2.5mg Tablet', 'Can Lisace 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lisace 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisace 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22231, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'What is Lisace 5mg Tablet? What is it used for?', 'Lisace 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22232, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'What should I tell my doctor before taking Lisace 5mg Tablet?', 'Before taking Lisace 5mg Tablet you must tell your doctor if you are allergic to Lisace 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisace 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22233, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'What time of the day should I take Lisace 5mg Tablet?', 'Lisace 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisace 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisace 5mg Tablet, please consult your doctor.'),
(22234, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'I feel better after taking Lisace 5mg Tablet, can I stop taking it?', 'No, continue taking Lisace 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisace 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22235, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'Will Lisace 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisace 5mg Tablet may make you feel dizzy or lightheaded. If Lisace 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22236, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'What other lifestyle changes should I make while taking Lisace 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisace 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisace 5mg Tablet and to keep yourself healthy.'),
(22237, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'I have diabetes. Does Lisace 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisace 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22238, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'After starting Lisace 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisace 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisace 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisace 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22239, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'Can Lisace 5mg Tablet affect my fertility?', 'There is no evidence that Lisace 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisace 5mg Tablet is not recommended in pregnancy.'),
(22240, 'Lisace 5mg Tablet', 'Anglo-French Drugs & Industries Ltd', 'Lisace 5mg Tablet', 'Can Lisace 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisace 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisace 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22241, 'Lisaid Tablet', 'Culmen Healthcare', 'Lisaid Tablet', 'Is Lisaid Tablet a steroid? What is it used for?', 'No, Lisaid Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(22242, 'Lisaid Tablet', 'Culmen Healthcare', 'Lisaid Tablet', 'Does Lisaid Tablet make you tired and drowsy?', 'Yes, Lisaid Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(22243, 'Lisaid Tablet', 'Culmen Healthcare', 'Lisaid Tablet', 'How long does it take for Lisaid Tablet to work?', 'Lisaid Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(22244, 'Lisaid Tablet', 'Culmen Healthcare', 'Lisaid Tablet', 'Can I take Lisaid Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lisaid Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(22245, 'Lisaid Tablet', 'Culmen Healthcare', 'Lisaid Tablet', 'Is it safe to take Lisaid Tablet for a long time?', 'Lisaid Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lisaid Tablet for only as long as you need it.'),
(22246, 'Lisaid Tablet', 'Culmen Healthcare', 'Lisaid Tablet', 'For how long should I continue Lisaid Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lisaid Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lisaid Tablet'),
(22247, 'Lisaid-M Tablet', 'Culmen Healthcare', 'Lisaid-M Tablet', 'What is Lisaid-M Tablet?', 'Lisaid-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(22248, 'Lisaid-M Tablet', 'Culmen Healthcare', 'Lisaid-M Tablet', 'Can the use of Lisaid-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lisaid-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(22249, 'Lisaid-M Tablet', 'Culmen Healthcare', 'Lisaid-M Tablet', 'Can Lisaid-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lisaid-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(22250, 'Lisaid-M Tablet', 'Culmen Healthcare', 'Lisaid-M Tablet', 'Can the use of Lisaid-M Tablet cause dry mouth?', 'Yes, the use of Lisaid-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(22251, 'Lisaid-M Tablet', 'Culmen Healthcare', 'Lisaid-M Tablet', 'Can I drink alcohol while taking Lisaid-M Tablet?', 'No, do not take alcohol while taking Lisaid-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lisaid-M Tablet.'),
(22252, 'Lisaid-M Tablet', 'Culmen Healthcare', 'Lisaid-M Tablet', 'Will Lisaid-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lisaid-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(22253, 'Lisaid-M Tablet', 'Culmen Healthcare', 'Lisaid-M Tablet', 'What are the instructions for storage and disposal of Lisaid-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(22254, 'Lisalt 300mg Tablet', 'A N Pharmacia', 'Lisalt 300mg Tablet', 'Q. How quickly does Lisalt 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lisalt 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lisalt 300mg Tablet. Do not stop taking Lisalt 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(22255, 'Lisalt 300mg Tablet', 'A N Pharmacia', 'Lisalt 300mg Tablet', 'Q. Does Lisalt 300mg Tablet make you sleepy?', 'Yes, Lisalt 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(22256, 'Lisalt 300mg Tablet', 'A N Pharmacia', 'Lisalt 300mg Tablet', 'Q. Is Lisalt 300mg Tablet bad for kidneys?', 'Yes, Lisalt 300mg Tablet may cause kidney problems. Lisalt 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lisalt 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lisalt 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(22257, 'Lisalt 300mg Tablet', 'A N Pharmacia', 'Lisalt 300mg Tablet', 'Q. Can Lisalt 300mg Tablet cause gain in weight?', 'Lisalt 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lisalt 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lisalt 300mg Tablet or some other reason.'),
(22258, 'Lisalt 300mg Tablet', 'A N Pharmacia', 'Lisalt 300mg Tablet', 'Q. What is the most important information I should know about Lisalt 300mg Tablet?', 'Lisalt 300mg Tablet therapy should only be started if adequate facilities for assessing Lisalt 300mg Tablet levels are available. This is because Lisalt 300mg Tablet toxicity is related to increased levels of Lisalt 300mg Tablet in blood. Lisalt 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lisalt 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(22259, 'Lisalt 300mg Tablet', 'A N Pharmacia', 'Lisalt 300mg Tablet', 'Q. How should Lisalt 300mg Tablet be taken?', 'Take Lisalt 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lisalt 300mg Tablet levels.'),
(22260, 'Lisalt 300mg Tablet', 'A N Pharmacia', 'Lisalt 300mg Tablet', 'Q. Which medicines decrease Lisalt 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lisalt 300mg Tablet since many medicines interfere with the working of Lisalt 300mg Tablet. Some medicines decrease the levels of Lisalt 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(22261, 'Lisalt 450mg Tablet SR', 'A N Pharmacia', 'Lisalt 450mg Tablet SR', 'How quickly does Lisalt 450mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lisalt 450mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lisalt 450mg Tablet SR. Do not stop taking Lisalt 450mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(22262, 'Lisalt 450mg Tablet SR', 'A N Pharmacia', 'Lisalt 450mg Tablet SR', 'Does Lisalt 450mg Tablet SR make you sleepy?', 'Yes, Lisalt 450mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(22263, 'Lisalt 450mg Tablet SR', 'A N Pharmacia', 'Lisalt 450mg Tablet SR', 'Is Lisalt 450mg Tablet SR bad for kidneys?', 'Yes, Lisalt 450mg Tablet SR may cause kidney problems. Lisalt 450mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lisalt 450mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lisalt 450mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(22264, 'Lisalt 450mg Tablet SR', 'A N Pharmacia', 'Lisalt 450mg Tablet SR', 'Can Lisalt 450mg Tablet SR cause gain in weight?', 'Lisalt 450mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lisalt 450mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lisalt 450mg Tablet SR or some other reason.'),
(22265, 'Lisalt 450mg Tablet SR', 'A N Pharmacia', 'Lisalt 450mg Tablet SR', 'What is the most important information I should know about Lisalt 450mg Tablet SR?', 'Lisalt 450mg Tablet SR therapy should only be started if adequate facilities for assessing Lisalt 450mg Tablet SR levels are available. This is because Lisalt 450mg Tablet SR toxicity is related to increased levels of Lisalt 450mg Tablet SR in blood. Lisalt 450mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lisalt 450mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(22266, 'Lisalt 450mg Tablet SR', 'A N Pharmacia', 'Lisalt 450mg Tablet SR', 'How should Lisalt 450mg Tablet SR be taken?', 'Take Lisalt 450mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lisalt 450mg Tablet SR levels.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22267, 'Lisalt 450mg Tablet SR', 'A N Pharmacia', 'Lisalt 450mg Tablet SR', 'Which medicines decrease Lisalt 450mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lisalt 450mg Tablet SR since many medicines interfere with the working of Lisalt 450mg Tablet SR. Some medicines decrease the levels of Lisalt 450mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(22268, 'Lisalt SR 400 Tablet', 'A N Pharmacia', 'Lisalt SR 400 Tablet', 'How quickly does Lisalt SR 400 Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lisalt SR 400 Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lisalt SR 400 Tablet. Do not stop taking Lisalt SR 400 Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(22269, 'Lisalt SR 400 Tablet', 'A N Pharmacia', 'Lisalt SR 400 Tablet', 'Does Lisalt SR 400 Tablet make you sleepy?', 'Yes, Lisalt SR 400 Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(22270, 'Lisalt SR 400 Tablet', 'A N Pharmacia', 'Lisalt SR 400 Tablet', 'Is Lisalt SR 400 Tablet bad for kidneys?', 'Yes, Lisalt SR 400 Tablet may cause kidney problems. Lisalt SR 400 Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lisalt SR 400 Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lisalt SR 400 Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(22271, 'Lisalt SR 400 Tablet', 'A N Pharmacia', 'Lisalt SR 400 Tablet', 'Can Lisalt SR 400 Tablet cause gain in weight?', 'Lisalt SR 400 Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lisalt SR 400 Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lisalt SR 400 Tablet or some other reason.'),
(22272, 'Lisalt SR 400 Tablet', 'A N Pharmacia', 'Lisalt SR 400 Tablet', 'What is the most important information I should know about Lisalt SR 400 Tablet?', 'Lisalt SR 400 Tablet therapy should only be started if adequate facilities for assessing Lisalt SR 400 Tablet levels are available. This is because Lisalt SR 400 Tablet toxicity is related to increased levels of Lisalt SR 400 Tablet in blood. Lisalt SR 400 Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lisalt SR 400 Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(22273, 'Lisalt SR 400 Tablet', 'A N Pharmacia', 'Lisalt SR 400 Tablet', 'How should Lisalt SR 400 Tablet be taken?', 'Take Lisalt SR 400 Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lisalt SR 400 Tablet levels.'),
(22274, 'Lisalt SR 400 Tablet', 'A N Pharmacia', 'Lisalt SR 400 Tablet', 'Which medicines decrease Lisalt SR 400 Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lisalt SR 400 Tablet since many medicines interfere with the working of Lisalt SR 400 Tablet. Some medicines decrease the levels of Lisalt SR 400 Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(22275, 'Lisam AT 5mg/50mg Tablet', 'Lister Life Sciences', 'Lisam AT 5mg/50mg Tablet', 'What lifestyle changes should be made while using Lisam AT 5mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Lisam AT 5mg/50mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(22276, 'Lisam AT 5mg/50mg Tablet', 'Lister Life Sciences', 'Lisam AT 5mg/50mg Tablet', 'Can I stop taking Lisam AT 5mg/50mg Tablet if I feel well?', 'No, keep using Lisam AT 5mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Lisam AT 5mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(22277, 'Lisam AT 5mg/50mg Tablet', 'Lister Life Sciences', 'Lisam AT 5mg/50mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22278, 'Lisam AT 5mg/50mg Tablet', 'Lister Life Sciences', 'Lisam AT 5mg/50mg Tablet', 'What are the contraindications associated with the use of Lisam AT 5mg/50mg Tablet?', 'Lisam AT 5mg/50mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(22279, 'Lisam AT 5mg/50mg Tablet', 'Lister Life Sciences', 'Lisam AT 5mg/50mg Tablet', 'Can the use of Lisam AT 5mg/50mg Tablet cause headache?', 'Yes, the use of Lisam AT 5mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(22280, 'Lisam AT 5mg/50mg Tablet', 'Lister Life Sciences', 'Lisam AT 5mg/50mg Tablet', 'Can I feel dizzy after taking Lisam AT 5mg/50mg Tablet?', 'Yes, the use of Lisam AT 5mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(22281, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'Can I feel dizzy after taking Lisamax 50mg Tablet?', 'Yes, the use of Lisamax 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(22282, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'Is Lisamax 50mg Tablet a good blood pressure medicine?', 'Lisamax 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(22283, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'What are some of the lifestyle changes I should make while using Lisamax 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisamax 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisamax 50mg Tablet and to keep yourself healthy.'),
(22284, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'For how long do I need to take Lisamax 50mg Tablet?', 'You may have to take Lisamax 50mg Tablet for a long term, even life long. Lisamax 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Lisamax 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(22285, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'Does Lisamax 50mg Tablet cause weight gain?', 'No, Lisamax 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(22286, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'What are the long-term side effects of Lisamax 50mg Tablet?', 'Long-term use of Lisamax 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Lisamax 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(22287, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'Is Lisamax 50mg Tablet bad for the kidneys?', 'Yes, Lisamax 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Lisamax 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(22288, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'How long does Lisamax 50mg Tablet take to work?', 'The blood pressure-lowering effect of Lisamax 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(22289, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'When and how should Lisamax 50mg Tablet be taken?', 'Take Lisamax 50mg Tablet exactly as per your doctor’s advice. Lisamax 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(22290, 'Lisamax 50mg Tablet', 'Daxia Healthcare', 'Lisamax 50mg Tablet', 'What is the most important information that I need to know about Lisamax 50mg Tablet?', 'Taking Lisamax 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Lisamax 50mg Tablet, stop taking Lisamax 50mg Tablet and call your doctor immediately.'),
(22291, 'Lisamax A 50mg/5mg Tablet', 'Daxia Healthcare', 'Lisamax A 50mg/5mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22292, 'Lisamax A 50mg/5mg Tablet', 'Daxia Healthcare', 'Lisamax A 50mg/5mg Tablet', 'Can I feel dizzy after taking Lisamax A 50mg/5mg Tablet?', 'Yes, the use of Lisamax A 50mg/5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(22293, 'Lisamax A 50mg/5mg Tablet', 'Daxia Healthcare', 'Lisamax A 50mg/5mg Tablet', 'Can I use Lisamax A 50mg/5mg Tablet in pregnancy?', 'No, Lisamax A 50mg/5mg Tablet should be avoided in pregnancy. Its use can cause injury and even endanger the baby. If you conceive while using Lisamax A 50mg/5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend to you other ways to lower the blood pressure.'),
(22294, 'Lisamax A 50mg/5mg Tablet', 'Daxia Healthcare', 'Lisamax A 50mg/5mg Tablet', 'What are some of the lifestyle changes I should make while using Lisamax A 50mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisamax A 50mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisamax A 50mg/5mg Tablet and to keep yourself healthy.'),
(22295, 'Lisamax A 50mg/5mg Tablet', 'Daxia Healthcare', 'Lisamax A 50mg/5mg Tablet', 'Can I stop taking Lisamax A 50mg/5mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping Lisamax A 50mg/5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(22296, 'Lisamax H 50mg/12.5mg Tablet', 'Daxia Healthcare', 'Lisamax H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22297, 'Lisamax H 50mg/12.5mg Tablet', 'Daxia Healthcare', 'Lisamax H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Lisamax H 50mg/12.5mg Tablet?', 'Yes, the use of Lisamax H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(22298, 'Lisamax H 50mg/12.5mg Tablet', 'Daxia Healthcare', 'Lisamax H 50mg/12.5mg Tablet', 'Can I use Lisamax H 50mg/12.5mg Tablet in pregnancy?', 'No, Lisamax H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Lisamax H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(22299, 'Lisamax H 50mg/12.5mg Tablet', 'Daxia Healthcare', 'Lisamax H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Lisamax H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lisamax H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(22300, 'Lisamax H 50mg/12.5mg Tablet', 'Daxia Healthcare', 'Lisamax H 50mg/12.5mg Tablet', 'Can I stop taking Lisamax H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Lisamax H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Lisamax H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(22301, 'Lisani 5mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani 5mg Tablet', 'Is Lisani 5mg Tablet a steroid? What is it used for?', 'No, Lisani 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(22302, 'Lisani 5mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani 5mg Tablet', 'Does Lisani 5mg Tablet make you tired and drowsy?', 'Yes, Lisani 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(22303, 'Lisani 5mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani 5mg Tablet', 'How long does it take for Lisani 5mg Tablet to work?', 'Lisani 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(22304, 'Lisani 5mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani 5mg Tablet', 'Can I take Lisani 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lisani 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(22305, 'Lisani 5mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani 5mg Tablet', 'Is it safe to take Lisani 5mg Tablet for a long time?', 'Lisani 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lisani 5mg Tablet for only as long as you need it.'),
(22306, 'Lisani 5mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani 5mg Tablet', 'For how long should I continue Lisani 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lisani 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lisani 5mg Tablet'),
(22307, 'Lisani M 5mg/10mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani M 5mg/10mg Tablet', 'What is Lisani M 5mg/10mg Tablet?', 'Lisani M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(22308, 'Lisani M 5mg/10mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani M 5mg/10mg Tablet', 'Can the use of Lisani M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lisani M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(22309, 'Lisani M 5mg/10mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani M 5mg/10mg Tablet', 'Can Lisani M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lisani M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(22310, 'Lisani M 5mg/10mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani M 5mg/10mg Tablet', 'Can the use of Lisani M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lisani M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(22311, 'Lisani M 5mg/10mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lisani M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lisani M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lisani M 5mg/10mg Tablet.'),
(22312, 'Lisani M 5mg/10mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani M 5mg/10mg Tablet', 'Will Lisani M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lisani M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(22313, 'Lisani M 5mg/10mg Tablet', 'CNX Healthcare Pvt Ltd', 'Lisani M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lisani M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(22314, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'How long should you use Lisarinse Mouth Wash?', 'The duration of use of Lisarinse Mouth Wash will depend on the condition it is being prescribed for. If you are using it for gum disease (gingivitis) it may be used for a month. If being used for mouth ulcers and thrush, this mouthwash may be used till 2 days after the symptoms are relieved.'),
(22315, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'Does Lisarinse Mouth Wash stain teeth?', 'Yes, though it does not occur in everyone, Lisarinse Mouth Wash may stain your teeth and tongue. Staining is not permanent and may disappear after discontinuation of treatment. Brushing the teeth with regular toothpaste before using Lisarinse Mouth Wash can prevent staining. You should also avoid tannin-containing food and drinks such as tea and coffee.'),
(22316, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'Does Lisarinse Mouth Wash help bad breath?', 'Yes, Lisarinse Mouth Wash is effective in reducing bad breath, which persists for about 3 hours. However, the risk of staining teeth and alteration of taste should be borne in mind before you start using it. Also, use this medicine judiciously.'),
(22317, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'How should Lisarinse Mouth Wash be used?', 'It should be used as required. It is generally used twice daily. Rinse the mouth thoroughly for about 1 minute with 10 ml of Lisarinse Mouth Wash mouthwash. After rinsing, expel it from your mouth.'),
(22318, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'What precautions should be followed while using Lisarinse Mouth Wash?', 'Using toothpastes immediately after the mouthwash may interfere with the working of mouthwash properly. Use it before the mouthwash or at a different time of the day. Always rinse your mouth before using the mouthwash.'),
(22319, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'How long should you use Lisarinse Mouth Wash?', 'The duration of use of Lisarinse Mouth Wash will depend on the condition it is being prescribed for. If you are using it for gum disease (gingivitis) it may be used for a month. If being used for mouth ulcers and thrush, this mouthwash may be used till 2 days after the symptoms are relieved.'),
(22320, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'Does Lisarinse Mouth Wash stain teeth?', 'Yes, though it does not occur in everyone, Lisarinse Mouth Wash may stain your teeth and tongue. Staining is not permanent and may disappear after discontinuation of treatment. Brushing the teeth with regular toothpaste before using Lisarinse Mouth Wash can prevent staining. You should also avoid tannin-containing food and drinks such as tea and coffee.'),
(22321, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'Does Lisarinse Mouth Wash help bad breath?', 'Yes, Lisarinse Mouth Wash is effective in reducing bad breath, which persists for about 3 hours. However, the risk of staining teeth and alteration of taste should be borne in mind before you start using it. Also, use this medicine judiciously.'),
(22322, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'How should Lisarinse Mouth Wash be used?', 'It should be used as required. It is generally used twice daily. Rinse the mouth thoroughly for about 1 minute with 10 ml of Lisarinse Mouth Wash mouthwash. After rinsing, expel it from your mouth.'),
(22323, 'Lisarinse Mouth Wash', 'Win-Medicare Pvt Ltd', 'Lisarinse Mouth Wash', 'What precautions should be followed while using Lisarinse Mouth Wash?', 'Using toothpastes immediately after the mouthwash may interfere with the working of mouthwash properly. Use it before the mouthwash or at a different time of the day. Always rinse your mouth before using the mouthwash.'),
(22324, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'Should Lisatel 20mg Tablet be taken in the morning or at night?', 'Lisatel 20mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(22325, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'How long does it take for Lisatel 20mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(22326, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'My blood pressure is now controlled. Can I stop taking Lisatel 20mg Tablet now?', 'No, do not stop taking Lisatel 20mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Lisatel 20mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(22327, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'If I have some kidney problem, can I take Lisatel 20mg Tablet? Can it further deteriorate my kidney function?', 'You can take Lisatel 20mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Lisatel 20mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(22328, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'I am overweight and the doctor has prescribed me Lisatel 20mg Tablet for blood pressure control. I am bothered that Lisatel 20mg Tablet can increase my weight. Is it true?', 'No, do not worry since Lisatel 20mg Tablet is not known to cause weight gain. In fact in animal studies Lisatel 20mg Tablet has been found to decrease fat tissue.'),
(22329, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'Does Lisatel 20mg Tablet affect blood glucose levels in diabetics?', 'Lisatel 20mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(22330, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'Can the use of Lisatel 20mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Lisatel 20mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(22331, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'Does Lisatel 20mg Tablet work by causing excessive urination?', 'No, Lisatel 20mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Lisatel 20mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(22332, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Lisatel 20mg Tablet together?', 'If you are taking ibuprofen and Lisatel 20mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Lisatel 20mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Lisatel 20mg Tablet for heart failure. Ibuprofen may interfere with the working of Lisatel 20mg Tablet and decrease its efficiency at lowering blood pressure.'),
(22333, 'Lisatel 20mg Tablet', 'Lister Life Sciences', 'Lisatel 20mg Tablet', 'Should Lisatel 20mg Tablet be taken in the morning or at night?', 'Lisatel 20mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(22334, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'Should Lisatel 40mg Tablet be taken in the morning or at night?', 'Lisatel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(22335, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'How long does it take for Lisatel 40mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(22336, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'My blood pressure is now controlled. Can I stop taking Lisatel 40mg Tablet now?', 'No, do not stop taking Lisatel 40mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Lisatel 40mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(22337, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'If I have some kidney problem, can I take Lisatel 40mg Tablet? Can it further deteriorate my kidney function?', 'You can take Lisatel 40mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Lisatel 40mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(22338, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'I am overweight and the doctor has prescribed me Lisatel 40mg Tablet for blood pressure control. I am bothered that Lisatel 40mg Tablet can increase my weight. Is it true?', 'No, do not worry since Lisatel 40mg Tablet is not known to cause weight gain. In fact in animal studies Lisatel 40mg Tablet has been found to decrease fat tissue.'),
(22339, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'Does Lisatel 40mg Tablet affect blood glucose levels in diabetics?', 'Lisatel 40mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(22340, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'Can the use of Lisatel 40mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Lisatel 40mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(22341, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'Does Lisatel 40mg Tablet work by causing excessive urination?', 'No, Lisatel 40mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Lisatel 40mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(22342, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Lisatel 40mg Tablet together?', 'If you are taking ibuprofen and Lisatel 40mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Lisatel 40mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Lisatel 40mg Tablet for heart failure. Ibuprofen may interfere with the working of Lisatel 40mg Tablet and decrease its efficiency at lowering blood pressure.'),
(22343, 'Lisatel 40mg Tablet', 'Lister Life Sciences', 'Lisatel 40mg Tablet', 'Should Lisatel 40mg Tablet be taken in the morning or at night?', 'Lisatel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(22344, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'What is Liscard 10mg Tablet? What is it used for?', 'Liscard 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22345, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'What should I tell my doctor before taking Liscard 10mg Tablet?', 'Before taking Liscard 10mg Tablet you must tell your doctor if you are allergic to Liscard 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Liscard 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22346, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'What time of the day should I take Liscard 10mg Tablet?', 'Liscard 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Liscard 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Liscard 10mg Tablet, please consult your doctor.'),
(22347, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'I feel better after taking Liscard 10mg Tablet, can I stop taking it?', 'No, continue taking Liscard 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Liscard 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22348, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'Will Liscard 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Liscard 10mg Tablet may make you feel dizzy or lightheaded. If Liscard 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22349, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'What other lifestyle changes should I make while taking Liscard 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Liscard 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Liscard 10mg Tablet and to keep yourself healthy.'),
(22350, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'I have diabetes. Does Liscard 10mg Tablet have any effect on blood sugar levels?', 'Yes, Liscard 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22351, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'After starting Liscard 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Liscard 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Liscard 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Liscard 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22352, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'Can Liscard 10mg Tablet affect my fertility?', 'There is no evidence that Liscard 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Liscard 10mg Tablet is not recommended in pregnancy.'),
(22353, 'Liscard 10mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 10mg Tablet', 'Can Liscard 10mg Tablet increase potassium levels? If so, what should be done?', 'Liscard 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Liscard 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22354, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'What is Liscard 2.5mg Tablet? What is it used for?', 'Liscard 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22355, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'What should I tell my doctor before taking Liscard 2.5mg Tablet?', 'Before taking Liscard 2.5mg Tablet you must tell your doctor if you are allergic to Liscard 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Liscard 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22356, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'What time of the day should I take Liscard 2.5mg Tablet?', 'Liscard 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Liscard 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Liscard 2.5mg Tablet, please consult your doctor.'),
(22357, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'I feel better after taking Liscard 2.5mg Tablet, can I stop taking it?', 'No, continue taking Liscard 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Liscard 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22358, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'Will Liscard 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Liscard 2.5mg Tablet may make you feel dizzy or lightheaded. If Liscard 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22359, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'What other lifestyle changes should I make while taking Liscard 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Liscard 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Liscard 2.5mg Tablet and to keep yourself healthy.'),
(22360, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'I have diabetes. Does Liscard 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Liscard 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22361, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'After starting Liscard 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Liscard 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Liscard 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Liscard 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22362, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'Can Liscard 2.5mg Tablet affect my fertility?', 'There is no evidence that Liscard 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Liscard 2.5mg Tablet is not recommended in pregnancy.'),
(22363, 'Liscard 2.5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 2.5mg Tablet', 'Can Liscard 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Liscard 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Liscard 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22364, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'What is Liscard 5mg Tablet? What is it used for?', 'Liscard 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22365, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'What should I tell my doctor before taking Liscard 5mg Tablet?', 'Before taking Liscard 5mg Tablet you must tell your doctor if you are allergic to Liscard 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Liscard 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22366, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'What time of the day should I take Liscard 5mg Tablet?', 'Liscard 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Liscard 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Liscard 5mg Tablet, please consult your doctor.'),
(22367, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'I feel better after taking Liscard 5mg Tablet, can I stop taking it?', 'No, continue taking Liscard 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Liscard 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22368, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'Will Liscard 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Liscard 5mg Tablet may make you feel dizzy or lightheaded. If Liscard 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22369, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'What other lifestyle changes should I make while taking Liscard 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Liscard 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Liscard 5mg Tablet and to keep yourself healthy.'),
(22370, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'I have diabetes. Does Liscard 5mg Tablet have any effect on blood sugar levels?', 'Yes, Liscard 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22371, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'After starting Liscard 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Liscard 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Liscard 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Liscard 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22372, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'Can Liscard 5mg Tablet affect my fertility?', 'There is no evidence that Liscard 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Liscard 5mg Tablet is not recommended in pregnancy.'),
(22373, 'Liscard 5mg Tablet', 'Intra Labs India Pvt Ltd', 'Liscard 5mg Tablet', 'Can Liscard 5mg Tablet increase potassium levels? If so, what should be done?', 'Liscard 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Liscard 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22374, 'Liscolin-P Tablet', 'SAG Pharma Pvt Ltd', 'Liscolin-P Tablet', 'How to manage weight gain associated with the use of Liscolin-P Tablet?', 'There are reports which suggest that the use of Liscolin-P Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain rather than losing increased weight.'),
(22375, 'Liscolin-P Tablet', 'SAG Pharma Pvt Ltd', 'Liscolin-P Tablet', 'What are the instructions for storage and disposal of Liscolin-P Tablet?	', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22376, 'Lisel 250mg Injection', 'Madhav Biotech Pvt. Ltd', 'Lisel 250mg Injection', 'Is Lisel 250mg Injection safe?', 'Lisel 250mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22377, 'Lisel 250mg Injection', 'Madhav Biotech Pvt. Ltd', 'Lisel 250mg Injection', 'How long does Lisel 250mg Injection take to work?', 'Usually, Lisel 250mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(22378, 'Lisel 250mg Injection', 'Madhav Biotech Pvt. Ltd', 'Lisel 250mg Injection', 'Who should not take Lisel 250mg Injection?', 'Lisel 250mg Injection should not be prescribed to people who are allergic to Lisel 250mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Lisel 250mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(22379, 'Lisel 250mg Injection', 'Madhav Biotech Pvt. Ltd', 'Lisel 250mg Injection', 'What if I do not get better after using Lisel 250mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(22380, 'Lisel 250mg Injection', 'Madhav Biotech Pvt. Ltd', 'Lisel 250mg Injection', 'For how long does Lisel 250mg Injection stay in the body?', 'Usually, Lisel 250mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(22381, 'Lisel 250mg Injection', 'Madhav Biotech Pvt. Ltd', 'Lisel 250mg Injection', 'Is Lisel 250mg Injection effective?', 'Lisel 250mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lisel 250mg Injection too early, the symptoms may return or worsen.'),
(22382, 'Lisel 250mg Injection', 'Madhav Biotech Pvt. Ltd', 'Lisel 250mg Injection', 'How is Lisel 250mg Injection administered?', 'Lisel 250mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lisel 250mg Injection.'),
(22383, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'How long does it take for Liser 100mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Liser 100mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(22384, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'How long do I need to take Liser 100mg Tablet?', 'You should continue taking Liser 100mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(22385, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'When is the best time to take Liser 100mg Tablet?', 'Liser 100mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Liser 100mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.'),
(22386, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'Does Liser 100mg Tablet cause sleepiness?', 'Yes, Liser 100mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Liser 100mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Liser 100mg Tablet, which may disappear after 2-3 months of use of Liser 100mg Tablet.'),
(22387, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'What does Liser 100mg Tablet do for anxiety?', 'Liser 100mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(22388, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'Can I stop taking Liser 100mg Tablet if I am better now?', 'No, you should not stop taking Liser 100mg Tablet without consulting your doctor. This is because sudden discontinuation of Liser 100mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(22389, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'What are the withdrawal symptoms of Liser 100mg Tablet?', 'The withdrawal symptoms of Liser 100mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Liser 100mg Tablet.'),
(22390, 'Liser 100mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 100mg Tablet', 'What are the symptoms of overdose of Liser 100mg Tablet?', 'The symptoms of overdose of Liser 100mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(22391, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'How long does it take for Liser 50mg Tablet to work?', 'You may start noticing an improvement in symptoms within 7 days of taking Liser 50mg Tablet. However, it may take longer to show full response and will vary from person to person.'),
(22392, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'How long do I need to take Liser 50mg Tablet?', 'You should continue taking Liser 50mg Tablet as long as your doctor recommends to take it which may be for several months. Doctors usually recommend the medicine for 6 months to a year after you no longer feel depressed. It is important to know that stopping the medication before the suggested time may cause depression to come back.'),
(22393, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'When is the best time to take Liser 50mg Tablet?', 'Liser 50mg Tablet is usually taken once a day and can be taken at any time of the day. It can be taken with or without food. Take it as per your convenience but preferably at the same time each day. Some people who have sleep difficulty after taking Liser 50mg Tablet, they should take it in the morning. Whereas, some take it at night to limit the side effects of nausea and vomiting.'),
(22394, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'Does Liser 50mg Tablet cause sleepiness?', 'Yes, Liser 50mg Tablet may commonly cause sleepiness. In case you feel dizzy, sleepy or tired after taking Liser 50mg Tablet, you should avoid driving or using heavy machinery. This generally happens within the first few days and weeks after starting Liser 50mg Tablet, which may disappear after 2-3 months of use of Liser 50mg Tablet.'),
(22395, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'What does Liser 50mg Tablet do for anxiety?', 'Liser 50mg Tablet belongs to selective serotonin reuptake inhibitor (SSRI) class of medicines. It increases the levels of serotonin which is an important chemical and a neurotransmitter. This increase in serotonin levels can help to improve and regulate your mood, resulting in an improvement in the symptoms of anxiety.'),
(22396, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'Can I stop taking Liser 50mg Tablet if I am better now?', 'No, you should not stop taking Liser 50mg Tablet without consulting your doctor. This is because sudden discontinuation of Liser 50mg Tablet may cause withdrawal symptoms. Hence, it is important to gradually reduce the dose with time (over several weeks or months).'),
(22397, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'What are the withdrawal symptoms of Liser 50mg Tablet?', 'The withdrawal symptoms of Liser 50mg Tablet include dizziness, nausea, numbness or tingling in the hands or feet, trouble sleeping, feeling agitated or anxious, headaches and shaking. However, these symptoms are generally mild to moderate and disappear after 1-2 weeks of discontinuing Liser 50mg Tablet.'),
(22398, 'Liser 50mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Liser 50mg Tablet', 'What are the symptoms of overdose of Liser 50mg Tablet?', 'The symptoms of overdose of Liser 50mg Tablet include nausea, dizziness, fever, vomiting, confusion, shakiness, and a rapid heartbeat. Whereas, serious side effects include fainting, delirium, heart problems, and changes in blood pressure. If you experience such symptoms immediately contact your doctor or seek emergency medical services in a nearby hospital.'),
(22399, 'Liser 750mg/50mg/250mg Tablet', 'Nucleo Remedies', 'Liser 750mg/50mg/250mg Tablet', 'What are the storage conditions for Liser 750mg/50mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22400, 'Liser 750mg/50mg/250mg Tablet', 'Nucleo Remedies', 'Liser 750mg/50mg/250mg Tablet', 'Can the use of Liser 750mg/50mg/250mg Tablet cause indigestion?', 'Liser 750mg/50mg/250mg Tablet may cause indigestion. Take it with or after food to avoid Indigestion. Talk to your doctor if indigestion persists.'),
(22401, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'What is Liserra-AP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(22402, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Is it safe to take Liserra-AP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(22403, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Can I stop taking Liserra-AP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(22404, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Can Liserra-AP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(22405, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Can Liserra-AP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(22406, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Are there any specific contraindications associated with taking Liserra-AP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(22407, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Can I take Liserra-AP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(22408, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Can the use of Liserra-AP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(22409, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'Can I take a higher dose of Liserra-AP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(22410, 'Liserra-AP Tablet', 'Pristine Formulations', 'Liserra-AP Tablet', 'What are the instructions for storage and disposal of Liserra-AP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22411, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'What is Lisfob 2.5mg Tablet? What is it used for?', 'Lisfob 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22412, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'What should I tell my doctor before taking Lisfob 2.5mg Tablet?', 'Before taking Lisfob 2.5mg Tablet you must tell your doctor if you are allergic to Lisfob 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisfob 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22413, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'What time of the day should I take Lisfob 2.5mg Tablet?', 'Lisfob 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisfob 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisfob 2.5mg Tablet, please consult your doctor.'),
(22414, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'I feel better after taking Lisfob 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lisfob 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisfob 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22415, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'Will Lisfob 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisfob 2.5mg Tablet may make you feel dizzy or lightheaded. If Lisfob 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22416, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lisfob 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisfob 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisfob 2.5mg Tablet and to keep yourself healthy.'),
(22417, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'I have diabetes. Does Lisfob 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisfob 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22418, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'After starting Lisfob 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisfob 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisfob 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisfob 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22419, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'Can Lisfob 2.5mg Tablet affect my fertility?', 'There is no evidence that Lisfob 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisfob 2.5mg Tablet is not recommended in pregnancy.'),
(22420, 'Lisfob 2.5mg Tablet', 'Zylig Lifesciences', 'Lisfob 2.5mg Tablet', 'Can Lisfob 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lisfob 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisfob 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22421, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'What is Lisfob 5mg Tablet? What is it used for?', 'Lisfob 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22422, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'What should I tell my doctor before taking Lisfob 5mg Tablet?', 'Before taking Lisfob 5mg Tablet you must tell your doctor if you are allergic to Lisfob 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisfob 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22423, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'What time of the day should I take Lisfob 5mg Tablet?', 'Lisfob 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisfob 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisfob 5mg Tablet, please consult your doctor.'),
(22424, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'I feel better after taking Lisfob 5mg Tablet, can I stop taking it?', 'No, continue taking Lisfob 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisfob 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22425, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'Will Lisfob 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisfob 5mg Tablet may make you feel dizzy or lightheaded. If Lisfob 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22426, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'What other lifestyle changes should I make while taking Lisfob 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisfob 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisfob 5mg Tablet and to keep yourself healthy.'),
(22427, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'I have diabetes. Does Lisfob 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisfob 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22428, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'After starting Lisfob 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisfob 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisfob 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisfob 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22429, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'Can Lisfob 5mg Tablet affect my fertility?', 'There is no evidence that Lisfob 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisfob 5mg Tablet is not recommended in pregnancy.'),
(22430, 'Lisfob 5mg Tablet', 'Zylig Lifesciences', 'Lisfob 5mg Tablet', 'Can Lisfob 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisfob 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisfob 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22431, 'Lisgel Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Lisgel Syrup', 'Will a higher than the recommended dose of Lisgel Syrup be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(22432, 'Lisgel Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Lisgel Syrup', 'What if I miss a dose?', 'Take the missed dose as soon as you remember. But, skip the missed dose if it is time for your next dose. Then follow your normal routine.'),
(22433, 'Lisgel Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Lisgel Syrup', 'Can the use of Lisgel Syrup cause diarrhea?', 'Yes, the use of Lisgel Syrup can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(22434, 'Lisgel Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Lisgel Syrup', 'Can the use of Lisgel Syrup cause constipation?', 'Yes, the use of Lisgel Syrup can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits, and cereals. Drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or taking a short walk. Talk to your doctor about if persistent constipation occurs.'),
(22435, 'Lisgel Syrup', 'MDC Pharmaceuticals  Pvt Ltd', 'Lisgel Syrup', 'What are the instructions for the storage and disposal of Lisgel Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22436, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'What is Lisian 10mg Tablet? What is it used for?', 'Lisian 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22437, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'What should I tell my doctor before taking Lisian 10mg Tablet?', 'Before taking Lisian 10mg Tablet you must tell your doctor if you are allergic to Lisian 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisian 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22438, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'What time of the day should I take Lisian 10mg Tablet?', 'Lisian 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisian 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisian 10mg Tablet, please consult your doctor.'),
(22439, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'I feel better after taking Lisian 10mg Tablet, can I stop taking it?', 'No, continue taking Lisian 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisian 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22440, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'Will Lisian 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisian 10mg Tablet may make you feel dizzy or lightheaded. If Lisian 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22441, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'What other lifestyle changes should I make while taking Lisian 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisian 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisian 10mg Tablet and to keep yourself healthy.'),
(22442, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'I have diabetes. Does Lisian 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisian 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22443, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'After starting Lisian 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisian 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisian 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisian 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22444, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'Can Lisian 10mg Tablet affect my fertility?', 'There is no evidence that Lisian 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisian 10mg Tablet is not recommended in pregnancy.'),
(22445, 'Lisian 10mg Tablet', 'Noel Pharma India Pvt Ltd', 'Lisian 10mg Tablet', 'Can Lisian 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisian 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisian 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22446, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'What is Lisicard 10mg Tablet? What is it used for?', 'Lisicard 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22447, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'What should I tell my doctor before taking Lisicard 10mg Tablet?', 'Before taking Lisicard 10mg Tablet you must tell your doctor if you are allergic to Lisicard 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisicard 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22448, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'What time of the day should I take Lisicard 10mg Tablet?', 'Lisicard 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisicard 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisicard 10mg Tablet, please consult your doctor.'),
(22449, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'I feel better after taking Lisicard 10mg Tablet, can I stop taking it?', 'No, continue taking Lisicard 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisicard 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22450, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'Will Lisicard 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisicard 10mg Tablet may make you feel dizzy or lightheaded. If Lisicard 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22451, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'What other lifestyle changes should I make while taking Lisicard 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisicard 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisicard 10mg Tablet and to keep yourself healthy.'),
(22452, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'I have diabetes. Does Lisicard 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisicard 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22453, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'After starting Lisicard 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisicard 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisicard 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisicard 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22454, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'Can Lisicard 10mg Tablet affect my fertility?', 'There is no evidence that Lisicard 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisicard 10mg Tablet is not recommended in pregnancy.'),
(22455, 'Lisicard 10mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 10mg Tablet', 'Can Lisicard 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisicard 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisicard 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22456, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'What is Lisicard 2.5mg Tablet? What is it used for?', 'Lisicard 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22457, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'What should I tell my doctor before taking Lisicard 2.5mg Tablet?', 'Before taking Lisicard 2.5mg Tablet you must tell your doctor if you are allergic to Lisicard 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisicard 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22458, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'What time of the day should I take Lisicard 2.5mg Tablet?', 'Lisicard 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisicard 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisicard 2.5mg Tablet, please consult your doctor.'),
(22459, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'I feel better after taking Lisicard 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lisicard 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisicard 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22460, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'Will Lisicard 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisicard 2.5mg Tablet may make you feel dizzy or lightheaded. If Lisicard 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22461, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lisicard 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisicard 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisicard 2.5mg Tablet and to keep yourself healthy.'),
(22462, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'I have diabetes. Does Lisicard 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisicard 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22463, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'After starting Lisicard 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisicard 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisicard 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisicard 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22464, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'Can Lisicard 2.5mg Tablet affect my fertility?', 'There is no evidence that Lisicard 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisicard 2.5mg Tablet is not recommended in pregnancy.'),
(22465, 'Lisicard 2.5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 2.5mg Tablet', 'Can Lisicard 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lisicard 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisicard 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22466, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'What is Lisicard 5mg Tablet? What is it used for?', 'Lisicard 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22467, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'What should I tell my doctor before taking Lisicard 5mg Tablet?', 'Before taking Lisicard 5mg Tablet you must tell your doctor if you are allergic to Lisicard 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisicard 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22468, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'What time of the day should I take Lisicard 5mg Tablet?', 'Lisicard 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisicard 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisicard 5mg Tablet, please consult your doctor.'),
(22469, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'I feel better after taking Lisicard 5mg Tablet, can I stop taking it?', 'No, continue taking Lisicard 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisicard 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22470, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'Will Lisicard 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisicard 5mg Tablet may make you feel dizzy or lightheaded. If Lisicard 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22471, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'What other lifestyle changes should I make while taking Lisicard 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisicard 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisicard 5mg Tablet and to keep yourself healthy.'),
(22472, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'I have diabetes. Does Lisicard 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisicard 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22473, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'After starting Lisicard 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisicard 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisicard 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisicard 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22474, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'Can Lisicard 5mg Tablet affect my fertility?', 'There is no evidence that Lisicard 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisicard 5mg Tablet is not recommended in pregnancy.'),
(22475, 'Lisicard 5mg Tablet', 'Gufic Bioscience Ltd', 'Lisicard 5mg Tablet', 'Can Lisicard 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisicard 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisicard 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22476, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'What is Lisign 10 Tablet? What is it used for?', 'Lisign 10 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22477, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'What should I tell my doctor before taking Lisign 10 Tablet?', 'Before taking Lisign 10 Tablet you must tell your doctor if you are allergic to Lisign 10 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisign 10 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22478, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'What time of the day should I take Lisign 10 Tablet?', 'Lisign 10 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisign 10 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisign 10 Tablet, please consult your doctor.'),
(22479, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'I feel better after taking Lisign 10 Tablet, can I stop taking it?', 'No, continue taking Lisign 10 Tablet even if you feel better and your blood pressure is under control. Stopping Lisign 10 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22480, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'Will Lisign 10 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisign 10 Tablet may make you feel dizzy or lightheaded. If Lisign 10 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22481, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'What other lifestyle changes should I make while taking Lisign 10 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisign 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisign 10 Tablet and to keep yourself healthy.'),
(22482, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'I have diabetes. Does Lisign 10 Tablet have any effect on blood sugar levels?', 'Yes, Lisign 10 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22483, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'After starting Lisign 10 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisign 10 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisign 10 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisign 10 Tablet, the cough may take a few days to a month to resolve completely.'),
(22484, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'Can Lisign 10 Tablet affect my fertility?', 'There is no evidence that Lisign 10 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisign 10 Tablet is not recommended in pregnancy.'),
(22485, 'Lisign 10 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 10 Tablet', 'Can Lisign 10 Tablet increase potassium levels? If so, what should be done?', 'Lisign 10 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisign 10 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22486, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'What is Lisign 2.5 Tablet? What is it used for?', 'Lisign 2.5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22487, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'What should I tell my doctor before taking Lisign 2.5 Tablet?', 'Before taking Lisign 2.5 Tablet you must tell your doctor if you are allergic to Lisign 2.5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisign 2.5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22488, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'What time of the day should I take Lisign 2.5 Tablet?', 'Lisign 2.5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisign 2.5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisign 2.5 Tablet, please consult your doctor.'),
(22489, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'I feel better after taking Lisign 2.5 Tablet, can I stop taking it?', 'No, continue taking Lisign 2.5 Tablet even if you feel better and your blood pressure is under control. Stopping Lisign 2.5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22490, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'Will Lisign 2.5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisign 2.5 Tablet may make you feel dizzy or lightheaded. If Lisign 2.5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22491, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'What other lifestyle changes should I make while taking Lisign 2.5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisign 2.5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisign 2.5 Tablet and to keep yourself healthy.'),
(22492, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'I have diabetes. Does Lisign 2.5 Tablet have any effect on blood sugar levels?', 'Yes, Lisign 2.5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22493, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'After starting Lisign 2.5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisign 2.5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisign 2.5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisign 2.5 Tablet, the cough may take a few days to a month to resolve completely.'),
(22494, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'Can Lisign 2.5 Tablet affect my fertility?', 'There is no evidence that Lisign 2.5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisign 2.5 Tablet is not recommended in pregnancy.'),
(22495, 'Lisign 2.5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 2.5 Tablet', 'Can Lisign 2.5 Tablet increase potassium levels? If so, what should be done?', 'Lisign 2.5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisign 2.5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22496, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'What is Lisign 5 Tablet? What is it used for?', 'Lisign 5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22497, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'What should I tell my doctor before taking Lisign 5 Tablet?', 'Before taking Lisign 5 Tablet you must tell your doctor if you are allergic to Lisign 5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisign 5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22498, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'What time of the day should I take Lisign 5 Tablet?', 'Lisign 5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisign 5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisign 5 Tablet, please consult your doctor.'),
(22499, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'I feel better after taking Lisign 5 Tablet, can I stop taking it?', 'No, continue taking Lisign 5 Tablet even if you feel better and your blood pressure is under control. Stopping Lisign 5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22500, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'Will Lisign 5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisign 5 Tablet may make you feel dizzy or lightheaded. If Lisign 5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22501, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'What other lifestyle changes should I make while taking Lisign 5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisign 5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisign 5 Tablet and to keep yourself healthy.'),
(22502, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'I have diabetes. Does Lisign 5 Tablet have any effect on blood sugar levels?', 'Yes, Lisign 5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22503, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'After starting Lisign 5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisign 5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisign 5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisign 5 Tablet, the cough may take a few days to a month to resolve completely.'),
(22504, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'Can Lisign 5 Tablet affect my fertility?', 'There is no evidence that Lisign 5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisign 5 Tablet is not recommended in pregnancy.'),
(22505, 'Lisign 5 Tablet', 'Care Formulation Labs Pvt Ltd', 'Lisign 5 Tablet', 'Can Lisign 5 Tablet increase potassium levels? If so, what should be done?', 'Lisign 5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisign 5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22506, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'What is Lisinace 10mg Tablet? What is it used for?', 'Lisinace 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22507, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'What should I tell my doctor before taking Lisinace 10mg Tablet?', 'Before taking Lisinace 10mg Tablet you must tell your doctor if you are allergic to Lisinace 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisinace 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22508, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'What time of the day should I take Lisinace 10mg Tablet?', 'Lisinace 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisinace 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisinace 10mg Tablet, please consult your doctor.'),
(22509, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'I feel better after taking Lisinace 10mg Tablet, can I stop taking it?', 'No, continue taking Lisinace 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisinace 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22510, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'Will Lisinace 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisinace 10mg Tablet may make you feel dizzy or lightheaded. If Lisinace 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22511, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'What other lifestyle changes should I make while taking Lisinace 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisinace 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisinace 10mg Tablet and to keep yourself healthy.'),
(22512, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'I have diabetes. Does Lisinace 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisinace 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22513, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'After starting Lisinace 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisinace 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisinace 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisinace 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22514, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'Can Lisinace 10mg Tablet affect my fertility?', 'There is no evidence that Lisinace 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisinace 10mg Tablet is not recommended in pregnancy.'),
(22515, 'Lisinace 10mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 10mg Tablet', 'Can Lisinace 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisinace 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisinace 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22516, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'What is Lisinace 2.5mg Tablet? What is it used for?', 'Lisinace 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22517, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'What should I tell my doctor before taking Lisinace 2.5mg Tablet?', 'Before taking Lisinace 2.5mg Tablet you must tell your doctor if you are allergic to Lisinace 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisinace 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22518, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'What time of the day should I take Lisinace 2.5mg Tablet?', 'Lisinace 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisinace 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisinace 2.5mg Tablet, please consult your doctor.'),
(22519, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'I feel better after taking Lisinace 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lisinace 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisinace 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22520, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'Will Lisinace 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisinace 2.5mg Tablet may make you feel dizzy or lightheaded. If Lisinace 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22521, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lisinace 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisinace 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisinace 2.5mg Tablet and to keep yourself healthy.'),
(22522, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'I have diabetes. Does Lisinace 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisinace 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22523, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'After starting Lisinace 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisinace 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisinace 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisinace 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22524, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'Can Lisinace 2.5mg Tablet affect my fertility?', 'There is no evidence that Lisinace 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisinace 2.5mg Tablet is not recommended in pregnancy.'),
(22525, 'Lisinace 2.5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 2.5mg Tablet', 'Can Lisinace 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lisinace 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisinace 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22526, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'What is Lisinace 5mg Tablet? What is it used for?', 'Lisinace 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22527, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'What should I tell my doctor before taking Lisinace 5mg Tablet?', 'Before taking Lisinace 5mg Tablet you must tell your doctor if you are allergic to Lisinace 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisinace 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22528, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'What time of the day should I take Lisinace 5mg Tablet?', 'Lisinace 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisinace 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisinace 5mg Tablet, please consult your doctor.'),
(22529, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'I feel better after taking Lisinace 5mg Tablet, can I stop taking it?', 'No, continue taking Lisinace 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisinace 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22530, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'Will Lisinace 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisinace 5mg Tablet may make you feel dizzy or lightheaded. If Lisinace 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22531, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'What other lifestyle changes should I make while taking Lisinace 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisinace 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisinace 5mg Tablet and to keep yourself healthy.'),
(22532, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'I have diabetes. Does Lisinace 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisinace 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22533, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'After starting Lisinace 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisinace 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisinace 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisinace 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22534, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'Can Lisinace 5mg Tablet affect my fertility?', 'There is no evidence that Lisinace 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisinace 5mg Tablet is not recommended in pregnancy.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22535, 'Lisinace 5mg Tablet', 'Alkem Laboratories Ltd', 'Lisinace 5mg Tablet', 'Can Lisinace 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisinace 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisinace 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22536, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'What is Lisir 10mg Tablet? What is it used for?', 'Lisir 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22537, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'What should I tell my doctor before taking Lisir 10mg Tablet?', 'Before taking Lisir 10mg Tablet you must tell your doctor if you are allergic to Lisir 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisir 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22538, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'What time of the day should I take Lisir 10mg Tablet?', 'Lisir 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisir 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisir 10mg Tablet, please consult your doctor.'),
(22539, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'I feel better after taking Lisir 10mg Tablet, can I stop taking it?', 'No, continue taking Lisir 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisir 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22540, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'Will Lisir 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisir 10mg Tablet may make you feel dizzy or lightheaded. If Lisir 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22541, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'What other lifestyle changes should I make while taking Lisir 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisir 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisir 10mg Tablet and to keep yourself healthy.'),
(22542, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'I have diabetes. Does Lisir 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisir 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22543, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'After starting Lisir 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisir 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisir 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisir 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22544, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'Can Lisir 10mg Tablet affect my fertility?', 'There is no evidence that Lisir 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisir 10mg Tablet is not recommended in pregnancy.'),
(22545, 'Lisir 10mg Tablet', 'Kopran Ltd', 'Lisir 10mg Tablet (Kopran Ltd)', 'Can Lisir 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisir 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisir 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22546, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What is Lisir 10mg Tablet? What is it used for?', 'Lisir 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22547, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What should I tell my doctor before taking Lisir 10mg Tablet?', 'Before taking Lisir 10mg Tablet you must tell your doctor if you are allergic to Lisir 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisir 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22548, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What time of the day should I take Lisir 10mg Tablet?', 'Lisir 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisir 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisir 10mg Tablet, please consult your doctor.'),
(22549, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'I feel better after taking Lisir 10mg Tablet, can I stop taking it?', 'No, continue taking Lisir 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisir 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22550, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'Will Lisir 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisir 10mg Tablet may make you feel dizzy or lightheaded. If Lisir 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22551, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What other lifestyle changes should I make while taking Lisir 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisir 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisir 10mg Tablet and to keep yourself healthy.'),
(22552, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'I have diabetes. Does Lisir 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisir 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22553, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'After starting Lisir 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisir 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisir 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisir 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22554, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'Can Lisir 10mg Tablet affect my fertility?', 'There is no evidence that Lisir 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisir 10mg Tablet is not recommended in pregnancy.'),
(22555, 'Lisir 10mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 10mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'Can Lisir 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisir 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisir 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22556, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'What is Lisir 2.5mg Tablet? What is it used for?', 'Lisir 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22557, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'What should I tell my doctor before taking Lisir 2.5mg Tablet?', 'Before taking Lisir 2.5mg Tablet you must tell your doctor if you are allergic to Lisir 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisir 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22558, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'What time of the day should I take Lisir 2.5mg Tablet?', 'Lisir 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisir 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisir 2.5mg Tablet, please consult your doctor.'),
(22559, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'I feel better after taking Lisir 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lisir 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisir 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22560, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'Will Lisir 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisir 2.5mg Tablet may make you feel dizzy or lightheaded. If Lisir 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22561, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lisir 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisir 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisir 2.5mg Tablet and to keep yourself healthy.'),
(22562, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'I have diabetes. Does Lisir 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisir 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22563, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'After starting Lisir 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisir 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisir 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisir 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22564, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'Can Lisir 2.5mg Tablet affect my fertility?', 'There is no evidence that Lisir 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisir 2.5mg Tablet is not recommended in pregnancy.'),
(22565, 'Lisir 2.5mg Tablet', 'Kopran Ltd', 'Lisir 2.5mg Tablet', 'Can Lisir 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lisir 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisir 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22566, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'What is Lisir 5mg Tablet? What is it used for?', 'Lisir 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22567, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'What should I tell my doctor before taking Lisir 5mg Tablet?', 'Before taking Lisir 5mg Tablet you must tell your doctor if you are allergic to Lisir 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisir 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22568, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'What time of the day should I take Lisir 5mg Tablet?', 'Lisir 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisir 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisir 5mg Tablet, please consult your doctor.'),
(22569, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'I feel better after taking Lisir 5mg Tablet, can I stop taking it?', 'No, continue taking Lisir 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisir 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22570, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'Will Lisir 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisir 5mg Tablet may make you feel dizzy or lightheaded. If Lisir 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22571, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'What other lifestyle changes should I make while taking Lisir 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisir 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisir 5mg Tablet and to keep yourself healthy.'),
(22572, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'I have diabetes. Does Lisir 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisir 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22573, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'After starting Lisir 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisir 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisir 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisir 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22574, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'Can Lisir 5mg Tablet affect my fertility?', 'There is no evidence that Lisir 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisir 5mg Tablet is not recommended in pregnancy.'),
(22575, 'Lisir 5mg Tablet', 'Kopran Ltd', 'Lisir 5mg Tablet (Kopran Ltd)', 'Can Lisir 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisir 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisir 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22576, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What is Lisir 5mg Tablet? What is it used for?', 'Lisir 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22577, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What should I tell my doctor before taking Lisir 5mg Tablet?', 'Before taking Lisir 5mg Tablet you must tell your doctor if you are allergic to Lisir 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisir 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22578, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What time of the day should I take Lisir 5mg Tablet?', 'Lisir 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisir 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisir 5mg Tablet, please consult your doctor.'),
(22579, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'I feel better after taking Lisir 5mg Tablet, can I stop taking it?', 'No, continue taking Lisir 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisir 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22580, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'Will Lisir 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisir 5mg Tablet may make you feel dizzy or lightheaded. If Lisir 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22581, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'What other lifestyle changes should I make while taking Lisir 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisir 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisir 5mg Tablet and to keep yourself healthy.'),
(22582, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'I have diabetes. Does Lisir 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisir 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22583, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'After starting Lisir 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisir 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisir 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisir 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22584, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'Can Lisir 5mg Tablet affect my fertility?', 'There is no evidence that Lisir 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisir 5mg Tablet is not recommended in pregnancy.'),
(22585, 'Lisir 5mg Tablet', 'Kramer Pharmaceuticals Pvt Ltd', 'Lisir 5mg Tablet (Kramer Pharmaceuticals Pvt Ltd)', 'Can Lisir 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisir 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisir 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22586, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'What is Lisiriv 5mg Tablet? What is it used for?', 'Lisiriv 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22587, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'What should I tell my doctor before taking Lisiriv 5mg Tablet?', 'Before taking Lisiriv 5mg Tablet you must tell your doctor if you are allergic to Lisiriv 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisiriv 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22588, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'What time of the day should I take Lisiriv 5mg Tablet?', 'Lisiriv 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisiriv 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisiriv 5mg Tablet, please consult your doctor.'),
(22589, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'I feel better after taking Lisiriv 5mg Tablet, can I stop taking it?', 'No, continue taking Lisiriv 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisiriv 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22590, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'Will Lisiriv 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisiriv 5mg Tablet may make you feel dizzy or lightheaded. If Lisiriv 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22591, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'What other lifestyle changes should I make while taking Lisiriv 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisiriv 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisiriv 5mg Tablet and to keep yourself healthy.'),
(22592, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'I have diabetes. Does Lisiriv 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisiriv 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22593, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'After starting Lisiriv 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisiriv 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisiriv 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisiriv 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22594, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'Can Lisiriv 5mg Tablet affect my fertility?', 'There is no evidence that Lisiriv 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisiriv 5mg Tablet is not recommended in pregnancy.'),
(22595, 'Lisiriv 5mg Tablet', 'East African (India) Overseas', 'Lisiriv 5mg Tablet', 'Can Lisiriv 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisiriv 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisiriv 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22596, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'What is Lisitec 10mg Tablet? What is it used for?', 'Lisitec 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22597, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'What should I tell my doctor before taking Lisitec 10mg Tablet?', 'Before taking Lisitec 10mg Tablet you must tell your doctor if you are allergic to Lisitec 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisitec 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22598, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'What time of the day should I take Lisitec 10mg Tablet?', 'Lisitec 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisitec 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisitec 10mg Tablet, please consult your doctor.'),
(22599, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'I feel better after taking Lisitec 10mg Tablet, can I stop taking it?', 'No, continue taking Lisitec 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisitec 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22600, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'Will Lisitec 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisitec 10mg Tablet may make you feel dizzy or lightheaded. If Lisitec 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22601, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'What other lifestyle changes should I make while taking Lisitec 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisitec 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisitec 10mg Tablet and to keep yourself healthy.'),
(22602, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'I have diabetes. Does Lisitec 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisitec 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22603, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'After starting Lisitec 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisitec 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisitec 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisitec 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22604, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'Can Lisitec 10mg Tablet affect my fertility?', 'There is no evidence that Lisitec 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisitec 10mg Tablet is not recommended in pregnancy.'),
(22605, 'Lisitec 10mg Tablet', 'Cipla Ltd', 'Lisitec 10mg Tablet', 'Can Lisitec 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisitec 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisitec 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22606, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'What is Lisitec 5mg Tablet? What is it used for?', 'Lisitec 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22607, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'What should I tell my doctor before taking Lisitec 5mg Tablet?', 'Before taking Lisitec 5mg Tablet you must tell your doctor if you are allergic to Lisitec 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisitec 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22608, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'What time of the day should I take Lisitec 5mg Tablet?', 'Lisitec 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisitec 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisitec 5mg Tablet, please consult your doctor.'),
(22609, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'I feel better after taking Lisitec 5mg Tablet, can I stop taking it?', 'No, continue taking Lisitec 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisitec 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22610, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'Will Lisitec 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisitec 5mg Tablet may make you feel dizzy or lightheaded. If Lisitec 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22611, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'What other lifestyle changes should I make while taking Lisitec 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisitec 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisitec 5mg Tablet and to keep yourself healthy.'),
(22612, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'I have diabetes. Does Lisitec 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisitec 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22613, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'After starting Lisitec 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisitec 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisitec 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisitec 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22614, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'Can Lisitec 5mg Tablet affect my fertility?', 'There is no evidence that Lisitec 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisitec 5mg Tablet is not recommended in pregnancy.'),
(22615, 'Lisitec 5mg Tablet', 'Cipla Ltd', 'Lisitec 5mg Tablet', 'Can Lisitec 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisitec 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisitec 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22616, 'Lisnol 5mg Tablet', 'Oddiant Formulations', 'Lisnol 5mg Tablet', 'Can Lisnol 5mg Tablet be used as a birth control medicine?', 'No, Lisnol 5mg Tablet cannot be used as a birth control medicine. It is a hormone preparation used to treat repeated miscarriages and to prevent premature birth in pregnant women. You may need to use contraceptive methods to avoid pregnancy. Consult with your doctor to seek options for contraceptives.'),
(22617, 'Lisnol 5mg Tablet', 'Oddiant Formulations', 'Lisnol 5mg Tablet', 'In what conditions Lisnol 5mg Tablet should be avoided?', 'This medicine should not be used in patients with a history of blood clot events, severe liver disease, incomplete abortion, hormone-dependent carcinoma, and hypersensitivity.'),
(22618, 'Lisnol 5mg Tablet', 'Oddiant Formulations', 'Lisnol 5mg Tablet', 'I have started feeling depressed after taking Lisnol 5mg Tablet? Is this normal?', 'Depression is one of the common side-effects of this medicine. It is advisable to inform your doctor immediately if you get thoughts about harming yourself. He/she might suggest a suitable alternative based on your condition.'),
(22619, 'Lisnol 5mg Tablet', 'Oddiant Formulations', 'Lisnol 5mg Tablet', 'What are the functions of natural progesterone?', 'Progesterone helps prepare your body for conception and pregnancy and regulates the monthly menstrual cycle. One of progesterone\'s most important functions is its role in thickening the lining of the uterus each month. The enriched endometrial lining is prepared to receive and nourish a fertilized egg in pregnant women.'),
(22620, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'What is Lisnovaz 5mg Tablet? What is it used for?', 'Lisnovaz 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22621, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'What should I tell my doctor before taking Lisnovaz 5mg Tablet?', 'Before taking Lisnovaz 5mg Tablet you must tell your doctor if you are allergic to Lisnovaz 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisnovaz 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22622, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'What time of the day should I take Lisnovaz 5mg Tablet?', 'Lisnovaz 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisnovaz 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisnovaz 5mg Tablet, please consult your doctor.'),
(22623, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'I feel better after taking Lisnovaz 5mg Tablet, can I stop taking it?', 'No, continue taking Lisnovaz 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisnovaz 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22624, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'Will Lisnovaz 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisnovaz 5mg Tablet may make you feel dizzy or lightheaded. If Lisnovaz 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22625, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'What other lifestyle changes should I make while taking Lisnovaz 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisnovaz 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisnovaz 5mg Tablet and to keep yourself healthy.'),
(22626, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'I have diabetes. Does Lisnovaz 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisnovaz 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22627, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'After starting Lisnovaz 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisnovaz 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisnovaz 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisnovaz 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22628, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'Can Lisnovaz 5mg Tablet affect my fertility?', 'There is no evidence that Lisnovaz 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisnovaz 5mg Tablet is not recommended in pregnancy.'),
(22629, 'Lisnovaz 5mg Tablet', 'Edinburgh Pharmaceuticals', 'Lisnovaz 5mg Tablet', 'Can Lisnovaz 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisnovaz 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisnovaz 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22630, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'What should I tell my doctor before taking Lisobil 2MIU Injection?', 'Before taking Lisobil 2MIU Injection, you must tell your doctor if you have or ever had any problems related to your kidneys or lungs (such as asthma). Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(22631, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'How is Lisobil 2MIU Injection administered?', 'Lisobil 2MIU Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lisobil 2MIU Injection.'),
(22632, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'Who should not use Lisobil 2MIU Injection?', 'Use of Lisobil 2MIU Injection should be avoided in patients who are allergic to Lisobil 2MIU Injection or any of its components. However, if you are not aware of any allergy or if you are using Lisobil 2MIU Injection for the first time, consult your doctor.'),
(22633, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'Can I take Lisobil 2MIU Injection in pregnancy?', 'Enough evidence is not available to provide clarity on the use of Lisobil 2MIU Injection in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Lisobil 2MIU Injection. You may take it only if prescribed by your doctor.'),
(22634, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'Is Lisobil 2MIU Injection safe?', 'Lisobil 2MIU Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22635, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'What should I tell my doctor before taking Lisobil 2MIU Injection?', 'Before taking Lisobil 2MIU Injection, you must tell your doctor if you have or ever had any problems related to your kidneys or lungs (such as asthma). Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(22636, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'How is Lisobil 2MIU Injection administered?', 'Lisobil 2MIU Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lisobil 2MIU Injection.'),
(22637, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'Who should not use Lisobil 2MIU Injection?', 'Use of Lisobil 2MIU Injection should be avoided in patients who are allergic to Lisobil 2MIU Injection or any of its components. However, if you are not aware of any allergy or if you are using Lisobil 2MIU Injection for the first time, consult your doctor.'),
(22638, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'Can I take Lisobil 2MIU Injection in pregnancy?', 'Enough evidence is not available to provide clarity on the use of Lisobil 2MIU Injection in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Lisobil 2MIU Injection. You may take it only if prescribed by your doctor.'),
(22639, 'Lisobil 2MIU Injection', 'Wonne International', 'Lisobil 2MIU Injection', 'Is Lisobil 2MIU Injection safe?', 'Lisobil 2MIU Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22640, 'Lisod 300 Tablet', 'Sepik Life Sciences', 'Lisod 300 Tablet', 'When should I take Lisod 300 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Lisod 300 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(22641, 'Lisod 300 Tablet', 'Sepik Life Sciences', 'Lisod 300 Tablet', 'Is Lisod 300 Tablet safe?', 'Lisod 300 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(22642, 'Lisod 300 Tablet', 'Sepik Life Sciences', 'Lisod 300 Tablet', 'How does Lisod 300 Tablet help the liver?', 'Lisod 300 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(22643, 'Lisod 300 Tablet', 'Sepik Life Sciences', 'Lisod 300 Tablet', 'Does Lisod 300 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Lisod 300 Tablet, but it is not common. The use of Lisod 300 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(22644, 'Lisod 300 Tablet', 'Sepik Life Sciences', 'Lisod 300 Tablet', 'What should I avoid while taking Lisod 300 Tablet?', 'While taking Lisod 300 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Lisod 300 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Lisod 300 Tablet. So, ask your doctor about the time gap that should be maintained between Lisod 300 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Lisod 300 Tablet.'),
(22645, 'Lisom 150 Tablet', 'Scot Derma Private Limited', 'Lisom 150 Tablet', 'Is Lisom 150 Tablet effective?', 'Lisom 150 Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lisom 150 Tablet too early, the symptoms may return or worsen.'),
(22646, 'Lisom 150 Tablet', 'Scot Derma Private Limited', 'Lisom 150 Tablet', 'Can the use of Lisom 150 Tablet cause dizziness?', 'Yes, Lisom 150 Tablet can make you feel dizzy. Avoid driving, operating on machinery, working at heights or participating or participating in potentially dangerous activities, especially during the initial days of your treatment. However, if your condition does not improve, consult your doctor.'),
(22647, 'Lisom 150 Tablet', 'Scot Derma Private Limited', 'Lisom 150 Tablet', 'Are there any specific conditions where Lisom 150 Tablet should be avoided?', 'The use of Lisom 150 Tablet should be avoided in patients with known allergy to any other ingredients of this medicine. Also, patients who are suffering from asthma should refrain from using Lisom 150 Tablet. Therefore, inform your doctor if you have or had any medical condition before starting your treatment with Lisom 150 Tablet.'),
(22648, 'Lisom 150 Tablet', 'Scot Derma Private Limited', 'Lisom 150 Tablet', 'What are the instructions for storage and disposal of Lisom 150 Tablet?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22649, 'Lisom 150 Tablet', 'Scot Derma Private Limited', 'Lisom 150 Tablet', 'What if I forget to take a dose of Lisom 150 Tablet?', 'If you forget a dose of Lisom 150 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(22650, 'Lisom 150 Tablet', 'Scot Derma Private Limited', 'Lisom 150 Tablet', 'Is Lisom 150 Tablet safe?', 'Lisom 150 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22651, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'What is Lisonim P 100mg/325mg Tablet?', 'Lisonim P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(22652, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'Can I stop taking Lisonim P 100mg/325mg Tablet when my pain is relieved?', 'Lisonim P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(22653, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'Can the use of Lisonim P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lisonim P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(22654, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lisonim P 100mg/325mg Tablet?', 'The use of Lisonim P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(22655, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'Can I take Lisonim P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Lisonim P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lisonim P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(22656, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'Does Lisonim P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Lisonim P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(22657, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'Can the use of Lisonim P 100mg/325mg Tablet cause damage to the liver?', 'Lisonim P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(22658, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lisonim P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Lisonim P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(22659, 'Lisonim P 100mg/325mg Tablet', 'Medrid Life Sciences', 'Lisonim P 100mg/325mg Tablet', 'What are the recommended storage conditions for Lisonim P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22660, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'What is Lisonol 10 Tablet? What is it used for?', 'Lisonol 10 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22661, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'What should I tell my doctor before taking Lisonol 10 Tablet?', 'Before taking Lisonol 10 Tablet you must tell your doctor if you are allergic to Lisonol 10 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisonol 10 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22662, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'What time of the day should I take Lisonol 10 Tablet?', 'Lisonol 10 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisonol 10 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisonol 10 Tablet, please consult your doctor.'),
(22663, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'I feel better after taking Lisonol 10 Tablet, can I stop taking it?', 'No, continue taking Lisonol 10 Tablet even if you feel better and your blood pressure is under control. Stopping Lisonol 10 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22664, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'Will Lisonol 10 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisonol 10 Tablet may make you feel dizzy or lightheaded. If Lisonol 10 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22665, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'What other lifestyle changes should I make while taking Lisonol 10 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisonol 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisonol 10 Tablet and to keep yourself healthy.'),
(22666, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'I have diabetes. Does Lisonol 10 Tablet have any effect on blood sugar levels?', 'Yes, Lisonol 10 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22667, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'After starting Lisonol 10 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisonol 10 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisonol 10 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisonol 10 Tablet, the cough may take a few days to a month to resolve completely.'),
(22668, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'Can Lisonol 10 Tablet affect my fertility?', 'There is no evidence that Lisonol 10 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisonol 10 Tablet is not recommended in pregnancy.'),
(22669, 'Lisonol 10 Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 10 Tablet', 'Can Lisonol 10 Tablet increase potassium levels? If so, what should be done?', 'Lisonol 10 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisonol 10 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22670, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'What is Lisonol 2.5mg Tablet? What is it used for?', 'Lisonol 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22671, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'What should I tell my doctor before taking Lisonol 2.5mg Tablet?', 'Before taking Lisonol 2.5mg Tablet you must tell your doctor if you are allergic to Lisonol 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisonol 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22672, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'What time of the day should I take Lisonol 2.5mg Tablet?', 'Lisonol 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisonol 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisonol 2.5mg Tablet, please consult your doctor.'),
(22673, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'I feel better after taking Lisonol 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lisonol 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisonol 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22674, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'Will Lisonol 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisonol 2.5mg Tablet may make you feel dizzy or lightheaded. If Lisonol 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22675, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lisonol 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisonol 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisonol 2.5mg Tablet and to keep yourself healthy.'),
(22676, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'I have diabetes. Does Lisonol 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisonol 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22677, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'After starting Lisonol 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisonol 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisonol 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisonol 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22678, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'Can Lisonol 2.5mg Tablet affect my fertility?', 'There is no evidence that Lisonol 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisonol 2.5mg Tablet is not recommended in pregnancy.'),
(22679, 'Lisonol 2.5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 2.5mg Tablet', 'Can Lisonol 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lisonol 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisonol 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22680, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'What is Lisonol 5mg Tablet? What is it used for?', 'Lisonol 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22681, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'What should I tell my doctor before taking Lisonol 5mg Tablet?', 'Before taking Lisonol 5mg Tablet you must tell your doctor if you are allergic to Lisonol 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisonol 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22682, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'What time of the day should I take Lisonol 5mg Tablet?', 'Lisonol 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisonol 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisonol 5mg Tablet, please consult your doctor.'),
(22683, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'I feel better after taking Lisonol 5mg Tablet, can I stop taking it?', 'No, continue taking Lisonol 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisonol 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22684, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'Will Lisonol 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisonol 5mg Tablet may make you feel dizzy or lightheaded. If Lisonol 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22685, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'What other lifestyle changes should I make while taking Lisonol 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisonol 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisonol 5mg Tablet and to keep yourself healthy.'),
(22686, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'I have diabetes. Does Lisonol 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisonol 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22687, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'After starting Lisonol 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisonol 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisonol 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisonol 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22688, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'Can Lisonol 5mg Tablet affect my fertility?', 'There is no evidence that Lisonol 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisonol 5mg Tablet is not recommended in pregnancy.'),
(22689, 'Lisonol 5mg Tablet', 'Knoll Pharmaceuticals Ltd', 'Lisonol 5mg Tablet', 'Can Lisonol 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisonol 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisonol 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22690, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'What is Lisoril 20mg Tablet? What is it used for?', 'Lisoril 20mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22691, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'What should I tell my doctor before taking Lisoril 20mg Tablet?', 'Before taking Lisoril 20mg Tablet you must tell your doctor if you are allergic to Lisoril 20mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisoril 20mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22692, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'What time of the day should I take Lisoril 20mg Tablet?', 'Lisoril 20mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisoril 20mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisoril 20mg Tablet, please consult your doctor.'),
(22693, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'I feel better after taking Lisoril 20mg Tablet, can I stop taking it?', 'No, continue taking Lisoril 20mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisoril 20mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22694, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'Will Lisoril 20mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisoril 20mg Tablet may make you feel dizzy or lightheaded. If Lisoril 20mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22695, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'What other lifestyle changes should I make while taking Lisoril 20mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisoril 20mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisoril 20mg Tablet and to keep yourself healthy.'),
(22696, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'I have diabetes. Does Lisoril 20mg Tablet have any effect on blood sugar levels?', 'Yes, Lisoril 20mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22697, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'After starting Lisoril 20mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisoril 20mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisoril 20mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisoril 20mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22698, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'Can Lisoril 20mg Tablet affect my fertility?', 'There is no evidence that Lisoril 20mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisoril 20mg Tablet is not recommended in pregnancy.'),
(22699, 'Lisoril 20mg Tablet', 'Ipca Laboratories Ltd', 'Lisoril 20mg Tablet', 'Can Lisoril 20mg Tablet increase potassium levels? If so, what should be done?', 'Lisoril 20mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisoril 20mg Tablet, be careful and get regular blood tests done to monitor potassium levels.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22700, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'What is Lisoz D 30mg/40mg Capsule SR?', 'Lisoz D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Esomeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(22701, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'Is it safe to use Lisoz D 30mg/40mg Capsule SR?', 'Yes, Lisoz D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhoea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(22702, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'What is the best time to take Lisoz D 30mg/40mg Capsule SR?', 'It is best to take Lisoz D 30mg/40mg Capsule SR before the first meal of the day or on an empty stomach.'),
(22703, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'Can the use of Lisoz D 30mg/40mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Lisoz D 30mg/40mg Capsule SR can increase the risk of irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(22704, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'What are the contraindications associated with the use of Lisoz D 30mg/40mg Capsule SR?', 'The use of Lisoz D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(22705, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'Can the use of Lisoz D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Lisoz D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(22706, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'Can the use of Lisoz D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Lisoz D 30mg/40mg Capsule SR can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and if you notice signs of dehydration, like less frequency of urination and dark colored and strong-smelling urine. Avoid taking fatty or fried foods with this medication. Also, do not take any medicines without consulting the doctor.'),
(22707, 'Lisoz D 30mg/40mg Capsule SR', 'Yodley Life Sciences Private Limited', 'Lisoz D 30mg/40mg Capsule SR', 'What are the storage conditions for Lisoz D 30mg/40mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22708, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'What is Lisozol 10mg Tablet? What is it used for?', 'Lisozol 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22709, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'What should I tell my doctor before taking Lisozol 10mg Tablet?', 'Before taking Lisozol 10mg Tablet you must tell your doctor if you are allergic to Lisozol 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisozol 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22710, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'What time of the day should I take Lisozol 10mg Tablet?', 'Lisozol 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisozol 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisozol 10mg Tablet, please consult your doctor.'),
(22711, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'I feel better after taking Lisozol 10mg Tablet, can I stop taking it?', 'No, continue taking Lisozol 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisozol 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22712, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'Will Lisozol 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisozol 10mg Tablet may make you feel dizzy or lightheaded. If Lisozol 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22713, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'What other lifestyle changes should I make while taking Lisozol 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisozol 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisozol 10mg Tablet and to keep yourself healthy.'),
(22714, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'I have diabetes. Does Lisozol 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisozol 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22715, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'After starting Lisozol 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisozol 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisozol 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisozol 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22716, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'Can Lisozol 10mg Tablet affect my fertility?', 'There is no evidence that Lisozol 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisozol 10mg Tablet is not recommended in pregnancy.'),
(22717, 'Lisozol 10mg Tablet', 'Shinto Organics (P) Limited', 'Lisozol 10mg Tablet', 'Can Lisozol 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisozol 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisozol 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22718, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'What is Lisp 120mg Tablet used for?', 'Lisp 120mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(22719, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'What should I tell my doctor before starting treatment with Lisp 120mg Tablet?', 'Before starting treatment with Lisp 120mg Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(22720, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'What if I forget to take a dose of Lisp 120mg Tablet?', 'If you forget a dose of Lisp 120mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(22721, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'Who should not take Lisp 120mg Tablet?', 'Lisp 120mg Tablet should not be given to patients with known allergy to any other ingredients of this medicine. Signs of an allergic reaction may include an itchy skin rash, shortness of breath, and swelling of the face or tongue.'),
(22722, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'Can I stop taking Lisp 120mg Tablet if I feel better?', 'No. You should not stop taking Lisp 120mg Tablet even if you feel better unless your doctor tells you to stop taking it. This is because, stopping the medicine suddenly, without completing your full course of treatment may cause the returning of your symptoms and it can even worsen your condition. Consult your doctor if you are not sure.'),
(22723, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'Is Lisp 120mg Tablet an antibiotic?', 'No. Lisp 120mg Tablet is not an antibiotic. It is an anti-allergy medicine and helps to treat allergic conditions such as sneezing, stuffy or runny nose, hives, etc. On the other hand, antibiotics are used to treat infections caused by bacteria.'),
(22724, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'Can Lisp 120mg Tablet cause dizziness?', 'Yes, Lisp 120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, do not drive or use any machines. It is better to rest for some time and resume once you feel better.'),
(22725, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'What is Lisp 120mg Tablet used for?', 'Lisp 120mg Tablet is used for treating seasonal allergic conditions such as hay fever. It helps to relieve allergies of the nose (allergic rhinitis), sneezing, runny nose, itching in the eyes, excessively watery eyes, etc.'),
(22726, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'What should I tell my doctor before starting treatment with Lisp 120mg Tablet?', 'Before starting treatment with Lisp 120mg Tablet, tell your doctor if you have any other health problems, like kidneys, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Additionally, let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you are planning a baby, are pregnant, or breastfeeding.'),
(22727, 'Lisp 120mg Tablet', 'Jasco Labs Pvt Ltd', 'Lisp 120mg Tablet', 'What if I forget to take a dose of Lisp 120mg Tablet?', 'If you forget a dose of Lisp 120mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(22728, 'Lispas D 80mg/250mg Tablet', 'Life Guard Pharma', 'Lispas D 80mg/250mg Tablet', 'What is Lispas D 80mg/250mg Tablet?', 'Lispas D 80mg/250mg Tablet is a combination of two medicines: Drotaverine and Mefenamic acid. This medication helps to relieve abdominal pain. Drotaverine relieves muscle spasms associated with smooth muscles in the abdomen. Mefenamic Acid works by blocking the release of certain chemical messengers that cause pain and inflammation (swelling).'),
(22729, 'Lispas D 80mg/250mg Tablet', 'Life Guard Pharma', 'Lispas D 80mg/250mg Tablet', 'Is it safe to use Lispas D 80mg/250mg Tablet?', 'Yes, Lispas D 80mg/250mg Tablet is safe for most of the patients with abdominal pain. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, diarrhoea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(22730, 'Lispas D 80mg/250mg Tablet', 'Life Guard Pharma', 'Lispas D 80mg/250mg Tablet', 'Can I stop taking Lispas D 80mg/250mg Tablet when my pain is relieved?', 'Lispas D 80mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lispas D 80mg/250mg Tablet should be continued if your physician has advised you to do so.'),
(22731, 'Lispas D 80mg/250mg Tablet', 'Life Guard Pharma', 'Lispas D 80mg/250mg Tablet', 'Can the use of Lispas D 80mg/250mg Tablet cause nausea and vomiting?', 'Yes, the use of Lispas D 80mg/250mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Also, avoid taking fatty or fried foods along with the medicine. Talk to your doctor if you have vomiting persists and you notice any signs of dehydration like less urination with dark coloured and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(22732, 'Lispas D 80mg/250mg Tablet', 'Life Guard Pharma', 'Lispas D 80mg/250mg Tablet', 'Can the use of Lispas D 80mg/250mg Tablet cause dry mouth?', 'Yes, the use of Lispas D 80mg/250mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Avoid spicy, salty and acidic foods (like lemons).'),
(22733, 'Lispas D 80mg/250mg Tablet', 'Life Guard Pharma', 'Lispas D 80mg/250mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, do not take a higher than the recommended dose of Lispas D 80mg/250mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(22734, 'Lispas D 80mg/250mg Tablet', 'Life Guard Pharma', 'Lispas D 80mg/250mg Tablet', 'What are the recommended storage conditions for Lispas D 80mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22735, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'What is Lispres 10mg Tablet? What is it used for?', 'Lispres 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22736, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'What should I tell my doctor before taking Lispres 10mg Tablet?', 'Before taking Lispres 10mg Tablet you must tell your doctor if you are allergic to Lispres 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lispres 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22737, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'What time of the day should I take Lispres 10mg Tablet?', 'Lispres 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lispres 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lispres 10mg Tablet, please consult your doctor.'),
(22738, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'I feel better after taking Lispres 10mg Tablet, can I stop taking it?', 'No, continue taking Lispres 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lispres 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22739, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'Will Lispres 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lispres 10mg Tablet may make you feel dizzy or lightheaded. If Lispres 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22740, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'What other lifestyle changes should I make while taking Lispres 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lispres 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lispres 10mg Tablet and to keep yourself healthy.'),
(22741, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'I have diabetes. Does Lispres 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lispres 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22742, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'After starting Lispres 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lispres 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lispres 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lispres 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22743, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'Can Lispres 10mg Tablet affect my fertility?', 'There is no evidence that Lispres 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lispres 10mg Tablet is not recommended in pregnancy.'),
(22744, 'Lispres 10mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 10mg Tablet', 'Can Lispres 10mg Tablet increase potassium levels? If so, what should be done?', 'Lispres 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lispres 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22745, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'What is Lispres 2.5mg Tablet? What is it used for?', 'Lispres 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22746, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'What should I tell my doctor before taking Lispres 2.5mg Tablet?', 'Before taking Lispres 2.5mg Tablet you must tell your doctor if you are allergic to Lispres 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lispres 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22747, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'What time of the day should I take Lispres 2.5mg Tablet?', 'Lispres 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lispres 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lispres 2.5mg Tablet, please consult your doctor.'),
(22748, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'I feel better after taking Lispres 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lispres 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lispres 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22749, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'Will Lispres 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lispres 2.5mg Tablet may make you feel dizzy or lightheaded. If Lispres 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22750, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lispres 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lispres 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lispres 2.5mg Tablet and to keep yourself healthy.'),
(22751, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'I have diabetes. Does Lispres 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lispres 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22752, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'After starting Lispres 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lispres 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lispres 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lispres 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22753, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'Can Lispres 2.5mg Tablet affect my fertility?', 'There is no evidence that Lispres 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lispres 2.5mg Tablet is not recommended in pregnancy.'),
(22754, 'Lispres 2.5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 2.5mg Tablet', 'Can Lispres 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lispres 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lispres 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22755, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'What is Lispres 5mg Tablet? What is it used for?', 'Lispres 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22756, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'What should I tell my doctor before taking Lispres 5mg Tablet?', 'Before taking Lispres 5mg Tablet you must tell your doctor if you are allergic to Lispres 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lispres 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22757, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'What time of the day should I take Lispres 5mg Tablet?', 'Lispres 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lispres 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lispres 5mg Tablet, please consult your doctor.'),
(22758, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'I feel better after taking Lispres 5mg Tablet, can I stop taking it?', 'No, continue taking Lispres 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lispres 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22759, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'Will Lispres 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lispres 5mg Tablet may make you feel dizzy or lightheaded. If Lispres 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22760, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'What other lifestyle changes should I make while taking Lispres 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lispres 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lispres 5mg Tablet and to keep yourself healthy.'),
(22761, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'I have diabetes. Does Lispres 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lispres 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22762, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'After starting Lispres 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lispres 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lispres 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lispres 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22763, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'Can Lispres 5mg Tablet affect my fertility?', 'There is no evidence that Lispres 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lispres 5mg Tablet is not recommended in pregnancy.'),
(22764, 'Lispres 5mg Tablet', 'J B Chemicals and Pharmaceuticals Ltd', 'Lispres 5mg Tablet', 'Can Lispres 5mg Tablet increase potassium levels? If so, what should be done?', 'Lispres 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lispres 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22765, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'What is Lispro 10 Tablet? What is it used for?', 'Lispro 10 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22766, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'What should I tell my doctor before taking Lispro 10 Tablet?', 'Before taking Lispro 10 Tablet you must tell your doctor if you are allergic to Lispro 10 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lispro 10 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22767, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'What time of the day should I take Lispro 10 Tablet?', 'Lispro 10 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lispro 10 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lispro 10 Tablet, please consult your doctor.'),
(22768, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'I feel better after taking Lispro 10 Tablet, can I stop taking it?', 'No, continue taking Lispro 10 Tablet even if you feel better and your blood pressure is under control. Stopping Lispro 10 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22769, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'Will Lispro 10 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lispro 10 Tablet may make you feel dizzy or lightheaded. If Lispro 10 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22770, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'What other lifestyle changes should I make while taking Lispro 10 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lispro 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lispro 10 Tablet and to keep yourself healthy.'),
(22771, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'I have diabetes. Does Lispro 10 Tablet have any effect on blood sugar levels?', 'Yes, Lispro 10 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22772, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'After starting Lispro 10 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lispro 10 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lispro 10 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lispro 10 Tablet, the cough may take a few days to a month to resolve completely.'),
(22773, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'Can Lispro 10 Tablet affect my fertility?', 'There is no evidence that Lispro 10 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lispro 10 Tablet is not recommended in pregnancy.'),
(22774, 'Lispro 10 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 10 Tablet', 'Can Lispro 10 Tablet increase potassium levels? If so, what should be done?', 'Lispro 10 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lispro 10 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22775, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'What is Lispro 2.5mg Tablet? What is it used for?', 'Lispro 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22776, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'What should I tell my doctor before taking Lispro 2.5mg Tablet?', 'Before taking Lispro 2.5mg Tablet you must tell your doctor if you are allergic to Lispro 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lispro 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22777, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'What time of the day should I take Lispro 2.5mg Tablet?', 'Lispro 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lispro 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lispro 2.5mg Tablet, please consult your doctor.'),
(22778, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'I feel better after taking Lispro 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lispro 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lispro 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22779, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'Will Lispro 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lispro 2.5mg Tablet may make you feel dizzy or lightheaded. If Lispro 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22780, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lispro 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lispro 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lispro 2.5mg Tablet and to keep yourself healthy.'),
(22781, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'I have diabetes. Does Lispro 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lispro 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22782, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'After starting Lispro 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lispro 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lispro 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lispro 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22783, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'Can Lispro 2.5mg Tablet affect my fertility?', 'There is no evidence that Lispro 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lispro 2.5mg Tablet is not recommended in pregnancy.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22784, 'Lispro 2.5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 2.5mg Tablet', 'Can Lispro 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lispro 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lispro 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22785, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'What is Lispro 5mg Tablet? What is it used for?', 'Lispro 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22786, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'What should I tell my doctor before taking Lispro 5mg Tablet?', 'Before taking Lispro 5mg Tablet you must tell your doctor if you are allergic to Lispro 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lispro 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22787, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'What time of the day should I take Lispro 5mg Tablet?', 'Lispro 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lispro 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lispro 5mg Tablet, please consult your doctor.'),
(22788, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'I feel better after taking Lispro 5mg Tablet, can I stop taking it?', 'No, continue taking Lispro 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lispro 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22789, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'Will Lispro 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lispro 5mg Tablet may make you feel dizzy or lightheaded. If Lispro 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22790, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'What other lifestyle changes should I make while taking Lispro 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lispro 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lispro 5mg Tablet and to keep yourself healthy.'),
(22791, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'I have diabetes. Does Lispro 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lispro 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22792, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'After starting Lispro 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lispro 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lispro 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lispro 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22793, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'Can Lispro 5mg Tablet affect my fertility?', 'There is no evidence that Lispro 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lispro 5mg Tablet is not recommended in pregnancy.'),
(22794, 'Lispro 5mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lispro 5mg Tablet', 'Can Lispro 5mg Tablet increase potassium levels? If so, what should be done?', 'Lispro 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lispro 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22795, 'Lisr 400 Tablet', 'Alteus Biogenics Pvt Ltd', 'Lisr 400 Tablet', 'Q. How quickly does Lisr 400 Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lisr 400 Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lisr 400 Tablet. Do not stop taking Lisr 400 Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(22796, 'Lisr 400 Tablet', 'Alteus Biogenics Pvt Ltd', 'Lisr 400 Tablet', 'Q. Does Lisr 400 Tablet make you sleepy?', 'Yes, Lisr 400 Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(22797, 'Lisr 400 Tablet', 'Alteus Biogenics Pvt Ltd', 'Lisr 400 Tablet', 'Q. Is Lisr 400 Tablet bad for kidneys?', 'Yes, Lisr 400 Tablet may cause kidney problems. Lisr 400 Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lisr 400 Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lisr 400 Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(22798, 'Lisr 400 Tablet', 'Alteus Biogenics Pvt Ltd', 'Lisr 400 Tablet', 'Q. Can Lisr 400 Tablet cause gain in weight?', 'Lisr 400 Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lisr 400 Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lisr 400 Tablet or some other reason.'),
(22799, 'Lisr 400 Tablet', 'Alteus Biogenics Pvt Ltd', 'Lisr 400 Tablet', 'Q. What is the most important information I should know about Lisr 400 Tablet?', 'Lisr 400 Tablet therapy should only be started if adequate facilities for assessing Lisr 400 Tablet levels are available. This is because Lisr 400 Tablet toxicity is related to increased levels of Lisr 400 Tablet in blood. Lisr 400 Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lisr 400 Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(22800, 'Lisr 400 Tablet', 'Alteus Biogenics Pvt Ltd', 'Lisr 400 Tablet', 'Q. How should Lisr 400 Tablet be taken?', 'Take Lisr 400 Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lisr 400 Tablet levels.'),
(22801, 'Lisr 400 Tablet', 'Alteus Biogenics Pvt Ltd', 'Lisr 400 Tablet', 'Q. Which medicines decrease Lisr 400 Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lisr 400 Tablet since many medicines interfere with the working of Lisr 400 Tablet. Some medicines decrease the levels of Lisr 400 Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(22802, 'Lisr 400mg Tablet SR', 'Alteus Biogenics Pvt Ltd', 'Lisr 400mg Tablet SR', 'Q. How quickly does Lisr 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lisr 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lisr 400mg Tablet SR. Do not stop taking Lisr 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(22803, 'Lisr 400mg Tablet SR', 'Alteus Biogenics Pvt Ltd', 'Lisr 400mg Tablet SR', 'Q. Does Lisr 400mg Tablet SR make you sleepy?', 'Yes, Lisr 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(22804, 'Lisr 400mg Tablet SR', 'Alteus Biogenics Pvt Ltd', 'Lisr 400mg Tablet SR', 'Q. Is Lisr 400mg Tablet SR bad for kidneys?', 'Yes, Lisr 400mg Tablet SR may cause kidney problems. Lisr 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lisr 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lisr 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(22805, 'Lisr 400mg Tablet SR', 'Alteus Biogenics Pvt Ltd', 'Lisr 400mg Tablet SR', 'Q. Can Lisr 400mg Tablet SR cause gain in weight?', 'Lisr 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lisr 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lisr 400mg Tablet SR or some other reason.'),
(22806, 'Lisr 400mg Tablet SR', 'Alteus Biogenics Pvt Ltd', 'Lisr 400mg Tablet SR', 'Q. What is the most important information I should know about Lisr 400mg Tablet SR?', 'Lisr 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lisr 400mg Tablet SR levels are available. This is because Lisr 400mg Tablet SR toxicity is related to increased levels of Lisr 400mg Tablet SR in blood. Lisr 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lisr 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(22807, 'Lisr 400mg Tablet SR', 'Alteus Biogenics Pvt Ltd', 'Lisr 400mg Tablet SR', 'Q. How should Lisr 400mg Tablet SR be taken?', 'Take Lisr 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lisr 400mg Tablet SR levels.'),
(22808, 'Lisr 400mg Tablet SR', 'Alteus Biogenics Pvt Ltd', 'Lisr 400mg Tablet SR', 'Q. Which medicines decrease Lisr 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lisr 400mg Tablet SR since many medicines interfere with the working of Lisr 400mg Tablet SR. Some medicines decrease the levels of Lisr 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(22809, 'Lisra LS 75mg/20mg Capsule', 'Lister Life Sciences', 'Lisra LS 75mg/20mg Capsule', 'Which is the best time to take Lisra LS 75mg/20mg Capsule?', 'Take the Lisra LS 75mg/20mg Capsule exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(22810, 'Lisra LS 75mg/20mg Capsule', 'Lister Life Sciences', 'Lisra LS 75mg/20mg Capsule', 'What are the contraindications associated with the use of Lisra LS 75mg/20mg Capsule?', 'Use of Lisra LS 75mg/20mg Capsule should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(22811, 'Lisra LS 75mg/20mg Capsule', 'Lister Life Sciences', 'Lisra LS 75mg/20mg Capsule', 'Can the use of Lisra LS 75mg/20mg Capsule cause dizziness?', 'Yes, the use of Lisra LS 75mg/20mg Capsule can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(22812, 'Lisra LS 75mg/20mg Capsule', 'Lister Life Sciences', 'Lisra LS 75mg/20mg Capsule', 'Does the use of Lisra LS 75mg/20mg Capsule lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Lisra LS 75mg/20mg Capsule may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(22813, 'Lisra LS 75mg/20mg Capsule', 'Lister Life Sciences', 'Lisra LS 75mg/20mg Capsule', 'Can I drive while taking Lisra LS 75mg/20mg Capsule?', 'No, taking Lisra LS 75mg/20mg Capsule may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(22814, 'Lisra LS 75mg/20mg Capsule', 'Lister Life Sciences', 'Lisra LS 75mg/20mg Capsule', 'What are the instructions for the storage and disposal of Lisra LS 75mg/20mg Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22815, 'List 5mg Tablet', 'Gates India Pvt Ltd', 'List 5mg Tablet', 'Is List 5mg Tablet a steroid? What is it used for?', 'No, List 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(22816, 'List 5mg Tablet', 'Gates India Pvt Ltd', 'List 5mg Tablet', 'Does List 5mg Tablet make you tired and drowsy?', 'Yes, List 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(22817, 'List 5mg Tablet', 'Gates India Pvt Ltd', 'List 5mg Tablet', 'How long does it take for List 5mg Tablet to work?', 'List 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(22818, 'List 5mg Tablet', 'Gates India Pvt Ltd', 'List 5mg Tablet', 'Can I take List 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking List 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(22819, 'List 5mg Tablet', 'Gates India Pvt Ltd', 'List 5mg Tablet', 'Is it safe to take List 5mg Tablet for a long time?', 'List 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take List 5mg Tablet for only as long as you need it.'),
(22820, 'List 5mg Tablet', 'Gates India Pvt Ltd', 'List 5mg Tablet', 'For how long should I continue List 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take List 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using List 5mg Tablet'),
(22821, 'List M 5mg/10mg Tablet', 'Byby Healthcare', 'List M 5mg/10mg Tablet', 'What is List M 5mg/10mg Tablet?', 'List M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(22822, 'List M 5mg/10mg Tablet', 'Byby Healthcare', 'List M 5mg/10mg Tablet', 'Can the use of List M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of List M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(22823, 'List M 5mg/10mg Tablet', 'Byby Healthcare', 'List M 5mg/10mg Tablet', 'Can List M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, List M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(22824, 'List M 5mg/10mg Tablet', 'Byby Healthcare', 'List M 5mg/10mg Tablet', 'Can the use of List M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of List M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(22825, 'List M 5mg/10mg Tablet', 'Byby Healthcare', 'List M 5mg/10mg Tablet', 'Can I drink alcohol while taking List M 5mg/10mg Tablet?', 'No, do not take alcohol while taking List M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by List M 5mg/10mg Tablet.'),
(22826, 'List M 5mg/10mg Tablet', 'Byby Healthcare', 'List M 5mg/10mg Tablet', 'Will List M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of List M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(22827, 'List M 5mg/10mg Tablet', 'Byby Healthcare', 'List M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of List M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(22828, 'Listamine 5mg Tablet', 'Assure Pharma', 'Listamine 5mg Tablet', 'Is Listamine 5mg Tablet a steroid? What is it used for?', 'No, Listamine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(22829, 'Listamine 5mg Tablet', 'Assure Pharma', 'Listamine 5mg Tablet', 'Does Listamine 5mg Tablet make you tired and drowsy?', 'Yes, Listamine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(22830, 'Listamine 5mg Tablet', 'Assure Pharma', 'Listamine 5mg Tablet', 'How long does it take for Listamine 5mg Tablet to work?', 'Listamine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(22831, 'Listamine 5mg Tablet', 'Assure Pharma', 'Listamine 5mg Tablet', 'Can I take Listamine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Listamine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(22832, 'Listamine 5mg Tablet', 'Assure Pharma', 'Listamine 5mg Tablet', 'Is it safe to take Listamine 5mg Tablet for a long time?', 'Listamine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Listamine 5mg Tablet for only as long as you need it.'),
(22833, 'Listamine 5mg Tablet', 'Assure Pharma', 'Listamine 5mg Tablet', 'For how long should I continue Listamine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Listamine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Listamine 5mg Tablet'),
(22834, 'Listamine Plus 5mg/10mg Tablet', 'Assure Pharma', 'Listamine Plus 5mg/10mg Tablet', 'What is Listamine Plus 5mg/10mg Tablet?', 'Listamine Plus 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(22835, 'Listamine Plus 5mg/10mg Tablet', 'Assure Pharma', 'Listamine Plus 5mg/10mg Tablet', 'Can the use of Listamine Plus 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Listamine Plus 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(22836, 'Listamine Plus 5mg/10mg Tablet', 'Assure Pharma', 'Listamine Plus 5mg/10mg Tablet', 'Can Listamine Plus 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Listamine Plus 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(22837, 'Listamine Plus 5mg/10mg Tablet', 'Assure Pharma', 'Listamine Plus 5mg/10mg Tablet', 'Can the use of Listamine Plus 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Listamine Plus 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(22838, 'Listamine Plus 5mg/10mg Tablet', 'Assure Pharma', 'Listamine Plus 5mg/10mg Tablet', 'Can I drink alcohol while taking Listamine Plus 5mg/10mg Tablet?', 'No, do not take alcohol while taking Listamine Plus 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Listamine Plus 5mg/10mg Tablet.'),
(22839, 'Listamine Plus 5mg/10mg Tablet', 'Assure Pharma', 'Listamine Plus 5mg/10mg Tablet', 'Will Listamine Plus 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Listamine Plus 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(22840, 'Listamine Plus 5mg/10mg Tablet', 'Assure Pharma', 'Listamine Plus 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Listamine Plus 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(22841, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(22842, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'Can I decrease the dose of Listamine Plus Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(22843, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'How should Listamine Plus Syrup be stored?', 'Listamine Plus Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(22844, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'Can Listamine Plus Syrup make my child sleepy?', 'Listamine Plus Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(22845, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Listamine Plus Syrup?', 'No, don’t start Listamine Plus Syrup without speaking to your child’s doctor. Moreover, Listamine Plus Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(22846, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Listamine Plus Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(22847, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'My child is suffering from a mood disorder. Is it safe to give Listamine Plus Syrup to my child?', 'Some studies show that Listamine Plus Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(22848, 'Listamine Plus Syrup', 'Assure Pharma', 'Listamine Plus Syrup', 'Can I use Listamine Plus Syrup for treating acute asthma attacks in my child?', 'Listamine Plus Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(22849, 'Listaspas 50mg/325mg Tablet', 'Gavins Pharma Pvt Ltd', 'Listaspas 50mg/325mg Tablet', 'Can the use of Listaspas 50mg/325mg Tablet cause damage to liver?', 'Listaspas 50mg/325mg Tablet contains Paracetamol. Very high doses of this medicine is known to harm the liver. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(22850, 'Listaspas 50mg/325mg Tablet', 'Gavins Pharma Pvt Ltd', 'Listaspas 50mg/325mg Tablet', 'Can I drink alcohol while taking Listaspas 50mg/325mg Tablet?', 'No, avoid drinking alcohol while taking Listaspas 50mg/325mg Tablet. Drinking alcohol will increase the risk of serious side effects caused by Listaspas 50mg/325mg Tablet.'),
(22851, 'Listaspas 50mg/325mg Tablet', 'Gavins Pharma Pvt Ltd', 'Listaspas 50mg/325mg Tablet', 'What are the instructions for storage and disposal of Listaspas 50mg/325mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22852, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'What is Listcee 250mg Injection?', 'Listcee 250mg Injection consists of a water-soluble vitamin known as vitamin C. Vitamin C is also known as L-ascorbic acid or ascorbate. It cannot be stored for long in our body as it is water soluble. Therefore, it should be taken from food like tomatoes and citrus fruits like oranges to maintain sufficient levels of vitamin C in the body.'),
(22853, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'Is Listcee 250mg Injection necessary?', 'Listcee 250mg Injection is used if your diet does not provide enough vitamin C. It can also be used to treat certain conditions caused due to low levels of vitamin C in the body. However, it would be best to consult your doctor before taking Listcee 250mg Injection to get maximum benefit.'),
(22854, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'Why is it important to take vitamin C in your diet?', 'Vitamin C has many benefits on the human body and this makes it extremely important to take it in your diet. Vitamin C helps in the growth and repair of tissues of each and every part of the body, be it, bones, cartilage, tendons, skin, hair, muscles, etc. It helps in wound healing and also enhances absorption of iron in our body. Vitamin C is rich in antioxidants that help in getting rid of the harmful effects of free radicals. If the buildup of free radicals exceeds, it speeds up ageing process. Vitamin C is very crucial for bone and teeth health, improves the vision, and also regulates the blood cholesterol levels. Owing to its numerous benefits, it is very important to take an adequate amount of vitamin C in your diet.'),
(22855, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'Is Listcee 250mg Injection effective?', 'Listcee 250mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Listcee 250mg Injection too early, the symptoms may return or worsen.'),
(22856, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'How is Listcee 250mg Injection administered?', 'Listcee 250mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Listcee 250mg Injection.'),
(22857, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'Is Listcee 250mg Injection safe?', 'Listcee 250mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22858, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'What is vitamin C toxicity?', 'Taking vitamin C in excess (more than recommended) can lead to vitamin C toxicity. However, this is not very common. The symptoms of vitamin C toxicity are diarrhea, nausea, stomach cramps and indigestion. Do not worry, this type of toxicity is not a very serious condition and can be treated by stopping the intake of vitamin C supplements. If these symptoms bother you or persist for a longer duration, please consult your doctor.'),
(22859, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'Is Listcee 250mg Injection good for diabetics?', 'Yes, Listcee 250mg Injection has been proven to be beneficial for diabetic patients. Listcee 250mg Injection has also shown positive effects on issues caused by poor blood sugar control. However, if you have diabetes, consult your doctor before starting Listcee 250mg Injection.'),
(22860, 'Listcee 250mg Injection', 'Rech Elist Pharma', 'Listcee 250mg Injection', 'What are the complications of vitamin C deficiency?', 'Deficiency of vitamin C can lead to complications like scurvy (a condition caused by a severe lack of vitamin C in the diet). The symptoms of scurvy include weakness, feeling tired and sore arms and legs. Without treatment, decreased red blood cells, gum disease, changes to hair, and bleeding from the skin may also occur. Additionally, if the deficiency of vitamin C does not improve, it can further lead to worsening of other conditions such as high blood pressure, stroke, atherosclerosis, gallstones and even cancer.'),
(22861, 'Listcof LS Syrup', 'Medlist Pharma Private Limited', 'Listcof LS Syrup', 'What is Listcof LS Syrup?', 'Listcof LS Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(22862, 'Listcof LS Syrup', 'Medlist Pharma Private Limited', 'Listcof LS Syrup', 'Is it safe to use Listcof LS Syrup?', 'Yes, it is safe to use Listcof LS Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(22863, 'Listcof LS Syrup', 'Medlist Pharma Private Limited', 'Listcof LS Syrup', 'Are there any specific contraindications associated with the use of Listcof LS Syrup?', 'Use of Listcof LS Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(22864, 'Listcof LS Syrup', 'Medlist Pharma Private Limited', 'Listcof LS Syrup', 'Can the use of Listcof LS Syrup cause dizziness?', 'Yes, the use of Listcof LS Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(22865, 'Listcof LS Syrup', 'Medlist Pharma Private Limited', 'Listcof LS Syrup', 'Can the use of Listcof LS Syrup cause diarrhea?', 'Yes, the use of Listcof LS Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(22866, 'Listcof LS Syrup', 'Medlist Pharma Private Limited', 'Listcof LS Syrup', 'What are the recommended storage conditions for Listcof LS Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22867, 'Listcort 40mg Injection', 'Rech Elist Pharma', 'Listcort 40mg Injection', 'What is Listcort 40mg Injection used for?', 'Listcort 40mg Injection has anti-inflammatory and immunosuppressant properties. It is used for the treatment of conditions like rheumatoid arthritis and osteoarthritis. It also helps to treat many autoimmune diseases which occur when your body’s immune system attacks the body itself and causes damage.'),
(22868, 'Listcort 40mg Injection', 'Rech Elist Pharma', 'Listcort 40mg Injection', 'How does Listcort 40mg Injection work?', 'Listcort 40mg Injection works by reducing the inflammation which helps in treating many illnesses associated with active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(22869, 'Listcort 40mg Injection', 'Rech Elist Pharma', 'Listcort 40mg Injection', 'How is Listcort 40mg Injection administered?', 'Listcort 40mg Injection should be administered under the supervision of a healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Listcort 40mg Injection.'),
(22870, 'Listcort 40mg Injection', 'Rech Elist Pharma', 'Listcort 40mg Injection', 'Is Listcort 40mg Injection effective?', 'Listcort 40mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Listcort 40mg Injection too early, the symptoms may return or worsen.'),
(22871, 'Listcort 40mg Injection', 'Rech Elist Pharma', 'Listcort 40mg Injection', 'When will I feel better after taking Listcort 40mg Injection?', 'Listcort 40mg Injection effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Listcort 40mg Injection in the dose that suits your requirement.'),
(22872, 'Listcort 40mg Injection', 'Rech Elist Pharma', 'Listcort 40mg Injection', 'Is Listcort 40mg Injection safe?', 'Listcort 40mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22873, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'What is Listdol SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(22874, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Is it safe to take Listdol SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(22875, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Can I stop taking Listdol SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(22876, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Can Listdol SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(22877, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Can Listdol SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(22878, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Listdol SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(22879, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Can I take Listdol SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(22880, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Can the use of Listdol SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(22881, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Listdol SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(22882, 'Listdol SP 100mg/325mg/15mg Tablet', 'Medlist Pharma Private Limited', 'Listdol SP 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Listdol SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22883, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'What is Listen 10mg Tablet? What is it used for?', 'Listen 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22884, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'What should I tell my doctor before taking Listen 10mg Tablet?', 'Before taking Listen 10mg Tablet you must tell your doctor if you are allergic to Listen 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Listen 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22885, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'What time of the day should I take Listen 10mg Tablet?', 'Listen 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Listen 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Listen 10mg Tablet, please consult your doctor.'),
(22886, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'I feel better after taking Listen 10mg Tablet, can I stop taking it?', 'No, continue taking Listen 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Listen 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22887, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'Will Listen 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Listen 10mg Tablet may make you feel dizzy or lightheaded. If Listen 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22888, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'What other lifestyle changes should I make while taking Listen 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Listen 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Listen 10mg Tablet and to keep yourself healthy.'),
(22889, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'I have diabetes. Does Listen 10mg Tablet have any effect on blood sugar levels?', 'Yes, Listen 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22890, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'After starting Listen 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Listen 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Listen 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Listen 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22891, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'Can Listen 10mg Tablet affect my fertility?', 'There is no evidence that Listen 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Listen 10mg Tablet is not recommended in pregnancy.'),
(22892, 'Listen 10mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Listen 10mg Tablet', 'Can Listen 10mg Tablet increase potassium levels? If so, what should be done?', 'Listen 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Listen 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22893, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'What should I tell my doctor before taking Listim 1 MIU Injection?', 'Before taking Listim 1 MIU Injection, you must tell your doctor if you have or ever had any problems related to your kidneys or lungs (such as asthma). Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(22894, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'How is Listim 1 MIU Injection administered?', 'Listim 1 MIU Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Listim 1 MIU Injection.'),
(22895, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'Who should not use Listim 1 MIU Injection?', 'Use of Listim 1 MIU Injection should be avoided in patients who are allergic to Listim 1 MIU Injection or any of its components. However, if you are not aware of any allergy or if you are using Listim 1 MIU Injection for the first time, consult your doctor.'),
(22896, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'Can I take Listim 1 MIU Injection in pregnancy?', 'Enough evidence is not available to provide clarity on the use of Listim 1 MIU Injection in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Listim 1 MIU Injection. You may take it only if prescribed by your doctor.'),
(22897, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'Is Listim 1 MIU Injection safe?', 'Listim 1 MIU Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22898, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'What should I tell my doctor before taking Listim 1 MIU Injection?', 'Before taking Listim 1 MIU Injection, you must tell your doctor if you have or ever had any problems related to your kidneys or lungs (such as asthma). Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(22899, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'How is Listim 1 MIU Injection administered?', 'Listim 1 MIU Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Listim 1 MIU Injection.'),
(22900, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'Who should not use Listim 1 MIU Injection?', 'Use of Listim 1 MIU Injection should be avoided in patients who are allergic to Listim 1 MIU Injection or any of its components. However, if you are not aware of any allergy or if you are using Listim 1 MIU Injection for the first time, consult your doctor.'),
(22901, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'Can I take Listim 1 MIU Injection in pregnancy?', 'Enough evidence is not available to provide clarity on the use of Listim 1 MIU Injection in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Listim 1 MIU Injection. You may take it only if prescribed by your doctor.'),
(22902, 'Listim 1 MIU Injection', 'Palco Healthcare', 'Listim 1 MIU Injection', 'Is Listim 1 MIU Injection safe?', 'Listim 1 MIU Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22903, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'What should I tell my doctor before taking Listim 2 MIU Injection?', 'Before taking Listim 2 MIU Injection, you must tell your doctor if you have or ever had any problems related to your kidneys or lungs (such as asthma). Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(22904, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'How is Listim 2 MIU Injection administered?', 'Listim 2 MIU Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Listim 2 MIU Injection.'),
(22905, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'Who should not use Listim 2 MIU Injection?', 'Use of Listim 2 MIU Injection should be avoided in patients who are allergic to Listim 2 MIU Injection or any of its components. However, if you are not aware of any allergy or if you are using Listim 2 MIU Injection for the first time, consult your doctor.'),
(22906, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'Can I take Listim 2 MIU Injection in pregnancy?', 'Enough evidence is not available to provide clarity on the use of Listim 2 MIU Injection in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Listim 2 MIU Injection. You may take it only if prescribed by your doctor.'),
(22907, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'Is Listim 2 MIU Injection safe?', 'Listim 2 MIU Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22908, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'What should I tell my doctor before taking Listim 2 MIU Injection?', 'Before taking Listim 2 MIU Injection, you must tell your doctor if you have or ever had any problems related to your kidneys or lungs (such as asthma). Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(22909, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'How is Listim 2 MIU Injection administered?', 'Listim 2 MIU Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Listim 2 MIU Injection.'),
(22910, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'Who should not use Listim 2 MIU Injection?', 'Use of Listim 2 MIU Injection should be avoided in patients who are allergic to Listim 2 MIU Injection or any of its components. However, if you are not aware of any allergy or if you are using Listim 2 MIU Injection for the first time, consult your doctor.'),
(22911, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'Can I take Listim 2 MIU Injection in pregnancy?', 'Enough evidence is not available to provide clarity on the use of Listim 2 MIU Injection in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Listim 2 MIU Injection. You may take it only if prescribed by your doctor.'),
(22912, 'Listim 2 MIU Injection', 'Palco Healthcare', 'Listim 2 MIU Injection', 'Is Listim 2 MIU Injection safe?', 'Listim 2 MIU Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(22913, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'What is Listril 10 Tablet? What is it used for?', 'Listril 10 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22914, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'What should I tell my doctor before taking Listril 10 Tablet?', 'Before taking Listril 10 Tablet you must tell your doctor if you are allergic to Listril 10 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Listril 10 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22915, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'What time of the day should I take Listril 10 Tablet?', 'Listril 10 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Listril 10 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Listril 10 Tablet, please consult your doctor.'),
(22916, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'I feel better after taking Listril 10 Tablet, can I stop taking it?', 'No, continue taking Listril 10 Tablet even if you feel better and your blood pressure is under control. Stopping Listril 10 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22917, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'Will Listril 10 Tablet make me feel dizzy? What should I do about it?', 'Yes, Listril 10 Tablet may make you feel dizzy or lightheaded. If Listril 10 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22918, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'What other lifestyle changes should I make while taking Listril 10 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Listril 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Listril 10 Tablet and to keep yourself healthy.'),
(22919, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'I have diabetes. Does Listril 10 Tablet have any effect on blood sugar levels?', 'Yes, Listril 10 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22920, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'After starting Listril 10 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Listril 10 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Listril 10 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Listril 10 Tablet, the cough may take a few days to a month to resolve completely.'),
(22921, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'Can Listril 10 Tablet affect my fertility?', 'There is no evidence that Listril 10 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Listril 10 Tablet is not recommended in pregnancy.'),
(22922, 'Listril 10 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 10 Tablet', 'Can Listril 10 Tablet increase potassium levels? If so, what should be done?', 'Listril 10 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Listril 10 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22923, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'What is Listril 2.5 Tablet? What is it used for?', 'Listril 2.5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22924, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'What should I tell my doctor before taking Listril 2.5 Tablet?', 'Before taking Listril 2.5 Tablet you must tell your doctor if you are allergic to Listril 2.5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Listril 2.5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22925, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'What time of the day should I take Listril 2.5 Tablet?', 'Listril 2.5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Listril 2.5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Listril 2.5 Tablet, please consult your doctor.'),
(22926, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'I feel better after taking Listril 2.5 Tablet, can I stop taking it?', 'No, continue taking Listril 2.5 Tablet even if you feel better and your blood pressure is under control. Stopping Listril 2.5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22927, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'Will Listril 2.5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Listril 2.5 Tablet may make you feel dizzy or lightheaded. If Listril 2.5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22928, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'What other lifestyle changes should I make while taking Listril 2.5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Listril 2.5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Listril 2.5 Tablet and to keep yourself healthy.'),
(22929, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'I have diabetes. Does Listril 2.5 Tablet have any effect on blood sugar levels?', 'Yes, Listril 2.5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22930, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'After starting Listril 2.5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Listril 2.5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Listril 2.5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Listril 2.5 Tablet, the cough may take a few days to a month to resolve completely.'),
(22931, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'Can Listril 2.5 Tablet affect my fertility?', 'There is no evidence that Listril 2.5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Listril 2.5 Tablet is not recommended in pregnancy.'),
(22932, 'Listril 2.5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 2.5 Tablet', 'Can Listril 2.5 Tablet increase potassium levels? If so, what should be done?', 'Listril 2.5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Listril 2.5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22933, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. What is Listril 5 Tablet? What is it used for?', 'Listril 5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22934, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. What should I tell my doctor before taking Listril 5 Tablet?', 'Before taking Listril 5 Tablet you must tell your doctor if you are allergic to Listril 5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Listril 5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22935, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. What time of the day should I take Listril 5 Tablet?', 'Listril 5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Listril 5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Listril 5 Tablet, please consult your doctor.'),
(22936, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. I feel better after taking Listril 5 Tablet, can I stop taking it?', 'No, continue taking Listril 5 Tablet even if you feel better and your blood pressure is under control. Stopping Listril 5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22937, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. Will Listril 5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Listril 5 Tablet may make you feel dizzy or lightheaded. If Listril 5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22938, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. What other lifestyle changes should I make while taking Listril 5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Listril 5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Listril 5 Tablet and to keep yourself healthy.'),
(22939, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. I have diabetes. Does Listril 5 Tablet have any effect on blood sugar levels?', 'Yes, Listril 5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22940, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. After starting Listril 5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Listril 5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Listril 5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Listril 5 Tablet, the cough may take a few days to a month to resolve completely.'),
(22941, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. Can Listril 5 Tablet affect my fertility?', 'There is no evidence that Listril 5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Listril 5 Tablet is not recommended in pregnancy.'),
(22942, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Q. Can Listril 5 Tablet increase potassium levels? If so, what should be done?', 'Listril 5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Listril 5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22943, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'What is Listril 5 Tablet? What is it used for?', 'Listril 5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22944, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'What should I tell my doctor before taking Listril 5 Tablet?', 'Before taking Listril 5 Tablet you must tell your doctor if you are allergic to Listril 5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Listril 5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22945, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'What time of the day should I take Listril 5 Tablet?', 'Listril 5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Listril 5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Listril 5 Tablet, please consult your doctor.'),
(22946, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'I feel better after taking Listril 5 Tablet, can I stop taking it?', 'No, continue taking Listril 5 Tablet even if you feel better and your blood pressure is under control. Stopping Listril 5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22947, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Will Listril 5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Listril 5 Tablet may make you feel dizzy or lightheaded. If Listril 5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22948, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'What other lifestyle changes should I make while taking Listril 5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Listril 5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Listril 5 Tablet and to keep yourself healthy.'),
(22949, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'I have diabetes. Does Listril 5 Tablet have any effect on blood sugar levels?', 'Yes, Listril 5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22950, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'After starting Listril 5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Listril 5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Listril 5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Listril 5 Tablet, the cough may take a few days to a month to resolve completely.'),
(22951, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Can Listril 5 Tablet affect my fertility?', 'There is no evidence that Listril 5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Listril 5 Tablet is not recommended in pregnancy.'),
(22952, 'Listril 5 Tablet', 'Torrent Pharmaceuticals Ltd', 'Listril 5 Tablet', 'Can Listril 5 Tablet increase potassium levels? If so, what should be done?', 'Listril 5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Listril 5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22953, 'Listy H 50mg/12.5mg Tablet', 'Capri Pharmaceuticals', 'Listy H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22954, 'Listy H 50mg/12.5mg Tablet', 'Capri Pharmaceuticals', 'Listy H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Listy H 50mg/12.5mg Tablet?', 'Yes, the use of Listy H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(22955, 'Listy H 50mg/12.5mg Tablet', 'Capri Pharmaceuticals', 'Listy H 50mg/12.5mg Tablet', 'Can I use Listy H 50mg/12.5mg Tablet in pregnancy?', 'No, Listy H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Listy H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(22956, 'Listy H 50mg/12.5mg Tablet', 'Capri Pharmaceuticals', 'Listy H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Listy H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Listy H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(22957, 'Listy H 50mg/12.5mg Tablet', 'Capri Pharmaceuticals', 'Listy H 50mg/12.5mg Tablet', 'Can I stop taking Listy H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Listy H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Listy H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(22958, 'Listy M 50mg/5mg Tablet', 'Capri Pharmaceuticals', 'Listy M 50mg/5mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of unused medicine. Make sure it is not consumed by pets, children and other people.'),
(22959, 'Listy M 50mg/5mg Tablet', 'Capri Pharmaceuticals', 'Listy M 50mg/5mg Tablet', 'Can I feel dizzy after taking Listy M 50mg/5mg Tablet?', 'Yes, the use of Listy M 50mg/5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(22960, 'Listy M 50mg/5mg Tablet', 'Capri Pharmaceuticals', 'Listy M 50mg/5mg Tablet', 'Can I use Listy M 50mg/5mg Tablet in pregnancy?', 'No, Listy M 50mg/5mg Tablet should be avoided in pregnancy. Its use can cause injury and even endanger the baby. If you conceive while using Listy M 50mg/5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend to you other ways to lower the blood pressure.'),
(22961, 'Listy M 50mg/5mg Tablet', 'Capri Pharmaceuticals', 'Listy M 50mg/5mg Tablet', 'What are some of the lifestyle changes I should make while using Listy M 50mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Listy M 50mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Listy M 50mg/5mg Tablet and to keep yourself healthy.'),
(22962, 'Listy M 50mg/5mg Tablet', 'Capri Pharmaceuticals', 'Listy M 50mg/5mg Tablet', 'Can I stop taking Listy M 50mg/5mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping Listy M 50mg/5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(22963, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'What is Lisupril 10mg Tablet? What is it used for?', 'Lisupril 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22964, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'What should I tell my doctor before taking Lisupril 10mg Tablet?', 'Before taking Lisupril 10mg Tablet you must tell your doctor if you are allergic to Lisupril 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisupril 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22965, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'What time of the day should I take Lisupril 10mg Tablet?', 'Lisupril 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisupril 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisupril 10mg Tablet, please consult your doctor.'),
(22966, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'I feel better after taking Lisupril 10mg Tablet, can I stop taking it?', 'No, continue taking Lisupril 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisupril 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22967, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'Will Lisupril 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisupril 10mg Tablet may make you feel dizzy or lightheaded. If Lisupril 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22968, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'What other lifestyle changes should I make while taking Lisupril 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisupril 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisupril 10mg Tablet and to keep yourself healthy.'),
(22969, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'I have diabetes. Does Lisupril 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lisupril 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22970, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'After starting Lisupril 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisupril 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisupril 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisupril 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22971, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'Can Lisupril 10mg Tablet affect my fertility?', 'There is no evidence that Lisupril 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisupril 10mg Tablet is not recommended in pregnancy.'),
(22972, 'Lisupril 10mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 10mg Tablet', 'Can Lisupril 10mg Tablet increase potassium levels? If so, what should be done?', 'Lisupril 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisupril 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(22973, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'What is Lisupril 2.5mg Tablet? What is it used for?', 'Lisupril 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22974, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'What should I tell my doctor before taking Lisupril 2.5mg Tablet?', 'Before taking Lisupril 2.5mg Tablet you must tell your doctor if you are allergic to Lisupril 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisupril 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22975, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'What time of the day should I take Lisupril 2.5mg Tablet?', 'Lisupril 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisupril 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisupril 2.5mg Tablet, please consult your doctor.'),
(22976, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'I feel better after taking Lisupril 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lisupril 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisupril 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22977, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'Will Lisupril 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisupril 2.5mg Tablet may make you feel dizzy or lightheaded. If Lisupril 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22978, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lisupril 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisupril 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisupril 2.5mg Tablet and to keep yourself healthy.'),
(22979, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'I have diabetes. Does Lisupril 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisupril 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22980, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'After starting Lisupril 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisupril 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisupril 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisupril 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22981, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'Can Lisupril 2.5mg Tablet affect my fertility?', 'There is no evidence that Lisupril 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisupril 2.5mg Tablet is not recommended in pregnancy.'),
(22982, 'Lisupril 2.5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 2.5mg Tablet', 'Can Lisupril 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lisupril 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisupril 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22983, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'What is Lisupril 5mg Tablet? What is it used for?', 'Lisupril 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(22984, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'What should I tell my doctor before taking Lisupril 5mg Tablet?', 'Before taking Lisupril 5mg Tablet you must tell your doctor if you are allergic to Lisupril 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lisupril 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(22985, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'What time of the day should I take Lisupril 5mg Tablet?', 'Lisupril 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lisupril 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lisupril 5mg Tablet, please consult your doctor.'),
(22986, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'I feel better after taking Lisupril 5mg Tablet, can I stop taking it?', 'No, continue taking Lisupril 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lisupril 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(22987, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'Will Lisupril 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lisupril 5mg Tablet may make you feel dizzy or lightheaded. If Lisupril 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(22988, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'What other lifestyle changes should I make while taking Lisupril 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lisupril 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lisupril 5mg Tablet and to keep yourself healthy.'),
(22989, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'I have diabetes. Does Lisupril 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lisupril 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(22990, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'After starting Lisupril 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lisupril 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lisupril 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lisupril 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(22991, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'Can Lisupril 5mg Tablet affect my fertility?', 'There is no evidence that Lisupril 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lisupril 5mg Tablet is not recommended in pregnancy.'),
(22992, 'Lisupril 5mg Tablet', 'Prevego Healthcare & Research Private Limited', 'Lisupril 5mg Tablet', 'Can Lisupril 5mg Tablet increase potassium levels? If so, what should be done?', 'Lisupril 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lisupril 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(22993, 'Lit 300mg Tablet', 'Kivi Labs Ltd', 'Lit 300mg Tablet', 'Is Lit 300mg Tablet a steroid? What is it used for?', 'No, Lit 300mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(22994, 'Lit 300mg Tablet', 'Kivi Labs Ltd', 'Lit 300mg Tablet', 'Does Lit 300mg Tablet make you tired and drowsy?', 'Yes, Lit 300mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(22995, 'Lit 300mg Tablet', 'Kivi Labs Ltd', 'Lit 300mg Tablet', 'How long does it take for Lit 300mg Tablet to work?', 'Lit 300mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(22996, 'Lit 300mg Tablet', 'Kivi Labs Ltd', 'Lit 300mg Tablet', 'Can I take Lit 300mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lit 300mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(22997, 'Lit 300mg Tablet', 'Kivi Labs Ltd', 'Lit 300mg Tablet', 'Is it safe to take Lit 300mg Tablet for a long time?', 'Lit 300mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lit 300mg Tablet for only as long as you need it.'),
(22998, 'Lit 300mg Tablet', 'Kivi Labs Ltd', 'Lit 300mg Tablet', 'For how long should I continue Lit 300mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lit 300mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lit 300mg Tablet'),
(22999, 'Lit 450mg Tablet SR', 'Kivi Labs Ltd', 'Lit 450mg Tablet SR', 'Is Lit 450mg Tablet SR a steroid? What is it used for?', 'No, Lit 450mg Tablet SR is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23000, 'Lit 450mg Tablet SR', 'Kivi Labs Ltd', 'Lit 450mg Tablet SR', 'Does Lit 450mg Tablet SR make you tired and drowsy?', 'Yes, Lit 450mg Tablet SR can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23001, 'Lit 450mg Tablet SR', 'Kivi Labs Ltd', 'Lit 450mg Tablet SR', 'How long does it take for Lit 450mg Tablet SR to work?', 'Lit 450mg Tablet SR starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23002, 'Lit 450mg Tablet SR', 'Kivi Labs Ltd', 'Lit 450mg Tablet SR', 'Can I take Lit 450mg Tablet SR and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lit 450mg Tablet SR during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23003, 'Lit 450mg Tablet SR', 'Kivi Labs Ltd', 'Lit 450mg Tablet SR', 'Is it safe to take Lit 450mg Tablet SR for a long time?', 'Lit 450mg Tablet SR is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lit 450mg Tablet SR for only as long as you need it.'),
(23004, 'Lit 450mg Tablet SR', 'Kivi Labs Ltd', 'Lit 450mg Tablet SR', 'For how long should I continue Lit 450mg Tablet SR?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lit 450mg Tablet SR for a longer time. Talk to your doctor if you are unsure about the duration of using Lit 450mg Tablet SR'),
(23005, 'Lit 5mg Tablet SR', 'Kivi Labs Ltd', 'Lit 5mg Tablet SR', 'Is Lit 5mg Tablet SR a steroid? What is it used for?', 'No, Lit 5mg Tablet SR is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23006, 'Lit 5mg Tablet SR', 'Kivi Labs Ltd', 'Lit 5mg Tablet SR', 'Does Lit 5mg Tablet SR make you tired and drowsy?', 'Yes, Lit 5mg Tablet SR can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23007, 'Lit 5mg Tablet SR', 'Kivi Labs Ltd', 'Lit 5mg Tablet SR', 'How long does it take for Lit 5mg Tablet SR to work?', 'Lit 5mg Tablet SR starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23008, 'Lit 5mg Tablet SR', 'Kivi Labs Ltd', 'Lit 5mg Tablet SR', 'Can I take Lit 5mg Tablet SR and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lit 5mg Tablet SR during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23009, 'Lit 5mg Tablet SR', 'Kivi Labs Ltd', 'Lit 5mg Tablet SR', 'Is it safe to take Lit 5mg Tablet SR for a long time?', 'Lit 5mg Tablet SR is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lit 5mg Tablet SR for only as long as you need it.'),
(23010, 'Lit 5mg Tablet SR', 'Kivi Labs Ltd', 'Lit 5mg Tablet SR', 'For how long should I continue Lit 5mg Tablet SR?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lit 5mg Tablet SR for a longer time. Talk to your doctor if you are unsure about the duration of using Lit 5mg Tablet SR'),
(23011, 'Lit AP Tablet', 'Omenta Pharma Pvt Ltd', 'Lit AP Tablet', 'What is Lit AP Tablet?', 'Lit AP Tablet is the combination of Ambroxol, Levocetirizine, Paracetamol / Acetaminophen and Phenylephrine and is used in the treatment of common cold.'),
(23012, 'Lit AP Tablet', 'Omenta Pharma Pvt Ltd', 'Lit AP Tablet', 'Can the use of Lit AP Tablet cause nausea and vomiting?', 'Yes, the use of Lit AP Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(23013, 'Lit AP Tablet', 'Omenta Pharma Pvt Ltd', 'Lit AP Tablet', 'Can the use of Lit AP Tablet cause dizziness?', 'Yes, the use of Lit AP Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(23014, 'Lit AP Tablet', 'Omenta Pharma Pvt Ltd', 'Lit AP Tablet', 'Are there any specific contraindications associated with the use of Lit AP Tablet?', 'The use of Lit AP Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine and in patients with gastric ulcers, liver or kidney problems.'),
(23015, 'Lit AP Tablet', 'Omenta Pharma Pvt Ltd', 'Lit AP Tablet', 'What are the recommended storage conditions for Lit AP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23016, 'Lit Cold Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Cold Tablet', 'What is Lit Cold Tablet?', 'Lit Cold Tablet is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(23017, 'Lit Cold Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Cold Tablet', 'Is it safe to use Lit Cold Tablet?', 'Yes, Lit Cold Tablet is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(23018, 'Lit Cold Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Cold Tablet', 'Can I stop taking Lit Cold Tablet when I am relieved of my symptoms?', 'Lit Cold Tablet is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(23019, 'Lit Cold Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Cold Tablet', 'Can the use of Lit Cold Tablet cause dizziness?', 'Yes, the use of Lit Cold Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(23020, 'Lit Cold Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Cold Tablet', 'Can the use of Lit Cold Tablet cause damage to liver?', 'Lit Cold Tablet is usually safe when taken according to the recommended dose. However, an overdose of Lit Cold Tablet can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(23021, 'Lit Cold Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Cold Tablet', 'What is the recommended storage condition for the Lit Cold Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23022, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'What is Lit CS Syrup Mango Sugar Free?', 'Lit CS Syrup Mango Sugar Free is a combination of two medicines that help to relieve the symptoms of cold. It consists of Chlorpheniramine, an antiallergic that relieves allergy symptoms like runny nose, watery eyes, and sneezing. It also consists of Phenylephrine, a decongestant that narrows the small blood vessels providing relief from congestion or stuffiness in the nose.'),
(23023, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'Is it safe to use Lit CS Syrup Mango Sugar Free?', 'Lit CS Syrup Mango Sugar Free is safe for most of the patients when taken according to the dose and duration recommended by the doctor. However, in some patients it may cause common side effects like nausea, vomiting, headache, sleepiness and other uncommon or rare side effects. If you experience any problem while taking this medicine, inform your doctor as soon as possible.'),
(23024, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'Can the use of Lit CS Syrup Mango Sugar Free cause nausea and vomiting?', 'Yes, the use of Lit CS Syrup Mango Sugar Free can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists. Do not take any other medicine without speaking to a doctor.'),
(23025, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'Can the use of Lit CS Syrup Mango Sugar Free cause sleepiness or dizziness?', 'Yes, the most common side effect of Lit CS Syrup Mango Sugar Free is drowsiness. Avoid driving, operating heavy machinery or engaging in other activities that need your full attention, unless your healthcare provider has permitted you to do so. Do not drink alcohol or other cough and cold medicines. Also, avoid taking medicines that help you sleep while taking Lit CS Syrup Mango Sugar Free as it may lead to excessive drowsiness.'),
(23026, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lit CS Syrup Mango Sugar Free can lead to increased side effects due to overdose. Do not start, stop or change the dosage of your medicine before consulting your doctor.'),
(23027, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'Are there any specific contraindications associated with the use of Lit CS Syrup Mango Sugar Free?', 'The use of Lit CS Syrup Mango Sugar Free is considered to be harmful to patients with known allergy to any of the components of this medication. Tell your healthcare provider about all your medical conditions such as heart disease, high blood pressure, hyperthyroidism, glaucoma and enlarged prostate (difficulty in urination) before taking Lit CS Syrup Mango Sugar Free.'),
(23028, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'What is the recommended storage condition for Lit CS Syrup Mango Sugar Free?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23029, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'What is Lit CS Syrup Mango Sugar Free?', 'Lit CS Syrup Mango Sugar Free is a combination of two medicines that help to relieve the symptoms of cold. It consists of Chlorpheniramine, an antiallergic that relieves allergy symptoms like runny nose, watery eyes, and sneezing. It also consists of Phenylephrine, a decongestant that narrows the small blood vessels providing relief from congestion or stuffiness in the nose.'),
(23030, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'Is it safe to use Lit CS Syrup Mango Sugar Free?', 'Lit CS Syrup Mango Sugar Free is safe for most of the patients when taken according to the dose and duration recommended by the doctor. However, in some patients it may cause common side effects like nausea, vomiting, headache, sleepiness and other uncommon or rare side effects. If you experience any problem while taking this medicine, inform your doctor as soon as possible.'),
(23031, 'Lit CS Syrup Mango Sugar Free', 'MS Pharmacy', 'Lit CS Syrup Mango Sugar Free', 'Can the use of Lit CS Syrup Mango Sugar Free cause nausea and vomiting?', 'Yes, the use of Lit CS Syrup Mango Sugar Free can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists. Do not take any other medicine without speaking to a doctor.'),
(23032, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'How much Lit King 250mg/5ml Suspension should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(23033, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'When will my child’s condition improve after taking Lit King 250mg/5ml Suspension?', 'Lit King 250mg/5ml Suspension usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(23034, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'Can I give Lit King 250mg/5ml Suspension to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(23035, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'My child’s fever is persistent even after taking Lit King 250mg/5ml Suspension. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(23036, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'How much of Lit King 250mg/5ml Suspension is considered as an overdose?', 'You should only take four doses of Lit King 250mg/5ml Suspension in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(23037, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(23038, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(23039, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'In what conditions Lit King 250mg/5ml Suspension must be given with caution?', 'It is advised to use Lit King 250mg/5ml Suspension with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(23040, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'Can I give Lit King 250mg/5ml Suspension on a routine basis when my child is taking a vaccine?', 'Lit King 250mg/5ml Suspension usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(23041, 'Lit King 250mg/5ml Suspension', 'BestoChem Formulations  India  Ltd', 'Lit King 250mg/5ml Suspension', 'What if I vomit after taking Lit King 250mg/5ml Suspension?', 'If you vomit in less than 30 minutes after having a dose of Lit King 250mg/5ml Suspension tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(23042, 'Lit LS Junior Expectorant', 'Omenta Pharma Pvt Ltd', 'Lit LS Junior Expectorant', 'What is Lit LS Junior Expectorant?', 'Lit LS Junior Expectorant is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(23043, 'Lit LS Junior Expectorant', 'Omenta Pharma Pvt Ltd', 'Lit LS Junior Expectorant', 'Is it safe to use Lit LS Junior Expectorant?', 'Yes, it is safe to use Lit LS Junior Expectorant in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(23044, 'Lit LS Junior Expectorant', 'Omenta Pharma Pvt Ltd', 'Lit LS Junior Expectorant', 'Are there any specific contraindications associated with the use of Lit LS Junior Expectorant?', 'Use of Lit LS Junior Expectorant is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(23045, 'Lit LS Junior Expectorant', 'Omenta Pharma Pvt Ltd', 'Lit LS Junior Expectorant', 'Can the use of Lit LS Junior Expectorant cause dizziness?', 'Yes, the use of Lit LS Junior Expectorant can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(23046, 'Lit LS Junior Expectorant', 'Omenta Pharma Pvt Ltd', 'Lit LS Junior Expectorant', 'Can the use of Lit LS Junior Expectorant cause diarrhea?', 'Yes, the use of Lit LS Junior Expectorant can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(23047, 'Lit LS Junior Expectorant', 'Omenta Pharma Pvt Ltd', 'Lit LS Junior Expectorant', 'What are the recommended storage conditions for Lit LS Junior Expectorant?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23048, 'Lit LS Syrup', 'Omenta Pharma Pvt Ltd', 'Lit LS Syrup', 'What is Lit LS Syrup?', 'Lit LS Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(23049, 'Lit LS Syrup', 'Omenta Pharma Pvt Ltd', 'Lit LS Syrup', 'Is it safe to use Lit LS Syrup?', 'Yes, it is safe to use Lit LS Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(23050, 'Lit LS Syrup', 'Omenta Pharma Pvt Ltd', 'Lit LS Syrup', 'Are there any specific contraindications associated with the use of Lit LS Syrup?', 'Use of Lit LS Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(23051, 'Lit LS Syrup', 'Omenta Pharma Pvt Ltd', 'Lit LS Syrup', 'Can the use of Lit LS Syrup cause dizziness?', 'Yes, the use of Lit LS Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(23052, 'Lit LS Syrup', 'Omenta Pharma Pvt Ltd', 'Lit LS Syrup', 'Can the use of Lit LS Syrup cause diarrhea?', 'Yes, the use of Lit LS Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(23053, 'Lit LS Syrup', 'Omenta Pharma Pvt Ltd', 'Lit LS Syrup', 'What are the recommended storage conditions for Lit LS Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23054, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(23055, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'Can I decrease the dose of Lit M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(23056, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'How should Lit M Kid Syrup be stored?', 'Lit M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(23057, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'Can Lit M Kid Syrup make my child sleepy?', 'Lit M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(23058, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lit M Kid Syrup?', 'No, don’t start Lit M Kid Syrup without speaking to your child’s doctor. Moreover, Lit M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(23059, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lit M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(23060, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lit M Kid Syrup to my child?', 'Some studies show that Lit M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(23061, 'Lit M Kid Syrup', 'Omenta Pharma Pvt Ltd', 'Lit M Kid Syrup', 'Can I use Lit M Kid Syrup for treating acute asthma attacks in my child?', 'Lit M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(23062, 'Lit M Tablet', 'Omenta Pharma Pvt Ltd', 'Lit M Tablet', 'What is Lit M Tablet?', 'Lit M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(23063, 'Lit M Tablet', 'Omenta Pharma Pvt Ltd', 'Lit M Tablet', 'Can the use of Lit M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lit M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(23064, 'Lit M Tablet', 'Omenta Pharma Pvt Ltd', 'Lit M Tablet', 'Can Lit M Tablet be stopped when allergy symptoms are relieved?', 'No, Lit M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(23065, 'Lit M Tablet', 'Omenta Pharma Pvt Ltd', 'Lit M Tablet', 'Can the use of Lit M Tablet cause dry mouth?', 'Yes, the use of Lit M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(23066, 'Lit M Tablet', 'Omenta Pharma Pvt Ltd', 'Lit M Tablet', 'Can I drink alcohol while taking Lit M Tablet?', 'No, do not take alcohol while taking Lit M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lit M Tablet.'),
(23067, 'Lit M Tablet', 'Omenta Pharma Pvt Ltd', 'Lit M Tablet', 'Will Lit M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lit M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(23068, 'Lit M Tablet', 'Omenta Pharma Pvt Ltd', 'Lit M Tablet', 'What are the instructions for storage and disposal of Lit M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(23069, 'Lit Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Tablet', 'Is Lit Tablet a steroid? What is it used for?', 'No, Lit Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23070, 'Lit Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Tablet', 'Does Lit Tablet make you tired and drowsy?', 'Yes, Lit Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23071, 'Lit Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Tablet', 'How long does it take for Lit Tablet to work?', 'Lit Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23072, 'Lit Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Tablet', 'Can I take Lit Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lit Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23073, 'Lit Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Tablet', 'Is it safe to take Lit Tablet for a long time?', 'Lit Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lit Tablet for only as long as you need it.'),
(23074, 'Lit Tablet', 'Omenta Pharma Pvt Ltd', 'Lit Tablet', 'For how long should I continue Lit Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lit Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lit Tablet'),
(23075, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'Can Lita 15mg Tablet cause weight gain?', 'Lita 15mg Tablet commonly causes weight gain which may be dose-related. The reason for this weight gain could be fat accumulation. However, in heart failure patients it could be due to water retention in the body. Therefore, it is important to monitor weight in heart failure cases.'),
(23076, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'Can Lita 15mg Tablet cause heart failure?', 'Lita 15mg Tablet can cause fluid retention which may aggravate or speed up heart failure. The doctor usually starts with the lowest available dose and increases the dose gradually while treating patients who have at least one risk factor for heart failure (previous heart attack, coronary artery disease, elderly). Heart failure is more common when Lita 15mg Tablet is used with insulin.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23077, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'Can you take Lita 15mg Tablet and metformin together?', 'Yes, Lita 15mg Tablet can be used with metformin where sufficient blood sugar management was not possible with metformin alone. This combination of medicines can be used in adult patients with type 2 diabetes mellitus and overweight patients with poor blood sugar control.'),
(23078, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'What time of day should you take Lita 15mg Tablet?', 'It is usually prescribed once daily and can be taken at any time of the day but preferably at the same time each day. It can be taken with or without food. You should take Lita 15mg Tablet exactly as prescribed by your doctor.'),
(23079, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'How long do I need to take Lita 15mg Tablet? Can I stop the medicine for some time?', 'Continue taking Lita 15mg Tablet as long as your doctor recommends taking it. Treatment for diabetes mellitus is long-term so you may have to take it lifelong. However, if you have to stop it then consult with your doctor who will suggest an alternative. Do not stop taking it without consulting your doctor as it may cause blood sugar levels to rise, which could be harmful to you.'),
(23080, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'Does Lita 15mg Tablet affect liver?', 'Yes, Lita 15mg Tablet may cause an increase in liver enzymes, and treatment with Lita 15mg Tablet should be stopped if liver enzymes increase. Hence, levels of liver enzymes should be periodically checked while on treatment with this medicine. Lita 15mg Tablet should not be prescribed to patients with liver disease.'),
(23081, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'What kind of medicine is Lita 15mg Tablet? Is it like metformin?', 'Lita 15mg Tablet belongs to the thiazolidinediones class of anti-diabetic medicines. It helps control blood sugar levels by improving how your body uses a hormone called insulin. This is done by helping your cells become more sensitive to the insulin your body makes.'),
(23082, 'Lita 15mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 15mg Tablet', 'Can Lita 15mg Tablet cause bladder cancer?', 'Lita 15mg Tablet may increase the risk of bladder cancer, though it is very rare. Immediately consult your doctor if you experience blood in your urine, pain when urinating or a sudden need to urinate, during treatment with this medicine. Lita 15mg Tablet should not be used in patients with a prior history of bladder cancer or having bladder cancer.'),
(23083, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'Can Lita 30mg Tablet cause weight gain?', 'Lita 30mg Tablet commonly causes weight gain which may be dose-related. The reason for this weight gain could be fat accumulation. However, in heart failure patients it could be due to water retention in the body. Therefore, it is important to monitor weight in heart failure cases.'),
(23084, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'Can Lita 30mg Tablet cause heart failure?', 'Lita 30mg Tablet can cause fluid retention which may aggravate or speed up heart failure. The doctor usually starts with the lowest available dose and increases the dose gradually while treating patients who have at least one risk factor for heart failure (previous heart attack, coronary artery disease, elderly). Heart failure is more common when Lita 30mg Tablet is used with insulin.'),
(23085, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'Can you take Lita 30mg Tablet and metformin together?', 'Yes, Lita 30mg Tablet can be used with metformin where sufficient blood sugar management was not possible with metformin alone. This combination of medicines can be used in adult patients with type 2 diabetes mellitus and overweight patients with poor blood sugar control.'),
(23086, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'What time of day should you take Lita 30mg Tablet?', 'It is usually prescribed once daily and can be taken at any time of the day but preferably at the same time each day. It can be taken with or without food. You should take Lita 30mg Tablet exactly as prescribed by your doctor.'),
(23087, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'How long do I need to take Lita 30mg Tablet? Can I stop the medicine for some time?', 'Continue taking Lita 30mg Tablet as long as your doctor recommends taking it. Treatment for diabetes mellitus is long-term so you may have to take it lifelong. However, if you have to stop it then consult with your doctor who will suggest an alternative. Do not stop taking it without consulting your doctor as it may cause blood sugar levels to rise, which could be harmful to you.'),
(23088, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'Does Lita 30mg Tablet affect liver?', 'Yes, Lita 30mg Tablet may cause an increase in liver enzymes, and treatment with Lita 30mg Tablet should be stopped if liver enzymes increase. Hence, levels of liver enzymes should be periodically checked while on treatment with this medicine. Lita 30mg Tablet should not be prescribed to patients with liver disease.'),
(23089, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'What kind of medicine is Lita 30mg Tablet? Is it like metformin?', 'Lita 30mg Tablet belongs to the thiazolidinediones class of anti-diabetic medicines. It helps control blood sugar levels by improving how your body uses a hormone called insulin. This is done by helping your cells become more sensitive to the insulin your body makes.'),
(23090, 'Lita 30mg Tablet', 'Intra Labs India Pvt Ltd', 'Lita 30mg Tablet', 'Can Lita 30mg Tablet cause bladder cancer?', 'Lita 30mg Tablet may increase the risk of bladder cancer, though it is very rare. Immediately consult your doctor if you experience blood in your urine, pain when urinating or a sudden need to urinate, during treatment with this medicine. Lita 30mg Tablet should not be used in patients with a prior history of bladder cancer or having bladder cancer.'),
(23091, 'Litab-SR Tablet', 'Biologic Psychotropics India Pvt Ltd', 'Litab-SR Tablet', 'How quickly does Litab-SR Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litab-SR Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litab-SR Tablet. Do not stop taking Litab-SR Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23092, 'Litab-SR Tablet', 'Biologic Psychotropics India Pvt Ltd', 'Litab-SR Tablet', 'Does Litab-SR Tablet make you sleepy?', 'Yes, Litab-SR Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23093, 'Litab-SR Tablet', 'Biologic Psychotropics India Pvt Ltd', 'Litab-SR Tablet', 'Is Litab-SR Tablet bad for kidneys?', 'Yes, Litab-SR Tablet may cause kidney problems. Litab-SR Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litab-SR Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litab-SR Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23094, 'Litab-SR Tablet', 'Biologic Psychotropics India Pvt Ltd', 'Litab-SR Tablet', 'Can Litab-SR Tablet cause gain in weight?', 'Litab-SR Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litab-SR Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litab-SR Tablet or some other reason.'),
(23095, 'Litab-SR Tablet', 'Biologic Psychotropics India Pvt Ltd', 'Litab-SR Tablet', 'What is the most important information I should know about Litab-SR Tablet?', 'Litab-SR Tablet therapy should only be started if adequate facilities for assessing Litab-SR Tablet levels are available. This is because Litab-SR Tablet toxicity is related to increased levels of Litab-SR Tablet in blood. Litab-SR Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litab-SR Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23096, 'Litab-SR Tablet', 'Biologic Psychotropics India Pvt Ltd', 'Litab-SR Tablet', 'How should Litab-SR Tablet be taken?', 'Take Litab-SR Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litab-SR Tablet levels.'),
(23097, 'Litab-SR Tablet', 'Biologic Psychotropics India Pvt Ltd', 'Litab-SR Tablet', 'Which medicines decrease Litab-SR Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litab-SR Tablet since many medicines interfere with the working of Litab-SR Tablet. Some medicines decrease the levels of Litab-SR Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23098, 'Litacef XS 1000 mg/500 mg Injection', 'Litaka Pharmaceuticals Ltd', 'Litacef XS 1000 mg/500 mg Injection', 'Can the use of Litacef XS 1000 mg/500 mg Injection cause allergic reaction?', 'Yes, Litacef XS 1000 mg/500 mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(23099, 'Litacef XS 1000 mg/500 mg Injection', 'Litaka Pharmaceuticals Ltd', 'Litacef XS 1000 mg/500 mg Injection', 'Can the use of Litacef XS 1000 mg/500 mg Injection cause diarrhea?', 'Yes, the use of Litacef XS 1000 mg/500 mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23100, 'Litacef XS 1000 mg/500 mg Injection', 'Litaka Pharmaceuticals Ltd', 'Litacef XS 1000 mg/500 mg Injection', 'How long does Litacef XS 1000 mg/500 mg Injection takes to work?', 'Usually, Litacef XS 1000 mg/500 mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(23101, 'Litacef XS 1000 mg/500 mg Injection', 'Litaka Pharmaceuticals Ltd', 'Litacef XS 1000 mg/500 mg Injection', 'What if I don\'t get better after using Litacef XS 1000 mg/500 mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(23102, 'Litacef XS 1000 mg/500 mg Injection', 'Litaka Pharmaceuticals Ltd', 'Litacef XS 1000 mg/500 mg Injection', 'Can I stop taking Litacef XS 1000 mg/500 mg Injection when I feel better?', 'No, do not stop taking Litacef XS 1000 mg/500 mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23103, 'Litacold 2mg/325mg/5mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litacold 2mg/325mg/5mg Tablet', 'What is Litacold 2mg/325mg/5mg Tablet?', 'Litacold 2mg/325mg/5mg Tablet is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(23104, 'Litacold 2mg/325mg/5mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litacold 2mg/325mg/5mg Tablet', 'Is it safe to use Litacold 2mg/325mg/5mg Tablet?', 'Yes, Litacold 2mg/325mg/5mg Tablet is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(23105, 'Litacold 2mg/325mg/5mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litacold 2mg/325mg/5mg Tablet', 'Can I stop taking Litacold 2mg/325mg/5mg Tablet when I am relieved of my symptoms?', 'Litacold 2mg/325mg/5mg Tablet is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(23106, 'Litacold 2mg/325mg/5mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litacold 2mg/325mg/5mg Tablet', 'Can the use of Litacold 2mg/325mg/5mg Tablet cause dizziness?', 'Yes, the use of Litacold 2mg/325mg/5mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(23107, 'Litacold 2mg/325mg/5mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litacold 2mg/325mg/5mg Tablet', 'Can the use of Litacold 2mg/325mg/5mg Tablet cause damage to liver?', 'Litacold 2mg/325mg/5mg Tablet is usually safe when taken according to the recommended dose. However, an overdose of Litacold 2mg/325mg/5mg Tablet can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(23108, 'Litacold 2mg/325mg/5mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litacold 2mg/325mg/5mg Tablet', 'What is the recommended storage condition for the Litacold 2mg/325mg/5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23109, 'Litacold Syrup', 'Litaka Pharmaceuticals Ltd', 'Litacold Syrup', 'What if  I give too much Litacold Syrup by mistake?', 'Prolonged or excess intake of Litacold Syrup can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects, and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(23110, 'Litacold Syrup', 'Litaka Pharmaceuticals Ltd', 'Litacold Syrup', 'Can other medicines be given at the same time as Litacold Syrup?', 'Litacold Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Litacold Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(23111, 'Litacold Syrup', 'Litaka Pharmaceuticals Ltd', 'Litacold Syrup', 'In what all conditions should I avoid giving Litacold Syrup to my child?', 'If your child is suffering from any Cardiovascular disease (hypertension, heart disease), Diabetes mellitus, GI obstruction, increased intraocular pressure, urinary obstruction, or thyroid dysfunction, avoid giving Litacold Syrup. Always inform your doctor about your child’s medical history before giving Litacold Syrup.'),
(23112, 'Litacold Syrup', 'Litaka Pharmaceuticals Ltd', 'Litacold Syrup', 'My child has a cough and fever. Can I give him two different cough and fever medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. This is because both the medicines could have the same ingredients and taking them together would cause an overdose and could result in serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(23113, 'Litacold Syrup', 'Litaka Pharmaceuticals Ltd', 'Litacold Syrup', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(23114, 'Litacold Syrup', 'Litaka Pharmaceuticals Ltd', 'Litacold Syrup', 'Can Litacold Syrup make my child sleepy?', 'Litacold Syrup may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(23115, 'Litacold Syrup', 'Litaka Pharmaceuticals Ltd', 'Litacold Syrup', 'How can I store Litacold Syrup?', 'Litacold Syrup should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(23116, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'What is Litapraz DSR Capsule?', 'Litapraz DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(23117, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'What are the contraindications of Litapraz DSR Capsule?', 'The use of Litapraz DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(23118, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'Can the use of Litapraz DSR Capsule cause dry mouth?', 'Yes, the use of Litapraz DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(23119, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'Can the use of Litapraz DSR Capsule cause diarrhea?', 'Yes, the use of Litapraz DSR Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(23120, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'What is the recommended storage condition for Litapraz DSR Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23121, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'Is it safe to use Litapraz DSR Capsule?', 'Yes, Litapraz DSR Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(23122, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'What is the best time to take Litapraz DSR Capsule?', 'It is best to take Litapraz DSR Capsule before the first meal of the day or on an empty stomach.'),
(23123, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'Can the use of Litapraz DSR Capsule cause abnormal heartbeat?', 'Yes, the use of Litapraz DSR Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(23124, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'What is Litapraz DSR Capsule?', 'Litapraz DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(23125, 'Litapraz DSR Capsule', 'Litaka Pharmaceuticals Ltd', 'Litapraz DSR Capsule', 'What are the contraindications of Litapraz DSR Capsule?', 'The use of Litapraz DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(23126, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'Is Litazith 250mg Suspension safe?', 'Litazith 250mg Suspension is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(23127, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Litazith 250mg Suspension. Also, if your symptoms get worse, inform your doctor immediately.'),
(23128, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'Can the use of Litazith 250mg Suspension cause diarrhea?', 'Yes, the use of Litazith 250mg Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23129, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'Can Litazith 250mg Suspension be taken at night?', 'Litazith 250mg Suspension is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Litazith 250mg Suspension exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(23130, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'How long does it take Litazith 250mg Suspension to work?', 'Litazith 250mg Suspension starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(23131, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'Why is Litazith 250mg Suspension given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Litazith 250mg Suspension is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(23132, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'What should I avoid while taking Litazith 250mg Suspension?', 'Generally, it is recommended that patients taking Litazith 250mg Suspension should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Litazith 250mg Suspension. It is also recommended to avoid exposure to sunlight or tanning beds as Litazith 250mg Suspension increases the risk of sunburn.'),
(23133, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'Is Litazith 250mg Suspension a strong antibiotic?', 'Litazith 250mg Suspension is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Litazith 250mg Suspension has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(23134, 'Litazith 250mg Suspension', 'Litaka Pharmaceuticals Ltd', 'Litazith 250mg Suspension', 'Can you get a yeast infection from taking Litazith 250mg Suspension?', 'Some people may get a fungal or yeast infection known as thrush after taking Litazith 250mg Suspension. Antibiotics such as Litazith 250mg Suspension can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Litazith 250mg Suspension or soon after stopping it.'),
(23135, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'Is Litazith 500mg Tablet safe?', 'Litazith 500mg Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(23136, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Litazith 500mg Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(23137, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'Can the use of Litazith 500mg Tablet cause diarrhea?', 'Yes, the use of Litazith 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23138, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'Can Litazith 500mg Tablet be taken at night?', 'Litazith 500mg Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Litazith 500mg Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(23139, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'How long does it take Litazith 500mg Tablet to work?', 'Litazith 500mg Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(23140, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'Why is Litazith 500mg Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Litazith 500mg Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(23141, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'What should I avoid while taking Litazith 500mg Tablet?', 'Generally, it is recommended that patients taking Litazith 500mg Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Litazith 500mg Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Litazith 500mg Tablet increases the risk of sunburn.'),
(23142, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'Is Litazith 500mg Tablet a strong antibiotic?', 'Litazith 500mg Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Litazith 500mg Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(23143, 'Litazith 500mg Tablet', 'Litaka Pharmaceuticals Ltd', 'Litazith 500mg Tablet', 'Can you get a yeast infection from taking Litazith 500mg Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Litazith 500mg Tablet. Antibiotics such as Litazith 500mg Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Litazith 500mg Tablet or soon after stopping it.'),
(23144, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'Why have I been prescribed Litazole 2.5mg Tablet?', 'Litazole 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(23145, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'How does Litazole 2.5mg Tablet work?', 'Litazole 2.5mg Tablet is also known as an anti-estrogen drug. It is called so because it acts by reducing the production of estrogen in your body by blocking the enzyme aromatase, which is responsible for the production of estrogen. Estrogen stimulates the production of certain types of breast cancer in your body. These cancers are called \'__\'estrogen-dependent cancers\'__\'. Reducing the production of estrogen may prevent cancer from growing.'),
(23146, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'For how long should I take Litazole 2.5mg Tablet?', 'If the breast tumor is in the advanced stage or has spread to other parts of the body, it is recommended that you continue taking Litazole 2.5mg Tablet till the tumor shows progression. In cases where Litazole 2.5mg Tablet is given after tamoxifen (another anti-estrogen used for breast cancer) or surgery, it should be given for 5 years or until the tumor comes back, whichever is first. It can also be given as a sequential treatment; 2 years of Litazole 2.5mg Tablet followed by 3 years of tamoxifen.'),
(23147, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'If I am taking irbesartan to control my blood pressure, can I take Litazole 2.5mg Tablet?', 'Yes, you can take irbesartan and Litazole 2.5mg Tablet together. However, be careful and keep a regular check on your blood pressure since Litazole 2.5mg Tablet may increase your blood pressure. Consult your doctor in case you have problems controlling your blood pressure.'),
(23148, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'Does Litazole 2.5mg Tablet affect vision?', 'Although it is very uncommon, Litazole 2.5mg Tablet may cause a cataract. So, if you experience blurred vision or eye irritation, consult your doctor immediately.'),
(23149, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'My friend who is taking Litazole 2.5mg Tablet often sweats a lot. Is it because of Litazole 2.5mg Tablet?', 'This could be a sign of hot flushes which is a very common side effect of Litazole 2.5mg Tablet. It happens due to decreased estrogen levels. The frequency of hot flushes reduces once your body adjusts to Litazole 2.5mg Tablet. However, in some people, the flushes and sweats may continue during the treatment and stop a few months after the treatment finishes. You can consult your doctor who will provide you a remedy if it is very bothersome.'),
(23150, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'What are the serious side effects of Litazole 2.5mg Tablet?', 'The serious side effects do not occur in everyone and very few people experience them. The serious side effects of Litazole 2.5mg Tablet include stroke, angina, heart attack, blood clotting, cataract, osteoporosis, and severe skin reactions.'),
(23151, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'Does Litazole 2.5mg Tablet cause bone loss?', 'Litazole 2.5mg Tablet may cause thinning or wasting of your bones (osteoporosis), which is due to the decrease in estrogen levels in your body. Your doctor may decide to measure your bone density (a way of monitoring for osteoporosis) before, during and after treatment.'),
(23152, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'Can I take Litazole 2.5mg Tablet for induction of ovulation in anovulatory infertility?', 'As per the Ministry of Health and Family Welfare, Litazole 2.5mg Tablet is restricted for use in induction of ovulation in anovulatory infertility.'),
(23153, 'Litazole 2.5mg Tablet', 'Aspida Pharma Pvt Ltd', 'Litazole 2.5mg Tablet', 'Why have I been prescribed Litazole 2.5mg Tablet?', 'Litazole 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(23154, 'Litbact 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Litbact 500 Tablet', 'Is Litbact 500 Tablet safe?', 'Litbact 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23155, 'Litbact 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Litbact 500 Tablet', 'What if I forget to take a dose of Litbact 500 Tablet?', 'If you forget a dose of Litbact 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(23156, 'Litbact 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Litbact 500 Tablet', 'Can the use of Litbact 500 Tablet cause diarrhea?', 'Yes, the use of Litbact 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23157, 'Litbact 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Litbact 500 Tablet', 'Can I stop taking Litbact 500 Tablet when I feel better?', 'No, do not stop taking Litbact 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Litbact 500 Tablet too early, the symptoms may return or worsen. Continue taking Litbact 500 Tablet in the dose and duration advised by the doctor.'),
(23158, 'Litbact 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Litbact 500 Tablet', 'Can the use of Litbact 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Litbact 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Litbact 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(23159, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. What is Lit-C Syrup?', 'Lit-C Syrup is a combination of two medicines that help to relieve the symptoms of cold. It consists of Chlorpheniramine, an antiallergic that relieves allergy symptoms like runny nose, watery eyes, and sneezing. It also consists of Phenylephrine, a decongestant that narrows the small blood vessels providing relief from congestion or stuffiness in the nose.'),
(23160, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. Is it safe to use Lit-C Syrup?', 'Lit-C Syrup is safe for most of the patients when taken according to the dose and duration recommended by the doctor. However, in some patients it may cause common side effects like nausea, vomiting, headache, sleepiness and other uncommon or rare side effects. If you experience any problem while taking this medicine, inform your doctor as soon as possible.'),
(23161, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. Can the use of Lit-C Syrup cause nausea and vomiting?', 'Yes, the use of Lit-C Syrup can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists. Do not take any other medicine without speaking to a doctor.'),
(23162, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. Can the use of Lit-C Syrup cause sleepiness or dizziness?', 'Yes, the most common side effect of Lit-C Syrup is drowsiness. Avoid driving, operating heavy machinery or engaging in other activities that need your full attention, unless your healthcare provider has permitted you to do so. Do not drink alcohol or other cough and cold medicines. Also, avoid taking medicines that help you sleep while taking Lit-C Syrup as it may lead to excessive drowsiness.'),
(23163, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lit-C Syrup can lead to increased side effects due to overdose. Do not start, stop or change the dosage of your medicine before consulting your doctor.'),
(23164, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. Are there any specific contraindications associated with the use of Lit-C Syrup?', 'The use of Lit-C Syrup is considered to be harmful to patients with known allergy to any of the components of this medication. Tell your healthcare provider about all your medical conditions such as heart disease, high blood pressure, hyperthyroidism, glaucoma and enlarged prostate (difficulty in urination) before taking Lit-C Syrup.'),
(23165, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q.  What is the recommended storage condition for Lit-C Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23166, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. What is Lit-C Syrup?', 'Lit-C Syrup is a combination of two medicines that help to relieve the symptoms of cold. It consists of Chlorpheniramine, an antiallergic that relieves allergy symptoms like runny nose, watery eyes, and sneezing. It also consists of Phenylephrine, a decongestant that narrows the small blood vessels providing relief from congestion or stuffiness in the nose.'),
(23167, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. Is it safe to use Lit-C Syrup?', 'Lit-C Syrup is safe for most of the patients when taken according to the dose and duration recommended by the doctor. However, in some patients it may cause common side effects like nausea, vomiting, headache, sleepiness and other uncommon or rare side effects. If you experience any problem while taking this medicine, inform your doctor as soon as possible.'),
(23168, 'Lit-C Syrup', 'Omenta Pharma Pvt Ltd', 'Lit-C Syrup', 'Q. Can the use of Lit-C Syrup cause nausea and vomiting?', 'Yes, the use of Lit-C Syrup can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists. Do not take any other medicine without speaking to a doctor.'),
(23169, 'Litca 250mg Tablet', 'D D Pharmaceuticals', 'Litca 250mg Tablet', 'How quickly does Litca 250mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litca 250mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litca 250mg Tablet. Do not stop taking Litca 250mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23170, 'Litca 250mg Tablet', 'D D Pharmaceuticals', 'Litca 250mg Tablet', 'Does Litca 250mg Tablet make you sleepy?', 'Yes, Litca 250mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23171, 'Litca 250mg Tablet', 'D D Pharmaceuticals', 'Litca 250mg Tablet', 'Is Litca 250mg Tablet bad for kidneys?', 'Yes, Litca 250mg Tablet may cause kidney problems. Litca 250mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litca 250mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litca 250mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23172, 'Litca 250mg Tablet', 'D D Pharmaceuticals', 'Litca 250mg Tablet', 'Can Litca 250mg Tablet cause gain in weight?', 'Litca 250mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litca 250mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litca 250mg Tablet or some other reason.'),
(23173, 'Litca 250mg Tablet', 'D D Pharmaceuticals', 'Litca 250mg Tablet', 'What is the most important information I should know about Litca 250mg Tablet?', 'Litca 250mg Tablet therapy should only be started if adequate facilities for assessing Litca 250mg Tablet levels are available. This is because Litca 250mg Tablet toxicity is related to increased levels of Litca 250mg Tablet in blood. Litca 250mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litca 250mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23174, 'Litca 250mg Tablet', 'D D Pharmaceuticals', 'Litca 250mg Tablet', 'How should Litca 250mg Tablet be taken?', 'Take Litca 250mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litca 250mg Tablet levels.'),
(23175, 'Litca 250mg Tablet', 'D D Pharmaceuticals', 'Litca 250mg Tablet', 'Which medicines decrease Litca 250mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litca 250mg Tablet since many medicines interfere with the working of Litca 250mg Tablet. Some medicines decrease the levels of Litca 250mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23176, 'Litca 300mg Tablet', 'D D Pharmaceuticals', 'Litca 300mg Tablet', 'How quickly does Litca 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litca 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litca 300mg Tablet. Do not stop taking Litca 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23177, 'Litca 300mg Tablet', 'D D Pharmaceuticals', 'Litca 300mg Tablet', 'Does Litca 300mg Tablet make you sleepy?', 'Yes, Litca 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23178, 'Litca 300mg Tablet', 'D D Pharmaceuticals', 'Litca 300mg Tablet', 'Is Litca 300mg Tablet bad for kidneys?', 'Yes, Litca 300mg Tablet may cause kidney problems. Litca 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litca 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litca 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23179, 'Litca 300mg Tablet', 'D D Pharmaceuticals', 'Litca 300mg Tablet', 'Can Litca 300mg Tablet cause gain in weight?', 'Litca 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litca 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litca 300mg Tablet or some other reason.'),
(23180, 'Litca 300mg Tablet', 'D D Pharmaceuticals', 'Litca 300mg Tablet', 'What is the most important information I should know about Litca 300mg Tablet?', 'Litca 300mg Tablet therapy should only be started if adequate facilities for assessing Litca 300mg Tablet levels are available. This is because Litca 300mg Tablet toxicity is related to increased levels of Litca 300mg Tablet in blood. Litca 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litca 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23181, 'Litca 300mg Tablet', 'D D Pharmaceuticals', 'Litca 300mg Tablet', 'How should Litca 300mg Tablet be taken?', 'Take Litca 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litca 300mg Tablet levels.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23182, 'Litca 300mg Tablet', 'D D Pharmaceuticals', 'Litca 300mg Tablet', 'Which medicines decrease Litca 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litca 300mg Tablet since many medicines interfere with the working of Litca 300mg Tablet. Some medicines decrease the levels of Litca 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23183, 'Litca SR 450 Tablet', 'D D Pharmaceuticals', 'Litca SR 450 Tablet', 'How quickly does Litca SR 450 Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litca SR 450 Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litca SR 450 Tablet. Do not stop taking Litca SR 450 Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23184, 'Litca SR 450 Tablet', 'D D Pharmaceuticals', 'Litca SR 450 Tablet', 'Does Litca SR 450 Tablet make you sleepy?', 'Yes, Litca SR 450 Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23185, 'Litca SR 450 Tablet', 'D D Pharmaceuticals', 'Litca SR 450 Tablet', 'Is Litca SR 450 Tablet bad for kidneys?', 'Yes, Litca SR 450 Tablet may cause kidney problems. Litca SR 450 Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litca SR 450 Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litca SR 450 Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23186, 'Litca SR 450 Tablet', 'D D Pharmaceuticals', 'Litca SR 450 Tablet', 'Can Litca SR 450 Tablet cause gain in weight?', 'Litca SR 450 Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litca SR 450 Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litca SR 450 Tablet or some other reason.'),
(23187, 'Litca SR 450 Tablet', 'D D Pharmaceuticals', 'Litca SR 450 Tablet', 'What is the most important information I should know about Litca SR 450 Tablet?', 'Litca SR 450 Tablet therapy should only be started if adequate facilities for assessing Litca SR 450 Tablet levels are available. This is because Litca SR 450 Tablet toxicity is related to increased levels of Litca SR 450 Tablet in blood. Litca SR 450 Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litca SR 450 Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23188, 'Litca SR 450 Tablet', 'D D Pharmaceuticals', 'Litca SR 450 Tablet', 'How should Litca SR 450 Tablet be taken?', 'Take Litca SR 450 Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litca SR 450 Tablet levels.'),
(23189, 'Litca SR 450 Tablet', 'D D Pharmaceuticals', 'Litca SR 450 Tablet', 'Which medicines decrease Litca SR 450 Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litca SR 450 Tablet since many medicines interfere with the working of Litca SR 450 Tablet. Some medicines decrease the levels of Litca SR 450 Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23190, 'Litcarb 400mg Tablet SR', 'Torcium Biotech Pvt Ltd', 'Litcarb 400mg Tablet SR', 'How quickly does Litcarb 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Litcarb 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litcarb 400mg Tablet SR. Do not stop taking Litcarb 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23191, 'Litcarb 400mg Tablet SR', 'Torcium Biotech Pvt Ltd', 'Litcarb 400mg Tablet SR', 'Does Litcarb 400mg Tablet SR make you sleepy?', 'Yes, Litcarb 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23192, 'Litcarb 400mg Tablet SR', 'Torcium Biotech Pvt Ltd', 'Litcarb 400mg Tablet SR', 'Is Litcarb 400mg Tablet SR bad for kidneys?', 'Yes, Litcarb 400mg Tablet SR may cause kidney problems. Litcarb 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litcarb 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Litcarb 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23193, 'Litcarb 400mg Tablet SR', 'Torcium Biotech Pvt Ltd', 'Litcarb 400mg Tablet SR', 'Can Litcarb 400mg Tablet SR cause gain in weight?', 'Litcarb 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Litcarb 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litcarb 400mg Tablet SR or some other reason.'),
(23194, 'Litcarb 400mg Tablet SR', 'Torcium Biotech Pvt Ltd', 'Litcarb 400mg Tablet SR', 'What is the most important information I should know about Litcarb 400mg Tablet SR?', 'Litcarb 400mg Tablet SR therapy should only be started if adequate facilities for assessing Litcarb 400mg Tablet SR levels are available. This is because Litcarb 400mg Tablet SR toxicity is related to increased levels of Litcarb 400mg Tablet SR in blood. Litcarb 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litcarb 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23195, 'Litcarb 400mg Tablet SR', 'Torcium Biotech Pvt Ltd', 'Litcarb 400mg Tablet SR', 'How should Litcarb 400mg Tablet SR be taken?', 'Take Litcarb 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litcarb 400mg Tablet SR levels.'),
(23196, 'Litcarb 400mg Tablet SR', 'Torcium Biotech Pvt Ltd', 'Litcarb 400mg Tablet SR', 'Which medicines decrease Litcarb 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Litcarb 400mg Tablet SR since many medicines interfere with the working of Litcarb 400mg Tablet SR. Some medicines decrease the levels of Litcarb 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23197, 'Litcef O 200mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcef O 200mg Tablet', 'How long should I take Litcef O 200mg Tablet?', 'Litcef O 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(23198, 'Litcef O 200mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcef O 200mg Tablet', 'What if I do not get better after using Litcef O 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(23199, 'Litcef O 200mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcef O 200mg Tablet', 'Can the use of Litcef O 200mg Tablet cause diarrhea?', 'Yes, the use of Litcef O 200mg Tablet can cause diarrhea. Litcef O 200mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(23200, 'Litcef O 200mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcef O 200mg Tablet', 'Is Litcef O 200mg Tablet effective?', 'Litcef O 200mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Litcef O 200mg Tablet too early, the symptoms may return or worsen.'),
(23201, 'Litcef O 200mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcef O 200mg Tablet', 'What if I forget to take a dose of Litcef O 200mg Tablet?', 'If you forget a dose of Litcef O 200mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(23202, 'Litcef O 200mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcef O 200mg Tablet', 'Is Litcef O 200mg Tablet safe for the kidneys?', 'Yes, Litcef O 200mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(23203, 'Litcef O 200mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcef O 200mg Tablet', 'How long should I take Litcef O 200mg Tablet?', 'Litcef O 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(23204, 'Litcoff DM Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff DM Syrup', 'Can the use of Litcoff DM Syrup cause sleepiness or drowsiness?', 'Yes, Litcoff DM Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(23205, 'Litcoff DM Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff DM Syrup', 'Will Litcoff DM Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(23206, 'Litcoff DM Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff DM Syrup', 'Can I breastfeed while taking Litcoff DM Syrup?', 'No, it is not advisable to breastfeed while using Litcoff DM Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(23207, 'Litcoff DM Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff DM Syrup', 'What are the instructions for storage and disposal of Litcoff DM Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23208, 'Litcoff LS Oral Drops', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Oral Drops', 'Can I give Litcoff LS Oral Drops to my child who is less than 6 years of age?', 'Yes, Litcoff LS Oral Drops is suitable to be given to the child who is between 2 to 6 years of age. Your child’s doctor may prescribe the dose depending upon your child’s body weight.'),
(23209, 'Litcoff LS Oral Drops', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Oral Drops', 'What if my child takes too much Litcoff LS Oral Drops?', 'An overdose or a prolonged intake of Litcoff LS Oral Drops may cause serious side effects like seizures, rapid heart rate, excess salivation. Make sure to give this medicine to your child strictly as per the prescribed dose, time, and way. You must also ensure not to stop the medicine abruptly even if your child starts to feel better. Sudden withdrawal of this medicine may worsen your child’s condition.'),
(23210, 'Litcoff LS Oral Drops', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Oral Drops', 'How should Litcoff LS Oral Drops be stored?', 'Litcoff LS Oral Drops should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any mishap.'),
(23211, 'Litcoff LS Oral Drops', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Oral Drops', 'My child has a severe cough. Can I give him two cough medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by your child’s doctor. In case of confusion, always consult your child’s doctor before giving any medicine to your child.'),
(23212, 'Litcoff LS Oral Drops', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Oral Drops', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines that have been formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before giving it to your child. Follow the prescribed dose strictly.'),
(23213, 'Litcoff LS Oral Drops', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Oral Drops', 'My child is having a cough with no mucus. Can I give Litcoff LS Oral Drops to him?', 'No, Litcoff LS Oral Drops is advised for the treatment of wet cough. It aims to expel the mucus from the airway tract, thereby relieving your child from throat irritation, congestion and rendering him a soothing effect. Whereas, for a dry cough, cough suppressants are a better option. So, it will be wise if you ask your child’s doctor before giving any medicine to your child.'),
(23214, 'Litcoff LS Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Syrup', 'What is Litcoff LS Syrup?', 'Litcoff LS Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(23215, 'Litcoff LS Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Syrup', 'Is it safe to use Litcoff LS Syrup?', 'Yes, it is safe to use Litcoff LS Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(23216, 'Litcoff LS Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Syrup', 'Are there any specific contraindications associated with the use of Litcoff LS Syrup?', 'Use of Litcoff LS Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(23217, 'Litcoff LS Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Syrup', 'Can the use of Litcoff LS Syrup cause dizziness?', 'Yes, the use of Litcoff LS Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(23218, 'Litcoff LS Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Syrup', 'Can the use of Litcoff LS Syrup cause diarrhea?', 'Yes, the use of Litcoff LS Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(23219, 'Litcoff LS Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff LS Syrup', 'What are the recommended storage conditions for Litcoff LS Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23220, 'Litcoff Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff Syrup', 'Will a higher than the recommended dose of Litcoff Syrup be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Litcoff Syrup, please consult your doctor.'),
(23221, 'Litcoff Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff Syrup', 'In which type of cough will the doctor prescribe Litcoff Syrup?', 'Litcoff Syrup is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(23222, 'Litcoff Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff Syrup', 'Are there any contraindications associated with use of Litcoff Syrup?', 'It is not recommended to use Litcoff Syrup if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(23223, 'Litcoff Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litcoff Syrup', 'What are the instructions for the storage and disposal of Litcoff Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23224, 'Lit-CP Suspension Strawberry', 'Omenta Pharma Pvt Ltd', 'Lit-CP Suspension Strawberry', 'What if  I give too much Lit-CP Suspension Strawberry by mistake?', 'Prolonged or excess intake of Lit-CP Suspension Strawberry can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects, and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(23225, 'Lit-CP Suspension Strawberry', 'Omenta Pharma Pvt Ltd', 'Lit-CP Suspension Strawberry', 'Can other medicines be given at the same time as Lit-CP Suspension Strawberry?', 'Lit-CP Suspension Strawberry can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lit-CP Suspension Strawberry. Also, check with your child’s doctor before giving any medicine to your child.'),
(23226, 'Lit-CP Suspension Strawberry', 'Omenta Pharma Pvt Ltd', 'Lit-CP Suspension Strawberry', 'In what all conditions should I avoid giving Lit-CP Suspension Strawberry to my child?', 'If your child is suffering from any Cardiovascular disease (hypertension, heart disease), Diabetes mellitus, GI obstruction, increased intraocular pressure, urinary obstruction, or thyroid dysfunction, avoid giving Lit-CP Suspension Strawberry. Always inform your doctor about your child’s medical history before giving Lit-CP Suspension Strawberry.'),
(23227, 'Lit-CP Suspension Strawberry', 'Omenta Pharma Pvt Ltd', 'Lit-CP Suspension Strawberry', 'My child has a cough and fever. Can I give him two different cough and fever medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. This is because both the medicines could have the same ingredients and taking them together would cause an overdose and could result in serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(23228, 'Lit-CP Suspension Strawberry', 'Omenta Pharma Pvt Ltd', 'Lit-CP Suspension Strawberry', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(23229, 'Lit-CP Suspension Strawberry', 'Omenta Pharma Pvt Ltd', 'Lit-CP Suspension Strawberry', 'Can Lit-CP Suspension Strawberry make my child sleepy?', 'Lit-CP Suspension Strawberry may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(23230, 'Lit-CP Suspension Strawberry', 'Omenta Pharma Pvt Ltd', 'Lit-CP Suspension Strawberry', 'How can I store Lit-CP Suspension Strawberry?', 'Lit-CP Suspension Strawberry should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(23231, 'Lite Pro 200mg Capsule', 'Sonika Life Sciences Ltd', 'Lite Pro 200mg Capsule', 'What is Lite Pro 200mg Capsule?', 'Lite Pro 200mg Capsule is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Lite Pro 200mg Capsule in the body and decreases its side effects.'),
(23232, 'Lite Pro 200mg Capsule', 'Sonika Life Sciences Ltd', 'Lite Pro 200mg Capsule', 'What is Lite Pro 200mg Capsule used to treat?', 'Lite Pro 200mg Capsule is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(23233, 'Lite Pro 200mg Capsule', 'Sonika Life Sciences Ltd', 'Lite Pro 200mg Capsule', 'Can you take Lite Pro 200mg Capsule every day?', 'Yes, Lite Pro 200mg Capsule can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(23234, 'Lite Pro 200mg Capsule', 'Sonika Life Sciences Ltd', 'Lite Pro 200mg Capsule', 'Does Lite Pro 200mg Capsule cause weight gain?', 'Yes, taking Lite Pro 200mg Capsule may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Lite Pro 200mg Capsule is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(23235, 'Lite Pro 200mg Capsule', 'Sonika Life Sciences Ltd', 'Lite Pro 200mg Capsule', 'Is Lite Pro 200mg Capsule safe?', 'Yes, Lite Pro 200mg Capsule is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(23236, 'Lite Pro 200mg Capsule', 'Sonika Life Sciences Ltd', 'Lite Pro 200mg Capsule', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Lite Pro 200mg Capsule (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(23237, 'Lite Tablet', 'Novogen Captab', 'Lite Tablet', 'Is Lite Tablet a steroid? What is it used for?', 'No, Lite Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23238, 'Lite Tablet', 'Novogen Captab', 'Lite Tablet', 'Does Lite Tablet make you tired and drowsy?', 'Yes, Lite Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23239, 'Lite Tablet', 'Novogen Captab', 'Lite Tablet', 'How long does it take for Lite Tablet to work?', 'Lite Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23240, 'Lite Tablet', 'Novogen Captab', 'Lite Tablet', 'Can I take Lite Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lite Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23241, 'Lite Tablet', 'Novogen Captab', 'Lite Tablet', 'Is it safe to take Lite Tablet for a long time?', 'Lite Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lite Tablet for only as long as you need it.'),
(23242, 'Lite Tablet', 'Novogen Captab', 'Lite Tablet', 'For how long should I continue Lite Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lite Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lite Tablet'),
(23243, 'Litec 10mg Tablet', 'Glasier Wellness Inc', 'Litec 10mg Tablet', 'Is Litec 10mg Tablet a steroid? What is it used for?', 'No, Litec 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23244, 'Litec 10mg Tablet', 'Glasier Wellness Inc', 'Litec 10mg Tablet', 'Does Litec 10mg Tablet make you tired and drowsy?', 'Yes, Litec 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23245, 'Litec 10mg Tablet', 'Glasier Wellness Inc', 'Litec 10mg Tablet', 'How long does it take for Litec 10mg Tablet to work?', 'Litec 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23246, 'Litec 10mg Tablet', 'Glasier Wellness Inc', 'Litec 10mg Tablet', 'Can I take Litec 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Litec 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23247, 'Litec 10mg Tablet', 'Glasier Wellness Inc', 'Litec 10mg Tablet', 'Is it safe to take Litec 10mg Tablet for a long time?', 'Litec 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Litec 10mg Tablet for only as long as you need it.'),
(23248, 'Litec 10mg Tablet', 'Glasier Wellness Inc', 'Litec 10mg Tablet', 'For how long should I continue Litec 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Litec 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Litec 10mg Tablet'),
(23249, 'Litec 5 Tablet', 'Tripada Biotec Pvt Ltd', 'Litec 5 Tablet', 'Is Litec 5 Tablet a steroid? What is it used for?', 'No, Litec 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23250, 'Litec 5 Tablet', 'Tripada Biotec Pvt Ltd', 'Litec 5 Tablet', 'Does Litec 5 Tablet make you tired and drowsy?', 'Yes, Litec 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23251, 'Litec 5 Tablet', 'Tripada Biotec Pvt Ltd', 'Litec 5 Tablet', 'How long does it take for Litec 5 Tablet to work?', 'Litec 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23252, 'Litec 5 Tablet', 'Tripada Biotec Pvt Ltd', 'Litec 5 Tablet', 'Can I take Litec 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Litec 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23253, 'Litec 5 Tablet', 'Tripada Biotec Pvt Ltd', 'Litec 5 Tablet', 'Is it safe to take Litec 5 Tablet for a long time?', 'Litec 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Litec 5 Tablet for only as long as you need it.'),
(23254, 'Litec 5 Tablet', 'Tripada Biotec Pvt Ltd', 'Litec 5 Tablet', 'For how long should I continue Litec 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Litec 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Litec 5 Tablet'),
(23255, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'Can the use of Litem 1000 Tablet ER cause sleepiness?', 'Yes, Litem 1000 Tablet ER can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(23256, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'Will the use of Litem 1000 Tablet ER affect my fertility?', 'Litem 1000 Tablet ER is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(23257, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'I have gained weight since I started taking Litem 1000 Tablet ER. Is it because of Litem 1000 Tablet ER? What should I do?', 'Weight gain is an uncommon side effect of Litem 1000 Tablet ER. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(23258, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'How long does Litem 1000 Tablet ER take to show its effect?', 'Litem 1000 Tablet ER may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Litem 1000 Tablet ER starts working completely.'),
(23259, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'For how long do I need to take Litem 1000 Tablet ER?', 'You should continue to take Litem 1000 Tablet ER for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(23260, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'Will I get addicted to Litem 1000 Tablet ER if I use it for a long time?', 'No, Litem 1000 Tablet ER is not habit-forming. No physical or psychological dependence has been reported with Litem 1000 Tablet ER. Consult your doctor if you experience any side effects.'),
(23261, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'What symptoms can occur if someone takes an excess of Litem 1000 Tablet ER?', 'Taking an excess of Litem 1000 Tablet ER may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(23262, 'Litem 1000 Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 1000 Tablet ER', 'How do I come off Litem 1000 Tablet ER?', 'The dose of Litem 1000 Tablet ER should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Litem 1000 Tablet ER straight away, even if you have epilepsy.'),
(23263, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'Can the use of Litem 500 Tablet cause sleepiness?', 'Yes, Litem 500 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(23264, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'Will the use of Litem 500 Tablet affect my fertility?', 'Litem 500 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(23265, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'I have gained weight since I started taking Litem 500 Tablet. Is it because of Litem 500 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Litem 500 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(23266, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'How long does Litem 500 Tablet take to show its effect?', 'Litem 500 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Litem 500 Tablet starts working completely.'),
(23267, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'For how long do I need to take Litem 500 Tablet?', 'You should continue to take Litem 500 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(23268, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'Will I get addicted to Litem 500 Tablet if I use it for a long time?', 'No, Litem 500 Tablet is not habit-forming. No physical or psychological dependence has been reported with Litem 500 Tablet. Consult your doctor if you experience any side effects.'),
(23269, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'What symptoms can occur if someone takes an excess of Litem 500 Tablet?', 'Taking an excess of Litem 500 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(23270, 'Litem 500 Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem 500 Tablet', 'How do I come off Litem 500 Tablet?', 'The dose of Litem 500 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Litem 500 Tablet straight away, even if you have epilepsy.'),
(23271, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'Will the use of Litem Injection affect my fertility?', 'Litem Injection is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(23272, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'Can the use of Litem Injection cause sleepiness?', 'Yes, Litem Injection can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(23273, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'I have gained weight since I started taking Litem Injection. Is it because of Litem Injection? What should I do?', 'Weight gain is an uncommon side effect of Litem Injection. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(23274, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'How long does Litem Injection take to show its effect?', 'Litem Injection may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Litem Injection starts working completely.'),
(23275, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'For how long do I need to take Litem Injection?', 'You should continue to take Litem Injection for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(23276, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'Can I drink alcohol with Litem Injection?', 'Yes, you may drink alcohol while taking Litem Injection. Alcohol itself does not affect the way Litem Injection works. However, alcohol can increase the sleepiness or dizziness that occur as side effects of Litem Injection in some individuals. Therefore, you should avoid alcohol while taking Litem Injection until you know how it affects you.'),
(23277, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'Will I get addicted to Litem Injection if I use it for a long time?', 'No, Litem Injection is not habit-forming. No physical or psychological dependence has been reported with Litem Injection. Consult your doctor if you experience any side effects.'),
(23278, 'Litem Injection', 'Johnlee Pharmaceuticals Pvt Ltd', 'Litem Injection', 'What symptoms can occur if someone takes an excess of Litem Injection?', 'Taking an excess of Litem Injection may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(23279, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(23280, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'Can I decrease the dose of Lite-M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(23281, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'How should Lite-M Oral Suspension be stored?', 'Lite-M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(23282, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'Can Lite-M Oral Suspension make my child sleepy?', 'Lite-M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(23283, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lite-M Oral Suspension?', 'No, don’t start Lite-M Oral Suspension without speaking to your child’s doctor. Moreover, Lite-M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(23284, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lite-M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(23285, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Lite-M Oral Suspension to my child?', 'Some studies show that Lite-M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(23286, 'Lite-M Oral Suspension', 'Novogen Captab', 'Lite-M Oral Suspension', 'Can I use Lite-M Oral Suspension for treating acute asthma attacks in my child?', 'Lite-M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(23287, 'Lite-M Tablet', 'Novogen Captab', 'Lite-M Tablet', 'What is Lite-M Tablet?', 'Lite-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(23288, 'Lite-M Tablet', 'Novogen Captab', 'Lite-M Tablet', 'Can the use of Lite-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lite-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(23289, 'Lite-M Tablet', 'Novogen Captab', 'Lite-M Tablet', 'Can Lite-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lite-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(23290, 'Lite-M Tablet', 'Novogen Captab', 'Lite-M Tablet', 'Can the use of Lite-M Tablet cause dry mouth?', 'Yes, the use of Lite-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(23291, 'Lite-M Tablet', 'Novogen Captab', 'Lite-M Tablet', 'Can I drink alcohol while taking Lite-M Tablet?', 'No, do not take alcohol while taking Lite-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lite-M Tablet.'),
(23292, 'Lite-M Tablet', 'Novogen Captab', 'Lite-M Tablet', 'Will Lite-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lite-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23293, 'Lite-M Tablet', 'Novogen Captab', 'Lite-M Tablet', 'What are the instructions for storage and disposal of Lite-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(23294, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'What is Liteprazole 40mg Injection used for?', 'Liteprazole 40mg Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Liteprazole 40mg Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(23295, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'Can I take antacids along with Liteprazole 40mg Injection?', 'Yes, you can take antacids along with Liteprazole 40mg Injection. Take it 2 hours before or after you take Liteprazole 40mg Injection.'),
(23296, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'How long does it take for Liteprazole 40mg Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Liteprazole 40mg Injection to work properly so you may still have some symptoms during this time.'),
(23297, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'Does Liteprazole 40mg Injection cause weight gain?', 'Although rare but long-term treatment with Liteprazole 40mg Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(23298, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'Can I take alcohol with Liteprazole 40mg Injection?', 'No, alcohol intake is not advised with Liteprazole 40mg Injection. Alcohol itself does not affect the working of Liteprazole 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(23299, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Liteprazole 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(23300, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'Can I take Liteprazole 40mg Injection for a long term?', 'Liteprazole 40mg Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Liteprazole 40mg Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Liteprazole 40mg Injection as advised by your doctor and under their supervision.'),
(23301, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'Are painkillers safe to take along with Liteprazole 40mg Injection?', 'Yes, it is safe to take painkillers along with Liteprazole 40mg Injection. Liteprazole 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Liteprazole 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(23302, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'Is a single dose of Liteprazole 40mg Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Liteprazole 40mg Injection you may get relief with the symptoms. Liteprazole 40mg Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Liteprazole 40mg Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Liteprazole 40mg Injection regularly for 2 weeks as prescribed.'),
(23303, 'Liteprazole 40mg Injection', 'Unilight Pharma', 'Liteprazole 40mg Injection', 'What are the long term side effects of Liteprazole 40mg Injection?', 'If Liteprazole 40mg Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(23304, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'What is Liteprazole 40mg Tablet used for?', 'Liteprazole 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Liteprazole 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(23305, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'How long does it take for Liteprazole 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Liteprazole 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(23306, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'Is a single dose of Liteprazole 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Liteprazole 40mg Tablet you may get relief with the symptoms. Liteprazole 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Liteprazole 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Liteprazole 40mg Tablet regularly for 2 weeks as prescribed.'),
(23307, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'Is Liteprazole 40mg Tablet safe?', 'Yes, Liteprazole 40mg Tablet is relatively safe. Most of the people who take Liteprazole 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(23308, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'Can I take Liteprazole 40mg Tablet for a long term?', 'Liteprazole 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Liteprazole 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Liteprazole 40mg Tablet as advised by your doctor and under their supervision.'),
(23309, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'What are the long term side effects of Liteprazole 40mg Tablet?', 'If Liteprazole 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(23310, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'What is the best time to take Liteprazole 40mg Tablet?', 'Usually, Liteprazole 40mg Tablet is taken once a day, first thing in the morning. If you take Liteprazole 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(23311, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'Can I stop taking Liteprazole 40mg Tablet if I feel better?', 'If you have been taking Liteprazole 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Liteprazole 40mg Tablet.'),
(23312, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'Does Liteprazole 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Liteprazole 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(23313, 'Liteprazole 40mg Tablet', 'Unilight Pharma', 'Liteprazole 40mg Tablet', 'Can I take alcohol with Liteprazole 40mg Tablet?', 'No, alcohol intake is not advised with Liteprazole 40mg Tablet. Alcohol itself does not affect the working of Liteprazole 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(23314, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'What is Liteprazole D 10mg/40mg Tablet?', 'Liteprazole D 10mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(23315, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'Is it safe to use Liteprazole D 10mg/40mg Tablet?', 'Liteprazole D 10mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(23316, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Liteprazole D 10mg/40mg Tablet?', 'The use of Liteprazole D 10mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(23317, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'Can the use of Liteprazole D 10mg/40mg Tablet cause dry mouth?', 'Yes, the use of Liteprazole D 10mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(23318, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'Can the use of Liteprazole D 10mg/40mg Tablet cause diarrhea?', 'Yes, the use of Liteprazole D 10mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(23319, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'What are the instructions for storage and disposal of Liteprazole D 10mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23320, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'What is Liteprazole D 10mg/40mg Tablet price?', 'You can get Liteprazole D 10mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(23321, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'While taking Liteprazole D 10mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(23322, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'Can I take alcohol while taking Liteprazole D 10mg/40mg Tablet?', 'No, alcohol intake is not advised with Liteprazole D 10mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(23323, 'Liteprazole D 10mg/40mg Tablet', 'Unilight Pharma', 'Liteprazole D 10mg/40mg Tablet', 'Can I stop taking Liteprazole D 10mg/40mg Tablet if I feel better?', 'If you have been taking Liteprazole D 10mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(23324, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'What is Liteprazole D 30mg/40mg Capsule SR?', 'Liteprazole D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(23325, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'Is it safe to use Liteprazole D 30mg/40mg Capsule SR?', 'Liteprazole D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(23326, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'Are there any specific contraindications associated with the use of Liteprazole D 30mg/40mg Capsule SR?', 'The use of Liteprazole D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(23327, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'Can the use of Liteprazole D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Liteprazole D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(23328, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'Can the use of Liteprazole D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Liteprazole D 30mg/40mg Capsule SR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(23329, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Liteprazole D 30mg/40mg Capsule SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23330, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'What is Liteprazole D 30mg/40mg Capsule SR price?', 'You can get Liteprazole D 30mg/40mg Capsule SR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(23331, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'While taking Liteprazole D 30mg/40mg Capsule SR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(23332, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'Can I take alcohol while taking Liteprazole D 30mg/40mg Capsule SR?', 'No, alcohol intake is not advised with Liteprazole D 30mg/40mg Capsule SR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(23333, 'Liteprazole D 30mg/40mg Capsule SR', 'Unilight Pharma', 'Liteprazole D 30mg/40mg Capsule SR', 'Can I stop taking Liteprazole D 30mg/40mg Capsule SR if I feel better?', 'If you have been taking Liteprazole D 30mg/40mg Capsule SR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(23334, 'Liteskin Cream', 'East West Pharma', 'Liteskin Cream', 'What are the instructions for the storage and disposal of Liteskin Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23335, 'Liteskin Cream', 'East West Pharma', 'Liteskin Cream', 'How to use Liteskin Cream?', 'Follow the directions given by the doctor. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Liteskin Cream is usually applied two or three times a day to the affected areas of skin.'),
(23336, 'Liteskin Cream', 'East West Pharma', 'Liteskin Cream', 'Will Liteskin Cream be more effective if taken more than prescribed?', 'No, Liteskin Cream will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(23337, 'Litexa-CV Tablet', 'Ultravalue', 'Litexa-CV Tablet', 'Can Litexa-CV Tablet be used to treat viral infections?', 'No, Litexa-CV Tablet is only indicated to treat bacterial infections. It does not treat viral infections such as common cold, flu.'),
(23338, 'Litexa-CV Tablet', 'Ultravalue', 'Litexa-CV Tablet', 'What are the contraindications associated with the use of Litexa-CV Tablet?', 'The use of Litexa-CV Tablet should be avoided in patients with known allergy to any constituents of this medicine. Inform your doctor about your medical history before taking this medicine to avoid any side effects.'),
(23339, 'Litexa-CV Tablet', 'Ultravalue', 'Litexa-CV Tablet', 'Can the use of Litexa-CV Tablet cause diarrhea?', 'Yes, the use of Litexa-CV Tablet can cause diarrhea. Antibiotics can kill good, or helpful bacteria in your stomach and can cause diarrhea. If you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if you have persistent diarrhea. Do not take any other medicines without consulting a doctor.'),
(23340, 'Litexa-CV Tablet', 'Ultravalue', 'Litexa-CV Tablet', 'Can I stop taking Litexa-CV Tablet when I feel better?', 'No, do not stop taking Litexa-CV Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23341, 'Litexa-CV Tablet', 'Ultravalue', 'Litexa-CV Tablet', 'What are the instructions for the storage and disposal of Litexa-CV Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23342, 'Liteza Cream', 'Uniza Healthcare LLP', 'Liteza Cream', 'What are the instructions for the storage and disposal of Liteza Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23343, 'Liteza Cream', 'Uniza Healthcare LLP', 'Liteza Cream', 'How to use Liteza Cream?', 'Follow the directions given by the doctor. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Liteza Cream is usually applied two or three times a day to the affected areas of skin.'),
(23344, 'Liteza Cream', 'Uniza Healthcare LLP', 'Liteza Cream', 'Will Liteza Cream be more effective if taken more than prescribed?', 'No, Liteza Cream will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(23345, 'Litfer 100mg Injection', 'Ality Healthcare', 'Litfer 100mg Injection', 'How long can I take Litfer 100mg Injection for?', 'Litfer 100mg Injection is used to regulate hemoglobin levels in the human body. It is usually given to patients who have iron deficient anemia or iron deficiency. The doctor may suggest using this medicine till the hemoglobin level becomes normal. Do consult your doctor to understand the usage of this medicine properly.'),
(23346, 'Litfer 100mg Injection', 'Ality Healthcare', 'Litfer 100mg Injection', 'How is Litfer 100mg Injection administered?', 'Litfer 100mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Litfer 100mg Injection.'),
(23347, 'Litfer 100mg Injection', 'Ality Healthcare', 'Litfer 100mg Injection', 'Can I take Litfer 100mg Injection for anemia and iron deficiency?', 'Yes, Litfer 100mg Injection can be taken for iron deficiency anemia and iron deficiency. However, its use for other types of anemia is not recommended. Take Litfer 100mg Injection in the dose and duration advised by your doctor.'),
(23348, 'Litfer 100mg Injection', 'Ality Healthcare', 'Litfer 100mg Injection', 'What types of food items should I take other than Litfer 100mg Injection?', 'You can consume food items that are rich in iron content (like red meat, pork, poultry and seafood). Other food items which contain rich iron content include beans, dark green leafy vegetables (like spinach), peas, dried fruit (raisins and apricots), iron-fortified cereals, breads and pastas. You can also try iron supplements (tablets or capsules) available at pharmacy stores for iron deficient anemia.'),
(23349, 'Litfer 100mg Injection', 'Ality Healthcare', 'Litfer 100mg Injection', 'Does Litfer 100mg Injection increase weight?', 'Yes, Litfer 100mg Injection can increase weight. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. You should consult your doctor if you need any further help to manage your weight.'),
(23350, 'Litfol 1500mcg Injection', 'GO-Ish Remedies Limited', 'Litfol 1500mcg Injection', 'What is Litfol 1500mcg Injection?', 'Litfol 1500mcg Injection is a form of vitamin B12. Vitamin B12 is an essential nutrient which is required by the body to make red blood cells and maintain a healthy nervous system. It is also important for releasing energy from food and using vitamin B11 (folic acid).'),
(23351, 'Litfol 1500mcg Injection', 'GO-Ish Remedies Limited', 'Litfol 1500mcg Injection', 'Why can’t I get sufficient vitamin B12 in my diet?', 'You can get vitamin B12 from sources like meat, fish, eggs and dairy products. While people who are vegetarian or vegan may not get Vitamin B12 as it is not found naturally in foods such as fruits, vegetables and grains. Therefore, deficiency of Vitamin B12 is usually noticed in vegetarians or vegans.'),
(23352, 'Litfol 1500mcg Injection', 'GO-Ish Remedies Limited', 'Litfol 1500mcg Injection', 'What happens if I have vitamin B12 deficiency?', 'Deficiency of vitamin B12 may cause tiredness, weakness, constipation, loss of appetite, weight loss and megaloblastic anemia (a condition when red blood cells become larger than normal). It may also lead to nerve problems such as numbness and tingling in the hands and feet. Other symptoms of vitamin B12 deficiency may include problems with balance, depression, confusion, dementia, poor memory and soreness of the mouth or tongue.'),
(23353, 'Litfol 1500mcg Injection', 'GO-Ish Remedies Limited', 'Litfol 1500mcg Injection', 'Is Litfol 1500mcg Injection safe?', 'Litfol 1500mcg Injection is generally well tolerated and considered safe. However, in some cases, rare side effects may be observed such as nausea, diarrhea, anorexia and rash. Discontinue taking this medicine immediately if a rash occurs.'),
(23354, 'Litfol 1500mcg Injection', 'GO-Ish Remedies Limited', 'Litfol 1500mcg Injection', 'How should Litfol 1500mcg Injection be given?', 'Litfol 1500mcg Injection can be injected directly into a vein (intravenously) or into a muscle (intramuscularly). The usual dose is 1 ampoule (0.5 mg of Litfol 1500mcg Injection) and is given 3 times a week. After 2 months, 1 ampoule (0.5 mg of Litfol 1500mcg Injection) is given every one to three months as a part of maintenance therapy.'),
(23355, 'Litfol 1500mcg Injection', 'GO-Ish Remedies Limited', 'Litfol 1500mcg Injection', 'What precautions need to be taken while administering Litfol 1500mcg Injection?', 'Avoid taking the injections at the same site every time. If there is intense pain while injecting or if the blood flows back into the syringe, take out the needle and re-insert at a different site.'),
(23356, 'Litfol Plus Injection', 'GO-Ish Remedies Limited', 'Litfol Plus Injection', 'What is Litfol Plus Injection?', 'Litfol Plus Injection is a combination of three medicines: Nicotinamide, Cynacobalamin, and Folic acid. This medicine is used for treating or preventing vitamin deficiency. Deficiency of vitamins may cause anemia and other nerve problems.'),
(23357, 'Litfol Plus Injection', 'GO-Ish Remedies Limited', 'Litfol Plus Injection', 'What is Vitamin deficiency anemia?', 'Vitamin deficiency anemia is a lack of healthy red blood cells caused when you have lower than normal amounts of certain vitamins. Vitamins whose deficiency leads to vitamin deficiency anemia include folic acid, vitamin B-12, and vitamin C. Vitamin deficiency anemia can also occur if your body has trouble absorbing or processing the vitamins. Vitamin deficiency anemia can usually be corrected with vitamin supplements and by making changes to your diet.'),
(23358, 'Lither-AL Tablet', 'Accilex Nutricorp', 'Lither-AL Tablet', 'How to take Lither-AL Tablet?', 'Take Lither-AL Tablet with food, exactly as prescribed by your doctor. This medicine is usually taken twice a day with a meal for 3 days, or as directed. On your first day of treatment, take your first dose with food, followed by your second dose 8 hours later. Then for the next 2 days, take one dose in the morning and one dose in the evening. Patients should be encouraged to resume normal eating as soon as food can be tolerated, since this improves the absorption of the medicine.'),
(23359, 'Lither-AL Tablet', 'Accilex Nutricorp', 'Lither-AL Tablet', 'Can I take Lither-AL Tablet while I am pregnant?', 'No, Lither-AL Tablet is considered to be harmful for women in their first trimester of pregnancy. The reason being, it increases the chances of fetal loss.'),
(23360, 'Lither-AL Tablet', 'Accilex Nutricorp', 'Lither-AL Tablet', 'Are there any specific contraindications associated with the use of Lither-AL Tablet?', 'The use of Lither-AL Tablet is considered to be harmful for patients with a known hypersensitivity to any of the active or inactive ingredients of the medicine. Caution is advised in patients with cases of severe malaria and in the first trimester of pregnancy.'),
(23361, 'Lither-AL Tablet', 'Accilex Nutricorp', 'Lither-AL Tablet', 'What should I know about the storage and disposal of Lither-AL Tablet?', 'It is advised to keep this medicine in the container it came in, tightly closed. It should be kept out of reach of children. Store it at room temperature and away from excess heat and moisture.'),
(23362, 'Lithex 300mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lithex 300mg Tablet', 'How quickly does Lithex 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithex 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithex 300mg Tablet. Do not stop taking Lithex 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23363, 'Lithex 300mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lithex 300mg Tablet', 'Does Lithex 300mg Tablet make you sleepy?', 'Yes, Lithex 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23364, 'Lithex 300mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lithex 300mg Tablet', 'Is Lithex 300mg Tablet bad for kidneys?', 'Yes, Lithex 300mg Tablet may cause kidney problems. Lithex 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithex 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithex 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23365, 'Lithex 300mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lithex 300mg Tablet', 'Can Lithex 300mg Tablet cause gain in weight?', 'Lithex 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithex 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithex 300mg Tablet or some other reason.'),
(23366, 'Lithex 300mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lithex 300mg Tablet', 'What is the most important information I should know about Lithex 300mg Tablet?', 'Lithex 300mg Tablet therapy should only be started if adequate facilities for assessing Lithex 300mg Tablet levels are available. This is because Lithex 300mg Tablet toxicity is related to increased levels of Lithex 300mg Tablet in blood. Lithex 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithex 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23367, 'Lithex 300mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lithex 300mg Tablet', 'How should Lithex 300mg Tablet be taken?', 'Take Lithex 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithex 300mg Tablet levels.'),
(23368, 'Lithex 300mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lithex 300mg Tablet', 'Which medicines decrease Lithex 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithex 300mg Tablet since many medicines interfere with the working of Lithex 300mg Tablet. Some medicines decrease the levels of Lithex 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23369, 'Lithex 400mg Tablet SR', 'Shine Pharmaceuticals Ltd', 'Lithex 400mg Tablet SR', 'How quickly does Lithex 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithex 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithex 400mg Tablet SR. Do not stop taking Lithex 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23370, 'Lithex 400mg Tablet SR', 'Shine Pharmaceuticals Ltd', 'Lithex 400mg Tablet SR', 'Does Lithex 400mg Tablet SR make you sleepy?', 'Yes, Lithex 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23371, 'Lithex 400mg Tablet SR', 'Shine Pharmaceuticals Ltd', 'Lithex 400mg Tablet SR', 'Is Lithex 400mg Tablet SR bad for kidneys?', 'Yes, Lithex 400mg Tablet SR may cause kidney problems. Lithex 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithex 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithex 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23372, 'Lithex 400mg Tablet SR', 'Shine Pharmaceuticals Ltd', 'Lithex 400mg Tablet SR', 'Can Lithex 400mg Tablet SR cause gain in weight?', 'Lithex 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithex 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithex 400mg Tablet SR or some other reason.'),
(23373, 'Lithex 400mg Tablet SR', 'Shine Pharmaceuticals Ltd', 'Lithex 400mg Tablet SR', 'What is the most important information I should know about Lithex 400mg Tablet SR?', 'Lithex 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithex 400mg Tablet SR levels are available. This is because Lithex 400mg Tablet SR toxicity is related to increased levels of Lithex 400mg Tablet SR in blood. Lithex 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithex 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23374, 'Lithex 400mg Tablet SR', 'Shine Pharmaceuticals Ltd', 'Lithex 400mg Tablet SR', 'How should Lithex 400mg Tablet SR be taken?', 'Take Lithex 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithex 400mg Tablet SR levels.'),
(23375, 'Lithex 400mg Tablet SR', 'Shine Pharmaceuticals Ltd', 'Lithex 400mg Tablet SR', 'Which medicines decrease Lithex 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithex 400mg Tablet SR since many medicines interfere with the working of Lithex 400mg Tablet SR. Some medicines decrease the levels of Lithex 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23376, 'Lithic 300mg Tablet', 'Icon Life Sciences', 'Lithic 300mg Tablet', 'How quickly does Lithic 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithic 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithic 300mg Tablet. Do not stop taking Lithic 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23377, 'Lithic 300mg Tablet', 'Icon Life Sciences', 'Lithic 300mg Tablet', 'Does Lithic 300mg Tablet make you sleepy?', 'Yes, Lithic 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23378, 'Lithic 300mg Tablet', 'Icon Life Sciences', 'Lithic 300mg Tablet', 'Is Lithic 300mg Tablet bad for kidneys?', 'Yes, Lithic 300mg Tablet may cause kidney problems. Lithic 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithic 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithic 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23379, 'Lithic 300mg Tablet', 'Icon Life Sciences', 'Lithic 300mg Tablet', 'Can Lithic 300mg Tablet cause gain in weight?', 'Lithic 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithic 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithic 300mg Tablet or some other reason.'),
(23380, 'Lithic 300mg Tablet', 'Icon Life Sciences', 'Lithic 300mg Tablet', 'What is the most important information I should know about Lithic 300mg Tablet?', 'Lithic 300mg Tablet therapy should only be started if adequate facilities for assessing Lithic 300mg Tablet levels are available. This is because Lithic 300mg Tablet toxicity is related to increased levels of Lithic 300mg Tablet in blood. Lithic 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithic 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23381, 'Lithic 300mg Tablet', 'Icon Life Sciences', 'Lithic 300mg Tablet', 'How should Lithic 300mg Tablet be taken?', 'Take Lithic 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithic 300mg Tablet levels.'),
(23382, 'Lithic 300mg Tablet', 'Icon Life Sciences', 'Lithic 300mg Tablet', 'Which medicines decrease Lithic 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithic 300mg Tablet since many medicines interfere with the working of Lithic 300mg Tablet. Some medicines decrease the levels of Lithic 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23383, 'Lithic 400mg Tablet SR', 'Icon Life Sciences', 'Lithic 400mg Tablet SR', 'How quickly does Lithic 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithic 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithic 400mg Tablet SR. Do not stop taking Lithic 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23384, 'Lithic 400mg Tablet SR', 'Icon Life Sciences', 'Lithic 400mg Tablet SR', 'Does Lithic 400mg Tablet SR make you sleepy?', 'Yes, Lithic 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23385, 'Lithic 400mg Tablet SR', 'Icon Life Sciences', 'Lithic 400mg Tablet SR', 'Is Lithic 400mg Tablet SR bad for kidneys?', 'Yes, Lithic 400mg Tablet SR may cause kidney problems. Lithic 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithic 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithic 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23386, 'Lithic 400mg Tablet SR', 'Icon Life Sciences', 'Lithic 400mg Tablet SR', 'Can Lithic 400mg Tablet SR cause gain in weight?', 'Lithic 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithic 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithic 400mg Tablet SR or some other reason.'),
(23387, 'Lithic 400mg Tablet SR', 'Icon Life Sciences', 'Lithic 400mg Tablet SR', 'What is the most important information I should know about Lithic 400mg Tablet SR?', 'Lithic 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithic 400mg Tablet SR levels are available. This is because Lithic 400mg Tablet SR toxicity is related to increased levels of Lithic 400mg Tablet SR in blood. Lithic 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithic 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23388, 'Lithic 400mg Tablet SR', 'Icon Life Sciences', 'Lithic 400mg Tablet SR', 'How should Lithic 400mg Tablet SR be taken?', 'Take Lithic 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithic 400mg Tablet SR levels.'),
(23389, 'Lithic 400mg Tablet SR', 'Icon Life Sciences', 'Lithic 400mg Tablet SR', 'Which medicines decrease Lithic 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithic 400mg Tablet SR since many medicines interfere with the working of Lithic 400mg Tablet SR. Some medicines decrease the levels of Lithic 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23390, 'Lithic 450mg Tablet SR', 'Icon Life Sciences', 'Lithic 450mg Tablet SR', 'How quickly does Lithic 450mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithic 450mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithic 450mg Tablet SR. Do not stop taking Lithic 450mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23391, 'Lithic 450mg Tablet SR', 'Icon Life Sciences', 'Lithic 450mg Tablet SR', 'Does Lithic 450mg Tablet SR make you sleepy?', 'Yes, Lithic 450mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23392, 'Lithic 450mg Tablet SR', 'Icon Life Sciences', 'Lithic 450mg Tablet SR', 'Is Lithic 450mg Tablet SR bad for kidneys?', 'Yes, Lithic 450mg Tablet SR may cause kidney problems. Lithic 450mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithic 450mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithic 450mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23393, 'Lithic 450mg Tablet SR', 'Icon Life Sciences', 'Lithic 450mg Tablet SR', 'Can Lithic 450mg Tablet SR cause gain in weight?', 'Lithic 450mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithic 450mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithic 450mg Tablet SR or some other reason.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23394, 'Lithic 450mg Tablet SR', 'Icon Life Sciences', 'Lithic 450mg Tablet SR', 'What is the most important information I should know about Lithic 450mg Tablet SR?', 'Lithic 450mg Tablet SR therapy should only be started if adequate facilities for assessing Lithic 450mg Tablet SR levels are available. This is because Lithic 450mg Tablet SR toxicity is related to increased levels of Lithic 450mg Tablet SR in blood. Lithic 450mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithic 450mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23395, 'Lithic 450mg Tablet SR', 'Icon Life Sciences', 'Lithic 450mg Tablet SR', 'How should Lithic 450mg Tablet SR be taken?', 'Take Lithic 450mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithic 450mg Tablet SR levels.'),
(23396, 'Lithic 450mg Tablet SR', 'Icon Life Sciences', 'Lithic 450mg Tablet SR', 'Which medicines decrease Lithic 450mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithic 450mg Tablet SR since many medicines interfere with the working of Lithic 450mg Tablet SR. Some medicines decrease the levels of Lithic 450mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23397, 'Lithicab 300mg Tablet', 'Tas Med India Pvt Ltd', 'Lithicab 300mg Tablet', 'How quickly does Lithicab 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithicab 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithicab 300mg Tablet. Do not stop taking Lithicab 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23398, 'Lithicab 300mg Tablet', 'Tas Med India Pvt Ltd', 'Lithicab 300mg Tablet', 'Does Lithicab 300mg Tablet make you sleepy?', 'Yes, Lithicab 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23399, 'Lithicab 300mg Tablet', 'Tas Med India Pvt Ltd', 'Lithicab 300mg Tablet', 'Is Lithicab 300mg Tablet bad for kidneys?', 'Yes, Lithicab 300mg Tablet may cause kidney problems. Lithicab 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithicab 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithicab 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23400, 'Lithicab 300mg Tablet', 'Tas Med India Pvt Ltd', 'Lithicab 300mg Tablet', 'Can Lithicab 300mg Tablet cause gain in weight?', 'Lithicab 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithicab 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithicab 300mg Tablet or some other reason.'),
(23401, 'Lithicab 300mg Tablet', 'Tas Med India Pvt Ltd', 'Lithicab 300mg Tablet', 'What is the most important information I should know about Lithicab 300mg Tablet?', 'Lithicab 300mg Tablet therapy should only be started if adequate facilities for assessing Lithicab 300mg Tablet levels are available. This is because Lithicab 300mg Tablet toxicity is related to increased levels of Lithicab 300mg Tablet in blood. Lithicab 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithicab 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23402, 'Lithicab 300mg Tablet', 'Tas Med India Pvt Ltd', 'Lithicab 300mg Tablet', 'How should Lithicab 300mg Tablet be taken?', 'Take Lithicab 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithicab 300mg Tablet levels.'),
(23403, 'Lithicab 300mg Tablet', 'Tas Med India Pvt Ltd', 'Lithicab 300mg Tablet', 'Which medicines decrease Lithicab 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithicab 300mg Tablet since many medicines interfere with the working of Lithicab 300mg Tablet. Some medicines decrease the levels of Lithicab 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23404, 'Lithicab 450mg Tablet SR', 'Tas Med India Pvt Ltd', 'Lithicab 450mg Tablet SR', 'How quickly does Lithicab 450mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithicab 450mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithicab 450mg Tablet SR. Do not stop taking Lithicab 450mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23405, 'Lithicab 450mg Tablet SR', 'Tas Med India Pvt Ltd', 'Lithicab 450mg Tablet SR', 'Does Lithicab 450mg Tablet SR make you sleepy?', 'Yes, Lithicab 450mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23406, 'Lithicab 450mg Tablet SR', 'Tas Med India Pvt Ltd', 'Lithicab 450mg Tablet SR', 'Is Lithicab 450mg Tablet SR bad for kidneys?', 'Yes, Lithicab 450mg Tablet SR may cause kidney problems. Lithicab 450mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithicab 450mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithicab 450mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23407, 'Lithicab 450mg Tablet SR', 'Tas Med India Pvt Ltd', 'Lithicab 450mg Tablet SR', 'Can Lithicab 450mg Tablet SR cause gain in weight?', 'Lithicab 450mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithicab 450mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithicab 450mg Tablet SR or some other reason.'),
(23408, 'Lithicab 450mg Tablet SR', 'Tas Med India Pvt Ltd', 'Lithicab 450mg Tablet SR', 'What is the most important information I should know about Lithicab 450mg Tablet SR?', 'Lithicab 450mg Tablet SR therapy should only be started if adequate facilities for assessing Lithicab 450mg Tablet SR levels are available. This is because Lithicab 450mg Tablet SR toxicity is related to increased levels of Lithicab 450mg Tablet SR in blood. Lithicab 450mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithicab 450mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23409, 'Lithicab 450mg Tablet SR', 'Tas Med India Pvt Ltd', 'Lithicab 450mg Tablet SR', 'How should Lithicab 450mg Tablet SR be taken?', 'Take Lithicab 450mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithicab 450mg Tablet SR levels.'),
(23410, 'Lithicab 450mg Tablet SR', 'Tas Med India Pvt Ltd', 'Lithicab 450mg Tablet SR', 'Which medicines decrease Lithicab 450mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithicab 450mg Tablet SR since many medicines interfere with the working of Lithicab 450mg Tablet SR. Some medicines decrease the levels of Lithicab 450mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23411, 'Lithocap 300mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lithocap 300mg Capsule', 'How quickly does Lithocap 300mg Capsule work?', 'It takes some time before you see improvement in your symptoms after taking Lithocap 300mg Capsule. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithocap 300mg Capsule. Do not stop taking Lithocap 300mg Capsule if you feel you are not improving. Instead, discuss it with your doctor.'),
(23412, 'Lithocap 300mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lithocap 300mg Capsule', 'Does Lithocap 300mg Capsule make you sleepy?', 'Yes, Lithocap 300mg Capsule can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23413, 'Lithocap 300mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lithocap 300mg Capsule', 'Is Lithocap 300mg Capsule bad for kidneys?', 'Yes, Lithocap 300mg Capsule may cause kidney problems. Lithocap 300mg Capsule is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithocap 300mg Capsule, your doctor will get blood tests done to see if your kidney function is normal. During Lithocap 300mg Capsule therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23414, 'Lithocap 300mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lithocap 300mg Capsule', 'Can Lithocap 300mg Capsule cause gain in weight?', 'Lithocap 300mg Capsule can cause both weight gain or weight loss. You should keep a check on your weight during Lithocap 300mg Capsule therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithocap 300mg Capsule or some other reason.'),
(23415, 'Lithocap 300mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lithocap 300mg Capsule', 'What is the most important information I should know about Lithocap 300mg Capsule?', 'Lithocap 300mg Capsule therapy should only be started if adequate facilities for assessing Lithocap 300mg Capsule levels are available. This is because Lithocap 300mg Capsule toxicity is related to increased levels of Lithocap 300mg Capsule in blood. Lithocap 300mg Capsule toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithocap 300mg Capsule levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23416, 'Lithocap 300mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lithocap 300mg Capsule', 'How should Lithocap 300mg Capsule be taken?', 'Take Lithocap 300mg Capsule exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithocap 300mg Capsule levels.'),
(23417, 'Lithocap 300mg Capsule', 'Intas Pharmaceuticals Ltd', 'Lithocap 300mg Capsule', 'Which medicines decrease Lithocap 300mg Capsule levels?', 'You should inform your doctor about the medicines you are taking before starting Lithocap 300mg Capsule since many medicines interfere with the working of Lithocap 300mg Capsule. Some medicines decrease the levels of Lithocap 300mg Capsule in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23418, 'Lithocent 300mg Tablet', 'Crescent Therapeutics Ltd', 'Lithocent 300mg Tablet', 'Q. How quickly does Lithocent 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithocent 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithocent 300mg Tablet. Do not stop taking Lithocent 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23419, 'Lithocent 300mg Tablet', 'Crescent Therapeutics Ltd', 'Lithocent 300mg Tablet', 'Q. Does Lithocent 300mg Tablet make you sleepy?', 'Yes, Lithocent 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23420, 'Lithocent 300mg Tablet', 'Crescent Therapeutics Ltd', 'Lithocent 300mg Tablet', 'Q. Is Lithocent 300mg Tablet bad for kidneys?', 'Yes, Lithocent 300mg Tablet may cause kidney problems. Lithocent 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithocent 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithocent 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23421, 'Lithocent 300mg Tablet', 'Crescent Therapeutics Ltd', 'Lithocent 300mg Tablet', 'Q. Can Lithocent 300mg Tablet cause gain in weight?', 'Lithocent 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithocent 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithocent 300mg Tablet or some other reason.'),
(23422, 'Lithocent 300mg Tablet', 'Crescent Therapeutics Ltd', 'Lithocent 300mg Tablet', 'Q. What is the most important information I should know about Lithocent 300mg Tablet?', 'Lithocent 300mg Tablet therapy should only be started if adequate facilities for assessing Lithocent 300mg Tablet levels are available. This is because Lithocent 300mg Tablet toxicity is related to increased levels of Lithocent 300mg Tablet in blood. Lithocent 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithocent 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23423, 'Lithocent 300mg Tablet', 'Crescent Therapeutics Ltd', 'Lithocent 300mg Tablet', 'Q. How should Lithocent 300mg Tablet be taken?', 'Take Lithocent 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithocent 300mg Tablet levels.'),
(23424, 'Lithocent 300mg Tablet', 'Crescent Therapeutics Ltd', 'Lithocent 300mg Tablet', 'Q. Which medicines decrease Lithocent 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithocent 300mg Tablet since many medicines interfere with the working of Lithocent 300mg Tablet. Some medicines decrease the levels of Lithocent 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23425, 'Lithocent CR Tablet', 'Crescent Therapeutics Ltd', 'Lithocent CR Tablet', 'How quickly does Lithocent CR Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithocent CR Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithocent CR Tablet. Do not stop taking Lithocent CR Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23426, 'Lithocent CR Tablet', 'Crescent Therapeutics Ltd', 'Lithocent CR Tablet', 'Does Lithocent CR Tablet make you sleepy?', 'Yes, Lithocent CR Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23427, 'Lithocent CR Tablet', 'Crescent Therapeutics Ltd', 'Lithocent CR Tablet', 'Is Lithocent CR Tablet bad for kidneys?', 'Yes, Lithocent CR Tablet may cause kidney problems. Lithocent CR Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithocent CR Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithocent CR Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23428, 'Lithocent CR Tablet', 'Crescent Therapeutics Ltd', 'Lithocent CR Tablet', 'Can Lithocent CR Tablet cause gain in weight?', 'Lithocent CR Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithocent CR Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithocent CR Tablet or some other reason.'),
(23429, 'Lithocent CR Tablet', 'Crescent Therapeutics Ltd', 'Lithocent CR Tablet', 'What is the most important information I should know about Lithocent CR Tablet?', 'Lithocent CR Tablet therapy should only be started if adequate facilities for assessing Lithocent CR Tablet levels are available. This is because Lithocent CR Tablet toxicity is related to increased levels of Lithocent CR Tablet in blood. Lithocent CR Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithocent CR Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23430, 'Lithocent CR Tablet', 'Crescent Therapeutics Ltd', 'Lithocent CR Tablet', 'How should Lithocent CR Tablet be taken?', 'Take Lithocent CR Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithocent CR Tablet levels.'),
(23431, 'Lithocent CR Tablet', 'Crescent Therapeutics Ltd', 'Lithocent CR Tablet', 'Which medicines decrease Lithocent CR Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithocent CR Tablet since many medicines interfere with the working of Lithocent CR Tablet. Some medicines decrease the levels of Lithocent CR Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23432, 'Lithochik 300mg Tablet', 'Chicky Pharma Pvt  Ltd', 'Lithochik 300mg Tablet', 'How quickly does Lithochik 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithochik 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithochik 300mg Tablet. Do not stop taking Lithochik 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23433, 'Lithochik 300mg Tablet', 'Chicky Pharma Pvt  Ltd', 'Lithochik 300mg Tablet', 'Does Lithochik 300mg Tablet make you sleepy?', 'Yes, Lithochik 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23434, 'Lithochik 300mg Tablet', 'Chicky Pharma Pvt  Ltd', 'Lithochik 300mg Tablet', 'Is Lithochik 300mg Tablet bad for kidneys?', 'Yes, Lithochik 300mg Tablet may cause kidney problems. Lithochik 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithochik 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithochik 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23435, 'Lithochik 300mg Tablet', 'Chicky Pharma Pvt  Ltd', 'Lithochik 300mg Tablet', 'Can Lithochik 300mg Tablet cause gain in weight?', 'Lithochik 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithochik 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithochik 300mg Tablet or some other reason.'),
(23436, 'Lithochik 300mg Tablet', 'Chicky Pharma Pvt  Ltd', 'Lithochik 300mg Tablet', 'What is the most important information I should know about Lithochik 300mg Tablet?', 'Lithochik 300mg Tablet therapy should only be started if adequate facilities for assessing Lithochik 300mg Tablet levels are available. This is because Lithochik 300mg Tablet toxicity is related to increased levels of Lithochik 300mg Tablet in blood. Lithochik 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithochik 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23437, 'Lithochik 300mg Tablet', 'Chicky Pharma Pvt  Ltd', 'Lithochik 300mg Tablet', 'How should Lithochik 300mg Tablet be taken?', 'Take Lithochik 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithochik 300mg Tablet levels.'),
(23438, 'Lithochik 300mg Tablet', 'Chicky Pharma Pvt  Ltd', 'Lithochik 300mg Tablet', 'Which medicines decrease Lithochik 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithochik 300mg Tablet since many medicines interfere with the working of Lithochik 300mg Tablet. Some medicines decrease the levels of Lithochik 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23439, 'Litholent 300 Tablet', 'Talent India ', 'Litholent 300 Tablet', 'How quickly does Litholent 300 Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litholent 300 Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litholent 300 Tablet. Do not stop taking Litholent 300 Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23440, 'Litholent 300 Tablet', 'Talent India ', 'Litholent 300 Tablet', 'Does Litholent 300 Tablet make you sleepy?', 'Yes, Litholent 300 Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23441, 'Litholent 300 Tablet', 'Talent India ', 'Litholent 300 Tablet', 'Is Litholent 300 Tablet bad for kidneys?', 'Yes, Litholent 300 Tablet may cause kidney problems. Litholent 300 Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litholent 300 Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litholent 300 Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23442, 'Litholent 300 Tablet', 'Talent India ', 'Litholent 300 Tablet', 'Can Litholent 300 Tablet cause gain in weight?', 'Litholent 300 Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litholent 300 Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litholent 300 Tablet or some other reason.'),
(23443, 'Litholent 300 Tablet', 'Talent India ', 'Litholent 300 Tablet', 'What is the most important information I should know about Litholent 300 Tablet?', 'Litholent 300 Tablet therapy should only be started if adequate facilities for assessing Litholent 300 Tablet levels are available. This is because Litholent 300 Tablet toxicity is related to increased levels of Litholent 300 Tablet in blood. Litholent 300 Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litholent 300 Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23444, 'Litholent 300 Tablet', 'Talent India ', 'Litholent 300 Tablet', 'How should Litholent 300 Tablet be taken?', 'Take Litholent 300 Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litholent 300 Tablet levels.'),
(23445, 'Litholent 300 Tablet', 'Talent India ', 'Litholent 300 Tablet', 'Which medicines decrease Litholent 300 Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litholent 300 Tablet since many medicines interfere with the working of Litholent 300 Tablet. Some medicines decrease the levels of Litholent 300 Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23446, 'Litholent SR 400 Tablet', 'Talent India ', 'Litholent SR 400 Tablet', 'How quickly does Litholent SR 400 Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litholent SR 400 Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litholent SR 400 Tablet. Do not stop taking Litholent SR 400 Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23447, 'Litholent SR 400 Tablet', 'Talent India ', 'Litholent SR 400 Tablet', 'Does Litholent SR 400 Tablet make you sleepy?', 'Yes, Litholent SR 400 Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23448, 'Litholent SR 400 Tablet', 'Talent India ', 'Litholent SR 400 Tablet', 'Is Litholent SR 400 Tablet bad for kidneys?', 'Yes, Litholent SR 400 Tablet may cause kidney problems. Litholent SR 400 Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litholent SR 400 Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litholent SR 400 Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23449, 'Litholent SR 400 Tablet', 'Talent India ', 'Litholent SR 400 Tablet', 'Can Litholent SR 400 Tablet cause gain in weight?', 'Litholent SR 400 Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litholent SR 400 Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litholent SR 400 Tablet or some other reason.'),
(23450, 'Litholent SR 400 Tablet', 'Talent India ', 'Litholent SR 400 Tablet', 'What is the most important information I should know about Litholent SR 400 Tablet?', 'Litholent SR 400 Tablet therapy should only be started if adequate facilities for assessing Litholent SR 400 Tablet levels are available. This is because Litholent SR 400 Tablet toxicity is related to increased levels of Litholent SR 400 Tablet in blood. Litholent SR 400 Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litholent SR 400 Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23451, 'Litholent SR 400 Tablet', 'Talent India ', 'Litholent SR 400 Tablet', 'How should Litholent SR 400 Tablet be taken?', 'Take Litholent SR 400 Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litholent SR 400 Tablet levels.'),
(23452, 'Litholent SR 400 Tablet', 'Talent India ', 'Litholent SR 400 Tablet', 'Which medicines decrease Litholent SR 400 Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litholent SR 400 Tablet since many medicines interfere with the working of Litholent SR 400 Tablet. Some medicines decrease the levels of Litholent SR 400 Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23453, 'Litholite 300mg Tablet', 'Digmedi Pvt Ltd', 'Litholite 300mg Tablet (Digmedi Pvt Ltd)', 'How quickly does Litholite 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litholite 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litholite 300mg Tablet. Do not stop taking Litholite 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23454, 'Litholite 300mg Tablet', 'Digmedi Pvt Ltd', 'Litholite 300mg Tablet (Digmedi Pvt Ltd)', 'Does Litholite 300mg Tablet make you sleepy?', 'Yes, Litholite 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23455, 'Litholite 300mg Tablet', 'Digmedi Pvt Ltd', 'Litholite 300mg Tablet (Digmedi Pvt Ltd)', 'Is Litholite 300mg Tablet bad for kidneys?', 'Yes, Litholite 300mg Tablet may cause kidney problems. Litholite 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litholite 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litholite 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23456, 'Litholite 300mg Tablet', 'Digmedi Pvt Ltd', 'Litholite 300mg Tablet (Digmedi Pvt Ltd)', 'Can Litholite 300mg Tablet cause gain in weight?', 'Litholite 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litholite 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litholite 300mg Tablet or some other reason.'),
(23457, 'Litholite 300mg Tablet', 'Digmedi Pvt Ltd', 'Litholite 300mg Tablet (Digmedi Pvt Ltd)', 'What is the most important information I should know about Litholite 300mg Tablet?', 'Litholite 300mg Tablet therapy should only be started if adequate facilities for assessing Litholite 300mg Tablet levels are available. This is because Litholite 300mg Tablet toxicity is related to increased levels of Litholite 300mg Tablet in blood. Litholite 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litholite 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23458, 'Litholite 300mg Tablet', 'Digmedi Pvt Ltd', 'Litholite 300mg Tablet (Digmedi Pvt Ltd)', 'How should Litholite 300mg Tablet be taken?', 'Take Litholite 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litholite 300mg Tablet levels.'),
(23459, 'Litholite 300mg Tablet', 'Digmedi Pvt Ltd', 'Litholite 300mg Tablet (Digmedi Pvt Ltd)', 'Which medicines decrease Litholite 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litholite 300mg Tablet since many medicines interfere with the working of Litholite 300mg Tablet. Some medicines decrease the levels of Litholite 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23460, 'Litholite 300mg Tablet', 'Elite Pharma Pvt Ltd', 'Litholite 300mg Tablet (Elite Pharma Pvt Ltd)', 'How quickly does Litholite 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Litholite 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litholite 300mg Tablet. Do not stop taking Litholite 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23461, 'Litholite 300mg Tablet', 'Elite Pharma Pvt Ltd', 'Litholite 300mg Tablet (Elite Pharma Pvt Ltd)', 'Does Litholite 300mg Tablet make you sleepy?', 'Yes, Litholite 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23462, 'Litholite 300mg Tablet', 'Elite Pharma Pvt Ltd', 'Litholite 300mg Tablet (Elite Pharma Pvt Ltd)', 'Is Litholite 300mg Tablet bad for kidneys?', 'Yes, Litholite 300mg Tablet may cause kidney problems. Litholite 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litholite 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Litholite 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23463, 'Litholite 300mg Tablet', 'Elite Pharma Pvt Ltd', 'Litholite 300mg Tablet (Elite Pharma Pvt Ltd)', 'Can Litholite 300mg Tablet cause gain in weight?', 'Litholite 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Litholite 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litholite 300mg Tablet or some other reason.'),
(23464, 'Litholite 300mg Tablet', 'Elite Pharma Pvt Ltd', 'Litholite 300mg Tablet (Elite Pharma Pvt Ltd)', 'What is the most important information I should know about Litholite 300mg Tablet?', 'Litholite 300mg Tablet therapy should only be started if adequate facilities for assessing Litholite 300mg Tablet levels are available. This is because Litholite 300mg Tablet toxicity is related to increased levels of Litholite 300mg Tablet in blood. Litholite 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litholite 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23465, 'Litholite 300mg Tablet', 'Elite Pharma Pvt Ltd', 'Litholite 300mg Tablet (Elite Pharma Pvt Ltd)', 'How should Litholite 300mg Tablet be taken?', 'Take Litholite 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litholite 300mg Tablet levels.'),
(23466, 'Litholite 300mg Tablet', 'Elite Pharma Pvt Ltd', 'Litholite 300mg Tablet (Elite Pharma Pvt Ltd)', 'Which medicines decrease Litholite 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Litholite 300mg Tablet since many medicines interfere with the working of Litholite 300mg Tablet. Some medicines decrease the levels of Litholite 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23467, 'Litholite 400mg Tablet SR', 'Elite Pharma Pvt Ltd', 'Litholite 400mg Tablet SR', 'How quickly does Litholite 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Litholite 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litholite 400mg Tablet SR. Do not stop taking Litholite 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23468, 'Litholite 400mg Tablet SR', 'Elite Pharma Pvt Ltd', 'Litholite 400mg Tablet SR', 'Does Litholite 400mg Tablet SR make you sleepy?', 'Yes, Litholite 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23469, 'Litholite 400mg Tablet SR', 'Elite Pharma Pvt Ltd', 'Litholite 400mg Tablet SR', 'Is Litholite 400mg Tablet SR bad for kidneys?', 'Yes, Litholite 400mg Tablet SR may cause kidney problems. Litholite 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litholite 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Litholite 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23470, 'Litholite 400mg Tablet SR', 'Elite Pharma Pvt Ltd', 'Litholite 400mg Tablet SR', 'Can Litholite 400mg Tablet SR cause gain in weight?', 'Litholite 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Litholite 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litholite 400mg Tablet SR or some other reason.'),
(23471, 'Litholite 400mg Tablet SR', 'Elite Pharma Pvt Ltd', 'Litholite 400mg Tablet SR', 'What is the most important information I should know about Litholite 400mg Tablet SR?', 'Litholite 400mg Tablet SR therapy should only be started if adequate facilities for assessing Litholite 400mg Tablet SR levels are available. This is because Litholite 400mg Tablet SR toxicity is related to increased levels of Litholite 400mg Tablet SR in blood. Litholite 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litholite 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23472, 'Litholite 400mg Tablet SR', 'Elite Pharma Pvt Ltd', 'Litholite 400mg Tablet SR', 'How should Litholite 400mg Tablet SR be taken?', 'Take Litholite 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litholite 400mg Tablet SR levels.'),
(23473, 'Litholite 400mg Tablet SR', 'Elite Pharma Pvt Ltd', 'Litholite 400mg Tablet SR', 'Which medicines decrease Litholite 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Litholite 400mg Tablet SR since many medicines interfere with the working of Litholite 400mg Tablet SR. Some medicines decrease the levels of Litholite 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23474, 'Lithomed SR Tablet', 'Medon Pharmaceuticals Pvt Ltd', 'Lithomed SR Tablet', 'How quickly does Lithomed SR Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithomed SR Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithomed SR Tablet. Do not stop taking Lithomed SR Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23475, 'Lithomed SR Tablet', 'Medon Pharmaceuticals Pvt Ltd', 'Lithomed SR Tablet', 'Does Lithomed SR Tablet make you sleepy?', 'Yes, Lithomed SR Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23476, 'Lithomed SR Tablet', 'Medon Pharmaceuticals Pvt Ltd', 'Lithomed SR Tablet', 'Is Lithomed SR Tablet bad for kidneys?', 'Yes, Lithomed SR Tablet may cause kidney problems. Lithomed SR Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithomed SR Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithomed SR Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23477, 'Lithomed SR Tablet', 'Medon Pharmaceuticals Pvt Ltd', 'Lithomed SR Tablet', 'Can Lithomed SR Tablet cause gain in weight?', 'Lithomed SR Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithomed SR Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithomed SR Tablet or some other reason.'),
(23478, 'Lithomed SR Tablet', 'Medon Pharmaceuticals Pvt Ltd', 'Lithomed SR Tablet', 'What is the most important information I should know about Lithomed SR Tablet?', 'Lithomed SR Tablet therapy should only be started if adequate facilities for assessing Lithomed SR Tablet levels are available. This is because Lithomed SR Tablet toxicity is related to increased levels of Lithomed SR Tablet in blood. Lithomed SR Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithomed SR Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23479, 'Lithomed SR Tablet', 'Medon Pharmaceuticals Pvt Ltd', 'Lithomed SR Tablet', 'How should Lithomed SR Tablet be taken?', 'Take Lithomed SR Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithomed SR Tablet levels.'),
(23480, 'Lithomed SR Tablet', 'Medon Pharmaceuticals Pvt Ltd', 'Lithomed SR Tablet', 'Which medicines decrease Lithomed SR Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithomed SR Tablet since many medicines interfere with the working of Lithomed SR Tablet. Some medicines decrease the levels of Lithomed SR Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23481, 'Lithomin 400mg Capsule', 'Torway Pharmacia Pvt Ltd', 'Lithomin 400mg Capsule', 'Q. How quickly does Lithomin 400mg Capsule work?', 'It takes some time before you see improvement in your symptoms after taking Lithomin 400mg Capsule. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithomin 400mg Capsule. Do not stop taking Lithomin 400mg Capsule if you feel you are not improving. Instead, discuss it with your doctor.'),
(23482, 'Lithomin 400mg Capsule', 'Torway Pharmacia Pvt Ltd', 'Lithomin 400mg Capsule', 'Q. Does Lithomin 400mg Capsule make you sleepy?', 'Yes, Lithomin 400mg Capsule can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23483, 'Lithomin 400mg Capsule', 'Torway Pharmacia Pvt Ltd', 'Lithomin 400mg Capsule', 'Q. Is Lithomin 400mg Capsule bad for kidneys?', 'Yes, Lithomin 400mg Capsule may cause kidney problems. Lithomin 400mg Capsule is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithomin 400mg Capsule, your doctor will get blood tests done to see if your kidney function is normal. During Lithomin 400mg Capsule therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23484, 'Lithomin 400mg Capsule', 'Torway Pharmacia Pvt Ltd', 'Lithomin 400mg Capsule', 'Q. Can Lithomin 400mg Capsule cause gain in weight?', 'Lithomin 400mg Capsule can cause both weight gain or weight loss. You should keep a check on your weight during Lithomin 400mg Capsule therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithomin 400mg Capsule or some other reason.'),
(23485, 'Lithomin 400mg Capsule', 'Torway Pharmacia Pvt Ltd', 'Lithomin 400mg Capsule', 'Q. What is the most important information I should know about Lithomin 400mg Capsule?', 'Lithomin 400mg Capsule therapy should only be started if adequate facilities for assessing Lithomin 400mg Capsule levels are available. This is because Lithomin 400mg Capsule toxicity is related to increased levels of Lithomin 400mg Capsule in blood. Lithomin 400mg Capsule toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithomin 400mg Capsule levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23486, 'Lithomin 400mg Capsule', 'Torway Pharmacia Pvt Ltd', 'Lithomin 400mg Capsule', 'Q. How should Lithomin 400mg Capsule be taken?', 'Take Lithomin 400mg Capsule exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithomin 400mg Capsule levels.'),
(23487, 'Lithomin 400mg Capsule', 'Torway Pharmacia Pvt Ltd', 'Lithomin 400mg Capsule', 'Q. Which medicines decrease Lithomin 400mg Capsule levels?', 'You should inform your doctor about the medicines you are taking before starting Lithomin 400mg Capsule since many medicines interfere with the working of Lithomin 400mg Capsule. Some medicines decrease the levels of Lithomin 400mg Capsule in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23488, 'Lithon 300mg Tablet', 'RKG Pharma', 'Lithon 300mg Tablet', 'How quickly does Lithon 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithon 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithon 300mg Tablet. Do not stop taking Lithon 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23489, 'Lithon 300mg Tablet', 'RKG Pharma', 'Lithon 300mg Tablet', 'Does Lithon 300mg Tablet make you sleepy?', 'Yes, Lithon 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23490, 'Lithon 300mg Tablet', 'RKG Pharma', 'Lithon 300mg Tablet', 'Is Lithon 300mg Tablet bad for kidneys?', 'Yes, Lithon 300mg Tablet may cause kidney problems. Lithon 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithon 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithon 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23491, 'Lithon 300mg Tablet', 'RKG Pharma', 'Lithon 300mg Tablet', 'Can Lithon 300mg Tablet cause gain in weight?', 'Lithon 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithon 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithon 300mg Tablet or some other reason.'),
(23492, 'Lithon 300mg Tablet', 'RKG Pharma', 'Lithon 300mg Tablet', 'What is the most important information I should know about Lithon 300mg Tablet?', 'Lithon 300mg Tablet therapy should only be started if adequate facilities for assessing Lithon 300mg Tablet levels are available. This is because Lithon 300mg Tablet toxicity is related to increased levels of Lithon 300mg Tablet in blood. Lithon 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithon 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23493, 'Lithon 300mg Tablet', 'RKG Pharma', 'Lithon 300mg Tablet', 'How should Lithon 300mg Tablet be taken?', 'Take Lithon 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithon 300mg Tablet levels.'),
(23494, 'Lithon 300mg Tablet', 'RKG Pharma', 'Lithon 300mg Tablet', 'Which medicines decrease Lithon 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithon 300mg Tablet since many medicines interfere with the working of Lithon 300mg Tablet. Some medicines decrease the levels of Lithon 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23495, 'Lithon 450mg Tablet SR', 'RKG Pharma', 'Lithon 450mg Tablet SR', 'How quickly does Lithon 450mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithon 450mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithon 450mg Tablet SR. Do not stop taking Lithon 450mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23496, 'Lithon 450mg Tablet SR', 'RKG Pharma', 'Lithon 450mg Tablet SR', 'Does Lithon 450mg Tablet SR make you sleepy?', 'Yes, Lithon 450mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23497, 'Lithon 450mg Tablet SR', 'RKG Pharma', 'Lithon 450mg Tablet SR', 'Is Lithon 450mg Tablet SR bad for kidneys?', 'Yes, Lithon 450mg Tablet SR may cause kidney problems. Lithon 450mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithon 450mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithon 450mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23498, 'Lithon 450mg Tablet SR', 'RKG Pharma', 'Lithon 450mg Tablet SR', 'Can Lithon 450mg Tablet SR cause gain in weight?', 'Lithon 450mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithon 450mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithon 450mg Tablet SR or some other reason.'),
(23499, 'Lithon 450mg Tablet SR', 'RKG Pharma', 'Lithon 450mg Tablet SR', 'What is the most important information I should know about Lithon 450mg Tablet SR?', 'Lithon 450mg Tablet SR therapy should only be started if adequate facilities for assessing Lithon 450mg Tablet SR levels are available. This is because Lithon 450mg Tablet SR toxicity is related to increased levels of Lithon 450mg Tablet SR in blood. Lithon 450mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithon 450mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23500, 'Lithon 450mg Tablet SR', 'RKG Pharma', 'Lithon 450mg Tablet SR', 'How should Lithon 450mg Tablet SR be taken?', 'Take Lithon 450mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithon 450mg Tablet SR levels.'),
(23501, 'Lithon 450mg Tablet SR', 'RKG Pharma', 'Lithon 450mg Tablet SR', 'Which medicines decrease Lithon 450mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithon 450mg Tablet SR since many medicines interfere with the working of Lithon 450mg Tablet SR. Some medicines decrease the levels of Lithon 450mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23502, 'Lithonex 300mg Tablet', 'Theo Pharma Pvt Ltd', 'Lithonex 300mg Tablet', 'How quickly does Lithonex 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithonex 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithonex 300mg Tablet. Do not stop taking Lithonex 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23503, 'Lithonex 300mg Tablet', 'Theo Pharma Pvt Ltd', 'Lithonex 300mg Tablet', 'Does Lithonex 300mg Tablet make you sleepy?', 'Yes, Lithonex 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23504, 'Lithonex 300mg Tablet', 'Theo Pharma Pvt Ltd', 'Lithonex 300mg Tablet', 'Is Lithonex 300mg Tablet bad for kidneys?', 'Yes, Lithonex 300mg Tablet may cause kidney problems. Lithonex 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithonex 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithonex 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23505, 'Lithonex 300mg Tablet', 'Theo Pharma Pvt Ltd', 'Lithonex 300mg Tablet', 'Can Lithonex 300mg Tablet cause gain in weight?', 'Lithonex 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithonex 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithonex 300mg Tablet or some other reason.'),
(23506, 'Lithonex 300mg Tablet', 'Theo Pharma Pvt Ltd', 'Lithonex 300mg Tablet', 'What is the most important information I should know about Lithonex 300mg Tablet?', 'Lithonex 300mg Tablet therapy should only be started if adequate facilities for assessing Lithonex 300mg Tablet levels are available. This is because Lithonex 300mg Tablet toxicity is related to increased levels of Lithonex 300mg Tablet in blood. Lithonex 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithonex 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23507, 'Lithonex 300mg Tablet', 'Theo Pharma Pvt Ltd', 'Lithonex 300mg Tablet', 'How should Lithonex 300mg Tablet be taken?', 'Take Lithonex 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithonex 300mg Tablet levels.'),
(23508, 'Lithonex 300mg Tablet', 'Theo Pharma Pvt Ltd', 'Lithonex 300mg Tablet', 'Which medicines decrease Lithonex 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithonex 300mg Tablet since many medicines interfere with the working of Lithonex 300mg Tablet. Some medicines decrease the levels of Lithonex 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23509, 'Lithonex 400mg Tablet SR', 'Theo Pharma Pvt Ltd', 'Lithonex 400mg Tablet SR', 'How quickly does Lithonex 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithonex 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithonex 400mg Tablet SR. Do not stop taking Lithonex 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23510, 'Lithonex 400mg Tablet SR', 'Theo Pharma Pvt Ltd', 'Lithonex 400mg Tablet SR', 'Does Lithonex 400mg Tablet SR make you sleepy?', 'Yes, Lithonex 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23511, 'Lithonex 400mg Tablet SR', 'Theo Pharma Pvt Ltd', 'Lithonex 400mg Tablet SR', 'Is Lithonex 400mg Tablet SR bad for kidneys?', 'Yes, Lithonex 400mg Tablet SR may cause kidney problems. Lithonex 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithonex 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithonex 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23512, 'Lithonex 400mg Tablet SR', 'Theo Pharma Pvt Ltd', 'Lithonex 400mg Tablet SR', 'Can Lithonex 400mg Tablet SR cause gain in weight?', 'Lithonex 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithonex 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithonex 400mg Tablet SR or some other reason.'),
(23513, 'Lithonex 400mg Tablet SR', 'Theo Pharma Pvt Ltd', 'Lithonex 400mg Tablet SR', 'What is the most important information I should know about Lithonex 400mg Tablet SR?', 'Lithonex 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithonex 400mg Tablet SR levels are available. This is because Lithonex 400mg Tablet SR toxicity is related to increased levels of Lithonex 400mg Tablet SR in blood. Lithonex 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithonex 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23514, 'Lithonex 400mg Tablet SR', 'Theo Pharma Pvt Ltd', 'Lithonex 400mg Tablet SR', 'How should Lithonex 400mg Tablet SR be taken?', 'Take Lithonex 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithonex 400mg Tablet SR levels.'),
(23515, 'Lithonex 400mg Tablet SR', 'Theo Pharma Pvt Ltd', 'Lithonex 400mg Tablet SR', 'Which medicines decrease Lithonex 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithonex 400mg Tablet SR since many medicines interfere with the working of Lithonex 400mg Tablet SR. Some medicines decrease the levels of Lithonex 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23516, 'Lithonex 450mg Tablet XL', 'Theo Pharma Pvt Ltd', 'Lithonex 450mg Tablet XL', 'How quickly does Lithonex 450mg Tablet XL work?', 'It takes some time before you see improvement in your symptoms after taking Lithonex 450mg Tablet XL. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithonex 450mg Tablet XL. Do not stop taking Lithonex 450mg Tablet XL if you feel you are not improving. Instead, discuss it with your doctor.'),
(23517, 'Lithonex 450mg Tablet XL', 'Theo Pharma Pvt Ltd', 'Lithonex 450mg Tablet XL', 'Does Lithonex 450mg Tablet XL make you sleepy?', 'Yes, Lithonex 450mg Tablet XL can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23518, 'Lithonex 450mg Tablet XL', 'Theo Pharma Pvt Ltd', 'Lithonex 450mg Tablet XL', 'Is Lithonex 450mg Tablet XL bad for kidneys?', 'Yes, Lithonex 450mg Tablet XL may cause kidney problems. Lithonex 450mg Tablet XL is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithonex 450mg Tablet XL, your doctor will get blood tests done to see if your kidney function is normal. During Lithonex 450mg Tablet XL therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23519, 'Lithonex 450mg Tablet XL', 'Theo Pharma Pvt Ltd', 'Lithonex 450mg Tablet XL', 'Can Lithonex 450mg Tablet XL cause gain in weight?', 'Lithonex 450mg Tablet XL can cause both weight gain or weight loss. You should keep a check on your weight during Lithonex 450mg Tablet XL therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithonex 450mg Tablet XL or some other reason.'),
(23520, 'Lithonex 450mg Tablet XL', 'Theo Pharma Pvt Ltd', 'Lithonex 450mg Tablet XL', 'What is the most important information I should know about Lithonex 450mg Tablet XL?', 'Lithonex 450mg Tablet XL therapy should only be started if adequate facilities for assessing Lithonex 450mg Tablet XL levels are available. This is because Lithonex 450mg Tablet XL toxicity is related to increased levels of Lithonex 450mg Tablet XL in blood. Lithonex 450mg Tablet XL toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithonex 450mg Tablet XL levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23521, 'Lithonex 450mg Tablet XL', 'Theo Pharma Pvt Ltd', 'Lithonex 450mg Tablet XL', 'How should Lithonex 450mg Tablet XL be taken?', 'Take Lithonex 450mg Tablet XL exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithonex 450mg Tablet XL levels.'),
(23522, 'Lithonex 450mg Tablet XL', 'Theo Pharma Pvt Ltd', 'Lithonex 450mg Tablet XL', 'Which medicines decrease Lithonex 450mg Tablet XL levels?', 'You should inform your doctor about the medicines you are taking before starting Lithonex 450mg Tablet XL since many medicines interfere with the working of Lithonex 450mg Tablet XL. Some medicines decrease the levels of Lithonex 450mg Tablet XL in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23523, 'Lithonik 300mg Tablet', 'Sycap Pharma', 'Lithonik 300mg Tablet', 'How quickly does Lithonik 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithonik 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithonik 300mg Tablet. Do not stop taking Lithonik 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23524, 'Lithonik 300mg Tablet', 'Sycap Pharma', 'Lithonik 300mg Tablet', 'Does Lithonik 300mg Tablet make you sleepy?', 'Yes, Lithonik 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23525, 'Lithonik 300mg Tablet', 'Sycap Pharma', 'Lithonik 300mg Tablet', 'Is Lithonik 300mg Tablet bad for kidneys?', 'Yes, Lithonik 300mg Tablet may cause kidney problems. Lithonik 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithonik 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithonik 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23526, 'Lithonik 300mg Tablet', 'Sycap Pharma', 'Lithonik 300mg Tablet', 'Can Lithonik 300mg Tablet cause gain in weight?', 'Lithonik 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithonik 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithonik 300mg Tablet or some other reason.'),
(23527, 'Lithonik 300mg Tablet', 'Sycap Pharma', 'Lithonik 300mg Tablet', 'What is the most important information I should know about Lithonik 300mg Tablet?', 'Lithonik 300mg Tablet therapy should only be started if adequate facilities for assessing Lithonik 300mg Tablet levels are available. This is because Lithonik 300mg Tablet toxicity is related to increased levels of Lithonik 300mg Tablet in blood. Lithonik 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithonik 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23528, 'Lithonik 300mg Tablet', 'Sycap Pharma', 'Lithonik 300mg Tablet', 'How should Lithonik 300mg Tablet be taken?', 'Take Lithonik 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithonik 300mg Tablet levels.'),
(23529, 'Lithonik 300mg Tablet', 'Sycap Pharma', 'Lithonik 300mg Tablet', 'Which medicines decrease Lithonik 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithonik 300mg Tablet since many medicines interfere with the working of Lithonik 300mg Tablet. Some medicines decrease the levels of Lithonik 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23530, 'Lithonik 400mg Tablet SR', 'Sycap Pharma', 'Lithonik 400mg Tablet SR', 'How quickly does Lithonik 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithonik 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithonik 400mg Tablet SR. Do not stop taking Lithonik 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23531, 'Lithonik 400mg Tablet SR', 'Sycap Pharma', 'Lithonik 400mg Tablet SR', 'Does Lithonik 400mg Tablet SR make you sleepy?', 'Yes, Lithonik 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23532, 'Lithonik 400mg Tablet SR', 'Sycap Pharma', 'Lithonik 400mg Tablet SR', 'Is Lithonik 400mg Tablet SR bad for kidneys?', 'Yes, Lithonik 400mg Tablet SR may cause kidney problems. Lithonik 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithonik 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithonik 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23533, 'Lithonik 400mg Tablet SR', 'Sycap Pharma', 'Lithonik 400mg Tablet SR', 'Can Lithonik 400mg Tablet SR cause gain in weight?', 'Lithonik 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithonik 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithonik 400mg Tablet SR or some other reason.'),
(23534, 'Lithonik 400mg Tablet SR', 'Sycap Pharma', 'Lithonik 400mg Tablet SR', 'What is the most important information I should know about Lithonik 400mg Tablet SR?', 'Lithonik 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithonik 400mg Tablet SR levels are available. This is because Lithonik 400mg Tablet SR toxicity is related to increased levels of Lithonik 400mg Tablet SR in blood. Lithonik 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithonik 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23535, 'Lithonik 400mg Tablet SR', 'Sycap Pharma', 'Lithonik 400mg Tablet SR', 'How should Lithonik 400mg Tablet SR be taken?', 'Take Lithonik 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithonik 400mg Tablet SR levels.'),
(23536, 'Lithonik 400mg Tablet SR', 'Sycap Pharma', 'Lithonik 400mg Tablet SR', 'Which medicines decrease Lithonik 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithonik 400mg Tablet SR since many medicines interfere with the working of Lithonik 400mg Tablet SR. Some medicines decrease the levels of Lithonik 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23537, 'Lithonik 450mg Tablet SR', 'Sycap Pharma', 'Lithonik 450mg Tablet SR', 'How quickly does Lithonik 450mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithonik 450mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithonik 450mg Tablet SR. Do not stop taking Lithonik 450mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23538, 'Lithonik 450mg Tablet SR', 'Sycap Pharma', 'Lithonik 450mg Tablet SR', 'Does Lithonik 450mg Tablet SR make you sleepy?', 'Yes, Lithonik 450mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23539, 'Lithonik 450mg Tablet SR', 'Sycap Pharma', 'Lithonik 450mg Tablet SR', 'Is Lithonik 450mg Tablet SR bad for kidneys?', 'Yes, Lithonik 450mg Tablet SR may cause kidney problems. Lithonik 450mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithonik 450mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithonik 450mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23540, 'Lithonik 450mg Tablet SR', 'Sycap Pharma', 'Lithonik 450mg Tablet SR', 'Can Lithonik 450mg Tablet SR cause gain in weight?', 'Lithonik 450mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithonik 450mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithonik 450mg Tablet SR or some other reason.'),
(23541, 'Lithonik 450mg Tablet SR', 'Sycap Pharma', 'Lithonik 450mg Tablet SR', 'What is the most important information I should know about Lithonik 450mg Tablet SR?', 'Lithonik 450mg Tablet SR therapy should only be started if adequate facilities for assessing Lithonik 450mg Tablet SR levels are available. This is because Lithonik 450mg Tablet SR toxicity is related to increased levels of Lithonik 450mg Tablet SR in blood. Lithonik 450mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithonik 450mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23542, 'Lithonik 450mg Tablet SR', 'Sycap Pharma', 'Lithonik 450mg Tablet SR', 'How should Lithonik 450mg Tablet SR be taken?', 'Take Lithonik 450mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithonik 450mg Tablet SR levels.'),
(23543, 'Lithonik 450mg Tablet SR', 'Sycap Pharma', 'Lithonik 450mg Tablet SR', 'Which medicines decrease Lithonik 450mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithonik 450mg Tablet SR since many medicines interfere with the working of Lithonik 450mg Tablet SR. Some medicines decrease the levels of Lithonik 450mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23544, 'Lithopik 300mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 300mg Tablet', 'How quickly does Lithopik 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithopik 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithopik 300mg Tablet. Do not stop taking Lithopik 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23545, 'Lithopik 300mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 300mg Tablet', 'Does Lithopik 300mg Tablet make you sleepy?', 'Yes, Lithopik 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23546, 'Lithopik 300mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 300mg Tablet', 'Is Lithopik 300mg Tablet bad for kidneys?', 'Yes, Lithopik 300mg Tablet may cause kidney problems. Lithopik 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithopik 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithopik 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23547, 'Lithopik 300mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 300mg Tablet', 'Can Lithopik 300mg Tablet cause gain in weight?', 'Lithopik 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithopik 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithopik 300mg Tablet or some other reason.'),
(23548, 'Lithopik 300mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 300mg Tablet', 'What is the most important information I should know about Lithopik 300mg Tablet?', 'Lithopik 300mg Tablet therapy should only be started if adequate facilities for assessing Lithopik 300mg Tablet levels are available. This is because Lithopik 300mg Tablet toxicity is related to increased levels of Lithopik 300mg Tablet in blood. Lithopik 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithopik 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23549, 'Lithopik 300mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 300mg Tablet', 'How should Lithopik 300mg Tablet be taken?', 'Take Lithopik 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithopik 300mg Tablet levels.'),
(23550, 'Lithopik 300mg Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 300mg Tablet', 'Which medicines decrease Lithopik 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithopik 300mg Tablet since many medicines interfere with the working of Lithopik 300mg Tablet. Some medicines decrease the levels of Lithopik 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23551, 'Lithopik 400mg Tablet SR', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 400mg Tablet SR', 'How quickly does Lithopik 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithopik 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithopik 400mg Tablet SR. Do not stop taking Lithopik 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23552, 'Lithopik 400mg Tablet SR', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 400mg Tablet SR', 'Does Lithopik 400mg Tablet SR make you sleepy?', 'Yes, Lithopik 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23553, 'Lithopik 400mg Tablet SR', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 400mg Tablet SR', 'Is Lithopik 400mg Tablet SR bad for kidneys?', 'Yes, Lithopik 400mg Tablet SR may cause kidney problems. Lithopik 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithopik 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithopik 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23554, 'Lithopik 400mg Tablet SR', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 400mg Tablet SR', 'Can Lithopik 400mg Tablet SR cause gain in weight?', 'Lithopik 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithopik 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithopik 400mg Tablet SR or some other reason.'),
(23555, 'Lithopik 400mg Tablet SR', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 400mg Tablet SR', 'What is the most important information I should know about Lithopik 400mg Tablet SR?', 'Lithopik 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithopik 400mg Tablet SR levels are available. This is because Lithopik 400mg Tablet SR toxicity is related to increased levels of Lithopik 400mg Tablet SR in blood. Lithopik 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithopik 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23556, 'Lithopik 400mg Tablet SR', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 400mg Tablet SR', 'How should Lithopik 400mg Tablet SR be taken?', 'Take Lithopik 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithopik 400mg Tablet SR levels.'),
(23557, 'Lithopik 400mg Tablet SR', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lithopik 400mg Tablet SR', 'Which medicines decrease Lithopik 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithopik 400mg Tablet SR since many medicines interfere with the working of Lithopik 400mg Tablet SR. Some medicines decrease the levels of Lithopik 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23558, 'Lithoril 300mg Tablet', 'Reliance Formulation Pvt Ltd', 'Lithoril 300mg Tablet', 'How quickly does Lithoril 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithoril 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithoril 300mg Tablet. Do not stop taking Lithoril 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23559, 'Lithoril 300mg Tablet', 'Reliance Formulation Pvt Ltd', 'Lithoril 300mg Tablet', 'Does Lithoril 300mg Tablet make you sleepy?', 'Yes, Lithoril 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23560, 'Lithoril 300mg Tablet', 'Reliance Formulation Pvt Ltd', 'Lithoril 300mg Tablet', 'Is Lithoril 300mg Tablet bad for kidneys?', 'Yes, Lithoril 300mg Tablet may cause kidney problems. Lithoril 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithoril 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithoril 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23561, 'Lithoril 300mg Tablet', 'Reliance Formulation Pvt Ltd', 'Lithoril 300mg Tablet', 'Can Lithoril 300mg Tablet cause gain in weight?', 'Lithoril 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithoril 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithoril 300mg Tablet or some other reason.'),
(23562, 'Lithoril 300mg Tablet', 'Reliance Formulation Pvt Ltd', 'Lithoril 300mg Tablet', 'What is the most important information I should know about Lithoril 300mg Tablet?', 'Lithoril 300mg Tablet therapy should only be started if adequate facilities for assessing Lithoril 300mg Tablet levels are available. This is because Lithoril 300mg Tablet toxicity is related to increased levels of Lithoril 300mg Tablet in blood. Lithoril 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithoril 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23563, 'Lithoril 300mg Tablet', 'Reliance Formulation Pvt Ltd', 'Lithoril 300mg Tablet', 'How should Lithoril 300mg Tablet be taken?', 'Take Lithoril 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithoril 300mg Tablet levels.'),
(23564, 'Lithoril 300mg Tablet', 'Reliance Formulation Pvt Ltd', 'Lithoril 300mg Tablet', 'Which medicines decrease Lithoril 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithoril 300mg Tablet since many medicines interfere with the working of Lithoril 300mg Tablet. Some medicines decrease the levels of Lithoril 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23565, 'Lithoril 400mg Tablet SR', 'Reliance Formulation Pvt Ltd', 'Lithoril 400mg Tablet SR', 'How quickly does Lithoril 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithoril 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithoril 400mg Tablet SR. Do not stop taking Lithoril 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23566, 'Lithoril 400mg Tablet SR', 'Reliance Formulation Pvt Ltd', 'Lithoril 400mg Tablet SR', 'Does Lithoril 400mg Tablet SR make you sleepy?', 'Yes, Lithoril 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23567, 'Lithoril 400mg Tablet SR', 'Reliance Formulation Pvt Ltd', 'Lithoril 400mg Tablet SR', 'Is Lithoril 400mg Tablet SR bad for kidneys?', 'Yes, Lithoril 400mg Tablet SR may cause kidney problems. Lithoril 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithoril 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithoril 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23568, 'Lithoril 400mg Tablet SR', 'Reliance Formulation Pvt Ltd', 'Lithoril 400mg Tablet SR', 'Can Lithoril 400mg Tablet SR cause gain in weight?', 'Lithoril 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithoril 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithoril 400mg Tablet SR or some other reason.'),
(23569, 'Lithoril 400mg Tablet SR', 'Reliance Formulation Pvt Ltd', 'Lithoril 400mg Tablet SR', 'What is the most important information I should know about Lithoril 400mg Tablet SR?', 'Lithoril 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithoril 400mg Tablet SR levels are available. This is because Lithoril 400mg Tablet SR toxicity is related to increased levels of Lithoril 400mg Tablet SR in blood. Lithoril 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithoril 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23570, 'Lithoril 400mg Tablet SR', 'Reliance Formulation Pvt Ltd', 'Lithoril 400mg Tablet SR', 'How should Lithoril 400mg Tablet SR be taken?', 'Take Lithoril 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithoril 400mg Tablet SR levels.'),
(23571, 'Lithoril 400mg Tablet SR', 'Reliance Formulation Pvt Ltd', 'Lithoril 400mg Tablet SR', 'Which medicines decrease Lithoril 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithoril 400mg Tablet SR since many medicines interfere with the working of Lithoril 400mg Tablet SR. Some medicines decrease the levels of Lithoril 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23572, 'Lithorin 300mg Capsule', 'Pramukh Swami Pharma Ltd', 'Lithorin 300mg Capsule', 'How quickly does Lithorin 300mg Capsule work?', 'It takes some time before you see improvement in your symptoms after taking Lithorin 300mg Capsule. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithorin 300mg Capsule. Do not stop taking Lithorin 300mg Capsule if you feel you are not improving. Instead, discuss it with your doctor.'),
(23573, 'Lithorin 300mg Capsule', 'Pramukh Swami Pharma Ltd', 'Lithorin 300mg Capsule', 'Does Lithorin 300mg Capsule make you sleepy?', 'Yes, Lithorin 300mg Capsule can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23574, 'Lithorin 300mg Capsule', 'Pramukh Swami Pharma Ltd', 'Lithorin 300mg Capsule', 'Is Lithorin 300mg Capsule bad for kidneys?', 'Yes, Lithorin 300mg Capsule may cause kidney problems. Lithorin 300mg Capsule is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithorin 300mg Capsule, your doctor will get blood tests done to see if your kidney function is normal. During Lithorin 300mg Capsule therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23575, 'Lithorin 300mg Capsule', 'Pramukh Swami Pharma Ltd', 'Lithorin 300mg Capsule', 'Can Lithorin 300mg Capsule cause gain in weight?', 'Lithorin 300mg Capsule can cause both weight gain or weight loss. You should keep a check on your weight during Lithorin 300mg Capsule therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithorin 300mg Capsule or some other reason.'),
(23576, 'Lithorin 300mg Capsule', 'Pramukh Swami Pharma Ltd', 'Lithorin 300mg Capsule', 'What is the most important information I should know about Lithorin 300mg Capsule?', 'Lithorin 300mg Capsule therapy should only be started if adequate facilities for assessing Lithorin 300mg Capsule levels are available. This is because Lithorin 300mg Capsule toxicity is related to increased levels of Lithorin 300mg Capsule in blood. Lithorin 300mg Capsule toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithorin 300mg Capsule levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23577, 'Lithorin 300mg Capsule', 'Pramukh Swami Pharma Ltd', 'Lithorin 300mg Capsule', 'How should Lithorin 300mg Capsule be taken?', 'Take Lithorin 300mg Capsule exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithorin 300mg Capsule levels.'),
(23578, 'Lithorin 300mg Capsule', 'Pramukh Swami Pharma Ltd', 'Lithorin 300mg Capsule', 'Which medicines decrease Lithorin 300mg Capsule levels?', 'You should inform your doctor about the medicines you are taking before starting Lithorin 300mg Capsule since many medicines interfere with the working of Lithorin 300mg Capsule. Some medicines decrease the levels of Lithorin 300mg Capsule in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23579, 'Lithoset 300mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 300mg Tablet', 'How quickly does Lithoset 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithoset 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithoset 300mg Tablet. Do not stop taking Lithoset 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23580, 'Lithoset 300mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 300mg Tablet', 'Does Lithoset 300mg Tablet make you sleepy?', 'Yes, Lithoset 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23581, 'Lithoset 300mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 300mg Tablet', 'Is Lithoset 300mg Tablet bad for kidneys?', 'Yes, Lithoset 300mg Tablet may cause kidney problems. Lithoset 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithoset 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithoset 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23582, 'Lithoset 300mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 300mg Tablet', 'Can Lithoset 300mg Tablet cause gain in weight?', 'Lithoset 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithoset 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithoset 300mg Tablet or some other reason.'),
(23583, 'Lithoset 300mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 300mg Tablet', 'What is the most important information I should know about Lithoset 300mg Tablet?', 'Lithoset 300mg Tablet therapy should only be started if adequate facilities for assessing Lithoset 300mg Tablet levels are available. This is because Lithoset 300mg Tablet toxicity is related to increased levels of Lithoset 300mg Tablet in blood. Lithoset 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithoset 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23584, 'Lithoset 300mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 300mg Tablet', 'How should Lithoset 300mg Tablet be taken?', 'Take Lithoset 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithoset 300mg Tablet levels.'),
(23585, 'Lithoset 300mg Tablet', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 300mg Tablet', 'Which medicines decrease Lithoset 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithoset 300mg Tablet since many medicines interfere with the working of Lithoset 300mg Tablet. Some medicines decrease the levels of Lithoset 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23586, 'Lithoset 400mg Tablet SR', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 400mg Tablet SR', 'How quickly does Lithoset 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithoset 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithoset 400mg Tablet SR. Do not stop taking Lithoset 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23587, 'Lithoset 400mg Tablet SR', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 400mg Tablet SR', 'Does Lithoset 400mg Tablet SR make you sleepy?', 'Yes, Lithoset 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23588, 'Lithoset 400mg Tablet SR', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 400mg Tablet SR', 'Is Lithoset 400mg Tablet SR bad for kidneys?', 'Yes, Lithoset 400mg Tablet SR may cause kidney problems. Lithoset 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithoset 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithoset 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23589, 'Lithoset 400mg Tablet SR', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 400mg Tablet SR', 'Can Lithoset 400mg Tablet SR cause gain in weight?', 'Lithoset 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithoset 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithoset 400mg Tablet SR or some other reason.'),
(23590, 'Lithoset 400mg Tablet SR', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 400mg Tablet SR', 'What is the most important information I should know about Lithoset 400mg Tablet SR?', 'Lithoset 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithoset 400mg Tablet SR levels are available. This is because Lithoset 400mg Tablet SR toxicity is related to increased levels of Lithoset 400mg Tablet SR in blood. Lithoset 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithoset 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23591, 'Lithoset 400mg Tablet SR', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 400mg Tablet SR', 'How should Lithoset 400mg Tablet SR be taken?', 'Take Lithoset 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithoset 400mg Tablet SR levels.'),
(23592, 'Lithoset 400mg Tablet SR', 'Tweet India Pharmaceuticals Pvt Ltd', 'Lithoset 400mg Tablet SR', 'Which medicines decrease Lithoset 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithoset 400mg Tablet SR since many medicines interfere with the working of Lithoset 400mg Tablet SR. Some medicines decrease the levels of Lithoset 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23593, 'Lithosun 300 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun 300 Tablet', 'How quickly does Lithosun 300 Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithosun 300 Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithosun 300 Tablet. Do not stop taking Lithosun 300 Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23594, 'Lithosun 300 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun 300 Tablet', 'Does Lithosun 300 Tablet make you sleepy?', 'Yes, Lithosun 300 Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23595, 'Lithosun 300 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun 300 Tablet', 'Is Lithosun 300 Tablet bad for kidneys?', 'Yes, Lithosun 300 Tablet may cause kidney problems. Lithosun 300 Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithosun 300 Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithosun 300 Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23596, 'Lithosun 300 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun 300 Tablet', 'Can Lithosun 300 Tablet cause gain in weight?', 'Lithosun 300 Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithosun 300 Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithosun 300 Tablet or some other reason.'),
(23597, 'Lithosun 300 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun 300 Tablet', 'What is the most important information I should know about Lithosun 300 Tablet?', 'Lithosun 300 Tablet therapy should only be started if adequate facilities for assessing Lithosun 300 Tablet levels are available. This is because Lithosun 300 Tablet toxicity is related to increased levels of Lithosun 300 Tablet in blood. Lithosun 300 Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithosun 300 Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23598, 'Lithosun 300 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun 300 Tablet', 'How should Lithosun 300 Tablet be taken?', 'Take Lithosun 300 Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithosun 300 Tablet levels.'),
(23599, 'Lithosun 300 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun 300 Tablet', 'Which medicines decrease Lithosun 300 Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithosun 300 Tablet since many medicines interfere with the working of Lithosun 300 Tablet. Some medicines decrease the levels of Lithosun 300 Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23600, 'Lithosun SR Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun SR Tablet', 'How quickly does Lithosun SR Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithosun SR Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithosun SR Tablet. Do not stop taking Lithosun SR Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23601, 'Lithosun SR Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun SR Tablet', 'Does Lithosun SR Tablet make you sleepy?', 'Yes, Lithosun SR Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23602, 'Lithosun SR Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun SR Tablet', 'Is Lithosun SR Tablet bad for kidneys?', 'Yes, Lithosun SR Tablet may cause kidney problems. Lithosun SR Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithosun SR Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithosun SR Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23603, 'Lithosun SR Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun SR Tablet', 'Can Lithosun SR Tablet cause gain in weight?', 'Lithosun SR Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithosun SR Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithosun SR Tablet or some other reason.'),
(23604, 'Lithosun SR Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun SR Tablet', 'What is the most important information I should know about Lithosun SR Tablet?', 'Lithosun SR Tablet therapy should only be started if adequate facilities for assessing Lithosun SR Tablet levels are available. This is because Lithosun SR Tablet toxicity is related to increased levels of Lithosun SR Tablet in blood. Lithosun SR Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithosun SR Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23605, 'Lithosun SR Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun SR Tablet', 'How should Lithosun SR Tablet be taken?', 'Take Lithosun SR Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithosun SR Tablet levels.'),
(23606, 'Lithosun SR Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lithosun SR Tablet', 'Which medicines decrease Lithosun SR Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithosun SR Tablet since many medicines interfere with the working of Lithosun SR Tablet. Some medicines decrease the levels of Lithosun SR Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23607, 'Lithotablet 400mg Tablet SR', 'Health Plan', 'Lithotablet 400mg Tablet SR', 'How quickly does Lithotablet 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithotablet 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithotablet 400mg Tablet SR. Do not stop taking Lithotablet 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23608, 'Lithotablet 400mg Tablet SR', 'Health Plan', 'Lithotablet 400mg Tablet SR', 'Does Lithotablet 400mg Tablet SR make you sleepy?', 'Yes, Lithotablet 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23609, 'Lithotablet 400mg Tablet SR', 'Health Plan', 'Lithotablet 400mg Tablet SR', 'Is Lithotablet 400mg Tablet SR bad for kidneys?', 'Yes, Lithotablet 400mg Tablet SR may cause kidney problems. Lithotablet 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithotablet 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithotablet 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23610, 'Lithotablet 400mg Tablet SR', 'Health Plan', 'Lithotablet 400mg Tablet SR', 'Can Lithotablet 400mg Tablet SR cause gain in weight?', 'Lithotablet 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithotablet 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithotablet 400mg Tablet SR or some other reason.'),
(23611, 'Lithotablet 400mg Tablet SR', 'Health Plan', 'Lithotablet 400mg Tablet SR', 'What is the most important information I should know about Lithotablet 400mg Tablet SR?', 'Lithotablet 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithotablet 400mg Tablet SR levels are available. This is because Lithotablet 400mg Tablet SR toxicity is related to increased levels of Lithotablet 400mg Tablet SR in blood. Lithotablet 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithotablet 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23612, 'Lithotablet 400mg Tablet SR', 'Health Plan', 'Lithotablet 400mg Tablet SR', 'How should Lithotablet 400mg Tablet SR be taken?', 'Take Lithotablet 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithotablet 400mg Tablet SR levels.'),
(23613, 'Lithotablet 400mg Tablet SR', 'Health Plan', 'Lithotablet 400mg Tablet SR', 'Which medicines decrease Lithotablet 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithotablet 400mg Tablet SR since many medicines interfere with the working of Lithotablet 400mg Tablet SR. Some medicines decrease the levels of Lithotablet 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23614, 'Lithotam DC 0.4mg/30mg Capsule', 'MMC Healthcare Ltd', 'Lithotam DC 0.4mg/30mg Capsule', 'Can the use of Lithotam DC 0.4mg/30mg Capsule cause weight gain?', 'There are reports that suggest that the use of Lithotam DC 0.4mg/30mg Capsule can lead to weight gain. If you keep good eating habits and exercise regularly, you might not gain any weight. It is important to remember that it is easier to stop weight gain than losing increased weight.'),
(23615, 'Lithotam DC 0.4mg/30mg Capsule', 'MMC Healthcare Ltd', 'Lithotam DC 0.4mg/30mg Capsule', 'Can Lithotam DC 0.4mg/30mg Capsule cause a painful erection?', 'Yes, Lithotam DC 0.4mg/30mg Capsule contains tamsulosin, which may very rarely cause a painful erection. If this occurs, contact your doctor immediately.'),
(23616, 'Lithotam DC 0.4mg/30mg Capsule', 'MMC Healthcare Ltd', 'Lithotam DC 0.4mg/30mg Capsule', 'Will a higher than the recommended doses of Lithotam DC 0.4mg/30mg Capsule be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(23617, 'Lithotam DC 0.4mg/30mg Capsule', 'MMC Healthcare Ltd', 'Lithotam DC 0.4mg/30mg Capsule', 'What are the instructions for the storage and disposal of Lithotam DC 0.4mg/30mg Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23618, 'Lithowel 450mg Tablet CR', 'Sigmund Promedica', 'Lithowel 450mg Tablet CR', 'How quickly does Lithowel 450mg Tablet CR work?', 'It takes some time before you see improvement in your symptoms after taking Lithowel 450mg Tablet CR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithowel 450mg Tablet CR. Do not stop taking Lithowel 450mg Tablet CR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23619, 'Lithowel 450mg Tablet CR', 'Sigmund Promedica', 'Lithowel 450mg Tablet CR', 'Does Lithowel 450mg Tablet CR make you sleepy?', 'Yes, Lithowel 450mg Tablet CR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23620, 'Lithowel 450mg Tablet CR', 'Sigmund Promedica', 'Lithowel 450mg Tablet CR', 'Is Lithowel 450mg Tablet CR bad for kidneys?', 'Yes, Lithowel 450mg Tablet CR may cause kidney problems. Lithowel 450mg Tablet CR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithowel 450mg Tablet CR, your doctor will get blood tests done to see if your kidney function is normal. During Lithowel 450mg Tablet CR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23621, 'Lithowel 450mg Tablet CR', 'Sigmund Promedica', 'Lithowel 450mg Tablet CR', 'Can Lithowel 450mg Tablet CR cause gain in weight?', 'Lithowel 450mg Tablet CR can cause both weight gain or weight loss. You should keep a check on your weight during Lithowel 450mg Tablet CR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithowel 450mg Tablet CR or some other reason.'),
(23622, 'Lithowel 450mg Tablet CR', 'Sigmund Promedica', 'Lithowel 450mg Tablet CR', 'What is the most important information I should know about Lithowel 450mg Tablet CR?', 'Lithowel 450mg Tablet CR therapy should only be started if adequate facilities for assessing Lithowel 450mg Tablet CR levels are available. This is because Lithowel 450mg Tablet CR toxicity is related to increased levels of Lithowel 450mg Tablet CR in blood. Lithowel 450mg Tablet CR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithowel 450mg Tablet CR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23623, 'Lithowel 450mg Tablet CR', 'Sigmund Promedica', 'Lithowel 450mg Tablet CR', 'How should Lithowel 450mg Tablet CR be taken?', 'Take Lithowel 450mg Tablet CR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithowel 450mg Tablet CR levels.'),
(23624, 'Lithowel 450mg Tablet CR', 'Sigmund Promedica', 'Lithowel 450mg Tablet CR', 'Which medicines decrease Lithowel 450mg Tablet CR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithowel 450mg Tablet CR since many medicines interfere with the working of Lithowel 450mg Tablet CR. Some medicines decrease the levels of Lithowel 450mg Tablet CR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23625, 'Lithox 300mg Tablet', 'Apex Laboratories Pvt Ltd', 'Lithox 300mg Tablet', 'Q. How quickly does Lithox 300mg Tablet work?', 'It takes some time before you see improvement in your symptoms after taking Lithox 300mg Tablet. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithox 300mg Tablet. Do not stop taking Lithox 300mg Tablet if you feel you are not improving. Instead, discuss it with your doctor.'),
(23626, 'Lithox 300mg Tablet', 'Apex Laboratories Pvt Ltd', 'Lithox 300mg Tablet', 'Q. Does Lithox 300mg Tablet make you sleepy?', 'Yes, Lithox 300mg Tablet can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23627, 'Lithox 300mg Tablet', 'Apex Laboratories Pvt Ltd', 'Lithox 300mg Tablet', 'Q. Is Lithox 300mg Tablet bad for kidneys?', 'Yes, Lithox 300mg Tablet may cause kidney problems. Lithox 300mg Tablet is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithox 300mg Tablet, your doctor will get blood tests done to see if your kidney function is normal. During Lithox 300mg Tablet therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23628, 'Lithox 300mg Tablet', 'Apex Laboratories Pvt Ltd', 'Lithox 300mg Tablet', 'Q. Can Lithox 300mg Tablet cause gain in weight?', 'Lithox 300mg Tablet can cause both weight gain or weight loss. You should keep a check on your weight during Lithox 300mg Tablet therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithox 300mg Tablet or some other reason.'),
(23629, 'Lithox 300mg Tablet', 'Apex Laboratories Pvt Ltd', 'Lithox 300mg Tablet', 'Q. What is the most important information I should know about Lithox 300mg Tablet?', 'Lithox 300mg Tablet therapy should only be started if adequate facilities for assessing Lithox 300mg Tablet levels are available. This is because Lithox 300mg Tablet toxicity is related to increased levels of Lithox 300mg Tablet in blood. Lithox 300mg Tablet toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithox 300mg Tablet levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23630, 'Lithox 300mg Tablet', 'Apex Laboratories Pvt Ltd', 'Lithox 300mg Tablet', 'Q. How should Lithox 300mg Tablet be taken?', 'Take Lithox 300mg Tablet exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithox 300mg Tablet levels.'),
(23631, 'Lithox 300mg Tablet', 'Apex Laboratories Pvt Ltd', 'Lithox 300mg Tablet', 'Q. Which medicines decrease Lithox 300mg Tablet levels?', 'You should inform your doctor about the medicines you are taking before starting Lithox 300mg Tablet since many medicines interfere with the working of Lithox 300mg Tablet. Some medicines decrease the levels of Lithox 300mg Tablet in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23632, 'Lithox 400mg Tablet SR', 'Apex Laboratories Pvt Ltd', 'Lithox 400mg Tablet SR', 'How quickly does Lithox 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Lithox 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lithox 400mg Tablet SR. Do not stop taking Lithox 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23633, 'Lithox 400mg Tablet SR', 'Apex Laboratories Pvt Ltd', 'Lithox 400mg Tablet SR', 'Does Lithox 400mg Tablet SR make you sleepy?', 'Yes, Lithox 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23634, 'Lithox 400mg Tablet SR', 'Apex Laboratories Pvt Ltd', 'Lithox 400mg Tablet SR', 'Is Lithox 400mg Tablet SR bad for kidneys?', 'Yes, Lithox 400mg Tablet SR may cause kidney problems. Lithox 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lithox 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Lithox 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23635, 'Lithox 400mg Tablet SR', 'Apex Laboratories Pvt Ltd', 'Lithox 400mg Tablet SR', 'Can Lithox 400mg Tablet SR cause gain in weight?', 'Lithox 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Lithox 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lithox 400mg Tablet SR or some other reason.'),
(23636, 'Lithox 400mg Tablet SR', 'Apex Laboratories Pvt Ltd', 'Lithox 400mg Tablet SR', 'What is the most important information I should know about Lithox 400mg Tablet SR?', 'Lithox 400mg Tablet SR therapy should only be started if adequate facilities for assessing Lithox 400mg Tablet SR levels are available. This is because Lithox 400mg Tablet SR toxicity is related to increased levels of Lithox 400mg Tablet SR in blood. Lithox 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lithox 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23637, 'Lithox 400mg Tablet SR', 'Apex Laboratories Pvt Ltd', 'Lithox 400mg Tablet SR', 'How should Lithox 400mg Tablet SR be taken?', 'Take Lithox 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lithox 400mg Tablet SR levels.'),
(23638, 'Lithox 400mg Tablet SR', 'Apex Laboratories Pvt Ltd', 'Lithox 400mg Tablet SR', 'Which medicines decrease Lithox 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Lithox 400mg Tablet SR since many medicines interfere with the working of Lithox 400mg Tablet SR. Some medicines decrease the levels of Lithox 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23639, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'What is Litma D 30mg/40mg Capsule SR?', 'Litma D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(23640, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'Is it safe to use Litma D 30mg/40mg Capsule SR?', 'Litma D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(23641, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'Are there any specific contraindications associated with the use of Litma D 30mg/40mg Capsule SR?', 'The use of Litma D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(23642, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'Can the use of Litma D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Litma D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(23643, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'Can the use of Litma D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Litma D 30mg/40mg Capsule SR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(23644, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Litma D 30mg/40mg Capsule SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23645, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'What is Litma D 30mg/40mg Capsule SR price?', 'You can get Litma D 30mg/40mg Capsule SR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(23646, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'While taking Litma D 30mg/40mg Capsule SR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(23647, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'Can I take alcohol while taking Litma D 30mg/40mg Capsule SR?', 'No, alcohol intake is not advised with Litma D 30mg/40mg Capsule SR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(23648, 'Litma D 30mg/40mg Capsule SR', 'Naomi Laboratories Pvt Ltd', 'Litma D 30mg/40mg Capsule SR', 'Can I stop taking Litma D 30mg/40mg Capsule SR if I feel better?', 'If you have been taking Litma D 30mg/40mg Capsule SR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(23649, 'Litman 400mg Tablet SR', 'Mayflower India', 'Litman 400mg Tablet SR', 'How quickly does Litman 400mg Tablet SR work?', 'It takes some time before you see improvement in your symptoms after taking Litman 400mg Tablet SR. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Litman 400mg Tablet SR. Do not stop taking Litman 400mg Tablet SR if you feel you are not improving. Instead, discuss it with your doctor.'),
(23650, 'Litman 400mg Tablet SR', 'Mayflower India', 'Litman 400mg Tablet SR', 'Does Litman 400mg Tablet SR make you sleepy?', 'Yes, Litman 400mg Tablet SR can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(23651, 'Litman 400mg Tablet SR', 'Mayflower India', 'Litman 400mg Tablet SR', 'Is Litman 400mg Tablet SR bad for kidneys?', 'Yes, Litman 400mg Tablet SR may cause kidney problems. Litman 400mg Tablet SR is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Litman 400mg Tablet SR, your doctor will get blood tests done to see if your kidney function is normal. During Litman 400mg Tablet SR therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(23652, 'Litman 400mg Tablet SR', 'Mayflower India', 'Litman 400mg Tablet SR', 'Can Litman 400mg Tablet SR cause gain in weight?', 'Litman 400mg Tablet SR can cause both weight gain or weight loss. You should keep a check on your weight during Litman 400mg Tablet SR therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Litman 400mg Tablet SR or some other reason.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23653, 'Litman 400mg Tablet SR', 'Mayflower India', 'Litman 400mg Tablet SR', 'What is the most important information I should know about Litman 400mg Tablet SR?', 'Litman 400mg Tablet SR therapy should only be started if adequate facilities for assessing Litman 400mg Tablet SR levels are available. This is because Litman 400mg Tablet SR toxicity is related to increased levels of Litman 400mg Tablet SR in blood. Litman 400mg Tablet SR toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Litman 400mg Tablet SR levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(23654, 'Litman 400mg Tablet SR', 'Mayflower India', 'Litman 400mg Tablet SR', 'How should Litman 400mg Tablet SR be taken?', 'Take Litman 400mg Tablet SR exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Litman 400mg Tablet SR levels.'),
(23655, 'Litman 400mg Tablet SR', 'Mayflower India', 'Litman 400mg Tablet SR', 'Which medicines decrease Litman 400mg Tablet SR levels?', 'You should inform your doctor about the medicines you are taking before starting Litman 400mg Tablet SR since many medicines interfere with the working of Litman 400mg Tablet SR. Some medicines decrease the levels of Litman 400mg Tablet SR in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(23656, 'Litmus 10mg Tablet', 'Siesta Pharmaceuticals', 'Litmus 10mg Tablet', 'How does Litmus 10mg Tablet work? What is it used for?', 'Litmus 10mg Tablet works similar to the progesterone hormone naturally produced by the body. It helps in regulating the periods, stopping irregular bleeding and for controlling the withdrawal bleeding in case of amenorrhea (unusual stopping of menstrual periods). It is also used to prevent endometrial hyperplasia (thickening of the lining of the uterus) in women who are taking conjugated estrogens.'),
(23657, 'Litmus 10mg Tablet', 'Siesta Pharmaceuticals', 'Litmus 10mg Tablet', 'When and how to take Litmus 10mg Tablet?', 'Take it strictly as advised by your doctor. The number of doses and the duration will depend on the medical problem you are being treated for. You can take it with or without food, preferably at the same time of each day to ensure consistent levels of medicine in your body.'),
(23658, 'Litmus 10mg Tablet', 'Siesta Pharmaceuticals', 'Litmus 10mg Tablet', 'What if I miss to take Litmus 10mg Tablet?', 'Ideally, you should not miss any dose during any treatment. Missing a dose may increase the likelihood of breakthrough vaginal bleeding or spotting (blood stain). However, if you miss a dose, take it as soon as you remember. However, if it is almost time for the next dose, skip the missed dose and continue with the usual dosing schedule.'),
(23659, 'Litmus 10mg Tablet', 'Siesta Pharmaceuticals', 'Litmus 10mg Tablet', 'What are the common side effects which I can experience while taking Litmus 10mg Tablet?', 'The common side effects of Litmus 10mg Tablet include headache, nausea (feeling sick), weight gain, breast pain, and unusual vaginal bleeding or spotting. Do not worry, most of these symptoms are temporary. However, if they persist, check with your doctor as soon as possible.'),
(23660, 'Litmus 10mg Tablet', 'Siesta Pharmaceuticals', 'Litmus 10mg Tablet', 'Is Litmus 10mg Tablet a contraceptive?', 'No, Litmus 10mg Tablet is not a contraceptive. You should use an effective form of birth control to prevent pregnancy. If you think you have become pregnant while using the medicine, tell your doctor right away to avoid any harm to the baby.'),
(23661, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'What is Litnerve NP 75mg/10mg/750mcg Tablet?', 'Litnerve NP 75mg/10mg/750mcg Tablet is a combination of three medicines: Gabapentin, Nortriptyline and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). This medicine calms the damaged or overactive nerves by acting on brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(23662, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Can I stop taking Litnerve NP 75mg/10mg/750mcg Tablet when my pain is relieved?', 'No, you should not stop taking Litnerve NP 75mg/10mg/750mcg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Litnerve NP 75mg/10mg/750mcg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.'),
(23663, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'How to manage weight gain associated with the use of Litnerve NP 75mg/10mg/750mcg Tablet?', 'Litnerve NP 75mg/10mg/750mcg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(23664, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Can the use of Litnerve NP 75mg/10mg/750mcg Tablet cause sleepiness or drowsiness?', 'Yes, Litnerve NP 75mg/10mg/750mcg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(23665, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Can the use of Litnerve NP 75mg/10mg/750mcg Tablet affect my sexual life?', 'The use of Litnerve NP 75mg/10mg/750mcg Tablet can affect the sexual life of both men and women. Most commonly observed problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Litnerve NP 75mg/10mg/750mcg Tablet.'),
(23666, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Are there any serious side effects associated with the use of Litnerve NP 75mg/10mg/750mcg Tablet?', 'Serious side effects because of Litnerve NP 75mg/10mg/750mcg Tablet are uncommon and rare. Consult your doctor if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(23667, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'How long will Litnerve NP 75mg/10mg/750mcg Tablet take to act?', 'An initial benefit with Litnerve NP 75mg/10mg/750mcg Tablet may be seen after 2 weeks of the treatment. However, it may take around 2-3 months or more to see full benefits and even.'),
(23668, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'What if I forget to take Litnerve NP 75mg/10mg/750mcg Tablet?', 'If you forget to take the scheduled dose of Litnerve NP 75mg/10mg/750mcg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect. If you are not sure what to do, consult your about how to manage a situation like this.'),
(23669, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Symptoms of an overdose may include drowsiness, weakness, unsteadiness while walking, having double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(23670, 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Zynovia Lifecare', 'Litnerve NP 75mg/10mg/750mcg Tablet', 'Will a higher than the recommended dose of Litnerve NP 75mg/10mg/750mcg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(23671, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'How much Litnim Syrup should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure safe and complete recovery of your child.'),
(23672, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'Can I change the dose of Litnim Syrup for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unnecessary increase in dose may lead to toxicity, a sudden lowering of the dosing may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(23673, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'Can all children be given the same dose of Litnim Syrup?', 'No. Litnim Syrup cannot be given to everyone in the same dose. The doctor decides the appropriate dose based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(23674, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'When will my child feel better?', 'The doctor may advise you to keep giving Litnim Syrup to your child for a few days to weeks, depending upon the severity of the illness. You’ll notice that the pain or fever will reduce and your child will start feeling better gradually as the course approaches its end. In case your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(23675, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'Are there any serious side effects of this medicine for my child?', 'Litnim Syrup is well-tolerated by most children. However, if your child experiences any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, serious allergic reaction, and severe pain due to gastric ulcers, then rush to your doctor on an immediate basis.'),
(23676, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'How should I store Litnim Syrup?', 'Store Litnim Syrup at room temperature, in a dry place, away from direct heat and light. Avoid leaving medicines within the reach and sight of children.'),
(23677, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'My child is taking Litnim Syrup for toothache and now has to undergo an extraction procedure. Should I continue giving Litnim Syrup?', 'Withhold Litnim Syrup from at least 3 to 5 days before a surgical procedure to prevent excessive bleeding. In case of any confusion, it is best to reach out to your child’s doctor.'),
(23678, 'Litnim Syrup', 'Little Greave Pharmaceutical Pvt Ltd', 'Litnim Syrup', 'Can other medicines be given at the same time as Litnim Syrup?', 'Litnim Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Litnim Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(23679, 'Litocar Injection', 'Medigen Life Sciences', 'Litocar Injection', 'Is Litocar Injection a steroid?', 'Litocar Injection is not a steroid. It contains Levo-carnitine which is a type of protein (made from the amino acids lysine and methionine). It helps in transporting fats to the cells, where fats get metabolized in order to produce energy. It is used to treat primary and secondary Levo-carnitine deficiency.'),
(23680, 'Litocar Injection', 'Medigen Life Sciences', 'Litocar Injection', 'When can a carnitine deficiency occur?', 'Carnitine deficiency may be of two types, primary and secondary. Primary is genetic and may show symptoms by five years of age. Whereas, secondary may occur due to certain disorders like kidney problems (chronic kidney failure) and use of antibiotics that reduces its absorption and increases its excretion.'),
(23681, 'Litocar Injection', 'Medigen Life Sciences', 'Litocar Injection', 'Does warfarin have any effect on Litocar Injection?', 'In some patients, warfarin when taken along with Litocar Injection may increase the time required for the formation of blood clot. Hence, before starting Litocar Injection, inform your doctor if you are taking warfarin.'),
(23682, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'Can I take Litom 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Litom 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(23683, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'What should I know before taking Litom 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(23684, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'Can Litom 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(23685, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'For how long can Litom 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(23686, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'Can Litom 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(23687, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'What are the long term side effects of Litom 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(23688, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'Does Litom 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(23689, 'Litom 20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom 20mg Capsule', 'Can Litom 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(23690, 'Litom D 10mg/20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom D 10mg/20mg Capsule', 'Is it safe to use Litom D 10mg/20mg Capsule?', 'Yes, Litom D 10mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(23691, 'Litom D 10mg/20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom D 10mg/20mg Capsule', 'What are the contraindications of Litom D 10mg/20mg Capsule?', 'The use of Litom D 10mg/20mg Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(23692, 'Litom D 10mg/20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom D 10mg/20mg Capsule', 'What is the best time to take Litom D 10mg/20mg Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(23693, 'Litom D 10mg/20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom D 10mg/20mg Capsule', 'Can the use of Litom D 10mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Litom D 10mg/20mg Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(23694, 'Litom D 10mg/20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom D 10mg/20mg Capsule', 'Does the use of Litom D 10mg/20mg Capsule lead to dry mouth?', 'Yes, the use of Litom D 10mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(23695, 'Litom D 10mg/20mg Capsule', 'Little Greave Pharmaceutical Pvt Ltd', 'Litom D 10mg/20mg Capsule', 'What is the recommended storage condition for Litom D 10mg/20mg Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23696, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'For how long can Litomik 100mg Injection be taken?', 'The usual course of treatment with Litomik 100mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Litomik 100mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(23697, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'Is Litomik 100mg Injection safe?', 'Litomik 100mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23698, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'How is Litomik 100mg Injection administered?', 'Litomik 100mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Litomik 100mg Injection.'),
(23699, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Litomik 100mg Injection should be taken in the recommended dose only. Overdose of Litomik 100mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(23700, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'What are the instructions for the storage and disposal of Litomik 100mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(23701, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'What if I don\'t get better after using Litomik 100mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(23702, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'Can I stop taking Litomik 100mg Injection when I feel better?', 'No, do not stop taking Litomik 100mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(23703, 'Litomik 100mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 100mg Injection', 'Can I take alcohol while on Litomik 100mg Injection?', 'You should avoid alcohol while being on treatment with Litomik 100mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Litomik 100mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(23704, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'For how long can Litomik 500mg Injection be taken?', 'The usual course of treatment with Litomik 500mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Litomik 500mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(23705, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'Is Litomik 500mg Injection safe?', 'Litomik 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23706, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'How is Litomik 500mg Injection administered?', 'Litomik 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Litomik 500mg Injection.'),
(23707, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Litomik 500mg Injection should be taken in the recommended dose only. Overdose of Litomik 500mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(23708, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'What are the instructions for the storage and disposal of Litomik 500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(23709, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'What if I don\'t get better after using Litomik 500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(23710, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'Can I stop taking Litomik 500mg Injection when I feel better?', 'No, do not stop taking Litomik 500mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(23711, 'Litomik 500mg Injection', 'Little Greave Pharmaceutical Pvt Ltd', 'Litomik 500mg Injection', 'Can I take alcohol while on Litomik 500mg Injection?', 'You should avoid alcohol while being on treatment with Litomik 500mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Litomik 500mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(23712, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'What is Litonac MR Tablet?', 'Litonac MR Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(23713, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'What can I do along with Litonac MR Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(23714, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'Can I get addicted to Litonac MR Tablet?', 'No, there are no reports of any patient getting addicted to Litonac MR Tablet.'),
(23715, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'Can I stop taking Litonac MR Tablet when my pain is relieved?', 'Litonac MR Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Litonac MR Tablet should be continued if you are advised by your doctor to do so.'),
(23716, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'Can the use of Litonac MR Tablet cause dizziness?', 'Yes, the use of Litonac MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(23717, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'Can the use of Litonac MR Tablet cause damage to liver?', 'Litonac MR Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(23718, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'How long will Litonac MR Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Litonac MR Tablet.'),
(23719, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'What if I forget to take Litonac MR Tablet?', 'If you forget to take the scheduled dose of Litonac MR Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(23720, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'Will Litonac MR Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(23721, 'Litonac MR Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac MR Tablet', 'Are there any specific contraindications associated with the use of Litonac MR Tablet?', 'The use of Litonac MR Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(23722, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'What is Litonac P 100mg/325mg Tablet?', 'Litonac P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(23723, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Is it safe to use Litonac P 100mg/325mg Tablet?', 'Litonac P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(23724, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Can I stop taking Litonac P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Litonac P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(23725, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Can the use of Litonac P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Litonac P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(23726, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Can the use of Litonac P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Litonac P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(23727, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Litonac P 100mg/325mg Tablet?', 'The use of Litonac P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(23728, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Can Litonac P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Litonac P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Litonac P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(23729, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Is Litonac P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Litonac P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(23730, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Can the use of Litonac P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Litonac P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(23731, 'Litonac P 100mg/325mg Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Litonac P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Litonac P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(23732, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'What is Litonac SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(23733, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Is it safe to take Litonac SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(23734, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Can I stop taking Litonac SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(23735, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Can Litonac SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(23736, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Can Litonac SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(23737, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Are there any specific contraindications associated with taking Litonac SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(23738, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Can I take Litonac SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(23739, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Can the use of Litonac SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(23740, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'Can I take a higher dose of Litonac SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(23741, 'Litonac SP Tablet', 'Little Greave Pharmaceutical Pvt Ltd', 'Litonac SP Tablet', 'What are the instructions for storage and disposal of Litonac SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23742, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'Can the use of Litoxyl CV 100mg/62.5mg Tablet cause diarrhea?', 'Yes, the use of Litoxyl CV 100mg/62.5mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23743, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'How long does Litoxyl CV 100mg/62.5mg Tablet takes to work?', 'Usually, Litoxyl CV 100mg/62.5mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(23744, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'What if I don\'t get better after using Litoxyl CV 100mg/62.5mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(23745, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'Can I stop taking Litoxyl CV 100mg/62.5mg Tablet when I feel better?', 'No, do not stop taking Litoxyl CV 100mg/62.5mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23746, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'What is Litoxyl CV 100mg/62.5mg Tablet?', 'Litoxyl CV 100mg/62.5mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(23747, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'Can the use of Litoxyl CV 100mg/62.5mg Tablet cause any serious side effects?', 'Litoxyl CV 100mg/62.5mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(23748, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'Can I stop taking Litoxyl CV 100mg/62.5mg Tablet when my symptoms are relieved?', 'No, do not stop taking Litoxyl CV 100mg/62.5mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23749, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'Can Litoxyl CV 100mg/62.5mg Tablet cause allergic reaction?', 'Yes, Litoxyl CV 100mg/62.5mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(23750, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'Are there any specific contraindications associated with the use of Litoxyl CV 100mg/62.5mg Tablet?', 'The use of Litoxyl CV 100mg/62.5mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Litoxyl CV 100mg/62.5mg Tablet.'),
(23751, 'Litoxyl CV 100mg/62.5mg Tablet', 'Gadin Biotech', 'Litoxyl CV 100mg/62.5mg Tablet', 'Can I take oral contraceptive pills while taking Litoxyl CV 100mg/62.5mg Tablet?', 'No, Litoxyl CV 100mg/62.5mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(23752, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'Can the use of Litoxyl-CV Tablet DT cause diarrhea?', 'Yes, the use of Litoxyl-CV Tablet DT can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23753, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'How long does Litoxyl-CV Tablet DT takes to work?', 'Usually, Litoxyl-CV Tablet DT starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(23754, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'What if I don\'t get better after using Litoxyl-CV Tablet DT?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(23755, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'Can I stop taking Litoxyl-CV Tablet DT when I feel better?', 'No, do not stop taking Litoxyl-CV Tablet DT and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23756, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'What is Litoxyl-CV Tablet DT?', 'Litoxyl-CV Tablet DT is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23757, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'Can the use of Litoxyl-CV Tablet DT cause any serious side effects?', 'Litoxyl-CV Tablet DT may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(23758, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'Can I stop taking Litoxyl-CV Tablet DT when my symptoms are relieved?', 'No, do not stop taking Litoxyl-CV Tablet DT and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23759, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'Can Litoxyl-CV Tablet DT cause allergic reaction?', 'Yes, Litoxyl-CV Tablet DT can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(23760, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'Are there any specific contraindications associated with the use of Litoxyl-CV Tablet DT?', 'The use of Litoxyl-CV Tablet DT is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Litoxyl-CV Tablet DT.'),
(23761, 'Litoxyl-CV Tablet DT', 'L.H.D Human Care', 'Litoxyl-CV Tablet DT', 'Can I take oral contraceptive pills while taking Litoxyl-CV Tablet DT?', 'No, Litoxyl-CV Tablet DT can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(23762, 'Litpress 1mg Injection', 'Chandra Bhagat Pharma Pvt Ltd', 'Litpress 1mg Injection', 'Who should not take Litpress 1mg Injection?', 'Litpress 1mg Injection should not be given to anyone with a known allergy or hypersensitivity to Litpress 1mg Injection or any of its ingredients.'),
(23763, 'Litpress 1mg Injection', 'Chandra Bhagat Pharma Pvt Ltd', 'Litpress 1mg Injection', 'What should I tell my doctor before starting treatment with Litpress 1mg Injection?', 'Before starting treatment with Litpress 1mg Injection, tell your doctor if you have any other health problems, like kidney or liver-related issues, breathing issues like asthma, heart related ailments like uncontrollable or high blood pressure, irregular heartbeat, etc. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are planning a baby, if you are pregnant or breastfeeding.'),
(23764, 'Litpress 1mg Injection', 'Chandra Bhagat Pharma Pvt Ltd', 'Litpress 1mg Injection', 'How do you give Litpress 1mg Injection?', 'Litpress 1mg Injection is given by a doctor or nurse into the muscle or under the skin. It should not be self-administered. The dose will depend on the body weight of the patient and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Litpress 1mg Injection.'),
(23765, 'Litpress 1mg Injection', 'Chandra Bhagat Pharma Pvt Ltd', 'Litpress 1mg Injection', 'Can Litpress 1mg Injection be used in children?', 'There is not enough data available for its use in children. For any doubts, consult your doctor.'),
(23766, 'Litracef-CV Tablet', 'Value Formulations', 'Litracef-CV Tablet', 'Can Litracef-CV Tablet be used to treat viral infections?', 'No, Litracef-CV Tablet is only indicated to treat bacterial infections. It does not treat viral infections such as common cold, flu.'),
(23767, 'Litracef-CV Tablet', 'Value Formulations', 'Litracef-CV Tablet', 'What are the contraindications associated with the use of Litracef-CV Tablet?', 'The use of Litracef-CV Tablet should be avoided in patients with known allergy to any constituents of this medicine. Inform your doctor about your medical history before taking this medicine to avoid any side effects.'),
(23768, 'Litracef-CV Tablet', 'Value Formulations', 'Litracef-CV Tablet', 'Can the use of Litracef-CV Tablet cause diarrhea?', 'Yes, the use of Litracef-CV Tablet can cause diarrhea. Antibiotics can kill good, or helpful bacteria in your stomach and can cause diarrhea. If you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if you have persistent diarrhea. Do not take any other medicines without consulting a doctor.'),
(23769, 'Litracef-CV Tablet', 'Value Formulations', 'Litracef-CV Tablet', 'Can I stop taking Litracef-CV Tablet when I feel better?', 'No, do not stop taking Litracef-CV Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23770, 'Litracef-CV Tablet', 'Value Formulations', 'Litracef-CV Tablet', 'What are the instructions for the storage and disposal of Litracef-CV Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23771, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'Does Litrakind 10mg Tablet raise blood sugar?', 'Yes, Litrakind 10mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Litrakind 10mg Tablet.'),
(23772, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'What are the side effects of Litrakind 10mg Tablet?', 'The common side effects of Litrakind 10mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Litrakind 10mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(23773, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'Does Litrakind 10mg Tablet increase creatinine?', 'Yes, Litrakind 10mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(23774, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'Does Litrakind 10mg Tablet cause loss of potassium?', 'Litrakind 10mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(23775, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'My blood pressure is controlled now. Can I stop taking Litrakind 10mg Tablet?', 'Do not stop taking Litrakind 10mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(23776, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'How should Litrakind 10mg Tablet be taken?', 'Take Litrakind 10mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Litrakind 10mg Tablet once daily preferably at the same time each day. Litrakind 10mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(23777, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'Is Litrakind 10mg Tablet stronger than furosemide?', 'Both Litrakind 10mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Litrakind 10mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(23778, 'Litrakind 10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind 10mg Tablet', 'How long does it take for Litrakind 10mg Tablet to show its effects?', 'Litrakind 10mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(23779, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'Can the use of Litrakind Plus 25mg/10mg Tablet cause dizziness?', 'Yes, the use of Litrakind Plus 25mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(23780, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'Can the use of Litrakind Plus 25mg/10mg Tablet cause gout?', 'Yes, Litrakind Plus 25mg/10mg Tablet can cause gout. Litrakind Plus 25mg/10mg Tablet contains torasemide which can increase the blood uric acid levels by increasing its absorption from the kidneys. Increased uric acid levels can cause a gout attack. Inform your doctor if you have hyperuricemia (excess of uric acid in blood) or a history of gout before taking this medicine. Use of Litrakind Plus 25mg/10mg Tablet should be avoided in patients with gout.'),
(23781, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'Can the use of Litrakind Plus 25mg/10mg Tablet cause dehydration (excessive loss of fluid)?', 'Yes, the use of Litrakind Plus 25mg/10mg Tablet can cause dehydration (excessive loss of fluid). The patient may experience dryness of the mouth, thirst, drowsiness, restlessness, muscle pain, weakness, tiredness, fall in blood pressure (hypotension), decreased urination (oliguria), increased heart rate (tachycardia), nausea and vomiting. Inform your doctor if you experience persistent problems while taking this medicine.'),
(23782, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'Can the use of Litrakind Plus 25mg/10mg Tablet cause hyperkalemia (increased potassium levels)?', 'Yes, Litrakind Plus 25mg/10mg Tablet can cause hyperkalemia (increased potassium levels). This occurs more commonly in patients with underlying kidney disease or in patients taking excessive potassium in their diet. High potassium levels can cause fatal heart problems. It is very important to get electrolytes and kidney function tests done on a regular basis while you are taking this medicine.'),
(23783, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'What are the contraindications to the use of Litrakind Plus 25mg/10mg Tablet?', 'The use of Litrakind Plus 25mg/10mg Tablet should be avoided in patients with hypersensitivity to torasemide, sulfonylureas or spironolactone or any other ingredient of the product. The use of this medicine should also be avoided in patients with anuria, acute renal insufficiency, hepatic coma and pre-coma, low blood pressure (hypotension), cardiac arrhythmias, patients taking aminoglycosides or cephalosporins, kidney dysfunction due to drugs which cause renal damage, patients with high potassium levels (hyperkalemia), Addison\'s disease and in children with moderate to severe renal impairment.'),
(23784, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'What is the storage condition for the Litrakind Plus 25mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23785, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'What is Litrakind Plus 25mg/10mg Tablet?', 'Litrakind Plus 25mg/10mg Tablet is a fixed-dose combination of torasemide (a loop diuretic) and spironolactone (an antagonist of aldosterone). Both are diuretics and they help to remove excess fluid from the body. The use of this combination is advised in patients of congestive heart failure (heart failure leading to fluid accumulation in the lung and rest of the body), nephrotic syndrome (a kidney disorder), liver cirrhosis with fluid retention (edema) and swelling of the abdomen (ascites).'),
(23786, 'Litrakind Plus 25mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 25mg/10mg Tablet', 'Is it safe to use Litrakind Plus 25mg/10mg Tablet?', 'Yes, Litrakind Plus 25mg/10mg Tablet is safe to use in most of the patients. However, in some patients it may cause common side effects like dizziness, dehydration, decreased sodium level in blood, breast enlargement in males, decreased magnesium level in blood, decreased calcium level in blood, increased blood uric acid. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(23787, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'Can the use of Litrakind Plus 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Litrakind Plus 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(23788, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'Can the use of Litrakind Plus 50mg/10mg Tablet cause gout?', 'Yes, Litrakind Plus 50mg/10mg Tablet can cause gout. Litrakind Plus 50mg/10mg Tablet contains torasemide which can increase the blood uric acid levels by increasing its absorption from the kidneys. Increased uric acid levels can cause a gout attack. Inform your doctor if you have hyperuricemia (excess of uric acid in blood) or a history of gout before taking this medicine. Use of Litrakind Plus 50mg/10mg Tablet should be avoided in patients with gout.'),
(23789, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'Can the use of Litrakind Plus 50mg/10mg Tablet cause dehydration (excessive loss of fluid)?', 'Yes, the use of Litrakind Plus 50mg/10mg Tablet can cause dehydration (excessive loss of fluid). The patient may experience dryness of the mouth, thirst, drowsiness, restlessness, muscle pain, weakness, tiredness, fall in blood pressure (hypotension), decreased urination (oliguria), increased heart rate (tachycardia), nausea and vomiting. Inform your doctor if you experience persistent problems while taking this medicine.'),
(23790, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'Can the use of Litrakind Plus 50mg/10mg Tablet cause hyperkalemia (increased potassium levels)?', 'Yes, Litrakind Plus 50mg/10mg Tablet can cause hyperkalemia (increased potassium levels). This occurs more commonly in patients with underlying kidney disease or in patients taking excessive potassium in their diet. High potassium levels can cause fatal heart problems. It is very important to get electrolytes and kidney function tests done on a regular basis while you are taking this medicine.'),
(23791, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'What are the contraindications to the use of Litrakind Plus 50mg/10mg Tablet?', 'The use of Litrakind Plus 50mg/10mg Tablet should be avoided in patients with hypersensitivity to torasemide, sulfonylureas or spironolactone or any other ingredient of the product. The use of this medicine should also be avoided in patients with anuria, acute renal insufficiency, hepatic coma and pre-coma, low blood pressure (hypotension), cardiac arrhythmias, patients taking aminoglycosides or cephalosporins, kidney dysfunction due to drugs which cause renal damage, patients with high potassium levels (hyperkalemia), Addison\'s disease and in children with moderate to severe renal impairment.'),
(23792, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'What is the storage condition for the Litrakind Plus 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23793, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'What is Litrakind Plus 50mg/10mg Tablet?', 'Litrakind Plus 50mg/10mg Tablet is a fixed-dose combination of torasemide (a loop diuretic) and spironolactone (an antagonist of aldosterone). Both are diuretics and they help to remove excess fluid from the body. The use of this combination is advised in patients of congestive heart failure (heart failure leading to fluid accumulation in the lung and rest of the body), nephrotic syndrome (a kidney disorder), liver cirrhosis with fluid retention (edema) and swelling of the abdomen (ascites).'),
(23794, 'Litrakind Plus 50mg/10mg Tablet', 'Minii Life Sciences Pvt Ltd', 'Litrakind Plus 50mg/10mg Tablet', 'Is it safe to use Litrakind Plus 50mg/10mg Tablet?', 'Yes, Litrakind Plus 50mg/10mg Tablet is safe to use in most of the patients. However, in some patients it may cause common side effects like dizziness, dehydration, decreased sodium level in blood, breast enlargement in males, decreased magnesium level in blood, decreased calcium level in blood, increased blood uric acid. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(23795, 'Litra-M Tablet', 'L.H.D Human Care', 'Litra-M Tablet', 'What is Litra-M Tablet?', 'Litra-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(23796, 'Litra-M Tablet', 'L.H.D Human Care', 'Litra-M Tablet', 'Can the use of Litra-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Litra-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(23797, 'Litra-M Tablet', 'L.H.D Human Care', 'Litra-M Tablet', 'Can Litra-M Tablet be stopped when allergy symptoms are relieved?', 'No, Litra-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(23798, 'Litra-M Tablet', 'L.H.D Human Care', 'Litra-M Tablet', 'Can the use of Litra-M Tablet cause dry mouth?', 'Yes, the use of Litra-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(23799, 'Litra-M Tablet', 'L.H.D Human Care', 'Litra-M Tablet', 'Can I drink alcohol while taking Litra-M Tablet?', 'No, do not take alcohol while taking Litra-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Litra-M Tablet.'),
(23800, 'Litra-M Tablet', 'L.H.D Human Care', 'Litra-M Tablet', 'Will Litra-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Litra-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(23801, 'Litra-M Tablet', 'L.H.D Human Care', 'Litra-M Tablet', 'What are the instructions for storage and disposal of Litra-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(23802, 'Litriz 5mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz 5mg Tablet', 'Is Litriz 5mg Tablet a steroid? What is it used for?', 'No, Litriz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23803, 'Litriz 5mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz 5mg Tablet', 'Does Litriz 5mg Tablet make you tired and drowsy?', 'Yes, Litriz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23804, 'Litriz 5mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz 5mg Tablet', 'How long does it take for Litriz 5mg Tablet to work?', 'Litriz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23805, 'Litriz 5mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz 5mg Tablet', 'Can I take Litriz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Litriz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23806, 'Litriz 5mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz 5mg Tablet', 'Is it safe to take Litriz 5mg Tablet for a long time?', 'Litriz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Litriz 5mg Tablet for only as long as you need it.'),
(23807, 'Litriz 5mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz 5mg Tablet', 'For how long should I continue Litriz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Litriz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Litriz 5mg Tablet'),
(23808, 'Litriz Fam 10mg/120mg/200mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz Fam 10mg/120mg/200mg Tablet', 'What should be avoided while taking Litriz Fam 10mg/120mg/200mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Litriz Fam 10mg/120mg/200mg Tablet. Drinking alcohol will increase the severity of drowsiness or sleepiness caused by Litriz Fam 10mg/120mg/200mg Tablet.'),
(23809, 'Litriz Fam 10mg/120mg/200mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz Fam 10mg/120mg/200mg Tablet', 'Can I stop Litriz Fam 10mg/120mg/200mg Tablet when my symptoms are relieved?', 'No, Litriz Fam 10mg/120mg/200mg Tablet should be continued as advised by the doctor. If you experience any problem due to the use of Litriz Fam 10mg/120mg/200mg Tablet, inform your doctor.'),
(23810, 'Litriz Fam 10mg/120mg/200mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz Fam 10mg/120mg/200mg Tablet', 'Can the use of Litriz Fam 10mg/120mg/200mg Tablet cause dizziness?', 'Yes, the use of Litriz Fam 10mg/120mg/200mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(23811, 'Litriz Fam 10mg/120mg/200mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz Fam 10mg/120mg/200mg Tablet', 'Will a higher than the recommended dose of Litriz Fam 10mg/120mg/200mg Tablet be more effective?', 'No, taking a higher than the recommended dose of Litriz Fam 10mg/120mg/200mg Tablet will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting worse, please consult the doctor for re-evaluation.'),
(23812, 'Litriz Fam 10mg/120mg/200mg Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz Fam 10mg/120mg/200mg Tablet', 'What are the instructions for the storage and disposal of Litriz Fam 10mg/120mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23813, 'Litriz-M Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz-M Tablet', 'What is Litriz-M Tablet?', 'Litriz-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(23814, 'Litriz-M Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz-M Tablet', 'Can the use of Litriz-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Litriz-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(23815, 'Litriz-M Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz-M Tablet', 'Can Litriz-M Tablet be stopped when allergy symptoms are relieved?', 'No, Litriz-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(23816, 'Litriz-M Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz-M Tablet', 'Can the use of Litriz-M Tablet cause dry mouth?', 'Yes, the use of Litriz-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(23817, 'Litriz-M Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz-M Tablet', 'Can I drink alcohol while taking Litriz-M Tablet?', 'No, do not take alcohol while taking Litriz-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Litriz-M Tablet.'),
(23818, 'Litriz-M Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz-M Tablet', 'Will Litriz-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Litriz-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(23819, 'Litriz-M Tablet', 'Biokind Healthcare Pvt Ltd', 'Litriz-M Tablet', 'What are the instructions for storage and disposal of Litriz-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(23820, 'Litspas Oral Drops', 'Dr Alson Laboratories Pvt Ltd', 'Litspas Oral Drops', 'My child is having abdominal pain associated with nausea, vomiting, and sensitivity to light. Is Litspas Oral Drops safe in such a case?', 'The above-mentioned symptoms may indicate abdominal migraine which is characterized by recurrent episodes of dull and moderate to severe intensity abdominal pain for at least six months. It typically occurs in midline or is poorly localized. Abdominal pain is associated with additional features including anorexia, nausea, vomiting, headache, photophobia, and pallor. Do rule out such types of pain before giving Litspas Oral Drops.'),
(23821, 'Litspas Oral Drops', 'Dr Alson Laboratories Pvt Ltd', 'Litspas Oral Drops', 'What all tests do my child need to undergo if he has abdominal pain?', 'The doctor may advise abdominal ultrasound for routine examination. In serious abdominal conditions, endoscopy and esophageal pH may also be monitored.'),
(23822, 'Litspas Oral Drops', 'Dr Alson Laboratories Pvt Ltd', 'Litspas Oral Drops', 'In which all diseases should Litspas Oral Drops be avoided?', 'Avoid giving Litspas Oral Drops in obstructive and inflammatory diseases of the digestive tract. These problems may include heartburn, unstable cardiovascular diseases, obstructive uropathy, glaucoma, muscle weakness disorder, liver impairment, hyperthyroidism, neuropathy, and kidney impairment.'),
(23823, 'Litspas Oral Drops', 'Dr Alson Laboratories Pvt Ltd', 'Litspas Oral Drops', 'Can other medicines be given at the same time as Litspas Oral Drops?', 'Litspas Oral Drops can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Litspas Oral Drops. Also, check with your child’s doctor before giving any medicine to your child.'),
(23824, 'Litspas Oral Drops', 'Dr Alson Laboratories Pvt Ltd', 'Litspas Oral Drops', 'How should Litspas Oral Drops be stored?', 'Litspas Oral Drops should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(23825, 'Littl ON 2mg Oral Drops', 'Canipla Care', 'Littl ON 2mg Oral Drops', 'What is Littl ON 2mg Oral Drops used for?', 'Littl ON 2mg Oral Drops is generally given before any major surgery or before chemotherapy and radiotherapy sessions. In case your child is about to undergo any of the above procedures, your child’s doctor may ask you to give Littl ON 2mg Oral Drops to your child to prevent vomiting post-procedure. Apart from this, Littl ON 2mg Oral Drops is also found useful in treating vomiting caused due to diseases of the stomach. In such a case, your child’s doctor may prescribe giving Littl ON 2mg Oral Drops to your child for a few days. Stick to the dose for best results.'),
(23826, 'Littl ON 2mg Oral Drops', 'Canipla Care', 'Littl ON 2mg Oral Drops', 'What if my child takes too much Littl ON 2mg Oral Drops?', 'Littl ON 2mg Oral Drops is unlikely to cause harm if you give an extra dose by mistake. However, you must still speak to your child’s doctor immediately. Sometimes, excessive intake of Littl ON 2mg Oral Drops can cause some serious side effects like excess sleepiness, agitation, rapid heartbeat, hypertension, flushing, dilated pupils, sweating, involuntary muscle jerk, uncontrolled eye movements, overactive reflexes, and seizures. These symptoms are collectively known as serotonin syndrome. If any of these appear, consult the doctor without any delay.'),
(23827, 'Littl ON 2mg Oral Drops', 'Canipla Care', 'Littl ON 2mg Oral Drops', 'How should Littl ON 2mg Oral Drops be stored?', 'Littl ON 2mg Oral Drops should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all the medicines out of the reach and sight of children to avoid any accidental intake.'),
(23828, 'Littl ON 2mg Oral Drops', 'Canipla Care', 'Littl ON 2mg Oral Drops', 'What all medicines should my child avoid while taking Littl ON 2mg Oral Drops?', 'Usually, it is advised not to give Littl ON 2mg Oral Drops along with antidepressant medicines, apomorphine, anti-migraine medicines, painkillers, heart medicines, and antibiotics like linezolid. But, it is ideal to speak to your child’s doctor before coming to any conclusion. So, narrate your child’s complete medical history to your child’s doctor and follow their advice strictly.'),
(23829, 'Littl ON 2mg Oral Drops', 'Canipla Care', 'Littl ON 2mg Oral Drops', 'In what conditions do I need to call my child’s doctor right away?', 'Call your child’s doctor immediately if your child develops symptoms of serotonin syndrome like irregular heartbeat, green-colored vomiting, inability to pass wind, pale skin and eyes, dark-colored urine, restlessness, and insomnia.'),
(23830, 'Littl ON 2mg Oral Drops', 'Canipla Care', 'Littl ON 2mg Oral Drops', 'My child is having a migraine and is on medication. Can I give Littl ON 2mg Oral Drops along with it?', 'Avoid combining Littl ON 2mg Oral Drops with such medicines because concomitant use of Littl ON 2mg Oral Drops with medicines meant to treat depression or migraine results in serotonin syndrome. Consult your child’s doctor before giving any medicine to your child.'),
(23831, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'Is Lituket 10mg Tablet DT an antibiotic or steroid?', 'No, Lituket 10mg Tablet DT is neither an antibiotic nor a steroid. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines. It is used to relieve moderate to severe pain and inflammation.'),
(23832, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'Is Lituket 10mg Tablet DT a good painkiller?', 'Lituket 10mg Tablet DT is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain, such as sprains, strains and other injuries. It is also helpful in the treatment of different types of arthritis and gout. Along with that, it can be used to reduce pain and inflammation which follows after a surgery.'),
(23833, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'Is Lituket 10mg Tablet DT safe?', 'Lituket 10mg Tablet DT is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23834, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'What should I do if I forget to take a dose of Lituket 10mg Tablet DT?', 'If you forget a dose of Lituket 10mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(23835, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'Is Lituket 10mg Tablet DT effective?', 'Lituket 10mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lituket 10mg Tablet DT too early, the symptoms may return or worsen.'),
(23836, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'What are the side effects of Lituket 10mg Tablet DT?', 'Some common side effects associated with Lituket 10mg Tablet DT include vomiting, stomach pain, nausea and indigestion. However, these side effects are usually not bothersome and resolve in some time. If they persist for a longer duration or worry you, consult your doctor.'),
(23837, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'Is Lituket 10mg Tablet DT an antibiotic or steroid?', 'No, Lituket 10mg Tablet DT is neither an antibiotic nor a steroid. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines. It is used to relieve moderate to severe pain and inflammation.'),
(23838, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'Is Lituket 10mg Tablet DT a good painkiller?', 'Lituket 10mg Tablet DT is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain, such as sprains, strains and other injuries. It is also helpful in the treatment of different types of arthritis and gout. Along with that, it can be used to reduce pain and inflammation which follows after a surgery.'),
(23839, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'Is Lituket 10mg Tablet DT safe?', 'Lituket 10mg Tablet DT is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23840, 'Lituket 10mg Tablet DT', 'Vilarsh Healthcare Pvt Ltd', 'Lituket 10mg Tablet DT', 'What should I do if I forget to take a dose of Lituket 10mg Tablet DT?', 'If you forget a dose of Lituket 10mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(23841, 'Liturgic 2D Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 2D Tablet', 'What is Liturgic 2D  Tablet ?', 'Liturgic 2D  Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(23842, 'Liturgic 2D Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 2D Tablet', 'Can Liturgic 2D  Tablet be stopped when allergy symptoms are relieved?', 'No, Liturgic 2D  Tablet should be continued as advised by the doctor. If any problems are experienced due to Liturgic 2D  Tablet, consult the doctor for re-evaluation.'),
(23843, 'Liturgic 2D Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 2D Tablet', 'Can the use of Liturgic 2D  Tablet cause dizziness?', 'Yes, the use of Liturgic 2D  Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(23844, 'Liturgic 2D Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 2D Tablet', 'What should be avoided in food while taking Liturgic 2D  Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Liturgic 2D  Tablet as it might increase the severity of drowsiness or sleepiness caused by Liturgic 2D  Tablet.'),
(23845, 'Liturgic 2D Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 2D Tablet', 'Will Liturgic 2D  Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(23846, 'Liturgic 2D Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 2D Tablet', 'What is the recommended storage condition for Liturgic 2D  Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23847, 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 3D 10mg/120mg/200mg Tablet', 'What should be avoided while taking Liturgic 3D 10mg/120mg/200mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Liturgic 3D 10mg/120mg/200mg Tablet. Drinking alcohol will increase the severity of drowsiness or sleepiness caused by Liturgic 3D 10mg/120mg/200mg Tablet.'),
(23848, 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Can I stop Liturgic 3D 10mg/120mg/200mg Tablet when my symptoms are relieved?', 'No, Liturgic 3D 10mg/120mg/200mg Tablet should be continued as advised by the doctor. If you experience any problem due to the use of Liturgic 3D 10mg/120mg/200mg Tablet, inform your doctor.'),
(23849, 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Can the use of Liturgic 3D 10mg/120mg/200mg Tablet cause dizziness?', 'Yes, the use of Liturgic 3D 10mg/120mg/200mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(23850, 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Will a higher than the recommended dose of Liturgic 3D 10mg/120mg/200mg Tablet be more effective?', 'No, taking a higher than the recommended dose of Liturgic 3D 10mg/120mg/200mg Tablet will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting worse, please consult the doctor for re-evaluation.'),
(23851, 'Liturgic 3D 10mg/120mg/200mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 3D 10mg/120mg/200mg Tablet', 'What are the instructions for the storage and disposal of Liturgic 3D 10mg/120mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23852, 'Liturgic 5mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 5mg Tablet', 'Is Liturgic 5mg Tablet a steroid? What is it used for?', 'No, Liturgic 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23853, 'Liturgic 5mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 5mg Tablet', 'Does Liturgic 5mg Tablet make you tired and drowsy?', 'Yes, Liturgic 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23854, 'Liturgic 5mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 5mg Tablet', 'How long does it take for Liturgic 5mg Tablet to work?', 'Liturgic 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23855, 'Liturgic 5mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 5mg Tablet', 'Can I take Liturgic 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liturgic 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23856, 'Liturgic 5mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 5mg Tablet', 'Is it safe to take Liturgic 5mg Tablet for a long time?', 'Liturgic 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liturgic 5mg Tablet for only as long as you need it.'),
(23857, 'Liturgic 5mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic 5mg Tablet', 'For how long should I continue Liturgic 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liturgic 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liturgic 5mg Tablet'),
(23858, 'Liturgic Cold Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Oral Suspension', 'What if  I give too much Liturgic Cold Oral Suspension by mistake?', 'Prolonged or excess intake of Liturgic Cold Oral Suspension can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(23859, 'Liturgic Cold Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Oral Suspension', 'How can I store Liturgic Cold Oral Suspension?', 'Liturgic Cold Oral Suspension should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(23860, 'Liturgic Cold Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Oral Suspension', 'My child has a cough and fever. Can I give him two medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. The reason being, both the medicines could have the same ingredients. This would be equivalent to an overdose and could have serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(23861, 'Liturgic Cold Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Oral Suspension', 'Can  I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(23862, 'Liturgic Cold Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Oral Suspension', 'Can Liturgic Cold Oral Suspension make my child sleepy?', 'Liturgic Cold Oral Suspension may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(23863, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'What is Liturgic Cold Tablet?', 'Liturgic Cold Tablet is a combination of four medicines: Paracetamol, Caffeine, Diphenhydramine, and Phenylephrine. This combination is helpful in relieving the symptoms of cold such as body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(23864, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'Are there any foods which I have to avoid while taking Liturgic Cold Tablet?', 'Liturgic Cold Tablet contains caffeine. So, it is preferable to avoid medicines or food that contain caffeine. Foods like coffee, tea, cola drinks or chocolate should be avoided as they may add to your total caffeine intake. Also, avoid drinking alcohol (beer, wine etc) while you are taking this medicine.'),
(23865, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'Can the use of Liturgic Cold Tablet cause sleepiness or drowsiness?', 'Yes, Liturgic Cold Tablet can make you feel drowsy or sleepy. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how this medicine affects you.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23866, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'Are there any serious side effects associated with the use of Liturgic Cold Tablet?', 'Serious side effects with Liturgic Cold Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat.'),
(23867, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'Can I breastfeed while taking Liturgic Cold Tablet?', 'No, it is not advisable to breastfeed while using Liturgic Cold Tablet. This medicine contains diphenhydramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(23868, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'Will a higher than the recommended dose of Liturgic Cold Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(23869, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'Are there any contraindications associated with use of Liturgic Cold Tablet?', 'It is not recommended to use Liturgic Cold Tablet if you have high blood pressure (hypertension), any underlying serious heart condition or cardiovascular disorder, any history of stomach ulcers or overactive thyroid (hyperthyroidism), unless advised by the doctor. The use of Liturgic Cold Tablet should also be avoided if you are taking antidepressant drugs. These drugs, called monoamine oxidase inhibitors (MAOIs), may include phenelzine and isocarboxazid or tricyclic antidepressants like imipramine and amitriptyline.'),
(23870, 'Liturgic Cold Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic Cold Tablet', 'What are the instructions for the storage and disposal of Liturgic Cold Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23871, 'Liturgic LC 5mg/10mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC 5mg/10mg Tablet', 'What is Liturgic LC 5mg/10mg Tablet?', 'Liturgic LC 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(23872, 'Liturgic LC 5mg/10mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC 5mg/10mg Tablet', 'Can the use of Liturgic LC 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liturgic LC 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(23873, 'Liturgic LC 5mg/10mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC 5mg/10mg Tablet', 'Can Liturgic LC 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Liturgic LC 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(23874, 'Liturgic LC 5mg/10mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC 5mg/10mg Tablet', 'Can the use of Liturgic LC 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Liturgic LC 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(23875, 'Liturgic LC 5mg/10mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC 5mg/10mg Tablet', 'Can I drink alcohol while taking Liturgic LC 5mg/10mg Tablet?', 'No, do not take alcohol while taking Liturgic LC 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liturgic LC 5mg/10mg Tablet.'),
(23876, 'Liturgic LC 5mg/10mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC 5mg/10mg Tablet', 'Will Liturgic LC 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liturgic LC 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(23877, 'Liturgic LC 5mg/10mg Tablet', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Liturgic LC 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(23878, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(23879, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'Can I decrease the dose of Liturgic LC Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(23880, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'How should Liturgic LC Oral Suspension be stored?', 'Liturgic LC Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(23881, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'Can Liturgic LC Oral Suspension make my child sleepy?', 'Liturgic LC Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(23882, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Liturgic LC Oral Suspension?', 'No, don’t start Liturgic LC Oral Suspension without speaking to your child’s doctor. Moreover, Liturgic LC Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(23883, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Liturgic LC Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(23884, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Liturgic LC Oral Suspension to my child?', 'Some studies show that Liturgic LC Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(23885, 'Liturgic LC Oral Suspension', 'Vrovwen Biologics Pvt Ltd', 'Liturgic LC Oral Suspension', 'Can I use Liturgic LC Oral Suspension for treating acute asthma attacks in my child?', 'Liturgic LC Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(23886, 'Lituss-DX Syrup', 'Healthy Life Medicare', 'Lituss-DX Syrup', 'Can the use of Lituss-DX Syrup cause sleepiness or drowsiness?', 'Yes, Lituss-DX Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(23887, 'Lituss-DX Syrup', 'Healthy Life Medicare', 'Lituss-DX Syrup', 'Will Lituss-DX Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(23888, 'Lituss-DX Syrup', 'Healthy Life Medicare', 'Lituss-DX Syrup', 'Can I breastfeed while taking Lituss-DX Syrup?', 'No, it is not advisable to breastfeed while using Lituss-DX Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(23889, 'Lituss-DX Syrup', 'Healthy Life Medicare', 'Lituss-DX Syrup', 'What are the instructions for storage and disposal of Lituss-DX Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23890, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'Why have I been prescribed Litz 2.5mg Tablet?', 'Litz 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(23891, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'How does Litz 2.5mg Tablet work?', 'Litz 2.5mg Tablet is also known as an anti-estrogen drug. It is called so because it acts by reducing the production of estrogen in your body by blocking the enzyme aromatase, which is responsible for the production of estrogen. Estrogen stimulates the production of certain types of breast cancer in your body. These cancers are called \'__\'estrogen-dependent cancers\'__\'. Reducing the production of estrogen may prevent cancer from growing.'),
(23892, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'For how long should I take Litz 2.5mg Tablet?', 'If the breast tumor is in the advanced stage or has spread to other parts of the body, it is recommended that you continue taking Litz 2.5mg Tablet till the tumor shows progression. In cases where Litz 2.5mg Tablet is given after tamoxifen (another anti-estrogen used for breast cancer) or surgery, it should be given for 5 years or until the tumor comes back, whichever is first. It can also be given as a sequential treatment; 2 years of Litz 2.5mg Tablet followed by 3 years of tamoxifen.'),
(23893, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'If I am taking irbesartan to control my blood pressure, can I take Litz 2.5mg Tablet?', 'Yes, you can take irbesartan and Litz 2.5mg Tablet together. However, be careful and keep a regular check on your blood pressure since Litz 2.5mg Tablet may increase your blood pressure. Consult your doctor in case you have problems controlling your blood pressure.'),
(23894, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'Does Litz 2.5mg Tablet affect vision?', 'Although it is very uncommon, Litz 2.5mg Tablet may cause a cataract. So, if you experience blurred vision or eye irritation, consult your doctor immediately.'),
(23895, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'My friend who is taking Litz 2.5mg Tablet often sweats a lot. Is it because of Litz 2.5mg Tablet?', 'This could be a sign of hot flushes which is a very common side effect of Litz 2.5mg Tablet. It happens due to decreased estrogen levels. The frequency of hot flushes reduces once your body adjusts to Litz 2.5mg Tablet. However, in some people, the flushes and sweats may continue during the treatment and stop a few months after the treatment finishes. You can consult your doctor who will provide you a remedy if it is very bothersome.'),
(23896, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'What are the serious side effects of Litz 2.5mg Tablet?', 'The serious side effects do not occur in everyone and very few people experience them. The serious side effects of Litz 2.5mg Tablet include stroke, angina, heart attack, blood clotting, cataract, osteoporosis, and severe skin reactions.'),
(23897, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'Does Litz 2.5mg Tablet cause bone loss?', 'Litz 2.5mg Tablet may cause thinning or wasting of your bones (osteoporosis), which is due to the decrease in estrogen levels in your body. Your doctor may decide to measure your bone density (a way of monitoring for osteoporosis) before, during and after treatment.'),
(23898, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'Can I take Litz 2.5mg Tablet for induction of ovulation in anovulatory infertility?', 'As per the Ministry of Health and Family Welfare, Litz 2.5mg Tablet is restricted for use in induction of ovulation in anovulatory infertility.'),
(23899, 'Litz 2.5mg Tablet', 'Gynogen', 'Litz 2.5mg Tablet', 'Why have I been prescribed Litz 2.5mg Tablet?', 'Litz 2.5mg Tablet is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(23900, 'Litz 40mg Tablet', 'Glitz Pharma', 'Litz 40mg Tablet', 'Can I take Litz 40mg Tablet empty stomach?', 'Litz 40mg Tablet may be taken with or without food. It can be taken once daily before bedtime or twice daily in the morning and before bedtime, as recommended.'),
(23901, 'Litz 40mg Tablet', 'Glitz Pharma', 'Litz 40mg Tablet', 'How long does it take for Litz 40mg Tablet to start working?', 'Litz 40mg Tablet starts working as fast as within 15 minutes from when it is given. Its effect is seen to last all day or all night.'),
(23902, 'Litz 40mg Tablet', 'Glitz Pharma', 'Litz 40mg Tablet', 'What is the difference between Litz 40mg Tablet and Omeprazole?', 'Litz 40mg Tablet and Omeprazole belong to different groups of medicines. While Litz 40mg Tablet belongs to histamine H2 antagonists group, Omeprazole belongs to proton pump inhibitors group. Both these medicines work by reducing the amount of acid made by the stomach, to relieve the symptoms and allow healing.'),
(23903, 'Litz 40mg Tablet', 'Glitz Pharma', 'Litz 40mg Tablet', 'What are the serious side effects of Litz 40mg Tablet?', 'Litz 40mg Tablet may have some serious side effects, but these are rare. These side effects may include hives, skin rash, itching, hoarseness and difficulty in breathing or swallowing. Another serious symptom may be swelling of the face, throat, tongue, lips, eyes, hands, feet, ankles, or lower legs. Inform your doctor in case you notice any of the mentioned symptoms.'),
(23904, 'Litz 40mg Tablet', 'Glitz Pharma', 'Litz 40mg Tablet', 'What are the dos and don’ts while taking Litz 40mg Tablet?', 'Avoid taking aspirin and other painkillers used to treat arthritis, period pain or headache. These medicines may irritate the stomach and make your condition worse. Contact your doctor who may suggest other medicines. Avoid coffee, tea, cocoa and cola drinks because these contain ingredients that may irritate your stomach. Eat smaller, more frequent meals. Eat slowly and chew your food carefully. Try not to rush at meal times. You should stop or cut down on smoking.'),
(23905, 'Litz 40mg Tablet', 'Glitz Pharma', 'Litz 40mg Tablet', 'Is Litz 40mg Tablet safe for long-term use?', 'There is limited data available on whether Litz 40mg Tablet can be used for a long term or not, but it is a relatively safe medicine. You should take it for the duration advised by your doctor. Do not take over-the-counter Litz 40mg Tablet for longer than 2 weeks unless advised by your doctor.'),
(23906, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'Why have I been prescribed Litz 5mg Tablet SR?', 'Litz 5mg Tablet SR is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(23907, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'How does Litz 5mg Tablet SR work?', 'Litz 5mg Tablet SR is also known as an anti-estrogen drug. It is called so because it acts by reducing the production of estrogen in your body by blocking the enzyme aromatase, which is responsible for the production of estrogen. Estrogen stimulates the production of certain types of breast cancer in your body. These cancers are called \'__\'estrogen-dependent cancers\'__\'. Reducing the production of estrogen may prevent cancer from growing.'),
(23908, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'For how long should I take Litz 5mg Tablet SR?', 'If the breast tumor is in the advanced stage or has spread to other parts of the body, it is recommended that you continue taking Litz 5mg Tablet SR till the tumor shows progression. In cases where Litz 5mg Tablet SR is given after tamoxifen (another anti-estrogen used for breast cancer) or surgery, it should be given for 5 years or until the tumor comes back, whichever is first. It can also be given as a sequential treatment; 2 years of Litz 5mg Tablet SR followed by 3 years of tamoxifen.'),
(23909, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'If I am taking irbesartan to control my blood pressure, can I take Litz 5mg Tablet SR?', 'Yes, you can take irbesartan and Litz 5mg Tablet SR together. However, be careful and keep a regular check on your blood pressure since Litz 5mg Tablet SR may increase your blood pressure. Consult your doctor in case you have problems controlling your blood pressure.'),
(23910, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'Does Litz 5mg Tablet SR affect vision?', 'Although it is very uncommon, Litz 5mg Tablet SR may cause a cataract. So, if you experience blurred vision or eye irritation, consult your doctor immediately.'),
(23911, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'My friend who is taking Litz 5mg Tablet SR often sweats a lot. Is it because of Litz 5mg Tablet SR?', 'This could be a sign of hot flushes which is a very common side effect of Litz 5mg Tablet SR. It happens due to decreased estrogen levels. The frequency of hot flushes reduces once your body adjusts to Litz 5mg Tablet SR. However, in some people, the flushes and sweats may continue during the treatment and stop a few months after the treatment finishes. You can consult your doctor who will provide you a remedy if it is very bothersome.'),
(23912, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'What are the serious side effects of Litz 5mg Tablet SR?', 'The serious side effects do not occur in everyone and very few people experience them. The serious side effects of Litz 5mg Tablet SR include stroke, angina, heart attack, blood clotting, cataract, osteoporosis, and severe skin reactions.'),
(23913, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'Does Litz 5mg Tablet SR cause bone loss?', 'Litz 5mg Tablet SR may cause thinning or wasting of your bones (osteoporosis), which is due to the decrease in estrogen levels in your body. Your doctor may decide to measure your bone density (a way of monitoring for osteoporosis) before, during and after treatment.'),
(23914, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'Can I take Litz 5mg Tablet SR for induction of ovulation in anovulatory infertility?', 'As per the Ministry of Health and Family Welfare, Litz 5mg Tablet SR is restricted for use in induction of ovulation in anovulatory infertility.'),
(23915, 'Litz 5mg Tablet SR', 'Gynogen', 'Litz 5mg Tablet SR', 'Why have I been prescribed Litz 5mg Tablet SR?', 'Litz 5mg Tablet SR is an aromatase inhibitor. It is generally prescribed to treat breast cancer in women who no longer have periods, either due to menopause or after surgery or chemotherapy.'),
(23916, 'Liuflox 500mg Injection', 'Garwychem Healthcare', 'Liuflox 500mg Injection', 'Is Liuflox 500mg Injection safe?', 'Liuflox 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23917, 'Liuflox 500mg Injection', 'Garwychem Healthcare', 'Liuflox 500mg Injection', 'Can the use of Liuflox 500mg Injection cause diarrhea?', 'Yes, the use of Liuflox 500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23918, 'Liuflox 500mg Injection', 'Garwychem Healthcare', 'Liuflox 500mg Injection', 'Can the use of Liuflox 500mg Injection increase the risk of muscle damage?', 'Yes, the use of Liuflox 500mg Injection is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liuflox 500mg Injection but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(23919, 'Liuflox 500mg Injection', 'Garwychem Healthcare', 'Liuflox 500mg Injection', 'How is Liuflox 500mg Injection administered?', 'Liuflox 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Liuflox 500mg Injection.'),
(23920, 'Liuflox 500mg Injection', 'Garwychem Healthcare', 'Liuflox 500mg Injection', 'Is Liuflox 500mg Injection effective?', 'Liuflox 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Liuflox 500mg Injection too early, the symptoms may return or worsen.'),
(23921, 'Liuflox 500mg Oral Suspension', 'Gadin Biotech', 'Liuflox 500mg Oral Suspension', 'Is Liuflox 500mg Oral Suspension safe?', 'Liuflox 500mg Oral Suspension is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23922, 'Liuflox 500mg Oral Suspension', 'Gadin Biotech', 'Liuflox 500mg Oral Suspension', 'What if I forget to take a dose of Liuflox 500mg Oral Suspension?', 'If you forget a dose of Liuflox 500mg Oral Suspension, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(23923, 'Liuflox 500mg Oral Suspension', 'Gadin Biotech', 'Liuflox 500mg Oral Suspension', 'Can the use of Liuflox 500mg Oral Suspension cause diarrhea?', 'Yes, the use of Liuflox 500mg Oral Suspension can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23924, 'Liuflox 500mg Oral Suspension', 'Gadin Biotech', 'Liuflox 500mg Oral Suspension', 'Can I stop taking Liuflox 500mg Oral Suspension when I feel better?', 'No, do not stop taking Liuflox 500mg Oral Suspension and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liuflox 500mg Oral Suspension too early, the symptoms may return or worsen. Continue taking Liuflox 500mg Oral Suspension in the dose and duration advised by the doctor.'),
(23925, 'Liuflox 500mg Oral Suspension', 'Gadin Biotech', 'Liuflox 500mg Oral Suspension', 'Can the use of Liuflox 500mg Oral Suspension increase the risk of muscle damage?', 'Yes, the use of Liuflox 500mg Oral Suspension is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liuflox 500mg Oral Suspension but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(23926, 'Liuflox 500mg Tablet', 'Garwychem Healthcare', 'Liuflox 500mg Tablet', 'Is Liuflox 500mg Tablet safe?', 'Liuflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(23927, 'Liuflox 500mg Tablet', 'Garwychem Healthcare', 'Liuflox 500mg Tablet', 'What if I forget to take a dose of Liuflox 500mg Tablet?', 'If you forget a dose of Liuflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(23928, 'Liuflox 500mg Tablet', 'Garwychem Healthcare', 'Liuflox 500mg Tablet', 'Can the use of Liuflox 500mg Tablet cause diarrhea?', 'Yes, the use of Liuflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23929, 'Liuflox 500mg Tablet', 'Garwychem Healthcare', 'Liuflox 500mg Tablet', 'Can I stop taking Liuflox 500mg Tablet when I feel better?', 'No, do not stop taking Liuflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liuflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Liuflox 500mg Tablet in the dose and duration advised by the doctor.'),
(23930, 'Liuflox 500mg Tablet', 'Garwychem Healthcare', 'Liuflox 500mg Tablet', 'Can the use of Liuflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liuflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liuflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(23931, 'Liv Cure 5gm Injection', 'Ancalima Lifesciences Ltd', 'Liv Cure 5gm Injection', 'Is it ok to take alcohol when taking Liv Cure 5gm Injection?', 'No, it is not recommended to take alcohol when on Liv Cure 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(23932, 'Liv Cure 5gm Injection', 'Ancalima Lifesciences Ltd', 'Liv Cure 5gm Injection', 'What is Liv Cure 5gm Injection?', 'Liv Cure 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(23933, 'Liv Cure 5gm Injection', 'Ancalima Lifesciences Ltd', 'Liv Cure 5gm Injection', 'What is the use of Liv Cure 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Liv Cure 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(23934, 'Liv Cure 5gm Injection', 'Ancalima Lifesciences Ltd', 'Liv Cure 5gm Injection', 'How is Liv Cure 5gm Injection given?', 'Liv Cure 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(23935, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'Q. What is Liv Daily Capsule?', 'Liv Daily Capsule is a combination of three medicines: Levocarnitine, Methylcobalamin and Folic acid. This medicine helps in the regeneration of damaged nerves in the body. It works by providing the required nutrients for the growth of nerves in the body.'),
(23936, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'Q. What is peripheral neuropathy?', 'Peripheral neuropathy is a condition that occurs due to any damage to one or more of your peripheral nerves, like the nerves in your feet, toes and fingertips. Peripheral nerves send sensory information from the peripheral organs like feet to the brain and spinal cord. They also carry signals back from the brain and spinal cord to the muscles. Symptoms of peripheral neuropathy include numbness, weakness, pain and pins-and-needles sensation and muscle wasting in severe cases.'),
(23937, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'Q. Can I stop taking Liv Daily Capsule when my symptoms are relieved?', 'No, do not stop taking Liv Daily Capsule Acid even when you feel that the symptoms have improved since the symptoms may improve even before the nerves have completely regenerated. Take Liv Daily Capsule for the duration as advised by the doctor.'),
(23938, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'Q. Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Liv Daily Capsule can lead to increased chances of toxicity. If your symptoms are not relieved by the recommended doses and you are experiencing troublesome side effects as well, please consult your doctor for re-evaluation.'),
(23939, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'Q.  What are the recommended storage conditions for Liv Daily Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23940, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'What is Liv Daily Capsule?', 'Liv Daily Capsule is a combination of three medicines: Levocarnitine, Methylcobalamin and Folic acid. This medicine helps in the regeneration of damaged nerves in the body. It works by providing the required nutrients for the growth of nerves in the body.'),
(23941, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'What is peripheral neuropathy?', 'Peripheral neuropathy is a condition that occurs due to any damage to one or more of your peripheral nerves, like the nerves in your feet, toes and fingertips. Peripheral nerves send sensory information from the peripheral organs like feet to the brain and spinal cord. They also carry signals back from the brain and spinal cord to the muscles. Symptoms of peripheral neuropathy include numbness, weakness, pain and pins-and-needles sensation and muscle wasting in severe cases.'),
(23942, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'Can I stop taking Liv Daily Capsule when my symptoms are relieved?', 'No, do not stop taking Liv Daily Capsule Acid even when you feel that the symptoms have improved since the symptoms may improve even before the nerves have completely regenerated. Take Liv Daily Capsule for the duration as advised by the doctor.'),
(23943, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Liv Daily Capsule can lead to increased chances of toxicity. If your symptoms are not relieved by the recommended doses and you are experiencing troublesome side effects as well, please consult your doctor for re-evaluation.'),
(23944, 'Liv Daily Capsule', 'Real Care Life Sciences', 'Liv Daily Capsule', 'What are the recommended storage conditions for Liv Daily Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(23945, 'Liv Fine 300mg Tablet', 'Ambience Pharma', 'Liv Fine 300mg Tablet', 'When should I take Liv Fine 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liv Fine 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(23946, 'Liv Fine 300mg Tablet', 'Ambience Pharma', 'Liv Fine 300mg Tablet', 'Is Liv Fine 300mg Tablet safe?', 'Liv Fine 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(23947, 'Liv Fine 300mg Tablet', 'Ambience Pharma', 'Liv Fine 300mg Tablet', 'How does Liv Fine 300mg Tablet help the liver?', 'Liv Fine 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(23948, 'Liv Fine 300mg Tablet', 'Ambience Pharma', 'Liv Fine 300mg Tablet', 'Does Liv Fine 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liv Fine 300mg Tablet, but it is not common. The use of Liv Fine 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(23949, 'Liv Fine 300mg Tablet', 'Ambience Pharma', 'Liv Fine 300mg Tablet', 'What should I avoid while taking Liv Fine 300mg Tablet?', 'While taking Liv Fine 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liv Fine 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liv Fine 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Liv Fine 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liv Fine 300mg Tablet.'),
(23950, 'Liv Hip 300mg Tablet', 'Assure Pharma', 'Liv Hip 300mg Tablet', 'When should I take Liv Hip 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liv Hip 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(23951, 'Liv Hip 300mg Tablet', 'Assure Pharma', 'Liv Hip 300mg Tablet', 'Is Liv Hip 300mg Tablet safe?', 'Liv Hip 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(23952, 'Liv Hip 300mg Tablet', 'Assure Pharma', 'Liv Hip 300mg Tablet', 'How does Liv Hip 300mg Tablet help the liver?', 'Liv Hip 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(23953, 'Liv Hip 300mg Tablet', 'Assure Pharma', 'Liv Hip 300mg Tablet', 'Does Liv Hip 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liv Hip 300mg Tablet, but it is not common. The use of Liv Hip 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(23954, 'Liv Hip 300mg Tablet', 'Assure Pharma', 'Liv Hip 300mg Tablet', 'What should I avoid while taking Liv Hip 300mg Tablet?', 'While taking Liv Hip 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liv Hip 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liv Hip 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Liv Hip 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liv Hip 300mg Tablet.'),
(23955, 'Liv Hip 5000mg Injection', 'Assure Pharma', 'Liv Hip 5000mg Injection', 'Is it ok to take alcohol when taking Liv Hip 5000mg Injection?', 'No, it is not recommended to take alcohol when on Liv Hip 5000mg Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(23956, 'Liv Hip 5000mg Injection', 'Assure Pharma', 'Liv Hip 5000mg Injection', 'What is Liv Hip 5000mg Injection?', 'Liv Hip 5000mg Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(23957, 'Liv Hip 5000mg Injection', 'Assure Pharma', 'Liv Hip 5000mg Injection', 'What is the use of Liv Hip 5000mg Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Liv Hip 5000mg Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(23958, 'Liv Hip 5000mg Injection', 'Assure Pharma', 'Liv Hip 5000mg Injection', 'How is Liv Hip 5000mg Injection given?', 'Liv Hip 5000mg Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(23959, 'Liv Z 5mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Liv Z 5mg Tablet', 'Is Liv Z 5mg Tablet a steroid? What is it used for?', 'No, Liv Z 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(23960, 'Liv Z 5mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Liv Z 5mg Tablet', 'Does Liv Z 5mg Tablet make you tired and drowsy?', 'Yes, Liv Z 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(23961, 'Liv Z 5mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Liv Z 5mg Tablet', 'How long does it take for Liv Z 5mg Tablet to work?', 'Liv Z 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(23962, 'Liv Z 5mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Liv Z 5mg Tablet', 'Can I take Liv Z 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liv Z 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(23963, 'Liv Z 5mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Liv Z 5mg Tablet', 'Is it safe to take Liv Z 5mg Tablet for a long time?', 'Liv Z 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liv Z 5mg Tablet for only as long as you need it.'),
(23964, 'Liv Z 5mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Liv Z 5mg Tablet', 'For how long should I continue Liv Z 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liv Z 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liv Z 5mg Tablet'),
(23965, 'Livable-L 150mg/100mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Livable-L 150mg/100mg Tablet', 'What is Livable-L 150mg/100mg Tablet?', 'Livable-L 150mg/100mg Tablet is used in the treatment of indigestion.'),
(23966, 'Livable-L 150mg/100mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Livable-L 150mg/100mg Tablet', 'Is it safe to use Livable-L 150mg/100mg Tablet?', 'Yes, Livable-L 150mg/100mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted side effects like nausea, stomach pain, bloating, diarrhea and constipation.'),
(23967, 'Livable-L 150mg/100mg Tablet', 'Stallion Laboratories Pvt Ltd', 'Livable-L 150mg/100mg Tablet', 'Can the use of Livable-L 150mg/100mg Tablet cause nausea and vomiting?', 'Yes, the use of Livable-L 150mg/100mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(23968, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'Is Livacef 200mg Tablet safe to use?', 'Livacef 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(23969, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'Can the use of Livacef 200mg Tablet cause diarrhea?', 'Yes, the use of Livacef 200mg Tablet can cause diarrhea. Livacef 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(23970, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'Is Livacef 200mg Tablet an antibiotic?', 'Yes, Livacef 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(23971, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'Can Livacef 200mg Tablet cause constipation?', 'Yes, Livacef 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(23972, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'Can I stop taking Livacef 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Livacef 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(23973, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'How long does Livacef 200mg Tablet take to work?', 'Usually, Livacef 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(23974, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'What if I do not get better after using Livacef 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(23975, 'Livacef 200mg Tablet', 'Mediliva Healthcare Pvt Ltd', 'Livacef 200mg Tablet', 'Can Livacef 200mg Tablet treat UTI?', 'Yes, Livacef 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Livacef 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(23976, 'Livacin 300 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300 Injection', 'How long does Livacin 300 Injection take to work?', 'Usually, Livacin 300 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(23977, 'Livacin 300 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300 Injection', 'Is Livacin 300 Injection effective?', 'Livacin 300 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livacin 300 Injection too early, the symptoms may return or worsen.'),
(23978, 'Livacin 300 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300 Injection', 'How is Livacin 300 Injection administered?', 'Livacin 300 Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Livacin 300 Injection.'),
(23979, 'Livacin 300 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300 Injection', 'Can the use of Livacin 300 Injection cause diarrhea?', 'Yes, the use of Livacin 300 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23980, 'Livacin 300 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300 Injection', 'Is Livacin 300 Injection safe?', 'Livacin 300 Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(23981, 'Livacin 300 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300 Injection', 'What if I don\'t get better after using Livacin 300 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(23982, 'Livacin 300 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300 Injection', 'Is Livacin 300 Injection effective?', 'Livacin 300 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livacin 300 Injection too early, the symptoms may return or worsen.'),
(23983, 'Livacin 300mg Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300mg Capsule', 'How long does Livacin 300mg Capsule take to work?', 'Usually, Livacin 300mg Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(23984, 'Livacin 300mg Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300mg Capsule', 'Can the use of Livacin 300mg Capsule cause diarrhea?', 'Yes, the use of Livacin 300mg Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23985, 'Livacin 300mg Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300mg Capsule', 'Is Livacin 300mg Capsule effective?', 'Livacin 300mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livacin 300mg Capsule too early, the symptoms may return or worsen.'),
(23986, 'Livacin 300mg Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300mg Capsule', 'What if I don\'t get better after using Livacin 300mg Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(23987, 'Livacin 300mg Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300mg Capsule', 'Is Livacin 300mg Capsule safe?', 'Livacin 300mg Capsule is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(23988, 'Livacin 300mg Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300mg Capsule', 'Can I stop taking Livacin 300mg Capsule when I feel better?', 'No, do not stop taking Livacin 300mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23989, 'Livacin 300mg Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 300mg Capsule', 'Is Livacin 300mg Capsule effective?', 'Livacin 300mg Capsule is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livacin 300mg Capsule too early, the symptoms may return or worsen.'),
(23990, 'Livacin 600 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 600 Injection', 'How long does Livacin 600 Injection take to work?', 'Usually, Livacin 600 Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(23991, 'Livacin 600 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 600 Injection', 'Is Livacin 600 Injection effective?', 'Livacin 600 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livacin 600 Injection too early, the symptoms may return or worsen.'),
(23992, 'Livacin 600 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 600 Injection', 'How is Livacin 600 Injection administered?', 'Livacin 600 Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Livacin 600 Injection.'),
(23993, 'Livacin 600 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 600 Injection', 'Can the use of Livacin 600 Injection cause diarrhea?', 'Yes, the use of Livacin 600 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(23994, 'Livacin 600 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 600 Injection', 'Is Livacin 600 Injection safe?', 'Livacin 600 Injection is generally safe to use. However, you should take it in the dose and duration as advised by your doctor. It may cause some side effects that are temporary and usually resolve on their own. Your doctor will tell you ways to cope up with them.'),
(23995, 'Livacin 600 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 600 Injection', 'What if I don\'t get better after using Livacin 600 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(23996, 'Livacin 600 Injection', 'Acekinetics Healthcare Pvt Ltd', 'Livacin 600 Injection', 'Is Livacin 600 Injection effective?', 'Livacin 600 Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livacin 600 Injection too early, the symptoms may return or worsen.'),
(23997, 'Livacin C 100mg/200mg Vaginal Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin C 100mg/200mg Vaginal Capsule', 'What if I don\'t get better after using Livacin C 100mg/200mg Vaginal Capsule?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(23998, 'Livacin C 100mg/200mg Vaginal Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin C 100mg/200mg Vaginal Capsule', 'Can I stop taking Livacin C 100mg/200mg Vaginal Capsule when I feel better?', 'No, do not stop taking Livacin C 100mg/200mg Vaginal Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(23999, 'Livacin C 100mg/200mg Vaginal Capsule', 'Acekinetics Healthcare Pvt Ltd', 'Livacin C 100mg/200mg Vaginal Capsule', 'What are the instructions for storage and disposal of Livacin C 100mg/200mg Vaginal Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24000, 'Livadom P 10mg/500mg Tablet', 'Medliva Lifesciences', 'Livadom P 10mg/500mg Tablet', 'What is Livadom P 10mg/500mg Tablet?', 'Livadom P 10mg/500mg Tablet is a combination of two medicines: Domperidone and Paracetamol/Acetaminophen. Domperidone helps to control vomiting. It also increases the movement of the stomach and intestines, allowing food to move more easily through the stomach. This prevents nausea and vomiting caused due to migraine. Paracetamol/Acetaminophen is an analgesic (pain reliever) and an anti-pyretic (fever reducer) which blocks the release of certain chemical messengers that cause pain and fever associated with migraine.'),
(24001, 'Livadom P 10mg/500mg Tablet', 'Medliva Lifesciences', 'Livadom P 10mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Livadom P 10mg/500mg Tablet can increase the risks of side effects and liver damage. If you are experiencing increased severity of symptoms that are  not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(24002, 'Livadom P 10mg/500mg Tablet', 'Medliva Lifesciences', 'Livadom P 10mg/500mg Tablet', 'Can I get addicted to Livadom P 10mg/500mg Tablet?', 'No, there is no report of any patient getting addicted to Livadom P 10mg/500mg Tablet.'),
(24003, 'Livadom P 10mg/500mg Tablet', 'Medliva Lifesciences', 'Livadom P 10mg/500mg Tablet', 'Can the use of Livadom P 10mg/500mg Tablet cause damage to liver?', 'Yes, Livadom P 10mg/500mg Tablet can cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(24004, 'Livadom P 10mg/500mg Tablet', 'Medliva Lifesciences', 'Livadom P 10mg/500mg Tablet', 'What is the recommended storage condition for the Livadom P 10mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24005, 'Livafin 0.25% Lotion', 'Zydus Cadila', 'Livafin 0.25% Lotion', 'How often should you use Livafin 0.25% Lotion?', 'Livafin 0.25% Lotion contains amorolfine which is an antifungal medicine. It is used to treat fungal infections of the nails. It is applied once weekly on the affected finger or toenails. Sometimes your physician may ask you to apply it twice weekly. The affected areas must be cleaned and dried properly.  Do not stop the treatment in between even if the symptoms heal. Your doctor will recommend the exact dose and duration of the treatment based on the type of fungal infection.'),
(24006, 'Livafin 0.25% Lotion', 'Zydus Cadila', 'Livafin 0.25% Lotion', 'Is Livafin 0.25% Lotion a steroid?', 'No, Livafin 0.25% Lotion is not a steroid. It is a medicine which is used to kill a wide variety of infection-causing fungus. It is applied on the affected nails to treat fungal infections.'),
(24007, 'Livafin 0.25% Lotion', 'Zydus Cadila', 'Livafin 0.25% Lotion', 'Can we apply Livafin 0.25% Lotion on other parts of the body?', 'No, this medicine should not be used on other parts of the body like the eyes, oral cavity, or intravaginally. Its use should be restricted to only nails and skin. Before using the medicine consult the doctor and follow the instructions carefully.'),
(24008, 'Livafin 0.25% Lotion', 'Zydus Cadila', 'Livafin 0.25% Lotion', 'Can Livafin 0.25% Lotion cause any local reaction or rashes?', 'Yes, the use of Livafin 0.25% Lotion may cause allergic reactions, but the probability is unknown. Such allergic reaction is not very common and is likely to occur in only susceptible or sensitive individuals. Immediately contact your doctor if you experience such reactions.'),
(24009, 'Livafin 0.25% Lotion', 'Zydus Cadila', 'Livafin 0.25% Lotion', 'Is Livafin 0.25% Lotion safe to be used in kids?', 'No, Livafin 0.25% Lotion should not be used in children and infants. This is because there is no evidence available to prove the safety of the medicine. Consult your doctor in case your kid develops nail or skin infections or has any nail changes.'),
(24010, 'Livafin CP Cream', 'Zydus Cadila', 'Livafin CP Cream', 'Q. How often should you use Livafin CP Cream?', 'Livafin CP Cream contains amorolfine which is an antifungal medicine. It is used to treat fungal infections of the nails. It is applied once weekly on the affected finger or toenails. Sometimes your physician may ask you to apply it twice weekly. The affected areas must be cleaned and dried properly.  Do not stop the treatment in between even if the symptoms heal. Your doctor will recommend the exact dose and duration of the treatment based on the type of fungal infection.'),
(24011, 'Livafin CP Cream', 'Zydus Cadila', 'Livafin CP Cream', 'Q. Is Livafin CP Cream a steroid?', 'No, Livafin CP Cream is not a steroid. It is a medicine which is used to kill a wide variety of infection-causing fungus. It is applied on the affected nails to treat fungal infections.'),
(24012, 'Livafin CP Cream', 'Zydus Cadila', 'Livafin CP Cream', 'Q. Can we apply Livafin CP Cream on other parts of the body?', 'No, this medicine should not be used on other parts of the body like the eyes, oral cavity, or intravaginally. Its use should be restricted to only nails and skin. Before using the medicine consult the doctor and follow the instructions carefully.'),
(24013, 'Livafin CP Cream', 'Zydus Cadila', 'Livafin CP Cream', 'Q. Can Livafin CP Cream cause any local reaction or rashes?', 'Yes, the use of Livafin CP Cream may cause allergic reactions, but the probability is unknown. Such allergic reaction is not very common and is likely to occur in only susceptible or sensitive individuals. Immediately contact your doctor if you experience such reactions.'),
(24014, 'Livafin CP Cream', 'Zydus Cadila', 'Livafin CP Cream', 'Q. Is Livafin CP Cream safe to be used in kids?', 'No, Livafin CP Cream should not be used in children and infants. This is because there is no evidence available to prove the safety of the medicine. Consult your doctor in case your kid develops nail or skin infections or has any nail changes.'),
(24015, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Q. How often should you use Livafin Cream?', 'Livafin Cream contains amorolfine which is an antifungal medicine. It is used to treat fungal infections of the nails. It is applied once weekly on the affected finger or toenails. Sometimes your physician may ask you to apply it twice weekly. The affected areas must be cleaned and dried properly.  Do not stop the treatment in between even if the symptoms heal. Your doctor will recommend the exact dose and duration of the treatment based on the type of fungal infection.'),
(24016, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Q. Is Livafin Cream a steroid?', 'No, Livafin Cream is not a steroid. It is a medicine which is used to kill a wide variety of infection-causing fungus. It is applied on the affected nails to treat fungal infections.'),
(24017, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Q. Can we apply Livafin Cream on other parts of the body?', 'No, this medicine should not be used on other parts of the body like the eyes, oral cavity, or intravaginally. Its use should be restricted to only nails and skin. Before using the medicine consult the doctor and follow the instructions carefully.'),
(24018, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Q. Can Livafin Cream cause any local reaction or rashes?', 'Yes, the use of Livafin Cream may cause allergic reactions, but the probability is unknown. Such allergic reaction is not very common and is likely to occur in only susceptible or sensitive individuals. Immediately contact your doctor if you experience such reactions.'),
(24019, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Q. Is Livafin Cream safe to be used in kids?', 'No, Livafin Cream should not be used in children and infants. This is because there is no evidence available to prove the safety of the medicine. Consult your doctor in case your kid develops nail or skin infections or has any nail changes.'),
(24020, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'How often should you use Livafin Cream?', 'Livafin Cream contains amorolfine which is an antifungal medicine. It is used to treat fungal infections of the nails. It is applied once weekly on the affected finger or toenails. Sometimes your physician may ask you to apply it twice weekly. The affected areas must be cleaned and dried properly.  Do not stop the treatment in between even if the symptoms heal. Your doctor will recommend the exact dose and duration of the treatment based on the type of fungal infection.'),
(24021, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Is Livafin Cream a steroid?', 'No, Livafin Cream is not a steroid. It is a medicine which is used to kill a wide variety of infection-causing fungus. It is applied on the affected nails to treat fungal infections.'),
(24022, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Can we apply Livafin Cream on other parts of the body?', 'No, this medicine should not be used on other parts of the body like the eyes, oral cavity, or intravaginally. Its use should be restricted to only nails and skin. Before using the medicine consult the doctor and follow the instructions carefully.'),
(24023, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Can Livafin Cream cause any local reaction or rashes?', 'Yes, the use of Livafin Cream may cause allergic reactions, but the probability is unknown. Such allergic reaction is not very common and is likely to occur in only susceptible or sensitive individuals. Immediately contact your doctor if you experience such reactions.'),
(24024, 'Livafin Cream', 'Zydus Cadila', 'Livafin Cream', 'Is Livafin Cream safe to be used in kids?', 'No, Livafin Cream should not be used in children and infants. This is because there is no evidence available to prove the safety of the medicine. Consult your doctor in case your kid develops nail or skin infections or has any nail changes.'),
(24025, 'Livair Tablet', 'Genecia Healthcare', 'Livair Tablet', 'What is Livair Tablet?', 'Livair Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24026, 'Livair Tablet', 'Genecia Healthcare', 'Livair Tablet', 'Can the use of Livair Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livair Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24027, 'Livair Tablet', 'Genecia Healthcare', 'Livair Tablet', 'Can Livair Tablet be stopped when allergy symptoms are relieved?', 'No, Livair Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24028, 'Livair Tablet', 'Genecia Healthcare', 'Livair Tablet', 'Can the use of Livair Tablet cause dry mouth?', 'Yes, the use of Livair Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24029, 'Livair Tablet', 'Genecia Healthcare', 'Livair Tablet', 'Can I drink alcohol while taking Livair Tablet?', 'No, do not take alcohol while taking Livair Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livair Tablet.'),
(24030, 'Livair Tablet', 'Genecia Healthcare', 'Livair Tablet', 'Will Livair Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livair Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24031, 'Livair Tablet', 'Genecia Healthcare', 'Livair Tablet', 'What are the instructions for storage and disposal of Livair Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24032, 'Livanza 150 Tablet DT', 'Indiabulls pharmaceutical ltd', 'Livanza 150 Tablet DT', 'When should I take Livanza 150 Tablet DT?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livanza 150 Tablet DT should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24033, 'Livanza 150 Tablet DT', 'Indiabulls pharmaceutical ltd', 'Livanza 150 Tablet DT', 'Is Livanza 150 Tablet DT safe?', 'Livanza 150 Tablet DT is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24034, 'Livanza 150 Tablet DT', 'Indiabulls pharmaceutical ltd', 'Livanza 150 Tablet DT', 'How does Livanza 150 Tablet DT help the liver?', 'Livanza 150 Tablet DT acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24035, 'Livanza 150 Tablet DT', 'Indiabulls pharmaceutical ltd', 'Livanza 150 Tablet DT', 'Does Livanza 150 Tablet DT cause weight gain?', 'Yes, there is a chance of weight gain with Livanza 150 Tablet DT, but it is not common. The use of Livanza 150 Tablet DT can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24036, 'Livanza 150 Tablet DT', 'Indiabulls pharmaceutical ltd', 'Livanza 150 Tablet DT', 'What should I avoid while taking Livanza 150 Tablet DT?', 'While taking Livanza 150 Tablet DT, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livanza 150 Tablet DT. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livanza 150 Tablet DT. So, ask your doctor about the time gap that should be maintained between Livanza 150 Tablet DT and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livanza 150 Tablet DT.'),
(24037, 'Livanza 300 Tablet', 'Indiabulls pharmaceutical ltd', 'Livanza 300 Tablet', 'When should I take Livanza 300 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livanza 300 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24038, 'Livanza 300 Tablet', 'Indiabulls pharmaceutical ltd', 'Livanza 300 Tablet', 'Is Livanza 300 Tablet safe?', 'Livanza 300 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24039, 'Livanza 300 Tablet', 'Indiabulls pharmaceutical ltd', 'Livanza 300 Tablet', 'How does Livanza 300 Tablet help the liver?', 'Livanza 300 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24040, 'Livanza 300 Tablet', 'Indiabulls pharmaceutical ltd', 'Livanza 300 Tablet', 'Does Livanza 300 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livanza 300 Tablet, but it is not common. The use of Livanza 300 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24041, 'Livanza 300 Tablet', 'Indiabulls pharmaceutical ltd', 'Livanza 300 Tablet', 'What should I avoid while taking Livanza 300 Tablet?', 'While taking Livanza 300 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livanza 300 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livanza 300 Tablet. So, ask your doctor about the time gap that should be maintained between Livanza 300 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livanza 300 Tablet.'),
(24042, 'Livarc 250mg Tablet', 'Pinarc Life Sciences', 'Livarc 250mg Tablet', 'Is Livarc 250mg Tablet safe?', 'Livarc 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24043, 'Livarc 250mg Tablet', 'Pinarc Life Sciences', 'Livarc 250mg Tablet', 'What if I forget to take a dose of Livarc 250mg Tablet?', 'If you forget a dose of Livarc 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24044, 'Livarc 250mg Tablet', 'Pinarc Life Sciences', 'Livarc 250mg Tablet', 'Can the use of Livarc 250mg Tablet cause diarrhea?', 'Yes, the use of Livarc 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24045, 'Livarc 250mg Tablet', 'Pinarc Life Sciences', 'Livarc 250mg Tablet', 'Can I stop taking Livarc 250mg Tablet when I feel better?', 'No, do not stop taking Livarc 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livarc 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livarc 250mg Tablet in the dose and duration advised by the doctor.'),
(24046, 'Livarc 250mg Tablet', 'Pinarc Life Sciences', 'Livarc 250mg Tablet', 'Can the use of Livarc 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livarc 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livarc 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24047, 'Livarc 500 Tablet', 'Pinarc Life Sciences', 'Livarc 500 Tablet', 'Is Livarc 500 Tablet safe?', 'Livarc 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24048, 'Livarc 500 Tablet', 'Pinarc Life Sciences', 'Livarc 500 Tablet', 'What if I forget to take a dose of Livarc 500 Tablet?', 'If you forget a dose of Livarc 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24049, 'Livarc 500 Tablet', 'Pinarc Life Sciences', 'Livarc 500 Tablet', 'Can the use of Livarc 500 Tablet cause diarrhea?', 'Yes, the use of Livarc 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24050, 'Livarc 500 Tablet', 'Pinarc Life Sciences', 'Livarc 500 Tablet', 'Can I stop taking Livarc 500 Tablet when I feel better?', 'No, do not stop taking Livarc 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livarc 500 Tablet too early, the symptoms may return or worsen. Continue taking Livarc 500 Tablet in the dose and duration advised by the doctor.'),
(24051, 'Livarc 500 Tablet', 'Pinarc Life Sciences', 'Livarc 500 Tablet', 'Can the use of Livarc 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livarc 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livarc 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24052, 'Livarc-OZ Tablet', 'Pinarc Life Sciences', 'Livarc-OZ Tablet', 'What if I don\'t get better after using Livarc-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(24053, 'Livarc-OZ Tablet', 'Pinarc Life Sciences', 'Livarc-OZ Tablet', 'Can I stop taking Livarc-OZ Tablet when I feel better?', 'No, do not stop taking Livarc-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(24054, 'Livarc-OZ Tablet', 'Pinarc Life Sciences', 'Livarc-OZ Tablet', 'What if I miss my dose?', 'Take Livarc-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(24055, 'Livarin 70mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livarin 70mg Tablet', 'What is Livarin 70mg Tablet? What is it used for?', 'Livarin 70mg Tablet belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livarin 70mg Tablet accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(24056, 'Livarin 70mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livarin 70mg Tablet', 'How does Livarin 70mg Tablet work for the liver?', 'Livarin 70mg Tablet is obtained from milk thistle seed (Silybum marianum). Livarin 70mg Tablet works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(24057, 'Livarin 70mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livarin 70mg Tablet', 'How to use Livarin 70mg Tablet?', 'Livarin 70mg Tablet should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livarin 70mg Tablet.'),
(24058, 'Livarin 70mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livarin 70mg Tablet', 'What are the side effects of Livarin 70mg Tablet?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(24059, 'Livarin 70mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livarin 70mg Tablet', 'Can Livarin 70mg Tablet be used in pregnancy and lactation?', 'Livarin 70mg Tablet may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livarin 70mg Tablet if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(24060, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'What is Livastat 4 Tablet used for?', 'Livastat 4 Tablet is used along with a healthy diet and exercise to reduce bad cholesterol and increase the amount of good cholesterol in the blood. It belongs to a class of medicines called statins that lower the cholesterol in the blood. It works by slowing the production of cholesterol in the liver in order to decrease the amount of cholesterol that accumulates on the walls of the arteries. Improving the levels of cholesterol in the blood helps to reduce the risk of heart attack or stroke.'),
(24061, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'What is the most important thing I should be aware of while using Livastat 4 Tablet?', 'If you notice unexplained muscle pain or weakness, particularly if accompanied by malaise or fever, you should immediately consult your doctor. Livastat 4 Tablet should be discontinued immediately as these could be signs of serious side effects of Livastat 4 Tablet. Similarly, if you experience tiredness, loss of appetite, dark urine or yellowish discoloration of skin, consult your doctor who will suggest whether to continue or discontinue Livastat 4 Tablet.'),
(24062, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'Can I take Livastat 4 Tablet if I have liver disease or if my liver enzymes are raised?', 'No, you should not take Livastat 4 Tablet if you have active liver disease and if your liver enzymes are increased. Taking Livastat 4 Tablet will further deteriorate your liver condition.'),
(24063, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'Will taking Livastat 4 Tablet increase my risk of diabetes?', 'Yes, taking Livastat 4 Tablet may further increase the risk if you are already at high risk of developing type 2 diabetes. This is because Livastat 4 Tablet like other statins may cause an increase in blood sugar levels. Hence, regular checking and monitoring of blood sugar levels are important if you already have diabetes, especially during the first few months.'),
(24064, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'Is it safe to take Livastat 4 Tablet?', 'Yes, Livastat 4 Tablet is safe if used as prescribed by the doctor and if the doctor’s instructions are followed. The side effects of this medicine are few and do not occur in everyone.'),
(24065, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'For how long should I take Livastat 4 Tablet?', 'You may need to take Livastat 4 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only until you are taking Livastat 4 Tablet. Stopping Livastat 4 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(24066, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'What foods should be avoided when taking Livastat 4 Tablet?', 'Livastat 4 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods which are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(24067, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'Does Livastat 4 Tablet cause hair loss?', 'No, hair loss has not been reported with the use of Livastat 4 Tablet. If you are experiencing hair loss then it could be due to some other medicine that you are taking or because of some other condition.'),
(24068, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'Does Livastat 4 Tablet make you tired?', 'Yes, Livastat 4 Tablet can make you feel tired. This is because they reduce the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often seen in people with heart disease or in those suffering from liver illness. Livastat 4 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Livastat 4 Tablet.'),
(24069, 'Livastat 4 Tablet', 'Novazen Pharmaceuticals', 'Livastat 4 Tablet', 'Can I take alcohol with Livastat 4 Tablet?', 'No. It is not advised to take alcohol with Livastat 4 Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in triglyceride levels if Livastat 4 Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness and tenderness. People with liver problems are therefore advised, not to take Livastat 4 Tablet without consulting your doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(24070, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'Should Livatel 40mg Tablet be taken in the morning or at night?', 'Livatel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(24071, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'How long does it take for Livatel 40mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(24072, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'My blood pressure is now controlled. Can I stop taking Livatel 40mg Tablet now?', 'No, do not stop taking Livatel 40mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Livatel 40mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(24073, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'If I have some kidney problem, can I take Livatel 40mg Tablet? Can it further deteriorate my kidney function?', 'You can take Livatel 40mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Livatel 40mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(24074, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'I am overweight and the doctor has prescribed me Livatel 40mg Tablet for blood pressure control. I am bothered that Livatel 40mg Tablet can increase my weight. Is it true?', 'No, do not worry since Livatel 40mg Tablet is not known to cause weight gain. In fact in animal studies Livatel 40mg Tablet has been found to decrease fat tissue.'),
(24075, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'Does Livatel 40mg Tablet affect blood glucose levels in diabetics?', 'Livatel 40mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(24076, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'Can the use of Livatel 40mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Livatel 40mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(24077, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'Does Livatel 40mg Tablet work by causing excessive urination?', 'No, Livatel 40mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Livatel 40mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(24078, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Livatel 40mg Tablet together?', 'If you are taking ibuprofen and Livatel 40mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Livatel 40mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Livatel 40mg Tablet for heart failure. Ibuprofen may interfere with the working of Livatel 40mg Tablet and decrease its efficiency at lowering blood pressure.'),
(24079, 'Livatel 40mg Tablet', 'Medliva Lifesciences', 'Livatel 40mg Tablet', 'Should Livatel 40mg Tablet be taken in the morning or at night?', 'Livatel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(24080, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'Should Livatel 80mg Tablet be taken in the morning or at night?', 'Livatel 80mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(24081, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'How long does it take for Livatel 80mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(24082, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'My blood pressure is now controlled. Can I stop taking Livatel 80mg Tablet now?', 'No, do not stop taking Livatel 80mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Livatel 80mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(24083, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'If I have some kidney problem, can I take Livatel 80mg Tablet? Can it further deteriorate my kidney function?', 'You can take Livatel 80mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Livatel 80mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(24084, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'I am overweight and the doctor has prescribed me Livatel 80mg Tablet for blood pressure control. I am bothered that Livatel 80mg Tablet can increase my weight. Is it true?', 'No, do not worry since Livatel 80mg Tablet is not known to cause weight gain. In fact in animal studies Livatel 80mg Tablet has been found to decrease fat tissue.'),
(24085, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'Does Livatel 80mg Tablet affect blood glucose levels in diabetics?', 'Livatel 80mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24086, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'Can the use of Livatel 80mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Livatel 80mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(24087, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'Does Livatel 80mg Tablet work by causing excessive urination?', 'No, Livatel 80mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Livatel 80mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(24088, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Livatel 80mg Tablet together?', 'If you are taking ibuprofen and Livatel 80mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Livatel 80mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Livatel 80mg Tablet for heart failure. Ibuprofen may interfere with the working of Livatel 80mg Tablet and decrease its efficiency at lowering blood pressure.'),
(24089, 'Livatel 80mg Tablet', 'Medliva Lifesciences', 'Livatel 80mg Tablet', 'Should Livatel 80mg Tablet be taken in the morning or at night?', 'Livatel 80mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(24090, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'What should I avoid while taking Livatel A 40mg/5mg Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(24091, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'What happens if I take too much of Livatel A 40mg/5mg Tablet?', 'If you accidentally take too much of Livatel A 40mg/5mg Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any of such symptoms contact your doctor immediately and seek medical help.'),
(24092, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'Can I come off Livatel A 40mg/5mg Tablet when my blood pressure is under control or normal?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Livatel A 40mg/5mg Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it. You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or stroke.'),
(24093, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'What happens if I forget to take Livatel A 40mg/5mg Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure then you can consult your doctor for other ways to help you remember.'),
(24094, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'What will happen if I stop taking Livatel A 40mg/5mg Tablet?', 'You should not stop taking Livatel A 40mg/5mg Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea, etc., talk to your doctor.'),
(24095, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'Is it safe to take Livatel A 40mg/5mg Tablet for a long time?', 'Livatel A 40mg/5mg Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(24096, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'How long will I be taking Livatel A 40mg/5mg Tablet for?', 'You may have to take Livatel A 40mg/5mg Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(24097, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'What if Livatel A 40mg/5mg Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(24098, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'Can Livatel A 40mg/5mg Tablet affect my fertility or sex life?', 'Livatel A 40mg/5mg Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep track of your blood pressure.'),
(24099, 'Livatel A 40mg/5mg Tablet', 'Medliva Lifesciences', 'Livatel A 40mg/5mg Tablet', 'What other lifestyle changes should I make while taking Livatel A 40mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Livatel A 40mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Livatel A 40mg/5mg Tablet and to keep yourself healthy.'),
(24100, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'What should I avoid while taking Livatel H 40mg/12.5mg Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(24101, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'What happens if I take too much of Livatel H 40mg/12.5mg Tablet?', 'If you accidentally take too much of Livatel H 40mg/12.5mg Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any such symptoms, contact your doctor immediately and seek medical help.'),
(24102, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'Can I come off Livatel H 40mg/12.5mg Tablet when my blood pressure is under control or normal?', 'Remember, Livatel H 40mg/12.5mg Tablet does not cure your hypertension (high blood pressure) but helps normalize it. You should continue taking this medicine even if your blood pressure is controlled. If you stop taking Livatel H 40mg/12.5mg Tablet, your blood pressure could rise back up again. Generally, blood pressure-lowering medicines are to be taken for the rest of your life. It is important to know that by keeping your blood pressure controlled you are reducing your risk of having a heart attack or a stroke.'),
(24103, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'What happens if I forget to take Livatel H 40mg/12.5mg Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure, consult your doctor for other ways to help you remember.'),
(24104, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'What will happen if I stop taking Livatel H 40mg/12.5mg Tablet?', 'You should not stop taking Livatel H 40mg/12.5mg Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea etc., talk to your doctor.'),
(24105, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'Is it safe to take Livatel H 40mg/12.5mg Tablet for a long time?', 'Livatel H 40mg/12.5mg Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(24106, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'How long will I be taking Livatel H 40mg/12.5mg Tablet for?', 'You may have to take Livatel H 40mg/12.5mg Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(24107, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'What if Livatel H 40mg/12.5mg Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(24108, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'Can Livatel H 40mg/12.5mg Tablet affect my fertility or sex life?', 'Livatel H 40mg/12.5mg Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep a track of your blood pressure.'),
(24109, 'Livatel H 40mg/12.5mg Tablet', 'Medliva Lifesciences', 'Livatel H 40mg/12.5mg Tablet', 'What other lifestyle changes should I make while taking Livatel H 40mg/12.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Livatel H 40mg/12.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Livatel H 40mg/12.5mg Tablet and to keep yourself healthy.'),
(24110, 'Livath 5mg Tablet', 'Athens Wellness', 'Livath 5mg Tablet', 'Is Livath 5mg Tablet a steroid? What is it used for?', 'No, Livath 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24111, 'Livath 5mg Tablet', 'Athens Wellness', 'Livath 5mg Tablet', 'Does Livath 5mg Tablet make you tired and drowsy?', 'Yes, Livath 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24112, 'Livath 5mg Tablet', 'Athens Wellness', 'Livath 5mg Tablet', 'How long does it take for Livath 5mg Tablet to work?', 'Livath 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24113, 'Livath 5mg Tablet', 'Athens Wellness', 'Livath 5mg Tablet', 'Can I take Livath 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livath 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24114, 'Livath 5mg Tablet', 'Athens Wellness', 'Livath 5mg Tablet', 'Is it safe to take Livath 5mg Tablet for a long time?', 'Livath 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livath 5mg Tablet for only as long as you need it.'),
(24115, 'Livath 5mg Tablet', 'Athens Wellness', 'Livath 5mg Tablet', 'For how long should I continue Livath 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livath 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livath 5mg Tablet'),
(24116, 'Livath Plus 5mg/10mg Tablet', 'Athens Wellness', 'Livath Plus 5mg/10mg Tablet', 'What is Livath Plus 5mg/10mg Tablet?', 'Livath Plus 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24117, 'Livath Plus 5mg/10mg Tablet', 'Athens Wellness', 'Livath Plus 5mg/10mg Tablet', 'Can the use of Livath Plus 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livath Plus 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24118, 'Livath Plus 5mg/10mg Tablet', 'Athens Wellness', 'Livath Plus 5mg/10mg Tablet', 'Can Livath Plus 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livath Plus 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24119, 'Livath Plus 5mg/10mg Tablet', 'Athens Wellness', 'Livath Plus 5mg/10mg Tablet', 'Can the use of Livath Plus 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livath Plus 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24120, 'Livath Plus 5mg/10mg Tablet', 'Athens Wellness', 'Livath Plus 5mg/10mg Tablet', 'Can I drink alcohol while taking Livath Plus 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livath Plus 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livath Plus 5mg/10mg Tablet.'),
(24121, 'Livath Plus 5mg/10mg Tablet', 'Athens Wellness', 'Livath Plus 5mg/10mg Tablet', 'Will Livath Plus 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livath Plus 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24122, 'Livath Plus 5mg/10mg Tablet', 'Athens Wellness', 'Livath Plus 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livath Plus 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24123, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(24124, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Livath Plus Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(24125, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'How should Livath Plus Kid 2.5mg/4mg Tablet be stored?', 'Livath Plus Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24126, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'Can Livath Plus Kid 2.5mg/4mg Tablet make my child sleepy?', 'Livath Plus Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(24127, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livath Plus Kid 2.5mg/4mg Tablet?', 'No, don’t start Livath Plus Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Livath Plus Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(24128, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livath Plus Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(24129, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Livath Plus Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Livath Plus Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(24130, 'Livath Plus Kid 2.5mg/4mg Tablet', 'Athens Wellness', 'Livath Plus Kid 2.5mg/4mg Tablet', 'Can I use Livath Plus Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Livath Plus Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(24131, 'Livath Plus Syrup', 'Athens Wellness', 'Livath Plus Syrup', 'What is Livath Plus Syrup?', 'Livath Plus Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24132, 'Livath Plus Syrup', 'Athens Wellness', 'Livath Plus Syrup', 'Can the use of Livath Plus Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livath Plus Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24133, 'Livath Plus Syrup', 'Athens Wellness', 'Livath Plus Syrup', 'Can Livath Plus Syrup be stopped when allergy symptoms are relieved?', 'No, Livath Plus Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24134, 'Livath Plus Syrup', 'Athens Wellness', 'Livath Plus Syrup', 'Can the use of Livath Plus Syrup cause dry mouth?', 'Yes, the use of Livath Plus Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24135, 'Livath Plus Syrup', 'Athens Wellness', 'Livath Plus Syrup', 'Can I drink alcohol while taking Livath Plus Syrup?', 'No, do not take alcohol while taking Livath Plus Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livath Plus Syrup.'),
(24136, 'Livath Plus Syrup', 'Athens Wellness', 'Livath Plus Syrup', 'Will Livath Plus Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livath Plus Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24137, 'Livath Plus Syrup', 'Athens Wellness', 'Livath Plus Syrup', 'What are the instructions for storage and disposal of Livath Plus Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24138, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'What is Livax 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(24139, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Is it safe to take Livax 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(24140, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Can I stop taking Livax 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(24141, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Can Livax 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(24142, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Can Livax 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(24143, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Livax 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(24144, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Can I take Livax 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(24145, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Can the use of Livax 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(24146, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Livax 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(24147, 'Livax 100mg/325mg/15mg Tablet', 'Cure Kelvin', 'Livax 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Livax 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24148, 'Livax 5gm Injection', 'Axodin Pharmaceuticals Pvt. Ltd.', 'Livax 5gm Injection', 'Is it ok to take alcohol when taking Livax 5gm Injection?', 'No, it is not recommended to take alcohol when on Livax 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24149, 'Livax 5gm Injection', 'Axodin Pharmaceuticals Pvt. Ltd.', 'Livax 5gm Injection', 'What is Livax 5gm Injection?', 'Livax 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24150, 'Livax 5gm Injection', 'Axodin Pharmaceuticals Pvt. Ltd.', 'Livax 5gm Injection', 'What is the use of Livax 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livax 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24151, 'Livax 5gm Injection', 'Axodin Pharmaceuticals Pvt. Ltd.', 'Livax 5gm Injection', 'How is Livax 5gm Injection given?', 'Livax 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24152, 'Livazin M 5mg/10mg Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin M 5mg/10mg Tablet', 'What is Livazin M 5mg/10mg Tablet?', 'Livazin M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24153, 'Livazin M 5mg/10mg Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin M 5mg/10mg Tablet', 'Can the use of Livazin M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livazin M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24154, 'Livazin M 5mg/10mg Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin M 5mg/10mg Tablet', 'Can Livazin M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livazin M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24155, 'Livazin M 5mg/10mg Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin M 5mg/10mg Tablet', 'Can the use of Livazin M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livazin M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24156, 'Livazin M 5mg/10mg Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livazin M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livazin M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livazin M 5mg/10mg Tablet.'),
(24157, 'Livazin M 5mg/10mg Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin M 5mg/10mg Tablet', 'Will Livazin M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livazin M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24158, 'Livazin M 5mg/10mg Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livazin M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24159, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(24160, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'Can I decrease the dose of Livazin M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(24161, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'How should Livazin M Syrup be stored?', 'Livazin M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24162, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'Can Livazin M Syrup make my child sleepy?', 'Livazin M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(24163, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livazin M Syrup?', 'No, don’t start Livazin M Syrup without speaking to your child’s doctor. Moreover, Livazin M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(24164, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livazin M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(24165, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livazin M Syrup to my child?', 'Some studies show that Livazin M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(24166, 'Livazin M Syrup', 'Varmed Pharma Pvt Ltd', 'Livazin M Syrup', 'Can I use Livazin M Syrup for treating acute asthma attacks in my child?', 'Livazin M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(24167, 'Livazin Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin Tablet', 'Is Livazin Tablet a steroid? What is it used for?', 'No, Livazin Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24168, 'Livazin Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin Tablet', 'Does Livazin Tablet make you tired and drowsy?', 'Yes, Livazin Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24169, 'Livazin Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin Tablet', 'How long does it take for Livazin Tablet to work?', 'Livazin Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24170, 'Livazin Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin Tablet', 'Can I take Livazin Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livazin Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24171, 'Livazin Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin Tablet', 'Is it safe to take Livazin Tablet for a long time?', 'Livazin Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livazin Tablet for only as long as you need it.'),
(24172, 'Livazin Tablet', 'Varmed Pharma Pvt Ltd', 'Livazin Tablet', 'For how long should I continue Livazin Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livazin Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livazin Tablet'),
(24173, 'Livazza 300mg Tablet', 'Sachio Pharma Bangalore Private Limited', 'Livazza 300mg Tablet', 'When should I take Livazza 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livazza 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24174, 'Livazza 300mg Tablet', 'Sachio Pharma Bangalore Private Limited', 'Livazza 300mg Tablet', 'Is Livazza 300mg Tablet safe?', 'Livazza 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24175, 'Livazza 300mg Tablet', 'Sachio Pharma Bangalore Private Limited', 'Livazza 300mg Tablet', 'How does Livazza 300mg Tablet help the liver?', 'Livazza 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24176, 'Livazza 300mg Tablet', 'Sachio Pharma Bangalore Private Limited', 'Livazza 300mg Tablet', 'Does Livazza 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livazza 300mg Tablet, but it is not common. The use of Livazza 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24177, 'Livazza 300mg Tablet', 'Sachio Pharma Bangalore Private Limited', 'Livazza 300mg Tablet', 'What should I avoid while taking Livazza 300mg Tablet?', 'While taking Livazza 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livazza 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livazza 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livazza 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livazza 300mg Tablet.'),
(24178, 'Livbax 300mg Tablet', 'Frisco Hill Pharmacia', 'Livbax 300mg Tablet', 'When should I take Livbax 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livbax 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24179, 'Livbax 300mg Tablet', 'Frisco Hill Pharmacia', 'Livbax 300mg Tablet', 'Is Livbax 300mg Tablet safe?', 'Livbax 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24180, 'Livbax 300mg Tablet', 'Frisco Hill Pharmacia', 'Livbax 300mg Tablet', 'How does Livbax 300mg Tablet help the liver?', 'Livbax 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24181, 'Livbax 300mg Tablet', 'Frisco Hill Pharmacia', 'Livbax 300mg Tablet', 'Does Livbax 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livbax 300mg Tablet, but it is not common. The use of Livbax 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24182, 'Livbax 300mg Tablet', 'Frisco Hill Pharmacia', 'Livbax 300mg Tablet', 'What should I avoid while taking Livbax 300mg Tablet?', 'While taking Livbax 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livbax 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livbax 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livbax 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livbax 300mg Tablet.'),
(24183, 'Livbel 5gm Injection', 'Blubell Pharma', 'Livbel 5gm Injection', 'Is it ok to take alcohol when taking Livbel 5gm Injection?', 'No, it is not recommended to take alcohol when on Livbel 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24184, 'Livbel 5gm Injection', 'Blubell Pharma', 'Livbel 5gm Injection', 'What is Livbel 5gm Injection?', 'Livbel 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24185, 'Livbel 5gm Injection', 'Blubell Pharma', 'Livbel 5gm Injection', 'What is the use of Livbel 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livbel 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24186, 'Livbel 5gm Injection', 'Blubell Pharma', 'Livbel 5gm Injection', 'How is Livbel 5gm Injection given?', 'Livbel 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24187, 'Livbend Plus 6mg/400mg Tablet', 'Neoliva Formulations', 'Livbend Plus 6mg/400mg Tablet', 'Can Livbend Plus 6mg/400mg Tablet be stopped when my symptoms are gone?', 'No, Livbend Plus 6mg/400mg Tablet should be continued as advised by the doctor. If you experience any problems due to the consumption of Livbend Plus 6mg/400mg Tablet, consult the doctor for re-evaluation. Do not stop even you feel better. Stopping Livbend Plus 6mg/400mg Tablet early may make the infection come back and harder to treat.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24188, 'Livbend Plus 6mg/400mg Tablet', 'Neoliva Formulations', 'Livbend Plus 6mg/400mg Tablet', 'Can the use of Livbend Plus 6mg/400mg Tablet cause diarrhea?', 'Yes, the use ofLivbend Plus 6mg/400mg Tablet can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(24189, 'Livbend Plus 6mg/400mg Tablet', 'Neoliva Formulations', 'Livbend Plus 6mg/400mg Tablet', 'Will Livbend Plus 6mg/400mg Tablet be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If you do not find any relief in your symptoms even after taking the recommended doses, please consult your doctor.'),
(24190, 'Livbend Plus 6mg/400mg Tablet', 'Neoliva Formulations', 'Livbend Plus 6mg/400mg Tablet', 'What are the instructions for storage and disposal of Livbend Plus 6mg/400mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24191, 'Livbend Plus Oral Suspension', 'Neoliva Formulations', 'Livbend Plus Oral Suspension', 'Can Livbend Plus Oral Suspension be stopped when my symptoms are gone?', 'No, Livbend Plus Oral Suspension should be continued as advised by the doctor. If you experience any problems due to the consumption of Livbend Plus Oral Suspension, consult the doctor for re-evaluation. Do not stop even you feel better. Stopping Livbend Plus Oral Suspension early may make the infection come back and harder to treat.'),
(24192, 'Livbend Plus Oral Suspension', 'Neoliva Formulations', 'Livbend Plus Oral Suspension', 'Can the use of Livbend Plus Oral Suspension cause diarrhea?', 'Yes, the use ofLivbend Plus Oral Suspension can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(24193, 'Livbend Plus Oral Suspension', 'Neoliva Formulations', 'Livbend Plus Oral Suspension', 'Will Livbend Plus Oral Suspension be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If you do not find any relief in your symptoms even after taking the recommended doses, please consult your doctor.'),
(24194, 'Livbend Plus Oral Suspension', 'Neoliva Formulations', 'Livbend Plus Oral Suspension', 'What are the instructions for storage and disposal of Livbend Plus Oral Suspension?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24195, 'Livbid 500mg Tablet', 'Scoshia Remedy Inc', 'Livbid 500mg Tablet', 'Is Livbid 500mg Tablet safe?', 'Livbid 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24196, 'Livbid 500mg Tablet', 'Scoshia Remedy Inc', 'Livbid 500mg Tablet', 'What if I forget to take a dose of Livbid 500mg Tablet?', 'If you forget a dose of Livbid 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24197, 'Livbid 500mg Tablet', 'Scoshia Remedy Inc', 'Livbid 500mg Tablet', 'Can the use of Livbid 500mg Tablet cause diarrhea?', 'Yes, the use of Livbid 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24198, 'Livbid 500mg Tablet', 'Scoshia Remedy Inc', 'Livbid 500mg Tablet', 'Can I stop taking Livbid 500mg Tablet when I feel better?', 'No, do not stop taking Livbid 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livbid 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livbid 500mg Tablet in the dose and duration advised by the doctor.'),
(24199, 'Livbid 500mg Tablet', 'Scoshia Remedy Inc', 'Livbid 500mg Tablet', 'Can the use of Livbid 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livbid 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livbid 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24200, 'Livbile 150mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 150mg Tablet', 'When should I take Livbile 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livbile 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24201, 'Livbile 150mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 150mg Tablet', 'Is Livbile 150mg Tablet safe?', 'Livbile 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24202, 'Livbile 150mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 150mg Tablet', 'How does Livbile 150mg Tablet help the liver?', 'Livbile 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24203, 'Livbile 150mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 150mg Tablet', 'Does Livbile 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livbile 150mg Tablet, but it is not common. The use of Livbile 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24204, 'Livbile 150mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 150mg Tablet', 'What should I avoid while taking Livbile 150mg Tablet?', 'While taking Livbile 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livbile 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livbile 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Livbile 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livbile 150mg Tablet.'),
(24205, 'Livbile 300mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 300mg Tablet', 'When should I take Livbile 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livbile 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24206, 'Livbile 300mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 300mg Tablet', 'Is Livbile 300mg Tablet safe?', 'Livbile 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24207, 'Livbile 300mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 300mg Tablet', 'How does Livbile 300mg Tablet help the liver?', 'Livbile 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24208, 'Livbile 300mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 300mg Tablet', 'Does Livbile 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livbile 300mg Tablet, but it is not common. The use of Livbile 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24209, 'Livbile 300mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 300mg Tablet', 'What should I avoid while taking Livbile 300mg Tablet?', 'While taking Livbile 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livbile 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livbile 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livbile 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livbile 300mg Tablet.'),
(24210, 'Livbile 450mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 450mg Tablet', 'When should I take Livbile 450mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livbile 450mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24211, 'Livbile 450mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 450mg Tablet', 'Is Livbile 450mg Tablet safe?', 'Livbile 450mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24212, 'Livbile 450mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 450mg Tablet', 'How does Livbile 450mg Tablet help the liver?', 'Livbile 450mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24213, 'Livbile 450mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 450mg Tablet', 'Does Livbile 450mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livbile 450mg Tablet, but it is not common. The use of Livbile 450mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24214, 'Livbile 450mg Tablet', 'Jrb Lifesciences Private Limited', 'Livbile 450mg Tablet', 'What should I avoid while taking Livbile 450mg Tablet?', 'While taking Livbile 450mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livbile 450mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livbile 450mg Tablet. So, ask your doctor about the time gap that should be maintained between Livbile 450mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livbile 450mg Tablet.'),
(24215, 'Livbro 500mg Tablet', 'Abron Healthcare', 'Livbro 500mg Tablet', 'Is Livbro 500mg Tablet safe?', 'Livbro 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24216, 'Livbro 500mg Tablet', 'Abron Healthcare', 'Livbro 500mg Tablet', 'What if I forget to take a dose of Livbro 500mg Tablet?', 'If you forget a dose of Livbro 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24217, 'Livbro 500mg Tablet', 'Abron Healthcare', 'Livbro 500mg Tablet', 'Can the use of Livbro 500mg Tablet cause diarrhea?', 'Yes, the use of Livbro 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24218, 'Livbro 500mg Tablet', 'Abron Healthcare', 'Livbro 500mg Tablet', 'Can I stop taking Livbro 500mg Tablet when I feel better?', 'No, do not stop taking Livbro 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livbro 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livbro 500mg Tablet in the dose and duration advised by the doctor.'),
(24219, 'Livbro 500mg Tablet', 'Abron Healthcare', 'Livbro 500mg Tablet', 'Can the use of Livbro 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livbro 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livbro 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24220, 'Livcare Syrup', 'Sun Pharmaceutical Industries Ltd', 'Livcare Syrup', 'What is Livcare Syrup?', 'Livcare Syrup is used in the treatment of indigestion.'),
(24221, 'Livcare Syrup', 'Sun Pharmaceutical Industries Ltd', 'Livcare Syrup', 'Is it safe to use Livcare Syrup?', 'Yes, Livcare Syrup is safe for most of the patients. However, in some patients it may cause some unwanted side effects like nausea, stomach pain, bloating, diarrhea and constipation.'),
(24222, 'Livcare Syrup', 'Sun Pharmaceutical Industries Ltd', 'Livcare Syrup', 'Can the use of Livcare Syrup cause nausea and vomiting?', 'Yes, the use of Livcare Syrup can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(24223, 'Livcast 10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 10mg Tablet', 'Is Livcast 10mg Tablet a steroid? What is it used for?', 'No, Livcast 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24224, 'Livcast 10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 10mg Tablet', 'Does Livcast 10mg Tablet make you tired and drowsy?', 'Yes, Livcast 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24225, 'Livcast 10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 10mg Tablet', 'How long does it take for Livcast 10mg Tablet to work?', 'Livcast 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24226, 'Livcast 10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 10mg Tablet', 'Can I take Livcast 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livcast 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24227, 'Livcast 10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 10mg Tablet', 'Is it safe to take Livcast 10mg Tablet for a long time?', 'Livcast 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livcast 10mg Tablet for only as long as you need it.'),
(24228, 'Livcast 10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 10mg Tablet', 'For how long should I continue Livcast 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livcast 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livcast 10mg Tablet'),
(24229, 'Livcast 5mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 5mg Tablet', 'Is Livcast 5mg Tablet a steroid? What is it used for?', 'No, Livcast 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24230, 'Livcast 5mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 5mg Tablet', 'Does Livcast 5mg Tablet make you tired and drowsy?', 'Yes, Livcast 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24231, 'Livcast 5mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 5mg Tablet', 'How long does it take for Livcast 5mg Tablet to work?', 'Livcast 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24232, 'Livcast 5mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 5mg Tablet', 'Can I take Livcast 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livcast 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24233, 'Livcast 5mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 5mg Tablet', 'Is it safe to take Livcast 5mg Tablet for a long time?', 'Livcast 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livcast 5mg Tablet for only as long as you need it.'),
(24234, 'Livcast 5mg Tablet', 'Riyadh Pharmaceutical', 'Livcast 5mg Tablet', 'For how long should I continue Livcast 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livcast 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livcast 5mg Tablet'),
(24235, 'Livcast Cold 2mg/325mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast Cold 2mg/325mg/10mg Tablet', 'What is Livcast Cold 2mg/325mg/10mg Tablet?', 'Livcast Cold 2mg/325mg/10mg Tablet is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(24236, 'Livcast Cold 2mg/325mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast Cold 2mg/325mg/10mg Tablet', 'Is it safe to use Livcast Cold 2mg/325mg/10mg Tablet?', 'Yes, Livcast Cold 2mg/325mg/10mg Tablet is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(24237, 'Livcast Cold 2mg/325mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast Cold 2mg/325mg/10mg Tablet', 'Can I stop taking Livcast Cold 2mg/325mg/10mg Tablet when I am relieved of my symptoms?', 'Livcast Cold 2mg/325mg/10mg Tablet is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(24238, 'Livcast Cold 2mg/325mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast Cold 2mg/325mg/10mg Tablet', 'Can the use of Livcast Cold 2mg/325mg/10mg Tablet cause dizziness?', 'Yes, the use of Livcast Cold 2mg/325mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(24239, 'Livcast Cold 2mg/325mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast Cold 2mg/325mg/10mg Tablet', 'Can the use of Livcast Cold 2mg/325mg/10mg Tablet cause damage to liver?', 'Livcast Cold 2mg/325mg/10mg Tablet is usually safe when taken according to the recommended dose. However, an overdose of Livcast Cold 2mg/325mg/10mg Tablet can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(24240, 'Livcast Cold 2mg/325mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast Cold 2mg/325mg/10mg Tablet', 'What is the recommended storage condition for the Livcast Cold 2mg/325mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24241, 'Livcast M 5mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast M 5mg/10mg Tablet', 'Q. What is Livcast M 5mg/10mg Tablet?', 'Livcast M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24242, 'Livcast M 5mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast M 5mg/10mg Tablet', 'Q. Can the use of Livcast M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livcast M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24243, 'Livcast M 5mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast M 5mg/10mg Tablet', 'Q. Can Livcast M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livcast M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24244, 'Livcast M 5mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast M 5mg/10mg Tablet', 'Q. Can the use of Livcast M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livcast M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24245, 'Livcast M 5mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast M 5mg/10mg Tablet', 'Q. Can I drink alcohol while taking Livcast M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livcast M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livcast M 5mg/10mg Tablet.'),
(24246, 'Livcast M 5mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast M 5mg/10mg Tablet', 'Q. Will Livcast M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livcast M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24247, 'Livcast M 5mg/10mg Tablet', 'Riyadh Pharmaceutical', 'Livcast M 5mg/10mg Tablet', 'Q. What are the instructions for storage and disposal of Livcast M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24248, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(24249, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'Can I decrease the dose of Livcast M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(24250, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'How should Livcast M Syrup be stored?', 'Livcast M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24251, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'Can Livcast M Syrup make my child sleepy?', 'Livcast M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(24252, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livcast M Syrup?', 'No, don’t start Livcast M Syrup without speaking to your child’s doctor. Moreover, Livcast M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(24253, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livcast M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(24254, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livcast M Syrup to my child?', 'Some studies show that Livcast M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(24255, 'Livcast M Syrup', 'Riyadh Pharmaceutical', 'Livcast M Syrup', 'Can I use Livcast M Syrup for treating acute asthma attacks in my child?', 'Livcast M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(24256, 'Livcee 5mg Tablet', 'Medrid Life Sciences', 'Livcee 5mg Tablet', 'Is Livcee 5mg Tablet a steroid? What is it used for?', 'No, Livcee 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24257, 'Livcee 5mg Tablet', 'Medrid Life Sciences', 'Livcee 5mg Tablet', 'Does Livcee 5mg Tablet make you tired and drowsy?', 'Yes, Livcee 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24258, 'Livcee 5mg Tablet', 'Medrid Life Sciences', 'Livcee 5mg Tablet', 'How long does it take for Livcee 5mg Tablet to work?', 'Livcee 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24259, 'Livcee 5mg Tablet', 'Medrid Life Sciences', 'Livcee 5mg Tablet', 'Can I take Livcee 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livcee 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24260, 'Livcee 5mg Tablet', 'Medrid Life Sciences', 'Livcee 5mg Tablet', 'Is it safe to take Livcee 5mg Tablet for a long time?', 'Livcee 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livcee 5mg Tablet for only as long as you need it.'),
(24261, 'Livcee 5mg Tablet', 'Medrid Life Sciences', 'Livcee 5mg Tablet', 'For how long should I continue Livcee 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livcee 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livcee 5mg Tablet'),
(24262, 'Livcee M 5mg/10mg Tablet', 'Medrid Life Sciences', 'Livcee M 5mg/10mg Tablet', 'What is Livcee M 5mg/10mg Tablet?', 'Livcee M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24263, 'Livcee M 5mg/10mg Tablet', 'Medrid Life Sciences', 'Livcee M 5mg/10mg Tablet', 'Can the use of Livcee M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livcee M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24264, 'Livcee M 5mg/10mg Tablet', 'Medrid Life Sciences', 'Livcee M 5mg/10mg Tablet', 'Can Livcee M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livcee M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24265, 'Livcee M 5mg/10mg Tablet', 'Medrid Life Sciences', 'Livcee M 5mg/10mg Tablet', 'Can the use of Livcee M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livcee M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24266, 'Livcee M 5mg/10mg Tablet', 'Medrid Life Sciences', 'Livcee M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livcee M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livcee M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livcee M 5mg/10mg Tablet.'),
(24267, 'Livcee M 5mg/10mg Tablet', 'Medrid Life Sciences', 'Livcee M 5mg/10mg Tablet', 'Will Livcee M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livcee M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24268, 'Livcee M 5mg/10mg Tablet', 'Medrid Life Sciences', 'Livcee M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livcee M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24269, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'Q. My child is restless and unable to sleep properly at night. Can I give Livcet 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(24270, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'Q. Can other medicines be given at the same time as Livcet 2.5mg Syrup?', 'Livcet 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livcet 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(24271, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'Q. How much Livcet 2.5mg Syrup should I give to my child?', 'Livcet 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(24272, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'Q. What if I give too much of Livcet 2.5mg Syrup by mistake?', 'Although Livcet 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(24273, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'Q. How should Livcet 2.5mg Syrup be stored?', 'Store Livcet 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24274, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'Q. When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(24275, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'My child is restless and unable to sleep properly at night. Can I give Livcet 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(24276, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'Can other medicines be given at the same time as Livcet 2.5mg Syrup?', 'Livcet 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livcet 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(24277, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'How much Livcet 2.5mg Syrup should I give to my child?', 'Livcet 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(24278, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'What if I give too much of Livcet 2.5mg Syrup by mistake?', 'Although Livcet 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(24279, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'How should Livcet 2.5mg Syrup be stored?', 'Store Livcet 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24280, 'Livcet 2.5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 2.5mg Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(24281, 'Liv-Cet 5 Tablet', 'Morepen Laboratories Ltd', 'Liv-Cet 5 Tablet', 'Is Liv-Cet 5 Tablet a steroid? What is it used for?', 'No, Liv-Cet 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24282, 'Liv-Cet 5 Tablet', 'Morepen Laboratories Ltd', 'Liv-Cet 5 Tablet', 'Does Liv-Cet 5 Tablet make you tired and drowsy?', 'Yes, Liv-Cet 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24283, 'Liv-Cet 5 Tablet', 'Morepen Laboratories Ltd', 'Liv-Cet 5 Tablet', 'How long does it take for Liv-Cet 5 Tablet to work?', 'Liv-Cet 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24284, 'Liv-Cet 5 Tablet', 'Morepen Laboratories Ltd', 'Liv-Cet 5 Tablet', 'Can I take Liv-Cet 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liv-Cet 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24285, 'Liv-Cet 5 Tablet', 'Morepen Laboratories Ltd', 'Liv-Cet 5 Tablet', 'Is it safe to take Liv-Cet 5 Tablet for a long time?', 'Liv-Cet 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liv-Cet 5 Tablet for only as long as you need it.'),
(24286, 'Liv-Cet 5 Tablet', 'Morepen Laboratories Ltd', 'Liv-Cet 5 Tablet', 'For how long should I continue Liv-Cet 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liv-Cet 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liv-Cet 5 Tablet'),
(24287, 'Livcet 5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 5mg Syrup', 'Q. Is Livcet 5mg Syrup a steroid? What is it used for?', 'No, Livcet 5mg Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24288, 'Livcet 5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 5mg Syrup', 'Q. Does Livcet 5mg Syrup make you tired and drowsy?', 'Yes, Livcet 5mg Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24289, 'Livcet 5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 5mg Syrup', 'Q. How long does it take for Livcet 5mg Syrup to work?', 'Livcet 5mg Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24290, 'Livcet 5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 5mg Syrup', 'Q. Can I take Livcet 5mg Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livcet 5mg Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24291, 'Livcet 5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 5mg Syrup', 'Q. Is it safe to take Livcet 5mg Syrup for a long time?', 'Livcet 5mg Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livcet 5mg Syrup for only as long as you need it.'),
(24292, 'Livcet 5mg Syrup', 'Morepen Laboratories Ltd', 'Livcet 5mg Syrup', 'Q. For how long should I continue Livcet 5mg Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livcet 5mg Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Livcet 5mg Syrup');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24293, 'Livcet 5mg Tablet', 'Alardius Healthcare', 'Livcet 5mg Tablet (Alardius Healthcare)', 'Is Livcet 5mg Tablet a steroid? What is it used for?', 'No, Livcet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24294, 'Livcet 5mg Tablet', 'Alardius Healthcare', 'Livcet 5mg Tablet (Alardius Healthcare)', 'Does Livcet 5mg Tablet make you tired and drowsy?', 'Yes, Livcet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24295, 'Livcet 5mg Tablet', 'Alardius Healthcare', 'Livcet 5mg Tablet (Alardius Healthcare)', 'How long does it take for Livcet 5mg Tablet to work?', 'Livcet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24296, 'Livcet 5mg Tablet', 'Alardius Healthcare', 'Livcet 5mg Tablet (Alardius Healthcare)', 'Can I take Livcet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livcet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24297, 'Livcet 5mg Tablet', 'Alardius Healthcare', 'Livcet 5mg Tablet (Alardius Healthcare)', 'Is it safe to take Livcet 5mg Tablet for a long time?', 'Livcet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livcet 5mg Tablet for only as long as you need it.'),
(24298, 'Livcet 5mg Tablet', 'Alardius Healthcare', 'Livcet 5mg Tablet (Alardius Healthcare)', 'For how long should I continue Livcet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livcet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livcet 5mg Tablet'),
(24299, 'Livcet 5mg Tablet', 'Morepen Laboratories Ltd', 'Livcet 5mg Tablet (Morepen Laboratories Ltd)', 'Is Livcet 5mg Tablet a steroid? What is it used for?', 'No, Livcet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24300, 'Livcet 5mg Tablet', 'Morepen Laboratories Ltd', 'Livcet 5mg Tablet (Morepen Laboratories Ltd)', 'Does Livcet 5mg Tablet make you tired and drowsy?', 'Yes, Livcet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24301, 'Livcet 5mg Tablet', 'Morepen Laboratories Ltd', 'Livcet 5mg Tablet (Morepen Laboratories Ltd)', 'How long does it take for Livcet 5mg Tablet to work?', 'Livcet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24302, 'Livcet 5mg Tablet', 'Morepen Laboratories Ltd', 'Livcet 5mg Tablet (Morepen Laboratories Ltd)', 'Can I take Livcet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livcet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24303, 'Livcet 5mg Tablet', 'Morepen Laboratories Ltd', 'Livcet 5mg Tablet (Morepen Laboratories Ltd)', 'Is it safe to take Livcet 5mg Tablet for a long time?', 'Livcet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livcet 5mg Tablet for only as long as you need it.'),
(24304, 'Livcet 5mg Tablet', 'Morepen Laboratories Ltd', 'Livcet 5mg Tablet (Morepen Laboratories Ltd)', 'For how long should I continue Livcet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livcet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livcet 5mg Tablet'),
(24305, 'Livcet M 5mg/10mg Tablet', 'Alardius Healthcare', 'Livcet M 5mg/10mg Tablet', 'What is Livcet M 5mg/10mg Tablet?', 'Livcet M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24306, 'Livcet M 5mg/10mg Tablet', 'Alardius Healthcare', 'Livcet M 5mg/10mg Tablet', 'Can the use of Livcet M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livcet M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24307, 'Livcet M 5mg/10mg Tablet', 'Alardius Healthcare', 'Livcet M 5mg/10mg Tablet', 'Can Livcet M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livcet M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24308, 'Livcet M 5mg/10mg Tablet', 'Alardius Healthcare', 'Livcet M 5mg/10mg Tablet', 'Can the use of Livcet M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livcet M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24309, 'Livcet M 5mg/10mg Tablet', 'Alardius Healthcare', 'Livcet M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livcet M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livcet M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livcet M 5mg/10mg Tablet.'),
(24310, 'Livcet M 5mg/10mg Tablet', 'Alardius Healthcare', 'Livcet M 5mg/10mg Tablet', 'Will Livcet M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livcet M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24311, 'Livcet M 5mg/10mg Tablet', 'Alardius Healthcare', 'Livcet M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livcet M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24312, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'Can the use of Livcetam 1000mg Tablet cause sleepiness?', 'Yes, Livcetam 1000mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24313, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'Will the use of Livcetam 1000mg Tablet affect my fertility?', 'Livcetam 1000mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24314, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'I have gained weight since I started taking Livcetam 1000mg Tablet. Is it because of Livcetam 1000mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livcetam 1000mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24315, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'How long does Livcetam 1000mg Tablet take to show its effect?', 'Livcetam 1000mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livcetam 1000mg Tablet starts working completely.'),
(24316, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'For how long do I need to take Livcetam 1000mg Tablet?', 'You should continue to take Livcetam 1000mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24317, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'Will I get addicted to Livcetam 1000mg Tablet if I use it for a long time?', 'No, Livcetam 1000mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livcetam 1000mg Tablet. Consult your doctor if you experience any side effects.'),
(24318, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'What symptoms can occur if someone takes an excess of Livcetam 1000mg Tablet?', 'Taking an excess of Livcetam 1000mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24319, 'Livcetam 1000mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 1000mg Tablet', 'How do I come off Livcetam 1000mg Tablet?', 'The dose of Livcetam 1000mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livcetam 1000mg Tablet straight away, even if you have epilepsy.'),
(24320, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'Can the use of Livcetam 500mg Tablet cause sleepiness?', 'Yes, Livcetam 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24321, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'Will the use of Livcetam 500mg Tablet affect my fertility?', 'Livcetam 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24322, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'I have gained weight since I started taking Livcetam 500mg Tablet. Is it because of Livcetam 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livcetam 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24323, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'How long does Livcetam 500mg Tablet take to show its effect?', 'Livcetam 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livcetam 500mg Tablet starts working completely.'),
(24324, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'For how long do I need to take Livcetam 500mg Tablet?', 'You should continue to take Livcetam 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24325, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'Will I get addicted to Livcetam 500mg Tablet if I use it for a long time?', 'No, Livcetam 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livcetam 500mg Tablet. Consult your doctor if you experience any side effects.'),
(24326, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'What symptoms can occur if someone takes an excess of Livcetam 500mg Tablet?', 'Taking an excess of Livcetam 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24327, 'Livcetam 500mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livcetam 500mg Tablet', 'How do I come off Livcetam 500mg Tablet?', 'The dose of Livcetam 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livcetam 500mg Tablet straight away, even if you have epilepsy.'),
(24328, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(24329, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'Can I decrease the dose of Livcet-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(24330, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'How should Livcet-M Syrup be stored?', 'Livcet-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24331, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'Can Livcet-M Syrup make my child sleepy?', 'Livcet-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(24332, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livcet-M Syrup?', 'No, don’t start Livcet-M Syrup without speaking to your child’s doctor. Moreover, Livcet-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(24333, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livcet-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(24334, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livcet-M Syrup to my child?', 'Some studies show that Livcet-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(24335, 'Livcet-M Syrup', 'Livewort Labs Pvt Ltd', 'Livcet-M Syrup', 'Can I use Livcet-M Syrup for treating acute asthma attacks in my child?', 'Livcet-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(24336, 'Livcholic 150 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 150 Tablet', 'Q. When should I take Livcholic 150 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livcholic 150 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24337, 'Livcholic 150 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 150 Tablet', 'Q. Is Livcholic 150 Tablet safe?', 'Livcholic 150 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24338, 'Livcholic 150 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 150 Tablet', 'Q. How does Livcholic 150 Tablet help the liver?', 'Livcholic 150 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24339, 'Livcholic 150 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 150 Tablet', 'Q. Does Livcholic 150 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livcholic 150 Tablet, but it is not common. The use of Livcholic 150 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24340, 'Livcholic 150 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 150 Tablet', 'Q. What should I avoid while taking Livcholic 150 Tablet?', 'While taking Livcholic 150 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livcholic 150 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livcholic 150 Tablet. So, ask your doctor about the time gap that should be maintained between Livcholic 150 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livcholic 150 Tablet.'),
(24341, 'Livcholic 300 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 300 Tablet', 'Q. When should I take Livcholic 300 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livcholic 300 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24342, 'Livcholic 300 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 300 Tablet', 'Q. Is Livcholic 300 Tablet safe?', 'Livcholic 300 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24343, 'Livcholic 300 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 300 Tablet', 'Q. How does Livcholic 300 Tablet help the liver?', 'Livcholic 300 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24344, 'Livcholic 300 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 300 Tablet', 'Q. Does Livcholic 300 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livcholic 300 Tablet, but it is not common. The use of Livcholic 300 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24345, 'Livcholic 300 Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 300 Tablet', 'Q. What should I avoid while taking Livcholic 300 Tablet?', 'While taking Livcholic 300 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livcholic 300 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livcholic 300 Tablet. So, ask your doctor about the time gap that should be maintained between Livcholic 300 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livcholic 300 Tablet.'),
(24346, 'Livcholic 450 SR Capsule', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 450 SR Capsule', 'Q. When should I take Livcholic 450 SR Capsule?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livcholic 450 SR Capsule should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24347, 'Livcholic 450 SR Capsule', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 450 SR Capsule', 'Q. Is Livcholic 450 SR Capsule safe?', 'Livcholic 450 SR Capsule is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24348, 'Livcholic 450 SR Capsule', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 450 SR Capsule', 'Q. How does Livcholic 450 SR Capsule help the liver?', 'Livcholic 450 SR Capsule acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24349, 'Livcholic 450 SR Capsule', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 450 SR Capsule', 'Q. Does Livcholic 450 SR Capsule cause weight gain?', 'Yes, there is a chance of weight gain with Livcholic 450 SR Capsule, but it is not common. The use of Livcholic 450 SR Capsule can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24350, 'Livcholic 450 SR Capsule', 'Zeelab Pharmacy Pvt Ltd', 'Livcholic 450 SR Capsule', 'Q. What should I avoid while taking Livcholic 450 SR Capsule?', 'While taking Livcholic 450 SR Capsule, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livcholic 450 SR Capsule. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livcholic 450 SR Capsule. So, ask your doctor about the time gap that should be maintained between Livcholic 450 SR Capsule and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livcholic 450 SR Capsule.'),
(24351, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'Can the use of Livcitam Tablet cause sleepiness?', 'Yes, Livcitam Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24352, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'Will the use of Livcitam Tablet affect my fertility?', 'Livcitam Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24353, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'I have gained weight since I started taking Livcitam Tablet. Is it because of Livcitam Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livcitam Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24354, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'How long does Livcitam Tablet take to show its effect?', 'Livcitam Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livcitam Tablet starts working completely.'),
(24355, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'For how long do I need to take Livcitam Tablet?', 'You should continue to take Livcitam Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24356, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'Will I get addicted to Livcitam Tablet if I use it for a long time?', 'No, Livcitam Tablet is not habit-forming. No physical or psychological dependence has been reported with Livcitam Tablet. Consult your doctor if you experience any side effects.'),
(24357, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'What symptoms can occur if someone takes an excess of Livcitam Tablet?', 'Taking an excess of Livcitam Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24358, 'Livcitam Tablet', 'Vintek Pharmaceuticals', 'Livcitam Tablet', 'How do I come off Livcitam Tablet?', 'The dose of Livcitam Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livcitam Tablet straight away, even if you have epilepsy.'),
(24359, 'Livcold DS Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold DS Oral Suspension', 'What if  I give too much Livcold DS Oral Suspension by mistake?', 'Prolonged or excess intake of Livcold DS Oral Suspension can put your child at risk of developing serious side effects like seizures, rapid heart rate, /depression, cognition defects, and inability to concentrate. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(24360, 'Livcold DS Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold DS Oral Suspension', 'Can other medicines be given at the same time as Livcold DS Oral Suspension?', 'Livcold DS Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livcold DS Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(24361, 'Livcold DS Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold DS Oral Suspension', 'In what all conditions should I avoid giving Livcold DS Oral Suspension to my child?', 'If your child is suffering from any Cardiovascular disease (hypertension, heart disease), Diabetes mellitus, GI obstruction, increased intraocular pressure, urinary obstruction, or thyroid dysfunction, avoid giving Livcold DS Oral Suspension. Always inform your doctor about your child’s medical history before giving Livcold DS Oral Suspension.'),
(24362, 'Livcold DS Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold DS Oral Suspension', 'My child has a cough and fever. Can I give him two different cough and fever medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by the doctor. This is because both the medicines could have the same ingredients and taking them together would cause an overdose and could result in serious implications on your child. Always consult your child’s doctor before giving any medicine to your child.'),
(24363, 'Livcold DS Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold DS Oral Suspension', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines specifically formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before use in your child. Give the medicine to your child in the prescribed dose specifically. It is best to take your child to the doctor if the symptoms are bothersome or fail to improve even after treatment.'),
(24364, 'Livcold DS Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold DS Oral Suspension', 'Can Livcold DS Oral Suspension make my child sleepy?', 'Livcold DS Oral Suspension may cause mild drowsiness effect, making your child feel sleepy. So, be cautious and never give this medicine to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia. It’s always best to consult your child’s doctor before giving this medicine to your child.'),
(24365, 'Livcold DS Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold DS Oral Suspension', 'How can I store Livcold DS Oral Suspension?', 'Livcold DS Oral Suspension should be stored at room temperature,  in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24366, 'Livcold Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold Oral Suspension', 'What is Livcold Oral Suspension?', 'Livcold Oral Suspension is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(24367, 'Livcold Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold Oral Suspension', 'Is it safe to use Livcold Oral Suspension?', 'Yes, Livcold Oral Suspension is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(24368, 'Livcold Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold Oral Suspension', 'Can I stop taking Livcold Oral Suspension when I am relieved of my symptoms?', 'Livcold Oral Suspension is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(24369, 'Livcold Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold Oral Suspension', 'Can the use of Livcold Oral Suspension cause dizziness?', 'Yes, the use of Livcold Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(24370, 'Livcold Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold Oral Suspension', 'Can the use of Livcold Oral Suspension cause damage to liver?', 'Livcold Oral Suspension is usually safe when taken according to the recommended dose. However, an overdose of Livcold Oral Suspension can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(24371, 'Livcold Oral Suspension', 'Uniblue Healthcare Pvt. Ltd', 'Livcold Oral Suspension', 'What is the recommended storage condition for the Livcold Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24372, 'Livcon 300mg Tablet', 'Pharmacon Lifesciences Pvt. Ltd.', 'Livcon 300mg Tablet', 'When should I take Livcon 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livcon 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24373, 'Livcon 300mg Tablet', 'Pharmacon Lifesciences Pvt. Ltd.', 'Livcon 300mg Tablet', 'Is Livcon 300mg Tablet safe?', 'Livcon 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24374, 'Livcon 300mg Tablet', 'Pharmacon Lifesciences Pvt. Ltd.', 'Livcon 300mg Tablet', 'How does Livcon 300mg Tablet help the liver?', 'Livcon 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24375, 'Livcon 300mg Tablet', 'Pharmacon Lifesciences Pvt. Ltd.', 'Livcon 300mg Tablet', 'Does Livcon 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livcon 300mg Tablet, but it is not common. The use of Livcon 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24376, 'Livcon 300mg Tablet', 'Pharmacon Lifesciences Pvt. Ltd.', 'Livcon 300mg Tablet', 'What should I avoid while taking Livcon 300mg Tablet?', 'While taking Livcon 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livcon 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livcon 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livcon 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livcon 300mg Tablet.'),
(24377, 'Livday 5mg Tablet', 'Radico Remedies', 'Livday 5mg Tablet', 'Is Livday 5mg Tablet a steroid? What is it used for?', 'No, Livday 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24378, 'Livday 5mg Tablet', 'Radico Remedies', 'Livday 5mg Tablet', 'Does Livday 5mg Tablet make you tired and drowsy?', 'Yes, Livday 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24379, 'Livday 5mg Tablet', 'Radico Remedies', 'Livday 5mg Tablet', 'How long does it take for Livday 5mg Tablet to work?', 'Livday 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24380, 'Livday 5mg Tablet', 'Radico Remedies', 'Livday 5mg Tablet', 'Can I take Livday 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livday 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24381, 'Livday 5mg Tablet', 'Radico Remedies', 'Livday 5mg Tablet', 'Is it safe to take Livday 5mg Tablet for a long time?', 'Livday 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livday 5mg Tablet for only as long as you need it.'),
(24382, 'Livday 5mg Tablet', 'Radico Remedies', 'Livday 5mg Tablet', 'For how long should I continue Livday 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livday 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livday 5mg Tablet'),
(24383, 'Livdef 6mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Livdef 6mg Tablet', 'Is Livdef 6mg Tablet a steroid?', 'Yes, Livdef 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Livdef 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(24384, 'Livdef 6mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Livdef 6mg Tablet', 'What is Livdef 6mg Tablet used for?', 'Livdef 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(24385, 'Livdef 6mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Livdef 6mg Tablet', 'How does Livdef 6mg Tablet work?', 'Livdef 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(24386, 'Livdef 6mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Livdef 6mg Tablet', 'Is Livdef 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Livdef 6mg Tablet has a similar effect as that of prednisone. Moreover, Livdef 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(24387, 'Livdef 6mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Livdef 6mg Tablet', 'Is Livdef 6mg Tablet a painkiller?', 'No, Livdef 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(24388, 'Livdef 6mg Tablet', 'DR. LBR Medi Care & Research Private Limited', 'Livdef 6mg Tablet', 'Can I take Livdef 6mg Tablet with Tamsulosin?', 'Yes, Livdef 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(24389, 'Livdol 150mg Tablet', 'Lexus Organics', 'Livdol 150mg Tablet', 'When should I take Livdol 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livdol 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24390, 'Livdol 150mg Tablet', 'Lexus Organics', 'Livdol 150mg Tablet', 'Is Livdol 150mg Tablet safe?', 'Livdol 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24391, 'Livdol 150mg Tablet', 'Lexus Organics', 'Livdol 150mg Tablet', 'How does Livdol 150mg Tablet help the liver?', 'Livdol 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24392, 'Livdol 150mg Tablet', 'Lexus Organics', 'Livdol 150mg Tablet', 'Does Livdol 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livdol 150mg Tablet, but it is not common. The use of Livdol 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24393, 'Livdol 150mg Tablet', 'Lexus Organics', 'Livdol 150mg Tablet', 'What should I avoid while taking Livdol 150mg Tablet?', 'While taking Livdol 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livdol 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livdol 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Livdol 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livdol 150mg Tablet.'),
(24394, 'Livdol 300mg Tablet', 'Lexus Organics', 'Livdol 300mg Tablet', 'When should I take Livdol 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livdol 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24395, 'Livdol 300mg Tablet', 'Lexus Organics', 'Livdol 300mg Tablet', 'Is Livdol 300mg Tablet safe?', 'Livdol 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24396, 'Livdol 300mg Tablet', 'Lexus Organics', 'Livdol 300mg Tablet', 'How does Livdol 300mg Tablet help the liver?', 'Livdol 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24397, 'Livdol 300mg Tablet', 'Lexus Organics', 'Livdol 300mg Tablet', 'Does Livdol 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livdol 300mg Tablet, but it is not common. The use of Livdol 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24398, 'Livdol 300mg Tablet', 'Lexus Organics', 'Livdol 300mg Tablet', 'What should I avoid while taking Livdol 300mg Tablet?', 'While taking Livdol 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livdol 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livdol 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livdol 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livdol 300mg Tablet.'),
(24399, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'Is Livdox 100mg Dry Syrup safe to use?', 'Livdox 100mg Dry Syrup is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(24400, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'Can the use of Livdox 100mg Dry Syrup cause diarrhea?', 'Yes, the use of Livdox 100mg Dry Syrup can cause diarrhea. Livdox 100mg Dry Syrup is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(24401, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'Is Livdox 100mg Dry Syrup an antibiotic?', 'Yes, Livdox 100mg Dry Syrup is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(24402, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'Can Livdox 100mg Dry Syrup cause constipation?', 'Yes, Livdox 100mg Dry Syrup may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(24403, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'Can I stop taking Livdox 100mg Dry Syrup when my symptoms are relieved or when I feel better?', 'No, do not stop taking Livdox 100mg Dry Syrup before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(24404, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'How long does Livdox 100mg Dry Syrup take to work?', 'Usually, Livdox 100mg Dry Syrup starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(24405, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'What if I do not get better after using Livdox 100mg Dry Syrup?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(24406, 'Livdox 100mg Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 100mg Dry Syrup', 'Can Livdox 100mg Dry Syrup treat UTI?', 'Yes, Livdox 100mg Dry Syrup may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Livdox 100mg Dry Syrup. It is advisable to take it only if prescribed by a doctor.'),
(24407, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'Is Livdox 200 Tablet DT safe to use?', 'Livdox 200 Tablet DT is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(24408, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'Can the use of Livdox 200 Tablet DT cause diarrhea?', 'Yes, the use of Livdox 200 Tablet DT can cause diarrhea. Livdox 200 Tablet DT is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(24409, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'Is Livdox 200 Tablet DT an antibiotic?', 'Yes, Livdox 200 Tablet DT is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(24410, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'Can Livdox 200 Tablet DT cause constipation?', 'Yes, Livdox 200 Tablet DT may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(24411, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'Can I stop taking Livdox 200 Tablet DT when my symptoms are relieved or when I feel better?', 'No, do not stop taking Livdox 200 Tablet DT before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(24412, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'How long does Livdox 200 Tablet DT take to work?', 'Usually, Livdox 200 Tablet DT starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(24413, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'What if I do not get better after using Livdox 200 Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(24414, 'Livdox 200 Tablet DT', 'Livewort Labs Pvt Ltd', 'Livdox 200 Tablet DT', 'Can Livdox 200 Tablet DT treat UTI?', 'Yes, Livdox 200 Tablet DT may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Livdox 200 Tablet DT. It is advisable to take it only if prescribed by a doctor.'),
(24415, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'What if I give too much of Livdox 50 Dry Syrup by mistake?', 'An extra dose of Livdox 50 Dry Syrup is unlikely to do harm. However, if you think you have given too much of Livdox 50 Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(24416, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'Are there any possible serious side effects of Livdox 50 Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(24417, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'Can other medicines be given at the same time as Livdox 50 Dry Syrup?', 'Livdox 50 Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livdox 50 Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(24418, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'Can I get my child vaccinated while on treatment with Livdox 50 Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(24419, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'Which lab tests may my child undergo while taking Livdox 50 Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(24420, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(24421, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(24422, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(24423, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'Can Livdox 50 Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Livdox 50 Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Livdox 50 Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(24424, 'Livdox 50 Dry Syrup', 'Livewort Labs Pvt Ltd', 'Livdox 50 Dry Syrup', 'Can Livdox 50 Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Livdox 50 Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(24425, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'Can the use of Livece Tam 500mg Tablet cause sleepiness?', 'Yes, Livece Tam 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24426, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'Will the use of Livece Tam 500mg Tablet affect my fertility?', 'Livece Tam 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24427, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'I have gained weight since I started taking Livece Tam 500mg Tablet. Is it because of Livece Tam 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livece Tam 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24428, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'How long does Livece Tam 500mg Tablet take to show its effect?', 'Livece Tam 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livece Tam 500mg Tablet starts working completely.'),
(24429, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'For how long do I need to take Livece Tam 500mg Tablet?', 'You should continue to take Livece Tam 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24430, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'Will I get addicted to Livece Tam 500mg Tablet if I use it for a long time?', 'No, Livece Tam 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livece Tam 500mg Tablet. Consult your doctor if you experience any side effects.'),
(24431, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'What symptoms can occur if someone takes an excess of Livece Tam 500mg Tablet?', 'Taking an excess of Livece Tam 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24432, 'Livece Tam 500mg Tablet', 'Gadin Biotech', 'Livece Tam 500mg Tablet', 'How do I come off Livece Tam 500mg Tablet?', 'The dose of Livece Tam 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livece Tam 500mg Tablet straight away, even if you have epilepsy.'),
(24433, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'Can the use of Livecetam 250mg Tablet cause sleepiness?', 'Yes, Livecetam 250mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24434, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'Will the use of Livecetam 250mg Tablet affect my fertility?', 'Livecetam 250mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24435, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'I have gained weight since I started taking Livecetam 250mg Tablet. Is it because of Livecetam 250mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livecetam 250mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24436, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'How long does Livecetam 250mg Tablet take to show its effect?', 'Livecetam 250mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livecetam 250mg Tablet starts working completely.'),
(24437, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'For how long do I need to take Livecetam 250mg Tablet?', 'You should continue to take Livecetam 250mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24438, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'Will I get addicted to Livecetam 250mg Tablet if I use it for a long time?', 'No, Livecetam 250mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livecetam 250mg Tablet. Consult your doctor if you experience any side effects.'),
(24439, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'What symptoms can occur if someone takes an excess of Livecetam 250mg Tablet?', 'Taking an excess of Livecetam 250mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24440, 'Livecetam 250mg Tablet', 'Garwyn Remedies', 'Livecetam 250mg Tablet', 'How do I come off Livecetam 250mg Tablet?', 'The dose of Livecetam 250mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livecetam 250mg Tablet straight away, even if you have epilepsy.'),
(24441, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'Can the use of Livecetam 500mg Tablet cause sleepiness?', 'Yes, Livecetam 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24442, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'Will the use of Livecetam 500mg Tablet affect my fertility?', 'Livecetam 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24443, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'I have gained weight since I started taking Livecetam 500mg Tablet. Is it because of Livecetam 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livecetam 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24444, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'How long does Livecetam 500mg Tablet take to show its effect?', 'Livecetam 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livecetam 500mg Tablet starts working completely.'),
(24445, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'For how long do I need to take Livecetam 500mg Tablet?', 'You should continue to take Livecetam 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24446, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'Will I get addicted to Livecetam 500mg Tablet if I use it for a long time?', 'No, Livecetam 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livecetam 500mg Tablet. Consult your doctor if you experience any side effects.'),
(24447, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'What symptoms can occur if someone takes an excess of Livecetam 500mg Tablet?', 'Taking an excess of Livecetam 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24448, 'Livecetam 500mg Tablet', 'Garwychem Healthcare', 'Livecetam 500mg Tablet (Garwychem Healthcare)', 'How do I come off Livecetam 500mg Tablet?', 'The dose of Livecetam 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livecetam 500mg Tablet straight away, even if you have epilepsy.'),
(24449, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'Can the use of Livecetam 500mg Tablet cause sleepiness?', 'Yes, Livecetam 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24450, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'Will the use of Livecetam 500mg Tablet affect my fertility?', 'Livecetam 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24451, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'I have gained weight since I started taking Livecetam 500mg Tablet. Is it because of Livecetam 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livecetam 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24452, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'How long does Livecetam 500mg Tablet take to show its effect?', 'Livecetam 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livecetam 500mg Tablet starts working completely.'),
(24453, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'For how long do I need to take Livecetam 500mg Tablet?', 'You should continue to take Livecetam 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24454, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'Will I get addicted to Livecetam 500mg Tablet if I use it for a long time?', 'No, Livecetam 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livecetam 500mg Tablet. Consult your doctor if you experience any side effects.'),
(24455, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'What symptoms can occur if someone takes an excess of Livecetam 500mg Tablet?', 'Taking an excess of Livecetam 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24456, 'Livecetam 500mg Tablet', 'Garwyn Remedies', 'Livecetam 500mg Tablet (Garwyn Remedies)', 'How do I come off Livecetam 500mg Tablet?', 'The dose of Livecetam 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livecetam 500mg Tablet straight away, even if you have epilepsy.'),
(24457, 'Livecs M 5mg/10mg Tablet', 'Ecstasy Healthcare Private Limited', 'Livecs M 5mg/10mg Tablet', 'What is Livecs M 5mg/10mg Tablet?', 'Livecs M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24458, 'Livecs M 5mg/10mg Tablet', 'Ecstasy Healthcare Private Limited', 'Livecs M 5mg/10mg Tablet', 'Can the use of Livecs M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livecs M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24459, 'Livecs M 5mg/10mg Tablet', 'Ecstasy Healthcare Private Limited', 'Livecs M 5mg/10mg Tablet', 'Can Livecs M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livecs M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24460, 'Livecs M 5mg/10mg Tablet', 'Ecstasy Healthcare Private Limited', 'Livecs M 5mg/10mg Tablet', 'Can the use of Livecs M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livecs M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24461, 'Livecs M 5mg/10mg Tablet', 'Ecstasy Healthcare Private Limited', 'Livecs M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livecs M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livecs M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livecs M 5mg/10mg Tablet.'),
(24462, 'Livecs M 5mg/10mg Tablet', 'Ecstasy Healthcare Private Limited', 'Livecs M 5mg/10mg Tablet', 'Will Livecs M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livecs M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24463, 'Livecs M 5mg/10mg Tablet', 'Ecstasy Healthcare Private Limited', 'Livecs M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livecs M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24464, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(24465, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'Can I decrease the dose of Livecs M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(24466, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'How should Livecs M Syrup be stored?', 'Livecs M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24467, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'Can Livecs M Syrup make my child sleepy?', 'Livecs M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(24468, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livecs M Syrup?', 'No, don’t start Livecs M Syrup without speaking to your child’s doctor. Moreover, Livecs M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(24469, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livecs M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(24470, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livecs M Syrup to my child?', 'Some studies show that Livecs M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(24471, 'Livecs M Syrup', 'Ecstasy Healthcare Private Limited', 'Livecs M Syrup', 'Can I use Livecs M Syrup for treating acute asthma attacks in my child?', 'Livecs M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(24472, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'Can the use of Livefem 500mg Tablet cause sleepiness?', 'Yes, Livefem 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24473, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'Will the use of Livefem 500mg Tablet affect my fertility?', 'Livefem 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24474, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'I have gained weight since I started taking Livefem 500mg Tablet. Is it because of Livefem 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livefem 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24475, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'How long does Livefem 500mg Tablet take to show its effect?', 'Livefem 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livefem 500mg Tablet starts working completely.'),
(24476, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'For how long do I need to take Livefem 500mg Tablet?', 'You should continue to take Livefem 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24477, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'Will I get addicted to Livefem 500mg Tablet if I use it for a long time?', 'No, Livefem 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livefem 500mg Tablet. Consult your doctor if you experience any side effects.'),
(24478, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'What symptoms can occur if someone takes an excess of Livefem 500mg Tablet?', 'Taking an excess of Livefem 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24479, 'Livefem 500mg Tablet', 'Femgrace Formulations', 'Livefem 500mg Tablet', 'How do I come off Livefem 500mg Tablet?', 'The dose of Livefem 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livefem 500mg Tablet straight away, even if you have epilepsy.'),
(24480, 'LiveFFlam Mouth Rinse', 'Oncobiotek Drugs Pvt Ltd', 'LiveFFlam Mouth Rinse', 'Is LiveFFlam Mouth Rinse over the counter?', 'No, LiveFFlam Mouth Rinse is not available over-the-counter. It is sold only upon a prescription by a registered medical practitioner'),
(24481, 'LiveFFlam Mouth Rinse', 'Oncobiotek Drugs Pvt Ltd', 'LiveFFlam Mouth Rinse', 'Does benzydamine contain alcohol/penicillin?', 'Yes, benzydamine contains 96% ethanol'),
(24482, 'LiveFFlam Mouth Rinse', 'Oncobiotek Drugs Pvt Ltd', 'LiveFFlam Mouth Rinse', 'Does listerine contain LiveFFlam Mouth Rinse?', 'No, it does not contain LiveFFlam Mouth Rinse.'),
(24483, 'Liveli 12.5mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Liveli 12.5mg Tablet', 'After how many days of taking Liveli 12.5mg Tablet will I start feeling better?', 'You may start to see an improvement in your symptoms after 1-2 weeks of starting the treatment. In case you do not see any improvement, do not stop the medicine and consult your doctor. It may take around 4-6 weeks to see the full benefits of the medicine.'),
(24484, 'Liveli 12.5mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Liveli 12.5mg Tablet', 'I feel that my symptoms have worsened after having started taking Liveli 12.5mg Tablet. Can I stop it on my own or do I need to consult the doctor?', 'No, do not stop taking Liveli 12.5mg Tablet abruptly, without consulting your doctor. This is a common problem with Liveli 12.5mg Tablet that initially you may feel that your symptoms have worsened but the benefits start appearing after 1-2 weeks. If the worsening does not improve even after 1-2 weeks, you must consult your doctor.'),
(24485, 'Liveli 12.5mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Liveli 12.5mg Tablet', 'Can Liveli 12.5mg Tablet affect my sex life?', 'Yes, Liveli 12.5mg Tablet use may affect your sex life. It can cause decreased sexual desire and inability to reach orgasm in both men and women. Additionally, men may even experience abnormal erection and ejaculation.'),
(24486, 'Liveli 12.5mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Liveli 12.5mg Tablet', 'What is the effect of Liveli 12.5mg Tablet on children?', 'Liveli 12.5mg Tablet should not be used in children under 18 years of age. The reason being, patients under 18 have an increased risk of experiencing side effects such as suicidal thoughts, aggression, oppositional behavior and anger when they take Liveli 12.5mg Tablet. If your doctor has prescribed Liveli 12.5mg Tablet for your child and you are worried about these side effects, discuss it with your doctor.'),
(24487, 'Liveli 12.5mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Liveli 12.5mg Tablet', 'I have been taking tamoxifen for breast cancer. Can I take Liveli 12.5mg Tablet with it?', 'No, you should not take Liveli 12.5mg Tablet if you are receiving tamoxifen. Tamoxifen often causes hot flashes (episodes of feeling extremely hot), which can be treated with Liveli 12.5mg Tablet. But Liveli 12.5mg Tablet may reduce the effectiveness of tamoxifen and can lead to recurrence of breast cancer.'),
(24488, 'Liveli 12.5mg Tablet', 'Quality Pharma Products Pvt. Ltd.', 'Liveli 12.5mg Tablet', 'Do I need to be careful while taking Liveli 12.5mg Tablet if I am a diabetic?', 'Yes, you need to be careful while taking this medicine if you are a diabetic. Liveli 12.5mg Tablet may alter your blood sugar levels and your dose of insulin or antidiabetic medicines may need adjustment. Talk to your doctor regarding this and keep a regular check on your blood sugar levels.'),
(24489, 'Liven 500mg Tablet', 'Hosta Labs', 'Liven 500mg Tablet', 'Is Liven 500mg Tablet safe?', 'Liven 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24490, 'Liven 500mg Tablet', 'Hosta Labs', 'Liven 500mg Tablet', 'What if I forget to take a dose of Liven 500mg Tablet?', 'If you forget a dose of Liven 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24491, 'Liven 500mg Tablet', 'Hosta Labs', 'Liven 500mg Tablet', 'Can the use of Liven 500mg Tablet cause diarrhea?', 'Yes, the use of Liven 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24492, 'Liven 500mg Tablet', 'Hosta Labs', 'Liven 500mg Tablet', 'Can I stop taking Liven 500mg Tablet when I feel better?', 'No, do not stop taking Liven 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liven 500mg Tablet too early, the symptoms may return or worsen. Continue taking Liven 500mg Tablet in the dose and duration advised by the doctor.'),
(24493, 'Liven 500mg Tablet', 'Hosta Labs', 'Liven 500mg Tablet', 'Can the use of Liven 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liven 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liven 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24494, 'Livent 5gm Injection', 'Welgenic Pharma', 'Livent 5gm Injection', 'Is it ok to take alcohol when taking Livent 5gm Injection?', 'No, it is not recommended to take alcohol when on Livent 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24495, 'Livent 5gm Injection', 'Welgenic Pharma', 'Livent 5gm Injection', 'What is Livent 5gm Injection?', 'Livent 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24496, 'Livent 5gm Injection', 'Welgenic Pharma', 'Livent 5gm Injection', 'What is the use of Livent 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livent 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24497, 'Livent 5gm Injection', 'Welgenic Pharma', 'Livent 5gm Injection', 'How is Livent 5gm Injection given?', 'Livent 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24498, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'What is Livepan 40 Tablet used for?', 'Livepan 40 Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Livepan 40 Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(24499, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'How long does it take for Livepan 40 Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Livepan 40 Tablet to work properly so you may still have some symptoms during this time.'),
(24500, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'Is a single dose of Livepan 40 Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Livepan 40 Tablet you may get relief with the symptoms. Livepan 40 Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Livepan 40 Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Livepan 40 Tablet regularly for 2 weeks as prescribed.'),
(24501, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'Is Livepan 40 Tablet safe?', 'Yes, Livepan 40 Tablet is relatively safe. Most of the people who take Livepan 40 Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(24502, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'Can I take Livepan 40 Tablet for a long term?', 'Livepan 40 Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Livepan 40 Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Livepan 40 Tablet as advised by your doctor and under their supervision.'),
(24503, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'What are the long term side effects of Livepan 40 Tablet?', 'If Livepan 40 Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(24504, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'What is the best time to take Livepan 40 Tablet?', 'Usually, Livepan 40 Tablet is taken once a day, first thing in the morning. If you take Livepan 40 Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(24505, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'Can I stop taking Livepan 40 Tablet if I feel better?', 'If you have been taking Livepan 40 Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Livepan 40 Tablet.'),
(24506, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'Does Livepan 40 Tablet cause weight gain?', 'Although rare but long-term treatment with Livepan 40 Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(24507, 'Livepan 40 Tablet', 'Aurile Pharma', 'Livepan 40 Tablet', 'Can I take alcohol with Livepan 40 Tablet?', 'No, alcohol intake is not advised with Livepan 40 Tablet. Alcohol itself does not affect the working of Livepan 40 Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24508, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'What is Livepan 40mg Injection used for?', 'Livepan 40mg Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Livepan 40mg Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(24509, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'Can I take antacids along with Livepan 40mg Injection?', 'Yes, you can take antacids along with Livepan 40mg Injection. Take it 2 hours before or after you take Livepan 40mg Injection.'),
(24510, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'How long does it take for Livepan 40mg Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Livepan 40mg Injection to work properly so you may still have some symptoms during this time.'),
(24511, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'Does Livepan 40mg Injection cause weight gain?', 'Although rare but long-term treatment with Livepan 40mg Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(24512, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'Can I take alcohol with Livepan 40mg Injection?', 'No, alcohol intake is not advised with Livepan 40mg Injection. Alcohol itself does not affect the working of Livepan 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(24513, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Livepan 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(24514, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'Can I take Livepan 40mg Injection for a long term?', 'Livepan 40mg Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Livepan 40mg Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Livepan 40mg Injection as advised by your doctor and under their supervision.'),
(24515, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'Are painkillers safe to take along with Livepan 40mg Injection?', 'Yes, it is safe to take painkillers along with Livepan 40mg Injection. Livepan 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Livepan 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(24516, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'Is a single dose of Livepan 40mg Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Livepan 40mg Injection you may get relief with the symptoms. Livepan 40mg Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Livepan 40mg Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Livepan 40mg Injection regularly for 2 weeks as prescribed.'),
(24517, 'Livepan 40mg Injection', 'Alive Healthcare', 'Livepan 40mg Injection', 'What are the long term side effects of Livepan 40mg Injection?', 'If Livepan 40mg Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(24518, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'What is Livepan 40mg Tablet used for?', 'Livepan 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Livepan 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(24519, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'How long does it take for Livepan 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Livepan 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(24520, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'Is a single dose of Livepan 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Livepan 40mg Tablet you may get relief with the symptoms. Livepan 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Livepan 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Livepan 40mg Tablet regularly for 2 weeks as prescribed.'),
(24521, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'Is Livepan 40mg Tablet safe?', 'Yes, Livepan 40mg Tablet is relatively safe. Most of the people who take Livepan 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(24522, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'Can I take Livepan 40mg Tablet for a long term?', 'Livepan 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Livepan 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Livepan 40mg Tablet as advised by your doctor and under their supervision.'),
(24523, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'What are the long term side effects of Livepan 40mg Tablet?', 'If Livepan 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(24524, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'What is the best time to take Livepan 40mg Tablet?', 'Usually, Livepan 40mg Tablet is taken once a day, first thing in the morning. If you take Livepan 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(24525, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'Can I stop taking Livepan 40mg Tablet if I feel better?', 'If you have been taking Livepan 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Livepan 40mg Tablet.'),
(24526, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'Does Livepan 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Livepan 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(24527, 'Livepan 40mg Tablet', 'Alive Healthcare', 'Livepan 40mg Tablet', 'Can I take alcohol with Livepan 40mg Tablet?', 'No, alcohol intake is not advised with Livepan 40mg Tablet. Alcohol itself does not affect the working of Livepan 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(24528, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'What is Livepan-DSR Capsule?', 'Livepan-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(24529, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'Is it safe to use Livepan-DSR Capsule?', 'Livepan-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(24530, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'Are there any specific contraindications associated with the use of Livepan-DSR Capsule?', 'The use of Livepan-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(24531, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'Can the use of Livepan-DSR Capsule cause dry mouth?', 'Yes, the use of Livepan-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(24532, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'Can the use of Livepan-DSR Capsule cause diarrhea?', 'Yes, the use of Livepan-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(24533, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'What are the instructions for storage and disposal of Livepan-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24534, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'What is Livepan-DSR Capsule price?', 'You can get Livepan-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(24535, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'While taking Livepan-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(24536, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'Can I take alcohol while taking Livepan-DSR Capsule?', 'No, alcohol intake is not advised with Livepan-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(24537, 'Livepan-DSR Capsule', 'Mediflower', 'Livepan-DSR Capsule (Mediflower)', 'Can I stop taking Livepan-DSR Capsule if I feel better?', 'If you have been taking Livepan-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(24538, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'What is Livepan-DSR Capsule?', 'Livepan-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(24539, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'Is it safe to use Livepan-DSR Capsule?', 'Livepan-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(24540, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'Are there any specific contraindications associated with the use of Livepan-DSR Capsule?', 'The use of Livepan-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(24541, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'Can the use of Livepan-DSR Capsule cause dry mouth?', 'Yes, the use of Livepan-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(24542, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'Can the use of Livepan-DSR Capsule cause diarrhea?', 'Yes, the use of Livepan-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(24543, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'What are the instructions for storage and disposal of Livepan-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24544, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'What is Livepan-DSR Capsule price?', 'You can get Livepan-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(24545, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'While taking Livepan-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(24546, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'Can I take alcohol while taking Livepan-DSR Capsule?', 'No, alcohol intake is not advised with Livepan-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(24547, 'Livepan-DSR Capsule', 'Aurile Pharma', 'Livepan-DSR Capsule (Aurile Pharma)', 'Can I stop taking Livepan-DSR Capsule if I feel better?', 'If you have been taking Livepan-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(24548, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'What is Liverab 20mg Injection used for?', 'Liverab 20mg Injection is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Liverab 20mg Injection also prevents acidity associated with use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). Liverab 20mg Injection is also helpful as a preanesthetic medication (medicine given just before anesthesia) to reduce the chances of aspiration related complications like lung injury.'),
(24549, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Liverab 20mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. It also helps to cut down on caffeinated drinks such as tea, coffee, and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(24550, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'Does Liverab 20mg Injection cause bone problems?', 'Yes, long-term use of Liverab 20mg Injection can cause thinning of bones, which is called osteoporosis. Liverab 20mg Injection decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(24551, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'What other lifestyle changes should I make to get maximum benefit of Liverab 20mg Injection?', 'You make see better results if you make certain dietary and lifestyle changes while taking Liverab 20mg Injection. Exercise regularly and eat healthily. You can consult your dietician to get a diet chart that suits you best. Eat at least 3 hours before sleeping to reduce the chances of aggravation of your symptoms at night. You should avoid spicy and fatty foods while taking this medicine. Refrain from caffeinated drinks such as tea, coffee, and cola. Alcohol intake and smoking should also be avoided as they may worsen your symptoms.'),
(24552, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'Can I take alcohol with Liverab 20mg Injection?', 'No, alcohol intake is not advised with Liverab 20mg Injection. Alcohol itself does not affect the working of Liverab 20mg Injection, but it can increase acid production. This may further cause worsening of your symptoms.'),
(24553, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'Can I take antacids along with Liverab 20mg Injection?', 'Yes, you can take antacids along with Liverab 20mg Injection. Take it 2 hours before or after you take Liverab 20mg Injection.'),
(24554, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'How long does it take for Liverab 20mg Injection to work?', 'Liverab 20mg Injection starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(24555, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'Can I stop taking Liverab 20mg Injection if I feel better?', 'No, do not stop taking Rekool before completing the full course of treatment. You will start to feel better before your treatment is complete. Liverab 20mg Injection is given into a vein, only if oral administration is not possible, for upto 7 days. As soon as the person is able to take it orally, intravenous administration is stopped and oral form is prescribed. Take Liverab 20mg Injection only as prescribed by your doctor to get maximum benefit.'),
(24556, 'Liverab 20mg Injection', 'Alive Healthcare', 'Liverab 20mg Injection', 'Is Liverab 20mg Injection safe?', 'Yes, Liverab 20mg Injection is relatively safe. Most of the people who take Liverab 20mg Injection do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(24557, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'What is Liverab 20mg Tablet used for?', 'Liverab 20mg Tablet is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis, or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Liverab 20mg Tablet also prevents acidity associated with the use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES).'),
(24558, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'How long does it take for Liverab 20mg Tablet to work?', 'Liverab 20mg Tablet starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(24559, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'What is the best time to take Liverab 20mg Tablet?', 'It is best to take Liverab 20mg Tablet before your breakfast. If you are taking two doses, take it in the morning and evening. Liverab 20mg Tablet is more effective when it is taken an hour before your food.'),
(24560, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'Can I stop taking Liverab 20mg Tablet if I feel better?', 'No, do not stop taking Liverab 20mg Tablet before completing the full course of treatment. You will start to feel better before your treatment is complete.'),
(24561, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'Does Liverab 20mg Tablet cause bone problems?', 'Yes, long-term use of Liverab 20mg Tablet can cause thinning of bones, which is called osteoporosis. Liverab 20mg Tablet decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(24562, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'How is Liverab 20mg Tablet useful in the treatment of H. pylori infection?', 'Liverab 20mg Tablet is used along with antibiotics for the treatment of H.Pylori infection. It works by decreasing stomach acid volume and decreasing breakdown and washout of antibiotics leading to an increased antibiotic concentration and tissue penetration. It also helps in symptomatic relief by decreasing associated acidity, reflux, and heartburn.'),
(24563, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'Can I take Liverab 20mg Tablet with vitamin D?', 'Yes, vitamin D can be taken along with Liverab 20mg Tablet. Vitamin D is generally advised to be taken as a supplement with Liverab 20mg Tablet as the long-term use of Liverab 20mg Tablet decreases the absorption of calcium and may lead to calcium deficiency. This can lead to osteoporosis (thinning of bones) and increase the risk of bone fractures like hip, wrist, and spine fractures. Please consult your doctor to know about ways to prevent this.'),
(24564, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'Can long term use of Liverab 20mg Tablet cause magnesium deficiency?', 'Long-term use of Liverab 20mg Tablet can lower magnesium levels in patients taking multiple daily doses for 3 months or longer. Get your magnesium levels checked at regular intervals. Tell your doctor if you experience seizures (fits), dizziness, abnormal or fast heartbeat, jitteriness, jerking movements or shaking (tremors), muscle weakness, spasms of the hands and feet, cramps, muscle aches.'),
(24565, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'Is it safe to use Liverab 20mg Tablet for a long period of time?', 'Liverab 20mg Tablet should be used for as long as it has been prescribed by your doctor. Liverab 20mg Tablet is usually considered to be safe when taken in the recommended dose and duration. If Liverab 20mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood, making you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, subacute cutaneous lupus erythematosus, osteoporosis, and vitamin B12 deficiency.'),
(24566, 'Liverab 20mg Tablet', 'Alive Healthcare', 'Liverab 20mg Tablet', 'Can I take alcohol with Liverab 20mg Tablet?', 'No, alcohol intake is not advised with Liverab 20mg Tablet. Alcohol itself does not affect the working of Liverab 20mg Tablet, but it can increase acid production. This may further cause worsening of your symptoms.'),
(24567, 'Liverab LV 75mg/20mg Tablet', 'Alive Healthcare', 'Liverab LV 75mg/20mg Tablet', 'Which is the best time to take Liverab LV 75mg/20mg Tablet?', 'Take the Liverab LV 75mg/20mg Tablet exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(24568, 'Liverab LV 75mg/20mg Tablet', 'Alive Healthcare', 'Liverab LV 75mg/20mg Tablet', 'What are the contraindications associated with the use of Liverab LV 75mg/20mg Tablet?', 'Use of Liverab LV 75mg/20mg Tablet should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(24569, 'Liverab LV 75mg/20mg Tablet', 'Alive Healthcare', 'Liverab LV 75mg/20mg Tablet', 'Can the use of Liverab LV 75mg/20mg Tablet cause dizziness?', 'Yes, the use of Liverab LV 75mg/20mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(24570, 'Liverab LV 75mg/20mg Tablet', 'Alive Healthcare', 'Liverab LV 75mg/20mg Tablet', 'Does the use of Liverab LV 75mg/20mg Tablet lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Liverab LV 75mg/20mg Tablet may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(24571, 'Liverab LV 75mg/20mg Tablet', 'Alive Healthcare', 'Liverab LV 75mg/20mg Tablet', 'Can I drive while taking Liverab LV 75mg/20mg Tablet?', 'No, taking Liverab LV 75mg/20mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(24572, 'Liverab LV 75mg/20mg Tablet', 'Alive Healthcare', 'Liverab LV 75mg/20mg Tablet', 'What are the instructions for the storage and disposal of Liverab LV 75mg/20mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24573, 'Liverash 150mg Tablet', 'Grantham Lifesciences', 'Liverash 150mg Tablet', 'When should I take Liverash 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liverash 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24574, 'Liverash 150mg Tablet', 'Grantham Lifesciences', 'Liverash 150mg Tablet', 'Is Liverash 150mg Tablet safe?', 'Liverash 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24575, 'Liverash 150mg Tablet', 'Grantham Lifesciences', 'Liverash 150mg Tablet', 'How does Liverash 150mg Tablet help the liver?', 'Liverash 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24576, 'Liverash 150mg Tablet', 'Grantham Lifesciences', 'Liverash 150mg Tablet', 'Does Liverash 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liverash 150mg Tablet, but it is not common. The use of Liverash 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24577, 'Liverash 150mg Tablet', 'Grantham Lifesciences', 'Liverash 150mg Tablet', 'What should I avoid while taking Liverash 150mg Tablet?', 'While taking Liverash 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liverash 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liverash 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Liverash 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liverash 150mg Tablet.'),
(24578, 'Liverash 300mg Tablet', 'Grantham Lifesciences', 'Liverash 300mg Tablet', 'When should I take Liverash 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liverash 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24579, 'Liverash 300mg Tablet', 'Grantham Lifesciences', 'Liverash 300mg Tablet', 'Is Liverash 300mg Tablet safe?', 'Liverash 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24580, 'Liverash 300mg Tablet', 'Grantham Lifesciences', 'Liverash 300mg Tablet', 'How does Liverash 300mg Tablet help the liver?', 'Liverash 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24581, 'Liverash 300mg Tablet', 'Grantham Lifesciences', 'Liverash 300mg Tablet', 'Does Liverash 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liverash 300mg Tablet, but it is not common. The use of Liverash 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24582, 'Liverash 300mg Tablet', 'Grantham Lifesciences', 'Liverash 300mg Tablet', 'What should I avoid while taking Liverash 300mg Tablet?', 'While taking Liverash 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liverash 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liverash 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Liverash 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liverash 300mg Tablet.'),
(24583, 'Livercool CP Syrup', 'Therapia Sanjeevani', 'Livercool CP Syrup', 'Can the use of Livercool CP Syrup cause dryness in mouth?', 'Yes, the use of Livercool CP Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24584, 'Livercool CP Syrup', 'Therapia Sanjeevani', 'Livercool CP Syrup', 'Can the use of Livercool CP Syrup cause dizziness?', 'Yes, the use of Livercool CP Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(24585, 'Livercool CP Syrup', 'Therapia Sanjeevani', 'Livercool CP Syrup', '\\What is the recommended storage condition for Livercool CP Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24586, 'Livercool LA 5mg Injection', 'Therapia Sanjeevani', 'Livercool LA 5mg Injection', 'Is it ok to take alcohol when taking Livercool LA 5mg Injection?', 'No, it is not recommended to take alcohol when on Livercool LA 5mg Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24587, 'Livercool LA 5mg Injection', 'Therapia Sanjeevani', 'Livercool LA 5mg Injection', 'What is Livercool LA 5mg Injection?', 'Livercool LA 5mg Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24588, 'Livercool LA 5mg Injection', 'Therapia Sanjeevani', 'Livercool LA 5mg Injection', 'What is the use of Livercool LA 5mg Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livercool LA 5mg Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24589, 'Livercool LA 5mg Injection', 'Therapia Sanjeevani', 'Livercool LA 5mg Injection', 'How is Livercool LA 5mg Injection given?', 'Livercool LA 5mg Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24590, 'Livercool UD 150mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 150mg Tablet', 'When should I take Livercool UD 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livercool UD 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24591, 'Livercool UD 150mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 150mg Tablet', 'Is Livercool UD 150mg Tablet safe?', 'Livercool UD 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24592, 'Livercool UD 150mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 150mg Tablet', 'How does Livercool UD 150mg Tablet help the liver?', 'Livercool UD 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24593, 'Livercool UD 150mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 150mg Tablet', 'Does Livercool UD 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livercool UD 150mg Tablet, but it is not common. The use of Livercool UD 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24594, 'Livercool UD 150mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 150mg Tablet', 'What should I avoid while taking Livercool UD 150mg Tablet?', 'While taking Livercool UD 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livercool UD 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livercool UD 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Livercool UD 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livercool UD 150mg Tablet.'),
(24595, 'Livercool UD 300mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 300mg Tablet', 'When should I take Livercool UD 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livercool UD 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24596, 'Livercool UD 300mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 300mg Tablet', 'Is Livercool UD 300mg Tablet safe?', 'Livercool UD 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24597, 'Livercool UD 300mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 300mg Tablet', 'How does Livercool UD 300mg Tablet help the liver?', 'Livercool UD 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24598, 'Livercool UD 300mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 300mg Tablet', 'Does Livercool UD 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livercool UD 300mg Tablet, but it is not common. The use of Livercool UD 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24599, 'Livercool UD 300mg Tablet', 'Therapia Sanjeevani', 'Livercool UD 300mg Tablet', 'What should I avoid while taking Livercool UD 300mg Tablet?', 'While taking Livercool UD 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livercool UD 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livercool UD 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livercool UD 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livercool UD 300mg Tablet.'),
(24600, 'Liveril U 150mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 150mg Tablet', 'When should I take Liveril U 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liveril U 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24601, 'Liveril U 150mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 150mg Tablet', 'Is Liveril U 150mg Tablet safe?', 'Liveril U 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24602, 'Liveril U 150mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 150mg Tablet', 'How does Liveril U 150mg Tablet help the liver?', 'Liveril U 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24603, 'Liveril U 150mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 150mg Tablet', 'Does Liveril U 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liveril U 150mg Tablet, but it is not common. The use of Liveril U 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24604, 'Liveril U 150mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 150mg Tablet', 'What should I avoid while taking Liveril U 150mg Tablet?', 'While taking Liveril U 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liveril U 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liveril U 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Liveril U 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liveril U 150mg Tablet.'),
(24605, 'Liveril U 300mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 300mg Tablet', 'When should I take Liveril U 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liveril U 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24606, 'Liveril U 300mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 300mg Tablet', 'Is Liveril U 300mg Tablet safe?', 'Liveril U 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24607, 'Liveril U 300mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 300mg Tablet', 'How does Liveril U 300mg Tablet help the liver?', 'Liveril U 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24608, 'Liveril U 300mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 300mg Tablet', 'Does Liveril U 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liveril U 300mg Tablet, but it is not common. The use of Liveril U 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24609, 'Liveril U 300mg Tablet', 'Meyer Organics Pvt Ltd', 'Liveril U 300mg Tablet', 'What should I avoid while taking Liveril U 300mg Tablet?', 'While taking Liveril U 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liveril U 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liveril U 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Liveril U 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liveril U 300mg Tablet.'),
(24610, 'Liverish 150mg Tablet', 'Scythian Healthcare', 'Liverish 150mg Tablet', 'When should I take Liverish 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liverish 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24611, 'Liverish 150mg Tablet', 'Scythian Healthcare', 'Liverish 150mg Tablet', 'Is Liverish 150mg Tablet safe?', 'Liverish 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24612, 'Liverish 150mg Tablet', 'Scythian Healthcare', 'Liverish 150mg Tablet', 'How does Liverish 150mg Tablet help the liver?', 'Liverish 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24613, 'Liverish 150mg Tablet', 'Scythian Healthcare', 'Liverish 150mg Tablet', 'Does Liverish 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liverish 150mg Tablet, but it is not common. The use of Liverish 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24614, 'Liverish 150mg Tablet', 'Scythian Healthcare', 'Liverish 150mg Tablet', 'What should I avoid while taking Liverish 150mg Tablet?', 'While taking Liverish 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liverish 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liverish 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Liverish 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liverish 150mg Tablet.'),
(24615, 'Liverish 300mg Tablet', 'Scythian Healthcare', 'Liverish 300mg Tablet', 'When should I take Liverish 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liverish 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24616, 'Liverish 300mg Tablet', 'Scythian Healthcare', 'Liverish 300mg Tablet', 'Is Liverish 300mg Tablet safe?', 'Liverish 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24617, 'Liverish 300mg Tablet', 'Scythian Healthcare', 'Liverish 300mg Tablet', 'How does Liverish 300mg Tablet help the liver?', 'Liverish 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24618, 'Liverish 300mg Tablet', 'Scythian Healthcare', 'Liverish 300mg Tablet', 'Does Liverish 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liverish 300mg Tablet, but it is not common. The use of Liverish 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24619, 'Liverish 300mg Tablet', 'Scythian Healthcare', 'Liverish 300mg Tablet', 'What should I avoid while taking Liverish 300mg Tablet?', 'While taking Liverish 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liverish 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liverish 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Liverish 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liverish 300mg Tablet.'),
(24620, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'What is Meniere\'s disease? Does it go away?', 'Meniere\'s disease is a disorder of the balance and hearing organs in the inner ear. The symptoms include vertigo, fluctuations in hearing, tinnitus (ringing of the ears), and pressure in the ears. Along with that, one may experience dizziness which in turn may cause nausea and vomiting. The treatment for Meniere\'s disease depends on various factors. Hence, an open discussion with the doctor can help to determine the best treatment strategy in your personal case.'),
(24621, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'Is Livertin 16mg Tablet effective?', 'Livertin 16mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livertin 16mg Tablet too early, the symptoms may return or worsen.'),
(24622, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'What are the triggers for Meniere\'s disease?', 'Meniere\'s disease can be triggered by conditions like stress, overwork, fatigue, emotional distress, additional illnesses, and pressure changes. Along with that, certain foods such as dairy products, caffeine, alcohol, and foods with high sodium content may trigger Meniere\'s disease. A 2-gram/day low-salt diet can help control vertigo in Meniere\'s disease.'),
(24623, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'What if I forget to take a dose of Livertin 16mg Tablet?', 'If you forget a dose of Livertin 16mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next dose at the scheduled time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24624, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'Is stress a reason for vertigo?', 'Mental stress can trigger vertigo. It can make many forms of vertigo worse, but will not, by itself, produce vertigo.'),
(24625, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'What are the causes of vertigo?', 'Vertigo may be caused either by a sudden drop in blood pressure or because of being dehydrated. Many people feel lightheaded if they get up too quickly from sitting or lying down. Along with that, motion sickness, certain medicines, and problems with your inner ear (Meniere\'s disease, acoustic neuroma) may cause vertigo. It is important to know that sometimes vertigo can be a symptom of other disorders (multiple sclerosis, following head trauma) as well.'),
(24626, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'How long should Livertin 16mg Tablet be taken?', 'Duration of treatment with Livertin 16mg Tablet may vary from patient to patient. Some people respond rapidly to treatment while others may take some time. Hence, it is advised to take your tablets regularly and wait for the results patiently. Consult the doctor if not sure.'),
(24627, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'What are the common side effects of Livertin 16mg Tablet?', 'Livertin 16mg Tablet can cause mild stomach problems such as vomiting, stomach pain, stomach swelling (abdominal distension), and bloating. You can reduce the chances of getting these side effects by taking Livertin 16mg Tablet with food. However, the absorption of Livertin 16mg Tablet may get reduced when taken with food.'),
(24628, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'Is Livertin 16mg Tablet effective?', 'Livertin 16mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livertin 16mg Tablet too early, the symptoms may return or worsen.'),
(24629, 'Livertin 16mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 16mg Tablet', 'What if I forget to take a dose of Livertin 16mg Tablet?', 'If you forget a dose of Livertin 16mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next dose at the scheduled time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24630, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'What is Meniere\'s disease? Does it go away?', 'Meniere\'s disease is a disorder of the balance and hearing organs in the inner ear. The symptoms include vertigo, fluctuations in hearing, tinnitus (ringing of the ears), and pressure in the ears. Along with that, one may experience dizziness which in turn may cause nausea and vomiting. The treatment for Meniere\'s disease depends on various factors. Hence, an open discussion with the doctor can help to determine the best treatment strategy in your personal case.'),
(24631, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'Is Livertin 8mg Tablet effective?', 'Livertin 8mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livertin 8mg Tablet too early, the symptoms may return or worsen.'),
(24632, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'What are the triggers for Meniere\'s disease?', 'Meniere\'s disease can be triggered by conditions like stress, overwork, fatigue, emotional distress, additional illnesses, and pressure changes. Along with that, certain foods such as dairy products, caffeine, alcohol, and foods with high sodium content may trigger Meniere\'s disease. A 2-gram/day low-salt diet can help control vertigo in Meniere\'s disease.'),
(24633, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'What if I forget to take a dose of Livertin 8mg Tablet?', 'If you forget a dose of Livertin 8mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next dose at the scheduled time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24634, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'Is stress a reason for vertigo?', 'Mental stress can trigger vertigo. It can make many forms of vertigo worse, but will not, by itself, produce vertigo.'),
(24635, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'What are the causes of vertigo?', 'Vertigo may be caused either by a sudden drop in blood pressure or because of being dehydrated. Many people feel lightheaded if they get up too quickly from sitting or lying down. Along with that, motion sickness, certain medicines, and problems with your inner ear (Meniere\'s disease, acoustic neuroma) may cause vertigo. It is important to know that sometimes vertigo can be a symptom of other disorders (multiple sclerosis, following head trauma) as well.'),
(24636, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'How long should Livertin 8mg Tablet be taken?', 'Duration of treatment with Livertin 8mg Tablet may vary from patient to patient. Some people respond rapidly to treatment while others may take some time. Hence, it is advised to take your tablets regularly and wait for the results patiently. Consult the doctor if not sure.'),
(24637, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'What are the common side effects of Livertin 8mg Tablet?', 'Livertin 8mg Tablet can cause mild stomach problems such as vomiting, stomach pain, stomach swelling (abdominal distension), and bloating. You can reduce the chances of getting these side effects by taking Livertin 8mg Tablet with food. However, the absorption of Livertin 8mg Tablet may get reduced when taken with food.'),
(24638, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'Is Livertin 8mg Tablet effective?', 'Livertin 8mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livertin 8mg Tablet too early, the symptoms may return or worsen.'),
(24639, 'Livertin 8mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livertin 8mg Tablet', 'What if I forget to take a dose of Livertin 8mg Tablet?', 'If you forget a dose of Livertin 8mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next dose at the scheduled time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24640, 'Liverubin 70mg Tablet', 'Alchem Phytoceuticals Ltd', 'Liverubin 70mg Tablet', 'What is Liverubin 70mg Tablet? What is it used for?', 'Liverubin 70mg Tablet belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Liverubin 70mg Tablet accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(24641, 'Liverubin 70mg Tablet', 'Alchem Phytoceuticals Ltd', 'Liverubin 70mg Tablet', 'How does Liverubin 70mg Tablet work for the liver?', 'Liverubin 70mg Tablet is obtained from milk thistle seed (Silybum marianum). Liverubin 70mg Tablet works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(24642, 'Liverubin 70mg Tablet', 'Alchem Phytoceuticals Ltd', 'Liverubin 70mg Tablet', 'How to use Liverubin 70mg Tablet?', 'Liverubin 70mg Tablet should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Liverubin 70mg Tablet.'),
(24643, 'Liverubin 70mg Tablet', 'Alchem Phytoceuticals Ltd', 'Liverubin 70mg Tablet', 'What are the side effects of Liverubin 70mg Tablet?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(24644, 'Liverubin 70mg Tablet', 'Alchem Phytoceuticals Ltd', 'Liverubin 70mg Tablet', 'Can Liverubin 70mg Tablet be used in pregnancy and lactation?', 'Liverubin 70mg Tablet may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Liverubin 70mg Tablet if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(24645, 'Liverwin UDC 150mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 150mg Tablet', 'When should I take Liverwin UDC 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liverwin UDC 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24646, 'Liverwin UDC 150mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 150mg Tablet', 'Is Liverwin UDC 150mg Tablet safe?', 'Liverwin UDC 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24647, 'Liverwin UDC 150mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 150mg Tablet', 'How does Liverwin UDC 150mg Tablet help the liver?', 'Liverwin UDC 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24648, 'Liverwin UDC 150mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 150mg Tablet', 'Does Liverwin UDC 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liverwin UDC 150mg Tablet, but it is not common. The use of Liverwin UDC 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24649, 'Liverwin UDC 150mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 150mg Tablet', 'What should I avoid while taking Liverwin UDC 150mg Tablet?', 'While taking Liverwin UDC 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liverwin UDC 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liverwin UDC 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Liverwin UDC 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liverwin UDC 150mg Tablet.'),
(24650, 'Liverwin UDC 300mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 300mg Tablet', 'When should I take Liverwin UDC 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Liverwin UDC 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24651, 'Liverwin UDC 300mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 300mg Tablet', 'Is Liverwin UDC 300mg Tablet safe?', 'Liverwin UDC 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24652, 'Liverwin UDC 300mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 300mg Tablet', 'How does Liverwin UDC 300mg Tablet help the liver?', 'Liverwin UDC 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24653, 'Liverwin UDC 300mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 300mg Tablet', 'Does Liverwin UDC 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Liverwin UDC 300mg Tablet, but it is not common. The use of Liverwin UDC 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24654, 'Liverwin UDC 300mg Tablet', 'Windlas Biotech Ltd', 'Liverwin UDC 300mg Tablet', 'What should I avoid while taking Liverwin UDC 300mg Tablet?', 'While taking Liverwin UDC 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Liverwin UDC 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Liverwin UDC 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Liverwin UDC 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Liverwin UDC 300mg Tablet.'),
(24655, 'Livestar 250mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 250mg Tablet', 'Is Livestar 250mg Tablet safe?', 'Livestar 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24656, 'Livestar 250mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 250mg Tablet', 'What if I forget to take a dose of Livestar 250mg Tablet?', 'If you forget a dose of Livestar 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24657, 'Livestar 250mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 250mg Tablet', 'Can the use of Livestar 250mg Tablet cause diarrhea?', 'Yes, the use of Livestar 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24658, 'Livestar 250mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 250mg Tablet', 'Can I stop taking Livestar 250mg Tablet when I feel better?', 'No, do not stop taking Livestar 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livestar 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livestar 250mg Tablet in the dose and duration advised by the doctor.'),
(24659, 'Livestar 250mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 250mg Tablet', 'Can the use of Livestar 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livestar 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livestar 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24660, 'Livestar 500mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 500mg Tablet', 'Is Livestar 500mg Tablet safe?', 'Livestar 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24661, 'Livestar 500mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 500mg Tablet', 'What if I forget to take a dose of Livestar 500mg Tablet?', 'If you forget a dose of Livestar 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24662, 'Livestar 500mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 500mg Tablet', 'Can the use of Livestar 500mg Tablet cause diarrhea?', 'Yes, the use of Livestar 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24663, 'Livestar 500mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 500mg Tablet', 'Can I stop taking Livestar 500mg Tablet when I feel better?', 'No, do not stop taking Livestar 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livestar 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livestar 500mg Tablet in the dose and duration advised by the doctor.'),
(24664, 'Livestar 500mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 500mg Tablet', 'Can the use of Livestar 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livestar 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livestar 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24665, 'Livestar 750mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 750mg Tablet', 'Is Livestar 750mg Tablet safe?', 'Livestar 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24666, 'Livestar 750mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 750mg Tablet', 'What if I forget to take a dose of Livestar 750mg Tablet?', 'If you forget a dose of Livestar 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24667, 'Livestar 750mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 750mg Tablet', 'Can the use of Livestar 750mg Tablet cause diarrhea?', 'Yes, the use of Livestar 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24668, 'Livestar 750mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 750mg Tablet', 'Can I stop taking Livestar 750mg Tablet when I feel better?', 'No, do not stop taking Livestar 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livestar 750mg Tablet too early, the symptoms may return or worsen. Continue taking Livestar 750mg Tablet in the dose and duration advised by the doctor.'),
(24669, 'Livestar 750mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Livestar 750mg Tablet', 'Can the use of Livestar 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livestar 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livestar 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24670, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. Can the use of Livetira 500mg Tablet cause sleepiness?', 'Yes, Livetira 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(24671, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. Will the use of Livetira 500mg Tablet affect my fertility?', 'Livetira 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(24672, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. I have gained weight since I started taking Livetira 500mg Tablet. Is it because of Livetira 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livetira 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(24673, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. How long does Livetira 500mg Tablet take to show its effect?', 'Livetira 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livetira 500mg Tablet starts working completely.'),
(24674, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. For how long do I need to take Livetira 500mg Tablet?', 'You should continue to take Livetira 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(24675, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. Will I get addicted to Livetira 500mg Tablet if I use it for a long time?', 'No, Livetira 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livetira 500mg Tablet. Consult your doctor if you experience any side effects.'),
(24676, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. What symptoms can occur if someone takes an excess of Livetira 500mg Tablet?', 'Taking an excess of Livetira 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(24677, 'Livetira 500mg Tablet', 'Holista Health Care', 'Livetira 500mg Tablet', 'Q. How do I come off Livetira 500mg Tablet?', 'The dose of Livetira 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livetira 500mg Tablet straight away, even if you have epilepsy.'),
(24678, 'Livetone UD 150mg Tablet', 'Cipla Ltd', 'Livetone UD 150mg Tablet', 'When should I take Livetone UD 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livetone UD 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24679, 'Livetone UD 150mg Tablet', 'Cipla Ltd', 'Livetone UD 150mg Tablet', 'Is Livetone UD 150mg Tablet safe?', 'Livetone UD 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24680, 'Livetone UD 150mg Tablet', 'Cipla Ltd', 'Livetone UD 150mg Tablet', 'How does Livetone UD 150mg Tablet help the liver?', 'Livetone UD 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24681, 'Livetone UD 150mg Tablet', 'Cipla Ltd', 'Livetone UD 150mg Tablet', 'Does Livetone UD 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livetone UD 150mg Tablet, but it is not common. The use of Livetone UD 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24682, 'Livetone UD 150mg Tablet', 'Cipla Ltd', 'Livetone UD 150mg Tablet', 'What should I avoid while taking Livetone UD 150mg Tablet?', 'While taking Livetone UD 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livetone UD 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livetone UD 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Livetone UD 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livetone UD 150mg Tablet.'),
(24683, 'Livetone UD 300mg Tablet', 'Cipla Ltd', 'Livetone UD 300mg Tablet', 'When should I take Livetone UD 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livetone UD 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24684, 'Livetone UD 300mg Tablet', 'Cipla Ltd', 'Livetone UD 300mg Tablet', 'Is Livetone UD 300mg Tablet safe?', 'Livetone UD 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24685, 'Livetone UD 300mg Tablet', 'Cipla Ltd', 'Livetone UD 300mg Tablet', 'How does Livetone UD 300mg Tablet help the liver?', 'Livetone UD 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24686, 'Livetone UD 300mg Tablet', 'Cipla Ltd', 'Livetone UD 300mg Tablet', 'Does Livetone UD 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livetone UD 300mg Tablet, but it is not common. The use of Livetone UD 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24687, 'Livetone UD 300mg Tablet', 'Cipla Ltd', 'Livetone UD 300mg Tablet', 'What should I avoid while taking Livetone UD 300mg Tablet?', 'While taking Livetone UD 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livetone UD 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livetone UD 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livetone UD 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livetone UD 300mg Tablet.'),
(24688, 'Livetuss AM Syrup', 'Alive Healthcare', 'Livetuss AM Syrup', 'Will a higher than the recommended dose of Livetuss AM Syrup be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Livetuss AM Syrup, please consult your doctor.'),
(24689, 'Livetuss AM Syrup', 'Alive Healthcare', 'Livetuss AM Syrup', 'In which type of cough will the doctor prescribe Livetuss AM Syrup?', 'Livetuss AM Syrup is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(24690, 'Livetuss AM Syrup', 'Alive Healthcare', 'Livetuss AM Syrup', 'Are there any contraindications associated with use of Livetuss AM Syrup?', 'It is not recommended to use Livetuss AM Syrup if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(24691, 'Livetuss AM Syrup', 'Alive Healthcare', 'Livetuss AM Syrup', 'What are the instructions for the storage and disposal of Livetuss AM Syrup?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24692, 'Livetuss LB Syrup', 'Alive Healthcare', 'Livetuss LB Syrup', 'What is Livetuss LB Syrup?', 'Livetuss LB Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24693, 'Livetuss LB Syrup', 'Alive Healthcare', 'Livetuss LB Syrup', 'Is it safe to use Livetuss LB Syrup?', 'Yes, it is safe to use Livetuss LB Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(24694, 'Livetuss LB Syrup', 'Alive Healthcare', 'Livetuss LB Syrup', 'Are there any specific contraindications associated with the use of Livetuss LB Syrup?', 'Use of Livetuss LB Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(24695, 'Livetuss LB Syrup', 'Alive Healthcare', 'Livetuss LB Syrup', 'Can the use of Livetuss LB Syrup cause dizziness?', 'Yes, the use of Livetuss LB Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(24696, 'Livetuss LB Syrup', 'Alive Healthcare', 'Livetuss LB Syrup', 'Can the use of Livetuss LB Syrup cause diarrhea?', 'Yes, the use of Livetuss LB Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(24697, 'Livetuss LB Syrup', 'Alive Healthcare', 'Livetuss LB Syrup', 'What are the recommended storage conditions for Livetuss LB Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24698, 'Livex 40mg Injection', 'Excella Life Sciences Pvt Ltd', 'Livex 40mg Injection', 'How do you administer Livex 40mg Injection?', 'Livex 40mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(24699, 'Livex 40mg Injection', 'Excella Life Sciences Pvt Ltd', 'Livex 40mg Injection', 'What are the conditions where I should be cautious before taking Livex 40mg Injection?', 'You must give a proper history to your doctor before you start taking Livex 40mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(24700, 'Livex 40mg Injection', 'Excella Life Sciences Pvt Ltd', 'Livex 40mg Injection', 'How to store Livex 40mg Injection injections?', 'Store Livex 40mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(24701, 'Livex 40mg Injection', 'Excella Life Sciences Pvt Ltd', 'Livex 40mg Injection', 'Can Livex 40mg Injection be used in heart attack?', 'Yes, Livex 40mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(24702, 'Livex 40mg Injection', 'Excella Life Sciences Pvt Ltd', 'Livex 40mg Injection', 'Is it ok to inject the air bubble in Livex 40mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(24703, 'Livex Injection', 'Excella Life Sciences Pvt Ltd', 'Livex Injection', 'How do you administer Livex Injection?', 'Livex Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(24704, 'Livex Injection', 'Excella Life Sciences Pvt Ltd', 'Livex Injection', 'What are the conditions where I should be cautious before taking Livex Injection?', 'You must give a proper history to your doctor before you start taking Livex Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(24705, 'Livex Injection', 'Excella Life Sciences Pvt Ltd', 'Livex Injection', 'How to store Livex Injection injections?', 'Store Livex Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(24706, 'Livex Injection', 'Excella Life Sciences Pvt Ltd', 'Livex Injection', 'Can Livex Injection be used in heart attack?', 'Yes, Livex Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(24707, 'Livex Injection', 'Excella Life Sciences Pvt Ltd', 'Livex Injection', 'Is it ok to inject the air bubble in Livex Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(24708, 'Livezy M 5mg/10mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Livezy M 5mg/10mg Tablet', 'What is Livezy M 5mg/10mg Tablet?', 'Livezy M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24709, 'Livezy M 5mg/10mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Livezy M 5mg/10mg Tablet', 'Can the use of Livezy M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livezy M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24710, 'Livezy M 5mg/10mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Livezy M 5mg/10mg Tablet', 'Can Livezy M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livezy M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24711, 'Livezy M 5mg/10mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Livezy M 5mg/10mg Tablet', 'Can the use of Livezy M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livezy M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24712, 'Livezy M 5mg/10mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Livezy M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livezy M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livezy M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livezy M 5mg/10mg Tablet.'),
(24713, 'Livezy M 5mg/10mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Livezy M 5mg/10mg Tablet', 'Will Livezy M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livezy M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24714, 'Livezy M 5mg/10mg Tablet', 'Medic Biologicals And Pharmaceuticals Pvt Ltd', 'Livezy M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livezy M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24715, 'Livfirm Injection', 'Vintek Pharmaceuticals', 'Livfirm Injection', 'Is it ok to take alcohol when taking Livfirm Injection?', 'No, it is not recommended to take alcohol when on Livfirm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24716, 'Livfirm Injection', 'Vintek Pharmaceuticals', 'Livfirm Injection', 'What is Livfirm Injection?', 'Livfirm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24717, 'Livfirm Injection', 'Vintek Pharmaceuticals', 'Livfirm Injection', 'What is the use of Livfirm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livfirm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24718, 'Livfirm Injection', 'Vintek Pharmaceuticals', 'Livfirm Injection', 'How is Livfirm Injection given?', 'Livfirm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24719, 'Livflo 500 Tablet', 'Vinson Pharma Pvt Ltd', 'Livflo 500 Tablet', 'Is Livflo 500 Tablet safe?', 'Livflo 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24720, 'Livflo 500 Tablet', 'Vinson Pharma Pvt Ltd', 'Livflo 500 Tablet', 'What if I forget to take a dose of Livflo 500 Tablet?', 'If you forget a dose of Livflo 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24721, 'Livflo 500 Tablet', 'Vinson Pharma Pvt Ltd', 'Livflo 500 Tablet', 'Can the use of Livflo 500 Tablet cause diarrhea?', 'Yes, the use of Livflo 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24722, 'Livflo 500 Tablet', 'Vinson Pharma Pvt Ltd', 'Livflo 500 Tablet', 'Can I stop taking Livflo 500 Tablet when I feel better?', 'No, do not stop taking Livflo 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livflo 500 Tablet too early, the symptoms may return or worsen. Continue taking Livflo 500 Tablet in the dose and duration advised by the doctor.'),
(24723, 'Livflo 500 Tablet', 'Vinson Pharma Pvt Ltd', 'Livflo 500 Tablet', 'Can the use of Livflo 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livflo 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livflo 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24724, 'Livflox 500 Tablet', 'Shiron Pharmaceuticals', 'Livflox 500 Tablet', 'Is Livflox 500 Tablet safe?', 'Livflox 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24725, 'Livflox 500 Tablet', 'Shiron Pharmaceuticals', 'Livflox 500 Tablet', 'What if I forget to take a dose of Livflox 500 Tablet?', 'If you forget a dose of Livflox 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24726, 'Livflox 500 Tablet', 'Shiron Pharmaceuticals', 'Livflox 500 Tablet', 'Can the use of Livflox 500 Tablet cause diarrhea?', 'Yes, the use of Livflox 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24727, 'Livflox 500 Tablet', 'Shiron Pharmaceuticals', 'Livflox 500 Tablet', 'Can I stop taking Livflox 500 Tablet when I feel better?', 'No, do not stop taking Livflox 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livflox 500 Tablet too early, the symptoms may return or worsen. Continue taking Livflox 500 Tablet in the dose and duration advised by the doctor.'),
(24728, 'Livflox 500 Tablet', 'Shiron Pharmaceuticals', 'Livflox 500 Tablet', 'Can the use of Livflox 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livflox 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livflox 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24729, 'Livgold 300 Tablet', 'Vyomax Lifesciences Pvt Ltd', 'Livgold 300 Tablet', 'When should I take Livgold 300 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livgold 300 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24730, 'Livgold 300 Tablet', 'Vyomax Lifesciences Pvt Ltd', 'Livgold 300 Tablet', 'Is Livgold 300 Tablet safe?', 'Livgold 300 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24731, 'Livgold 300 Tablet', 'Vyomax Lifesciences Pvt Ltd', 'Livgold 300 Tablet', 'How does Livgold 300 Tablet help the liver?', 'Livgold 300 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24732, 'Livgold 300 Tablet', 'Vyomax Lifesciences Pvt Ltd', 'Livgold 300 Tablet', 'Does Livgold 300 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livgold 300 Tablet, but it is not common. The use of Livgold 300 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24733, 'Livgold 300 Tablet', 'Vyomax Lifesciences Pvt Ltd', 'Livgold 300 Tablet', 'What should I avoid while taking Livgold 300 Tablet?', 'While taking Livgold 300 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livgold 300 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livgold 300 Tablet. So, ask your doctor about the time gap that should be maintained between Livgold 300 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livgold 300 Tablet.'),
(24734, 'Livgy Oral Drop', 'MRG Pharmaceuticals', 'Livgy Oral Drop', 'My child is having a long-term illness and is on medication. He is underweight with poor nutritional status and doesn\'t feel like eating anything. Can I give Livgy Oral Drop?', 'Loss of appetite is a common side effect of some medicines. If given, Livgy Oral Drop will help resolve this issue by boosting your child’s appetite and hunger. This will thereby improve your child’s nutritional status. But do make sure to speak to your child’s doctor before giving Livgy Oral Drop to your child as that will help decide the perfect dosing and duration. It usually takes around a few days to weeks to show results. Make sure to inform the doctor if your child is taking any other medicines.'),
(24735, 'Livgy Oral Drop', 'MRG Pharmaceuticals', 'Livgy Oral Drop', 'My child is restless and unable to sleep properly at night. Can I give Livgy Oral Drop?', 'No. It is true that Livgy Oral Drop causes drowsiness as a side effect, but you should never give Livgy Oral Drop to induce sleep in children. Consult your doctor if you have any queries regarding the use of this medicine or if your child is experiencing sleeplessness as it could be due to some other underlying disease.'),
(24736, 'Livgy Oral Drop', 'MRG Pharmaceuticals', 'Livgy Oral Drop', 'How much Livgy Oral Drop should I give to my child?', 'Adhere to the dose prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(24737, 'Livgy Oral Drop', 'MRG Pharmaceuticals', 'Livgy Oral Drop', 'How should Livgy Oral Drop be stored?', 'Livgy Oral Drop should be stored at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24738, 'Livgy Oral Drop', 'MRG Pharmaceuticals', 'Livgy Oral Drop', 'When do I need to call my child’s doctor right away?', 'Never hesitate to consult your child’s doctor in case of any confusion, regarding dosage, duration, side effects, etc. Contact your child’s doctor immediately if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(24739, 'Livgy Syrup', 'MRG Pharmaceuticals', 'Livgy Syrup', 'Can the use of Livgy Syrup cause dryness in mouth?', 'Yes, the use of Livgy Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24740, 'Livgy Syrup', 'MRG Pharmaceuticals', 'Livgy Syrup', 'Can the use of Livgy Syrup cause dizziness?', 'Yes, the use of Livgy Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(24741, 'Livgy Syrup', 'MRG Pharmaceuticals', 'Livgy Syrup', '\\What is the recommended storage condition for Livgy Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24742, 'Livhectin Tablet', 'Generous Mediwaves Pvt Ltd', 'Livhectin Tablet', 'Can the use of Livhectin Tablet cause indigestion?', 'Livhectin Tablet may cause indigestion. However, taking it with or after food can prevent indigestion. Talk to your doctor if you indigestion persists.'),
(24743, 'Livhectin Tablet', 'Generous Mediwaves Pvt Ltd', 'Livhectin Tablet', 'What are the recommended storage conditions for Livhectin Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24744, 'Livi 300mg Tablet', 'Vivifi Life Sciences', 'Livi 300mg Tablet', 'Q. When should I take Livi 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livi 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24745, 'Livi 300mg Tablet', 'Vivifi Life Sciences', 'Livi 300mg Tablet', 'Q. Is Livi 300mg Tablet safe?', 'Livi 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24746, 'Livi 300mg Tablet', 'Vivifi Life Sciences', 'Livi 300mg Tablet', 'Q. How does Livi 300mg Tablet help the liver?', 'Livi 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24747, 'Livi 300mg Tablet', 'Vivifi Life Sciences', 'Livi 300mg Tablet', 'Q. Does Livi 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livi 300mg Tablet, but it is not common. The use of Livi 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24748, 'Livi 300mg Tablet', 'Vivifi Life Sciences', 'Livi 300mg Tablet', 'Q. What should I avoid while taking Livi 300mg Tablet?', 'While taking Livi 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livi 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livi 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livi 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livi 300mg Tablet.'),
(24749, 'Livial Tablet', 'Organon (India) Ltd', 'Livial Tablet', 'Does Livial Tablet contain progesterone?', 'It is a synthetic medicine which is used to fulfill the functions of the normal sex hormones like estrogen and progesterone in the body of women. On taking Livial Tablet it is broken down in our body and functions like estrogen, progesterone and a part to testosterone (male sex hormone). It is prescribed to compensate for the loss of estrogen production in postmenopausal women and decrease the menopausal symptoms.'),
(24750, 'Livial Tablet', 'Organon (India) Ltd', 'Livial Tablet', 'Is Livial Tablet a combined HRT?', 'Yes, Livial Tablet is a type of medicine used in hormone replacement therapy (HRT) which is given to post-menopausal women. It is given to prevent the adverse effects on various organs and systems due to decrease in the levels of hormones like estrogen and progesterone. It shows positive effect on different tissues in the body, such as brain, vagina, and bones.'),
(24751, 'Livial Tablet', 'Organon (India) Ltd', 'Livial Tablet', 'Can Livial Tablet be taken during pregnancy?', 'No, Livial Tablet is not to be taken in pregnancy or if you are planning to get pregnant. In case you become pregnant during treatment with this medication you should contact your doctor and the medicine should be withdrawn immediately.'),
(24752, 'Livial Tablet', 'Organon (India) Ltd', 'Livial Tablet', 'Does Livial Tablet help in elevating mood?', 'Yes, this medicine has shown positive results when given to postmenapausal women as a substitute for the hormonal deprivation. Patients have experienced reduction in the menopausal complaints like persistent fatigue, blunted motivation, and loss of sexual desire. However, consult the doctor regarding any query for your mood problems before you start taking this medication.'),
(24753, 'Livial Tablet', 'Organon (India) Ltd', 'Livial Tablet', 'Can Livial Tablet help in osteoporosis?', 'Yes, Livial Tablet can help in osteoporosis. After menopause some women become prone to develop fragile bones called osteoporosis which can lead to an increased risk of fractures. Livial Tablet acts as a replacement for the female sex hormones when given in the post-menopausal phase. These hormones help in increasing bone density. Therefore,  taking Livial Tablet can prevent bone loss and osteoporosis. Do consult your doctor before starting this medication as you might need other supplemental medications to treat osteoporosis.'),
(24754, 'Livibile Tablet', 'Remedial Healthcare', 'Livibile Tablet', 'When should I take Livibile Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livibile Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(24755, 'Livibile Tablet', 'Remedial Healthcare', 'Livibile Tablet', 'Is Livibile Tablet safe?', 'Livibile Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(24756, 'Livibile Tablet', 'Remedial Healthcare', 'Livibile Tablet', 'How does Livibile Tablet help the liver?', 'Livibile Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(24757, 'Livibile Tablet', 'Remedial Healthcare', 'Livibile Tablet', 'Does Livibile Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livibile Tablet, but it is not common. The use of Livibile Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(24758, 'Livibile Tablet', 'Remedial Healthcare', 'Livibile Tablet', 'What should I avoid while taking Livibile Tablet?', 'While taking Livibile Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livibile Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livibile Tablet. So, ask your doctor about the time gap that should be maintained between Livibile Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livibile Tablet.'),
(24759, 'Livicef 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 1000mg Injection', 'Is Livicef 1000mg Injection safe?', 'Livicef 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24760, 'Livicef 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 1000mg Injection', 'How long does Livicef 1000mg Injection take to work?', 'Usually, Livicef 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(24761, 'Livicef 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 1000mg Injection', 'Who should not take Livicef 1000mg Injection?', 'Livicef 1000mg Injection should not be prescribed to people who are allergic to Livicef 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Livicef 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(24762, 'Livicef 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 1000mg Injection', 'What if I do not get better after using Livicef 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(24763, 'Livicef 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 1000mg Injection', 'For how long does Livicef 1000mg Injection stay in the body?', 'Usually, Livicef 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(24764, 'Livicef 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 1000mg Injection', 'Is Livicef 1000mg Injection effective?', 'Livicef 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livicef 1000mg Injection too early, the symptoms may return or worsen.'),
(24765, 'Livicef 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 1000mg Injection', 'How is Livicef 1000mg Injection administered?', 'Livicef 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Livicef 1000mg Injection.'),
(24766, 'Livicef 500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 500mg Injection', 'Is Livicef 500mg Injection safe?', 'Livicef 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24767, 'Livicef 500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 500mg Injection', 'How long does Livicef 500mg Injection take to work?', 'Usually, Livicef 500mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(24768, 'Livicef 500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 500mg Injection', 'Who should not take Livicef 500mg Injection?', 'Livicef 500mg Injection should not be prescribed to people who are allergic to Livicef 500mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Livicef 500mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(24769, 'Livicef 500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 500mg Injection', 'What if I do not get better after using Livicef 500mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(24770, 'Livicef 500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 500mg Injection', 'For how long does Livicef 500mg Injection stay in the body?', 'Usually, Livicef 500mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(24771, 'Livicef 500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 500mg Injection', 'Is Livicef 500mg Injection effective?', 'Livicef 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livicef 500mg Injection too early, the symptoms may return or worsen.'),
(24772, 'Livicef 500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef 500mg Injection', 'How is Livicef 500mg Injection administered?', 'Livicef 500mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Livicef 500mg Injection.'),
(24773, 'Livicef S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef S 1000mg/500mg Injection', 'Q. Can the use of Livicef S 1000mg/500mg Injection cause allergic reaction?', 'Yes, Livicef S 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(24774, 'Livicef S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef S 1000mg/500mg Injection', 'Q. Can the use of Livicef S 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Livicef S 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24775, 'Livicef S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef S 1000mg/500mg Injection', 'Q. How long does Livicef S 1000mg/500mg Injection takes to work?', 'Usually, Livicef S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(24776, 'Livicef S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef S 1000mg/500mg Injection', 'Q. What if I don\'t get better after using Livicef S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(24777, 'Livicef S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livicef S 1000mg/500mg Injection', 'Q. Can I stop taking Livicef S 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Livicef S 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(24778, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'What is Livigrain Tablet?', 'Livigrain Tablet is a combination of four medicines: Paracetamol, Ergotamine, Caffeine and Prochlorperazine. This medicine is used in the treatment of migraine symptoms like a headache, nausea and vomiting. Ergotamine prevents blood vessels in the head from expanding. Caffeine increases the absorption of ergotamine and also narrows the widened blood vessels. Paracetamol blocks the release of certain chemical messengers in the brain that causes pain. Prochlorperazine is an antiemetic which prevents vomiting by blocking signals to the part of your brain that cause nausea/vomiting.'),
(24779, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'What can cause or trigger a migraine attack?', 'Certain physical or environmental factors, such as foods, hormonal changes, weather and stress can lead to or “trigger” a migraine. However, it is important to remember that triggers can be different for everyone. That is why, to help prevent migraine attacks, you need to figure out which triggers affect you and which ones do not. Keeping a headache diary is an effective way to track triggers, and it will help you talk to your healthcare professional about your condition.'),
(24780, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'Can I stop taking Livigrain Tablet when my migraine symptoms are relieved?', 'Livigrain Tablet is usually used for prevention and treatment of migraine attack. Livigrain Tablet should be continued as advised by the doctor.'),
(24781, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'Can the use of Livigrain Tablet cause constipation?', 'Yes, the use of Livigrain Tablet can cause constipation. Lifestyle changes like eating a good amount of high-fiber foods such as fresh fruits, vegetables and cereals, drinking plenty of water or other fluids and regular exercise can help relieve constipation.'),
(24782, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'Can the use of Livigrain Tablet cause dry mouth?', 'Yes, the use of Livigrain Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(24783, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Livigrain Tablet can increase the risk of side effects. If you are experiencing increased severity of migraine attacks which are not relieved by the recommended dose of this medicine, please consult your doctor for re-evaluation.'),
(24784, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'Does Livigrain Tablet expire?', 'Yes, Livigrain Tablet does expire. Please check the expiry date written on the pack of this medicine. Do not use Livigrain Tablet after the expiry date.'),
(24785, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'What is Livigrain Tablet?', 'Livigrain Tablet is a combination of four medicines: Paracetamol, Ergotamine, Caffeine and Prochlorperazine. This medicine is used in the treatment of migraine symptoms like a headache, nausea and vomiting. Ergotamine prevents blood vessels in the head from expanding. Caffeine increases the absorption of ergotamine and also narrows the widened blood vessels. Paracetamol blocks the release of certain chemical messengers in the brain that causes pain. Prochlorperazine is an antiemetic which prevents vomiting by blocking signals to the part of your brain that cause nausea/vomiting.'),
(24786, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'What is a migraine?', 'A migraine is characterized by severe throbbing pain on one side of the head. The pain is usually pulsating in nature and is accompanied by nausea, vomiting, and sensitivity to light, sound and smell. The symptoms and severity vary from person to person.'),
(24787, 'Livigrain Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrain Tablet', 'What can cause or trigger a migraine attack?', 'Certain physical or environmental factors, such as foods, hormonal changes, weather and stress can lead to or “trigger” a migraine. However, it is important to remember that triggers can be different for everyone. That is why, to help prevent migraine attacks, you need to figure out which triggers affect you and which ones do not. Keeping a headache diary is an effective way to track triggers, and it will help you talk to your healthcare professional about your condition.'),
(24788, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. What is Livigrel 75mg Tablet used for?', 'Livigrel 75mg Tablet is used to prevent formation of blood clots, thus reducing the risk of heart attacks or stroke. It facilitates smooth circulation of blood in the body by reducing the ability of the platelets to stick together, that could otherwise lead to formation of harmful clots in hardened blood vessels.'),
(24789, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. Is Livigrel 75mg Tablet a blood thinner?', 'Yes, Livigrel 75mg Tablet is an antiplatelet medicine which is also known as a blood thinner. It makes your blood flow more easily through your blood vessels and prevents formation of harmful blood clots. This lowers your chances of heart attack or stroke.'),
(24790, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. When should you take Livigrel 75mg Tablet?', 'You should take Livigrel 75mg Tablet exactly as prescribed by the doctor. You can take it with or without food, at any time of the day. However, it is important to take it regularly at the same time each day for best results. This will also help you to remember to take it daily.'),
(24791, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. Does Livigrel 75mg Tablet affect blood pressure?', 'Yes, Livigrel 75mg Tablet may rarely cause a decrease in blood pressure as a side effect. However, this is very rare and does not affect everyone. Consult your doctor if you feel dizzy, lightheaded, weak or have a blurred vision. These are signs and symptoms of low blood pressure and therefore, you should contact your doctor immediately.'),
(24792, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. Who should not take Livigrel 75mg Tablet?', 'Livigrel 75mg Tablet is not recommended for people who are allergic to it, have severe liver disease, have stomach ulcers, bleeding in the brain, or have a bleeding disorder known as hemophilia (disease in which blood does not clot normally).'),
(24793, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. Can I take alcohol with Livigrel 75mg Tablet?', 'Yes, you can take alcohol with Livigrel 75mg Tablet. However, excessive intake of alcohol should be avoided as it can irritate the inner lining of the stomach and this increases the risk of developing a stomach ulcer later.'),
(24794, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. Can Omeprazole be taken along with Livigrel 75mg Tablet?', 'Omeprazole ( a proton pump inhibitor or PPI used to treat and prevent indigestion) may interfere with the working of Livigrel 75mg Tablet and reduce the effect of Livigrel 75mg Tablet. Your doctor may prescribe an alternate PPI like lansoprazole, if you suffer from indigestion or if they judge that it would be beneficial to you. You should let your doctor know about all the medicines that have been prescribed to you before starting Livigrel 75mg Tablet. Always consult your doctor before taking any medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24795, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. What are the side effects of taking Livigrel 75mg Tablet?', 'The most common side effect of Livigrel 75mg Tablet is bleeding. This may lead to bruising on the skin, nosebleeds,  blood in the urine or stools (black tarry stools), or heavier periods than usual in females. Rarely, bleeding may also occur in the head, eyes, lungs, or joints and may even be severe. In case you have a minor injury, such as a small cut while shaving, bleeding may take longer than usual to stop. Get emergency medical help if the bleeding is profuse, does not stop on it’s own, or bothers you. Other side effects of Livigrel 75mg Tablet that may be seen occasionally in some people include diarrhea, abdominal pain, indigestion or heartburn. Please consult your doctor if any of these side effects persist or worry you.'),
(24796, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. What will happen if I stop taking Livigrel 75mg Tablet?', 'If you stop taking Livigrel 75mg Tablet suddenly, your chances of heart attack or stroke may increase. These conditions can be fatal. Do not stop taking it without talking to your doctor, otherwise your condition may worsen. Continue taking Livigrel 75mg Tablet for as long as prescribed by your doctor to get maximum benefit.'),
(24797, 'Livigrel 75mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel 75mg Tablet', 'Q. How long does it take Livigrel 75mg Tablet to start working? How long do I need to take it?', 'Clopiogrel starts working within 2 hours of taking it. Continue taking it as long as your doctor has advised you. You may have to take it for a few weeks or months, or you may have to take it for the rest of your life.'),
(24798, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'Why have I been prescribed Livigrel A 150mg/75mg Capsule?', 'You may have been prescribed Livigrel A 150mg/75mg Capsule if you had a heart attack, were treated with stents in your coronary arteries, or had coronary artery bypass graft surgery (CABG).'),
(24799, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'Is Livigrel A 150mg/75mg Capsule a blood thinner?', 'Yes, Livigrel A 150mg/75mg Capsule is a type of blood thinner. It works by preventing platelets (type of blood cells) from sticking together and forming clots. This action of Livigrel A 150mg/75mg Capsule helps in preventing conditions like heart attack or stroke in people with heart disease, who have recently suffered a heart attack or severe heart-related chest pain (unstable angina).'),
(24800, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'How long do I need to take Livigrel A 150mg/75mg Capsule after stent insertion?', 'Your doctor will suggest the exact duration for which you may have to take Livigrel A 150mg/75mg Capsule. The duration will be decided after considering various factors like the illness you are being treated for, type of stent inserted, any episodes of bleeding experienced by you during treatment, etc. Usually, Livigrel A 150mg/75mg Capsule is prescribed for a minimum duration of 1 year. However, it is advised to follow your doctor\'s advice precisely to get maximum benefit of Livigrel A 150mg/75mg Capsule. Do not stop the medication on your own, consult your doctor first. Sudden discontinuation may increase the chances of clot formation in the stent, heart attack and can even lead to death.'),
(24801, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'Can I drink alcohol while taking Livigrel A 150mg/75mg Capsule?', 'It is not advised to take alcohol while taking Livigrel A 150mg/75mg Capsule, as alcohol may increase your chance of stomach bleeding. As a result, you may vomit blood (which may be bright red blood or black/dark brown like coffee grounds) or you may have bloody or black tarry stools. Discuss with your doctor if you are not sure.'),
(24802, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'What is the most important information I need to know about Livigrel A 150mg/75mg Capsule?', 'Livigrel A 150mg/75mg Capsule may cause serious or life-threatening bleeding. Moreover, you may bruise easily and it may take longer than usual for bleeding to stop even if you have a minor injury like a small cut while shaving. Get emergency medical help if you notice excessive or prolonged bleeding. You should inform your doctor if you notice black tarry stools or if there is blood in the urine. Be vigilant on any signs of stroke such as sudden numbness or weakness (one side or both sides of the body), difficulty walking, mental confusion, slurred speech, dizziness and any unexplained headache. Contact your doctor immediately if you develop any such signs of stroke as stroke is an uncommon side effect of Livigrel A 150mg/75mg Capsule and needs urgent medical attention as it can otherwise be fatal.'),
(24803, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'Do I need to stop Livigrel A 150mg/75mg Capsule before surgery?', 'Your doctor will decide whether you need to stop taking Livigrel A 150mg/75mg Capsule before any surgery or treatment or not. Usually, if a surgery or treatment is planned beforehand, the doctor may stop Livigrel A 150mg/75mg Capsule a few days (usually 7 days) before the surgery or treatment owing to the increased risk of bleeding during the procedure. You should not stop taking Livigrel A 150mg/75mg Capsule on your own without discussing it with your doctor.'),
(24804, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'Who should not take Livigrel A 150mg/75mg Capsule?', 'Livigrel A 150mg/75mg Capsule is not recommended for people who are allergic to it or any of its ingredients. Do not take Livigrel A 150mg/75mg Capsule if you have or ever had severe liver disease, stomach ulcers, bleeding in the brain (stroke or a transient ischemic attack, also known as TIA), or if you have a bleeding disorder known as hemophilia (disease in which blood does not clot normally). Additionally, avoid taking Livigrel A 150mg/75mg Capsule if you are trying to get pregnant, already pregnant, or breastfeeding.'),
(24805, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'What if I forget to take a dose of Livigrel A 150mg/75mg Capsule?', 'If you forget to take a dose of Livigrel A 150mg/75mg Capsule, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24806, 'Livigrel A 150mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 150mg/75mg Capsule', 'What should I avoid while taking Livigrel A 150mg/75mg Capsule?', 'Avoid activities that may increase your chances of bleeding. Be extra careful while shaving or brushing your teeth to prevent bleeding. Also, you should avoid taking painkillers, but if you need to take one like ibuprofen for joint pain, headache, backache, etc. then consult your doctor first. This is because taking pain killers with Livigrel A 150mg/75mg Capsule may increase your chances of developing a stomach ulcer and bleeding. Refrain from taking excessive alcohol with Livigrel A 150mg/75mg Capsule as it can irritate your stomach and lead to a stomach ulcer as well.'),
(24807, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'Why have I been prescribed Livigrel A 75mg/75mg Capsule?', 'You may have been prescribed Livigrel A 75mg/75mg Capsule if you had a heart attack, were treated with stents in your coronary arteries, or had coronary artery bypass graft surgery (CABG).'),
(24808, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'Is Livigrel A 75mg/75mg Capsule a blood thinner?', 'Yes, Livigrel A 75mg/75mg Capsule is a type of blood thinner. It works by preventing platelets (type of blood cells) from sticking together and forming clots. This action of Livigrel A 75mg/75mg Capsule helps in preventing conditions like heart attack or stroke in people with heart disease, who have recently suffered a heart attack or severe heart-related chest pain (unstable angina).'),
(24809, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'How long do I need to take Livigrel A 75mg/75mg Capsule after stent insertion?', 'Your doctor will suggest the exact duration for which you may have to take Livigrel A 75mg/75mg Capsule. The duration will be decided after considering various factors like the illness you are being treated for, type of stent inserted, any episodes of bleeding experienced by you during treatment, etc. Usually, Livigrel A 75mg/75mg Capsule is prescribed for a minimum duration of 1 year. However, it is advised to follow your doctor\'s advice precisely to get maximum benefit of Livigrel A 75mg/75mg Capsule. Do not stop the medication on your own, consult your doctor first. Sudden discontinuation may increase the chances of clot formation in the stent, heart attack and can even lead to death.'),
(24810, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'Can I drink alcohol while taking Livigrel A 75mg/75mg Capsule?', 'It is not advised to take alcohol while taking Livigrel A 75mg/75mg Capsule, as alcohol may increase your chance of stomach bleeding. As a result, you may vomit blood (which may be bright red blood or black/dark brown like coffee grounds) or you may have bloody or black tarry stools. Discuss with your doctor if you are not sure.'),
(24811, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'What is the most important information I need to know about Livigrel A 75mg/75mg Capsule?', 'Livigrel A 75mg/75mg Capsule may cause serious or life-threatening bleeding. Moreover, you may bruise easily and it may take longer than usual for bleeding to stop even if you have a minor injury like a small cut while shaving. Get emergency medical help if you notice excessive or prolonged bleeding. You should inform your doctor if you notice black tarry stools or if there is blood in the urine. Be vigilant on any signs of stroke such as sudden numbness or weakness (one side or both sides of the body), difficulty walking, mental confusion, slurred speech, dizziness and any unexplained headache. Contact your doctor immediately if you develop any such signs of stroke as stroke is an uncommon side effect of Livigrel A 75mg/75mg Capsule and needs urgent medical attention as it can otherwise be fatal.'),
(24812, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'Do I need to stop Livigrel A 75mg/75mg Capsule before surgery?', 'Your doctor will decide whether you need to stop taking Livigrel A 75mg/75mg Capsule before any surgery or treatment or not. Usually, if a surgery or treatment is planned beforehand, the doctor may stop Livigrel A 75mg/75mg Capsule a few days (usually 7 days) before the surgery or treatment owing to the increased risk of bleeding during the procedure. You should not stop taking Livigrel A 75mg/75mg Capsule on your own without discussing it with your doctor.'),
(24813, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'Who should not take Livigrel A 75mg/75mg Capsule?', 'Livigrel A 75mg/75mg Capsule is not recommended for people who are allergic to it or any of its ingredients. Do not take Livigrel A 75mg/75mg Capsule if you have or ever had severe liver disease, stomach ulcers, bleeding in the brain (stroke or a transient ischemic attack, also known as TIA), or if you have a bleeding disorder known as hemophilia (disease in which blood does not clot normally). Additionally, avoid taking Livigrel A 75mg/75mg Capsule if you are trying to get pregnant, already pregnant, or breastfeeding.'),
(24814, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'What if I forget to take a dose of Livigrel A 75mg/75mg Capsule?', 'If you forget to take a dose of Livigrel A 75mg/75mg Capsule, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24815, 'Livigrel A 75mg/75mg Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Livigrel A 75mg/75mg Capsule', 'What should I avoid while taking Livigrel A 75mg/75mg Capsule?', 'Avoid activities that may increase your chances of bleeding. Be extra careful while shaving or brushing your teeth to prevent bleeding. Also, you should avoid taking painkillers, but if you need to take one like ibuprofen for joint pain, headache, backache, etc. then consult your doctor first. This is because taking pain killers with Livigrel A 75mg/75mg Capsule may increase your chances of developing a stomach ulcer and bleeding. Refrain from taking excessive alcohol with Livigrel A 75mg/75mg Capsule as it can irritate your stomach and lead to a stomach ulcer as well.'),
(24816, 'Liviguard 5mg Infusion', 'I.I.F.A Health Care', 'Liviguard 5mg Infusion', 'Is it ok to take alcohol when taking Liviguard 5mg Infusion?', 'No, it is not recommended to take alcohol when on Liviguard 5mg Infusion. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24817, 'Liviguard 5mg Infusion', 'I.I.F.A Health Care', 'Liviguard 5mg Infusion', 'What is Liviguard 5mg Infusion?', 'Liviguard 5mg Infusion is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24818, 'Liviguard 5mg Infusion', 'I.I.F.A Health Care', 'Liviguard 5mg Infusion', 'What is the use of Liviguard 5mg Infusion in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Liviguard 5mg Infusion works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24819, 'Liviguard 5mg Infusion', 'I.I.F.A Health Care', 'Liviguard 5mg Infusion', 'How is Liviguard 5mg Infusion given?', 'Liviguard 5mg Infusion can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24820, 'Livin 250mg Tablet', 'Versatil Pharmaceuticals Pvt Ltd', 'Livin 250mg Tablet', 'Is Livin 250mg Tablet safe?', 'Livin 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24821, 'Livin 250mg Tablet', 'Versatil Pharmaceuticals Pvt Ltd', 'Livin 250mg Tablet', 'What if I forget to take a dose of Livin 250mg Tablet?', 'If you forget a dose of Livin 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24822, 'Livin 250mg Tablet', 'Versatil Pharmaceuticals Pvt Ltd', 'Livin 250mg Tablet', 'Can the use of Livin 250mg Tablet cause diarrhea?', 'Yes, the use of Livin 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24823, 'Livin 250mg Tablet', 'Versatil Pharmaceuticals Pvt Ltd', 'Livin 250mg Tablet', 'Can I stop taking Livin 250mg Tablet when I feel better?', 'No, do not stop taking Livin 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livin 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livin 250mg Tablet in the dose and duration advised by the doctor.'),
(24824, 'Livin 250mg Tablet', 'Versatil Pharmaceuticals Pvt Ltd', 'Livin 250mg Tablet', 'Can the use of Livin 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livin 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livin 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24825, 'Livinix 500 Tablet', 'Tansy Molequle', 'Livinix 500 Tablet', 'Is Livinix 500 Tablet safe?', 'Livinix 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24826, 'Livinix 500 Tablet', 'Tansy Molequle', 'Livinix 500 Tablet', 'What if I forget to take a dose of Livinix 500 Tablet?', 'If you forget a dose of Livinix 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24827, 'Livinix 500 Tablet', 'Tansy Molequle', 'Livinix 500 Tablet', 'Can the use of Livinix 500 Tablet cause diarrhea?', 'Yes, the use of Livinix 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24828, 'Livinix 500 Tablet', 'Tansy Molequle', 'Livinix 500 Tablet', 'Can I stop taking Livinix 500 Tablet when I feel better?', 'No, do not stop taking Livinix 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livinix 500 Tablet too early, the symptoms may return or worsen. Continue taking Livinix 500 Tablet in the dose and duration advised by the doctor.'),
(24829, 'Livinix 500 Tablet', 'Tansy Molequle', 'Livinix 500 Tablet', 'Can the use of Livinix 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livinix 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livinix 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24830, 'Livinix OZ 250mg/500mg Tablet', 'Tansy Molequle', 'Livinix OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Livinix OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(24831, 'Livinix OZ 250mg/500mg Tablet', 'Tansy Molequle', 'Livinix OZ 250mg/500mg Tablet', 'Can I stop taking Livinix OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livinix OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(24832, 'Livinix OZ 250mg/500mg Tablet', 'Tansy Molequle', 'Livinix OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livinix OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(24833, 'Livinol 5gm Injection', 'Euro Organics', 'Livinol 5gm Injection', 'Is it ok to take alcohol when taking Livinol 5gm Injection?', 'No, it is not recommended to take alcohol when on Livinol 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24834, 'Livinol 5gm Injection', 'Euro Organics', 'Livinol 5gm Injection', 'What is Livinol 5gm Injection?', 'Livinol 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24835, 'Livinol 5gm Injection', 'Euro Organics', 'Livinol 5gm Injection', 'What is the use of Livinol 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livinol 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24836, 'Livinol 5gm Injection', 'Euro Organics', 'Livinol 5gm Injection', 'How is Livinol 5gm Injection given?', 'Livinol 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24837, 'Livinzed 600mg Tablet', 'Medburg Medical Products Pvt Ltd', 'Livinzed 600mg Tablet', 'Can the use of Livinzed 600mg Tablet cause diarrhea?', 'Yes, the use of Livinzed 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24838, 'Livinzed 600mg Tablet', 'Medburg Medical Products Pvt Ltd', 'Livinzed 600mg Tablet', 'What foods should I avoid while taking Livinzed 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Livinzed 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(24839, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Livipen IV 1000mg Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Livipen IV 1000mg Injection. Medicines like Livipen IV 1000mg Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.'),
(24840, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'Even though Livipen IV 1000mg Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Livipen IV 1000mg Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(24841, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'Is Livipen IV 1000mg Injection a strong antibiotic? Which infections does it treat?', 'Livipen IV 1000mg Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(24842, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'Is Livipen IV 1000mg Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Livipen IV 1000mg Injection is effective only against bacteria. It is not effective against virus or fungal infections. Livipen IV 1000mg Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.'),
(24843, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'My cousin was receiving Livipen IV 1000mg Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Livipen IV 1000mg Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Livipen IV 1000mg Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(24844, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'For how long will I need to take Livipen IV 1000mg Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Livipen IV 1000mg Injection. Consult your doctor if you are not sure.'),
(24845, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'What if Livipen IV 1000mg Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Livipen IV 1000mg Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Livipen IV 1000mg Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(24846, 'Livipen IV 1000mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livipen IV 1000mg Injection', 'Does it matter if I miss or stop Livipen IV 1000mg Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Livipen IV 1000mg Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(24847, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'What is Liviplus P Capsule?', 'Liviplus P Capsule is a combination of five medicines: Pregabalin, Methylcobalamin, Folic acid, Alpha lipoic acid, and Vitamin B6. This medicine is useful in the treatment of nerve pain (neuropathic pain). This medicine calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(24848, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'Can I stop taking Liviplus P Capsule when my pain is relieved?', 'No, you should not stop taking Liviplus P Capsule even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Liviplus P Capsule, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Liviplus P Capsule before you stop the medication completely.'),
(24849, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'How to manage weight gain associated with the use of Liviplus P Capsule?', 'Liviplus P Capsule can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(24850, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'Can the use of Liviplus P Capsule cause sleepiness or drowsiness?', 'Yes, Liviplus P Capsule may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(24851, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'Are there any serious side effects associated with the use of Liviplus P Capsule?', 'Serious side effects because of Liviplus P Capsule are uncommon and rare. However, it may cause serious side effects like an allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Liviplus P Capsule and contact your health care provider if you have any signs of these serious side effects. Signs of allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck, trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to sudden changes in mood, behaviors, thoughts, or feelings as these may be a symptom of suicidal thoughts.'),
(24852, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'How long will Liviplus P Capsule take to act?', 'An initial benefit with Liviplus P Capsule may be seen after 2 weeks of treatment. However, it may take around 2-3 months to see the full benefit. It may take longer in some patients.'),
(24853, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'What if I forget to take Liviplus P Capsule?', 'If you forget to take the scheduled dose of Liviplus P Capsule and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(24854, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Symptoms of an overdose may include drowsiness, weakness, unsteadiness while walking, having double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(24855, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'Will a higher than the recommended dose of Liviplus P Capsule be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(24856, 'Liviplus P Capsule', 'Lividus Pharmaceuticals Pvt Ltd', 'Liviplus P Capsule', 'Can I drink alcohol while taking Liviplus P Capsule?', 'No, do not drink alcohol while you are taking Liviplus P Capsule. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Liviplus P Capsule.'),
(24857, 'Livit 5mg Tablet', 'Affy Pharma Pvt Ltd', 'Livit 5mg Tablet', 'Is Livit 5mg Tablet a steroid? What is it used for?', 'No, Livit 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24858, 'Livit 5mg Tablet', 'Affy Pharma Pvt Ltd', 'Livit 5mg Tablet', 'Does Livit 5mg Tablet make you tired and drowsy?', 'Yes, Livit 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24859, 'Livit 5mg Tablet', 'Affy Pharma Pvt Ltd', 'Livit 5mg Tablet', 'How long does it take for Livit 5mg Tablet to work?', 'Livit 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24860, 'Livit 5mg Tablet', 'Affy Pharma Pvt Ltd', 'Livit 5mg Tablet', 'Can I take Livit 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livit 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24861, 'Livit 5mg Tablet', 'Affy Pharma Pvt Ltd', 'Livit 5mg Tablet', 'Is it safe to take Livit 5mg Tablet for a long time?', 'Livit 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livit 5mg Tablet for only as long as you need it.'),
(24862, 'Livit 5mg Tablet', 'Affy Pharma Pvt Ltd', 'Livit 5mg Tablet', 'For how long should I continue Livit 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livit 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livit 5mg Tablet'),
(24863, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. Is Livithrozee 500mg Tablet safe?', 'Livithrozee 500mg Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(24864, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Livithrozee 500mg Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(24865, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. Can the use of Livithrozee 500mg Tablet cause diarrhea?', 'Yes, the use of Livithrozee 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24866, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. Can Livithrozee 500mg Tablet be taken at night?', 'Livithrozee 500mg Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Livithrozee 500mg Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(24867, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. How long does it take Livithrozee 500mg Tablet to work?', 'Livithrozee 500mg Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(24868, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. Why is Livithrozee 500mg Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Livithrozee 500mg Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(24869, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. What should I avoid while taking Livithrozee 500mg Tablet?', 'Generally, it is recommended that patients taking Livithrozee 500mg Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Livithrozee 500mg Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Livithrozee 500mg Tablet increases the risk of sunburn.'),
(24870, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. Is Livithrozee 500mg Tablet a strong antibiotic?', 'Livithrozee 500mg Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Livithrozee 500mg Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(24871, 'Livithrozee 500mg Tablet', 'Biolive Pharmaceuticals', 'Livithrozee 500mg Tablet', 'Q. Can you get a yeast infection from taking Livithrozee 500mg Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Livithrozee 500mg Tablet. Antibiotics such as Livithrozee 500mg Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Livithrozee 500mg Tablet or soon after stopping it.'),
(24872, 'Livive 150mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 150mg Tablet', 'Is it ok to take alcohol when taking Livive 150mg Tablet?', 'No, it is not recommended to take alcohol when on Livive 150mg Tablet. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24873, 'Livive 150mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 150mg Tablet', 'What is Livive 150mg Tablet?', 'Livive 150mg Tablet is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24874, 'Livive 150mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 150mg Tablet', 'Is it safe to give Livive 150mg Tablet to pregnant or lactating women?', 'Livive 150mg Tablet is not recommended for use in pregnant or breastfeeding women unless absolutely necessary. It is advised that if your doctor prescribes you this medicine then you must discuss all the risks and benefits associated with this medicine.'),
(24875, 'Livive 150mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 150mg Tablet', 'What is the use of Livive 150mg Tablet in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livive 150mg Tablet works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24876, 'Livive 150mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 150mg Tablet', 'How is Livive 150mg Tablet given?', 'Livive 150mg Tablet can be given orally, with or without food. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24877, 'Livive 500mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 500mg Tablet', 'Is it ok to take alcohol when taking Livive 500mg Tablet?', 'No, it is not recommended to take alcohol when on Livive 500mg Tablet. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24878, 'Livive 500mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 500mg Tablet', 'What is Livive 500mg Tablet?', 'Livive 500mg Tablet is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24879, 'Livive 500mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 500mg Tablet', 'Is it safe to give Livive 500mg Tablet to pregnant or lactating women?', 'Livive 500mg Tablet is not recommended for use in pregnant or breastfeeding women unless absolutely necessary. It is advised that if your doctor prescribes you this medicine then you must discuss all the risks and benefits associated with this medicine.'),
(24880, 'Livive 500mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 500mg Tablet', 'What is the use of Livive 500mg Tablet in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livive 500mg Tablet works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24881, 'Livive 500mg Tablet', 'Emcure Pharmaceuticals Ltd', 'Livive 500mg Tablet', 'How is Livive 500mg Tablet given?', 'Livive 500mg Tablet can be given orally, with or without food. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24882, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'Does Livixiga 10mg Tablet cause weight loss?', 'Yes, Livixiga 10mg Tablet may cause weight loss in some patients. However, it is an uncommon side effect. If you experience sudden weight gain or have any concerns regarding your weight, discuss it with your doctor.'),
(24883, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'What are the side effects of Livixiga 10mg Tablet?', 'The use of Livixiga 10mg Tablet may cause symptoms such as stuffy or runny nose, sore throat, vaginal yeast infections, and yeast infections of the penis. In addition to that, one may experience frequent urination throughout the day or at night, and changes in quantity of urine.'),
(24884, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'What is Livixiga 10mg Tablet used for?', 'Livixiga 10mg Tablet is used to lower blood glucose levels in type 2 diabetes. In type 2 diabetes, the body is not able to use the produced insulin properly. This leads to an increase in the levels of sugar in your blood. Livixiga 10mg Tablet works by removing excess sugar from your body via your urine. In addition to that, it can also help prevent heart disease.'),
(24885, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'Is Livixiga 10mg Tablet safe to use?', 'Yes, Livixiga 10mg Tablet is safe when used as directed by the doctor. However, it may show some side effects. For best results, it should be used in the correct dose and at the same time each day.'),
(24886, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'Can I stop taking Livixiga 10mg Tablet?', 'No, do not stop taking Livixiga 10mg Tablet without talking to your doctor first. Sudden discontinuation of medicine may make your diabetes worse. Inform your doctor if your symptoms bother you or if  there is no considerable improvement in your condition. The doctor may suggest some other medicine which could be more effective in treating your diabetes.'),
(24887, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'Who should not take Livixiga 10mg Tablet?', 'Patients allergic to Livixiga 10mg Tablet should avoid using this medicine. Also, it is highly recommended that patients who are on dialysis or have severe kidney problems should not use Livixiga 10mg Tablet.'),
(24888, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'Can I take Livixiga 10mg Tablet before surgery?', 'Inform your doctor that you are taking Livixiga 10mg Tablet before going for the surgery. The doctor may ask you to stop taking your Livixiga 10mg Tablet tablets before your operation. This is done because there is a risk of developing diabetic ketoacidosis (a serious condition that may develop if high blood sugar is not treated).'),
(24889, 'Livixiga 10mg Tablet', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixiga 10mg Tablet', 'Why did my doctor prescribe Livixiga 10mg Tablet along with metformin?', 'For some people, taking metformin alone can effectively lower blood sugar levels. But, evidence suggests that adding Livixiga 10mg Tablet to metformin therapy may provide better control over the increased blood sugar levels in some people. So, maybe your doctor prescribed the combined use of metformin with Livixiga 10mg Tablet to provide the extra help you need.'),
(24890, 'Livixim 100mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 100mg Syrup', 'How long should I take Livixim 100mg Syrup?', 'Livixim 100mg Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(24891, 'Livixim 100mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 100mg Syrup', 'What if I do not get better after using Livixim 100mg Syrup?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(24892, 'Livixim 100mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 100mg Syrup', 'Can the use of Livixim 100mg Syrup cause diarrhea?', 'Yes, the use of Livixim 100mg Syrup can cause diarrhea. Livixim 100mg Syrup is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(24893, 'Livixim 100mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 100mg Syrup', 'Is Livixim 100mg Syrup effective?', 'Livixim 100mg Syrup is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livixim 100mg Syrup too early, the symptoms may return or worsen.'),
(24894, 'Livixim 100mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 100mg Syrup', 'What if I forget to take a dose of Livixim 100mg Syrup?', 'If you forget a dose of Livixim 100mg Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24895, 'Livixim 100mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 100mg Syrup', 'Is Livixim 100mg Syrup safe for the kidneys?', 'Yes, Livixim 100mg Syrup is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(24896, 'Livixim 100mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 100mg Syrup', 'How long should I take Livixim 100mg Syrup?', 'Livixim 100mg Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(24897, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'What if I give too much of Livixim 50mg Syrup by mistake?', 'An extra dose of Livixim 50mg Syrup is unlikely to do harm. However, if you think you have given too much of Livixim 50mg Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(24898, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'Are there any possible serious side effects of Livixim 50mg Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(24899, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'Can other medicines be given at the same time as Livixim 50mg Syrup?', 'Livixim 50mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livixim 50mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(24900, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'Can I get my child vaccinated while on treatment with Livixim 50mg Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(24901, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'Which lab tests may my child undergo while taking Livixim 50mg Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(24902, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(24903, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(24904, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'Can Livixim 50mg Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Livixim 50mg Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Livixim 50mg Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(24905, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'Can Livixim 50mg Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Livixim 50mg Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(24906, 'Livixim 50mg Syrup', 'Lividus Pharmaceuticals Pvt Ltd', 'Livixim 50mg Syrup', 'How long should I take Livixim 50mg Syrup?', 'Livixim 50mg Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(24907, 'Liviz Tablet', 'Linux Laboratories', 'Liviz Tablet', 'Can the use of Liviz Tablet cause indigestion?', 'Liviz Tablet may cause indigestion. However, taking it with or after food can prevent indigestion. Talk to your doctor if you indigestion persists.'),
(24908, 'Liviz Tablet', 'Linux Laboratories', 'Liviz Tablet', 'What are the recommended storage conditions for Liviz Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24909, 'Livizone S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livizone S 1000mg/500mg Injection', 'What is Livizone S 1000mg/500mg Injection?', 'Livizone S 1000mg/500mg Injection is a combination of two medicines: Cefoperazone and Sulbactam. Cefoperazone is an antibiotic which works by preventing the formation of the bacterial protective covering which is essential for the survival of bacteria. Sulbactam is a beta-lactamase inhibitor which reduces resistance and enhances the activity of Cefoperazone against bacteria.'),
(24910, 'Livizone S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livizone S 1000mg/500mg Injection', 'How long does Livizone S 1000mg/500mg Injection takes to work?', 'Usually, Livizone S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(24911, 'Livizone S 1000mg/500mg Injection', 'Lividus Pharmaceuticals Pvt Ltd', 'Livizone S 1000mg/500mg Injection', 'What if I don\'t get better after using Livizone S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(24912, 'Livklox 500mg Tablet', 'Urochem Biotech', 'Livklox 500mg Tablet', 'Is Livklox 500mg Tablet safe?', 'Livklox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24913, 'Livklox 500mg Tablet', 'Urochem Biotech', 'Livklox 500mg Tablet', 'What if I forget to take a dose of Livklox 500mg Tablet?', 'If you forget a dose of Livklox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24914, 'Livklox 500mg Tablet', 'Urochem Biotech', 'Livklox 500mg Tablet', 'Can the use of Livklox 500mg Tablet cause diarrhea?', 'Yes, the use of Livklox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24915, 'Livklox 500mg Tablet', 'Urochem Biotech', 'Livklox 500mg Tablet', 'Can I stop taking Livklox 500mg Tablet when I feel better?', 'No, do not stop taking Livklox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livklox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livklox 500mg Tablet in the dose and duration advised by the doctor.'),
(24916, 'Livklox 500mg Tablet', 'Urochem Biotech', 'Livklox 500mg Tablet', 'Can the use of Livklox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livklox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livklox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24917, 'livlo 500mg Tablet', 'Shilar Pharmaceuticals', 'livlo 500mg Tablet', 'Is livlo 500mg Tablet safe?', 'livlo 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24918, 'livlo 500mg Tablet', 'Shilar Pharmaceuticals', 'livlo 500mg Tablet', 'What if I forget to take a dose of livlo 500mg Tablet?', 'If you forget a dose of livlo 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24919, 'livlo 500mg Tablet', 'Shilar Pharmaceuticals', 'livlo 500mg Tablet', 'Can the use of livlo 500mg Tablet cause diarrhea?', 'Yes, the use of livlo 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(24920, 'livlo 500mg Tablet', 'Shilar Pharmaceuticals', 'livlo 500mg Tablet', 'Can I stop taking livlo 500mg Tablet when I feel better?', 'No, do not stop taking livlo 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using livlo 500mg Tablet too early, the symptoms may return or worsen. Continue taking livlo 500mg Tablet in the dose and duration advised by the doctor.'),
(24921, 'livlo 500mg Tablet', 'Shilar Pharmaceuticals', 'livlo 500mg Tablet', 'Can the use of livlo 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of livlo 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take livlo 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(24922, 'Livmed 5mg Tablet', 'Medsyn Lab Biotech', 'Livmed 5mg Tablet', 'Is Livmed 5mg Tablet a steroid? What is it used for?', 'No, Livmed 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(24923, 'Livmed 5mg Tablet', 'Medsyn Lab Biotech', 'Livmed 5mg Tablet', 'Does Livmed 5mg Tablet make you tired and drowsy?', 'Yes, Livmed 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(24924, 'Livmed 5mg Tablet', 'Medsyn Lab Biotech', 'Livmed 5mg Tablet', 'How long does it take for Livmed 5mg Tablet to work?', 'Livmed 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(24925, 'Livmed 5mg Tablet', 'Medsyn Lab Biotech', 'Livmed 5mg Tablet', 'Can I take Livmed 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livmed 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(24926, 'Livmed 5mg Tablet', 'Medsyn Lab Biotech', 'Livmed 5mg Tablet', 'Is it safe to take Livmed 5mg Tablet for a long time?', 'Livmed 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livmed 5mg Tablet for only as long as you need it.'),
(24927, 'Livmed 5mg Tablet', 'Medsyn Lab Biotech', 'Livmed 5mg Tablet', 'For how long should I continue Livmed 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livmed 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livmed 5mg Tablet'),
(24928, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(24929, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Livmed Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(24930, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'How should Livmed Kid 2.5mg/4mg Tablet be stored?', 'Livmed Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(24931, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'Can Livmed Kid 2.5mg/4mg Tablet make my child sleepy?', 'Livmed Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(24932, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livmed Kid 2.5mg/4mg Tablet?', 'No, don’t start Livmed Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Livmed Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(24933, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livmed Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(24934, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Livmed Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Livmed Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(24935, 'Livmed Kid 2.5mg/4mg Tablet', 'Medsyn Lab Biotech', 'Livmed Kid 2.5mg/4mg Tablet', 'Can I use Livmed Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Livmed Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(24936, 'Livmed-M Tablet', 'Medsyn Lab Biotech', 'Livmed-M Tablet', 'What is Livmed-M Tablet?', 'Livmed-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24937, 'Livmed-M Tablet', 'Medsyn Lab Biotech', 'Livmed-M Tablet', 'Can the use of Livmed-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livmed-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24938, 'Livmed-M Tablet', 'Medsyn Lab Biotech', 'Livmed-M Tablet', 'Can Livmed-M Tablet be stopped when allergy symptoms are relieved?', 'No, Livmed-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24939, 'Livmed-M Tablet', 'Medsyn Lab Biotech', 'Livmed-M Tablet', 'Can the use of Livmed-M Tablet cause dry mouth?', 'Yes, the use of Livmed-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24940, 'Livmed-M Tablet', 'Medsyn Lab Biotech', 'Livmed-M Tablet', 'Can I drink alcohol while taking Livmed-M Tablet?', 'No, do not take alcohol while taking Livmed-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livmed-M Tablet.'),
(24941, 'Livmed-M Tablet', 'Medsyn Lab Biotech', 'Livmed-M Tablet', 'Will Livmed-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livmed-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24942, 'Livmed-M Tablet', 'Medsyn Lab Biotech', 'Livmed-M Tablet', 'What are the instructions for storage and disposal of Livmed-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24943, 'Livmerz Infusion', 'Vhl Pharmaceuticals Private Limited', 'Livmerz Infusion', 'Is it ok to take alcohol when taking Livmerz Infusion?', 'No, it is not recommended to take alcohol when on Livmerz Infusion. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(24944, 'Livmerz Infusion', 'Vhl Pharmaceuticals Private Limited', 'Livmerz Infusion', 'What is Livmerz Infusion?', 'Livmerz Infusion is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(24945, 'Livmerz Infusion', 'Vhl Pharmaceuticals Private Limited', 'Livmerz Infusion', 'What is the use of Livmerz Infusion in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livmerz Infusion works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(24946, 'Livmerz Infusion', 'Vhl Pharmaceuticals Private Limited', 'Livmerz Infusion', 'How is Livmerz Infusion given?', 'Livmerz Infusion can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(24947, 'Livmet 5mg/10mg Tablet', 'Oxymed Pharma', 'Livmet 5mg/10mg Tablet', 'What is Livmet 5mg/10mg Tablet?', 'Livmet 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24948, 'Livmet 5mg/10mg Tablet', 'Oxymed Pharma', 'Livmet 5mg/10mg Tablet', 'Can the use of Livmet 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livmet 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24949, 'Livmet 5mg/10mg Tablet', 'Oxymed Pharma', 'Livmet 5mg/10mg Tablet', 'Can Livmet 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livmet 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24950, 'Livmet 5mg/10mg Tablet', 'Oxymed Pharma', 'Livmet 5mg/10mg Tablet', 'Can the use of Livmet 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livmet 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24951, 'Livmet 5mg/10mg Tablet', 'Oxymed Pharma', 'Livmet 5mg/10mg Tablet', 'Can I drink alcohol while taking Livmet 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livmet 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livmet 5mg/10mg Tablet.'),
(24952, 'Livmet 5mg/10mg Tablet', 'Oxymed Pharma', 'Livmet 5mg/10mg Tablet', 'Will Livmet 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livmet 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24953, 'Livmet 5mg/10mg Tablet', 'Oxymed Pharma', 'Livmet 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livmet 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24954, 'Livmos 5mg/10mg Tablet', 'Bioneo Healthcare', 'Livmos 5mg/10mg Tablet', 'What is Livmos 5mg/10mg Tablet?', 'Livmos 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(24955, 'Livmos 5mg/10mg Tablet', 'Bioneo Healthcare', 'Livmos 5mg/10mg Tablet', 'Can the use of Livmos 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livmos 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(24956, 'Livmos 5mg/10mg Tablet', 'Bioneo Healthcare', 'Livmos 5mg/10mg Tablet', 'Can Livmos 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livmos 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(24957, 'Livmos 5mg/10mg Tablet', 'Bioneo Healthcare', 'Livmos 5mg/10mg Tablet', 'Can the use of Livmos 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livmos 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(24958, 'Livmos 5mg/10mg Tablet', 'Bioneo Healthcare', 'Livmos 5mg/10mg Tablet', 'Can I drink alcohol while taking Livmos 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livmos 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livmos 5mg/10mg Tablet.'),
(24959, 'Livmos 5mg/10mg Tablet', 'Bioneo Healthcare', 'Livmos 5mg/10mg Tablet', 'Will Livmos 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livmos 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(24960, 'Livmos 5mg/10mg Tablet', 'Bioneo Healthcare', 'Livmos 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livmos 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(24961, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Can other medicines be given at the same time as Livmox-Clav Oral Suspension?', 'Livmox-Clav Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livmox-Clav Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(24962, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Can I get my child vaccinated while on treatment with Livmox-Clav Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(24963, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Which lab tests may my child undergo while taking Livmox-Clav Oral Suspension on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(24964, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Can I give a higher than the recommended dose of Livmox-Clav Oral Suspension to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(24965, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Can I stop giving Livmox-Clav Oral Suspension to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(24966, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Can the use of Livmox-Clav Oral Suspension cause diarrhea?', 'Yes, Livmox-Clav Oral Suspension may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(24967, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(24968, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(24969, 'Livmox-Clav Oral Suspension', 'Livealth Biopharma Pvt Ltd', 'Livmox-Clav Oral Suspension', 'Q. Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(24970, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'Is Livnac-CR Tablet a good painkiller?', 'Livnac-CR Tablet is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(24971, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'Is Livnac-CR Tablet safe?', 'Livnac-CR Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(24972, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'Does Livnac-CR Tablet get you high?', 'No, Livnac-CR Tablet does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(24973, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'Can Livnac-CR Tablet hurt your kidneys?', 'Long-term use and high doses of Livnac-CR Tablet may cause renal problems, such as protein or blood in urine and pain during urination. Patients  who had or have heart failure, impaired kidney function and hypertension are at risk of kidney problems. The risk of developing kidney problems is also high in patients who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Along with that, Livnac-CR Tablet can affect kidneys of patients who are above 65 years of age or who remain dehydrated. Therefore, kidney function monitoring is recommended for such patients.'),
(24974, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'What if I forget to take a dose of Livnac-CR Tablet?', 'If you forget a dose of Livnac-CR Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(24975, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'Does Livnac-CR Tablet make you drowsy?', 'Livnac-CR Tablet can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(24976, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'What is the most important information I need to know about Livnac-CR Tablet?', 'It is important to know that Livnac-CR Tablet may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, the use of Livnac-CR Tablet may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(24977, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'Can Livnac-CR Tablet be taken during pregnancy?', 'You should not take Livnac-CR Tablet during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Livnac-CR Tablet can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Livnac-CR Tablet during the first 6 months of pregnancy also.  In some cases, Livnac-CR Tablet may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(24978, 'Livnac-CR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-CR Tablet', 'Is Livnac-CR Tablet effective?', 'Livnac-CR Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livnac-CR Tablet too early, the symptoms may return or worsen.'),
(24979, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'What is Livnac-MR Tablet?', 'Livnac-MR Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(24980, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'What can I do along with Livnac-MR Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(24981, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'Can I get addicted to Livnac-MR Tablet?', 'No, there are no reports of any patient getting addicted to Livnac-MR Tablet.'),
(24982, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'Can I stop taking Livnac-MR Tablet when my pain is relieved?', 'Livnac-MR Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Livnac-MR Tablet should be continued if you are advised by your doctor to do so.'),
(24983, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'Can the use of Livnac-MR Tablet cause dizziness?', 'Yes, the use of Livnac-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(24984, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'Can the use of Livnac-MR Tablet cause damage to liver?', 'Livnac-MR Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(24985, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'How long will Livnac-MR Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Livnac-MR Tablet.'),
(24986, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'What if I forget to take Livnac-MR Tablet?', 'If you forget to take the scheduled dose of Livnac-MR Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(24987, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'Will Livnac-MR Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(24988, 'Livnac-MR Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-MR Tablet', 'Are there any specific contraindications associated with the use of Livnac-MR Tablet?', 'The use of Livnac-MR Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(24989, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'What is Livnac-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(24990, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Is it safe to take Livnac-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(24991, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Can I stop taking Livnac-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(24992, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Can Livnac-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(24993, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Can Livnac-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(24994, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Are there any specific contraindications associated with taking Livnac-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(24995, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Can I take Livnac-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(24996, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Can the use of Livnac-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(24997, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'Can I take a higher dose of Livnac-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(24998, 'Livnac-SP Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-SP Tablet', 'What are the instructions for storage and disposal of Livnac-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(24999, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'What is Livnac-TH Tablet?', 'Livnac-TH Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(25000, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'Is it safe to use Livnac-TH Tablet?', 'Yes, Livnac-TH Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(25001, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'Can the Livnac-TH Tablet be stopped when my pain is relieved?', 'Livnac-TH Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Livnac-TH Tablet should be continued if your doctor has advised you to do so.'),
(25002, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'Can the use of Livnac-TH Tablet cause dizziness?', 'Yes, the use of Livnac-TH Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(25003, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'Are there any specific contraindications associated with the use of Livnac-TH Tablet?', 'The use of Livnac-TH Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(25004, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'Can Livnac-TH Tablet be taken with Vitamin B-complex?', 'Yes, Livnac-TH Tablet can be taken with Vitamin B-complex preparations. While Livnac-TH Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(25005, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'Can the use of Livnac-TH Tablet cause damage to kidneys?', 'Yes, the long-term use of Livnac-TH Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(25006, 'Livnac-TH Tablet', 'NCB Pharma Pvt Ltd', 'Livnac-TH Tablet', 'Will Livnac-TH Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25007, 'Livnete 5gm Injection', 'Impileo Lifescience', 'Livnete 5gm Injection', 'Is it ok to take alcohol when taking Livnete 5gm Injection?', 'No, it is not recommended to take alcohol when on Livnete 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25008, 'Livnete 5gm Injection', 'Impileo Lifescience', 'Livnete 5gm Injection', 'What is Livnete 5gm Injection?', 'Livnete 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25009, 'Livnete 5gm Injection', 'Impileo Lifescience', 'Livnete 5gm Injection', 'What is the use of Livnete 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livnete 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25010, 'Livnete 5gm Injection', 'Impileo Lifescience', 'Livnete 5gm Injection', 'How is Livnete 5gm Injection given?', 'Livnete 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25011, 'Livnex UD 300mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Livnex UD 300mg Tablet', 'When should I take Livnex UD 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livnex UD 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25012, 'Livnex UD 300mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Livnex UD 300mg Tablet', 'Is Livnex UD 300mg Tablet safe?', 'Livnex UD 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25013, 'Livnex UD 300mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Livnex UD 300mg Tablet', 'How does Livnex UD 300mg Tablet help the liver?', 'Livnex UD 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25014, 'Livnex UD 300mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Livnex UD 300mg Tablet', 'Does Livnex UD 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livnex UD 300mg Tablet, but it is not common. The use of Livnex UD 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25015, 'Livnex UD 300mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Livnex UD 300mg Tablet', 'What should I avoid while taking Livnex UD 300mg Tablet?', 'While taking Livnex UD 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livnex UD 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livnex UD 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livnex UD 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livnex UD 300mg Tablet.'),
(25016, 'Livnox 500mg Tablet', 'Noxin Biocare Pvt Ltd', 'Livnox 500mg Tablet', 'Q. Is Livnox 500mg Tablet safe?', 'Livnox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25017, 'Livnox 500mg Tablet', 'Noxin Biocare Pvt Ltd', 'Livnox 500mg Tablet', 'Q. What if I forget to take a dose of Livnox 500mg Tablet?', 'If you forget a dose of Livnox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25018, 'Livnox 500mg Tablet', 'Noxin Biocare Pvt Ltd', 'Livnox 500mg Tablet', 'Q. Can the use of Livnox 500mg Tablet cause diarrhea?', 'Yes, the use of Livnox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25019, 'Livnox 500mg Tablet', 'Noxin Biocare Pvt Ltd', 'Livnox 500mg Tablet', 'Q. Can I stop taking Livnox 500mg Tablet when I feel better?', 'No, do not stop taking Livnox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livnox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livnox 500mg Tablet in the dose and duration advised by the doctor.'),
(25020, 'Livnox 500mg Tablet', 'Noxin Biocare Pvt Ltd', 'Livnox 500mg Tablet', 'Q. Can the use of Livnox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livnox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livnox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25021, 'Livo 500 Tablet', 'Mandlive Healthcare Pvt Ltd', 'Livo 500 Tablet', 'Is Livo 500 Tablet safe?', 'Livo 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25022, 'Livo 500 Tablet', 'Mandlive Healthcare Pvt Ltd', 'Livo 500 Tablet', 'What if I forget to take a dose of Livo 500 Tablet?', 'If you forget a dose of Livo 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25023, 'Livo 500 Tablet', 'Mandlive Healthcare Pvt Ltd', 'Livo 500 Tablet', 'Can the use of Livo 500 Tablet cause diarrhea?', 'Yes, the use of Livo 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25024, 'Livo 500 Tablet', 'Mandlive Healthcare Pvt Ltd', 'Livo 500 Tablet', 'Can I stop taking Livo 500 Tablet when I feel better?', 'No, do not stop taking Livo 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livo 500 Tablet too early, the symptoms may return or worsen. Continue taking Livo 500 Tablet in the dose and duration advised by the doctor.'),
(25025, 'Livo 500 Tablet', 'Mandlive Healthcare Pvt Ltd', 'Livo 500 Tablet', 'Can the use of Livo 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livo 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livo 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25026, 'Livo Fab 500mg Tablet', 'UBM Pharmaceuticals', 'Livo Fab 500mg Tablet', 'Is Livo Fab 500mg Tablet safe?', 'Livo Fab 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25027, 'Livo Fab 500mg Tablet', 'UBM Pharmaceuticals', 'Livo Fab 500mg Tablet', 'What if I forget to take a dose of Livo Fab 500mg Tablet?', 'If you forget a dose of Livo Fab 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25028, 'Livo Fab 500mg Tablet', 'UBM Pharmaceuticals', 'Livo Fab 500mg Tablet', 'Can the use of Livo Fab 500mg Tablet cause diarrhea?', 'Yes, the use of Livo Fab 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25029, 'Livo Fab 500mg Tablet', 'UBM Pharmaceuticals', 'Livo Fab 500mg Tablet', 'Can I stop taking Livo Fab 500mg Tablet when I feel better?', 'No, do not stop taking Livo Fab 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livo Fab 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livo Fab 500mg Tablet in the dose and duration advised by the doctor.'),
(25030, 'Livo Fab 500mg Tablet', 'UBM Pharmaceuticals', 'Livo Fab 500mg Tablet', 'Can the use of Livo Fab 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livo Fab 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livo Fab 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25031, 'Livo Ven 1000mg Injection', 'Biovenice Criticure', 'Livo Ven 1000mg Injection', 'Is Livo Ven 1000mg Injection a steroid?', 'Livo Ven 1000mg Injection is not a steroid. It contains Levo-carnitine which is a type of protein (made from the amino acids lysine and methionine). It helps in transporting fats to the cells, where fats get metabolized in order to produce energy. It is used to treat primary and secondary Levo-carnitine deficiency.'),
(25032, 'Livo Ven 1000mg Injection', 'Biovenice Criticure', 'Livo Ven 1000mg Injection', 'When can a carnitine deficiency occur?', 'Carnitine deficiency may be of two types, primary and secondary. Primary is genetic and may show symptoms by five years of age. Whereas, secondary may occur due to certain disorders like kidney problems (chronic kidney failure) and use of antibiotics that reduces its absorption and increases its excretion.'),
(25033, 'Livo Ven 1000mg Injection', 'Biovenice Criticure', 'Livo Ven 1000mg Injection', 'Does warfarin have any effect on Livo Ven 1000mg Injection?', 'In some patients, warfarin when taken along with Livo Ven 1000mg Injection may increase the time required for the formation of blood clot. Hence, before starting Livo Ven 1000mg Injection, inform your doctor if you are taking warfarin.'),
(25034, 'Livoaid Infusion', 'Vintas Pharmaceuticals Pvt. Ltd.', 'Livoaid Infusion', 'Is it ok to take alcohol when taking Livoaid Infusion?', 'No, it is not recommended to take alcohol when on Livoaid Infusion. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25035, 'Livoaid Infusion', 'Vintas Pharmaceuticals Pvt. Ltd.', 'Livoaid Infusion', 'What is Livoaid Infusion?', 'Livoaid Infusion is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25036, 'Livoaid Infusion', 'Vintas Pharmaceuticals Pvt. Ltd.', 'Livoaid Infusion', 'What is the use of Livoaid Infusion in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livoaid Infusion works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25037, 'Livoaid Infusion', 'Vintas Pharmaceuticals Pvt. Ltd.', 'Livoaid Infusion', 'How is Livoaid Infusion given?', 'Livoaid Infusion can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25038, 'Livoaxride-M Tablet', 'Axico Healthcare Pvt. Ltd.', 'Livoaxride-M Tablet', 'What is Livoaxride-M Tablet?', 'Livoaxride-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25039, 'Livoaxride-M Tablet', 'Axico Healthcare Pvt. Ltd.', 'Livoaxride-M Tablet', 'Can the use of Livoaxride-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livoaxride-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25040, 'Livoaxride-M Tablet', 'Axico Healthcare Pvt. Ltd.', 'Livoaxride-M Tablet', 'Can Livoaxride-M Tablet be stopped when allergy symptoms are relieved?', 'No, Livoaxride-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25041, 'Livoaxride-M Tablet', 'Axico Healthcare Pvt. Ltd.', 'Livoaxride-M Tablet', 'Can the use of Livoaxride-M Tablet cause dry mouth?', 'Yes, the use of Livoaxride-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25042, 'Livoaxride-M Tablet', 'Axico Healthcare Pvt. Ltd.', 'Livoaxride-M Tablet', 'Can I drink alcohol while taking Livoaxride-M Tablet?', 'No, do not take alcohol while taking Livoaxride-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livoaxride-M Tablet.'),
(25043, 'Livoaxride-M Tablet', 'Axico Healthcare Pvt. Ltd.', 'Livoaxride-M Tablet', 'Will Livoaxride-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livoaxride-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25044, 'Livoaxride-M Tablet', 'Axico Healthcare Pvt. Ltd.', 'Livoaxride-M Tablet', 'What are the instructions for storage and disposal of Livoaxride-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25045, 'Livobact 500mg Tablet', 'Merck Ltd', 'Livobact 500mg Tablet', 'Is Livobact 500mg Tablet safe?', 'Livobact 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25046, 'Livobact 500mg Tablet', 'Merck Ltd', 'Livobact 500mg Tablet', 'What if I forget to take a dose of Livobact 500mg Tablet?', 'If you forget a dose of Livobact 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25047, 'Livobact 500mg Tablet', 'Merck Ltd', 'Livobact 500mg Tablet', 'Can the use of Livobact 500mg Tablet cause diarrhea?', 'Yes, the use of Livobact 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25048, 'Livobact 500mg Tablet', 'Merck Ltd', 'Livobact 500mg Tablet', 'Can I stop taking Livobact 500mg Tablet when I feel better?', 'No, do not stop taking Livobact 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livobact 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livobact 500mg Tablet in the dose and duration advised by the doctor.'),
(25049, 'Livobact 500mg Tablet', 'Merck Ltd', 'Livobact 500mg Tablet', 'Can the use of Livobact 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livobact 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livobact 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25050, 'Livobit SL Syrup', 'Cubit Healthcare', 'Livobit SL Syrup', 'What is Livobit SL Syrup? What is it used for?', 'Livobit SL Syrup belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livobit SL Syrup accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(25051, 'Livobit SL Syrup', 'Cubit Healthcare', 'Livobit SL Syrup', 'How does Livobit SL Syrup work for the liver?', 'Livobit SL Syrup is obtained from milk thistle seed (Silybum marianum). Livobit SL Syrup works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(25052, 'Livobit SL Syrup', 'Cubit Healthcare', 'Livobit SL Syrup', 'How to use Livobit SL Syrup?', 'Livobit SL Syrup should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livobit SL Syrup.'),
(25053, 'Livobit SL Syrup', 'Cubit Healthcare', 'Livobit SL Syrup', 'What are the side effects of Livobit SL Syrup?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(25054, 'Livobit SL Syrup', 'Cubit Healthcare', 'Livobit SL Syrup', 'Can Livobit SL Syrup be used in pregnancy and lactation?', 'Livobit SL Syrup may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livobit SL Syrup if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(25055, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'What is Livocee 25% Injection?', 'Livocee 25% Injection consists of a water-soluble vitamin known as vitamin C. Vitamin C is also known as L-ascorbic acid or ascorbate. It cannot be stored for long in our body as it is water soluble. Therefore, it should be taken from food like tomatoes and citrus fruits like oranges to maintain sufficient levels of vitamin C in the body.'),
(25056, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'Is Livocee 25% Injection necessary?', 'Livocee 25% Injection is used if your diet does not provide enough vitamin C. It can also be used to treat certain conditions caused due to low levels of vitamin C in the body. However, it would be best to consult your doctor before taking Livocee 25% Injection to get maximum benefit.'),
(25057, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'Why is it important to take vitamin C in your diet?', 'Vitamin C has many benefits on the human body and this makes it extremely important to take it in your diet. Vitamin C helps in the growth and repair of tissues of each and every part of the body, be it, bones, cartilage, tendons, skin, hair, muscles, etc. It helps in wound healing and also enhances absorption of iron in our body. Vitamin C is rich in antioxidants that help in getting rid of the harmful effects of free radicals. If the buildup of free radicals exceeds, it speeds up ageing process. Vitamin C is very crucial for bone and teeth health, improves the vision, and also regulates the blood cholesterol levels. Owing to its numerous benefits, it is very important to take an adequate amount of vitamin C in your diet.'),
(25058, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'Is Livocee 25% Injection effective?', 'Livocee 25% Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livocee 25% Injection too early, the symptoms may return or worsen.'),
(25059, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'How is Livocee 25% Injection administered?', 'Livocee 25% Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Livocee 25% Injection.'),
(25060, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'Is Livocee 25% Injection safe?', 'Livocee 25% Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25061, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'What is vitamin C toxicity?', 'Taking vitamin C in excess (more than recommended) can lead to vitamin C toxicity. However, this is not very common. The symptoms of vitamin C toxicity are diarrhea, nausea, stomach cramps and indigestion. Do not worry, this type of toxicity is not a very serious condition and can be treated by stopping the intake of vitamin C supplements. If these symptoms bother you or persist for a longer duration, please consult your doctor.'),
(25062, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'Is Livocee 25% Injection good for diabetics?', 'Yes, Livocee 25% Injection has been proven to be beneficial for diabetic patients. Livocee 25% Injection has also shown positive effects on issues caused by poor blood sugar control. However, if you have diabetes, consult your doctor before starting Livocee 25% Injection.'),
(25063, 'Livocee 25% Injection', 'Liv Bio Pharma', 'Livocee 25% Injection', 'What are the complications of vitamin C deficiency?', 'Deficiency of vitamin C can lead to complications like scurvy (a condition caused by a severe lack of vitamin C in the diet). The symptoms of scurvy include weakness, feeling tired and sore arms and legs. Without treatment, decreased red blood cells, gum disease, changes to hair, and bleeding from the skin may also occur. Additionally, if the deficiency of vitamin C does not improve, it can further lead to worsening of other conditions such as high blood pressure, stroke, atherosclerosis, gallstones and even cancer.'),
(25064, 'Livocell 5mg Tablet', 'Cellrox Life Sciences', 'Livocell 5mg Tablet', 'Is Livocell 5mg Tablet a steroid? What is it used for?', 'No, Livocell 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25065, 'Livocell 5mg Tablet', 'Cellrox Life Sciences', 'Livocell 5mg Tablet', 'Does Livocell 5mg Tablet make you tired and drowsy?', 'Yes, Livocell 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25066, 'Livocell 5mg Tablet', 'Cellrox Life Sciences', 'Livocell 5mg Tablet', 'How long does it take for Livocell 5mg Tablet to work?', 'Livocell 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25067, 'Livocell 5mg Tablet', 'Cellrox Life Sciences', 'Livocell 5mg Tablet', 'Can I take Livocell 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livocell 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25068, 'Livocell 5mg Tablet', 'Cellrox Life Sciences', 'Livocell 5mg Tablet', 'Is it safe to take Livocell 5mg Tablet for a long time?', 'Livocell 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livocell 5mg Tablet for only as long as you need it.'),
(25069, 'Livocell 5mg Tablet', 'Cellrox Life Sciences', 'Livocell 5mg Tablet', 'For how long should I continue Livocell 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livocell 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livocell 5mg Tablet'),
(25070, 'Livocell Cold Syrup', 'Cellrox Life Sciences', 'Livocell Cold Syrup', 'What is Livocell Cold Syrup?', 'Livocell Cold Syrup is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(25071, 'Livocell Cold Syrup', 'Cellrox Life Sciences', 'Livocell Cold Syrup', 'Is it safe to use Livocell Cold Syrup?', 'Yes, Livocell Cold Syrup is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(25072, 'Livocell Cold Syrup', 'Cellrox Life Sciences', 'Livocell Cold Syrup', 'Can I stop taking Livocell Cold Syrup when I am relieved of my symptoms?', 'Livocell Cold Syrup is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(25073, 'Livocell Cold Syrup', 'Cellrox Life Sciences', 'Livocell Cold Syrup', 'Can the use of Livocell Cold Syrup cause dizziness?', 'Yes, the use of Livocell Cold Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(25074, 'Livocell Cold Syrup', 'Cellrox Life Sciences', 'Livocell Cold Syrup', 'Can the use of Livocell Cold Syrup cause damage to liver?', 'Livocell Cold Syrup is usually safe when taken according to the recommended dose. However, an overdose of Livocell Cold Syrup can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(25075, 'Livocell Cold Syrup', 'Cellrox Life Sciences', 'Livocell Cold Syrup', 'What is the recommended storage condition for the Livocell Cold Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25076, 'Livocell M 5mg/10mg Tablet', 'Cellrox Life Sciences', 'Livocell M 5mg/10mg Tablet', 'What is Livocell M 5mg/10mg Tablet?', 'Livocell M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25077, 'Livocell M 5mg/10mg Tablet', 'Cellrox Life Sciences', 'Livocell M 5mg/10mg Tablet', 'Can the use of Livocell M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livocell M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25078, 'Livocell M 5mg/10mg Tablet', 'Cellrox Life Sciences', 'Livocell M 5mg/10mg Tablet', 'Can Livocell M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livocell M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25079, 'Livocell M 5mg/10mg Tablet', 'Cellrox Life Sciences', 'Livocell M 5mg/10mg Tablet', 'Can the use of Livocell M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livocell M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25080, 'Livocell M 5mg/10mg Tablet', 'Cellrox Life Sciences', 'Livocell M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livocell M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livocell M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livocell M 5mg/10mg Tablet.'),
(25081, 'Livocell M 5mg/10mg Tablet', 'Cellrox Life Sciences', 'Livocell M 5mg/10mg Tablet', 'Will Livocell M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livocell M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25082, 'Livocell M 5mg/10mg Tablet', 'Cellrox Life Sciences', 'Livocell M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livocell M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25083, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(25084, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. Can I decrease the dose of Livocell M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(25085, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. How should Livocell M Oral Suspension be stored?', 'Livocell M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25086, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. Can Livocell M Oral Suspension make my child sleepy?', 'Livocell M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(25087, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livocell M Oral Suspension?', 'No, don’t start Livocell M Oral Suspension without speaking to your child’s doctor. Moreover, Livocell M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(25088, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livocell M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(25089, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. My child is suffering from a mood disorder. Is it safe to give Livocell M Oral Suspension to my child?', 'Some studies show that Livocell M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(25090, 'Livocell M Oral Suspension', 'Cellrox Life Sciences', 'Livocell M Oral Suspension', 'Q. Can I use Livocell M Oral Suspension for treating acute asthma attacks in my child?', 'Livocell M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(25091, 'Livocerin 5mg Tablet', 'Theon Pharmaceuticals Ltd.', 'Livocerin 5mg Tablet', 'Is Livocerin 5mg Tablet a steroid? What is it used for?', 'No, Livocerin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25092, 'Livocerin 5mg Tablet', 'Theon Pharmaceuticals Ltd.', 'Livocerin 5mg Tablet', 'Does Livocerin 5mg Tablet make you tired and drowsy?', 'Yes, Livocerin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25093, 'Livocerin 5mg Tablet', 'Theon Pharmaceuticals Ltd.', 'Livocerin 5mg Tablet', 'How long does it take for Livocerin 5mg Tablet to work?', 'Livocerin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25094, 'Livocerin 5mg Tablet', 'Theon Pharmaceuticals Ltd.', 'Livocerin 5mg Tablet', 'Can I take Livocerin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livocerin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25095, 'Livocerin 5mg Tablet', 'Theon Pharmaceuticals Ltd.', 'Livocerin 5mg Tablet', 'Is it safe to take Livocerin 5mg Tablet for a long time?', 'Livocerin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livocerin 5mg Tablet for only as long as you need it.'),
(25096, 'Livocerin 5mg Tablet', 'Theon Pharmaceuticals Ltd.', 'Livocerin 5mg Tablet', 'For how long should I continue Livocerin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livocerin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livocerin 5mg Tablet'),
(25097, 'Livocet 5mg Tablet', 'Universal Micro Sciences', 'Livocet 5mg Tablet', 'Is Livocet 5mg Tablet a steroid? What is it used for?', 'No, Livocet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25098, 'Livocet 5mg Tablet', 'Universal Micro Sciences', 'Livocet 5mg Tablet', 'Does Livocet 5mg Tablet make you tired and drowsy?', 'Yes, Livocet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25099, 'Livocet 5mg Tablet', 'Universal Micro Sciences', 'Livocet 5mg Tablet', 'How long does it take for Livocet 5mg Tablet to work?', 'Livocet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25100, 'Livocet 5mg Tablet', 'Universal Micro Sciences', 'Livocet 5mg Tablet', 'Can I take Livocet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livocet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25101, 'Livocet 5mg Tablet', 'Universal Micro Sciences', 'Livocet 5mg Tablet', 'Is it safe to take Livocet 5mg Tablet for a long time?', 'Livocet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livocet 5mg Tablet for only as long as you need it.'),
(25102, 'Livocet 5mg Tablet', 'Universal Micro Sciences', 'Livocet 5mg Tablet', 'For how long should I continue Livocet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livocet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livocet 5mg Tablet'),
(25103, 'Livocetriz 5mg Tablet', 'Pharmaceutical Institute of India Pvt Ltd', 'Livocetriz 5mg Tablet', 'Is Livocetriz 5mg Tablet a steroid? What is it used for?', 'No, Livocetriz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25104, 'Livocetriz 5mg Tablet', 'Pharmaceutical Institute of India Pvt Ltd', 'Livocetriz 5mg Tablet', 'Does Livocetriz 5mg Tablet make you tired and drowsy?', 'Yes, Livocetriz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25105, 'Livocetriz 5mg Tablet', 'Pharmaceutical Institute of India Pvt Ltd', 'Livocetriz 5mg Tablet', 'How long does it take for Livocetriz 5mg Tablet to work?', 'Livocetriz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25106, 'Livocetriz 5mg Tablet', 'Pharmaceutical Institute of India Pvt Ltd', 'Livocetriz 5mg Tablet', 'Can I take Livocetriz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livocetriz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25107, 'Livocetriz 5mg Tablet', 'Pharmaceutical Institute of India Pvt Ltd', 'Livocetriz 5mg Tablet', 'Is it safe to take Livocetriz 5mg Tablet for a long time?', 'Livocetriz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livocetriz 5mg Tablet for only as long as you need it.'),
(25108, 'Livocetriz 5mg Tablet', 'Pharmaceutical Institute of India Pvt Ltd', 'Livocetriz 5mg Tablet', 'For how long should I continue Livocetriz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livocetriz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livocetriz 5mg Tablet'),
(25109, 'Livochamp 5mg Tablet', 'Genesis Remedies Pvt Ltd', 'Livochamp 5mg Tablet', 'Is Livochamp 5mg Tablet a steroid? What is it used for?', 'No, Livochamp 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25110, 'Livochamp 5mg Tablet', 'Genesis Remedies Pvt Ltd', 'Livochamp 5mg Tablet', 'Does Livochamp 5mg Tablet make you tired and drowsy?', 'Yes, Livochamp 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25111, 'Livochamp 5mg Tablet', 'Genesis Remedies Pvt Ltd', 'Livochamp 5mg Tablet', 'How long does it take for Livochamp 5mg Tablet to work?', 'Livochamp 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25112, 'Livochamp 5mg Tablet', 'Genesis Remedies Pvt Ltd', 'Livochamp 5mg Tablet', 'Can I take Livochamp 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livochamp 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25113, 'Livochamp 5mg Tablet', 'Genesis Remedies Pvt Ltd', 'Livochamp 5mg Tablet', 'Is it safe to take Livochamp 5mg Tablet for a long time?', 'Livochamp 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livochamp 5mg Tablet for only as long as you need it.'),
(25114, 'Livochamp 5mg Tablet', 'Genesis Remedies Pvt Ltd', 'Livochamp 5mg Tablet', 'For how long should I continue Livochamp 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livochamp 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livochamp 5mg Tablet');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25115, 'Livocin 500mg Tablet', 'Nitin Lifesciences Ltd', 'Livocin 500mg Tablet', 'Is Livocin 500mg Tablet safe?', 'Livocin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25116, 'Livocin 500mg Tablet', 'Nitin Lifesciences Ltd', 'Livocin 500mg Tablet', 'What if I forget to take a dose of Livocin 500mg Tablet?', 'If you forget a dose of Livocin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25117, 'Livocin 500mg Tablet', 'Nitin Lifesciences Ltd', 'Livocin 500mg Tablet', 'Can the use of Livocin 500mg Tablet cause diarrhea?', 'Yes, the use of Livocin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25118, 'Livocin 500mg Tablet', 'Nitin Lifesciences Ltd', 'Livocin 500mg Tablet', 'Can I stop taking Livocin 500mg Tablet when I feel better?', 'No, do not stop taking Livocin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livocin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livocin 500mg Tablet in the dose and duration advised by the doctor.'),
(25119, 'Livocin 500mg Tablet', 'Nitin Lifesciences Ltd', 'Livocin 500mg Tablet', 'Can the use of Livocin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livocin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livocin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25120, 'Livocin 5mg Tablet', 'Cyno Pharmaceuticals Ltd', 'Livocin 5mg Tablet', 'Is Livocin 5mg Tablet a steroid? What is it used for?', 'No, Livocin 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25121, 'Livocin 5mg Tablet', 'Cyno Pharmaceuticals Ltd', 'Livocin 5mg Tablet', 'Does Livocin 5mg Tablet make you tired and drowsy?', 'Yes, Livocin 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25122, 'Livocin 5mg Tablet', 'Cyno Pharmaceuticals Ltd', 'Livocin 5mg Tablet', 'How long does it take for Livocin 5mg Tablet to work?', 'Livocin 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25123, 'Livocin 5mg Tablet', 'Cyno Pharmaceuticals Ltd', 'Livocin 5mg Tablet', 'Can I take Livocin 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livocin 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25124, 'Livocin 5mg Tablet', 'Cyno Pharmaceuticals Ltd', 'Livocin 5mg Tablet', 'Is it safe to take Livocin 5mg Tablet for a long time?', 'Livocin 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livocin 5mg Tablet for only as long as you need it.'),
(25125, 'Livocin 5mg Tablet', 'Cyno Pharmaceuticals Ltd', 'Livocin 5mg Tablet', 'For how long should I continue Livocin 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livocin 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livocin 5mg Tablet'),
(25126, 'Livocit 5 Tablet', 'Rosnet Pharma', 'Livocit 5 Tablet', 'Is Livocit 5 Tablet a steroid? What is it used for?', 'No, Livocit 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25127, 'Livocit 5 Tablet', 'Rosnet Pharma', 'Livocit 5 Tablet', 'Does Livocit 5 Tablet make you tired and drowsy?', 'Yes, Livocit 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25128, 'Livocit 5 Tablet', 'Rosnet Pharma', 'Livocit 5 Tablet', 'How long does it take for Livocit 5 Tablet to work?', 'Livocit 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25129, 'Livocit 5 Tablet', 'Rosnet Pharma', 'Livocit 5 Tablet', 'Can I take Livocit 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livocit 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25130, 'Livocit 5 Tablet', 'Rosnet Pharma', 'Livocit 5 Tablet', 'Is it safe to take Livocit 5 Tablet for a long time?', 'Livocit 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livocit 5 Tablet for only as long as you need it.'),
(25131, 'Livocit 5 Tablet', 'Rosnet Pharma', 'Livocit 5 Tablet', 'For how long should I continue Livocit 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livocit 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livocit 5 Tablet'),
(25132, 'Livocit 750mg Tablet', 'Cito Remedies Pvt Ltd', 'Livocit 750mg Tablet', 'Is Livocit 750mg Tablet safe?', 'Livocit 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25133, 'Livocit 750mg Tablet', 'Cito Remedies Pvt Ltd', 'Livocit 750mg Tablet', 'What if I forget to take a dose of Livocit 750mg Tablet?', 'If you forget a dose of Livocit 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25134, 'Livocit 750mg Tablet', 'Cito Remedies Pvt Ltd', 'Livocit 750mg Tablet', 'Can the use of Livocit 750mg Tablet cause diarrhea?', 'Yes, the use of Livocit 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25135, 'Livocit 750mg Tablet', 'Cito Remedies Pvt Ltd', 'Livocit 750mg Tablet', 'Can I stop taking Livocit 750mg Tablet when I feel better?', 'No, do not stop taking Livocit 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livocit 750mg Tablet too early, the symptoms may return or worsen. Continue taking Livocit 750mg Tablet in the dose and duration advised by the doctor.'),
(25136, 'Livocit 750mg Tablet', 'Cito Remedies Pvt Ltd', 'Livocit 750mg Tablet', 'Can the use of Livocit 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livocit 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livocit 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25137, 'Livocy 500mg Tablet', 'Aryan Biological Corporation', 'Livocy 500mg Tablet', 'Is Livocy 500mg Tablet safe?', 'Livocy 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25138, 'Livocy 500mg Tablet', 'Aryan Biological Corporation', 'Livocy 500mg Tablet', 'What if I forget to take a dose of Livocy 500mg Tablet?', 'If you forget a dose of Livocy 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25139, 'Livocy 500mg Tablet', 'Aryan Biological Corporation', 'Livocy 500mg Tablet', 'Can the use of Livocy 500mg Tablet cause diarrhea?', 'Yes, the use of Livocy 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25140, 'Livocy 500mg Tablet', 'Aryan Biological Corporation', 'Livocy 500mg Tablet', 'Can I stop taking Livocy 500mg Tablet when I feel better?', 'No, do not stop taking Livocy 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livocy 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livocy 500mg Tablet in the dose and duration advised by the doctor.'),
(25141, 'Livocy 500mg Tablet', 'Aryan Biological Corporation', 'Livocy 500mg Tablet', 'Can the use of Livocy 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livocy 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livocy 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25142, 'Livocyd LC 5mg/10mg Tablet', 'Healthy Floyd Pharmaceuticals', 'Livocyd LC 5mg/10mg Tablet', 'What is Livocyd LC 5mg/10mg Tablet?', 'Livocyd LC 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25143, 'Livocyd LC 5mg/10mg Tablet', 'Healthy Floyd Pharmaceuticals', 'Livocyd LC 5mg/10mg Tablet', 'Can the use of Livocyd LC 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livocyd LC 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25144, 'Livocyd LC 5mg/10mg Tablet', 'Healthy Floyd Pharmaceuticals', 'Livocyd LC 5mg/10mg Tablet', 'Can Livocyd LC 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livocyd LC 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25145, 'Livocyd LC 5mg/10mg Tablet', 'Healthy Floyd Pharmaceuticals', 'Livocyd LC 5mg/10mg Tablet', 'Can the use of Livocyd LC 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livocyd LC 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25146, 'Livocyd LC 5mg/10mg Tablet', 'Healthy Floyd Pharmaceuticals', 'Livocyd LC 5mg/10mg Tablet', 'Can I drink alcohol while taking Livocyd LC 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livocyd LC 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livocyd LC 5mg/10mg Tablet.'),
(25147, 'Livocyd LC 5mg/10mg Tablet', 'Healthy Floyd Pharmaceuticals', 'Livocyd LC 5mg/10mg Tablet', 'Will Livocyd LC 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livocyd LC 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25148, 'Livocyd LC 5mg/10mg Tablet', 'Healthy Floyd Pharmaceuticals', 'Livocyd LC 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livocyd LC 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25149, 'Livodari Plus Tablet', 'Bhandaree Consumer Products Pvt Ltd', 'Livodari Plus Tablet', 'What is Livodari Plus Tablet?', 'Livodari Plus Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25150, 'Livodari Plus Tablet', 'Bhandaree Consumer Products Pvt Ltd', 'Livodari Plus Tablet', 'Can the use of Livodari Plus Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livodari Plus Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25151, 'Livodari Plus Tablet', 'Bhandaree Consumer Products Pvt Ltd', 'Livodari Plus Tablet', 'Can Livodari Plus Tablet be stopped when allergy symptoms are relieved?', 'No, Livodari Plus Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25152, 'Livodari Plus Tablet', 'Bhandaree Consumer Products Pvt Ltd', 'Livodari Plus Tablet', 'Can the use of Livodari Plus Tablet cause dry mouth?', 'Yes, the use of Livodari Plus Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25153, 'Livodari Plus Tablet', 'Bhandaree Consumer Products Pvt Ltd', 'Livodari Plus Tablet', 'Can I drink alcohol while taking Livodari Plus Tablet?', 'No, do not take alcohol while taking Livodari Plus Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livodari Plus Tablet.'),
(25154, 'Livodari Plus Tablet', 'Bhandaree Consumer Products Pvt Ltd', 'Livodari Plus Tablet', 'Will Livodari Plus Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livodari Plus Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25155, 'Livodari Plus Tablet', 'Bhandaree Consumer Products Pvt Ltd', 'Livodari Plus Tablet', 'What are the instructions for storage and disposal of Livodari Plus Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25156, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'How should Livodic 75 Injection injection be administered?', 'Livodic 75 Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(25157, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'What is the most important information I need to know about Livodic 75 Injection?', 'It is important to know that Livodic 75 Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Livodic 75 Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(25158, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'Is Livodic 75 Injection a good painkiller?', 'Livodic 75 Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(25159, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'Can Livodic 75 Injection hurt your kidneys?', 'Long-term use and high doses of Livodic 75 Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(25160, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'Does Livodic 75 Injection make you drowsy?', 'Livodic 75 Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(25161, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'Can Livodic 75 Injection be taken during pregnancy?', 'You should not take Livodic 75 Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Livodic 75 Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Livodic 75 Injection during the first 6 months of pregnancy also.  In some cases, Livodic 75 Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(25162, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'Does Livodic 75 Injection get you high?', 'No, Livodic 75 Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(25163, 'Livodic 75 Injection', 'Livewort Labs Pvt Ltd', 'Livodic 75 Injection', 'Is Livodic 75 Injection a narcotic?', 'No, Livodic 75 Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(25164, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'What is Livodic MR 250mg/100mg/325mg Tablet?', 'Livodic MR 250mg/100mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(25165, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'Is it safe to use Livodic MR 250mg/100mg/325mg Tablet?', 'Livodic MR 250mg/100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(25166, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'Can I stop taking Livodic MR 250mg/100mg/325mg Tablet when my pain is relieved?', 'Livodic MR 250mg/100mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(25167, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'Can the use of Livodic MR 250mg/100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Livodic MR 250mg/100mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(25168, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'Can the use of Livodic MR 250mg/100mg/325mg Tablet cause dizziness?', 'Yes, the use of Livodic MR 250mg/100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(25169, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'Can the use of Livodic MR 250mg/100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Livodic MR 250mg/100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(25170, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Livodic MR 250mg/100mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(25171, 'Livodic MR 250mg/100mg/325mg Tablet', 'Livewort Labs Pvt Ltd', 'Livodic MR 250mg/100mg/325mg Tablet', 'What are the recommended storage conditions for Livodic MR 250mg/100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25172, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'What is Livodic-P Tablet?', 'Livodic-P Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(25173, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Is it safe to use Livodic-P Tablet?', 'Yes, Livodic-P Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(25174, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Can I stop taking Livodic-P Tablet when my pain is relieved?', 'Livodic-P Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(25175, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Can the use of Livodic-P Tablet cause nausea and vomiting?', 'Yes, the use of Livodic-P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(25176, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Can the use of Livodic-P Tablet cause dizziness?', 'Yes, the use of Livodic-P Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(25177, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Can the use of Livodic-P Tablet cause damage to kidneys?', 'Yes, the long-term use of Livodic-P Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(25178, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Are there any specific contraindications associated with the use of Livodic-P Tablet?', 'The use of Livodic-P Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(25179, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Can Livodic-P Tablet be taken with Vitamin B-complex?', 'Yes, Livodic-P Tablet can be taken with Vitamin B-complex preparations. While Livodic-P Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(25180, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'Is it safe to take a higher than the recommended dose of Livodic-P Tablet?', 'No, taking a higher than the recommended dose of Livodic-P Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(25181, 'Livodic-P Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-P Tablet', 'What is the recommended storage condition for Livodic-P Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25182, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'What are the storage condition for Livodic-SP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25183, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'What is Livodic-SP Tablet?', 'Livodic-SP Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(25184, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Is it safe to use Livodic-SP Tablet?', 'Yes, Livodic-SP Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(25185, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Can I stop taking Livodic-SP Tablet when my pain is relieved?', 'Livodic-SP Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Livodic-SP Tablet should be continued if you are advised by your physician to do so.'),
(25186, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Can the use of Livodic-SP Tablet cause nausea and vomiting?', 'Yes, the use of Livodic-SP Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(25187, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Can the use of Livodic-SP Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(25188, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Are there any specific contraindications associated with the use of Livodic-SP Tablet?', 'The use of Livodic-SP Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(25189, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Can I take Livodic-SP Tablet with Vitamin B-complex?', 'Livodic-SP Tablet can be taken with Vitamin B-complex preparations. While Livodic-SP Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(25190, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Can I take Livodic-SP Tablet for stomach pain?', 'No, Livodic-SP Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(25191, 'Livodic-SP Tablet', 'Livewort Labs Pvt Ltd', 'Livodic-SP Tablet', 'Can the use of Livodic-SP Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Livodic-SP Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(25192, 'Livodil 250mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 250mg Tablet', 'Is Livodil 250mg Tablet safe?', 'Livodil 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25193, 'Livodil 250mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 250mg Tablet', 'What if I forget to take a dose of Livodil 250mg Tablet?', 'If you forget a dose of Livodil 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25194, 'Livodil 250mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 250mg Tablet', 'Can the use of Livodil 250mg Tablet cause diarrhea?', 'Yes, the use of Livodil 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25195, 'Livodil 250mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 250mg Tablet', 'Can I stop taking Livodil 250mg Tablet when I feel better?', 'No, do not stop taking Livodil 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livodil 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livodil 250mg Tablet in the dose and duration advised by the doctor.'),
(25196, 'Livodil 250mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 250mg Tablet', 'Can the use of Livodil 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livodil 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livodil 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25197, 'Livodil 500mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 500mg Tablet', 'Is Livodil 500mg Tablet safe?', 'Livodil 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25198, 'Livodil 500mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 500mg Tablet', 'What if I forget to take a dose of Livodil 500mg Tablet?', 'If you forget a dose of Livodil 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25199, 'Livodil 500mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 500mg Tablet', 'Can the use of Livodil 500mg Tablet cause diarrhea?', 'Yes, the use of Livodil 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25200, 'Livodil 500mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 500mg Tablet', 'Can I stop taking Livodil 500mg Tablet when I feel better?', 'No, do not stop taking Livodil 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livodil 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livodil 500mg Tablet in the dose and duration advised by the doctor.'),
(25201, 'Livodil 500mg Tablet', 'Dial Pharmaceuticals Pvt Ltd', 'Livodil 500mg Tablet', 'Can the use of Livodil 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livodil 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livodil 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25202, 'Livodox 500mg Tablet', 'Icon Life Sciences', 'Livodox 500mg Tablet', 'What is Livodox 500mg Tablet? What is it used for?', 'Livodox 500mg Tablet belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic and acute alcohol intoxication. Livodox 500mg Tablet accelerates alcohol clearance from the blood and therefore, also helps in the treatment of fatty liver due to alcoholism.'),
(25203, 'Livodox 500mg Tablet', 'Icon Life Sciences', 'Livodox 500mg Tablet', 'How does Livodox 500mg Tablet work?', 'Livodox 500mg Tablet works by increasing the rate of alcohol clearance from blood and tissues, which leads to faster recovery from alcohol intoxication. This in long term protects the liver from damage against harmful chemicals known as free radicals, thereby improving overall health of the liver.'),
(25204, 'Livodox 500mg Tablet', 'Icon Life Sciences', 'Livodox 500mg Tablet', 'How to use Livodox 500mg Tablet?', 'Livodox 500mg Tablet may be taken with or without food as prescribed by the doctor. Take it in the dose and duration advised by the doctor. Swallow the tablet whole; do not crush, break or chew. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get maximum benefit of Livodox 500mg Tablet.'),
(25205, 'Livodox 500mg Tablet', 'Icon Life Sciences', 'Livodox 500mg Tablet', 'What are the side effects of Livodox 500mg Tablet?', 'The most common side effects associated with Livodox 500mg Tablet include nausea, upset stomach and diarrhea. However, these effects are not observed in all patients. If you are worried about them or they do not go away, let your doctor know. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(25206, 'Livodox 500mg Tablet', 'Icon Life Sciences', 'Livodox 500mg Tablet', 'Can Livodox 500mg Tablet be used in pregnancy and lactation?', 'Livodox 500mg Tablet is not advised to be taken by pregnant and breastfeeding women. Consult your doctor before taking Livodox 500mg Tablet if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(25207, 'Livodox Plus Tablet', 'Icon Life Sciences', 'Livodox Plus Tablet', 'Can the use of Livodox Plus Tablet cause indigestion?', 'Livodox Plus Tablet may cause indigestion. However, taking it with or after food can prevent indigestion. Talk to your doctor if you indigestion persists.'),
(25208, 'Livodox Plus Tablet', 'Icon Life Sciences', 'Livodox Plus Tablet', 'What are the recommended storage conditions for Livodox Plus Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25209, 'Livodoz 5mg Tablet', 'Epsilon Biotech', 'Livodoz 5mg Tablet', 'Is Livodoz 5mg Tablet a steroid? What is it used for?', 'No, Livodoz 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25210, 'Livodoz 5mg Tablet', 'Epsilon Biotech', 'Livodoz 5mg Tablet', 'Does Livodoz 5mg Tablet make you tired and drowsy?', 'Yes, Livodoz 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25211, 'Livodoz 5mg Tablet', 'Epsilon Biotech', 'Livodoz 5mg Tablet', 'How long does it take for Livodoz 5mg Tablet to work?', 'Livodoz 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25212, 'Livodoz 5mg Tablet', 'Epsilon Biotech', 'Livodoz 5mg Tablet', 'Can I take Livodoz 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livodoz 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25213, 'Livodoz 5mg Tablet', 'Epsilon Biotech', 'Livodoz 5mg Tablet', 'Is it safe to take Livodoz 5mg Tablet for a long time?', 'Livodoz 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livodoz 5mg Tablet for only as long as you need it.'),
(25214, 'Livodoz 5mg Tablet', 'Epsilon Biotech', 'Livodoz 5mg Tablet', 'For how long should I continue Livodoz 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livodoz 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livodoz 5mg Tablet'),
(25215, 'Livofame 5mg Tablet', 'Medifame Biotech', 'Livofame 5mg Tablet', 'Is Livofame 5mg Tablet a steroid? What is it used for?', 'No, Livofame 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25216, 'Livofame 5mg Tablet', 'Medifame Biotech', 'Livofame 5mg Tablet', 'Does Livofame 5mg Tablet make you tired and drowsy?', 'Yes, Livofame 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25217, 'Livofame 5mg Tablet', 'Medifame Biotech', 'Livofame 5mg Tablet', 'How long does it take for Livofame 5mg Tablet to work?', 'Livofame 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25218, 'Livofame 5mg Tablet', 'Medifame Biotech', 'Livofame 5mg Tablet', 'Can I take Livofame 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livofame 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25219, 'Livofame 5mg Tablet', 'Medifame Biotech', 'Livofame 5mg Tablet', 'Is it safe to take Livofame 5mg Tablet for a long time?', 'Livofame 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livofame 5mg Tablet for only as long as you need it.'),
(25220, 'Livofame 5mg Tablet', 'Medifame Biotech', 'Livofame 5mg Tablet', 'For how long should I continue Livofame 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livofame 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livofame 5mg Tablet'),
(25221, 'Livofame M 5mg/10mg Tablet', 'Medifame Biotech', 'Livofame M 5mg/10mg Tablet', 'What is Livofame M 5mg/10mg Tablet?', 'Livofame M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25222, 'Livofame M 5mg/10mg Tablet', 'Medifame Biotech', 'Livofame M 5mg/10mg Tablet', 'Can the use of Livofame M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livofame M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25223, 'Livofame M 5mg/10mg Tablet', 'Medifame Biotech', 'Livofame M 5mg/10mg Tablet', 'Can Livofame M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livofame M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25224, 'Livofame M 5mg/10mg Tablet', 'Medifame Biotech', 'Livofame M 5mg/10mg Tablet', 'Can the use of Livofame M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livofame M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25225, 'Livofame M 5mg/10mg Tablet', 'Medifame Biotech', 'Livofame M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livofame M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livofame M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livofame M 5mg/10mg Tablet.'),
(25226, 'Livofame M 5mg/10mg Tablet', 'Medifame Biotech', 'Livofame M 5mg/10mg Tablet', 'Will Livofame M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livofame M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25227, 'Livofame M 5mg/10mg Tablet', 'Medifame Biotech', 'Livofame M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livofame M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25228, 'Livoflox 500mg Tablet', 'Eracure Healthcare', 'Livoflox 500mg Tablet', 'Is Livoflox 500mg Tablet safe?', 'Livoflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25229, 'Livoflox 500mg Tablet', 'Eracure Healthcare', 'Livoflox 500mg Tablet', 'What if I forget to take a dose of Livoflox 500mg Tablet?', 'If you forget a dose of Livoflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25230, 'Livoflox 500mg Tablet', 'Eracure Healthcare', 'Livoflox 500mg Tablet', 'Can the use of Livoflox 500mg Tablet cause diarrhea?', 'Yes, the use of Livoflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25231, 'Livoflox 500mg Tablet', 'Eracure Healthcare', 'Livoflox 500mg Tablet', 'Can I stop taking Livoflox 500mg Tablet when I feel better?', 'No, do not stop taking Livoflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoflox 500mg Tablet in the dose and duration advised by the doctor.'),
(25232, 'Livoflox 500mg Tablet', 'Eracure Healthcare', 'Livoflox 500mg Tablet', 'Can the use of Livoflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25233, 'Livofosh 250mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 250mg Tablet', 'Is Livofosh 250mg Tablet safe?', 'Livofosh 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25234, 'Livofosh 250mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 250mg Tablet', 'What if I forget to take a dose of Livofosh 250mg Tablet?', 'If you forget a dose of Livofosh 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25235, 'Livofosh 250mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 250mg Tablet', 'Can the use of Livofosh 250mg Tablet cause diarrhea?', 'Yes, the use of Livofosh 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25236, 'Livofosh 250mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 250mg Tablet', 'Can I stop taking Livofosh 250mg Tablet when I feel better?', 'No, do not stop taking Livofosh 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livofosh 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livofosh 250mg Tablet in the dose and duration advised by the doctor.'),
(25237, 'Livofosh 250mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 250mg Tablet', 'Can the use of Livofosh 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livofosh 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livofosh 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25238, 'Livofosh 500mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 500mg Tablet', 'Is Livofosh 500mg Tablet safe?', 'Livofosh 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25239, 'Livofosh 500mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 500mg Tablet', 'What if I forget to take a dose of Livofosh 500mg Tablet?', 'If you forget a dose of Livofosh 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25240, 'Livofosh 500mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 500mg Tablet', 'Can the use of Livofosh 500mg Tablet cause diarrhea?', 'Yes, the use of Livofosh 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25241, 'Livofosh 500mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 500mg Tablet', 'Can I stop taking Livofosh 500mg Tablet when I feel better?', 'No, do not stop taking Livofosh 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livofosh 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livofosh 500mg Tablet in the dose and duration advised by the doctor.'),
(25242, 'Livofosh 500mg Tablet', 'Osho Pharma Pvt Ltd', 'Livofosh 500mg Tablet', 'Can the use of Livofosh 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livofosh 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livofosh 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25243, 'Livofoxin 500mg Tablet', 'Virtuous Healthcare Limited', 'Livofoxin 500mg Tablet', 'Is Livofoxin 500mg Tablet safe?', 'Livofoxin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25244, 'Livofoxin 500mg Tablet', 'Virtuous Healthcare Limited', 'Livofoxin 500mg Tablet', 'What if I forget to take a dose of Livofoxin 500mg Tablet?', 'If you forget a dose of Livofoxin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25245, 'Livofoxin 500mg Tablet', 'Virtuous Healthcare Limited', 'Livofoxin 500mg Tablet', 'Can the use of Livofoxin 500mg Tablet cause diarrhea?', 'Yes, the use of Livofoxin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25246, 'Livofoxin 500mg Tablet', 'Virtuous Healthcare Limited', 'Livofoxin 500mg Tablet', 'Can I stop taking Livofoxin 500mg Tablet when I feel better?', 'No, do not stop taking Livofoxin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livofoxin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livofoxin 500mg Tablet in the dose and duration advised by the doctor.'),
(25247, 'Livofoxin 500mg Tablet', 'Virtuous Healthcare Limited', 'Livofoxin 500mg Tablet', 'Can the use of Livofoxin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livofoxin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livofoxin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25248, 'Livogard 5gm Infusion', 'Lark Laboratories Ltd', 'Livogard 5gm Infusion', 'Is it ok to take alcohol when taking Livogard 5gm Infusion?', 'No, it is not recommended to take alcohol when on Livogard 5gm Infusion. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25249, 'Livogard 5gm Infusion', 'Lark Laboratories Ltd', 'Livogard 5gm Infusion', 'What is Livogard 5gm Infusion?', 'Livogard 5gm Infusion is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25250, 'Livogard 5gm Infusion', 'Lark Laboratories Ltd', 'Livogard 5gm Infusion', 'What is the use of Livogard 5gm Infusion in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livogard 5gm Infusion works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25251, 'Livogard 5gm Infusion', 'Lark Laboratories Ltd', 'Livogard 5gm Infusion', 'How is Livogard 5gm Infusion given?', 'Livogard 5gm Infusion can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25252, 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Procter & Gamble Hygiene and Health Care Ltd', 'Livogen Ferrous Fumarate & Folic Acid Captab', 'How long does Livogen Ferrous Fumarate & Folic Acid Captab take to work?', 'Livogen Ferrous Fumarate & Folic Acid Captab usually starts working within a few hours of taking it. If you are taking it for iron deficiency anemia, you may start feeling better after a few weeks of taking it. In case you are taking it during pregnancy, you may not notice any difference but this does not mean that the dose is not working. Continue taking Livogen Ferrous Fumarate & Folic Acid Captab for the duration recommended by your doctor.'),
(25253, 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Procter & Gamble Hygiene and Health Care Ltd', 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Can Livogen Ferrous Fumarate & Folic Acid Captab cause weight gain?', 'Animal studies on Livogen Ferrous Fumarate & Folic Acid Captab suggest that taking the medicine in excess along with a high-fat diet may lead to weight gain and fat accumulation. But this weight gain was not evident when taken along with a normal or low fat diet, even with excess Livogen Ferrous Fumarate & Folic Acid Captab. In humans, similar studies have not been conducted and therefore knowledge regarding weight gain is lacking. Therefore, if you are on Livogen Ferrous Fumarate & Folic Acid Captab then avoid excess Livogen Ferrous Fumarate & Folic Acid Captab and eat a low fat meal to be on a safer side.'),
(25254, 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Procter & Gamble Hygiene and Health Care Ltd', 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Why should women start taking Livogen Ferrous Fumarate & Folic Acid Captab before they become pregnant?', 'Maintaining the right level of iron and folic acid in the body before getting pregnant reduces the risk of developing neural tube defects in the baby. Neural tube effect, in most cases, is caused if the structure (neural tube) from which the central nervous system develops (brain and spinal cord) in a baby does not form or is only partially closed. Full closure of the neural tube occurs during the end of the fourth week of pregnancy. Folic acid helps in the formation of neural tubes. Therefore, to prevent this defect women should start Livogen Ferrous Fumarate & Folic Acid Captab before four weeks of pregnancy.'),
(25255, 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Procter & Gamble Hygiene and Health Care Ltd', 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Can I breastfeed while taking Livogen Ferrous Fumarate & Folic Acid Captab?', 'Yes, you can breastfeed while taking Livogen Ferrous Fumarate & Folic Acid Captab as it is not harmful for the baby. Livogen Ferrous Fumarate & Folic Acid Captab contains folic acid as an active ingredient which is naturally found in the breast milk. It also contains iron but iron does not pass through breast milk. Though initial levels of folic acid in the breast milk are low, it rises eventually. Since it is actively secreted in breast milk, mother may take Livogen Ferrous Fumarate & Folic Acid Captab every day to maintain the required levels. Talk to your doctor if you have any questions related to nutrient supplementation in breastfeeding.'),
(25256, 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Procter & Gamble Hygiene and Health Care Ltd', 'Livogen Ferrous Fumarate & Folic Acid Captab', 'When should I take Livogen Ferrous Fumarate & Folic Acid Captab, in the morning or at night?', 'You can take Livogen Ferrous Fumarate & Folic Acid Captab any time of the day, but try to take it at the same time each day. This will help you remember to take it. Take it exactly as prescribed by your doctor. The medicine should be swallowed as a whole with a glass of water. Do not chew, cut or crush the medicine.'),
(25257, 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Procter & Gamble Hygiene and Health Care Ltd', 'Livogen Ferrous Fumarate & Folic Acid Captab', 'Can Livogen Ferrous Fumarate & Folic Acid Captab make you sick?', 'Generally, Livogen Ferrous Fumarate & Folic Acid Captab is well tolerated and no side effects are reported in the majority of people. However, some may experience stomach and intestinal problems which include nausea (feeling sick), dark colored stools and stomach upset or digestion issues. If you experience any of these symptoms, consult your doctor but do not stop taking Livogen Ferrous Fumarate & Folic Acid Captab.'),
(25258, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'Can the use of Livogrid 1000 Tablet cause sleepiness?', 'Yes, Livogrid 1000 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(25259, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'Will the use of Livogrid 1000 Tablet affect my fertility?', 'Livogrid 1000 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(25260, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'I have gained weight since I started taking Livogrid 1000 Tablet. Is it because of Livogrid 1000 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livogrid 1000 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(25261, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'How long does Livogrid 1000 Tablet take to show its effect?', 'Livogrid 1000 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livogrid 1000 Tablet starts working completely.'),
(25262, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'For how long do I need to take Livogrid 1000 Tablet?', 'You should continue to take Livogrid 1000 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(25263, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'Will I get addicted to Livogrid 1000 Tablet if I use it for a long time?', 'No, Livogrid 1000 Tablet is not habit-forming. No physical or psychological dependence has been reported with Livogrid 1000 Tablet. Consult your doctor if you experience any side effects.'),
(25264, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'What symptoms can occur if someone takes an excess of Livogrid 1000 Tablet?', 'Taking an excess of Livogrid 1000 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(25265, 'Livogrid 1000 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 1000 Tablet', 'How do I come off Livogrid 1000 Tablet?', 'The dose of Livogrid 1000 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livogrid 1000 Tablet straight away, even if you have epilepsy.'),
(25266, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'Can the use of Livogrid 250 Tablet cause sleepiness?', 'Yes, Livogrid 250 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(25267, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'Will the use of Livogrid 250 Tablet affect my fertility?', 'Livogrid 250 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(25268, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'I have gained weight since I started taking Livogrid 250 Tablet. Is it because of Livogrid 250 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livogrid 250 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(25269, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'How long does Livogrid 250 Tablet take to show its effect?', 'Livogrid 250 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livogrid 250 Tablet starts working completely.'),
(25270, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'For how long do I need to take Livogrid 250 Tablet?', 'You should continue to take Livogrid 250 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(25271, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'Will I get addicted to Livogrid 250 Tablet if I use it for a long time?', 'No, Livogrid 250 Tablet is not habit-forming. No physical or psychological dependence has been reported with Livogrid 250 Tablet. Consult your doctor if you experience any side effects.'),
(25272, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'What symptoms can occur if someone takes an excess of Livogrid 250 Tablet?', 'Taking an excess of Livogrid 250 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(25273, 'Livogrid 250 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 250 Tablet', 'How do I come off Livogrid 250 Tablet?', 'The dose of Livogrid 250 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livogrid 250 Tablet straight away, even if you have epilepsy.'),
(25274, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'Can the use of Livogrid 500 Tablet cause sleepiness?', 'Yes, Livogrid 500 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(25275, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'Will the use of Livogrid 500 Tablet affect my fertility?', 'Livogrid 500 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(25276, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'I have gained weight since I started taking Livogrid 500 Tablet. Is it because of Livogrid 500 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livogrid 500 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(25277, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'How long does Livogrid 500 Tablet take to show its effect?', 'Livogrid 500 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livogrid 500 Tablet starts working completely.'),
(25278, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'For how long do I need to take Livogrid 500 Tablet?', 'You should continue to take Livogrid 500 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(25279, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'Will I get addicted to Livogrid 500 Tablet if I use it for a long time?', 'No, Livogrid 500 Tablet is not habit-forming. No physical or psychological dependence has been reported with Livogrid 500 Tablet. Consult your doctor if you experience any side effects.'),
(25280, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'What symptoms can occur if someone takes an excess of Livogrid 500 Tablet?', 'Taking an excess of Livogrid 500 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(25281, 'Livogrid 500 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 500 Tablet', 'How do I come off Livogrid 500 Tablet?', 'The dose of Livogrid 500 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livogrid 500 Tablet straight away, even if you have epilepsy.'),
(25282, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'Can the use of Livogrid 750 Tablet cause sleepiness?', 'Yes, Livogrid 750 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(25283, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'Will the use of Livogrid 750 Tablet affect my fertility?', 'Livogrid 750 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(25284, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'I have gained weight since I started taking Livogrid 750 Tablet. Is it because of Livogrid 750 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livogrid 750 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(25285, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'How long does Livogrid 750 Tablet take to show its effect?', 'Livogrid 750 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livogrid 750 Tablet starts working completely.'),
(25286, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'For how long do I need to take Livogrid 750 Tablet?', 'You should continue to take Livogrid 750 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(25287, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'Will I get addicted to Livogrid 750 Tablet if I use it for a long time?', 'No, Livogrid 750 Tablet is not habit-forming. No physical or psychological dependence has been reported with Livogrid 750 Tablet. Consult your doctor if you experience any side effects.'),
(25288, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'What symptoms can occur if someone takes an excess of Livogrid 750 Tablet?', 'Taking an excess of Livogrid 750 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(25289, 'Livogrid 750 Tablet', 'Care Formulation Labs Pvt Ltd', 'Livogrid 750 Tablet', 'How do I come off Livogrid 750 Tablet?', 'The dose of Livogrid 750 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livogrid 750 Tablet straight away, even if you have epilepsy.'),
(25290, 'Livohealth-M Tablet', 'Bio Health Pharma Pvt. Ltd.', 'Livohealth-M Tablet', 'What is Livohealth-M Tablet?', 'Livohealth-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25291, 'Livohealth-M Tablet', 'Bio Health Pharma Pvt. Ltd.', 'Livohealth-M Tablet', 'Can the use of Livohealth-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livohealth-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25292, 'Livohealth-M Tablet', 'Bio Health Pharma Pvt. Ltd.', 'Livohealth-M Tablet', 'Can Livohealth-M Tablet be stopped when allergy symptoms are relieved?', 'No, Livohealth-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25293, 'Livohealth-M Tablet', 'Bio Health Pharma Pvt. Ltd.', 'Livohealth-M Tablet', 'Can the use of Livohealth-M Tablet cause dry mouth?', 'Yes, the use of Livohealth-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25294, 'Livohealth-M Tablet', 'Bio Health Pharma Pvt. Ltd.', 'Livohealth-M Tablet', 'Can I drink alcohol while taking Livohealth-M Tablet?', 'No, do not take alcohol while taking Livohealth-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livohealth-M Tablet.'),
(25295, 'Livohealth-M Tablet', 'Bio Health Pharma Pvt. Ltd.', 'Livohealth-M Tablet', 'Will Livohealth-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livohealth-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25296, 'Livohealth-M Tablet', 'Bio Health Pharma Pvt. Ltd.', 'Livohealth-M Tablet', 'What are the instructions for storage and disposal of Livohealth-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25297, 'Livohel 2.5mg Oral Suspension', 'Helbrede Healthcare', 'Livohel 2.5mg Oral Suspension', 'My child is restless and unable to sleep properly at night. Can I give Livohel 2.5mg Oral Suspension?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(25298, 'Livohel 2.5mg Oral Suspension', 'Helbrede Healthcare', 'Livohel 2.5mg Oral Suspension', 'Can other medicines be given at the same time as Livohel 2.5mg Oral Suspension?', 'Livohel 2.5mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livohel 2.5mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(25299, 'Livohel 2.5mg Oral Suspension', 'Helbrede Healthcare', 'Livohel 2.5mg Oral Suspension', 'How much Livohel 2.5mg Oral Suspension should I give to my child?', 'Livohel 2.5mg Oral Suspension should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(25300, 'Livohel 2.5mg Oral Suspension', 'Helbrede Healthcare', 'Livohel 2.5mg Oral Suspension', 'What if I give too much of Livohel 2.5mg Oral Suspension by mistake?', 'Although Livohel 2.5mg Oral Suspension is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(25301, 'Livohel 2.5mg Oral Suspension', 'Helbrede Healthcare', 'Livohel 2.5mg Oral Suspension', 'How should Livohel 2.5mg Oral Suspension be stored?', 'Store Livohel 2.5mg Oral Suspension at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25302, 'Livohel 2.5mg Oral Suspension', 'Helbrede Healthcare', 'Livohel 2.5mg Oral Suspension', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(25303, 'Livohill 250mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 250mg Tablet', 'Is Livohill 250mg Tablet safe?', 'Livohill 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25304, 'Livohill 250mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 250mg Tablet', 'What if I forget to take a dose of Livohill 250mg Tablet?', 'If you forget a dose of Livohill 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25305, 'Livohill 250mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 250mg Tablet', 'Can the use of Livohill 250mg Tablet cause diarrhea?', 'Yes, the use of Livohill 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25306, 'Livohill 250mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 250mg Tablet', 'Can I stop taking Livohill 250mg Tablet when I feel better?', 'No, do not stop taking Livohill 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livohill 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livohill 250mg Tablet in the dose and duration advised by the doctor.'),
(25307, 'Livohill 250mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 250mg Tablet', 'Can the use of Livohill 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livohill 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livohill 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25308, 'Livohill 500mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 500mg Tablet', 'Is Livohill 500mg Tablet safe?', 'Livohill 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25309, 'Livohill 500mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 500mg Tablet', 'What if I forget to take a dose of Livohill 500mg Tablet?', 'If you forget a dose of Livohill 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25310, 'Livohill 500mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 500mg Tablet', 'Can the use of Livohill 500mg Tablet cause diarrhea?', 'Yes, the use of Livohill 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25311, 'Livohill 500mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 500mg Tablet', 'Can I stop taking Livohill 500mg Tablet when I feel better?', 'No, do not stop taking Livohill 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livohill 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livohill 500mg Tablet in the dose and duration advised by the doctor.'),
(25312, 'Livohill 500mg Tablet', 'Daffohils Laboratories Pvt Ltd', 'Livohill 500mg Tablet', 'Can the use of Livohill 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livohill 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livohill 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25313, 'Livoir Tablet', 'Chondrion Lifesciences Pvt Limited', 'Livoir Tablet', 'Does Livoir Tablet prevent passing of HIV-1 and HBV to others?', 'In case of HIV-1 infection, Livoir Tablet may reduce the risk of passing the virus to others, but the chances of infecting others still persist. However, in case of HBV infection, Livoir Tablet has not proven to reduce risk of transferring the virus to others. Therefore, the patients of both HIV-1 infection and HBV infection should practice safe sex and should not share dirty needles.'),
(25314, 'Livoir Tablet', 'Chondrion Lifesciences Pvt Limited', 'Livoir Tablet', 'Is Livoir Tablet safe?', 'Livoir Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25315, 'Livoir Tablet', 'Chondrion Lifesciences Pvt Limited', 'Livoir Tablet', 'How should I take Livoir Tablet?', 'You should take Livoir Tablet in the dose and duration advised by your doctor. Livoir Tablet works best when taken with meals or just afterwards. However, taking it without food does not reduce its effectiveness. If you have any doubts, consult your doctor.'),
(25316, 'Livoir Tablet', 'Chondrion Lifesciences Pvt Limited', 'Livoir Tablet', 'For how long do I need to take Livoir Tablet for HBV infection?', 'Duration of treatment will depend on the severity of HBV infection. You will need to take periodic blood tests to keep a check on the viral load and number of T cells. Your doctor will then decide the duration of the medicine accordingly. In some cases, treatment is required life long.'),
(25317, 'Livoir Tablet', 'Chondrion Lifesciences Pvt Limited', 'Livoir Tablet', 'I vomited after taking Livoir Tablet. What should I do?', 'If vomiting occurs within 1 hour of taking Livoir Tablet then you should take another tablet. However, if you vomit after more than an hour of taking Livoir Tablet then you need not take another tablet. Consult your doctor if you have vomiting every time you take Livoir Tablet or if the vomiting persists for a longer duration.'),
(25318, 'Livoir Tablet', 'Chondrion Lifesciences Pvt Limited', 'Livoir Tablet', 'What should I do if I forget to take Livoir Tablet?', 'If you forget to take Livoir Tablet within 12 hours of the time you usually take it, take Livoir Tablet with food as soon as possible and resume the normal dosing schedule. However, if it had been more than 12 hours since you have taken the medicine and it is almost time for the next dose, skip the missed dose and simply resume the usual dosing schedule.'),
(25319, 'Livokam 500mg Tablet', 'Saykam Pharmaceuticals', 'Livokam 500mg Tablet', 'Is Livokam 500mg Tablet safe?', 'Livokam 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25320, 'Livokam 500mg Tablet', 'Saykam Pharmaceuticals', 'Livokam 500mg Tablet', 'What if I forget to take a dose of Livokam 500mg Tablet?', 'If you forget a dose of Livokam 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25321, 'Livokam 500mg Tablet', 'Saykam Pharmaceuticals', 'Livokam 500mg Tablet', 'Can the use of Livokam 500mg Tablet cause diarrhea?', 'Yes, the use of Livokam 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25322, 'Livokam 500mg Tablet', 'Saykam Pharmaceuticals', 'Livokam 500mg Tablet', 'Can I stop taking Livokam 500mg Tablet when I feel better?', 'No, do not stop taking Livokam 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livokam 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livokam 500mg Tablet in the dose and duration advised by the doctor.'),
(25323, 'Livokam 500mg Tablet', 'Saykam Pharmaceuticals', 'Livokam 500mg Tablet', 'Can the use of Livokam 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livokam 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livokam 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25324, 'Livokil 500 Tablet', 'Remedial Healthcare', 'Livokil 500 Tablet', 'Is Livokil 500 Tablet safe?', 'Livokil 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25325, 'Livokil 500 Tablet', 'Remedial Healthcare', 'Livokil 500 Tablet', 'What if I forget to take a dose of Livokil 500 Tablet?', 'If you forget a dose of Livokil 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25326, 'Livokil 500 Tablet', 'Remedial Healthcare', 'Livokil 500 Tablet', 'Can the use of Livokil 500 Tablet cause diarrhea?', 'Yes, the use of Livokil 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25327, 'Livokil 500 Tablet', 'Remedial Healthcare', 'Livokil 500 Tablet', 'Can I stop taking Livokil 500 Tablet when I feel better?', 'No, do not stop taking Livokil 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livokil 500 Tablet too early, the symptoms may return or worsen. Continue taking Livokil 500 Tablet in the dose and duration advised by the doctor.'),
(25328, 'Livokil 500 Tablet', 'Remedial Healthcare', 'Livokil 500 Tablet', 'Can the use of Livokil 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livokil 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livokil 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25329, 'Livoking 500mg Tablet', 'Indkus Biotech India', 'Livoking 500mg Tablet', 'Is Livoking 500mg Tablet safe?', 'Livoking 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25330, 'Livoking 500mg Tablet', 'Indkus Biotech India', 'Livoking 500mg Tablet', 'What if I forget to take a dose of Livoking 500mg Tablet?', 'If you forget a dose of Livoking 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25331, 'Livoking 500mg Tablet', 'Indkus Biotech India', 'Livoking 500mg Tablet', 'Can the use of Livoking 500mg Tablet cause diarrhea?', 'Yes, the use of Livoking 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25332, 'Livoking 500mg Tablet', 'Indkus Biotech India', 'Livoking 500mg Tablet', 'Can I stop taking Livoking 500mg Tablet when I feel better?', 'No, do not stop taking Livoking 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoking 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoking 500mg Tablet in the dose and duration advised by the doctor.'),
(25333, 'Livoking 500mg Tablet', 'Indkus Biotech India', 'Livoking 500mg Tablet', 'Can the use of Livoking 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoking 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoking 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25334, 'Livokon OZ 250mg/500mg Tablet', 'Alliance Remedies', 'Livokon OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Livokon OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25335, 'Livokon OZ 250mg/500mg Tablet', 'Alliance Remedies', 'Livokon OZ 250mg/500mg Tablet', 'Can I stop taking Livokon OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livokon OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(25336, 'Livokon OZ 250mg/500mg Tablet', 'Alliance Remedies', 'Livokon OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livokon OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(25337, 'Livokon OZ Syrup', 'Alliance Remedies', 'Livokon OZ Syrup', 'What if I don\'t get better after using Livokon OZ Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(25338, 'Livokon OZ Syrup', 'Alliance Remedies', 'Livokon OZ Syrup', 'Can I stop taking Livokon OZ Syrup when I feel better?', 'No, do not stop taking Livokon OZ Syrup and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(25339, 'Livokon OZ Syrup', 'Alliance Remedies', 'Livokon OZ Syrup', 'What if I miss my dose?', 'Take Livokon OZ Syrup as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(25340, 'Livoksin 500mg Tablet', 'Medbeat Healthcare', 'Livoksin 500mg Tablet', 'Is Livoksin 500mg Tablet safe?', 'Livoksin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25341, 'Livoksin 500mg Tablet', 'Medbeat Healthcare', 'Livoksin 500mg Tablet', 'What if I forget to take a dose of Livoksin 500mg Tablet?', 'If you forget a dose of Livoksin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25342, 'Livoksin 500mg Tablet', 'Medbeat Healthcare', 'Livoksin 500mg Tablet', 'Can the use of Livoksin 500mg Tablet cause diarrhea?', 'Yes, the use of Livoksin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25343, 'Livoksin 500mg Tablet', 'Medbeat Healthcare', 'Livoksin 500mg Tablet', 'Can I stop taking Livoksin 500mg Tablet when I feel better?', 'No, do not stop taking Livoksin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoksin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoksin 500mg Tablet in the dose and duration advised by the doctor.'),
(25344, 'Livoksin 500mg Tablet', 'Medbeat Healthcare', 'Livoksin 500mg Tablet', 'Can the use of Livoksin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoksin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoksin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25345, 'Livol 500mg Tablet', 'Alsun Pharma', 'Livol 500mg Tablet', 'Is Livol 500mg Tablet safe?', 'Livol 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25346, 'Livol 500mg Tablet', 'Alsun Pharma', 'Livol 500mg Tablet', 'What if I forget to take a dose of Livol 500mg Tablet?', 'If you forget a dose of Livol 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25347, 'Livol 500mg Tablet', 'Alsun Pharma', 'Livol 500mg Tablet', 'Can the use of Livol 500mg Tablet cause diarrhea?', 'Yes, the use of Livol 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25348, 'Livol 500mg Tablet', 'Alsun Pharma', 'Livol 500mg Tablet', 'Can I stop taking Livol 500mg Tablet when I feel better?', 'No, do not stop taking Livol 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livol 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livol 500mg Tablet in the dose and duration advised by the doctor.'),
(25349, 'Livol 500mg Tablet', 'Alsun Pharma', 'Livol 500mg Tablet', 'Can the use of Livol 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livol 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livol 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25350, 'Livolact 500mg Tablet', 'Za1 Pharmaceuticals Private Limited', 'Livolact 500mg Tablet', 'Q. Is Livolact 500mg Tablet safe?', 'Livolact 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25351, 'Livolact 500mg Tablet', 'Za1 Pharmaceuticals Private Limited', 'Livolact 500mg Tablet', 'Q. What if I forget to take a dose of Livolact 500mg Tablet?', 'If you forget a dose of Livolact 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25352, 'Livolact 500mg Tablet', 'Za1 Pharmaceuticals Private Limited', 'Livolact 500mg Tablet', 'Q. Can the use of Livolact 500mg Tablet cause diarrhea?', 'Yes, the use of Livolact 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25353, 'Livolact 500mg Tablet', 'Za1 Pharmaceuticals Private Limited', 'Livolact 500mg Tablet', 'Q. Can I stop taking Livolact 500mg Tablet when I feel better?', 'No, do not stop taking Livolact 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livolact 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livolact 500mg Tablet in the dose and duration advised by the doctor.'),
(25354, 'Livolact 500mg Tablet', 'Za1 Pharmaceuticals Private Limited', 'Livolact 500mg Tablet', 'Q. Can the use of Livolact 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livolact 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livolact 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25355, 'Livolife 500mg Tablet', 'Life Line Biotech Ltd', 'Livolife 500mg Tablet', 'Q. Is Livolife 500mg Tablet safe?', 'Livolife 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25356, 'Livolife 500mg Tablet', 'Life Line Biotech Ltd', 'Livolife 500mg Tablet', 'Q. What if I forget to take a dose of Livolife 500mg Tablet?', 'If you forget a dose of Livolife 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25357, 'Livolife 500mg Tablet', 'Life Line Biotech Ltd', 'Livolife 500mg Tablet', 'Q. Can the use of Livolife 500mg Tablet cause diarrhea?', 'Yes, the use of Livolife 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25358, 'Livolife 500mg Tablet', 'Life Line Biotech Ltd', 'Livolife 500mg Tablet', 'Q. Can I stop taking Livolife 500mg Tablet when I feel better?', 'No, do not stop taking Livolife 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livolife 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livolife 500mg Tablet in the dose and duration advised by the doctor.'),
(25359, 'Livolife 500mg Tablet', 'Life Line Biotech Ltd', 'Livolife 500mg Tablet', 'Q. Can the use of Livolife 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livolife 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livolife 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25360, 'Livolike 500mg Tablet', 'Nelon Pharmceuticals', 'Livolike 500mg Tablet', 'Is Livolike 500mg Tablet safe?', 'Livolike 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25361, 'Livolike 500mg Tablet', 'Nelon Pharmceuticals', 'Livolike 500mg Tablet', 'What if I forget to take a dose of Livolike 500mg Tablet?', 'If you forget a dose of Livolike 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25362, 'Livolike 500mg Tablet', 'Nelon Pharmceuticals', 'Livolike 500mg Tablet', 'Can the use of Livolike 500mg Tablet cause diarrhea?', 'Yes, the use of Livolike 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25363, 'Livolike 500mg Tablet', 'Nelon Pharmceuticals', 'Livolike 500mg Tablet', 'Can I stop taking Livolike 500mg Tablet when I feel better?', 'No, do not stop taking Livolike 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livolike 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livolike 500mg Tablet in the dose and duration advised by the doctor.'),
(25364, 'Livolike 500mg Tablet', 'Nelon Pharmceuticals', 'Livolike 500mg Tablet', 'Can the use of Livolike 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livolike 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livolike 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25365, 'Livolike OZ 250mg/500mg Tablet', 'Nelon Pharmceuticals', 'Livolike OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Livolike OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(25366, 'Livolike OZ 250mg/500mg Tablet', 'Nelon Pharmceuticals', 'Livolike OZ 250mg/500mg Tablet', 'Can I stop taking Livolike OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livolike OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(25367, 'Livolike OZ 250mg/500mg Tablet', 'Nelon Pharmceuticals', 'Livolike OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livolike OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(25368, 'Livolim FX 10mg/120mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolim FX 10mg/120mg Tablet', 'What is Livolim FX 10mg/120mg Tablet ?', 'Livolim FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(25369, 'Livolim FX 10mg/120mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolim FX 10mg/120mg Tablet', 'Can Livolim FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livolim FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Livolim FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(25370, 'Livolim FX 10mg/120mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolim FX 10mg/120mg Tablet', 'Can the use of Livolim FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Livolim FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(25371, 'Livolim FX 10mg/120mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolim FX 10mg/120mg Tablet', 'What should be avoided in food while taking Livolim FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Livolim FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Livolim FX 10mg/120mg Tablet.'),
(25372, 'Livolim FX 10mg/120mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolim FX 10mg/120mg Tablet', 'Will Livolim FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25373, 'Livolim FX 10mg/120mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolim FX 10mg/120mg Tablet', 'What is the recommended storage condition for Livolim FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25374, 'Livolimb 10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 10mg Tablet', 'Is Livolimb 10mg Tablet a steroid? What is it used for?', 'No, Livolimb 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25375, 'Livolimb 10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 10mg Tablet', 'Does Livolimb 10mg Tablet make you tired and drowsy?', 'Yes, Livolimb 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25376, 'Livolimb 10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 10mg Tablet', 'How long does it take for Livolimb 10mg Tablet to work?', 'Livolimb 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25377, 'Livolimb 10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 10mg Tablet', 'Can I take Livolimb 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livolimb 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25378, 'Livolimb 10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 10mg Tablet', 'Is it safe to take Livolimb 10mg Tablet for a long time?', 'Livolimb 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livolimb 10mg Tablet for only as long as you need it.'),
(25379, 'Livolimb 10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 10mg Tablet', 'For how long should I continue Livolimb 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livolimb 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livolimb 10mg Tablet'),
(25380, 'Livolimb 5mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 5mg Tablet', 'Is Livolimb 5mg Tablet a steroid? What is it used for?', 'No, Livolimb 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25381, 'Livolimb 5mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 5mg Tablet', 'Does Livolimb 5mg Tablet make you tired and drowsy?', 'Yes, Livolimb 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25382, 'Livolimb 5mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 5mg Tablet', 'How long does it take for Livolimb 5mg Tablet to work?', 'Livolimb 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25383, 'Livolimb 5mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 5mg Tablet', 'Can I take Livolimb 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livolimb 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25384, 'Livolimb 5mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 5mg Tablet', 'Is it safe to take Livolimb 5mg Tablet for a long time?', 'Livolimb 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livolimb 5mg Tablet for only as long as you need it.'),
(25385, 'Livolimb 5mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb 5mg Tablet', 'For how long should I continue Livolimb 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livolimb 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livolimb 5mg Tablet'),
(25386, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(25387, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'Can I decrease the dose of Livolimb L Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(25388, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'How should Livolimb L Syrup be stored?', 'Livolimb L Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25389, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'Can Livolimb L Syrup make my child sleepy?', 'Livolimb L Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(25390, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livolimb L Syrup?', 'No, don’t start Livolimb L Syrup without speaking to your child’s doctor. Moreover, Livolimb L Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(25391, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livolimb L Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(25392, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livolimb L Syrup to my child?', 'Some studies show that Livolimb L Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(25393, 'Livolimb L Syrup', 'Limbson Pharmaceuticals LLP', 'Livolimb L Syrup', 'Can I use Livolimb L Syrup for treating acute asthma attacks in my child?', 'Livolimb L Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(25394, 'Livolimb LC 5mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC 5mg/10mg Tablet', 'What is Livolimb LC 5mg/10mg Tablet?', 'Livolimb LC 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25395, 'Livolimb LC 5mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC 5mg/10mg Tablet', 'Can the use of Livolimb LC 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livolimb LC 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25396, 'Livolimb LC 5mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC 5mg/10mg Tablet', 'Can Livolimb LC 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livolimb LC 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25397, 'Livolimb LC 5mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC 5mg/10mg Tablet', 'Can the use of Livolimb LC 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livolimb LC 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25398, 'Livolimb LC 5mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC 5mg/10mg Tablet', 'Can I drink alcohol while taking Livolimb LC 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livolimb LC 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livolimb LC 5mg/10mg Tablet.'),
(25399, 'Livolimb LC 5mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC 5mg/10mg Tablet', 'Will Livolimb LC 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livolimb LC 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25400, 'Livolimb LC 5mg/10mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livolimb LC 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25401, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(25402, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Livolimb LC Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(25403, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'How should Livolimb LC Kid 2.5mg/4mg Tablet be stored?', 'Livolimb LC Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25404, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Can Livolimb LC Kid 2.5mg/4mg Tablet make my child sleepy?', 'Livolimb LC Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(25405, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livolimb LC Kid 2.5mg/4mg Tablet?', 'No, don’t start Livolimb LC Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Livolimb LC Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(25406, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livolimb LC Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(25407, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Livolimb LC Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Livolimb LC Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(25408, 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Limbson Pharmaceuticals LLP', 'Livolimb LC Kid 2.5mg/4mg Tablet', 'Can I use Livolimb LC Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Livolimb LC Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(25409, 'Livolin S Capsule', 'MDC Pharmaceuticals  Pvt Ltd', 'Livolin S Capsule', 'What is Livolin S Capsule? What is it used for?', 'Livolin S Capsule belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livolin S Capsule accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(25410, 'Livolin S Capsule', 'MDC Pharmaceuticals  Pvt Ltd', 'Livolin S Capsule', 'How does Livolin S Capsule work for the liver?', 'Livolin S Capsule is obtained from milk thistle seed (Silybum marianum). Livolin S Capsule works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(25411, 'Livolin S Capsule', 'MDC Pharmaceuticals  Pvt Ltd', 'Livolin S Capsule', 'How to use Livolin S Capsule?', 'Livolin S Capsule should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livolin S Capsule.'),
(25412, 'Livolin S Capsule', 'MDC Pharmaceuticals  Pvt Ltd', 'Livolin S Capsule', 'What are the side effects of Livolin S Capsule?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(25413, 'Livolin S Capsule', 'MDC Pharmaceuticals  Pvt Ltd', 'Livolin S Capsule', 'Can Livolin S Capsule be used in pregnancy and lactation?', 'Livolin S Capsule may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livolin S Capsule if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(25414, 'Livolix 5mg Tablet', 'Spark Bless Pharma', 'Livolix 5mg Tablet', 'Is Livolix 5mg Tablet a steroid? What is it used for?', 'No, Livolix 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25415, 'Livolix 5mg Tablet', 'Spark Bless Pharma', 'Livolix 5mg Tablet', 'Does Livolix 5mg Tablet make you tired and drowsy?', 'Yes, Livolix 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25416, 'Livolix 5mg Tablet', 'Spark Bless Pharma', 'Livolix 5mg Tablet', 'How long does it take for Livolix 5mg Tablet to work?', 'Livolix 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25417, 'Livolix 5mg Tablet', 'Spark Bless Pharma', 'Livolix 5mg Tablet', 'Can I take Livolix 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livolix 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25418, 'Livolix 5mg Tablet', 'Spark Bless Pharma', 'Livolix 5mg Tablet', 'Is it safe to take Livolix 5mg Tablet for a long time?', 'Livolix 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livolix 5mg Tablet for only as long as you need it.'),
(25419, 'Livolix 5mg Tablet', 'Spark Bless Pharma', 'Livolix 5mg Tablet', 'For how long should I continue Livolix 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livolix 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livolix 5mg Tablet'),
(25420, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'How long does it take for Livolo 10gm Syrup to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Livolo 10gm Syrup.'),
(25421, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'What is Livolo 10gm Syrup used for?', 'Livolo 10gm Syrup is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(25422, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'Is Livolo 10gm Syrup a laxative?', 'Yes, Livolo 10gm Syrup is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(25423, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'What are the side effects of taking Livolo 10gm Syrup?', 'Livolo 10gm Syrup very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(25424, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'Is it okay to take Livolo 10gm Syrup every day?', 'You should take Livolo 10gm Syrup for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(25425, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'Who should not be given Livolo 10gm Syrup?', 'Livolo 10gm Syrup should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(25426, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'Can I take other laxatives along with Livolo 10gm Syrup?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Livolo 10gm Syrup. The risk of side effects is more with two laxatives.'),
(25427, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'What if I take more than the recommended dose of Livolo 10gm Syrup?', 'Taking more than the recommended dose of Livolo 10gm Syrup may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(25428, 'Livolo 10gm Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo 10gm Syrup', 'How should Livolo 10gm Syrup be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(25429, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'How long does it take for Livolo Dry Syrup to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Livolo Dry Syrup.'),
(25430, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'What is Livolo Dry Syrup used for?', 'Livolo Dry Syrup is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(25431, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'Is Livolo Dry Syrup a laxative?', 'Yes, Livolo Dry Syrup is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(25432, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'What are the side effects of taking Livolo Dry Syrup?', 'Livolo Dry Syrup very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(25433, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'Is it okay to take Livolo Dry Syrup every day?', 'You should take Livolo Dry Syrup for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(25434, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'Who should not be given Livolo Dry Syrup?', 'Livolo Dry Syrup should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(25435, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'Can I take other laxatives along with Livolo Dry Syrup?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Livolo Dry Syrup. The risk of side effects is more with two laxatives.'),
(25436, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'What if I take more than the recommended dose of Livolo Dry Syrup?', 'Taking more than the recommended dose of Livolo Dry Syrup may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(25437, 'Livolo Dry Syrup', 'Anglo-French Drugs & Industries Ltd', 'Livolo Dry Syrup', 'How should Livolo Dry Syrup be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(25438, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Q. Is Livolox Tablet safe?', 'Livolox Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25439, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Q. What if I forget to take a dose of Livolox Tablet?', 'If you forget a dose of Livolox Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25440, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Q. Can the use of Livolox Tablet cause diarrhea?', 'Yes, the use of Livolox Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25441, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Q. Can I stop taking Livolox Tablet when I feel better?', 'No, do not stop taking Livolox Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livolox Tablet too early, the symptoms may return or worsen. Continue taking Livolox Tablet in the dose and duration advised by the doctor.'),
(25442, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Q. Can the use of Livolox Tablet increase the risk of muscle damage?', 'Yes, the use of Livolox Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livolox Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25443, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Is Livolox Tablet safe?', 'Livolox Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25444, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'What if I forget to take a dose of Livolox Tablet?', 'If you forget a dose of Livolox Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25445, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Can the use of Livolox Tablet cause diarrhea?', 'Yes, the use of Livolox Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25446, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Can I stop taking Livolox Tablet when I feel better?', 'No, do not stop taking Livolox Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livolox Tablet too early, the symptoms may return or worsen. Continue taking Livolox Tablet in the dose and duration advised by the doctor.'),
(25447, 'Livolox Tablet', 'Sun Life Sciences Pvt Ltd', 'Livolox Tablet', 'Can the use of Livolox Tablet increase the risk of muscle damage?', 'Yes, the use of Livolox Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livolox Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25448, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'How long does it take for Livoluk Kid Oral Solution to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Livoluk Kid Oral Solution.'),
(25449, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'What is Livoluk Kid Oral Solution used for?', 'Livoluk Kid Oral Solution is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(25450, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'Is Livoluk Kid Oral Solution a laxative?', 'Yes, Livoluk Kid Oral Solution is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(25451, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'What are the side effects of taking Livoluk Kid Oral Solution?', 'Livoluk Kid Oral Solution very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(25452, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'Is it okay to take Livoluk Kid Oral Solution every day?', 'You should take Livoluk Kid Oral Solution for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25453, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'Who should not be given Livoluk Kid Oral Solution?', 'Livoluk Kid Oral Solution should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(25454, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'Can I take other laxatives along with Livoluk Kid Oral Solution?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Livoluk Kid Oral Solution. The risk of side effects is more with two laxatives.'),
(25455, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'What if I take more than the recommended dose of Livoluk Kid Oral Solution?', 'Taking more than the recommended dose of Livoluk Kid Oral Solution may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(25456, 'Livoluk Kid Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Kid Oral Solution', 'How should Livoluk Kid Oral Solution be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(25457, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. How long does it take for Livoluk Oral Solution to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Livoluk Oral Solution.'),
(25458, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. What is Livoluk Oral Solution used for?', 'Livoluk Oral Solution is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(25459, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Is Livoluk Oral Solution a laxative?', 'Yes, Livoluk Oral Solution is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(25460, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. What are the side effects of taking Livoluk Oral Solution?', 'Livoluk Oral Solution very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(25461, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Is it okay to take Livoluk Oral Solution every day?', 'You should take Livoluk Oral Solution for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(25462, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Who should not be given Livoluk Oral Solution?', 'Livoluk Oral Solution should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(25463, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Can I take other laxatives along with Livoluk Oral Solution?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Livoluk Oral Solution. The risk of side effects is more with two laxatives.'),
(25464, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. What if I take more than the recommended dose of Livoluk Oral Solution?', 'Taking more than the recommended dose of Livoluk Oral Solution may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(25465, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. How should Livoluk Oral Solution be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(25466, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. How long does it take for Livoluk Oral Solution to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Livoluk Oral Solution.'),
(25467, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. What is Livoluk Oral Solution used for?', 'Livoluk Oral Solution is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(25468, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Is Livoluk Oral Solution a laxative?', 'Yes, Livoluk Oral Solution is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(25469, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. What are the side effects of taking Livoluk Oral Solution?', 'Livoluk Oral Solution very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(25470, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Is it okay to take Livoluk Oral Solution every day?', 'You should take Livoluk Oral Solution for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(25471, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Who should not be given Livoluk Oral Solution?', 'Livoluk Oral Solution should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(25472, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. Can I take other laxatives along with Livoluk Oral Solution?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Livoluk Oral Solution. The risk of side effects is more with two laxatives.'),
(25473, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. What if I take more than the recommended dose of Livoluk Oral Solution?', 'Taking more than the recommended dose of Livoluk Oral Solution may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(25474, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Q. How should Livoluk Oral Solution be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(25475, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'How long does it take for Livoluk Oral Solution to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Livoluk Oral Solution.'),
(25476, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'What is Livoluk Oral Solution used for?', 'Livoluk Oral Solution is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(25477, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Is Livoluk Oral Solution a laxative?', 'Yes, Livoluk Oral Solution is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(25478, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'What are the side effects of taking Livoluk Oral Solution?', 'Livoluk Oral Solution very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(25479, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Is it okay to take Livoluk Oral Solution every day?', 'You should take Livoluk Oral Solution for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(25480, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Who should not be given Livoluk Oral Solution?', 'Livoluk Oral Solution should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(25481, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'Can I take other laxatives along with Livoluk Oral Solution?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Livoluk Oral Solution. The risk of side effects is more with two laxatives.'),
(25482, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'What if I take more than the recommended dose of Livoluk Oral Solution?', 'Taking more than the recommended dose of Livoluk Oral Solution may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(25483, 'Livoluk Oral Solution', 'Panacea Biotec Pharma Ltd', 'Livoluk Oral Solution', 'How should Livoluk Oral Solution be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(25484, 'Livolyf 5gm Injection', 'Care Formulations', 'Livolyf 5gm Injection', 'Is it ok to take alcohol when taking Livolyf 5gm Injection?', 'No, it is not recommended to take alcohol when on Livolyf 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25485, 'Livolyf 5gm Injection', 'Care Formulations', 'Livolyf 5gm Injection', 'What is Livolyf 5gm Injection?', 'Livolyf 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25486, 'Livolyf 5gm Injection', 'Care Formulations', 'Livolyf 5gm Injection', 'What is the use of Livolyf 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livolyf 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25487, 'Livolyf 5gm Injection', 'Care Formulations', 'Livolyf 5gm Injection', 'How is Livolyf 5gm Injection given?', 'Livolyf 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25488, 'Livolysin 300mg Tablet', 'Diamond Drugs Pvt Ltd', 'Livolysin 300mg Tablet', 'When should I take Livolysin 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livolysin 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25489, 'Livolysin 300mg Tablet', 'Diamond Drugs Pvt Ltd', 'Livolysin 300mg Tablet', 'Is Livolysin 300mg Tablet safe?', 'Livolysin 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25490, 'Livolysin 300mg Tablet', 'Diamond Drugs Pvt Ltd', 'Livolysin 300mg Tablet', 'How does Livolysin 300mg Tablet help the liver?', 'Livolysin 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25491, 'Livolysin 300mg Tablet', 'Diamond Drugs Pvt Ltd', 'Livolysin 300mg Tablet', 'Does Livolysin 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livolysin 300mg Tablet, but it is not common. The use of Livolysin 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25492, 'Livolysin 300mg Tablet', 'Diamond Drugs Pvt Ltd', 'Livolysin 300mg Tablet', 'What should I avoid while taking Livolysin 300mg Tablet?', 'While taking Livolysin 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livolysin 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livolysin 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livolysin 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livolysin 300mg Tablet.'),
(25493, 'Livomax 250mg Tablet', 'Biomax Laboratories', 'Livomax 250mg Tablet', 'Is Livomax 250mg Tablet safe?', 'Livomax 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25494, 'Livomax 250mg Tablet', 'Biomax Laboratories', 'Livomax 250mg Tablet', 'What if I forget to take a dose of Livomax 250mg Tablet?', 'If you forget a dose of Livomax 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25495, 'Livomax 250mg Tablet', 'Biomax Laboratories', 'Livomax 250mg Tablet', 'Can the use of Livomax 250mg Tablet cause diarrhea?', 'Yes, the use of Livomax 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25496, 'Livomax 250mg Tablet', 'Biomax Laboratories', 'Livomax 250mg Tablet', 'Can I stop taking Livomax 250mg Tablet when I feel better?', 'No, do not stop taking Livomax 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livomax 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livomax 250mg Tablet in the dose and duration advised by the doctor.'),
(25497, 'Livomax 250mg Tablet', 'Biomax Laboratories', 'Livomax 250mg Tablet', 'Can the use of Livomax 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livomax 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livomax 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25498, 'Livomax 5 Tablet', 'MaxRelief Pharmaceuticals', 'Livomax 5 Tablet', 'Is Livomax 5 Tablet a steroid? What is it used for?', 'No, Livomax 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25499, 'Livomax 5 Tablet', 'MaxRelief Pharmaceuticals', 'Livomax 5 Tablet', 'Does Livomax 5 Tablet make you tired and drowsy?', 'Yes, Livomax 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25500, 'Livomax 5 Tablet', 'MaxRelief Pharmaceuticals', 'Livomax 5 Tablet', 'How long does it take for Livomax 5 Tablet to work?', 'Livomax 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25501, 'Livomax 5 Tablet', 'MaxRelief Pharmaceuticals', 'Livomax 5 Tablet', 'Can I take Livomax 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livomax 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25502, 'Livomax 5 Tablet', 'MaxRelief Pharmaceuticals', 'Livomax 5 Tablet', 'Is it safe to take Livomax 5 Tablet for a long time?', 'Livomax 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livomax 5 Tablet for only as long as you need it.'),
(25503, 'Livomax 5 Tablet', 'MaxRelief Pharmaceuticals', 'Livomax 5 Tablet', 'For how long should I continue Livomax 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livomax 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livomax 5 Tablet'),
(25504, 'Livomax 500mg Tablet', 'Biomax Laboratories', 'Livomax 500mg Tablet', 'Is Livomax 500mg Tablet safe?', 'Livomax 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25505, 'Livomax 500mg Tablet', 'Biomax Laboratories', 'Livomax 500mg Tablet', 'What if I forget to take a dose of Livomax 500mg Tablet?', 'If you forget a dose of Livomax 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25506, 'Livomax 500mg Tablet', 'Biomax Laboratories', 'Livomax 500mg Tablet', 'Can the use of Livomax 500mg Tablet cause diarrhea?', 'Yes, the use of Livomax 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25507, 'Livomax 500mg Tablet', 'Biomax Laboratories', 'Livomax 500mg Tablet', 'Can I stop taking Livomax 500mg Tablet when I feel better?', 'No, do not stop taking Livomax 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livomax 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livomax 500mg Tablet in the dose and duration advised by the doctor.'),
(25508, 'Livomax 500mg Tablet', 'Biomax Laboratories', 'Livomax 500mg Tablet', 'Can the use of Livomax 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livomax 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livomax 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25509, 'Livomax 750mg Tablet', 'Biomax Laboratories', 'Livomax 750mg Tablet', 'Is Livomax 750mg Tablet safe?', 'Livomax 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25510, 'Livomax 750mg Tablet', 'Biomax Laboratories', 'Livomax 750mg Tablet', 'What if I forget to take a dose of Livomax 750mg Tablet?', 'If you forget a dose of Livomax 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25511, 'Livomax 750mg Tablet', 'Biomax Laboratories', 'Livomax 750mg Tablet', 'Can the use of Livomax 750mg Tablet cause diarrhea?', 'Yes, the use of Livomax 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25512, 'Livomax 750mg Tablet', 'Biomax Laboratories', 'Livomax 750mg Tablet', 'Can I stop taking Livomax 750mg Tablet when I feel better?', 'No, do not stop taking Livomax 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livomax 750mg Tablet too early, the symptoms may return or worsen. Continue taking Livomax 750mg Tablet in the dose and duration advised by the doctor.'),
(25513, 'Livomax 750mg Tablet', 'Biomax Laboratories', 'Livomax 750mg Tablet', 'Can the use of Livomax 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livomax 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livomax 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25514, 'Livomax OZ 250 mg/500 mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livomax OZ 250 mg/500 mg Tablet', 'What if I don\'t get better after using Livomax OZ 250 mg/500 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(25515, 'Livomax OZ 250 mg/500 mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livomax OZ 250 mg/500 mg Tablet', 'Can I stop taking Livomax OZ 250 mg/500 mg Tablet when I feel better?', 'No, do not stop taking Livomax OZ 250 mg/500 mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(25516, 'Livomax OZ 250 mg/500 mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livomax OZ 250 mg/500 mg Tablet', 'What if I miss my dose?', 'Take Livomax OZ 250 mg/500 mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(25517, 'Livomax Syrup', 'Scorsis Laboratories', 'Livomax Syrup', 'Is Livomax Syrup safe?', 'Livomax Syrup is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25518, 'Livomax Syrup', 'Scorsis Laboratories', 'Livomax Syrup', 'What if I forget to take a dose of Livomax Syrup?', 'If you forget a dose of Livomax Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25519, 'Livomax Syrup', 'Scorsis Laboratories', 'Livomax Syrup', 'Can the use of Livomax Syrup cause diarrhea?', 'Yes, the use of Livomax Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25520, 'Livomax Syrup', 'Scorsis Laboratories', 'Livomax Syrup', 'Can I stop taking Livomax Syrup when I feel better?', 'No, do not stop taking Livomax Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livomax Syrup too early, the symptoms may return or worsen. Continue taking Livomax Syrup in the dose and duration advised by the doctor.'),
(25521, 'Livomax Syrup', 'Scorsis Laboratories', 'Livomax Syrup', 'Can the use of Livomax Syrup increase the risk of muscle damage?', 'Yes, the use of Livomax Syrup is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livomax Syrup but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25522, 'Livomax Tablet', 'Enzo Biopharma Ltd', 'Livomax Tablet', 'Is Livomax Tablet safe?', 'Livomax Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25523, 'Livomax Tablet', 'Enzo Biopharma Ltd', 'Livomax Tablet', 'What if I forget to take a dose of Livomax Tablet?', 'If you forget a dose of Livomax Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25524, 'Livomax Tablet', 'Enzo Biopharma Ltd', 'Livomax Tablet', 'Can the use of Livomax Tablet cause diarrhea?', 'Yes, the use of Livomax Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25525, 'Livomax Tablet', 'Enzo Biopharma Ltd', 'Livomax Tablet', 'Can I stop taking Livomax Tablet when I feel better?', 'No, do not stop taking Livomax Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livomax Tablet too early, the symptoms may return or worsen. Continue taking Livomax Tablet in the dose and duration advised by the doctor.'),
(25526, 'Livomax Tablet', 'Enzo Biopharma Ltd', 'Livomax Tablet', 'Can the use of Livomax Tablet increase the risk of muscle damage?', 'Yes, the use of Livomax Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livomax Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25527, 'Livomax-M Tablet', 'MaxRelief Pharmaceuticals', 'Livomax-M Tablet', 'What is Livomax-M Tablet?', 'Livomax-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25528, 'Livomax-M Tablet', 'MaxRelief Pharmaceuticals', 'Livomax-M Tablet', 'Can the use of Livomax-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livomax-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25529, 'Livomax-M Tablet', 'MaxRelief Pharmaceuticals', 'Livomax-M Tablet', 'Can Livomax-M Tablet be stopped when allergy symptoms are relieved?', 'No, Livomax-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25530, 'Livomax-M Tablet', 'MaxRelief Pharmaceuticals', 'Livomax-M Tablet', 'Can the use of Livomax-M Tablet cause dry mouth?', 'Yes, the use of Livomax-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25531, 'Livomax-M Tablet', 'MaxRelief Pharmaceuticals', 'Livomax-M Tablet', 'Can I drink alcohol while taking Livomax-M Tablet?', 'No, do not take alcohol while taking Livomax-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livomax-M Tablet.'),
(25532, 'Livomax-M Tablet', 'MaxRelief Pharmaceuticals', 'Livomax-M Tablet', 'Will Livomax-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livomax-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25533, 'Livomax-M Tablet', 'MaxRelief Pharmaceuticals', 'Livomax-M Tablet', 'What are the instructions for storage and disposal of Livomax-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25534, 'Livomaxx 5mg Tablet', 'Maxx Farmacia (India) LLP', 'Livomaxx 5mg Tablet', 'Is Livomaxx 5mg Tablet a steroid? What is it used for?', 'No, Livomaxx 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25535, 'Livomaxx 5mg Tablet', 'Maxx Farmacia (India) LLP', 'Livomaxx 5mg Tablet', 'Does Livomaxx 5mg Tablet make you tired and drowsy?', 'Yes, Livomaxx 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25536, 'Livomaxx 5mg Tablet', 'Maxx Farmacia (India) LLP', 'Livomaxx 5mg Tablet', 'How long does it take for Livomaxx 5mg Tablet to work?', 'Livomaxx 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25537, 'Livomaxx 5mg Tablet', 'Maxx Farmacia (India) LLP', 'Livomaxx 5mg Tablet', 'Can I take Livomaxx 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livomaxx 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25538, 'Livomaxx 5mg Tablet', 'Maxx Farmacia (India) LLP', 'Livomaxx 5mg Tablet', 'Is it safe to take Livomaxx 5mg Tablet for a long time?', 'Livomaxx 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livomaxx 5mg Tablet for only as long as you need it.'),
(25539, 'Livomaxx 5mg Tablet', 'Maxx Farmacia (India) LLP', 'Livomaxx 5mg Tablet', 'For how long should I continue Livomaxx 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livomaxx 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livomaxx 5mg Tablet'),
(25540, 'Livomed 250mg Tablet', 'Cadila Healthcare Limited', 'Livomed 250mg Tablet', 'Q. Is Livomed 250mg Tablet safe?', 'Livomed 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25541, 'Livomed 250mg Tablet', 'Cadila Healthcare Limited', 'Livomed 250mg Tablet', 'Q. What if I forget to take a dose of Livomed 250mg Tablet?', 'If you forget a dose of Livomed 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25542, 'Livomed 250mg Tablet', 'Cadila Healthcare Limited', 'Livomed 250mg Tablet', 'Q. Can the use of Livomed 250mg Tablet cause diarrhea?', 'Yes, the use of Livomed 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25543, 'Livomed 250mg Tablet', 'Cadila Healthcare Limited', 'Livomed 250mg Tablet', 'Q. Can I stop taking Livomed 250mg Tablet when I feel better?', 'No, do not stop taking Livomed 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livomed 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livomed 250mg Tablet in the dose and duration advised by the doctor.'),
(25544, 'Livomed 250mg Tablet', 'Cadila Healthcare Limited', 'Livomed 250mg Tablet', 'Q. Can the use of Livomed 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livomed 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livomed 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25545, 'Livomed 500mg Tablet', 'Cadila Healthcare Limited', 'Livomed 500mg Tablet', 'Is Livomed 500mg Tablet safe?', 'Livomed 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25546, 'Livomed 500mg Tablet', 'Cadila Healthcare Limited', 'Livomed 500mg Tablet', 'What if I forget to take a dose of Livomed 500mg Tablet?', 'If you forget a dose of Livomed 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25547, 'Livomed 500mg Tablet', 'Cadila Healthcare Limited', 'Livomed 500mg Tablet', 'Can the use of Livomed 500mg Tablet cause diarrhea?', 'Yes, the use of Livomed 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25548, 'Livomed 500mg Tablet', 'Cadila Healthcare Limited', 'Livomed 500mg Tablet', 'Can I stop taking Livomed 500mg Tablet when I feel better?', 'No, do not stop taking Livomed 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livomed 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livomed 500mg Tablet in the dose and duration advised by the doctor.'),
(25549, 'Livomed 500mg Tablet', 'Cadila Healthcare Limited', 'Livomed 500mg Tablet', 'Can the use of Livomed 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livomed 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livomed 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25550, 'Livomik 10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 10mg Tablet', 'Is Livomik 10mg Tablet a steroid? What is it used for?', 'No, Livomik 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25551, 'Livomik 10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 10mg Tablet', 'Does Livomik 10mg Tablet make you tired and drowsy?', 'Yes, Livomik 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25552, 'Livomik 10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 10mg Tablet', 'How long does it take for Livomik 10mg Tablet to work?', 'Livomik 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25553, 'Livomik 10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 10mg Tablet', 'Can I take Livomik 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livomik 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25554, 'Livomik 10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 10mg Tablet', 'Is it safe to take Livomik 10mg Tablet for a long time?', 'Livomik 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livomik 10mg Tablet for only as long as you need it.'),
(25555, 'Livomik 10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 10mg Tablet', 'For how long should I continue Livomik 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livomik 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livomik 10mg Tablet'),
(25556, 'Livomik 5mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 5mg Tablet', 'Is Livomik 5mg Tablet a steroid? What is it used for?', 'No, Livomik 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25557, 'Livomik 5mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 5mg Tablet', 'Does Livomik 5mg Tablet make you tired and drowsy?', 'Yes, Livomik 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25558, 'Livomik 5mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 5mg Tablet', 'How long does it take for Livomik 5mg Tablet to work?', 'Livomik 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25559, 'Livomik 5mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 5mg Tablet', 'Can I take Livomik 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livomik 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25560, 'Livomik 5mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 5mg Tablet', 'Is it safe to take Livomik 5mg Tablet for a long time?', 'Livomik 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livomik 5mg Tablet for only as long as you need it.'),
(25561, 'Livomik 5mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik 5mg Tablet', 'For how long should I continue Livomik 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livomik 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livomik 5mg Tablet'),
(25562, 'Livomik-M 5mg/10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik-M 5mg/10mg Tablet', 'What is Livomik-M 5mg/10mg Tablet?', 'Livomik-M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25563, 'Livomik-M 5mg/10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik-M 5mg/10mg Tablet', 'Can the use of Livomik-M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livomik-M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25564, 'Livomik-M 5mg/10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik-M 5mg/10mg Tablet', 'Can Livomik-M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livomik-M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25565, 'Livomik-M 5mg/10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik-M 5mg/10mg Tablet', 'Can the use of Livomik-M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livomik-M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25566, 'Livomik-M 5mg/10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik-M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livomik-M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livomik-M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livomik-M 5mg/10mg Tablet.'),
(25567, 'Livomik-M 5mg/10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik-M 5mg/10mg Tablet', 'Will Livomik-M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livomik-M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25568, 'Livomik-M 5mg/10mg Tablet', 'Dermarex HealthCare India Pvt. Ltd.', 'Livomik-M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livomik-M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25569, 'Livon S 35mg Syrup', 'Welfo Pharmaceuticals Pvt Ltd', 'Livon S 35mg Syrup', 'What is Livon S 35mg Syrup? What is it used for?', 'Livon S 35mg Syrup belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livon S 35mg Syrup accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(25570, 'Livon S 35mg Syrup', 'Welfo Pharmaceuticals Pvt Ltd', 'Livon S 35mg Syrup', 'How does Livon S 35mg Syrup work for the liver?', 'Livon S 35mg Syrup is obtained from milk thistle seed (Silybum marianum). Livon S 35mg Syrup works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(25571, 'Livon S 35mg Syrup', 'Welfo Pharmaceuticals Pvt Ltd', 'Livon S 35mg Syrup', 'How to use Livon S 35mg Syrup?', 'Livon S 35mg Syrup should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livon S 35mg Syrup.'),
(25572, 'Livon S 35mg Syrup', 'Welfo Pharmaceuticals Pvt Ltd', 'Livon S 35mg Syrup', 'What are the side effects of Livon S 35mg Syrup?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(25573, 'Livon S 35mg Syrup', 'Welfo Pharmaceuticals Pvt Ltd', 'Livon S 35mg Syrup', 'Can Livon S 35mg Syrup be used in pregnancy and lactation?', 'Livon S 35mg Syrup may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livon S 35mg Syrup if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(25574, 'Livonase 5mg Tablet', 'S & S Healthcare', 'Livonase 5mg Tablet', 'Is Livonase 5mg Tablet a steroid? What is it used for?', 'No, Livonase 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25575, 'Livonase 5mg Tablet', 'S & S Healthcare', 'Livonase 5mg Tablet', 'Does Livonase 5mg Tablet make you tired and drowsy?', 'Yes, Livonase 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25576, 'Livonase 5mg Tablet', 'S & S Healthcare', 'Livonase 5mg Tablet', 'How long does it take for Livonase 5mg Tablet to work?', 'Livonase 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25577, 'Livonase 5mg Tablet', 'S & S Healthcare', 'Livonase 5mg Tablet', 'Can I take Livonase 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livonase 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25578, 'Livonase 5mg Tablet', 'S & S Healthcare', 'Livonase 5mg Tablet', 'Is it safe to take Livonase 5mg Tablet for a long time?', 'Livonase 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livonase 5mg Tablet for only as long as you need it.'),
(25579, 'Livonase 5mg Tablet', 'S & S Healthcare', 'Livonase 5mg Tablet', 'For how long should I continue Livonase 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livonase 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livonase 5mg Tablet'),
(25580, 'Livonez 500mg Tablet', 'Sitnez Biocare Pvt Ltd', 'Livonez 500mg Tablet', 'Is Livonez 500mg Tablet safe?', 'Livonez 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25581, 'Livonez 500mg Tablet', 'Sitnez Biocare Pvt Ltd', 'Livonez 500mg Tablet', 'What if I forget to take a dose of Livonez 500mg Tablet?', 'If you forget a dose of Livonez 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25582, 'Livonez 500mg Tablet', 'Sitnez Biocare Pvt Ltd', 'Livonez 500mg Tablet', 'Can the use of Livonez 500mg Tablet cause diarrhea?', 'Yes, the use of Livonez 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25583, 'Livonez 500mg Tablet', 'Sitnez Biocare Pvt Ltd', 'Livonez 500mg Tablet', 'Can I stop taking Livonez 500mg Tablet when I feel better?', 'No, do not stop taking Livonez 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livonez 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livonez 500mg Tablet in the dose and duration advised by the doctor.'),
(25584, 'Livonez 500mg Tablet', 'Sitnez Biocare Pvt Ltd', 'Livonez 500mg Tablet', 'Can the use of Livonez 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livonez 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livonez 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25585, 'Livonibe 200mg Tablet', 'BDR Pharmaceuticals Internationals Pvt', 'Livonibe 200mg Tablet', 'Q. How is Livonibe 200mg Tablet administered?', 'Livonibe 200mg Tablet is an oral medicine and you should take it exactly as per your doctor’s advice. It can be taken without food or with low to moderate fat meal. It should not be taken with high-fat meal which will make Livonibe 200mg Tablet less effective. If you are taking high-fat meal, take Sorafenib 1 hour before or two hours after high-fat meal.'),
(25586, 'Livonibe 200mg Tablet', 'BDR Pharmaceuticals Internationals Pvt', 'Livonibe 200mg Tablet', 'Q. For how long do I need to take Livonibe 200mg Tablet?', 'If Livonibe 200mg Tablet suits you well, then you should continue taking it for the duration suggested by the doctor. However, if you experience any side effect that bothers you, talk to your doctor immediately.'),
(25587, 'Livonibe 200mg Tablet', 'BDR Pharmaceuticals Internationals Pvt', 'Livonibe 200mg Tablet', 'Q. Do I need to take a treatment along with Livonibe 200mg Tablet for it to work?', 'Livonibe 200mg Tablet is used as a monotherapy, that is, it is a medicine which is used alone rather than in combination with other treatments like radiotherapy or chemotherapy.'),
(25588, 'Livonibe 200mg Tablet', 'BDR Pharmaceuticals Internationals Pvt', 'Livonibe 200mg Tablet', 'Q. How do I know if I am responding to Livonibe 200mg Tablet?', 'While receiving treatment with Livonibe 200mg Tablet, your doctor will most likely recommend regular scans to monitor the size of the tumor. You may also need to get regular blood tests to see if the deranged liver or kidney functions have improved or not.'),
(25589, 'Livonibe 200mg Tablet', 'BDR Pharmaceuticals Internationals Pvt', 'Livonibe 200mg Tablet', 'Q. What are the serious side effects that can occur while taking Livonibe 200mg Tablet?', 'The possible serious side effects that may occur (not in everyone) include heart attack and heart failure, increased risk of bleeding, high blood pressure, skin problems and wound healing problems. Some other side effects which get highlighted when you go through various tests are decreased blood flow to the heart, swelling of the liver, an opening in the wall of stomach or intestines (perforation), changes in electrical activity of the heart (QT prolongation) and changes in thyroid hormone levels.'),
(25590, 'Livonibe 200mg Tablet', 'BDR Pharmaceuticals Internationals Pvt', 'Livonibe 200mg Tablet', 'Q. Does Livonibe 200mg Tablet affect blood sugar levels?', 'Yes, Livonibe 200mg Tablet can cause a decrease in the blood sugar levels. In fact, the levels can decrease to the extent that the patient may faint. So, it is important that the patients having diabetes check their blood sugar levels regularly. Additionally, you should also consult the doctor if the dose of anti-diabetic medicines needs to be adjusted.'),
(25591, 'Livonibe 200mg Tablet', 'BDR Pharmaceuticals Internationals Pvt', 'Livonibe 200mg Tablet', 'Q. I have developed redness and pain in my palms and soles ever since I started using Livonibe 200mg Tablet. My skin is also coming off. Is this dangerous? What should I do?', 'It seems you have developed hand and foot skin reaction due to Livonibe 200mg Tablet. Consult your doctor who will either interrupt your therapy for sometime or change your dose. He might also suggest some cream or lotion to treat the problem. If the problem is severe, consult a skin doctor.'),
(25592, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'What is Livonim P 100mg/325mg Tablet?', 'Livonim P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(25593, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'Can I stop taking Livonim P 100mg/325mg Tablet when my pain is relieved?', 'Livonim P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(25594, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'Can the use of Livonim P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Livonim P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(25595, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Livonim P 100mg/325mg Tablet?', 'The use of Livonim P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(25596, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'Can I take Livonim P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Livonim P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Livonim P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(25597, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'Does Livonim P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Livonim P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(25598, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'Can the use of Livonim P 100mg/325mg Tablet cause damage to the liver?', 'Livonim P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(25599, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Livonim P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Livonim P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(25600, 'Livonim P 100mg/325mg Tablet', 'JV Healthcare', 'Livonim P 100mg/325mg Tablet', 'What are the recommended storage conditions for Livonim P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25601, 'Livonix 500mg Tablet', 'Texas Pharmaceuticals', 'Livonix 500mg Tablet (Texas Pharmaceuticals)', 'Is Livonix 500mg Tablet safe?', 'Livonix 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25602, 'Livonix 500mg Tablet', 'Texas Pharmaceuticals', 'Livonix 500mg Tablet (Texas Pharmaceuticals)', 'What if I forget to take a dose of Livonix 500mg Tablet?', 'If you forget a dose of Livonix 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25603, 'Livonix 500mg Tablet', 'Texas Pharmaceuticals', 'Livonix 500mg Tablet (Texas Pharmaceuticals)', 'Can the use of Livonix 500mg Tablet cause diarrhea?', 'Yes, the use of Livonix 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25604, 'Livonix 500mg Tablet', 'Texas Pharmaceuticals', 'Livonix 500mg Tablet (Texas Pharmaceuticals)', 'Can I stop taking Livonix 500mg Tablet when I feel better?', 'No, do not stop taking Livonix 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livonix 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livonix 500mg Tablet in the dose and duration advised by the doctor.'),
(25605, 'Livonix 500mg Tablet', 'Texas Pharmaceuticals', 'Livonix 500mg Tablet (Texas Pharmaceuticals)', 'Can the use of Livonix 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livonix 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livonix 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25606, 'Livonix 500mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Livonix 500mg Tablet (Acekinetics Healthcare Pvt Ltd)', 'Is Livonix 500mg Tablet a steroid?', 'Livonix 500mg Tablet is not a steroid. It contains Levo-carnitine which is a type of amino acid (made from the amino acids lysine and methionine). It helps in transporting fats to the cells, where fats get metabolized in order to produce energy. It is used to treat primary and secondary Levo-carnitine deficiency.'),
(25607, 'Livonix 500mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Livonix 500mg Tablet (Acekinetics Healthcare Pvt Ltd)', 'When can a carnitine deficiency occur?', 'Carnitine deficiency may be of two types, primary and secondary. Primary is genetic and may show symptoms by five years of age. Whereas, secondary may occur due to certain disorders like kidney problems (chronic kidney failure) and use of antibiotics that reduces its absorption and increases its excretion.'),
(25608, 'Livonix 500mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Livonix 500mg Tablet (Acekinetics Healthcare Pvt Ltd)', 'Does warfarin have any effect on Livonix 500mg Tablet?', 'In some patients, warfarin when taken along with Livonix 500mg Tablet may increase the time required for the formation of blood clot. Hence, before starting Livonix 500mg Tablet, inform your doctor if you are taking warfarin.'),
(25609, 'Livonix 500mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Livonix 500mg Tablet (Acekinetics Healthcare Pvt Ltd)', 'What is the best time to take Livonix 500mg Tablet?', 'Livonix 500mg Tablet should be taken as directed by your doctor. Generally, it is advised to be taken 3-4 times daily, preferably with meals or after meals.'),
(25610, 'Livonix 500mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Livonix 500mg Tablet (Acekinetics Healthcare Pvt Ltd)', 'Can Livonix 500mg Tablet be taken by diabetics?', 'Yes, Livonix 500mg Tablet can be taken by patients with diabetes. However, it is important to know that it contains sucrose. Some studies have shown that it may improve insulin sensitivity. Along with that, it may also be helpful in relieving nerve pain.'),
(25611, 'Livonix 500mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Livonix 500mg Tablet (Acekinetics Healthcare Pvt Ltd)', 'Does Livonix 500mg Tablet cause diarrhea?', 'Livonix 500mg Tablet may very rarely cause diarrhea. This effect of the medicine can be reduced by decreasing the dose of Livonix 500mg Tablet. But, if you are taking oral solution then take it slowly or dilute it more.'),
(25612, 'Livopace Infusion', 'Avonic Life Sciences', 'Livopace Infusion', 'Is it ok to take alcohol when taking Livopace Infusion?', 'No, it is not recommended to take alcohol when on Livopace Infusion. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25613, 'Livopace Infusion', 'Avonic Life Sciences', 'Livopace Infusion', 'What is Livopace Infusion?', 'Livopace Infusion is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25614, 'Livopace Infusion', 'Avonic Life Sciences', 'Livopace Infusion', 'What is the use of Livopace Infusion in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livopace Infusion works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25615, 'Livopace Infusion', 'Avonic Life Sciences', 'Livopace Infusion', 'How is Livopace Infusion given?', 'Livopace Infusion can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25616, 'Livopal 5gm Injection', 'Systacare Remedies', 'Livopal 5gm Injection', 'Is it ok to take alcohol when taking Livopal 5gm Injection?', 'No, it is not recommended to take alcohol when on Livopal 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25617, 'Livopal 5gm Injection', 'Systacare Remedies', 'Livopal 5gm Injection', 'What is Livopal 5gm Injection?', 'Livopal 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25618, 'Livopal 5gm Injection', 'Systacare Remedies', 'Livopal 5gm Injection', 'What is the use of Livopal 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livopal 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25619, 'Livopal 5gm Injection', 'Systacare Remedies', 'Livopal 5gm Injection', 'How is Livopal 5gm Injection given?', 'Livopal 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25620, 'Livopar 500 Tablet', 'Parad Pharmaceutical Pvt Ltd', 'Livopar 500 Tablet', 'Is Livopar 500 Tablet safe?', 'Livopar 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25621, 'Livopar 500 Tablet', 'Parad Pharmaceutical Pvt Ltd', 'Livopar 500 Tablet', 'What if I forget to take a dose of Livopar 500 Tablet?', 'If you forget a dose of Livopar 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25622, 'Livopar 500 Tablet', 'Parad Pharmaceutical Pvt Ltd', 'Livopar 500 Tablet', 'Can the use of Livopar 500 Tablet cause diarrhea?', 'Yes, the use of Livopar 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25623, 'Livopar 500 Tablet', 'Parad Pharmaceutical Pvt Ltd', 'Livopar 500 Tablet', 'Can I stop taking Livopar 500 Tablet when I feel better?', 'No, do not stop taking Livopar 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livopar 500 Tablet too early, the symptoms may return or worsen. Continue taking Livopar 500 Tablet in the dose and duration advised by the doctor.'),
(25624, 'Livopar 500 Tablet', 'Parad Pharmaceutical Pvt Ltd', 'Livopar 500 Tablet', 'Can the use of Livopar 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livopar 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livopar 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25625, 'Livopill UD Tablet', 'Ordain Health Care Global Pvt Ltd', 'Livopill UD Tablet', 'When should I take Livopill UD Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livopill UD Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25626, 'Livopill UD Tablet', 'Ordain Health Care Global Pvt Ltd', 'Livopill UD Tablet', 'Is Livopill UD Tablet safe?', 'Livopill UD Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25627, 'Livopill UD Tablet', 'Ordain Health Care Global Pvt Ltd', 'Livopill UD Tablet', 'How does Livopill UD Tablet help the liver?', 'Livopill UD Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25628, 'Livopill UD Tablet', 'Ordain Health Care Global Pvt Ltd', 'Livopill UD Tablet', 'Does Livopill UD Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livopill UD Tablet, but it is not common. The use of Livopill UD Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25629, 'Livopill UD Tablet', 'Ordain Health Care Global Pvt Ltd', 'Livopill UD Tablet', 'What should I avoid while taking Livopill UD Tablet?', 'While taking Livopill UD Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livopill UD Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livopill UD Tablet. So, ask your doctor about the time gap that should be maintained between Livopill UD Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livopill UD Tablet.'),
(25630, 'Livopure 5 Tablet', 'Unigrow Pharmaceuticals', 'Livopure 5 Tablet', 'Is Livopure 5 Tablet a steroid? What is it used for?', 'No, Livopure 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25631, 'Livopure 5 Tablet', 'Unigrow Pharmaceuticals', 'Livopure 5 Tablet', 'Does Livopure 5 Tablet make you tired and drowsy?', 'Yes, Livopure 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25632, 'Livopure 5 Tablet', 'Unigrow Pharmaceuticals', 'Livopure 5 Tablet', 'How long does it take for Livopure 5 Tablet to work?', 'Livopure 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25633, 'Livopure 5 Tablet', 'Unigrow Pharmaceuticals', 'Livopure 5 Tablet', 'Can I take Livopure 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livopure 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25634, 'Livopure 5 Tablet', 'Unigrow Pharmaceuticals', 'Livopure 5 Tablet', 'Is it safe to take Livopure 5 Tablet for a long time?', 'Livopure 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livopure 5 Tablet for only as long as you need it.'),
(25635, 'Livopure 5 Tablet', 'Unigrow Pharmaceuticals', 'Livopure 5 Tablet', 'For how long should I continue Livopure 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livopure 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livopure 5 Tablet'),
(25636, 'Livoq 250mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 250mg Tablet', 'Is Livoq 250mg Tablet safe?', 'Livoq 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25637, 'Livoq 250mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 250mg Tablet', 'What if I forget to take a dose of Livoq 250mg Tablet?', 'If you forget a dose of Livoq 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25638, 'Livoq 250mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 250mg Tablet', 'Can the use of Livoq 250mg Tablet cause diarrhea?', 'Yes, the use of Livoq 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25639, 'Livoq 250mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 250mg Tablet', 'Can I stop taking Livoq 250mg Tablet when I feel better?', 'No, do not stop taking Livoq 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoq 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livoq 250mg Tablet in the dose and duration advised by the doctor.'),
(25640, 'Livoq 250mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 250mg Tablet', 'Can the use of Livoq 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoq 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoq 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25641, 'Livoq 750mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 750mg Tablet', 'Is Livoq 750mg Tablet safe?', 'Livoq 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25642, 'Livoq 750mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 750mg Tablet', 'What if I forget to take a dose of Livoq 750mg Tablet?', 'If you forget a dose of Livoq 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25643, 'Livoq 750mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 750mg Tablet', 'Can the use of Livoq 750mg Tablet cause diarrhea?', 'Yes, the use of Livoq 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25644, 'Livoq 750mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 750mg Tablet', 'Can I stop taking Livoq 750mg Tablet when I feel better?', 'No, do not stop taking Livoq 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoq 750mg Tablet too early, the symptoms may return or worsen. Continue taking Livoq 750mg Tablet in the dose and duration advised by the doctor.'),
(25645, 'Livoq 750mg Tablet', 'Vilin Bio Med Ltd', 'Livoq 750mg Tablet', 'Can the use of Livoq 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoq 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoq 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25646, 'Livoquin Tablet', 'Exotic Laboratories Pvt Ltd', 'Livoquin Tablet', 'Is Livoquin Tablet safe?', 'Livoquin Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25647, 'Livoquin Tablet', 'Exotic Laboratories Pvt Ltd', 'Livoquin Tablet', 'What if I forget to take a dose of Livoquin Tablet?', 'If you forget a dose of Livoquin Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25648, 'Livoquin Tablet', 'Exotic Laboratories Pvt Ltd', 'Livoquin Tablet', 'Can the use of Livoquin Tablet cause diarrhea?', 'Yes, the use of Livoquin Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25649, 'Livoquin Tablet', 'Exotic Laboratories Pvt Ltd', 'Livoquin Tablet', 'Can I stop taking Livoquin Tablet when I feel better?', 'No, do not stop taking Livoquin Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoquin Tablet too early, the symptoms may return or worsen. Continue taking Livoquin Tablet in the dose and duration advised by the doctor.'),
(25650, 'Livoquin Tablet', 'Exotic Laboratories Pvt Ltd', 'Livoquin Tablet', 'Can the use of Livoquin Tablet increase the risk of muscle damage?', 'Yes, the use of Livoquin Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoquin Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25651, 'Livor 5gm Injection', 'Zentis Drugs Pvt Ltd', 'Livor 5gm Injection', 'Is it ok to take alcohol when taking Livor 5gm Injection?', 'No, it is not recommended to take alcohol when on Livor 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25652, 'Livor 5gm Injection', 'Zentis Drugs Pvt Ltd', 'Livor 5gm Injection', 'What is Livor 5gm Injection?', 'Livor 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25653, 'Livor 5gm Injection', 'Zentis Drugs Pvt Ltd', 'Livor 5gm Injection', 'What is the use of Livor 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livor 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25654, 'Livor 5gm Injection', 'Zentis Drugs Pvt Ltd', 'Livor 5gm Injection', 'How is Livor 5gm Injection given?', 'Livor 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25655, 'Livorb 300mg Tablet', 'Alkem Laboratories Ltd', 'Livorb 300mg Tablet', 'When should I take Livorb 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livorb 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25656, 'Livorb 300mg Tablet', 'Alkem Laboratories Ltd', 'Livorb 300mg Tablet', 'Is Livorb 300mg Tablet safe?', 'Livorb 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25657, 'Livorb 300mg Tablet', 'Alkem Laboratories Ltd', 'Livorb 300mg Tablet', 'How does Livorb 300mg Tablet help the liver?', 'Livorb 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25658, 'Livorb 300mg Tablet', 'Alkem Laboratories Ltd', 'Livorb 300mg Tablet', 'Does Livorb 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livorb 300mg Tablet, but it is not common. The use of Livorb 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25659, 'Livorb 300mg Tablet', 'Alkem Laboratories Ltd', 'Livorb 300mg Tablet', 'What should I avoid while taking Livorb 300mg Tablet?', 'While taking Livorb 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livorb 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livorb 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livorb 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livorb 300mg Tablet.'),
(25660, 'Livorg 10mg Tablet', 'Medcure Organics Pvt Ltd', 'Livorg 10mg Tablet', 'Is Livorg 10mg Tablet a steroid? What is it used for?', 'No, Livorg 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25661, 'Livorg 10mg Tablet', 'Medcure Organics Pvt Ltd', 'Livorg 10mg Tablet', 'Does Livorg 10mg Tablet make you tired and drowsy?', 'Yes, Livorg 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25662, 'Livorg 10mg Tablet', 'Medcure Organics Pvt Ltd', 'Livorg 10mg Tablet', 'How long does it take for Livorg 10mg Tablet to work?', 'Livorg 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25663, 'Livorg 10mg Tablet', 'Medcure Organics Pvt Ltd', 'Livorg 10mg Tablet', 'Can I take Livorg 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livorg 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25664, 'Livorg 10mg Tablet', 'Medcure Organics Pvt Ltd', 'Livorg 10mg Tablet', 'Is it safe to take Livorg 10mg Tablet for a long time?', 'Livorg 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livorg 10mg Tablet for only as long as you need it.'),
(25665, 'Livorg 10mg Tablet', 'Medcure Organics Pvt Ltd', 'Livorg 10mg Tablet', 'For how long should I continue Livorg 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livorg 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livorg 10mg Tablet'),
(25666, 'LIVORG M 5mg/10mg Tablet', 'Medcure Organics Pvt Ltd', 'LIVORG M 5mg/10mg Tablet', 'What is LIVORG M 5mg/10mg Tablet?', 'LIVORG M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25667, 'LIVORG M 5mg/10mg Tablet', 'Medcure Organics Pvt Ltd', 'LIVORG M 5mg/10mg Tablet', 'Can the use of LIVORG M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of LIVORG M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25668, 'LIVORG M 5mg/10mg Tablet', 'Medcure Organics Pvt Ltd', 'LIVORG M 5mg/10mg Tablet', 'Can LIVORG M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, LIVORG M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25669, 'LIVORG M 5mg/10mg Tablet', 'Medcure Organics Pvt Ltd', 'LIVORG M 5mg/10mg Tablet', 'Can the use of LIVORG M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of LIVORG M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25670, 'LIVORG M 5mg/10mg Tablet', 'Medcure Organics Pvt Ltd', 'LIVORG M 5mg/10mg Tablet', 'Can I drink alcohol while taking LIVORG M 5mg/10mg Tablet?', 'No, do not take alcohol while taking LIVORG M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by LIVORG M 5mg/10mg Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25671, 'LIVORG M 5mg/10mg Tablet', 'Medcure Organics Pvt Ltd', 'LIVORG M 5mg/10mg Tablet', 'Will LIVORG M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of LIVORG M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25672, 'LIVORG M 5mg/10mg Tablet', 'Medcure Organics Pvt Ltd', 'LIVORG M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of LIVORG M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25673, 'Livorgy Tablet', 'Evitalife Pharma Private Limited', 'Livorgy Tablet', 'Is Livorgy Tablet a steroid? What is it used for?', 'No, Livorgy Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25674, 'Livorgy Tablet', 'Evitalife Pharma Private Limited', 'Livorgy Tablet', 'Does Livorgy Tablet make you tired and drowsy?', 'Yes, Livorgy Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25675, 'Livorgy Tablet', 'Evitalife Pharma Private Limited', 'Livorgy Tablet', 'How long does it take for Livorgy Tablet to work?', 'Livorgy Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25676, 'Livorgy Tablet', 'Evitalife Pharma Private Limited', 'Livorgy Tablet', 'Can I take Livorgy Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livorgy Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25677, 'Livorgy Tablet', 'Evitalife Pharma Private Limited', 'Livorgy Tablet', 'Is it safe to take Livorgy Tablet for a long time?', 'Livorgy Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livorgy Tablet for only as long as you need it.'),
(25678, 'Livorgy Tablet', 'Evitalife Pharma Private Limited', 'Livorgy Tablet', 'For how long should I continue Livorgy Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livorgy Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livorgy Tablet'),
(25679, 'Livoric 250mg Tablet', 'Syntro Health Care', 'Livoric 250mg Tablet', 'Is Livoric 250mg Tablet safe?', 'Livoric 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25680, 'Livoric 250mg Tablet', 'Syntro Health Care', 'Livoric 250mg Tablet', 'What if I forget to take a dose of Livoric 250mg Tablet?', 'If you forget a dose of Livoric 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25681, 'Livoric 250mg Tablet', 'Syntro Health Care', 'Livoric 250mg Tablet', 'Can the use of Livoric 250mg Tablet cause diarrhea?', 'Yes, the use of Livoric 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25682, 'Livoric 250mg Tablet', 'Syntro Health Care', 'Livoric 250mg Tablet', 'Can I stop taking Livoric 250mg Tablet when I feel better?', 'No, do not stop taking Livoric 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoric 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livoric 250mg Tablet in the dose and duration advised by the doctor.'),
(25683, 'Livoric 250mg Tablet', 'Syntro Health Care', 'Livoric 250mg Tablet', 'Can the use of Livoric 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoric 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoric 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25684, 'Livoric 500mg Tablet', 'Syntro Health Care', 'Livoric 500mg Tablet', 'Is Livoric 500mg Tablet safe?', 'Livoric 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25685, 'Livoric 500mg Tablet', 'Syntro Health Care', 'Livoric 500mg Tablet', 'What if I forget to take a dose of Livoric 500mg Tablet?', 'If you forget a dose of Livoric 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25686, 'Livoric 500mg Tablet', 'Syntro Health Care', 'Livoric 500mg Tablet', 'Can the use of Livoric 500mg Tablet cause diarrhea?', 'Yes, the use of Livoric 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25687, 'Livoric 500mg Tablet', 'Syntro Health Care', 'Livoric 500mg Tablet', 'Can I stop taking Livoric 500mg Tablet when I feel better?', 'No, do not stop taking Livoric 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoric 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoric 500mg Tablet in the dose and duration advised by the doctor.'),
(25688, 'Livoric 500mg Tablet', 'Syntro Health Care', 'Livoric 500mg Tablet', 'Can the use of Livoric 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoric 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoric 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25689, 'Livoric 5mg Tablet', 'Veeyork Healthcare', 'Livoric 5mg Tablet', 'Is Livoric 5mg Tablet a steroid? What is it used for?', 'No, Livoric 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25690, 'Livoric 5mg Tablet', 'Veeyork Healthcare', 'Livoric 5mg Tablet', 'Does Livoric 5mg Tablet make you tired and drowsy?', 'Yes, Livoric 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25691, 'Livoric 5mg Tablet', 'Veeyork Healthcare', 'Livoric 5mg Tablet', 'How long does it take for Livoric 5mg Tablet to work?', 'Livoric 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25692, 'Livoric 5mg Tablet', 'Veeyork Healthcare', 'Livoric 5mg Tablet', 'Can I take Livoric 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livoric 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25693, 'Livoric 5mg Tablet', 'Veeyork Healthcare', 'Livoric 5mg Tablet', 'Is it safe to take Livoric 5mg Tablet for a long time?', 'Livoric 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livoric 5mg Tablet for only as long as you need it.'),
(25694, 'Livoric 5mg Tablet', 'Veeyork Healthcare', 'Livoric 5mg Tablet', 'For how long should I continue Livoric 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livoric 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livoric 5mg Tablet'),
(25695, 'Livoric 750mg Tablet', 'Syntro Health Care', 'Livoric 750mg Tablet', 'Is Livoric 750mg Tablet safe?', 'Livoric 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25696, 'Livoric 750mg Tablet', 'Syntro Health Care', 'Livoric 750mg Tablet', 'What if I forget to take a dose of Livoric 750mg Tablet?', 'If you forget a dose of Livoric 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25697, 'Livoric 750mg Tablet', 'Syntro Health Care', 'Livoric 750mg Tablet', 'Can the use of Livoric 750mg Tablet cause diarrhea?', 'Yes, the use of Livoric 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25698, 'Livoric 750mg Tablet', 'Syntro Health Care', 'Livoric 750mg Tablet', 'Can I stop taking Livoric 750mg Tablet when I feel better?', 'No, do not stop taking Livoric 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoric 750mg Tablet too early, the symptoms may return or worsen. Continue taking Livoric 750mg Tablet in the dose and duration advised by the doctor.'),
(25699, 'Livoric 750mg Tablet', 'Syntro Health Care', 'Livoric 750mg Tablet', 'Can the use of Livoric 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoric 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoric 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25700, 'Livoric M 5mg/10mg Tablet', 'Veeyork Healthcare', 'Livoric M 5mg/10mg Tablet', 'What is Livoric M 5mg/10mg Tablet?', 'Livoric M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25701, 'Livoric M 5mg/10mg Tablet', 'Veeyork Healthcare', 'Livoric M 5mg/10mg Tablet', 'Can the use of Livoric M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livoric M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25702, 'Livoric M 5mg/10mg Tablet', 'Veeyork Healthcare', 'Livoric M 5mg/10mg Tablet', 'Can Livoric M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livoric M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25703, 'Livoric M 5mg/10mg Tablet', 'Veeyork Healthcare', 'Livoric M 5mg/10mg Tablet', 'Can the use of Livoric M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livoric M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25704, 'Livoric M 5mg/10mg Tablet', 'Veeyork Healthcare', 'Livoric M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livoric M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livoric M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livoric M 5mg/10mg Tablet.'),
(25705, 'Livoric M 5mg/10mg Tablet', 'Veeyork Healthcare', 'Livoric M 5mg/10mg Tablet', 'Will Livoric M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livoric M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25706, 'Livoric M 5mg/10mg Tablet', 'Veeyork Healthcare', 'Livoric M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livoric M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25707, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(25708, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'Can I decrease the dose of Livoric M Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(25709, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'How should Livoric M Oral Suspension be stored?', 'Livoric M Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25710, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'Can Livoric M Oral Suspension make my child sleepy?', 'Livoric M Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(25711, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livoric M Oral Suspension?', 'No, don’t start Livoric M Oral Suspension without speaking to your child’s doctor. Moreover, Livoric M Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(25712, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livoric M Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(25713, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Livoric M Oral Suspension to my child?', 'Some studies show that Livoric M Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(25714, 'Livoric M Oral Suspension', 'Veeyork Healthcare', 'Livoric M Oral Suspension', 'Can I use Livoric M Oral Suspension for treating acute asthma attacks in my child?', 'Livoric M Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(25715, 'Livorig 500mg Tablet', 'Quadriga Biotech Pvt Ltd', 'Livorig 500mg Tablet', 'Is Livorig 500mg Tablet safe?', 'Livorig 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25716, 'Livorig 500mg Tablet', 'Quadriga Biotech Pvt Ltd', 'Livorig 500mg Tablet', 'What if I forget to take a dose of Livorig 500mg Tablet?', 'If you forget a dose of Livorig 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25717, 'Livorig 500mg Tablet', 'Quadriga Biotech Pvt Ltd', 'Livorig 500mg Tablet', 'Can the use of Livorig 500mg Tablet cause diarrhea?', 'Yes, the use of Livorig 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25718, 'Livorig 500mg Tablet', 'Quadriga Biotech Pvt Ltd', 'Livorig 500mg Tablet', 'Can I stop taking Livorig 500mg Tablet when I feel better?', 'No, do not stop taking Livorig 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livorig 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livorig 500mg Tablet in the dose and duration advised by the doctor.'),
(25719, 'Livorig 500mg Tablet', 'Quadriga Biotech Pvt Ltd', 'Livorig 500mg Tablet', 'Can the use of Livorig 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livorig 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livorig 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25720, 'Livorik 500mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Livorik 500mg Tablet', 'Is Livorik 500mg Tablet safe?', 'Livorik 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25721, 'Livorik 500mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Livorik 500mg Tablet', 'What if I forget to take a dose of Livorik 500mg Tablet?', 'If you forget a dose of Livorik 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25722, 'Livorik 500mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Livorik 500mg Tablet', 'Can the use of Livorik 500mg Tablet cause diarrhea?', 'Yes, the use of Livorik 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25723, 'Livorik 500mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Livorik 500mg Tablet', 'Can I stop taking Livorik 500mg Tablet when I feel better?', 'No, do not stop taking Livorik 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livorik 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livorik 500mg Tablet in the dose and duration advised by the doctor.'),
(25724, 'Livorik 500mg Tablet', 'Lanark Laboratories Pvt Ltd', 'Livorik 500mg Tablet', 'Can the use of Livorik 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livorik 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livorik 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25725, 'Livorock 500mg Tablet', 'Elivia Life Sciences Pvt Ltd', 'Livorock 500mg Tablet', 'Is Livorock 500mg Tablet safe?', 'Livorock 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25726, 'Livorock 500mg Tablet', 'Elivia Life Sciences Pvt Ltd', 'Livorock 500mg Tablet', 'What if I forget to take a dose of Livorock 500mg Tablet?', 'If you forget a dose of Livorock 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25727, 'Livorock 500mg Tablet', 'Elivia Life Sciences Pvt Ltd', 'Livorock 500mg Tablet', 'Can the use of Livorock 500mg Tablet cause diarrhea?', 'Yes, the use of Livorock 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25728, 'Livorock 500mg Tablet', 'Elivia Life Sciences Pvt Ltd', 'Livorock 500mg Tablet', 'Can I stop taking Livorock 500mg Tablet when I feel better?', 'No, do not stop taking Livorock 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livorock 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livorock 500mg Tablet in the dose and duration advised by the doctor.'),
(25729, 'Livorock 500mg Tablet', 'Elivia Life Sciences Pvt Ltd', 'Livorock 500mg Tablet', 'Can the use of Livorock 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livorock 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livorock 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25730, 'Livorol 500mg Tablet', 'RKM Health Care', 'Livorol 500mg Tablet', 'Is Livorol 500mg Tablet safe?', 'Livorol 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25731, 'Livorol 500mg Tablet', 'RKM Health Care', 'Livorol 500mg Tablet', 'What if I forget to take a dose of Livorol 500mg Tablet?', 'If you forget a dose of Livorol 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25732, 'Livorol 500mg Tablet', 'RKM Health Care', 'Livorol 500mg Tablet', 'Can the use of Livorol 500mg Tablet cause diarrhea?', 'Yes, the use of Livorol 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25733, 'Livorol 500mg Tablet', 'RKM Health Care', 'Livorol 500mg Tablet', 'Can I stop taking Livorol 500mg Tablet when I feel better?', 'No, do not stop taking Livorol 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livorol 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livorol 500mg Tablet in the dose and duration advised by the doctor.'),
(25734, 'Livorol 500mg Tablet', 'RKM Health Care', 'Livorol 500mg Tablet', 'Can the use of Livorol 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livorol 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livorol 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25735, 'Livoros 5mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Livoros 5mg Tablet', 'Is Livoros 5mg Tablet a steroid? What is it used for?', 'No, Livoros 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25736, 'Livoros 5mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Livoros 5mg Tablet', 'Does Livoros 5mg Tablet make you tired and drowsy?', 'Yes, Livoros 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25737, 'Livoros 5mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Livoros 5mg Tablet', 'How long does it take for Livoros 5mg Tablet to work?', 'Livoros 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25738, 'Livoros 5mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Livoros 5mg Tablet', 'Can I take Livoros 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livoros 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25739, 'Livoros 5mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Livoros 5mg Tablet', 'Is it safe to take Livoros 5mg Tablet for a long time?', 'Livoros 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livoros 5mg Tablet for only as long as you need it.'),
(25740, 'Livoros 5mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Livoros 5mg Tablet', 'For how long should I continue Livoros 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livoros 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livoros 5mg Tablet'),
(25741, 'Livorox 5mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox 5mg Tablet', 'Is Livorox 5mg Tablet a steroid? What is it used for?', 'No, Livorox 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25742, 'Livorox 5mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox 5mg Tablet', 'Does Livorox 5mg Tablet make you tired and drowsy?', 'Yes, Livorox 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25743, 'Livorox 5mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox 5mg Tablet', 'How long does it take for Livorox 5mg Tablet to work?', 'Livorox 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25744, 'Livorox 5mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox 5mg Tablet', 'Can I take Livorox 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livorox 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25745, 'Livorox 5mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox 5mg Tablet', 'Is it safe to take Livorox 5mg Tablet for a long time?', 'Livorox 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livorox 5mg Tablet for only as long as you need it.'),
(25746, 'Livorox 5mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox 5mg Tablet', 'For how long should I continue Livorox 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livorox 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livorox 5mg Tablet'),
(25747, 'Livorox M 5mg/10mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M 5mg/10mg Tablet', 'What is Livorox M 5mg/10mg Tablet?', 'Livorox M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25748, 'Livorox M 5mg/10mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M 5mg/10mg Tablet', 'Can the use of Livorox M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livorox M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25749, 'Livorox M 5mg/10mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M 5mg/10mg Tablet', 'Can Livorox M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livorox M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25750, 'Livorox M 5mg/10mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M 5mg/10mg Tablet', 'Can the use of Livorox M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livorox M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25751, 'Livorox M 5mg/10mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livorox M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livorox M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livorox M 5mg/10mg Tablet.'),
(25752, 'Livorox M 5mg/10mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M 5mg/10mg Tablet', 'Will Livorox M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livorox M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25753, 'Livorox M 5mg/10mg Tablet', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livorox M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25754, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(25755, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'Can I decrease the dose of Livorox M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(25756, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'How should Livorox M Syrup be stored?', 'Livorox M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25757, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'Can Livorox M Syrup make my child sleepy?', 'Livorox M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(25758, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livorox M Syrup?', 'No, don’t start Livorox M Syrup without speaking to your child’s doctor. Moreover, Livorox M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(25759, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livorox M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(25760, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livorox M Syrup to my child?', 'Some studies show that Livorox M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(25761, 'Livorox M Syrup', 'Medcover Pharmaceuticals (OPC) Private Limited', 'Livorox M Syrup', 'Can I use Livorox M Syrup for treating acute asthma attacks in my child?', 'Livorox M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(25762, 'Livort 500mg Tablet', 'Totem Biotech Pvt Ltd', 'Livort 500mg Tablet', 'Is Livort 500mg Tablet safe?', 'Livort 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25763, 'Livort 500mg Tablet', 'Totem Biotech Pvt Ltd', 'Livort 500mg Tablet', 'What if I forget to take a dose of Livort 500mg Tablet?', 'If you forget a dose of Livort 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25764, 'Livort 500mg Tablet', 'Totem Biotech Pvt Ltd', 'Livort 500mg Tablet', 'Can the use of Livort 500mg Tablet cause diarrhea?', 'Yes, the use of Livort 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25765, 'Livort 500mg Tablet', 'Totem Biotech Pvt Ltd', 'Livort 500mg Tablet', 'Can I stop taking Livort 500mg Tablet when I feel better?', 'No, do not stop taking Livort 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livort 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livort 500mg Tablet in the dose and duration advised by the doctor.'),
(25766, 'Livort 500mg Tablet', 'Totem Biotech Pvt Ltd', 'Livort 500mg Tablet', 'Can the use of Livort 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livort 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livort 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25767, 'Livorus Tablet', 'Icarus Healthcare Pvt Ltd', 'Livorus Tablet', 'Can the use of Livorus  Tablet cause indigestion?', 'Livorus  Tablet may cause indigestion. However, taking it with or after food can prevent indigestion. Talk to your doctor if you indigestion persists.'),
(25768, 'Livorus Tablet', 'Icarus Healthcare Pvt Ltd', 'Livorus Tablet', 'What are the recommended storage conditions for Livorus  Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25769, 'Livosac 500mg Tablet', 'Senen Biotech', 'Livosac 500mg Tablet', 'Is Livosac 500mg Tablet safe?', 'Livosac 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25770, 'Livosac 500mg Tablet', 'Senen Biotech', 'Livosac 500mg Tablet', 'What if I forget to take a dose of Livosac 500mg Tablet?', 'If you forget a dose of Livosac 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25771, 'Livosac 500mg Tablet', 'Senen Biotech', 'Livosac 500mg Tablet', 'Can the use of Livosac 500mg Tablet cause diarrhea?', 'Yes, the use of Livosac 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25772, 'Livosac 500mg Tablet', 'Senen Biotech', 'Livosac 500mg Tablet', 'Can I stop taking Livosac 500mg Tablet when I feel better?', 'No, do not stop taking Livosac 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livosac 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livosac 500mg Tablet in the dose and duration advised by the doctor.'),
(25773, 'Livosac 500mg Tablet', 'Senen Biotech', 'Livosac 500mg Tablet', 'Can the use of Livosac 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livosac 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livosac 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25774, 'Livosac OZ 250mg/500mg Tablet', 'Senen Biotech', 'Livosac OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Livosac OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(25775, 'Livosac OZ 250mg/500mg Tablet', 'Senen Biotech', 'Livosac OZ 250mg/500mg Tablet', 'Can I stop taking Livosac OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livosac OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(25776, 'Livosac OZ 250mg/500mg Tablet', 'Senen Biotech', 'Livosac OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livosac OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(25777, 'Livosan 500mg Tablet', 'Paradigm Healthcare', 'Livosan 500mg Tablet', 'Is Livosan 500mg Tablet safe?', 'Livosan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25778, 'Livosan 500mg Tablet', 'Paradigm Healthcare', 'Livosan 500mg Tablet', 'What if I forget to take a dose of Livosan 500mg Tablet?', 'If you forget a dose of Livosan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25779, 'Livosan 500mg Tablet', 'Paradigm Healthcare', 'Livosan 500mg Tablet', 'Can the use of Livosan 500mg Tablet cause diarrhea?', 'Yes, the use of Livosan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25780, 'Livosan 500mg Tablet', 'Paradigm Healthcare', 'Livosan 500mg Tablet', 'Can I stop taking Livosan 500mg Tablet when I feel better?', 'No, do not stop taking Livosan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livosan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livosan 500mg Tablet in the dose and duration advised by the doctor.'),
(25781, 'Livosan 500mg Tablet', 'Paradigm Healthcare', 'Livosan 500mg Tablet', 'Can the use of Livosan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livosan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livosan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25782, 'Livosil 140mg Capsule', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil 140mg Capsule', 'What is Livosil 140mg Capsule? What is it used for?', 'Livosil 140mg Capsule belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livosil 140mg Capsule accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(25783, 'Livosil 140mg Capsule', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil 140mg Capsule', 'How does Livosil 140mg Capsule work for the liver?', 'Livosil 140mg Capsule is obtained from milk thistle seed (Silybum marianum). Livosil 140mg Capsule works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25784, 'Livosil 140mg Capsule', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil 140mg Capsule', 'How to use Livosil 140mg Capsule?', 'Livosil 140mg Capsule should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livosil 140mg Capsule.'),
(25785, 'Livosil 140mg Capsule', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil 140mg Capsule', 'What are the side effects of Livosil 140mg Capsule?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(25786, 'Livosil 140mg Capsule', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil 140mg Capsule', 'Can Livosil 140mg Capsule be used in pregnancy and lactation?', 'Livosil 140mg Capsule may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livosil 140mg Capsule if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(25787, 'Livosil H 200mg Syrup', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil H 200mg Syrup', 'What is Livosil H 200mg Syrup? What is it used for?', 'Livosil H 200mg Syrup belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livosil H 200mg Syrup accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(25788, 'Livosil H 200mg Syrup', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil H 200mg Syrup', 'How does Livosil H 200mg Syrup work for the liver?', 'Livosil H 200mg Syrup is obtained from milk thistle seed (Silybum marianum). Livosil H 200mg Syrup works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(25789, 'Livosil H 200mg Syrup', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil H 200mg Syrup', 'How to use Livosil H 200mg Syrup?', 'Livosil H 200mg Syrup should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livosil H 200mg Syrup.'),
(25790, 'Livosil H 200mg Syrup', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil H 200mg Syrup', 'What are the side effects of Livosil H 200mg Syrup?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(25791, 'Livosil H 200mg Syrup', 'Centaur Pharmaceuticals Pvt Ltd', 'Livosil H 200mg Syrup', 'Can Livosil H 200mg Syrup be used in pregnancy and lactation?', 'Livosil H 200mg Syrup may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livosil H 200mg Syrup if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(25792, 'Livosin 250mg Tablet', 'Zencure Organics', 'Livosin 250mg Tablet', 'Is Livosin 250mg Tablet safe?', 'Livosin 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25793, 'Livosin 250mg Tablet', 'Zencure Organics', 'Livosin 250mg Tablet', 'What if I forget to take a dose of Livosin 250mg Tablet?', 'If you forget a dose of Livosin 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25794, 'Livosin 250mg Tablet', 'Zencure Organics', 'Livosin 250mg Tablet', 'Can the use of Livosin 250mg Tablet cause diarrhea?', 'Yes, the use of Livosin 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25795, 'Livosin 250mg Tablet', 'Zencure Organics', 'Livosin 250mg Tablet', 'Can I stop taking Livosin 250mg Tablet when I feel better?', 'No, do not stop taking Livosin 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livosin 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livosin 250mg Tablet in the dose and duration advised by the doctor.'),
(25796, 'Livosin 250mg Tablet', 'Zencure Organics', 'Livosin 250mg Tablet', 'Can the use of Livosin 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livosin 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livosin 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25797, 'Livosin 500mg Tablet', 'Zencure Organics', 'Livosin 500mg Tablet', 'Is Livosin 500mg Tablet safe?', 'Livosin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25798, 'Livosin 500mg Tablet', 'Zencure Organics', 'Livosin 500mg Tablet', 'What if I forget to take a dose of Livosin 500mg Tablet?', 'If you forget a dose of Livosin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25799, 'Livosin 500mg Tablet', 'Zencure Organics', 'Livosin 500mg Tablet', 'Can the use of Livosin 500mg Tablet cause diarrhea?', 'Yes, the use of Livosin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25800, 'Livosin 500mg Tablet', 'Zencure Organics', 'Livosin 500mg Tablet', 'Can I stop taking Livosin 500mg Tablet when I feel better?', 'No, do not stop taking Livosin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livosin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livosin 500mg Tablet in the dose and duration advised by the doctor.'),
(25801, 'Livosin 500mg Tablet', 'Zencure Organics', 'Livosin 500mg Tablet', 'Can the use of Livosin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livosin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livosin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25802, 'Livosoft 150mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 150mg Tablet', 'When should I take Livosoft 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livosoft 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25803, 'Livosoft 150mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 150mg Tablet', 'Is Livosoft 150mg Tablet safe?', 'Livosoft 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25804, 'Livosoft 150mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 150mg Tablet', 'How does Livosoft 150mg Tablet help the liver?', 'Livosoft 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25805, 'Livosoft 150mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 150mg Tablet', 'Does Livosoft 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livosoft 150mg Tablet, but it is not common. The use of Livosoft 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25806, 'Livosoft 150mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 150mg Tablet', 'What should I avoid while taking Livosoft 150mg Tablet?', 'While taking Livosoft 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livosoft 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livosoft 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Livosoft 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livosoft 150mg Tablet.'),
(25807, 'Livosoft 300mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 300mg Tablet', 'When should I take Livosoft 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livosoft 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25808, 'Livosoft 300mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 300mg Tablet', 'Is Livosoft 300mg Tablet safe?', 'Livosoft 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25809, 'Livosoft 300mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 300mg Tablet', 'How does Livosoft 300mg Tablet help the liver?', 'Livosoft 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25810, 'Livosoft 300mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 300mg Tablet', 'Does Livosoft 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livosoft 300mg Tablet, but it is not common. The use of Livosoft 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25811, 'Livosoft 300mg Tablet', 'Mankind Pharma Ltd', 'Livosoft 300mg Tablet', 'What should I avoid while taking Livosoft 300mg Tablet?', 'While taking Livosoft 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livosoft 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livosoft 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livosoft 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livosoft 300mg Tablet.'),
(25812, 'Livosoft 450 Tablet SR', 'Mankind Pharma Ltd', 'Livosoft 450 Tablet SR', 'When should I take Livosoft 450 Tablet SR?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livosoft 450 Tablet SR should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25813, 'Livosoft 450 Tablet SR', 'Mankind Pharma Ltd', 'Livosoft 450 Tablet SR', 'Is Livosoft 450 Tablet SR safe?', 'Livosoft 450 Tablet SR is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25814, 'Livosoft 450 Tablet SR', 'Mankind Pharma Ltd', 'Livosoft 450 Tablet SR', 'How does Livosoft 450 Tablet SR help the liver?', 'Livosoft 450 Tablet SR acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25815, 'Livosoft 450 Tablet SR', 'Mankind Pharma Ltd', 'Livosoft 450 Tablet SR', 'Does Livosoft 450 Tablet SR cause weight gain?', 'Yes, there is a chance of weight gain with Livosoft 450 Tablet SR, but it is not common. The use of Livosoft 450 Tablet SR can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25816, 'Livosoft 450 Tablet SR', 'Mankind Pharma Ltd', 'Livosoft 450 Tablet SR', 'What should I avoid while taking Livosoft 450 Tablet SR?', 'While taking Livosoft 450 Tablet SR, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livosoft 450 Tablet SR. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livosoft 450 Tablet SR. So, ask your doctor about the time gap that should be maintained between Livosoft 450 Tablet SR and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livosoft 450 Tablet SR.'),
(25817, 'Livosole 300 Tablet', 'Dr.Uds Labs Pvt. Ltd.', 'Livosole 300 Tablet', 'When should I take Livosole 300 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livosole 300 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25818, 'Livosole 300 Tablet', 'Dr.Uds Labs Pvt. Ltd.', 'Livosole 300 Tablet', 'Is Livosole 300 Tablet safe?', 'Livosole 300 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25819, 'Livosole 300 Tablet', 'Dr.Uds Labs Pvt. Ltd.', 'Livosole 300 Tablet', 'How does Livosole 300 Tablet help the liver?', 'Livosole 300 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25820, 'Livosole 300 Tablet', 'Dr.Uds Labs Pvt. Ltd.', 'Livosole 300 Tablet', 'Does Livosole 300 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livosole 300 Tablet, but it is not common. The use of Livosole 300 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25821, 'Livosole 300 Tablet', 'Dr.Uds Labs Pvt. Ltd.', 'Livosole 300 Tablet', 'What should I avoid while taking Livosole 300 Tablet?', 'While taking Livosole 300 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livosole 300 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livosole 300 Tablet. So, ask your doctor about the time gap that should be maintained between Livosole 300 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livosole 300 Tablet.'),
(25822, 'Livospan 250mg Tablet', 'Pharmatech Healthcare', 'Livospan 250mg Tablet', 'Is Livospan 250mg Tablet safe?', 'Livospan 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25823, 'Livospan 250mg Tablet', 'Pharmatech Healthcare', 'Livospan 250mg Tablet', 'What if I forget to take a dose of Livospan 250mg Tablet?', 'If you forget a dose of Livospan 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25824, 'Livospan 250mg Tablet', 'Pharmatech Healthcare', 'Livospan 250mg Tablet', 'Can the use of Livospan 250mg Tablet cause diarrhea?', 'Yes, the use of Livospan 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25825, 'Livospan 250mg Tablet', 'Pharmatech Healthcare', 'Livospan 250mg Tablet', 'Can I stop taking Livospan 250mg Tablet when I feel better?', 'No, do not stop taking Livospan 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livospan 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livospan 250mg Tablet in the dose and duration advised by the doctor.'),
(25826, 'Livospan 250mg Tablet', 'Pharmatech Healthcare', 'Livospan 250mg Tablet', 'Can the use of Livospan 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livospan 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livospan 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25827, 'Livospark 500 Tablet', 'Spark Bless Pharma', 'Livospark 500 Tablet', 'Is Livospark 500 Tablet safe?', 'Livospark 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25828, 'Livospark 500 Tablet', 'Spark Bless Pharma', 'Livospark 500 Tablet', 'What if I forget to take a dose of Livospark 500 Tablet?', 'If you forget a dose of Livospark 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25829, 'Livospark 500 Tablet', 'Spark Bless Pharma', 'Livospark 500 Tablet', 'Can the use of Livospark 500 Tablet cause diarrhea?', 'Yes, the use of Livospark 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25830, 'Livospark 500 Tablet', 'Spark Bless Pharma', 'Livospark 500 Tablet', 'Can I stop taking Livospark 500 Tablet when I feel better?', 'No, do not stop taking Livospark 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livospark 500 Tablet too early, the symptoms may return or worsen. Continue taking Livospark 500 Tablet in the dose and duration advised by the doctor.'),
(25831, 'Livospark 500 Tablet', 'Spark Bless Pharma', 'Livospark 500 Tablet', 'Can the use of Livospark 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livospark 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livospark 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25832, 'Livospark-OZ Oral Suspension', 'Spark Bless Pharma', 'Livospark-OZ Oral Suspension', 'What if I don\'t get better after using Livospark-OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(25833, 'Livospark-OZ Oral Suspension', 'Spark Bless Pharma', 'Livospark-OZ Oral Suspension', 'Can I stop taking Livospark-OZ Oral Suspension when I feel better?', 'No, do not stop taking Livospark-OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(25834, 'Livospark-OZ Oral Suspension', 'Spark Bless Pharma', 'Livospark-OZ Oral Suspension', 'What if I miss my dose?', 'Take Livospark-OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(25835, 'Livospark-OZ Tablet', 'Spark Bless Pharma', 'Livospark-OZ Tablet', 'What if I don\'t get better after using Livospark-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(25836, 'Livospark-OZ Tablet', 'Spark Bless Pharma', 'Livospark-OZ Tablet', 'Can I stop taking Livospark-OZ Tablet when I feel better?', 'No, do not stop taking Livospark-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(25837, 'Livospark-OZ Tablet', 'Spark Bless Pharma', 'Livospark-OZ Tablet', 'What if I miss my dose?', 'Take Livospark-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(25838, 'Livosta 250mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 250mg Tablet', 'Is Livosta 250mg Tablet safe?', 'Livosta 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25839, 'Livosta 250mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 250mg Tablet', 'What if I forget to take a dose of Livosta 250mg Tablet?', 'If you forget a dose of Livosta 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25840, 'Livosta 250mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 250mg Tablet', 'Can the use of Livosta 250mg Tablet cause diarrhea?', 'Yes, the use of Livosta 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25841, 'Livosta 250mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 250mg Tablet', 'Can I stop taking Livosta 250mg Tablet when I feel better?', 'No, do not stop taking Livosta 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livosta 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livosta 250mg Tablet in the dose and duration advised by the doctor.'),
(25842, 'Livosta 250mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 250mg Tablet', 'Can the use of Livosta 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livosta 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livosta 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25843, 'Livosta 750mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 750mg Tablet', 'Is Livosta 750mg Tablet safe?', 'Livosta 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25844, 'Livosta 750mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 750mg Tablet', 'What if I forget to take a dose of Livosta 750mg Tablet?', 'If you forget a dose of Livosta 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25845, 'Livosta 750mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 750mg Tablet', 'Can the use of Livosta 750mg Tablet cause diarrhea?', 'Yes, the use of Livosta 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25846, 'Livosta 750mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 750mg Tablet', 'Can I stop taking Livosta 750mg Tablet when I feel better?', 'No, do not stop taking Livosta 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livosta 750mg Tablet too early, the symptoms may return or worsen. Continue taking Livosta 750mg Tablet in the dose and duration advised by the doctor.'),
(25847, 'Livosta 750mg Tablet', 'Staunch Health Care Pvt Ltd', 'Livosta 750mg Tablet', 'Can the use of Livosta 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livosta 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livosta 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25848, 'Livostep 150mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 150mg Tablet', 'When should I take Livostep 150mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livostep 150mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25849, 'Livostep 150mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 150mg Tablet', 'Is Livostep 150mg Tablet safe?', 'Livostep 150mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25850, 'Livostep 150mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 150mg Tablet', 'How does Livostep 150mg Tablet help the liver?', 'Livostep 150mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25851, 'Livostep 150mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 150mg Tablet', 'Does Livostep 150mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livostep 150mg Tablet, but it is not common. The use of Livostep 150mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25852, 'Livostep 150mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 150mg Tablet', 'What should I avoid while taking Livostep 150mg Tablet?', 'While taking Livostep 150mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livostep 150mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livostep 150mg Tablet. So, ask your doctor about the time gap that should be maintained between Livostep 150mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livostep 150mg Tablet.'),
(25853, 'Livostep 300mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 300mg Tablet', 'When should I take Livostep 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livostep 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(25854, 'Livostep 300mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 300mg Tablet', 'Is Livostep 300mg Tablet safe?', 'Livostep 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(25855, 'Livostep 300mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 300mg Tablet', 'How does Livostep 300mg Tablet help the liver?', 'Livostep 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(25856, 'Livostep 300mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 300mg Tablet', 'Does Livostep 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livostep 300mg Tablet, but it is not common. The use of Livostep 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(25857, 'Livostep 300mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Livostep 300mg Tablet', 'What should I avoid while taking Livostep 300mg Tablet?', 'While taking Livostep 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livostep 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livostep 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livostep 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livostep 300mg Tablet.'),
(25858, 'Livosuck MT 5mg/10mg Tablet', 'Euporie Pharmaceuticals', 'Livosuck MT 5mg/10mg Tablet', 'What is Livosuck MT 5mg/10mg Tablet?', 'Livosuck MT 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25859, 'Livosuck MT 5mg/10mg Tablet', 'Euporie Pharmaceuticals', 'Livosuck MT 5mg/10mg Tablet', 'Can the use of Livosuck MT 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livosuck MT 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25860, 'Livosuck MT 5mg/10mg Tablet', 'Euporie Pharmaceuticals', 'Livosuck MT 5mg/10mg Tablet', 'Can Livosuck MT 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livosuck MT 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25861, 'Livosuck MT 5mg/10mg Tablet', 'Euporie Pharmaceuticals', 'Livosuck MT 5mg/10mg Tablet', 'Can the use of Livosuck MT 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livosuck MT 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25862, 'Livosuck MT 5mg/10mg Tablet', 'Euporie Pharmaceuticals', 'Livosuck MT 5mg/10mg Tablet', 'Can I drink alcohol while taking Livosuck MT 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livosuck MT 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livosuck MT 5mg/10mg Tablet.'),
(25863, 'Livosuck MT 5mg/10mg Tablet', 'Euporie Pharmaceuticals', 'Livosuck MT 5mg/10mg Tablet', 'Will Livosuck MT 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livosuck MT 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25864, 'Livosuck MT 5mg/10mg Tablet', 'Euporie Pharmaceuticals', 'Livosuck MT 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livosuck MT 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25865, 'Livosync 5mg Tablet MD', 'Medisync Pharma', 'Livosync 5mg Tablet MD', 'Q. Is Livosync 5mg Tablet MD a steroid? What is it used for?', 'No, Livosync 5mg Tablet MD is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25866, 'Livosync 5mg Tablet MD', 'Medisync Pharma', 'Livosync 5mg Tablet MD', 'Q. Does Livosync 5mg Tablet MD make you tired and drowsy?', 'Yes, Livosync 5mg Tablet MD can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25867, 'Livosync 5mg Tablet MD', 'Medisync Pharma', 'Livosync 5mg Tablet MD', 'Q. How long does it take for Livosync 5mg Tablet MD to work?', 'Livosync 5mg Tablet MD starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25868, 'Livosync 5mg Tablet MD', 'Medisync Pharma', 'Livosync 5mg Tablet MD', 'Q. Can I take Livosync 5mg Tablet MD and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livosync 5mg Tablet MD during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25869, 'Livosync 5mg Tablet MD', 'Medisync Pharma', 'Livosync 5mg Tablet MD', 'Q. Is it safe to take Livosync 5mg Tablet MD for a long time?', 'Livosync 5mg Tablet MD is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livosync 5mg Tablet MD for only as long as you need it.'),
(25870, 'Livosync 5mg Tablet MD', 'Medisync Pharma', 'Livosync 5mg Tablet MD', 'Q. For how long should I continue Livosync 5mg Tablet MD?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livosync 5mg Tablet MD for a longer time. Talk to your doctor if you are unsure about the duration of using Livosync 5mg Tablet MD'),
(25871, 'Livosync Plus 5mg/10mg Tablet', 'Medisync Pharma', 'Livosync Plus 5mg/10mg Tablet', 'Q. What is Livosync Plus 5mg/10mg Tablet?', 'Livosync Plus 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25872, 'Livosync Plus 5mg/10mg Tablet', 'Medisync Pharma', 'Livosync Plus 5mg/10mg Tablet', 'Q. Can the use of Livosync Plus 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livosync Plus 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25873, 'Livosync Plus 5mg/10mg Tablet', 'Medisync Pharma', 'Livosync Plus 5mg/10mg Tablet', 'Q. Can Livosync Plus 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livosync Plus 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25874, 'Livosync Plus 5mg/10mg Tablet', 'Medisync Pharma', 'Livosync Plus 5mg/10mg Tablet', 'Q. Can the use of Livosync Plus 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livosync Plus 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25875, 'Livosync Plus 5mg/10mg Tablet', 'Medisync Pharma', 'Livosync Plus 5mg/10mg Tablet', 'Q. Can I drink alcohol while taking Livosync Plus 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livosync Plus 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livosync Plus 5mg/10mg Tablet.'),
(25876, 'Livosync Plus 5mg/10mg Tablet', 'Medisync Pharma', 'Livosync Plus 5mg/10mg Tablet', 'Q. Will Livosync Plus 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livosync Plus 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25877, 'Livosync Plus 5mg/10mg Tablet', 'Medisync Pharma', 'Livosync Plus 5mg/10mg Tablet', 'Q. What are the instructions for storage and disposal of Livosync Plus 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25878, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25879, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. Can I decrease the dose of Livosync Plus Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(25880, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. How should Livosync Plus Kid 2.5mg/4mg Tablet be stored?', 'Livosync Plus Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25881, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. Can Livosync Plus Kid 2.5mg/4mg Tablet make my child sleepy?', 'Livosync Plus Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(25882, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livosync Plus Kid 2.5mg/4mg Tablet?', 'No, don’t start Livosync Plus Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Livosync Plus Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(25883, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livosync Plus Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(25884, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. My child is suffering from a mood disorder. Is it safe to give Livosync Plus Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Livosync Plus Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(25885, 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Medisync Pharma', 'Livosync Plus Kid 2.5mg/4mg Tablet', 'Q. Can I use Livosync Plus Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Livosync Plus Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(25886, 'Livota 250mg Tablet', 'Zota Health care Ltd', 'Livota 250mg Tablet', 'Is Livota 250mg Tablet safe?', 'Livota 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25887, 'Livota 250mg Tablet', 'Zota Health care Ltd', 'Livota 250mg Tablet', 'What if I forget to take a dose of Livota 250mg Tablet?', 'If you forget a dose of Livota 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25888, 'Livota 250mg Tablet', 'Zota Health care Ltd', 'Livota 250mg Tablet', 'Can the use of Livota 250mg Tablet cause diarrhea?', 'Yes, the use of Livota 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25889, 'Livota 250mg Tablet', 'Zota Health care Ltd', 'Livota 250mg Tablet', 'Can I stop taking Livota 250mg Tablet when I feel better?', 'No, do not stop taking Livota 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livota 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livota 250mg Tablet in the dose and duration advised by the doctor.'),
(25890, 'Livota 250mg Tablet', 'Zota Health care Ltd', 'Livota 250mg Tablet', 'Can the use of Livota 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livota 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livota 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25891, 'Livotab M 5mg/10mg Tablet', 'Pray Healthcare', 'Livotab M 5mg/10mg Tablet', 'What is Livotab M 5mg/10mg Tablet?', 'Livotab M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25892, 'Livotab M 5mg/10mg Tablet', 'Pray Healthcare', 'Livotab M 5mg/10mg Tablet', 'Can the use of Livotab M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livotab M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25893, 'Livotab M 5mg/10mg Tablet', 'Pray Healthcare', 'Livotab M 5mg/10mg Tablet', 'Can Livotab M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livotab M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25894, 'Livotab M 5mg/10mg Tablet', 'Pray Healthcare', 'Livotab M 5mg/10mg Tablet', 'Can the use of Livotab M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livotab M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25895, 'Livotab M 5mg/10mg Tablet', 'Pray Healthcare', 'Livotab M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livotab M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livotab M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livotab M 5mg/10mg Tablet.'),
(25896, 'Livotab M 5mg/10mg Tablet', 'Pray Healthcare', 'Livotab M 5mg/10mg Tablet', 'Will Livotab M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livotab M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25897, 'Livotab M 5mg/10mg Tablet', 'Pray Healthcare', 'Livotab M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livotab M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25898, 'Livotal 250mg Tablet', 'Talson Pharmaceuticals', 'Livotal 250mg Tablet', 'Is Livotal 250mg Tablet safe?', 'Livotal 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25899, 'Livotal 250mg Tablet', 'Talson Pharmaceuticals', 'Livotal 250mg Tablet', 'What if I forget to take a dose of Livotal 250mg Tablet?', 'If you forget a dose of Livotal 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25900, 'Livotal 250mg Tablet', 'Talson Pharmaceuticals', 'Livotal 250mg Tablet', 'Can the use of Livotal 250mg Tablet cause diarrhea?', 'Yes, the use of Livotal 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25901, 'Livotal 250mg Tablet', 'Talson Pharmaceuticals', 'Livotal 250mg Tablet', 'Can I stop taking Livotal 250mg Tablet when I feel better?', 'No, do not stop taking Livotal 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livotal 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livotal 250mg Tablet in the dose and duration advised by the doctor.'),
(25902, 'Livotal 250mg Tablet', 'Talson Pharmaceuticals', 'Livotal 250mg Tablet', 'Can the use of Livotal 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livotal 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotal 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25903, 'Livotal 500mg Tablet', 'Talson Pharmaceuticals', 'Livotal 500mg Tablet', 'Is Livotal 500mg Tablet safe?', 'Livotal 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25904, 'Livotal 500mg Tablet', 'Talson Pharmaceuticals', 'Livotal 500mg Tablet', 'What if I forget to take a dose of Livotal 500mg Tablet?', 'If you forget a dose of Livotal 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25905, 'Livotal 500mg Tablet', 'Talson Pharmaceuticals', 'Livotal 500mg Tablet', 'Can the use of Livotal 500mg Tablet cause diarrhea?', 'Yes, the use of Livotal 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25906, 'Livotal 500mg Tablet', 'Talson Pharmaceuticals', 'Livotal 500mg Tablet', 'Can I stop taking Livotal 500mg Tablet when I feel better?', 'No, do not stop taking Livotal 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livotal 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livotal 500mg Tablet in the dose and duration advised by the doctor.'),
(25907, 'Livotal 500mg Tablet', 'Talson Pharmaceuticals', 'Livotal 500mg Tablet', 'Can the use of Livotal 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livotal 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotal 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25908, 'Livotate 3gm Granules', 'Medizia Biotech', 'Livotate 3gm Granules', 'Is it ok to take alcohol when taking Livotate 3gm Granules?', 'No, it is not recommended to take alcohol when on Livotate 3gm Granules. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25909, 'Livotate 3gm Granules', 'Medizia Biotech', 'Livotate 3gm Granules', 'What is Livotate 3gm Granules?', 'Livotate 3gm Granules is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25910, 'Livotate 3gm Granules', 'Medizia Biotech', 'Livotate 3gm Granules', 'Is it safe to give Livotate 3gm Granules to pregnant or lactating women?', 'Livotate 3gm Granules is not recommended for use in pregnant or breastfeeding women unless absolutely necessary. It is advised that if your doctor prescribes you this medicine then you must discuss all the risks and benefits associated with this medicine.'),
(25911, 'Livotate 3gm Granules', 'Medizia Biotech', 'Livotate 3gm Granules', 'What is the use of Livotate 3gm Granules in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livotate 3gm Granules works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25912, 'Livotate 3gm Granules', 'Medizia Biotech', 'Livotate 3gm Granules', 'How is Livotate 3gm Granules given?', 'Livotate 3gm Granules can be given orally, with or without food. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25913, 'Livotate Injection', 'Medizia Biotech', 'Livotate Injection', 'Is it ok to take alcohol when taking Livotate Injection?', 'No, it is not recommended to take alcohol when on Livotate Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(25914, 'Livotate Injection', 'Medizia Biotech', 'Livotate Injection', 'What is Livotate Injection?', 'Livotate Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(25915, 'Livotate Injection', 'Medizia Biotech', 'Livotate Injection', 'What is the use of Livotate Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livotate Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(25916, 'Livotate Injection', 'Medizia Biotech', 'Livotate Injection', 'How is Livotate Injection given?', 'Livotate Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(25917, 'Livotec 10mg Tablet', 'Euro Organics', 'Livotec 10mg Tablet', 'Is Livotec 10mg Tablet a steroid? What is it used for?', 'No, Livotec 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25918, 'Livotec 10mg Tablet', 'Euro Organics', 'Livotec 10mg Tablet', 'Does Livotec 10mg Tablet make you tired and drowsy?', 'Yes, Livotec 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25919, 'Livotec 10mg Tablet', 'Euro Organics', 'Livotec 10mg Tablet', 'How long does it take for Livotec 10mg Tablet to work?', 'Livotec 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25920, 'Livotec 10mg Tablet', 'Euro Organics', 'Livotec 10mg Tablet', 'Can I take Livotec 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livotec 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25921, 'Livotec 10mg Tablet', 'Euro Organics', 'Livotec 10mg Tablet', 'Is it safe to take Livotec 10mg Tablet for a long time?', 'Livotec 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livotec 10mg Tablet for only as long as you need it.'),
(25922, 'Livotec 10mg Tablet', 'Euro Organics', 'Livotec 10mg Tablet', 'For how long should I continue Livotec 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livotec 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livotec 10mg Tablet'),
(25923, 'Livotec 5mg Tablet', 'Euro Organics', 'Livotec 5mg Tablet', 'Is Livotec 5mg Tablet a steroid? What is it used for?', 'No, Livotec 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25924, 'Livotec 5mg Tablet', 'Euro Organics', 'Livotec 5mg Tablet', 'Does Livotec 5mg Tablet make you tired and drowsy?', 'Yes, Livotec 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25925, 'Livotec 5mg Tablet', 'Euro Organics', 'Livotec 5mg Tablet', 'How long does it take for Livotec 5mg Tablet to work?', 'Livotec 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25926, 'Livotec 5mg Tablet', 'Euro Organics', 'Livotec 5mg Tablet', 'Can I take Livotec 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livotec 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25927, 'Livotec 5mg Tablet', 'Euro Organics', 'Livotec 5mg Tablet', 'Is it safe to take Livotec 5mg Tablet for a long time?', 'Livotec 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livotec 5mg Tablet for only as long as you need it.'),
(25928, 'Livotec 5mg Tablet', 'Euro Organics', 'Livotec 5mg Tablet', 'For how long should I continue Livotec 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livotec 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livotec 5mg Tablet'),
(25929, 'Livotec MT 5mg/10mg Tablet', 'Euro Organics', 'Livotec MT 5mg/10mg Tablet', 'What is Livotec MT 5mg/10mg Tablet?', 'Livotec MT 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(25930, 'Livotec MT 5mg/10mg Tablet', 'Euro Organics', 'Livotec MT 5mg/10mg Tablet', 'Can the use of Livotec MT 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livotec MT 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(25931, 'Livotec MT 5mg/10mg Tablet', 'Euro Organics', 'Livotec MT 5mg/10mg Tablet', 'Can Livotec MT 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livotec MT 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(25932, 'Livotec MT 5mg/10mg Tablet', 'Euro Organics', 'Livotec MT 5mg/10mg Tablet', 'Can the use of Livotec MT 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livotec MT 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25933, 'Livotec MT 5mg/10mg Tablet', 'Euro Organics', 'Livotec MT 5mg/10mg Tablet', 'Can I drink alcohol while taking Livotec MT 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livotec MT 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livotec MT 5mg/10mg Tablet.'),
(25934, 'Livotec MT 5mg/10mg Tablet', 'Euro Organics', 'Livotec MT 5mg/10mg Tablet', 'Will Livotec MT 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livotec MT 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(25935, 'Livotec MT 5mg/10mg Tablet', 'Euro Organics', 'Livotec MT 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livotec MT 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(25936, 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'Euro Organics', 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'Can the use of Livotec Plus 75mg/5mg/10mg Tablet SR cause dry mouth?', 'Yes, the use of Livotec Plus 75mg/5mg/10mg Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(25937, 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'Euro Organics', 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'Can I use Livotec Plus 75mg/5mg/10mg Tablet SR while breastfeeding?', 'No, Livotec Plus 75mg/5mg/10mg Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(25938, 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'Euro Organics', 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'Can I drink alcohol while taking Livotec Plus 75mg/5mg/10mg Tablet SR?', 'No, avoid drinking alcohol while taking Livotec Plus 75mg/5mg/10mg Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Livotec Plus 75mg/5mg/10mg Tablet SR.'),
(25939, 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'Euro Organics', 'Livotec Plus 75mg/5mg/10mg Tablet SR', 'What are the instructions for the storage and disposal of Livotec Plus 75mg/5mg/10mg Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25940, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(25941, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'Can I decrease the dose of Livotec Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(25942, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'How should Livotec Syrup be stored?', 'Livotec Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25943, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'Can Livotec Syrup make my child sleepy?', 'Livotec Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(25944, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livotec Syrup?', 'No, don’t start Livotec Syrup without speaking to your child’s doctor. Moreover, Livotec Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(25945, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livotec Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(25946, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livotec Syrup to my child?', 'Some studies show that Livotec Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(25947, 'Livotec Syrup', 'Euro Organics', 'Livotec Syrup', 'Can I use Livotec Syrup for treating acute asthma attacks in my child?', 'Livotec Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(25948, 'Livotec Tablet', 'Enzo Biopharma Ltd', 'Livotec Tablet', 'Is Livotec Tablet a steroid? What is it used for?', 'No, Livotec Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(25949, 'Livotec Tablet', 'Enzo Biopharma Ltd', 'Livotec Tablet', 'Does Livotec Tablet make you tired and drowsy?', 'Yes, Livotec Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25950, 'Livotec Tablet', 'Enzo Biopharma Ltd', 'Livotec Tablet', 'How long does it take for Livotec Tablet to work?', 'Livotec Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25951, 'Livotec Tablet', 'Enzo Biopharma Ltd', 'Livotec Tablet', 'Can I take Livotec Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livotec Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25952, 'Livotec Tablet', 'Enzo Biopharma Ltd', 'Livotec Tablet', 'Is it safe to take Livotec Tablet for a long time?', 'Livotec Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livotec Tablet for only as long as you need it.'),
(25953, 'Livotec Tablet', 'Enzo Biopharma Ltd', 'Livotec Tablet', 'For how long should I continue Livotec Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livotec Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livotec Tablet'),
(25954, 'Livotech 500mg Injection', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Injection', 'Is Livotech 500mg Injection safe?', 'Livotech 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25955, 'Livotech 500mg Injection', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Injection', 'Can the use of Livotech 500mg Injection cause diarrhea?', 'Yes, the use of Livotech 500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25956, 'Livotech 500mg Injection', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Injection', 'Can the use of Livotech 500mg Injection increase the risk of muscle damage?', 'Yes, the use of Livotech 500mg Injection is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotech 500mg Injection but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25957, 'Livotech 500mg Injection', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Injection', 'How is Livotech 500mg Injection administered?', 'Livotech 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Livotech 500mg Injection.'),
(25958, 'Livotech 500mg Injection', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Injection', 'Is Livotech 500mg Injection effective?', 'Livotech 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livotech 500mg Injection too early, the symptoms may return or worsen.'),
(25959, 'Livotech 500mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Tablet', 'Is Livotech 500mg Tablet safe?', 'Livotech 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25960, 'Livotech 500mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Tablet', 'What if I forget to take a dose of Livotech 500mg Tablet?', 'If you forget a dose of Livotech 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25961, 'Livotech 500mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Tablet', 'Can the use of Livotech 500mg Tablet cause diarrhea?', 'Yes, the use of Livotech 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25962, 'Livotech 500mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Tablet', 'Can I stop taking Livotech 500mg Tablet when I feel better?', 'No, do not stop taking Livotech 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livotech 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livotech 500mg Tablet in the dose and duration advised by the doctor.'),
(25963, 'Livotech 500mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Livotech 500mg Tablet', 'Can the use of Livotech 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livotech 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotech 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25964, 'Livotex 500mg Tablet', 'Aquila Labs', 'Livotex 500mg Tablet', 'Is Livotex 500mg Tablet safe?', 'Livotex 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25965, 'Livotex 500mg Tablet', 'Aquila Labs', 'Livotex 500mg Tablet', 'What if I forget to take a dose of Livotex 500mg Tablet?', 'If you forget a dose of Livotex 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25966, 'Livotex 500mg Tablet', 'Aquila Labs', 'Livotex 500mg Tablet', 'Can the use of Livotex 500mg Tablet cause diarrhea?', 'Yes, the use of Livotex 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25967, 'Livotex 500mg Tablet', 'Aquila Labs', 'Livotex 500mg Tablet', 'Can I stop taking Livotex 500mg Tablet when I feel better?', 'No, do not stop taking Livotex 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livotex 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livotex 500mg Tablet in the dose and duration advised by the doctor.'),
(25968, 'Livotex 500mg Tablet', 'Aquila Labs', 'Livotex 500mg Tablet', 'Can the use of Livotex 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livotex 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotex 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25969, 'Livotik 500mg Tablet', 'Antik Biotech', 'Livotik 500mg Tablet', 'Is Livotik 500mg Tablet safe?', 'Livotik 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25970, 'Livotik 500mg Tablet', 'Antik Biotech', 'Livotik 500mg Tablet', 'What if I forget to take a dose of Livotik 500mg Tablet?', 'If you forget a dose of Livotik 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25971, 'Livotik 500mg Tablet', 'Antik Biotech', 'Livotik 500mg Tablet', 'Can the use of Livotik 500mg Tablet cause diarrhea?', 'Yes, the use of Livotik 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25972, 'Livotik 500mg Tablet', 'Antik Biotech', 'Livotik 500mg Tablet', 'Can I stop taking Livotik 500mg Tablet when I feel better?', 'No, do not stop taking Livotik 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livotik 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livotik 500mg Tablet in the dose and duration advised by the doctor.'),
(25973, 'Livotik 500mg Tablet', 'Antik Biotech', 'Livotik 500mg Tablet', 'Can the use of Livotik 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livotik 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotik 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25974, 'Livotim Syrup', 'Motima Healthcare', 'Livotim Syrup', 'Can the use of Livotim Syrup cause dryness in mouth?', 'Yes, the use of Livotim Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(25975, 'Livotim Syrup', 'Motima Healthcare', 'Livotim Syrup', 'Can the use of Livotim Syrup cause dizziness?', 'Yes, the use of Livotim Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(25976, 'Livotim Syrup', 'Motima Healthcare', 'Livotim Syrup', '\\What is the recommended storage condition for Livotim Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(25977, 'Livotop Oral Drops', 'Aries Drugs Pvt Ltd', 'Livotop Oral Drops', 'My child is having a long-term illness and is on medication. He is underweight with poor nutritional status and doesn\'t feel like eating anything. Can I give Livotop Oral Drops?', 'Loss of appetite is a common side effect of some medicines. If given, Livotop Oral Drops will help resolve this issue by boosting your child’s appetite and hunger. This will thereby improve your child’s nutritional status. But do make sure to speak to your child’s doctor before giving Livotop Oral Drops to your child as that will help decide the perfect dosing and duration. It usually takes around a few days to weeks to show results. Make sure to inform the doctor if your child is taking any other medicines.'),
(25978, 'Livotop Oral Drops', 'Aries Drugs Pvt Ltd', 'Livotop Oral Drops', 'My child is restless and unable to sleep properly at night. Can I give Livotop Oral Drops?', 'No. It is true that Livotop Oral Drops causes drowsiness as a side effect, but you should never give Livotop Oral Drops to induce sleep in children. Consult your doctor if you have any queries regarding the use of this medicine or if your child is experiencing sleeplessness as it could be due to some other underlying disease.'),
(25979, 'Livotop Oral Drops', 'Aries Drugs Pvt Ltd', 'Livotop Oral Drops', 'How much Livotop Oral Drops should I give to my child?', 'Adhere to the dose prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(25980, 'Livotop Oral Drops', 'Aries Drugs Pvt Ltd', 'Livotop Oral Drops', 'How should Livotop Oral Drops be stored?', 'Livotop Oral Drops should be stored at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(25981, 'Livotop Oral Drops', 'Aries Drugs Pvt Ltd', 'Livotop Oral Drops', 'When do I need to call my child’s doctor right away?', 'Never hesitate to consult your child’s doctor in case of any confusion, regarding dosage, duration, side effects, etc. Contact your child’s doctor immediately if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(25982, 'Livotor 250 Tablet', 'Senate Laboratories', 'Livotor 250 Tablet', 'Is Livotor 250 Tablet safe?', 'Livotor 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25983, 'Livotor 250 Tablet', 'Senate Laboratories', 'Livotor 250 Tablet', 'What if I forget to take a dose of Livotor 250 Tablet?', 'If you forget a dose of Livotor 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25984, 'Livotor 250 Tablet', 'Senate Laboratories', 'Livotor 250 Tablet', 'Can the use of Livotor 250 Tablet cause diarrhea?', 'Yes, the use of Livotor 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25985, 'Livotor 250 Tablet', 'Senate Laboratories', 'Livotor 250 Tablet', 'Can I stop taking Livotor 250 Tablet when I feel better?', 'No, do not stop taking Livotor 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livotor 250 Tablet too early, the symptoms may return or worsen. Continue taking Livotor 250 Tablet in the dose and duration advised by the doctor.'),
(25986, 'Livotor 250 Tablet', 'Senate Laboratories', 'Livotor 250 Tablet', 'Can the use of Livotor 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Livotor 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotor 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25987, 'Livotor 500mg Tablet', 'Senate Laboratories', 'Livotor 500mg Tablet', 'Is Livotor 500mg Tablet safe?', 'Livotor 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(25988, 'Livotor 500mg Tablet', 'Senate Laboratories', 'Livotor 500mg Tablet', 'What if I forget to take a dose of Livotor 500mg Tablet?', 'If you forget a dose of Livotor 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(25989, 'Livotor 500mg Tablet', 'Senate Laboratories', 'Livotor 500mg Tablet', 'Can the use of Livotor 500mg Tablet cause diarrhea?', 'Yes, the use of Livotor 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(25990, 'Livotor 500mg Tablet', 'Senate Laboratories', 'Livotor 500mg Tablet', 'Can I stop taking Livotor 500mg Tablet when I feel better?', 'No, do not stop taking Livotor 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livotor 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livotor 500mg Tablet in the dose and duration advised by the doctor.'),
(25991, 'Livotor 500mg Tablet', 'Senate Laboratories', 'Livotor 500mg Tablet', 'Can the use of Livotor 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livotor 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livotor 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(25992, 'Livotuff Tablet MD Orange', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff Tablet MD Orange', 'Is Livotuff Tablet MD Orange a steroid? What is it used for?', 'No, Livotuff Tablet MD Orange is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(25993, 'Livotuff Tablet MD Orange', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff Tablet MD Orange', 'Does Livotuff Tablet MD Orange make you tired and drowsy?', 'Yes, Livotuff Tablet MD Orange can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(25994, 'Livotuff Tablet MD Orange', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff Tablet MD Orange', 'How long does it take for Livotuff Tablet MD Orange to work?', 'Livotuff Tablet MD Orange starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(25995, 'Livotuff Tablet MD Orange', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff Tablet MD Orange', 'Can I take Livotuff Tablet MD Orange and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livotuff Tablet MD Orange during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(25996, 'Livotuff Tablet MD Orange', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff Tablet MD Orange', 'Is it safe to take Livotuff Tablet MD Orange for a long time?', 'Livotuff Tablet MD Orange is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livotuff Tablet MD Orange for only as long as you need it.'),
(25997, 'Livotuff Tablet MD Orange', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff Tablet MD Orange', 'For how long should I continue Livotuff Tablet MD Orange?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livotuff Tablet MD Orange for a longer time. Talk to your doctor if you are unsure about the duration of using Livotuff Tablet MD Orange'),
(25998, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(25999, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'Can I decrease the dose of Livotuff-M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(26000, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'How should Livotuff-M Kid Syrup be stored?', 'Livotuff-M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26001, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'Can Livotuff-M Kid Syrup make my child sleepy?', 'Livotuff-M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(26002, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livotuff-M Kid Syrup?', 'No, don’t start Livotuff-M Kid Syrup without speaking to your child’s doctor. Moreover, Livotuff-M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(26003, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livotuff-M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(26004, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Livotuff-M Kid Syrup to my child?', 'Some studies show that Livotuff-M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(26005, 'Livotuff-M Kid Syrup', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Kid Syrup', 'Can I use Livotuff-M Kid Syrup for treating acute asthma attacks in my child?', 'Livotuff-M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(26006, 'Livotuff-M Tablet', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Tablet', 'What is Livotuff-M Tablet?', 'Livotuff-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26007, 'Livotuff-M Tablet', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Tablet', 'Can the use of Livotuff-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livotuff-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26008, 'Livotuff-M Tablet', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Tablet', 'Can Livotuff-M Tablet be stopped when allergy symptoms are relieved?', 'No, Livotuff-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26009, 'Livotuff-M Tablet', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Tablet', 'Can the use of Livotuff-M Tablet cause dry mouth?', 'Yes, the use of Livotuff-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26010, 'Livotuff-M Tablet', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Tablet', 'Can I drink alcohol while taking Livotuff-M Tablet?', 'No, do not take alcohol while taking Livotuff-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livotuff-M Tablet.'),
(26011, 'Livotuff-M Tablet', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Tablet', 'Will Livotuff-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livotuff-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26012, 'Livotuff-M Tablet', 'Tuhi Lifesciences Pvt. Ltd.', 'Livotuff-M Tablet', 'What are the instructions for storage and disposal of Livotuff-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26013, 'Livovar 500mg Tablet', 'Zota Health care Ltd', 'Livovar 500mg Tablet', 'Is Livovar 500mg Tablet safe?', 'Livovar 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26014, 'Livovar 500mg Tablet', 'Zota Health care Ltd', 'Livovar 500mg Tablet', 'What if I forget to take a dose of Livovar 500mg Tablet?', 'If you forget a dose of Livovar 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26015, 'Livovar 500mg Tablet', 'Zota Health care Ltd', 'Livovar 500mg Tablet', 'Can the use of Livovar 500mg Tablet cause diarrhea?', 'Yes, the use of Livovar 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26016, 'Livovar 500mg Tablet', 'Zota Health care Ltd', 'Livovar 500mg Tablet', 'Can I stop taking Livovar 500mg Tablet when I feel better?', 'No, do not stop taking Livovar 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livovar 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livovar 500mg Tablet in the dose and duration advised by the doctor.'),
(26017, 'Livovar 500mg Tablet', 'Zota Health care Ltd', 'Livovar 500mg Tablet', 'Can the use of Livovar 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livovar 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livovar 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26018, 'Livoven 500mg Tablet', 'Vensat Bio', 'Livoven 500mg Tablet', 'Is Livoven 500mg Tablet safe?', 'Livoven 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26019, 'Livoven 500mg Tablet', 'Vensat Bio', 'Livoven 500mg Tablet', 'What if I forget to take a dose of Livoven 500mg Tablet?', 'If you forget a dose of Livoven 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26020, 'Livoven 500mg Tablet', 'Vensat Bio', 'Livoven 500mg Tablet', 'Can the use of Livoven 500mg Tablet cause diarrhea?', 'Yes, the use of Livoven 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26021, 'Livoven 500mg Tablet', 'Vensat Bio', 'Livoven 500mg Tablet', 'Can I stop taking Livoven 500mg Tablet when I feel better?', 'No, do not stop taking Livoven 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoven 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoven 500mg Tablet in the dose and duration advised by the doctor.'),
(26022, 'Livoven 500mg Tablet', 'Vensat Bio', 'Livoven 500mg Tablet', 'Can the use of Livoven 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoven 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoven 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26023, 'Livoven 750mg Tablet', 'Vensat Bio', 'Livoven 750mg Tablet', 'Is Livoven 750mg Tablet safe?', 'Livoven 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26024, 'Livoven 750mg Tablet', 'Vensat Bio', 'Livoven 750mg Tablet', 'What if I forget to take a dose of Livoven 750mg Tablet?', 'If you forget a dose of Livoven 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26025, 'Livoven 750mg Tablet', 'Vensat Bio', 'Livoven 750mg Tablet', 'Can the use of Livoven 750mg Tablet cause diarrhea?', 'Yes, the use of Livoven 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26026, 'Livoven 750mg Tablet', 'Vensat Bio', 'Livoven 750mg Tablet', 'Can I stop taking Livoven 750mg Tablet when I feel better?', 'No, do not stop taking Livoven 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoven 750mg Tablet too early, the symptoms may return or worsen. Continue taking Livoven 750mg Tablet in the dose and duration advised by the doctor.'),
(26027, 'Livoven 750mg Tablet', 'Vensat Bio', 'Livoven 750mg Tablet', 'Can the use of Livoven 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoven 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoven 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26028, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'What is Meniere\'s disease? Does it go away?', 'Meniere\'s disease is a disorder of the balance and hearing organs in the inner ear. The symptoms include vertigo, fluctuations in hearing, tinnitus (ringing of the ears), and pressure in the ears. Along with that, one may experience dizziness which in turn may cause nausea and vomiting. The treatment for Meniere\'s disease depends on various factors. Hence, an open discussion with the doctor can help to determine the best treatment strategy in your personal case.'),
(26029, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'Is Livovert 8mg Tablet effective?', 'Livovert 8mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livovert 8mg Tablet too early, the symptoms may return or worsen.'),
(26030, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'What are the triggers for Meniere\'s disease?', 'Meniere\'s disease can be triggered by conditions like stress, overwork, fatigue, emotional distress, additional illnesses, and pressure changes. Along with that, certain foods such as dairy products, caffeine, alcohol, and foods with high sodium content may trigger Meniere\'s disease. A 2-gram/day low-salt diet can help control vertigo in Meniere\'s disease.'),
(26031, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'What if I forget to take a dose of Livovert 8mg Tablet?', 'If you forget a dose of Livovert 8mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next dose at the scheduled time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26032, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'Is stress a reason for vertigo?', 'Mental stress can trigger vertigo. It can make many forms of vertigo worse, but will not, by itself, produce vertigo.'),
(26033, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'What are the causes of vertigo?', 'Vertigo may be caused either by a sudden drop in blood pressure or because of being dehydrated. Many people feel lightheaded if they get up too quickly from sitting or lying down. Along with that, motion sickness, certain medicines, and problems with your inner ear (Meniere\'s disease, acoustic neuroma) may cause vertigo. It is important to know that sometimes vertigo can be a symptom of other disorders (multiple sclerosis, following head trauma) as well.'),
(26034, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'How long should Livovert 8mg Tablet be taken?', 'Duration of treatment with Livovert 8mg Tablet may vary from patient to patient. Some people respond rapidly to treatment while others may take some time. Hence, it is advised to take your tablets regularly and wait for the results patiently. Consult the doctor if not sure.'),
(26035, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'What are the common side effects of Livovert 8mg Tablet?', 'Livovert 8mg Tablet can cause mild stomach problems such as vomiting, stomach pain, stomach swelling (abdominal distension), and bloating. You can reduce the chances of getting these side effects by taking Livovert 8mg Tablet with food. However, the absorption of Livovert 8mg Tablet may get reduced when taken with food.'),
(26036, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'Is Livovert 8mg Tablet effective?', 'Livovert 8mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livovert 8mg Tablet too early, the symptoms may return or worsen.'),
(26037, 'Livovert 8mg Tablet', 'Livon Pharma', 'Livovert 8mg Tablet', 'What if I forget to take a dose of Livovert 8mg Tablet?', 'If you forget a dose of Livovert 8mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next dose at the scheduled time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26038, 'Livovin 500mg Tablet', 'RKG Pharma', 'Livovin 500mg Tablet', 'Is Livovin 500mg Tablet safe?', 'Livovin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26039, 'Livovin 500mg Tablet', 'RKG Pharma', 'Livovin 500mg Tablet', 'What if I forget to take a dose of Livovin 500mg Tablet?', 'If you forget a dose of Livovin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26040, 'Livovin 500mg Tablet', 'RKG Pharma', 'Livovin 500mg Tablet', 'Can the use of Livovin 500mg Tablet cause diarrhea?', 'Yes, the use of Livovin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26041, 'Livovin 500mg Tablet', 'RKG Pharma', 'Livovin 500mg Tablet', 'Can I stop taking Livovin 500mg Tablet when I feel better?', 'No, do not stop taking Livovin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livovin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livovin 500mg Tablet in the dose and duration advised by the doctor.'),
(26042, 'Livovin 500mg Tablet', 'RKG Pharma', 'Livovin 500mg Tablet', 'Can the use of Livovin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livovin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livovin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26043, 'Livowin 250mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 250mg Tablet', 'Is Livowin 250mg Tablet safe?', 'Livowin 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26044, 'Livowin 250mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 250mg Tablet', 'What if I forget to take a dose of Livowin 250mg Tablet?', 'If you forget a dose of Livowin 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26045, 'Livowin 250mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 250mg Tablet', 'Can the use of Livowin 250mg Tablet cause diarrhea?', 'Yes, the use of Livowin 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26046, 'Livowin 250mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 250mg Tablet', 'Can I stop taking Livowin 250mg Tablet when I feel better?', 'No, do not stop taking Livowin 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livowin 250mg Tablet too early, the symptoms may return or worsen. Continue taking Livowin 250mg Tablet in the dose and duration advised by the doctor.'),
(26047, 'Livowin 250mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 250mg Tablet', 'Can the use of Livowin 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livowin 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livowin 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26048, 'Livowin 500mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 500mg Tablet', 'Is Livowin 500mg Tablet safe?', 'Livowin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26049, 'Livowin 500mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 500mg Tablet', 'What if I forget to take a dose of Livowin 500mg Tablet?', 'If you forget a dose of Livowin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26050, 'Livowin 500mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 500mg Tablet', 'Can the use of Livowin 500mg Tablet cause diarrhea?', 'Yes, the use of Livowin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26051, 'Livowin 500mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 500mg Tablet', 'Can I stop taking Livowin 500mg Tablet when I feel better?', 'No, do not stop taking Livowin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livowin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livowin 500mg Tablet in the dose and duration advised by the doctor.'),
(26052, 'Livowin 500mg Tablet', 'Winsmed Pharmaceuticals Pvt Ltd', 'Livowin 500mg Tablet', 'Can the use of Livowin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livowin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livowin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26053, 'Livox 500 Tablet', 'Allenburys Pharma Limited', 'Livox 500 Tablet', 'Is Livox 500 Tablet safe?', 'Livox 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26054, 'Livox 500 Tablet', 'Allenburys Pharma Limited', 'Livox 500 Tablet', 'What if I forget to take a dose of Livox 500 Tablet?', 'If you forget a dose of Livox 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26055, 'Livox 500 Tablet', 'Allenburys Pharma Limited', 'Livox 500 Tablet', 'Can the use of Livox 500 Tablet cause diarrhea?', 'Yes, the use of Livox 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26056, 'Livox 500 Tablet', 'Allenburys Pharma Limited', 'Livox 500 Tablet', 'Can I stop taking Livox 500 Tablet when I feel better?', 'No, do not stop taking Livox 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livox 500 Tablet too early, the symptoms may return or worsen. Continue taking Livox 500 Tablet in the dose and duration advised by the doctor.'),
(26057, 'Livox 500 Tablet', 'Allenburys Pharma Limited', 'Livox 500 Tablet', 'Can the use of Livox 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livox 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livox 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26058, 'Livox 500mg Tablet', 'Concept Pharmaceuticals Ltd', 'Livox 500mg Tablet', 'Is Livox 500mg Tablet safe?', 'Livox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26059, 'Livox 500mg Tablet', 'Concept Pharmaceuticals Ltd', 'Livox 500mg Tablet', 'What if I forget to take a dose of Livox 500mg Tablet?', 'If you forget a dose of Livox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26060, 'Livox 500mg Tablet', 'Concept Pharmaceuticals Ltd', 'Livox 500mg Tablet', 'Can the use of Livox 500mg Tablet cause diarrhea?', 'Yes, the use of Livox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26061, 'Livox 500mg Tablet', 'Concept Pharmaceuticals Ltd', 'Livox 500mg Tablet', 'Can I stop taking Livox 500mg Tablet when I feel better?', 'No, do not stop taking Livox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livox 500mg Tablet in the dose and duration advised by the doctor.'),
(26062, 'Livox 500mg Tablet', 'Concept Pharmaceuticals Ltd', 'Livox 500mg Tablet', 'Can the use of Livox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26063, 'Livox 5mg Tablet', 'Will Impex', 'Livox 5mg Tablet', 'Is Livox 5mg Tablet a steroid? What is it used for?', 'No, Livox 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26064, 'Livox 5mg Tablet', 'Will Impex', 'Livox 5mg Tablet', 'Does Livox 5mg Tablet make you tired and drowsy?', 'Yes, Livox 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26065, 'Livox 5mg Tablet', 'Will Impex', 'Livox 5mg Tablet', 'How long does it take for Livox 5mg Tablet to work?', 'Livox 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26066, 'Livox 5mg Tablet', 'Will Impex', 'Livox 5mg Tablet', 'Can I take Livox 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livox 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26067, 'Livox 5mg Tablet', 'Will Impex', 'Livox 5mg Tablet', 'Is it safe to take Livox 5mg Tablet for a long time?', 'Livox 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livox 5mg Tablet for only as long as you need it.'),
(26068, 'Livox 5mg Tablet', 'Will Impex', 'Livox 5mg Tablet', 'For how long should I continue Livox 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livox 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livox 5mg Tablet'),
(26069, 'Livox OZ 250mg/500mg Tablet', 'JV Healthcare', 'Livox OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Livox OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26070, 'Livox OZ 250mg/500mg Tablet', 'JV Healthcare', 'Livox OZ 250mg/500mg Tablet', 'Can I stop taking Livox OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livox OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(26071, 'Livox OZ 250mg/500mg Tablet', 'JV Healthcare', 'Livox OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livox OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(26072, 'Livoxa 500 Tablet', 'Metlar Formulations', 'Livoxa 500 Tablet', 'Is Livoxa 500 Tablet safe?', 'Livoxa 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26073, 'Livoxa 500 Tablet', 'Metlar Formulations', 'Livoxa 500 Tablet', 'What if I forget to take a dose of Livoxa 500 Tablet?', 'If you forget a dose of Livoxa 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26074, 'Livoxa 500 Tablet', 'Metlar Formulations', 'Livoxa 500 Tablet', 'Can the use of Livoxa 500 Tablet cause diarrhea?', 'Yes, the use of Livoxa 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26075, 'Livoxa 500 Tablet', 'Metlar Formulations', 'Livoxa 500 Tablet', 'Can I stop taking Livoxa 500 Tablet when I feel better?', 'No, do not stop taking Livoxa 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoxa 500 Tablet too early, the symptoms may return or worsen. Continue taking Livoxa 500 Tablet in the dose and duration advised by the doctor.'),
(26076, 'Livoxa 500 Tablet', 'Metlar Formulations', 'Livoxa 500 Tablet', 'Can the use of Livoxa 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livoxa 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoxa 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26077, 'Livoxa O 250mg/500mg Tablet', 'Metlar Formulations', 'Livoxa O 250mg/500mg Tablet', 'What if I don\'t get better after using Livoxa O 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26078, 'Livoxa O 250mg/500mg Tablet', 'Metlar Formulations', 'Livoxa O 250mg/500mg Tablet', 'Can I stop taking Livoxa O 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livoxa O 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(26079, 'Livoxa O 250mg/500mg Tablet', 'Metlar Formulations', 'Livoxa O 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livoxa O 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(26080, 'Livox-AZ Tablet', 'JV Healthcare', 'Livox-AZ Tablet', 'What if I don\'t get better after using Livox-AZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26081, 'Livox-AZ Tablet', 'JV Healthcare', 'Livox-AZ Tablet', 'What if I miss my dose?', 'Take Livox-AZ Tablet as soon you as remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(26082, 'Livoxid 500mg Tablet', 'Worth Medicines Pvt Ltd', 'Livoxid 500mg Tablet', 'Is Livoxid 500mg Tablet safe?', 'Livoxid 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26083, 'Livoxid 500mg Tablet', 'Worth Medicines Pvt Ltd', 'Livoxid 500mg Tablet', 'What if I forget to take a dose of Livoxid 500mg Tablet?', 'If you forget a dose of Livoxid 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26084, 'Livoxid 500mg Tablet', 'Worth Medicines Pvt Ltd', 'Livoxid 500mg Tablet', 'Can the use of Livoxid 500mg Tablet cause diarrhea?', 'Yes, the use of Livoxid 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26085, 'Livoxid 500mg Tablet', 'Worth Medicines Pvt Ltd', 'Livoxid 500mg Tablet', 'Can I stop taking Livoxid 500mg Tablet when I feel better?', 'No, do not stop taking Livoxid 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoxid 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoxid 500mg Tablet in the dose and duration advised by the doctor.'),
(26086, 'Livoxid 500mg Tablet', 'Worth Medicines Pvt Ltd', 'Livoxid 500mg Tablet', 'Can the use of Livoxid 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoxid 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoxid 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26087, 'Livoxin 500mg Tablet', 'RK Medicare Pvt Ltd', 'Livoxin 500mg Tablet', 'Is Livoxin 500mg Tablet safe?', 'Livoxin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26088, 'Livoxin 500mg Tablet', 'RK Medicare Pvt Ltd', 'Livoxin 500mg Tablet', 'What if I forget to take a dose of Livoxin 500mg Tablet?', 'If you forget a dose of Livoxin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26089, 'Livoxin 500mg Tablet', 'RK Medicare Pvt Ltd', 'Livoxin 500mg Tablet', 'Can the use of Livoxin 500mg Tablet cause diarrhea?', 'Yes, the use of Livoxin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26090, 'Livoxin 500mg Tablet', 'RK Medicare Pvt Ltd', 'Livoxin 500mg Tablet', 'Can I stop taking Livoxin 500mg Tablet when I feel better?', 'No, do not stop taking Livoxin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoxin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoxin 500mg Tablet in the dose and duration advised by the doctor.'),
(26091, 'Livoxin 500mg Tablet', 'RK Medicare Pvt Ltd', 'Livoxin 500mg Tablet', 'Can the use of Livoxin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoxin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoxin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26092, 'Livoxit 500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit 500mg Tablet', 'Is Livoxit 500mg Tablet safe?', 'Livoxit 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26093, 'Livoxit 500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit 500mg Tablet', 'What if I forget to take a dose of Livoxit 500mg Tablet?', 'If you forget a dose of Livoxit 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26094, 'Livoxit 500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit 500mg Tablet', 'Can the use of Livoxit 500mg Tablet cause diarrhea?', 'Yes, the use of Livoxit 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26095, 'Livoxit 500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit 500mg Tablet', 'Can I stop taking Livoxit 500mg Tablet when I feel better?', 'No, do not stop taking Livoxit 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoxit 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoxit 500mg Tablet in the dose and duration advised by the doctor.'),
(26096, 'Livoxit 500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit 500mg Tablet', 'Can the use of Livoxit 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoxit 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoxit 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26097, 'Livoxit OZ 250mg/500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Livoxit OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26098, 'Livoxit OZ 250mg/500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit OZ 250mg/500mg Tablet', 'Can I stop taking Livoxit OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livoxit OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(26099, 'Livoxit OZ 250mg/500mg Tablet', 'Sristi Pharmaceuticals', 'Livoxit OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livoxit OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(26100, 'Livoxit-OZ Oral Suspension', 'Sristi Pharmaceuticals', 'Livoxit-OZ Oral Suspension', 'What if I don\'t get better after using Livoxit-OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26101, 'Livoxit-OZ Oral Suspension', 'Sristi Pharmaceuticals', 'Livoxit-OZ Oral Suspension', 'Can I stop taking Livoxit-OZ Oral Suspension when I feel better?', 'No, do not stop taking Livoxit-OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(26102, 'Livoxit-OZ Oral Suspension', 'Sristi Pharmaceuticals', 'Livoxit-OZ Oral Suspension', 'What if I miss my dose?', 'Take Livoxit-OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(26103, 'Livoxor OZ 250mg/500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Livoxor OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Livoxor OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26104, 'Livoxor OZ 250mg/500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Livoxor OZ 250mg/500mg Tablet', 'Can I stop taking Livoxor OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Livoxor OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(26105, 'Livoxor OZ 250mg/500mg Tablet', 'Trireme Life Sciences Pvt Ltd', 'Livoxor OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Livoxor OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(26106, 'Livoxx 500mg Tablet', 'IGP Mediventures Pvt Ltd', 'Livoxx 500mg Tablet', 'Is Livoxx 500mg Tablet safe?', 'Livoxx 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26107, 'Livoxx 500mg Tablet', 'IGP Mediventures Pvt Ltd', 'Livoxx 500mg Tablet', 'What if I forget to take a dose of Livoxx 500mg Tablet?', 'If you forget a dose of Livoxx 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26108, 'Livoxx 500mg Tablet', 'IGP Mediventures Pvt Ltd', 'Livoxx 500mg Tablet', 'Can the use of Livoxx 500mg Tablet cause diarrhea?', 'Yes, the use of Livoxx 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26109, 'Livoxx 500mg Tablet', 'IGP Mediventures Pvt Ltd', 'Livoxx 500mg Tablet', 'Can I stop taking Livoxx 500mg Tablet when I feel better?', 'No, do not stop taking Livoxx 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoxx 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoxx 500mg Tablet in the dose and duration advised by the doctor.'),
(26110, 'Livoxx 500mg Tablet', 'IGP Mediventures Pvt Ltd', 'Livoxx 500mg Tablet', 'Can the use of Livoxx 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoxx 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoxx 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26111, 'Livoza 500mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livoza 500mg Tablet', 'Is Livoza 500mg Tablet safe?', 'Livoza 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26112, 'Livoza 500mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livoza 500mg Tablet', 'What if I forget to take a dose of Livoza 500mg Tablet?', 'If you forget a dose of Livoza 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26113, 'Livoza 500mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livoza 500mg Tablet', 'Can the use of Livoza 500mg Tablet cause diarrhea?', 'Yes, the use of Livoza 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26114, 'Livoza 500mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livoza 500mg Tablet', 'Can I stop taking Livoza 500mg Tablet when I feel better?', 'No, do not stop taking Livoza 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livoza 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livoza 500mg Tablet in the dose and duration advised by the doctor.'),
(26115, 'Livoza 500mg Tablet', 'Pramukh Swami Pharma Ltd', 'Livoza 500mg Tablet', 'Can the use of Livoza 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livoza 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livoza 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26116, 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Man Serve Pharma', 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'What should be avoided while taking Livozed 3D 10mg/120mg/200mg Tablet SR?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Livozed 3D 10mg/120mg/200mg Tablet SR. Drinking alcohol will increase the severity of drowsiness or sleepiness caused by Livozed 3D 10mg/120mg/200mg Tablet SR.'),
(26117, 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Man Serve Pharma', 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Can I stop Livozed 3D 10mg/120mg/200mg Tablet SR when my symptoms are relieved?', 'No, Livozed 3D 10mg/120mg/200mg Tablet SR should be continued as advised by the doctor. If you experience any problem due to the use of Livozed 3D 10mg/120mg/200mg Tablet SR, inform your doctor.'),
(26118, 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Man Serve Pharma', 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Can the use of Livozed 3D 10mg/120mg/200mg Tablet SR cause dizziness?', 'Yes, the use of Livozed 3D 10mg/120mg/200mg Tablet SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(26119, 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Man Serve Pharma', 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Will a higher than the recommended dose of Livozed 3D 10mg/120mg/200mg Tablet SR be more effective?', 'No, taking a higher than the recommended dose of Livozed 3D 10mg/120mg/200mg Tablet SR will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting worse, please consult the doctor for re-evaluation.'),
(26120, 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'Man Serve Pharma', 'Livozed 3D 10mg/120mg/200mg Tablet SR', 'What are the instructions for the storage and disposal of Livozed 3D 10mg/120mg/200mg Tablet SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26121, 'Livozed 5mg Tablet', 'Man Serve Pharma', 'Livozed 5mg Tablet', 'Is Livozed 5mg Tablet a steroid? What is it used for?', 'No, Livozed 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26122, 'Livozed 5mg Tablet', 'Man Serve Pharma', 'Livozed 5mg Tablet', 'Does Livozed 5mg Tablet make you tired and drowsy?', 'Yes, Livozed 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26123, 'Livozed 5mg Tablet', 'Man Serve Pharma', 'Livozed 5mg Tablet', 'How long does it take for Livozed 5mg Tablet to work?', 'Livozed 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26124, 'Livozed 5mg Tablet', 'Man Serve Pharma', 'Livozed 5mg Tablet', 'Can I take Livozed 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livozed 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26125, 'Livozed 5mg Tablet', 'Man Serve Pharma', 'Livozed 5mg Tablet', 'Is it safe to take Livozed 5mg Tablet for a long time?', 'Livozed 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livozed 5mg Tablet for only as long as you need it.'),
(26126, 'Livozed 5mg Tablet', 'Man Serve Pharma', 'Livozed 5mg Tablet', 'For how long should I continue Livozed 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livozed 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livozed 5mg Tablet'),
(26127, 'Livozed FX 10mg/120mg Tablet', 'Man Serve Pharma', 'Livozed FX 10mg/120mg Tablet', 'What is Livozed FX 10mg/120mg Tablet ?', 'Livozed FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(26128, 'Livozed FX 10mg/120mg Tablet', 'Man Serve Pharma', 'Livozed FX 10mg/120mg Tablet', 'Can Livozed FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livozed FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Livozed FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(26129, 'Livozed FX 10mg/120mg Tablet', 'Man Serve Pharma', 'Livozed FX 10mg/120mg Tablet', 'Can the use of Livozed FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Livozed FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(26130, 'Livozed FX 10mg/120mg Tablet', 'Man Serve Pharma', 'Livozed FX 10mg/120mg Tablet', 'What should be avoided in food while taking Livozed FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Livozed FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Livozed FX 10mg/120mg Tablet.'),
(26131, 'Livozed FX 10mg/120mg Tablet', 'Man Serve Pharma', 'Livozed FX 10mg/120mg Tablet', 'Will Livozed FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26132, 'Livozed FX 10mg/120mg Tablet', 'Man Serve Pharma', 'Livozed FX 10mg/120mg Tablet', 'What is the recommended storage condition for Livozed FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26133, 'Livozed M 5mg/10mg Tablet', 'Man Serve Pharma', 'Livozed M 5mg/10mg Tablet', 'What is Livozed M 5mg/10mg Tablet?', 'Livozed M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26134, 'Livozed M 5mg/10mg Tablet', 'Man Serve Pharma', 'Livozed M 5mg/10mg Tablet', 'Can the use of Livozed M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livozed M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26135, 'Livozed M 5mg/10mg Tablet', 'Man Serve Pharma', 'Livozed M 5mg/10mg Tablet', 'Can Livozed M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livozed M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26136, 'Livozed M 5mg/10mg Tablet', 'Man Serve Pharma', 'Livozed M 5mg/10mg Tablet', 'Can the use of Livozed M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livozed M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26137, 'Livozed M 5mg/10mg Tablet', 'Man Serve Pharma', 'Livozed M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livozed M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livozed M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livozed M 5mg/10mg Tablet.'),
(26138, 'Livozed M 5mg/10mg Tablet', 'Man Serve Pharma', 'Livozed M 5mg/10mg Tablet', 'Will Livozed M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livozed M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26139, 'Livozed M 5mg/10mg Tablet', 'Man Serve Pharma', 'Livozed M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livozed M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26140, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(26141, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Livozed M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(26142, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'How should Livozed M Kid 2.5mg/4mg Tablet be stored?', 'Livozed M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26143, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'Can Livozed M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Livozed M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(26144, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livozed M Kid 2.5mg/4mg Tablet?', 'No, don’t start Livozed M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Livozed M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(26145, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livozed M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(26146, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Livozed M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Livozed M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(26147, 'Livozed M Kid 2.5mg/4mg Tablet', 'Man Serve Pharma', 'Livozed M Kid 2.5mg/4mg Tablet', 'Can I use Livozed M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Livozed M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(26148, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(26149, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. Can I decrease the dose of Livozed M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(26150, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. How should Livozed M Syrup be stored?', 'Livozed M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26151, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. Can Livozed M Syrup make my child sleepy?', 'Livozed M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(26152, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Livozed M Syrup?', 'No, don’t start Livozed M Syrup without speaking to your child’s doctor. Moreover, Livozed M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(26153, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Livozed M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(26154, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. My child is suffering from a mood disorder. Is it safe to give Livozed M Syrup to my child?', 'Some studies show that Livozed M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(26155, 'Livozed M Syrup', 'Man Serve Pharma', 'Livozed M Syrup', 'Q. Can I use Livozed M Syrup for treating acute asthma attacks in my child?', 'Livozed M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(26156, 'Livozer 500 Tablet', 'Apcon Remedies', 'Livozer 500 Tablet', 'Is Livozer 500 Tablet safe?', 'Livozer 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26157, 'Livozer 500 Tablet', 'Apcon Remedies', 'Livozer 500 Tablet', 'What if I forget to take a dose of Livozer 500 Tablet?', 'If you forget a dose of Livozer 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26158, 'Livozer 500 Tablet', 'Apcon Remedies', 'Livozer 500 Tablet', 'Can the use of Livozer 500 Tablet cause diarrhea?', 'Yes, the use of Livozer 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26159, 'Livozer 500 Tablet', 'Apcon Remedies', 'Livozer 500 Tablet', 'Can I stop taking Livozer 500 Tablet when I feel better?', 'No, do not stop taking Livozer 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livozer 500 Tablet too early, the symptoms may return or worsen. Continue taking Livozer 500 Tablet in the dose and duration advised by the doctor.'),
(26160, 'Livozer 500 Tablet', 'Apcon Remedies', 'Livozer 500 Tablet', 'Can the use of Livozer 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livozer 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livozer 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26161, 'Livozest MX 5mg/10mg Tablet', 'Aerozest Life Science', 'Livozest MX 5mg/10mg Tablet', 'What is Livozest MX 5mg/10mg Tablet?', 'Livozest MX 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26162, 'Livozest MX 5mg/10mg Tablet', 'Aerozest Life Science', 'Livozest MX 5mg/10mg Tablet', 'Can the use of Livozest MX 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livozest MX 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26163, 'Livozest MX 5mg/10mg Tablet', 'Aerozest Life Science', 'Livozest MX 5mg/10mg Tablet', 'Can Livozest MX 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livozest MX 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26164, 'Livozest MX 5mg/10mg Tablet', 'Aerozest Life Science', 'Livozest MX 5mg/10mg Tablet', 'Can the use of Livozest MX 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livozest MX 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26165, 'Livozest MX 5mg/10mg Tablet', 'Aerozest Life Science', 'Livozest MX 5mg/10mg Tablet', 'Can I drink alcohol while taking Livozest MX 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livozest MX 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livozest MX 5mg/10mg Tablet.'),
(26166, 'Livozest MX 5mg/10mg Tablet', 'Aerozest Life Science', 'Livozest MX 5mg/10mg Tablet', 'Will Livozest MX 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livozest MX 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26167, 'Livozest MX 5mg/10mg Tablet', 'Aerozest Life Science', 'Livozest MX 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livozest MX 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26168, 'Livozest MX Syrup', 'Aerozest Life Science', 'Livozest MX Syrup', 'What is Livozest MX Syrup?', 'Livozest MX Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26169, 'Livozest MX Syrup', 'Aerozest Life Science', 'Livozest MX Syrup', 'Can the use of Livozest MX Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livozest MX Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26170, 'Livozest MX Syrup', 'Aerozest Life Science', 'Livozest MX Syrup', 'Can Livozest MX Syrup be stopped when allergy symptoms are relieved?', 'No, Livozest MX Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26171, 'Livozest MX Syrup', 'Aerozest Life Science', 'Livozest MX Syrup', 'Can the use of Livozest MX Syrup cause dry mouth?', 'Yes, the use of Livozest MX Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26172, 'Livozest MX Syrup', 'Aerozest Life Science', 'Livozest MX Syrup', 'Can I drink alcohol while taking Livozest MX Syrup?', 'No, do not take alcohol while taking Livozest MX Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livozest MX Syrup.'),
(26173, 'Livozest MX Syrup', 'Aerozest Life Science', 'Livozest MX Syrup', 'Will Livozest MX Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livozest MX Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26174, 'Livozest MX Syrup', 'Aerozest Life Science', 'Livozest MX Syrup', 'What are the instructions for storage and disposal of Livozest MX Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26175, 'Livozine 5mg Tablet', 'Salvo Healthcare Pvt Ltd', 'Livozine 5mg Tablet', 'Is Livozine 5mg Tablet a steroid? What is it used for?', 'No, Livozine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26176, 'Livozine 5mg Tablet', 'Salvo Healthcare Pvt Ltd', 'Livozine 5mg Tablet', 'Does Livozine 5mg Tablet make you tired and drowsy?', 'Yes, Livozine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26177, 'Livozine 5mg Tablet', 'Salvo Healthcare Pvt Ltd', 'Livozine 5mg Tablet', 'How long does it take for Livozine 5mg Tablet to work?', 'Livozine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26178, 'Livozine 5mg Tablet', 'Salvo Healthcare Pvt Ltd', 'Livozine 5mg Tablet', 'Can I take Livozine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livozine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26179, 'Livozine 5mg Tablet', 'Salvo Healthcare Pvt Ltd', 'Livozine 5mg Tablet', 'Is it safe to take Livozine 5mg Tablet for a long time?', 'Livozine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livozine 5mg Tablet for only as long as you need it.'),
(26180, 'Livozine 5mg Tablet', 'Salvo Healthcare Pvt Ltd', 'Livozine 5mg Tablet', 'For how long should I continue Livozine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livozine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livozine 5mg Tablet'),
(26181, 'Livozine Cold Tablet', 'Medley Pharmaceuticals', 'Livozine Cold Tablet', 'Is Livozine Cold Tablet a steroid? What is it used for?', 'No, Livozine Cold Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26182, 'Livozine Cold Tablet', 'Medley Pharmaceuticals', 'Livozine Cold Tablet', 'Does Livozine Cold Tablet make you tired and drowsy?', 'Yes, Livozine Cold Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26183, 'Livozine Cold Tablet', 'Medley Pharmaceuticals', 'Livozine Cold Tablet', 'How long does it take for Livozine Cold Tablet to work?', 'Livozine Cold Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26184, 'Livozine Cold Tablet', 'Medley Pharmaceuticals', 'Livozine Cold Tablet', 'Can I take Livozine Cold Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livozine Cold Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26185, 'Livozine Cold Tablet', 'Medley Pharmaceuticals', 'Livozine Cold Tablet', 'Is it safe to take Livozine Cold Tablet for a long time?', 'Livozine Cold Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livozine Cold Tablet for only as long as you need it.'),
(26186, 'Livozine Cold Tablet', 'Medley Pharmaceuticals', 'Livozine Cold Tablet', 'For how long should I continue Livozine Cold Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livozine Cold Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livozine Cold Tablet'),
(26187, 'Livozit 5gm Injection', 'Baxton Pharmacia', 'Livozit 5gm Injection', 'Is it ok to take alcohol when taking Livozit 5gm Injection?', 'No, it is not recommended to take alcohol when on Livozit 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(26188, 'Livozit 5gm Injection', 'Baxton Pharmacia', 'Livozit 5gm Injection', 'What is Livozit 5gm Injection?', 'Livozit 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(26189, 'Livozit 5gm Injection', 'Baxton Pharmacia', 'Livozit 5gm Injection', 'What is the use of Livozit 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livozit 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(26190, 'Livozit 5gm Injection', 'Baxton Pharmacia', 'Livozit 5gm Injection', 'How is Livozit 5gm Injection given?', 'Livozit 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(26191, 'Livozit 5mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Livozit 5mg Tablet', 'Is Livozit 5mg Tablet a steroid? What is it used for?', 'No, Livozit 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26192, 'Livozit 5mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Livozit 5mg Tablet', 'Does Livozit 5mg Tablet make you tired and drowsy?', 'Yes, Livozit 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26193, 'Livozit 5mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Livozit 5mg Tablet', 'How long does it take for Livozit 5mg Tablet to work?', 'Livozit 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26194, 'Livozit 5mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Livozit 5mg Tablet', 'Can I take Livozit 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livozit 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26195, 'Livozit 5mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Livozit 5mg Tablet', 'Is it safe to take Livozit 5mg Tablet for a long time?', 'Livozit 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livozit 5mg Tablet for only as long as you need it.'),
(26196, 'Livozit 5mg Tablet', 'Zither Pharmaceutical Pvt Ltd', 'Livozit 5mg Tablet', 'For how long should I continue Livozit 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livozit 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livozit 5mg Tablet'),
(26197, 'Livozoic 5mg Tablet', 'Uniblue Healthcare Pvt. Ltd', 'Livozoic 5mg Tablet', 'Is Livozoic 5mg Tablet a steroid? What is it used for?', 'No, Livozoic 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26198, 'Livozoic 5mg Tablet', 'Uniblue Healthcare Pvt. Ltd', 'Livozoic 5mg Tablet', 'Does Livozoic 5mg Tablet make you tired and drowsy?', 'Yes, Livozoic 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26199, 'Livozoic 5mg Tablet', 'Uniblue Healthcare Pvt. Ltd', 'Livozoic 5mg Tablet', 'How long does it take for Livozoic 5mg Tablet to work?', 'Livozoic 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26200, 'Livozoic 5mg Tablet', 'Uniblue Healthcare Pvt. Ltd', 'Livozoic 5mg Tablet', 'Can I take Livozoic 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livozoic 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26201, 'Livozoic 5mg Tablet', 'Uniblue Healthcare Pvt. Ltd', 'Livozoic 5mg Tablet', 'Is it safe to take Livozoic 5mg Tablet for a long time?', 'Livozoic 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livozoic 5mg Tablet for only as long as you need it.'),
(26202, 'Livozoic 5mg Tablet', 'Uniblue Healthcare Pvt. Ltd', 'Livozoic 5mg Tablet', 'For how long should I continue Livozoic 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livozoic 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livozoic 5mg Tablet'),
(26203, 'Livozone 125mg Syrup', 'Welgenic Pharma', 'Livozone 125mg Syrup', 'Q. Is Livozone 125mg Syrup safe?', 'Livozone 125mg Syrup is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26204, 'Livozone 125mg Syrup', 'Welgenic Pharma', 'Livozone 125mg Syrup', 'Q. What if I forget to take a dose of Livozone 125mg Syrup?', 'If you forget a dose of Livozone 125mg Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26205, 'Livozone 125mg Syrup', 'Welgenic Pharma', 'Livozone 125mg Syrup', 'Q. Can the use of Livozone 125mg Syrup cause diarrhea?', 'Yes, the use of Livozone 125mg Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26206, 'Livozone 125mg Syrup', 'Welgenic Pharma', 'Livozone 125mg Syrup', 'Q. Can I stop taking Livozone 125mg Syrup when I feel better?', 'No, do not stop taking Livozone 125mg Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livozone 125mg Syrup too early, the symptoms may return or worsen. Continue taking Livozone 125mg Syrup in the dose and duration advised by the doctor.'),
(26207, 'Livozone 125mg Syrup', 'Welgenic Pharma', 'Livozone 125mg Syrup', 'Q. Can the use of Livozone 125mg Syrup increase the risk of muscle damage?', 'Yes, the use of Livozone 125mg Syrup is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livozone 125mg Syrup but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26208, 'Livozone 500mg Tablet', 'Welgenic Pharma', 'Livozone 500mg Tablet', 'Is Livozone 500mg Tablet safe?', 'Livozone 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26209, 'Livozone 500mg Tablet', 'Welgenic Pharma', 'Livozone 500mg Tablet', 'What if I forget to take a dose of Livozone 500mg Tablet?', 'If you forget a dose of Livozone 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26210, 'Livozone 500mg Tablet', 'Welgenic Pharma', 'Livozone 500mg Tablet', 'Can the use of Livozone 500mg Tablet cause diarrhea?', 'Yes, the use of Livozone 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26211, 'Livozone 500mg Tablet', 'Welgenic Pharma', 'Livozone 500mg Tablet', 'Can I stop taking Livozone 500mg Tablet when I feel better?', 'No, do not stop taking Livozone 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livozone 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livozone 500mg Tablet in the dose and duration advised by the doctor.'),
(26212, 'Livozone 500mg Tablet', 'Welgenic Pharma', 'Livozone 500mg Tablet', 'Can the use of Livozone 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livozone 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livozone 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26213, 'Livozor 500mg Tablet', 'Medcure Pharma', 'Livozor 500mg Tablet', 'Is Livozor 500mg Tablet safe?', 'Livozor 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26214, 'Livozor 500mg Tablet', 'Medcure Pharma', 'Livozor 500mg Tablet', 'What if I forget to take a dose of Livozor 500mg Tablet?', 'If you forget a dose of Livozor 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26215, 'Livozor 500mg Tablet', 'Medcure Pharma', 'Livozor 500mg Tablet', 'Can the use of Livozor 500mg Tablet cause diarrhea?', 'Yes, the use of Livozor 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26216, 'Livozor 500mg Tablet', 'Medcure Pharma', 'Livozor 500mg Tablet', 'Can I stop taking Livozor 500mg Tablet when I feel better?', 'No, do not stop taking Livozor 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livozor 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livozor 500mg Tablet in the dose and duration advised by the doctor.'),
(26217, 'Livozor 500mg Tablet', 'Medcure Pharma', 'Livozor 500mg Tablet', 'Can the use of Livozor 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livozor 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livozor 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26218, 'Livozox 500mg Tablet', 'Kylsans Drugs & Chemicals P Ltd', 'Livozox 500mg Tablet', 'Is Livozox 500mg Tablet safe?', 'Livozox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26219, 'Livozox 500mg Tablet', 'Kylsans Drugs & Chemicals P Ltd', 'Livozox 500mg Tablet', 'What if I forget to take a dose of Livozox 500mg Tablet?', 'If you forget a dose of Livozox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26220, 'Livozox 500mg Tablet', 'Kylsans Drugs & Chemicals P Ltd', 'Livozox 500mg Tablet', 'Can the use of Livozox 500mg Tablet cause diarrhea?', 'Yes, the use of Livozox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26221, 'Livozox 500mg Tablet', 'Kylsans Drugs & Chemicals P Ltd', 'Livozox 500mg Tablet', 'Can I stop taking Livozox 500mg Tablet when I feel better?', 'No, do not stop taking Livozox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livozox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livozox 500mg Tablet in the dose and duration advised by the doctor.'),
(26222, 'Livozox 500mg Tablet', 'Kylsans Drugs & Chemicals P Ltd', 'Livozox 500mg Tablet', 'Can the use of Livozox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livozox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livozox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26223, 'Livozy 10mg Tablet', 'Eraas International', 'Livozy 10mg Tablet', 'Is Livozy 10mg Tablet a steroid? What is it used for?', 'No, Livozy 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26224, 'Livozy 10mg Tablet', 'Eraas International', 'Livozy 10mg Tablet', 'Does Livozy 10mg Tablet make you tired and drowsy?', 'Yes, Livozy 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26225, 'Livozy 10mg Tablet', 'Eraas International', 'Livozy 10mg Tablet', 'How long does it take for Livozy 10mg Tablet to work?', 'Livozy 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26226, 'Livozy 10mg Tablet', 'Eraas International', 'Livozy 10mg Tablet', 'Can I take Livozy 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livozy 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26227, 'Livozy 10mg Tablet', 'Eraas International', 'Livozy 10mg Tablet', 'Is it safe to take Livozy 10mg Tablet for a long time?', 'Livozy 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livozy 10mg Tablet for only as long as you need it.'),
(26228, 'Livozy 10mg Tablet', 'Eraas International', 'Livozy 10mg Tablet', 'For how long should I continue Livozy 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livozy 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livozy 10mg Tablet'),
(26229, 'Livozy 5mg Tablet', 'Eraas International', 'Livozy 5mg Tablet', 'Is Livozy 5mg Tablet a steroid? What is it used for?', 'No, Livozy 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26230, 'Livozy 5mg Tablet', 'Eraas International', 'Livozy 5mg Tablet', 'Does Livozy 5mg Tablet make you tired and drowsy?', 'Yes, Livozy 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26231, 'Livozy 5mg Tablet', 'Eraas International', 'Livozy 5mg Tablet', 'How long does it take for Livozy 5mg Tablet to work?', 'Livozy 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26232, 'Livozy 5mg Tablet', 'Eraas International', 'Livozy 5mg Tablet', 'Can I take Livozy 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livozy 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26233, 'Livozy 5mg Tablet', 'Eraas International', 'Livozy 5mg Tablet', 'Is it safe to take Livozy 5mg Tablet for a long time?', 'Livozy 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livozy 5mg Tablet for only as long as you need it.'),
(26234, 'Livozy 5mg Tablet', 'Eraas International', 'Livozy 5mg Tablet', 'For how long should I continue Livozy 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livozy 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livozy 5mg Tablet'),
(26235, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'Is Livpod 100 Tablet safe to use?', 'Livpod 100 Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(26236, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'Can the use of Livpod 100 Tablet cause diarrhea?', 'Yes, the use of Livpod 100 Tablet can cause diarrhea. Livpod 100 Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(26237, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'Is Livpod 100 Tablet an antibiotic?', 'Yes, Livpod 100 Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(26238, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'Can Livpod 100 Tablet cause constipation?', 'Yes, Livpod 100 Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(26239, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'Can I stop taking Livpod 100 Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Livpod 100 Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(26240, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'How long does Livpod 100 Tablet take to work?', 'Usually, Livpod 100 Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(26241, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'What if I do not get better after using Livpod 100 Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(26242, 'Livpod 100 Tablet', 'Neoliva Formulations', 'Livpod 100 Tablet', 'Can Livpod 100 Tablet treat UTI?', 'Yes, Livpod 100 Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Livpod 100 Tablet. It is advisable to take it only if prescribed by a doctor.'),
(26243, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'What if I give too much of Livpod 100mg Dry Syrup by mistake?', 'An extra dose of Livpod 100mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Livpod 100mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(26244, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'Are there any possible serious side effects of Livpod 100mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(26245, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'Can other medicines be given at the same time as Livpod 100mg Dry Syrup?', 'Livpod 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livpod 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26246, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Livpod 100mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(26247, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'Which lab tests may my child undergo while taking Livpod 100mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(26248, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(26249, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(26250, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(26251, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'Can Livpod 100mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Livpod 100mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Livpod 100mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(26252, 'Livpod 100mg Dry Syrup', 'Neoliva Formulations', 'Livpod 100mg Dry Syrup', 'Can Livpod 100mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Livpod 100mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(26253, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'Is Livpod 200mg Tablet safe to use?', 'Livpod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(26254, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'Can the use of Livpod 200mg Tablet cause diarrhea?', 'Yes, the use of Livpod 200mg Tablet can cause diarrhea. Livpod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(26255, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'Is Livpod 200mg Tablet an antibiotic?', 'Yes, Livpod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(26256, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'Can Livpod 200mg Tablet cause constipation?', 'Yes, Livpod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(26257, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'Can I stop taking Livpod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Livpod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(26258, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'How long does Livpod 200mg Tablet take to work?', 'Usually, Livpod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(26259, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'What if I do not get better after using Livpod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(26260, 'Livpod 200mg Tablet', 'Neoliva Formulations', 'Livpod 200mg Tablet', 'Can Livpod 200mg Tablet treat UTI?', 'Yes, Livpod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Livpod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(26261, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'What if I give too much of Livpod 50mg Dry Syrup by mistake?', 'An extra dose of Livpod 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Livpod 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(26262, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'Are there any possible serious side effects of Livpod 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(26263, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'Can other medicines be given at the same time as Livpod 50mg Dry Syrup?', 'Livpod 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livpod 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26264, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Livpod 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(26265, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Livpod 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(26266, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(26267, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(26268, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(26269, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'Can Livpod 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Livpod 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Livpod 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(26270, 'Livpod 50mg Dry Syrup', 'Neoliva Formulations', 'Livpod 50mg Dry Syrup', 'Can Livpod 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Livpod 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(26271, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'What if I give too much of Livpod Kid 50mg Tablet by mistake?', 'An extra dose of Livpod Kid 50mg Tablet is unlikely to do harm. However, if you think you have given too much of Livpod Kid 50mg Tablet to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(26272, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'Are there any possible serious side effects of Livpod Kid 50mg Tablet?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(26273, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'Can other medicines be given at the same time as Livpod Kid 50mg Tablet?', 'Livpod Kid 50mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livpod Kid 50mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(26274, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'Can I get my child vaccinated while on treatment with Livpod Kid 50mg Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(26275, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'Which lab tests may my child undergo while taking Livpod Kid 50mg Tablet on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(26276, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(26277, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(26278, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(26279, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'Can Livpod Kid 50mg Tablet impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Livpod Kid 50mg Tablet may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Livpod Kid 50mg Tablet, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(26280, 'Livpod Kid 50mg Tablet', 'Neoliva Formulations', 'Livpod Kid 50mg Tablet', 'Can Livpod Kid 50mg Tablet lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Livpod Kid 50mg Tablet can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(26281, 'Livpod OF 200mg/200mg Tablet', 'Neoliva Formulations', 'Livpod OF 200mg/200mg Tablet', 'Can Livpod OF 200mg/200mg Tablet be used to treat viral infections?', 'No, Livpod OF 200mg/200mg Tablet is only indicated to treat bacterial infections. It does not treat viral infections (such as common cold and flu).'),
(26282, 'Livpod OF 200mg/200mg Tablet', 'Neoliva Formulations', 'Livpod OF 200mg/200mg Tablet', 'How to take Livpod OF 200mg/200mg Tablet?', 'Take this medication orally with or without food as directed by your doctor. This medicine is usually taken once a day. Take the medicine for the prescribed period, even if symptoms disappear after a few days.'),
(26283, 'Livpod OF 200mg/200mg Tablet', 'Neoliva Formulations', 'Livpod OF 200mg/200mg Tablet', 'Can the use of Livpod OF 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Livpod OF 200mg/200mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicines without consulting your doctor.'),
(26284, 'Livpod OF 200mg/200mg Tablet', 'Neoliva Formulations', 'Livpod OF 200mg/200mg Tablet', 'What are the instructions for the storage and disposal of Livpod OF 200mg/200mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26285, 'Livpod OF 200mg/200mg Tablet', 'Neoliva Formulations', 'Livpod OF 200mg/200mg Tablet', 'Can I stop taking Livpod OF 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Livpod OF 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(26286, 'Livpod OF 200mg/200mg Tablet', 'Neoliva Formulations', 'Livpod OF 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Livpod OF 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(26287, 'Livpod OF 200mg/200mg Tablet', 'Neoliva Formulations', 'Livpod OF 200mg/200mg Tablet', 'What if I don\'t get better after using Livpod OF 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26288, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'What is Livrab-DSR Capsule?', 'Livrab-DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(26289, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'What are the contraindications of Livrab-DSR Capsule?', 'The use of Livrab-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(26290, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'Can the use of Livrab-DSR Capsule cause dry mouth?', 'Yes, the use of Livrab-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(26291, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'Can the use of Livrab-DSR Capsule cause diarrhea?', 'Yes, the use of Livrab-DSR Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(26292, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'What is the recommended storage condition for Livrab-DSR Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26293, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'Is it safe to use Livrab-DSR Capsule?', 'Yes, Livrab-DSR Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(26294, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'What is the best time to take Livrab-DSR Capsule?', 'It is best to take Livrab-DSR Capsule before the first meal of the day or on an empty stomach.'),
(26295, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'Can the use of Livrab-DSR Capsule cause abnormal heartbeat?', 'Yes, the use of Livrab-DSR Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(26296, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'What is Livrab-DSR Capsule?', 'Livrab-DSR Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(26297, 'Livrab-DSR Capsule', 'NCB Pharma Pvt Ltd', 'Livrab-DSR Capsule', 'What are the contraindications of Livrab-DSR Capsule?', 'The use of Livrab-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(26298, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'Can the use of Livrace 500mg Tablet cause sleepiness?', 'Yes, Livrace 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26299, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'Will the use of Livrace 500mg Tablet affect my fertility?', 'Livrace 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26300, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'I have gained weight since I started taking Livrace 500mg Tablet. Is it because of Livrace 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livrace 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26301, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'How long does Livrace 500mg Tablet take to show its effect?', 'Livrace 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livrace 500mg Tablet starts working completely.'),
(26302, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'For how long do I need to take Livrace 500mg Tablet?', 'You should continue to take Livrace 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26303, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'Will I get addicted to Livrace 500mg Tablet if I use it for a long time?', 'No, Livrace 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livrace 500mg Tablet. Consult your doctor if you experience any side effects.'),
(26304, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'What symptoms can occur if someone takes an excess of Livrace 500mg Tablet?', 'Taking an excess of Livrace 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26305, 'Livrace 500mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 500mg Tablet', 'How do I come off Livrace 500mg Tablet?', 'The dose of Livrace 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livrace 500mg Tablet straight away, even if you have epilepsy.'),
(26306, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'Can the use of Livrace 750mg Tablet cause sleepiness?', 'Yes, Livrace 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26307, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'Will the use of Livrace 750mg Tablet affect my fertility?', 'Livrace 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26308, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'I have gained weight since I started taking Livrace 750mg Tablet. Is it because of Livrace 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livrace 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26309, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'How long does Livrace 750mg Tablet take to show its effect?', 'Livrace 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livrace 750mg Tablet starts working completely.'),
(26310, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'For how long do I need to take Livrace 750mg Tablet?', 'You should continue to take Livrace 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26311, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'Will I get addicted to Livrace 750mg Tablet if I use it for a long time?', 'No, Livrace 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livrace 750mg Tablet. Consult your doctor if you experience any side effects.'),
(26312, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'What symptoms can occur if someone takes an excess of Livrace 750mg Tablet?', 'Taking an excess of Livrace 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26313, 'Livrace 750mg Tablet', 'Cardimind Pharmaceuticals', 'Livrace 750mg Tablet', 'How do I come off Livrace 750mg Tablet?', 'The dose of Livrace 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livrace 750mg Tablet straight away, even if you have epilepsy.'),
(26314, 'Livran 500mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Livran 500mg Tablet', 'Is Livran 500mg Tablet safe?', 'Livran 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26315, 'Livran 500mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Livran 500mg Tablet', 'What if I forget to take a dose of Livran 500mg Tablet?', 'If you forget a dose of Livran 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26316, 'Livran 500mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Livran 500mg Tablet', 'Can the use of Livran 500mg Tablet cause diarrhea?', 'Yes, the use of Livran 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26317, 'Livran 500mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Livran 500mg Tablet', 'Can I stop taking Livran 500mg Tablet when I feel better?', 'No, do not stop taking Livran 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livran 500mg Tablet too early, the symptoms may return or worsen. Continue taking Livran 500mg Tablet in the dose and duration advised by the doctor.'),
(26318, 'Livran 500mg Tablet', 'Uni-Pex Pharmaceuticals Pvt Ltd', 'Livran 500mg Tablet', 'Can the use of Livran 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Livran 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livran 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26319, 'Livreal 5mg Injection', 'Oriel Healthcare Pvt Ltd', 'Livreal 5mg Injection', 'Is it ok to take alcohol when taking Livreal 5mg Injection?', 'No, it is not recommended to take alcohol when on Livreal 5mg Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(26320, 'Livreal 5mg Injection', 'Oriel Healthcare Pvt Ltd', 'Livreal 5mg Injection', 'What is Livreal 5mg Injection?', 'Livreal 5mg Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(26321, 'Livreal 5mg Injection', 'Oriel Healthcare Pvt Ltd', 'Livreal 5mg Injection', 'What is the use of Livreal 5mg Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livreal 5mg Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(26322, 'Livreal 5mg Injection', 'Oriel Healthcare Pvt Ltd', 'Livreal 5mg Injection', 'How is Livreal 5mg Injection given?', 'Livreal 5mg Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(26323, 'Livrej-Gold Tablet', 'Rejli Healthcare Pvt Ltd', 'Livrej-Gold Tablet', 'How does Livrej-Gold Tablet help?', 'Livrej-Gold Tablet is a nutritional supplement that consists of various vitamins and minerals. When you lack these nutrients in your body, which cannot be recovered even with the food sources, this medicine helps replenish these deficient levels.'),
(26324, 'Livrej-Gold Tablet', 'Rejli Healthcare Pvt Ltd', 'Livrej-Gold Tablet', 'Does Livrej-Gold Tablet boost the immune system?', 'Livrej-Gold Tablet has immunomodulatory properties that help regulate the immune system. It also has antioxidant properties and thus has been used as a nutritional supplement in disease conditions like diabetes and nervous and heart problems.'),
(26325, 'Livrej-Gold Tablet', 'Rejli Healthcare Pvt Ltd', 'Livrej-Gold Tablet', 'What should you avoid while taking Livrej-Gold Tablet?', 'It is advisable to avoid taking this medicine with other herbal/health supplements.'),
(26326, 'Livrej-Gold Tablet', 'Rejli Healthcare Pvt Ltd', 'Livrej-Gold Tablet', 'Can I take Livrej-Gold Tablet without consulting a doctor?', 'Although Livrej-Gold Tablet is a dietary supplement, it is important to remember that it includes vitamins and minerals which might not be suitable for you. Dietary supplements are not intended to treat or cure disease. In some cases, dietary supplements may have side effects, especially if taken before any surgery, with other dietary supplements or medicines, or if you have a specific health condition. So it is advisable to always consult a doctor before taking it.'),
(26327, 'Livrel 5 Tablet', 'Relward Pharma', 'Livrel 5 Tablet', 'Is Livrel 5 Tablet a steroid? What is it used for?', 'No, Livrel 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26328, 'Livrel 5 Tablet', 'Relward Pharma', 'Livrel 5 Tablet', 'Does Livrel 5 Tablet make you tired and drowsy?', 'Yes, Livrel 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26329, 'Livrel 5 Tablet', 'Relward Pharma', 'Livrel 5 Tablet', 'How long does it take for Livrel 5 Tablet to work?', 'Livrel 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26330, 'Livrel 5 Tablet', 'Relward Pharma', 'Livrel 5 Tablet', 'Can I take Livrel 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livrel 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26331, 'Livrel 5 Tablet', 'Relward Pharma', 'Livrel 5 Tablet', 'Is it safe to take Livrel 5 Tablet for a long time?', 'Livrel 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livrel 5 Tablet for only as long as you need it.'),
(26332, 'Livrel 5 Tablet', 'Relward Pharma', 'Livrel 5 Tablet', 'For how long should I continue Livrel 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livrel 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livrel 5 Tablet'),
(26333, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'Can the use of Livrich 1000mg Tablet cause sleepiness?', 'Yes, Livrich 1000mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26334, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'Will the use of Livrich 1000mg Tablet affect my fertility?', 'Livrich 1000mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26335, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'I have gained weight since I started taking Livrich 1000mg Tablet. Is it because of Livrich 1000mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livrich 1000mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26336, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'How long does Livrich 1000mg Tablet take to show its effect?', 'Livrich 1000mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livrich 1000mg Tablet starts working completely.'),
(26337, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'For how long do I need to take Livrich 1000mg Tablet?', 'You should continue to take Livrich 1000mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26338, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'Will I get addicted to Livrich 1000mg Tablet if I use it for a long time?', 'No, Livrich 1000mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livrich 1000mg Tablet. Consult your doctor if you experience any side effects.'),
(26339, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'What symptoms can occur if someone takes an excess of Livrich 1000mg Tablet?', 'Taking an excess of Livrich 1000mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26340, 'Livrich 1000mg Tablet', 'Curis Lifecare', 'Livrich 1000mg Tablet', 'How do I come off Livrich 1000mg Tablet?', 'The dose of Livrich 1000mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livrich 1000mg Tablet straight away, even if you have epilepsy.'),
(26341, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. Can the use of Livrich 250mg Tablet cause sleepiness?', 'Yes, Livrich 250mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26342, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. Will the use of Livrich 250mg Tablet affect my fertility?', 'Livrich 250mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26343, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. I have gained weight since I started taking Livrich 250mg Tablet. Is it because of Livrich 250mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livrich 250mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26344, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. How long does Livrich 250mg Tablet take to show its effect?', 'Livrich 250mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livrich 250mg Tablet starts working completely.'),
(26345, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. For how long do I need to take Livrich 250mg Tablet?', 'You should continue to take Livrich 250mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26346, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. Will I get addicted to Livrich 250mg Tablet if I use it for a long time?', 'No, Livrich 250mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livrich 250mg Tablet. Consult your doctor if you experience any side effects.'),
(26347, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. What symptoms can occur if someone takes an excess of Livrich 250mg Tablet?', 'Taking an excess of Livrich 250mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26348, 'Livrich 250mg Tablet', 'Curis Lifecare', 'Livrich 250mg Tablet', 'Q. How do I come off Livrich 250mg Tablet?', 'The dose of Livrich 250mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livrich 250mg Tablet straight away, even if you have epilepsy.'),
(26349, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'Can the use of Livrich 500mg Tablet cause sleepiness?', 'Yes, Livrich 500mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26350, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'Will the use of Livrich 500mg Tablet affect my fertility?', 'Livrich 500mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26351, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'I have gained weight since I started taking Livrich 500mg Tablet. Is it because of Livrich 500mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livrich 500mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26352, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'How long does Livrich 500mg Tablet take to show its effect?', 'Livrich 500mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livrich 500mg Tablet starts working completely.'),
(26353, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'For how long do I need to take Livrich 500mg Tablet?', 'You should continue to take Livrich 500mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26354, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'Will I get addicted to Livrich 500mg Tablet if I use it for a long time?', 'No, Livrich 500mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livrich 500mg Tablet. Consult your doctor if you experience any side effects.'),
(26355, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'What symptoms can occur if someone takes an excess of Livrich 500mg Tablet?', 'Taking an excess of Livrich 500mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26356, 'Livrich 500mg Tablet', 'Curis Lifecare', 'Livrich 500mg Tablet', 'How do I come off Livrich 500mg Tablet?', 'The dose of Livrich 500mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livrich 500mg Tablet straight away, even if you have epilepsy.'),
(26357, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'Can the use of Livrich 750mg Tablet cause sleepiness?', 'Yes, Livrich 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26358, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'Will the use of Livrich 750mg Tablet affect my fertility?', 'Livrich 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26359, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'I have gained weight since I started taking Livrich 750mg Tablet. Is it because of Livrich 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livrich 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26360, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'How long does Livrich 750mg Tablet take to show its effect?', 'Livrich 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livrich 750mg Tablet starts working completely.'),
(26361, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'For how long do I need to take Livrich 750mg Tablet?', 'You should continue to take Livrich 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26362, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'Will I get addicted to Livrich 750mg Tablet if I use it for a long time?', 'No, Livrich 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livrich 750mg Tablet. Consult your doctor if you experience any side effects.'),
(26363, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'What symptoms can occur if someone takes an excess of Livrich 750mg Tablet?', 'Taking an excess of Livrich 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26364, 'Livrich 750mg Tablet', 'Curis Lifecare', 'Livrich 750mg Tablet', 'How do I come off Livrich 750mg Tablet?', 'The dose of Livrich 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livrich 750mg Tablet straight away, even if you have epilepsy.'),
(26365, 'Livride 5mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride 5mg Tablet', 'Is Livride 5mg Tablet a steroid? What is it used for?', 'No, Livride 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26366, 'Livride 5mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride 5mg Tablet', 'Does Livride 5mg Tablet make you tired and drowsy?', 'Yes, Livride 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26367, 'Livride 5mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride 5mg Tablet', 'How long does it take for Livride 5mg Tablet to work?', 'Livride 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26368, 'Livride 5mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride 5mg Tablet', 'Can I take Livride 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livride 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26369, 'Livride 5mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride 5mg Tablet', 'Is it safe to take Livride 5mg Tablet for a long time?', 'Livride 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livride 5mg Tablet for only as long as you need it.'),
(26370, 'Livride 5mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride 5mg Tablet', 'For how long should I continue Livride 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livride 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livride 5mg Tablet'),
(26371, 'Livride M 5mg/10mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride M 5mg/10mg Tablet', 'What is Livride M 5mg/10mg Tablet?', 'Livride M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26372, 'Livride M 5mg/10mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride M 5mg/10mg Tablet', 'Can the use of Livride M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livride M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26373, 'Livride M 5mg/10mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride M 5mg/10mg Tablet', 'Can Livride M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livride M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26374, 'Livride M 5mg/10mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride M 5mg/10mg Tablet', 'Can the use of Livride M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Livride M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26375, 'Livride M 5mg/10mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride M 5mg/10mg Tablet', 'Can I drink alcohol while taking Livride M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Livride M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livride M 5mg/10mg Tablet.'),
(26376, 'Livride M 5mg/10mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride M 5mg/10mg Tablet', 'Will Livride M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livride M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26377, 'Livride M 5mg/10mg Tablet', 'Morecare Pharmatec Pvt Ltd', 'Livride M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Livride M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26378, 'Livrin-M Tablet', 'Slash Lifevision', 'Livrin-M Tablet', 'What is Livrin-M Tablet?', 'Livrin-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26379, 'Livrin-M Tablet', 'Slash Lifevision', 'Livrin-M Tablet', 'Can the use of Livrin-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livrin-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26380, 'Livrin-M Tablet', 'Slash Lifevision', 'Livrin-M Tablet', 'Can Livrin-M Tablet be stopped when allergy symptoms are relieved?', 'No, Livrin-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26381, 'Livrin-M Tablet', 'Slash Lifevision', 'Livrin-M Tablet', 'Can the use of Livrin-M Tablet cause dry mouth?', 'Yes, the use of Livrin-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26382, 'Livrin-M Tablet', 'Slash Lifevision', 'Livrin-M Tablet', 'Can I drink alcohol while taking Livrin-M Tablet?', 'No, do not take alcohol while taking Livrin-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livrin-M Tablet.'),
(26383, 'Livrin-M Tablet', 'Slash Lifevision', 'Livrin-M Tablet', 'Will Livrin-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livrin-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26384, 'Livrin-M Tablet', 'Slash Lifevision', 'Livrin-M Tablet', 'What are the instructions for storage and disposal of Livrin-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26385, 'Livron 500 Tablet', 'Anvicure Drugs', 'Livron 500 Tablet', 'Is Livron 500 Tablet safe?', 'Livron 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26386, 'Livron 500 Tablet', 'Anvicure Drugs', 'Livron 500 Tablet', 'What if I forget to take a dose of Livron 500 Tablet?', 'If you forget a dose of Livron 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26387, 'Livron 500 Tablet', 'Anvicure Drugs', 'Livron 500 Tablet', 'Can the use of Livron 500 Tablet cause diarrhea?', 'Yes, the use of Livron 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26388, 'Livron 500 Tablet', 'Anvicure Drugs', 'Livron 500 Tablet', 'Can I stop taking Livron 500 Tablet when I feel better?', 'No, do not stop taking Livron 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Livron 500 Tablet too early, the symptoms may return or worsen. Continue taking Livron 500 Tablet in the dose and duration advised by the doctor.'),
(26389, 'Livron 500 Tablet', 'Anvicure Drugs', 'Livron 500 Tablet', 'Can the use of Livron 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Livron 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Livron 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26390, 'Livrow Plus 300mg Tablet', 'Rowlinges Life Science', 'Livrow Plus 300mg Tablet', 'Q. When should I take Livrow Plus 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livrow Plus 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(26391, 'Livrow Plus 300mg Tablet', 'Rowlinges Life Science', 'Livrow Plus 300mg Tablet', 'Q. Is Livrow Plus 300mg Tablet safe?', 'Livrow Plus 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(26392, 'Livrow Plus 300mg Tablet', 'Rowlinges Life Science', 'Livrow Plus 300mg Tablet', 'Q. How does Livrow Plus 300mg Tablet help the liver?', 'Livrow Plus 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(26393, 'Livrow Plus 300mg Tablet', 'Rowlinges Life Science', 'Livrow Plus 300mg Tablet', 'Q. Does Livrow Plus 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livrow Plus 300mg Tablet, but it is not common. The use of Livrow Plus 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(26394, 'Livrow Plus 300mg Tablet', 'Rowlinges Life Science', 'Livrow Plus 300mg Tablet', 'Q. What should I avoid while taking Livrow Plus 300mg Tablet?', 'While taking Livrow Plus 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livrow Plus 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livrow Plus 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livrow Plus 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livrow Plus 300mg Tablet.'),
(26395, 'Livrox 10mg Syrup', 'Neoliva Formulations', 'Livrox 10mg Syrup', 'What is Livrox 10mg Syrup? What is it used for?', 'Livrox 10mg Syrup belongs to a group of medicines called antihistamines, which means it is an anti-allergy medicine. It is used to treat various allergic skin conditions (e.g., eczema, dermatitis, allergies, rash). Livrox 10mg Syrup effectively reduces symptoms such as swelling, itching and redness associated with such conditions. It also helps relieve excessive anxiety or worry in people who are supposed to undergo a surgery or have recently undergone a surgery. It calms the brain and makes such people feel better.'),
(26396, 'Livrox 10mg Syrup', 'Neoliva Formulations', 'Livrox 10mg Syrup', 'Is Livrox 10mg Syrup safe?', 'Livrox 10mg Syrup is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26397, 'Livrox 10mg Syrup', 'Neoliva Formulations', 'Livrox 10mg Syrup', 'How does Livrox 10mg Syrup work for allergies?', 'Livrox 10mg Syrup works by decreasing the inflammation caused by allergies. It reduces inflammation by blocking the release of a natural chemical in our body, called histamine, that causes allergic symptoms such as swelling, redness and pain.'),
(26398, 'Livrox 10mg Syrup', 'Neoliva Formulations', 'Livrox 10mg Syrup', 'What if I forget to take a dose of Livrox 10mg Syrup?', 'If you forget a dose of Livrox 10mg Syrup, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26399, 'Livrox 10mg Syrup', 'Neoliva Formulations', 'Livrox 10mg Syrup', 'Is Livrox 10mg Syrup effective?', 'Livrox 10mg Syrup is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livrox 10mg Syrup too early, the symptoms may return or worsen.'),
(26400, 'Livrox 10mg Syrup', 'Neoliva Formulations', 'Livrox 10mg Syrup', 'Can I stop taking Livrox 10mg Syrup when I feel better?', 'No, do not stop taking Livrox 10mg Syrup without consulting your doctor even if you are feeling better. Your symptoms may improve before the condition is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26401, 'Livrox 10mg Syrup', 'Neoliva Formulations', 'Livrox 10mg Syrup', 'What should I tell my doctor before starting treatment with Livrox 10mg Syrup?', 'Before starting treatment with Livrox 10mg Syrup, tell your doctor if you have any other health problems, like kidney, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. If you have had an allergic reaction to any similar medicine earlier, tell your doctor before starting your treatment. Inform your doctor if you are planning a baby, if you are pregnant or breastfeeding.'),
(26402, 'Livrox 25mg Tablet', 'Neoliva Formulations', 'Livrox 25mg Tablet', 'What is Livrox 25mg Tablet? What is it used for?', 'Livrox 25mg Tablet belongs to a group of medicines called antihistamines, which means it is an anti-allergy medicine. It is used to treat various allergic skin conditions (e.g., eczema, dermatitis, allergies, rash). Livrox 25mg Tablet effectively reduces symptoms such as swelling, itching and redness associated with such conditions. It also helps relieve excessive anxiety or worry in people who are supposed to undergo a surgery or have recently undergone a surgery. It calms the brain and makes such people feel better.'),
(26403, 'Livrox 25mg Tablet', 'Neoliva Formulations', 'Livrox 25mg Tablet', 'Is Livrox 25mg Tablet safe?', 'Livrox 25mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26404, 'Livrox 25mg Tablet', 'Neoliva Formulations', 'Livrox 25mg Tablet', 'How does Livrox 25mg Tablet work for allergies?', 'Livrox 25mg Tablet works by decreasing the inflammation caused by allergies. It reduces inflammation by blocking the release of a natural chemical in our body, called histamine, that causes allergic symptoms such as swelling, redness and pain.'),
(26405, 'Livrox 25mg Tablet', 'Neoliva Formulations', 'Livrox 25mg Tablet', 'What if I forget to take a dose of Livrox 25mg Tablet?', 'If you forget a dose of Livrox 25mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26406, 'Livrox 25mg Tablet', 'Neoliva Formulations', 'Livrox 25mg Tablet', 'Is Livrox 25mg Tablet effective?', 'Livrox 25mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livrox 25mg Tablet too early, the symptoms may return or worsen.'),
(26407, 'Livrox 25mg Tablet', 'Neoliva Formulations', 'Livrox 25mg Tablet', 'Can I stop taking Livrox 25mg Tablet when I feel better?', 'No, do not stop taking Livrox 25mg Tablet without consulting your doctor even if you are feeling better. Your symptoms may improve before the condition is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26408, 'Livrox 25mg Tablet', 'Neoliva Formulations', 'Livrox 25mg Tablet', 'What should I tell my doctor before starting treatment with Livrox 25mg Tablet?', 'Before starting treatment with Livrox 25mg Tablet, tell your doctor if you have any other health problems, like kidney, heart or liver-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. If you have had an allergic reaction to any similar medicine earlier, tell your doctor before starting your treatment. Inform your doctor if you are planning a baby, if you are pregnant or breastfeeding.'),
(26409, 'Livroxol Syrup', 'Saphnix Life Sciences', 'Livroxol Syrup', 'What is Livroxol Syrup?', 'Livroxol Syrup is a combination of three medicines: Ambroxol, Levosalbutamol / Levalbuterol, Guaifenesin. It is used in the treatment of cough with mucus. Ambroxol is a mucolytic. It thins and loosens the mucus (phlegm) which makes it easier to cough out. Levosalbutamol is a bronchodilator and it works by relaxing the muscles of the airways and widens the airways. Guaifenesin is an expectorant. It works by decreasing the stickiness of the mucus (phlegm) and helps to remove it easily from the airways.'),
(26410, 'Livroxol Syrup', 'Saphnix Life Sciences', 'Livroxol Syrup', 'Is it safe to use Livroxol Syrup?', 'Yes, it is safe to use Livroxol Syrup in most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, diarrhea, stomach pain, allergic reaction, dizziness, headache, rash, urticaria, tremor, palpitations, muscle cramp and increased heart rate. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(26411, 'Livroxol Syrup', 'Saphnix Life Sciences', 'Livroxol Syrup', 'Are there any specific contraindications associated with the use of Livroxol Syrup?', 'Use of Livroxol Syrup is considered to be harmful in patients with a history of allergy to any of the active or inactive ingredients. Levosalbutamol and beta-blockers like propranolol should not usually be taken together.'),
(26412, 'Livroxol Syrup', 'Saphnix Life Sciences', 'Livroxol Syrup', 'Can the use of Livroxol Syrup cause dizziness?', 'Yes, the use of Livroxol Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(26413, 'Livroxol Syrup', 'Saphnix Life Sciences', 'Livroxol Syrup', 'Can the use of Livroxol Syrup cause diarrhea?', 'Yes, the use of Livroxol Syrup can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(26414, 'Livroxol Syrup', 'Saphnix Life Sciences', 'Livroxol Syrup', 'What are the recommended storage conditions for Livroxol Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26415, 'Livsafe 150 Tablet', 'Plena Remedies', 'Livsafe 150 Tablet', 'When should I take Livsafe 150 Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livsafe 150 Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(26416, 'Livsafe 150 Tablet', 'Plena Remedies', 'Livsafe 150 Tablet', 'Is Livsafe 150 Tablet safe?', 'Livsafe 150 Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(26417, 'Livsafe 150 Tablet', 'Plena Remedies', 'Livsafe 150 Tablet', 'How does Livsafe 150 Tablet help the liver?', 'Livsafe 150 Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(26418, 'Livsafe 150 Tablet', 'Plena Remedies', 'Livsafe 150 Tablet', 'Does Livsafe 150 Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livsafe 150 Tablet, but it is not common. The use of Livsafe 150 Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(26419, 'Livsafe 150 Tablet', 'Plena Remedies', 'Livsafe 150 Tablet', 'What should I avoid while taking Livsafe 150 Tablet?', 'While taking Livsafe 150 Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livsafe 150 Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livsafe 150 Tablet. So, ask your doctor about the time gap that should be maintained between Livsafe 150 Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livsafe 150 Tablet.'),
(26420, 'Livsafe 300mg Tablet', 'Plena Remedies', 'Livsafe 300mg Tablet', 'When should I take Livsafe 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livsafe 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(26421, 'Livsafe 300mg Tablet', 'Plena Remedies', 'Livsafe 300mg Tablet', 'Is Livsafe 300mg Tablet safe?', 'Livsafe 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(26422, 'Livsafe 300mg Tablet', 'Plena Remedies', 'Livsafe 300mg Tablet', 'How does Livsafe 300mg Tablet help the liver?', 'Livsafe 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(26423, 'Livsafe 300mg Tablet', 'Plena Remedies', 'Livsafe 300mg Tablet', 'Does Livsafe 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livsafe 300mg Tablet, but it is not common. The use of Livsafe 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(26424, 'Livsafe 300mg Tablet', 'Plena Remedies', 'Livsafe 300mg Tablet', 'What should I avoid while taking Livsafe 300mg Tablet?', 'While taking Livsafe 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livsafe 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livsafe 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livsafe 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livsafe 300mg Tablet.'),
(26425, 'Livsar 5 Infusion', 'Acekinetics Healthcare Pvt Ltd', 'Livsar 5 Infusion', 'Is it ok to take alcohol when taking Livsar 5 Infusion?', 'No, it is not recommended to take alcohol when on Livsar 5 Infusion. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(26426, 'Livsar 5 Infusion', 'Acekinetics Healthcare Pvt Ltd', 'Livsar 5 Infusion', 'What is Livsar 5 Infusion?', 'Livsar 5 Infusion is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(26427, 'Livsar 5 Infusion', 'Acekinetics Healthcare Pvt Ltd', 'Livsar 5 Infusion', 'What is the use of Livsar 5 Infusion in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livsar 5 Infusion works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(26428, 'Livsar 5 Infusion', 'Acekinetics Healthcare Pvt Ltd', 'Livsar 5 Infusion', 'How is Livsar 5 Infusion given?', 'Livsar 5 Infusion can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(26429, 'Livsat Tablet', 'Sat Pharma Pvt Ltd', 'Livsat Tablet', 'When should I take Livsat Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livsat Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(26430, 'Livsat Tablet', 'Sat Pharma Pvt Ltd', 'Livsat Tablet', 'Is Livsat Tablet safe?', 'Livsat Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(26431, 'Livsat Tablet', 'Sat Pharma Pvt Ltd', 'Livsat Tablet', 'How does Livsat Tablet help the liver?', 'Livsat Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(26432, 'Livsat Tablet', 'Sat Pharma Pvt Ltd', 'Livsat Tablet', 'Does Livsat Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livsat Tablet, but it is not common. The use of Livsat Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(26433, 'Livsat Tablet', 'Sat Pharma Pvt Ltd', 'Livsat Tablet', 'What should I avoid while taking Livsat Tablet?', 'While taking Livsat Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livsat Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livsat Tablet. So, ask your doctor about the time gap that should be maintained between Livsat Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livsat Tablet.'),
(26434, 'Livsol 5gm Injection', 'Man Serve Pharma', 'Livsol 5gm Injection', 'Is it ok to take alcohol when taking Livsol 5gm Injection?', 'No, it is not recommended to take alcohol when on Livsol 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(26435, 'Livsol 5gm Injection', 'Man Serve Pharma', 'Livsol 5gm Injection', 'What is Livsol 5gm Injection?', 'Livsol 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(26436, 'Livsol 5gm Injection', 'Man Serve Pharma', 'Livsol 5gm Injection', 'What is the use of Livsol 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Livsol 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(26437, 'Livsol 5gm Injection', 'Man Serve Pharma', 'Livsol 5gm Injection', 'How is Livsol 5gm Injection given?', 'Livsol 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(26438, 'Livsure 300mg Tablet', 'Biological E Ltd', 'Livsure 300mg Tablet', 'When should I take Livsure 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livsure 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(26439, 'Livsure 300mg Tablet', 'Biological E Ltd', 'Livsure 300mg Tablet', 'Is Livsure 300mg Tablet safe?', 'Livsure 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(26440, 'Livsure 300mg Tablet', 'Biological E Ltd', 'Livsure 300mg Tablet', 'How does Livsure 300mg Tablet help the liver?', 'Livsure 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(26441, 'Livsure 300mg Tablet', 'Biological E Ltd', 'Livsure 300mg Tablet', 'Does Livsure 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livsure 300mg Tablet, but it is not common. The use of Livsure 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(26442, 'Livsure 300mg Tablet', 'Biological E Ltd', 'Livsure 300mg Tablet', 'What should I avoid while taking Livsure 300mg Tablet?', 'While taking Livsure 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livsure 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livsure 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livsure 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livsure 300mg Tablet.'),
(26443, 'Livtec 140mg Tablet', 'Ampus Life Sciences Ltd', 'Livtec 140mg Tablet', 'What is Livtec 140mg Tablet? What is it used for?', 'Livtec 140mg Tablet belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livtec 140mg Tablet accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(26444, 'Livtec 140mg Tablet', 'Ampus Life Sciences Ltd', 'Livtec 140mg Tablet', 'How does Livtec 140mg Tablet work for the liver?', 'Livtec 140mg Tablet is obtained from milk thistle seed (Silybum marianum). Livtec 140mg Tablet works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26445, 'Livtec 140mg Tablet', 'Ampus Life Sciences Ltd', 'Livtec 140mg Tablet', 'How to use Livtec 140mg Tablet?', 'Livtec 140mg Tablet should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livtec 140mg Tablet.'),
(26446, 'Livtec 140mg Tablet', 'Ampus Life Sciences Ltd', 'Livtec 140mg Tablet', 'What are the side effects of Livtec 140mg Tablet?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(26447, 'Livtec 140mg Tablet', 'Ampus Life Sciences Ltd', 'Livtec 140mg Tablet', 'Can Livtec 140mg Tablet be used in pregnancy and lactation?', 'Livtec 140mg Tablet may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livtec 140mg Tablet if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(26448, 'Livtec Syrup', 'Ampus Life Sciences Ltd', 'Livtec Syrup', 'What is Livtec Syrup? What is it used for?', 'Livtec Syrup belongs to a class of medicines known as hepatoprotective medicines which means that they protect the liver. It is used to treat chronic (long-standing) liver diseases. It is also used to treat severe cases of liver disease known as cirrhosis of the liver. Livtec Syrup accelerates alcohol clearance from the blood and therefore also helps in the treatment of fatty liver due to alcoholism.'),
(26449, 'Livtec Syrup', 'Ampus Life Sciences Ltd', 'Livtec Syrup', 'How does Livtec Syrup work for the liver?', 'Livtec Syrup is obtained from milk thistle seed (Silybum marianum). Livtec Syrup works by increasing the process of alcohol elimination from blood and tissues. This provides faster recovery from alcohol intoxication and as a result protects the liver from damage against harmful chemicals known as free radicals. Thereby, it helps to improve overall health of the liver.'),
(26450, 'Livtec Syrup', 'Ampus Life Sciences Ltd', 'Livtec Syrup', 'How to use Livtec Syrup?', 'Livtec Syrup should be taken with food. Take it in the dose and duration advised by the doctor. The dose will depend on the condition you are being treated for and your total body weight. It is advised to follow your doctor’s instructions carefully to get the maximum benefit of Livtec Syrup.'),
(26451, 'Livtec Syrup', 'Ampus Life Sciences Ltd', 'Livtec Syrup', 'What are the side effects of Livtec Syrup?', 'The most common side effects are nausea, upset stomach, loss of appetite, stomach or back pain, hair loss, dizziness, itching and diarrhea. However, these effects are not observed in every patient. If you are worried about them or they do not go away, inform your doctor. If you have problems with diarrhea your doctor may reduce the dose or stop the treatment. Drink enough water or fluids to stay hydrated in case of severe diarrhea.'),
(26452, 'Livtec Syrup', 'Ampus Life Sciences Ltd', 'Livtec Syrup', 'Can Livtec Syrup be used in pregnancy and lactation?', 'Livtec Syrup may not be safe to be used in pregnant and breastfeeding women. Please consult your doctor before taking Livtec Syrup if you are planning to conceive, pregnant or breastfeeding to prevent harmful effects on the baby.'),
(26453, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'Can the use of Livtor 250 Tablet ER cause sleepiness?', 'Yes, Livtor 250 Tablet ER can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26454, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'Will the use of Livtor 250 Tablet ER affect my fertility?', 'Livtor 250 Tablet ER is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26455, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'I have gained weight since I started taking Livtor 250 Tablet ER. Is it because of Livtor 250 Tablet ER? What should I do?', 'Weight gain is an uncommon side effect of Livtor 250 Tablet ER. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26456, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'How long does Livtor 250 Tablet ER take to show its effect?', 'Livtor 250 Tablet ER may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livtor 250 Tablet ER starts working completely.'),
(26457, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'For how long do I need to take Livtor 250 Tablet ER?', 'You should continue to take Livtor 250 Tablet ER for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26458, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'Will I get addicted to Livtor 250 Tablet ER if I use it for a long time?', 'No, Livtor 250 Tablet ER is not habit-forming. No physical or psychological dependence has been reported with Livtor 250 Tablet ER. Consult your doctor if you experience any side effects.'),
(26459, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'What symptoms can occur if someone takes an excess of Livtor 250 Tablet ER?', 'Taking an excess of Livtor 250 Tablet ER may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26460, 'Livtor 250 Tablet ER', 'Holy Evolution Pharma', 'Livtor 250 Tablet ER', 'How do I come off Livtor 250 Tablet ER?', 'The dose of Livtor 250 Tablet ER should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livtor 250 Tablet ER straight away, even if you have epilepsy.'),
(26461, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'Can the use of Livtor 500 Tablet cause sleepiness?', 'Yes, Livtor 500 Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26462, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'Will the use of Livtor 500 Tablet affect my fertility?', 'Livtor 500 Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26463, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'I have gained weight since I started taking Livtor 500 Tablet. Is it because of Livtor 500 Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livtor 500 Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26464, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'How long does Livtor 500 Tablet take to show its effect?', 'Livtor 500 Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livtor 500 Tablet starts working completely.'),
(26465, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'For how long do I need to take Livtor 500 Tablet?', 'You should continue to take Livtor 500 Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26466, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'Will I get addicted to Livtor 500 Tablet if I use it for a long time?', 'No, Livtor 500 Tablet is not habit-forming. No physical or psychological dependence has been reported with Livtor 500 Tablet. Consult your doctor if you experience any side effects.'),
(26467, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'What symptoms can occur if someone takes an excess of Livtor 500 Tablet?', 'Taking an excess of Livtor 500 Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26468, 'Livtor 500 Tablet', 'Holy Evolution Pharma', 'Livtor 500 Tablet', 'How do I come off Livtor 500 Tablet?', 'The dose of Livtor 500 Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livtor 500 Tablet straight away, even if you have epilepsy.'),
(26469, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'Can the use of Livtor 750mg Tablet cause sleepiness?', 'Yes, Livtor 750mg Tablet can make you feel sleepy. Therefore, during the initial phase of treatment, avoid driving, operating machinery, working at heights, or participating in potentially dangerous activities until you know how this medicine affects you.'),
(26470, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'Will the use of Livtor 750mg Tablet affect my fertility?', 'Livtor 750mg Tablet is not known to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues during the treatment with this medicine.'),
(26471, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'I have gained weight since I started taking Livtor 750mg Tablet. Is it because of Livtor 750mg Tablet? What should I do?', 'Weight gain is an uncommon side effect of Livtor 750mg Tablet. However, the response may vary from person to person. To prevent weight gain you should take a healthy balanced diet, avoid snacking, cut down on high-calorie food items, include more vegetables and fruits in your diet, and exercise regularly. If you still have issues with your weight, consult your doctor.'),
(26472, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'How long does Livtor 750mg Tablet take to show its effect?', 'Livtor 750mg Tablet may take a few weeks to start working properly since the dose is increased slowly. Your seizures may continue until Livtor 750mg Tablet starts working completely.'),
(26473, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'For how long do I need to take Livtor 750mg Tablet?', 'You should continue to take Livtor 750mg Tablet for as long as your doctor advises you to. Do not stop taking it suddenly because this may increase the frequency of seizures which may be difficult to control.'),
(26474, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'Will I get addicted to Livtor 750mg Tablet if I use it for a long time?', 'No, Livtor 750mg Tablet is not habit-forming. No physical or psychological dependence has been reported with Livtor 750mg Tablet. Consult your doctor if you experience any side effects.'),
(26475, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'What symptoms can occur if someone takes an excess of Livtor 750mg Tablet?', 'Taking an excess of Livtor 750mg Tablet may cause sleepiness, agitation, aggression, a decrease of alertness, inhibition of breathing, and even a state of coma. In case of an overdose, immediate medical care should be provided to the patient in a nearby hospital.'),
(26476, 'Livtor 750mg Tablet', 'Cron Lifecare Pvt. Ltd.', 'Livtor 750mg Tablet', 'How do I come off Livtor 750mg Tablet?', 'The dose of Livtor 750mg Tablet should be slowly reduced. You may have to take this medicine for a few months before you can stop it completely. Do not reduce the dose without asking your doctor. Inform your doctor if you get a serious side effect, such as a severe skin reaction. Your doctor may tell you to stop taking Livtor 750mg Tablet straight away, even if you have epilepsy.'),
(26477, 'Livtril 0.5mg Tablet MD', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril 0.5mg Tablet MD', 'Is Livtril 0.5mg Tablet MD a sleeping pill?', 'Livtril 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(26478, 'Livtril 0.5mg Tablet MD', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril 0.5mg Tablet MD', 'Does Livtril 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Livtril 0.5mg Tablet MD?', 'Yes, Livtril 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Livtril 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(26479, 'Livtril 0.5mg Tablet MD', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril 0.5mg Tablet MD', 'For how long should I take Livtril 0.5mg Tablet MD?', 'The duration of treatment with Livtril 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(26480, 'Livtril 0.5mg Tablet MD', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril 0.5mg Tablet MD', 'Is it safe to take Livtril 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Livtril 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Livtril 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(26481, 'Livtril 0.5mg Tablet MD', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril 0.5mg Tablet MD', 'Is Livtril 0.5mg Tablet MD addictive?', 'People taking Livtril 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Livtril 0.5mg Tablet MD. Therefore, Livtril 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(26482, 'Livtril 0.5mg Tablet MD', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril 0.5mg Tablet MD', 'Can I stop taking Livtril 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Livtril 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(26483, 'Livtril 0.5mg Tablet MD', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril 0.5mg Tablet MD', 'Are there any foods we need to avoid while taking Livtril 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Livtril 0.5mg Tablet MD. This is because caffeine stimulates your brain and Livtril 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Livtril 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Livtril 0.5mg Tablet MD.'),
(26484, 'Livtril-MD 0.25 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 0.25 Tablet', 'Is Livtril-MD 0.25 Tablet a sleeping pill?', 'Livtril-MD 0.25 Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(26485, 'Livtril-MD 0.25 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 0.25 Tablet', 'Does Livtril-MD 0.25 Tablet cause sleepiness? If yes, then should I stop driving while taking Livtril-MD 0.25 Tablet?', 'Yes, Livtril-MD 0.25 Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Livtril-MD 0.25 Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(26486, 'Livtril-MD 0.25 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 0.25 Tablet', 'For how long should I take Livtril-MD 0.25 Tablet?', 'The duration of treatment with Livtril-MD 0.25 Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(26487, 'Livtril-MD 0.25 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 0.25 Tablet', 'Is it safe to take Livtril-MD 0.25 Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Livtril-MD 0.25 Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Livtril-MD 0.25 Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(26488, 'Livtril-MD 0.25 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 0.25 Tablet', 'Is Livtril-MD 0.25 Tablet addictive?', 'People taking Livtril-MD 0.25 Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Livtril-MD 0.25 Tablet. Therefore, Livtril-MD 0.25 Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(26489, 'Livtril-MD 0.25 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 0.25 Tablet', 'Can I stop taking Livtril-MD 0.25 Tablet if I start feeling better?', 'No, do not stop taking Livtril-MD 0.25 Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(26490, 'Livtril-MD 0.25 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 0.25 Tablet', 'Are there any foods we need to avoid while taking Livtril-MD 0.25 Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Livtril-MD 0.25 Tablet. This is because caffeine stimulates your brain and Livtril-MD 0.25 Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Livtril-MD 0.25 Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Livtril-MD 0.25 Tablet.'),
(26491, 'Livtril-MD 2 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 2 Tablet', 'Is Livtril-MD 2 Tablet a sleeping pill?', 'Livtril-MD 2 Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(26492, 'Livtril-MD 2 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 2 Tablet', 'Does Livtril-MD 2 Tablet cause sleepiness? If yes, then should I stop driving while taking Livtril-MD 2 Tablet?', 'Yes, Livtril-MD 2 Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Livtril-MD 2 Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(26493, 'Livtril-MD 2 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 2 Tablet', 'For how long should I take Livtril-MD 2 Tablet?', 'The duration of treatment with Livtril-MD 2 Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(26494, 'Livtril-MD 2 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 2 Tablet', 'Is it safe to take Livtril-MD 2 Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Livtril-MD 2 Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Livtril-MD 2 Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(26495, 'Livtril-MD 2 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 2 Tablet', 'Is Livtril-MD 2 Tablet addictive?', 'People taking Livtril-MD 2 Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Livtril-MD 2 Tablet. Therefore, Livtril-MD 2 Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(26496, 'Livtril-MD 2 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 2 Tablet', 'Can I stop taking Livtril-MD 2 Tablet if I start feeling better?', 'No, do not stop taking Livtril-MD 2 Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(26497, 'Livtril-MD 2 Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-MD 2 Tablet', 'Are there any foods we need to avoid while taking Livtril-MD 2 Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Livtril-MD 2 Tablet. This is because caffeine stimulates your brain and Livtril-MD 2 Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Livtril-MD 2 Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Livtril-MD 2 Tablet.'),
(26498, 'Livtril-Pro Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-Pro Tablet', 'Q. Can I stop taking Livtril-Pro Tablet if I feel well?', 'No, you should continue to take Livtril-Pro Tablet even if you feel well. If you stop Livtril-Pro Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Livtril-Pro Tablet. No, you should continue to take Livtril-Pro Tablet even if you feel well. If you stop Livtril-Pro Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Livtril-Pro Tablet.'),
(26499, 'Livtril-Pro Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-Pro Tablet', 'Q. What are the instructions for the storage and disposal of Livtril-Pro Tablet?', 'Keep this medicine in the packet or container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26500, 'Livtril-Pro Tablet', 'Dorris Pharmaceutical Pvt Ltd', 'Livtril-Pro Tablet', 'Q. Can I feel dizzy after taking Livtril-Pro Tablet?', 'Yes, the use of Livtril-Pro Tablet can make you feel dizzy. This may occur when you suddenly get up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(26501, 'Livtrin 2.5mg Syrup', 'Zee Laboratories', 'Livtrin 2.5mg Syrup', 'Q. My child is restless and unable to sleep properly at night. Can I give Livtrin 2.5mg Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(26502, 'Livtrin 2.5mg Syrup', 'Zee Laboratories', 'Livtrin 2.5mg Syrup', 'Q. Can other medicines be given at the same time as Livtrin 2.5mg Syrup?', 'Livtrin 2.5mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Livtrin 2.5mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26503, 'Livtrin 2.5mg Syrup', 'Zee Laboratories', 'Livtrin 2.5mg Syrup', 'Q. How much Livtrin 2.5mg Syrup should I give to my child?', 'Livtrin 2.5mg Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(26504, 'Livtrin 2.5mg Syrup', 'Zee Laboratories', 'Livtrin 2.5mg Syrup', 'Q. What if I give too much of Livtrin 2.5mg Syrup by mistake?', 'Although Livtrin 2.5mg Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(26505, 'Livtrin 2.5mg Syrup', 'Zee Laboratories', 'Livtrin 2.5mg Syrup', 'Q. How should Livtrin 2.5mg Syrup be stored?', 'Store Livtrin 2.5mg Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26506, 'Livtrin 2.5mg Syrup', 'Zee Laboratories', 'Livtrin 2.5mg Syrup', 'Q. When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(26507, 'Livtrin-SG Softgels', 'Bioceutics Inc', 'Livtrin-SG Softgels', 'Is Livtrin-SG Softgels a steroid? What is it used for?', 'No, Livtrin-SG Softgels is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26508, 'Livtrin-SG Softgels', 'Bioceutics Inc', 'Livtrin-SG Softgels', 'Does Livtrin-SG Softgels make you tired and drowsy?', 'Yes, Livtrin-SG Softgels can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26509, 'Livtrin-SG Softgels', 'Bioceutics Inc', 'Livtrin-SG Softgels', 'How long does it take for Livtrin-SG Softgels to work?', 'Livtrin-SG Softgels starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26510, 'Livtrin-SG Softgels', 'Bioceutics Inc', 'Livtrin-SG Softgels', 'Can I take Livtrin-SG Softgels and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livtrin-SG Softgels during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26511, 'Livtrin-SG Softgels', 'Bioceutics Inc', 'Livtrin-SG Softgels', 'Is it safe to take Livtrin-SG Softgels for a long time?', 'Livtrin-SG Softgels is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livtrin-SG Softgels for only as long as you need it.'),
(26512, 'Livtrin-SG Softgels', 'Bioceutics Inc', 'Livtrin-SG Softgels', 'For how long should I continue Livtrin-SG Softgels?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livtrin-SG Softgels for a longer time. Talk to your doctor if you are unsure about the duration of using Livtrin-SG Softgels'),
(26513, 'Livwyn 300mg Tablet', 'Wynclark Pharmaceuticals Private Limited', 'Livwyn 300mg Tablet', 'When should I take Livwyn 300mg Tablet?', 'The suitable timing of taking this medicine might differ depending upon your condition. Your doctor might instruct you to take 2 to 3 doses per day and suggest to take the last dose at bedtime. Livwyn 300mg Tablet should be taken with water milk and can be taken with food or after food. When prescribed for dissolving gallstones, it is usually suggested to be taken once daily at night. Ideally, it should be taken at a gap of 6 hours, for example at 8 am, 2 pm and 8 pm.'),
(26514, 'Livwyn 300mg Tablet', 'Wynclark Pharmaceuticals Private Limited', 'Livwyn 300mg Tablet', 'Is Livwyn 300mg Tablet safe?', 'Livwyn 300mg Tablet is usually considered to be a safe and effective medicine. However, this medicine may have some common side effects, such as diarrhea. If diarrhea occurs, your doctor may reduce the dose and if it persists, your treatment may be discontinued. Additionally, using this medicine as a long-term therapy may also affect your liver enzyme levels. To keep a check on this, your doctor will keep monitoring your liver enzyme levels regularly. Despite these minor side effects, this medicine is supposed to be a good alternative to surgery in some patients with gallstones.'),
(26515, 'Livwyn 300mg Tablet', 'Wynclark Pharmaceuticals Private Limited', 'Livwyn 300mg Tablet', 'How does Livwyn 300mg Tablet help the liver?', 'Livwyn 300mg Tablet acts on the liver and gets concentrated in the bile secreted from the liver. This, as a result, suppresses the synthesis and secretion of cholesterol by the liver, thereby decreasing the cholesterol levels in bile. This medicine also acts by stopping the intestines from absorbing the bile salts and cholesterol. So, the reduced cholesterol saturation in the bile from the liver leads to the gradual dissolving of cholesterol from gallstones, leading to a decrease in size and their eventual dissolution. It also reduces elevated liver enzyme levels by increasing the bile flow through the liver, hence protecting the liver cells.'),
(26516, 'Livwyn 300mg Tablet', 'Wynclark Pharmaceuticals Private Limited', 'Livwyn 300mg Tablet', 'Does Livwyn 300mg Tablet cause weight gain?', 'Yes, there is a chance of weight gain with Livwyn 300mg Tablet, but it is not common. The use of Livwyn 300mg Tablet can cause weight gain when prescribed in patients with liver disease associated with chronic stasis of bile in small bile ducts of the liver. In such condition, bile cannot flow from the liver to the small intestine. Again, the chance of weight gain varies from person to person depending upon the disease, so consult your doctor if you experience weight gain.'),
(26517, 'Livwyn 300mg Tablet', 'Wynclark Pharmaceuticals Private Limited', 'Livwyn 300mg Tablet', 'What should I avoid while taking Livwyn 300mg Tablet?', 'While taking Livwyn 300mg Tablet, avoid taking an antacid preparation without consulting your doctor, as they decrease the effectiveness of Livwyn 300mg Tablet. You should also avoid medicines like cholestyramine or colestipol as they affect the effectiveness of Livwyn 300mg Tablet. So, ask your doctor about the time gap that should be maintained between Livwyn 300mg Tablet and these medicines. Also, avoid taking oral contraceptives, estrogenic hormones and blood cholesterol-lowering agents such as clofibrate as they may increase the chances of developing gallstones and act opposite to the Livwyn 300mg Tablet.'),
(26518, 'Livy 5mg Tablet', 'Kanad Labs', 'Livy 5mg Tablet', 'Is Livy 5mg Tablet a steroid? What is it used for?', 'No, Livy 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26519, 'Livy 5mg Tablet', 'Kanad Labs', 'Livy 5mg Tablet', 'Does Livy 5mg Tablet make you tired and drowsy?', 'Yes, Livy 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26520, 'Livy 5mg Tablet', 'Kanad Labs', 'Livy 5mg Tablet', 'How long does it take for Livy 5mg Tablet to work?', 'Livy 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26521, 'Livy 5mg Tablet', 'Kanad Labs', 'Livy 5mg Tablet', 'Can I take Livy 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livy 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26522, 'Livy 5mg Tablet', 'Kanad Labs', 'Livy 5mg Tablet', 'Is it safe to take Livy 5mg Tablet for a long time?', 'Livy 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livy 5mg Tablet for only as long as you need it.'),
(26523, 'Livy 5mg Tablet', 'Kanad Labs', 'Livy 5mg Tablet', 'For how long should I continue Livy 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livy 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livy 5mg Tablet'),
(26524, 'Livy M 5 mg/10 mg Tablet', 'Kanad Labs', 'Livy M 5 mg/10 mg Tablet', 'What is Livy M 5 mg/10 mg Tablet?', 'Livy M 5 mg/10 mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26525, 'Livy M 5 mg/10 mg Tablet', 'Kanad Labs', 'Livy M 5 mg/10 mg Tablet', 'Can the use of Livy M 5 mg/10 mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livy M 5 mg/10 mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26526, 'Livy M 5 mg/10 mg Tablet', 'Kanad Labs', 'Livy M 5 mg/10 mg Tablet', 'Can Livy M 5 mg/10 mg Tablet be stopped when allergy symptoms are relieved?', 'No, Livy M 5 mg/10 mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26527, 'Livy M 5 mg/10 mg Tablet', 'Kanad Labs', 'Livy M 5 mg/10 mg Tablet', 'Can the use of Livy M 5 mg/10 mg Tablet cause dry mouth?', 'Yes, the use of Livy M 5 mg/10 mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26528, 'Livy M 5 mg/10 mg Tablet', 'Kanad Labs', 'Livy M 5 mg/10 mg Tablet', 'Can I drink alcohol while taking Livy M 5 mg/10 mg Tablet?', 'No, do not take alcohol while taking Livy M 5 mg/10 mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livy M 5 mg/10 mg Tablet.'),
(26529, 'Livy M 5 mg/10 mg Tablet', 'Kanad Labs', 'Livy M 5 mg/10 mg Tablet', 'Will Livy M 5 mg/10 mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livy M 5 mg/10 mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26530, 'Livy M 5 mg/10 mg Tablet', 'Kanad Labs', 'Livy M 5 mg/10 mg Tablet', 'What are the instructions for storage and disposal of Livy M 5 mg/10 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26531, 'Livy M Syrup', 'Kanad Labs', 'Livy M Syrup', 'What is Livy M Syrup?', 'Livy M Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26532, 'Livy M Syrup', 'Kanad Labs', 'Livy M Syrup', 'Can the use of Livy M Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Livy M Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26533, 'Livy M Syrup', 'Kanad Labs', 'Livy M Syrup', 'Can Livy M Syrup be stopped when allergy symptoms are relieved?', 'No, Livy M Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26534, 'Livy M Syrup', 'Kanad Labs', 'Livy M Syrup', 'Can the use of Livy M Syrup cause dry mouth?', 'Yes, the use of Livy M Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26535, 'Livy M Syrup', 'Kanad Labs', 'Livy M Syrup', 'Can I drink alcohol while taking Livy M Syrup?', 'No, do not take alcohol while taking Livy M Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Livy M Syrup.'),
(26536, 'Livy M Syrup', 'Kanad Labs', 'Livy M Syrup', 'Will Livy M Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Livy M Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26537, 'Livy M Syrup', 'Kanad Labs', 'Livy M Syrup', 'What are the instructions for storage and disposal of Livy M Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26538, 'Livz Tablet', 'Auspharma Private Limited', 'Livz Tablet', 'Is Livz Tablet a steroid? What is it used for?', 'No, Livz Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26539, 'Livz Tablet', 'Auspharma Private Limited', 'Livz Tablet', 'Does Livz Tablet make you tired and drowsy?', 'Yes, Livz Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26540, 'Livz Tablet', 'Auspharma Private Limited', 'Livz Tablet', 'How long does it take for Livz Tablet to work?', 'Livz Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26541, 'Livz Tablet', 'Auspharma Private Limited', 'Livz Tablet', 'Can I take Livz Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livz Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26542, 'Livz Tablet', 'Auspharma Private Limited', 'Livz Tablet', 'Is it safe to take Livz Tablet for a long time?', 'Livz Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livz Tablet for only as long as you need it.'),
(26543, 'Livz Tablet', 'Auspharma Private Limited', 'Livz Tablet', 'For how long should I continue Livz Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livz Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livz Tablet'),
(26544, 'Livzone 1G Injection', 'Livewort Labs Pvt Ltd', 'Livzone 1G Injection', 'Is Livzone 1G Injection safe?', 'Livzone 1G Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26545, 'Livzone 1G Injection', 'Livewort Labs Pvt Ltd', 'Livzone 1G Injection', 'How long does Livzone 1G Injection take to work?', 'Usually, Livzone 1G Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(26546, 'Livzone 1G Injection', 'Livewort Labs Pvt Ltd', 'Livzone 1G Injection', 'Who should not take Livzone 1G Injection?', 'Livzone 1G Injection should not be prescribed to people who are allergic to Livzone 1G Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Livzone 1G Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(26547, 'Livzone 1G Injection', 'Livewort Labs Pvt Ltd', 'Livzone 1G Injection', 'What if I do not get better after using Livzone 1G Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(26548, 'Livzone 1G Injection', 'Livewort Labs Pvt Ltd', 'Livzone 1G Injection', 'For how long does Livzone 1G Injection stay in the body?', 'Usually, Livzone 1G Injection stays in the body for around 2 days after completely stopping the medicine.'),
(26549, 'Livzone 1G Injection', 'Livewort Labs Pvt Ltd', 'Livzone 1G Injection', 'Is Livzone 1G Injection effective?', 'Livzone 1G Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livzone 1G Injection too early, the symptoms may return or worsen.'),
(26550, 'Livzone 1G Injection', 'Livewort Labs Pvt Ltd', 'Livzone 1G Injection', 'How is Livzone 1G Injection administered?', 'Livzone 1G Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Livzone 1G Injection.'),
(26551, 'Livzone 250mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 250mg Injection', 'Is Livzone 250mg Injection safe?', 'Livzone 250mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26552, 'Livzone 250mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 250mg Injection', 'How long does Livzone 250mg Injection take to work?', 'Usually, Livzone 250mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26553, 'Livzone 250mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 250mg Injection', 'Who should not take Livzone 250mg Injection?', 'Livzone 250mg Injection should not be prescribed to people who are allergic to Livzone 250mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Livzone 250mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(26554, 'Livzone 250mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 250mg Injection', 'What if I do not get better after using Livzone 250mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(26555, 'Livzone 250mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 250mg Injection', 'For how long does Livzone 250mg Injection stay in the body?', 'Usually, Livzone 250mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(26556, 'Livzone 250mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 250mg Injection', 'Is Livzone 250mg Injection effective?', 'Livzone 250mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livzone 250mg Injection too early, the symptoms may return or worsen.'),
(26557, 'Livzone 250mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 250mg Injection', 'How is Livzone 250mg Injection administered?', 'Livzone 250mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Livzone 250mg Injection.'),
(26558, 'Livzone 500mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 500mg Injection', 'Is Livzone 500mg Injection safe?', 'Livzone 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26559, 'Livzone 500mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 500mg Injection', 'How long does Livzone 500mg Injection take to work?', 'Usually, Livzone 500mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(26560, 'Livzone 500mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 500mg Injection', 'Who should not take Livzone 500mg Injection?', 'Livzone 500mg Injection should not be prescribed to people who are allergic to Livzone 500mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Livzone 500mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(26561, 'Livzone 500mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 500mg Injection', 'What if I do not get better after using Livzone 500mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(26562, 'Livzone 500mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 500mg Injection', 'For how long does Livzone 500mg Injection stay in the body?', 'Usually, Livzone 500mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(26563, 'Livzone 500mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 500mg Injection', 'Is Livzone 500mg Injection effective?', 'Livzone 500mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Livzone 500mg Injection too early, the symptoms may return or worsen.'),
(26564, 'Livzone 500mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone 500mg Injection', 'How is Livzone 500mg Injection administered?', 'Livzone 500mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Livzone 500mg Injection.'),
(26565, 'Livzone 5mg Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livzone 5mg Tablet', 'Q. Is Livzone 5mg Tablet a steroid? What is it used for?', 'No, Livzone 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26566, 'Livzone 5mg Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livzone 5mg Tablet', 'Q. Does Livzone 5mg Tablet make you tired and drowsy?', 'Yes, Livzone 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26567, 'Livzone 5mg Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livzone 5mg Tablet', 'Q. How long does it take for Livzone 5mg Tablet to work?', 'Livzone 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26568, 'Livzone 5mg Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livzone 5mg Tablet', 'Q. Can I take Livzone 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Livzone 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26569, 'Livzone 5mg Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livzone 5mg Tablet', 'Q. Is it safe to take Livzone 5mg Tablet for a long time?', 'Livzone 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Livzone 5mg Tablet for only as long as you need it.'),
(26570, 'Livzone 5mg Tablet', 'Zeelab Pharmacy Pvt Ltd', 'Livzone 5mg Tablet', 'Q. For how long should I continue Livzone 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Livzone 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Livzone 5mg Tablet'),
(26571, 'Livzone S 250mg/125mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone S 250mg/125mg Injection', 'Can the use of Livzone S 250mg/125mg Injection cause allergic reaction?', 'Yes, Livzone S 250mg/125mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(26572, 'Livzone S 250mg/125mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone S 250mg/125mg Injection', 'Can the use of Livzone S 250mg/125mg Injection cause diarrhea?', 'Yes, the use of Livzone S 250mg/125mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26573, 'Livzone S 250mg/125mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone S 250mg/125mg Injection', 'How long does Livzone S 250mg/125mg Injection takes to work?', 'Usually, Livzone S 250mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(26574, 'Livzone S 250mg/125mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone S 250mg/125mg Injection', 'What if I don\'t get better after using Livzone S 250mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26575, 'Livzone S 250mg/125mg Injection', 'Livewort Labs Pvt Ltd', 'Livzone S 250mg/125mg Injection', 'Can I stop taking Livzone S 250mg/125mg Injection when I feel better?', 'No, do not stop taking Livzone S 250mg/125mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(26576, 'Livzone-S Injection', 'Livewort Labs Pvt Ltd', 'Livzone-S Injection', 'Can the use of Livzone-S Injection cause allergic reaction?', 'Yes, Livzone-S Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(26577, 'Livzone-S Injection', 'Livewort Labs Pvt Ltd', 'Livzone-S Injection', 'Can the use of Livzone-S Injection cause diarrhea?', 'Yes, the use of Livzone-S Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26578, 'Livzone-S Injection', 'Livewort Labs Pvt Ltd', 'Livzone-S Injection', 'How long does Livzone-S Injection takes to work?', 'Usually, Livzone-S Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(26579, 'Livzone-S Injection', 'Livewort Labs Pvt Ltd', 'Livzone-S Injection', 'What if I don\'t get better after using Livzone-S Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26580, 'Livzone-S Injection', 'Livewort Labs Pvt Ltd', 'Livzone-S Injection', 'Can I stop taking Livzone-S Injection when I feel better?', 'No, do not stop taking Livzone-S Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(26581, 'Liwinex 5 Tablet', 'Bionexa Organic', 'Liwinex 5 Tablet', 'Is Liwinex 5 Tablet a steroid? What is it used for?', 'No, Liwinex 5 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26582, 'Liwinex 5 Tablet', 'Bionexa Organic', 'Liwinex 5 Tablet', 'Does Liwinex 5 Tablet make you tired and drowsy?', 'Yes, Liwinex 5 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26583, 'Liwinex 5 Tablet', 'Bionexa Organic', 'Liwinex 5 Tablet', 'How long does it take for Liwinex 5 Tablet to work?', 'Liwinex 5 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26584, 'Liwinex 5 Tablet', 'Bionexa Organic', 'Liwinex 5 Tablet', 'Can I take Liwinex 5 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liwinex 5 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26585, 'Liwinex 5 Tablet', 'Bionexa Organic', 'Liwinex 5 Tablet', 'Is it safe to take Liwinex 5 Tablet for a long time?', 'Liwinex 5 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liwinex 5 Tablet for only as long as you need it.'),
(26586, 'Liwinex 5 Tablet', 'Bionexa Organic', 'Liwinex 5 Tablet', 'For how long should I continue Liwinex 5 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liwinex 5 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liwinex 5 Tablet'),
(26587, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(26588, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Liwinex M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(26589, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'How should Liwinex M Kid 2.5mg/4mg Tablet be stored?', 'Liwinex M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26590, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'Can Liwinex M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Liwinex M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(26591, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Liwinex M Kid 2.5mg/4mg Tablet?', 'No, don’t start Liwinex M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Liwinex M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(26592, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Liwinex M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(26593, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Liwinex M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Liwinex M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(26594, 'Liwinex M Kid 2.5mg/4mg Tablet', 'Bionexa Organic', 'Liwinex M Kid 2.5mg/4mg Tablet', 'Can I use Liwinex M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Liwinex M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(26595, 'Liwinex-M Tablet', 'Bionexa Organic', 'Liwinex-M Tablet', 'What is Liwinex-M Tablet?', 'Liwinex-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26596, 'Liwinex-M Tablet', 'Bionexa Organic', 'Liwinex-M Tablet', 'Can the use of Liwinex-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liwinex-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26597, 'Liwinex-M Tablet', 'Bionexa Organic', 'Liwinex-M Tablet', 'Can Liwinex-M Tablet be stopped when allergy symptoms are relieved?', 'No, Liwinex-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26598, 'Liwinex-M Tablet', 'Bionexa Organic', 'Liwinex-M Tablet', 'Can the use of Liwinex-M Tablet cause dry mouth?', 'Yes, the use of Liwinex-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26599, 'Liwinex-M Tablet', 'Bionexa Organic', 'Liwinex-M Tablet', 'Can I drink alcohol while taking Liwinex-M Tablet?', 'No, do not take alcohol while taking Liwinex-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liwinex-M Tablet.'),
(26600, 'Liwinex-M Tablet', 'Bionexa Organic', 'Liwinex-M Tablet', 'Will Liwinex-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liwinex-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26601, 'Liwinex-M Tablet', 'Bionexa Organic', 'Liwinex-M Tablet', 'What are the instructions for storage and disposal of Liwinex-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26602, 'Liwo 250mg Tablet', 'Alobiote Healthcare', 'Liwo 250mg Tablet', 'Is Liwo 250mg Tablet safe?', 'Liwo 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26603, 'Liwo 250mg Tablet', 'Alobiote Healthcare', 'Liwo 250mg Tablet', 'What if I forget to take a dose of Liwo 250mg Tablet?', 'If you forget a dose of Liwo 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26604, 'Liwo 250mg Tablet', 'Alobiote Healthcare', 'Liwo 250mg Tablet', 'Can the use of Liwo 250mg Tablet cause diarrhea?', 'Yes, the use of Liwo 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26605, 'Liwo 250mg Tablet', 'Alobiote Healthcare', 'Liwo 250mg Tablet', 'Can I stop taking Liwo 250mg Tablet when I feel better?', 'No, do not stop taking Liwo 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liwo 250mg Tablet too early, the symptoms may return or worsen. Continue taking Liwo 250mg Tablet in the dose and duration advised by the doctor.'),
(26606, 'Liwo 250mg Tablet', 'Alobiote Healthcare', 'Liwo 250mg Tablet', 'Can the use of Liwo 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liwo 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liwo 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26607, 'Liwo 500mg Tablet', 'Alobiote Healthcare', 'Liwo 500mg Tablet', 'Is Liwo 500mg Tablet safe?', 'Liwo 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26608, 'Liwo 500mg Tablet', 'Alobiote Healthcare', 'Liwo 500mg Tablet', 'What if I forget to take a dose of Liwo 500mg Tablet?', 'If you forget a dose of Liwo 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26609, 'Liwo 500mg Tablet', 'Alobiote Healthcare', 'Liwo 500mg Tablet', 'Can the use of Liwo 500mg Tablet cause diarrhea?', 'Yes, the use of Liwo 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26610, 'Liwo 500mg Tablet', 'Alobiote Healthcare', 'Liwo 500mg Tablet', 'Can I stop taking Liwo 500mg Tablet when I feel better?', 'No, do not stop taking Liwo 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liwo 500mg Tablet too early, the symptoms may return or worsen. Continue taking Liwo 500mg Tablet in the dose and duration advised by the doctor.'),
(26611, 'Liwo 500mg Tablet', 'Alobiote Healthcare', 'Liwo 500mg Tablet', 'Can the use of Liwo 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liwo 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liwo 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26612, 'Liwo 750mg Tablet', 'Alobiote Healthcare', 'Liwo 750mg Tablet', 'Is Liwo 750mg Tablet safe?', 'Liwo 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26613, 'Liwo 750mg Tablet', 'Alobiote Healthcare', 'Liwo 750mg Tablet', 'What if I forget to take a dose of Liwo 750mg Tablet?', 'If you forget a dose of Liwo 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26614, 'Liwo 750mg Tablet', 'Alobiote Healthcare', 'Liwo 750mg Tablet', 'Can the use of Liwo 750mg Tablet cause diarrhea?', 'Yes, the use of Liwo 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26615, 'Liwo 750mg Tablet', 'Alobiote Healthcare', 'Liwo 750mg Tablet', 'Can I stop taking Liwo 750mg Tablet when I feel better?', 'No, do not stop taking Liwo 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liwo 750mg Tablet too early, the symptoms may return or worsen. Continue taking Liwo 750mg Tablet in the dose and duration advised by the doctor.'),
(26616, 'Liwo 750mg Tablet', 'Alobiote Healthcare', 'Liwo 750mg Tablet', 'Can the use of Liwo 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liwo 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liwo 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26617, 'Liwofloxa 500mg Tablet', 'Pranshu Healthcare', 'Liwofloxa 500mg Tablet', 'Is Liwofloxa 500mg Tablet safe?', 'Liwofloxa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26618, 'Liwofloxa 500mg Tablet', 'Pranshu Healthcare', 'Liwofloxa 500mg Tablet', 'What if I forget to take a dose of Liwofloxa 500mg Tablet?', 'If you forget a dose of Liwofloxa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26619, 'Liwofloxa 500mg Tablet', 'Pranshu Healthcare', 'Liwofloxa 500mg Tablet', 'Can the use of Liwofloxa 500mg Tablet cause diarrhea?', 'Yes, the use of Liwofloxa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26620, 'Liwofloxa 500mg Tablet', 'Pranshu Healthcare', 'Liwofloxa 500mg Tablet', 'Can I stop taking Liwofloxa 500mg Tablet when I feel better?', 'No, do not stop taking Liwofloxa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liwofloxa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Liwofloxa 500mg Tablet in the dose and duration advised by the doctor.'),
(26621, 'Liwofloxa 500mg Tablet', 'Pranshu Healthcare', 'Liwofloxa 500mg Tablet', 'Can the use of Liwofloxa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liwofloxa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liwofloxa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26622, 'Liwoxa 500mg Tablet', 'Edmund Healthcare', 'Liwoxa 500mg Tablet', 'Is Liwoxa 500mg Tablet safe?', 'Liwoxa 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26623, 'Liwoxa 500mg Tablet', 'Edmund Healthcare', 'Liwoxa 500mg Tablet', 'What if I forget to take a dose of Liwoxa 500mg Tablet?', 'If you forget a dose of Liwoxa 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26624, 'Liwoxa 500mg Tablet', 'Edmund Healthcare', 'Liwoxa 500mg Tablet', 'Can the use of Liwoxa 500mg Tablet cause diarrhea?', 'Yes, the use of Liwoxa 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26625, 'Liwoxa 500mg Tablet', 'Edmund Healthcare', 'Liwoxa 500mg Tablet', 'Can I stop taking Liwoxa 500mg Tablet when I feel better?', 'No, do not stop taking Liwoxa 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Liwoxa 500mg Tablet too early, the symptoms may return or worsen. Continue taking Liwoxa 500mg Tablet in the dose and duration advised by the doctor.'),
(26626, 'Liwoxa 500mg Tablet', 'Edmund Healthcare', 'Liwoxa 500mg Tablet', 'Can the use of Liwoxa 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Liwoxa 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Liwoxa 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26627, 'Lixdot M 80mg/250mg Tablet', 'Mezorays Pharma', 'Lixdot M 80mg/250mg Tablet', 'What is Lixdot M 80mg/250mg Tablet?', 'Lixdot M 80mg/250mg Tablet is a combination of two medicines: Drotaverine and Mefenamic acid. This medication helps to relieve abdominal pain. Drotaverine relieves muscle spasms associated with smooth muscles in the abdomen. Mefenamic Acid works by blocking the release of certain chemical messengers that cause pain and inflammation (swelling).'),
(26628, 'Lixdot M 80mg/250mg Tablet', 'Mezorays Pharma', 'Lixdot M 80mg/250mg Tablet', 'Is it safe to use Lixdot M 80mg/250mg Tablet?', 'Yes, Lixdot M 80mg/250mg Tablet is safe for most of the patients with abdominal pain. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, diarrhoea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(26629, 'Lixdot M 80mg/250mg Tablet', 'Mezorays Pharma', 'Lixdot M 80mg/250mg Tablet', 'Can I stop taking Lixdot M 80mg/250mg Tablet when my pain is relieved?', 'Lixdot M 80mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lixdot M 80mg/250mg Tablet should be continued if your physician has advised you to do so.'),
(26630, 'Lixdot M 80mg/250mg Tablet', 'Mezorays Pharma', 'Lixdot M 80mg/250mg Tablet', 'Can the use of Lixdot M 80mg/250mg Tablet cause nausea and vomiting?', 'Yes, the use of Lixdot M 80mg/250mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Also, avoid taking fatty or fried foods along with the medicine. Talk to your doctor if you have vomiting persists and you notice any signs of dehydration like less urination with dark coloured and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(26631, 'Lixdot M 80mg/250mg Tablet', 'Mezorays Pharma', 'Lixdot M 80mg/250mg Tablet', 'Can the use of Lixdot M 80mg/250mg Tablet cause dry mouth?', 'Yes, the use of Lixdot M 80mg/250mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Avoid spicy, salty and acidic foods (like lemons).'),
(26632, 'Lixdot M 80mg/250mg Tablet', 'Mezorays Pharma', 'Lixdot M 80mg/250mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, do not take a higher than the recommended dose of Lixdot M 80mg/250mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(26633, 'Lixdot M 80mg/250mg Tablet', 'Mezorays Pharma', 'Lixdot M 80mg/250mg Tablet', 'What are the recommended storage conditions for Lixdot M 80mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26634, 'Lixflox 200 Tablet', 'Bioclix Remedies', 'Lixflox 200 Tablet', 'Can the use of Lixflox 200 Tablet cause diarrhea?', 'Yes, the use of Lixflox 200 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26635, 'Lixflox 200 Tablet', 'Bioclix Remedies', 'Lixflox 200 Tablet', 'Can I stop taking Lixflox 200 Tablet when I feel better?', 'No, do not stop taking Lixflox 200 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(26636, 'Lixflox 200 Tablet', 'Bioclix Remedies', 'Lixflox 200 Tablet', 'Can the use of Lixflox 200 Tablet increase the risk of muscle damage?', 'Yes, use of Lixflox 200 Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lixflox 200 Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26637, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'What should I tell the doctor before giving Lixflox MS Syrup to my child?', 'You must tell the doctor if your child is suffering from heart disease, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, rheumatoid arthritis, or genetic disorders involving blood vessels. This is because there is a possibility that Lixflox MS Syrup may aggravate these conditions and result in complications.'),
(26638, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'Can Lixflox MS Syrup be given along with cough and cold medicines?', 'No, do not give Lixflox MS Syrup with cough and cold medicines. The reason being, one of the ingredients present in Lixflox MS Syrup can interact with alcohol-containing medicines like cough syrups and can lead to disulfiram reaction, causing nausea, vomiting, flushing, dizziness, etc.'),
(26639, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'What if I give an overdose of Lixflox MS Syrup by mistake?', 'An extra dose of Lixflox MS Syrup is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heartbeat. Rush to your child’s doctor if you notice any of these symptoms.'),
(26640, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'What should I do if my child shows no improvement even after taking Lixflox MS Syrup for the prescribed duration?', 'It could mean that Lixflox MS Syrup is unable to kill the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that has a higher efficacy against the disease-causing bacteria. Remember, that sometimes, such antibiotics may have to be given by IV route (intravenous injection) in the hospital.'),
(26641, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'Can other medicines be given at the same time as Lixflox MS Syrup?', 'Lixflox MS Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lixflox MS Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26642, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'How should Lixflox MS Syrup be stored?', 'Store Lixflox MS Syrup at room temperature, in a dry place, away from direct heat and light. Children may accidentally consume medicines if they find them while playing around. So, make sure that all the medicines are kept away from their reach and sight.'),
(26643, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'Can I get my child vaccinated while on treatment with Lixflox MS Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(26644, 'Lixflox MS Syrup', 'Mezorays Pharma', 'Lixflox MS Syrup', 'My child has been passing red-brown urine ever since he started taking Lixflox MS Syrup? Is it normal?', 'Lixflox MS Syrup contains active ingredient metronidazole, which causes red-brown urine. It is not pathogenic but a side effect. It subsides once the medicine is stopped after the completion of the treatment.'),
(26645, 'Lixid 600mg Tablet', 'Daiwa Pharmaceuticals Pvt Ltd', 'Lixid 600mg Tablet', 'Can the use of Lixid 600mg Tablet cause diarrhea?', 'Yes, the use of Lixid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26646, 'Lixid 600mg Tablet', 'Daiwa Pharmaceuticals Pvt Ltd', 'Lixid 600mg Tablet', 'What foods should I avoid while taking Lixid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lixid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(26647, 'Lixifine 1% Cream', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Cream', 'Q. What is Lixifine 1% Cream?', 'Lixifine 1% Cream is a medication used to treat superficial fungal infections such as athlete’s foot, ringworm, and jock itch. It also helps to treat fungal skin infections like pityriasis (tinea versicolor), which causes white or dark pigmentation on the face, neck, chest, arms, or legs. It acts by killing the causative fungus, thereby treating the infection.'),
(26648, 'Lixifine 1% Cream', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Cream', 'Q. How long does it take for Lixifine 1% Cream to work on the skin?', 'Lixifine 1% Cream is an antifungal medicine that acts on the skin and cures fungal skin infections. The usual dosage of Lixifine 1% Cream is once or twice daily. The duration of the treatment varies from 1 to 2 weeks depending upon the type of fungal skin infection. The doctor may even extend the duration of the therapy depending upon the person’s response to the medication. You will see noticeable results within a few days, but you still need to continue the medication for the prescribed duration to cure the fungal infection completely. Do not stop using it without completing the course.'),
(26649, 'Lixifine 1% Cream', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Cream', 'Q. How do we apply Lixifine 1% Cream on the skin?', 'Clean and dry the affected skin properly. Then, apply a thin layer of Lixifine 1% Cream on and around the affected skin gently. Do not cover the area after applying the cream unless specified by the doctor. However, if the infection is present under the breasts, between the fingers, buttocks, or in the groin, then the cream should be applied properly and the skin may be covered with a sterile dressing. Avoid getting the medicine into the eyes, nose, or mouth. Inform your doctor in case of any signs of increased irritation, redness, itching, burning, blistering, swelling, or oozing.'),
(26650, 'Lixifine 1% Cream', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Cream', 'Q. How long can I use Lixifine 1% Cream?', 'Lixifine 1% Cream usually takes a few days to relieve the symptoms. But, since fungal infections affect multiple layers of the skin, you may need to continue the medication for the prescribed duration to get cured completely. For various fungal infections, the duration of treatment varies from 1 to 2 weeks and can be extended up to 4 weeks. Irregular use or stopping the treatment before the prescribed time increases the risk of relapse of the infection. In case you do not notice any improvement in your symptoms within the prescribed duration, kindly consult your doctor immediately.'),
(26651, 'Lixifine 1% Cream', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Cream', 'Q. Is Lixifine 1% Cream safe in children?', 'Lixifine 1% Cream has been approved for use only in people above 12 years of age. The safety of the medication has not been approved in children. Refrain from using it in children less than 12 years of age unless prescribed by the doctor.'),
(26652, 'Lixifine 1% Cream', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Cream', 'Q. I feel better now. Can I stop using Lixifine 1% Cream?', 'No, do not stop taking Lixifine 1% Cream without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26653, 'Lixifine 1% Dusting Powder', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Dusting Powder', 'What is Lixifine 1% Dusting Powder?', 'Lixifine 1% Dusting Powder is a medication used to treat superficial fungal infections such as athlete’s foot, ringworm, and jock itch. It also helps to treat fungal skin infections like pityriasis (tinea versicolor), which causes white or dark pigmentation on the face, neck, chest, arms, or legs. It acts by killing the causative fungus, thereby treating the infection.'),
(26654, 'Lixifine 1% Dusting Powder', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Dusting Powder', 'How long does it take for Lixifine 1% Dusting Powder to work on the skin?', 'Lixifine 1% Dusting Powder is an antifungal medicine that acts on the skin and cures fungal skin infections. The usual dosage of Lixifine 1% Dusting Powder is once or twice daily. The duration of the treatment varies from 1 to 2 weeks depending upon the type of fungal skin infection. The doctor may even extend the duration of the therapy depending upon the person’s response to the medication. You will see noticeable results within a few days, but you still need to continue the medication for the prescribed duration to cure the fungal infection completely. Do not stop using it without completing the course.'),
(26655, 'Lixifine 1% Dusting Powder', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Dusting Powder', 'How do we apply Lixifine 1% Dusting Powder on the skin?', 'Clean and dry the affected skin properly. Then, apply a thin layer of Lixifine 1% Dusting Powder on and around the affected skin gently. Do not cover the area after applying the cream unless specified by the doctor. However, if the infection is present under the breasts, between the fingers, buttocks, or in the groin, then the cream should be applied properly and the skin may be covered with a sterile dressing. Avoid getting the medicine into the eyes, nose, or mouth. Inform your doctor in case of any signs of increased irritation, redness, itching, burning, blistering, swelling, or oozing.'),
(26656, 'Lixifine 1% Dusting Powder', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Dusting Powder', 'How long can I use Lixifine 1% Dusting Powder?', 'Lixifine 1% Dusting Powder usually takes a few days to relieve the symptoms. But, since fungal infections affect multiple layers of the skin, you may need to continue the medication for the prescribed duration to get cured completely. For various fungal infections, the duration of treatment varies from 1 to 2 weeks and can be extended up to 4 weeks. Irregular use or stopping the treatment before the prescribed time increases the risk of relapse of the infection. In case you do not notice any improvement in your symptoms within the prescribed duration, kindly consult your doctor immediately.'),
(26657, 'Lixifine 1% Dusting Powder', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Dusting Powder', 'Is Lixifine 1% Dusting Powder safe in children?', 'Lixifine 1% Dusting Powder has been approved for use only in people above 12 years of age. The safety of the medication has not been approved in children. Refrain from using it in children less than 12 years of age unless prescribed by the doctor.'),
(26658, 'Lixifine 1% Dusting Powder', 'Human Biolife India Pvt Ltd', 'Lixifine 1% Dusting Powder', 'I feel better now. Can I stop using Lixifine 1% Dusting Powder?', 'No, do not stop taking Lixifine 1% Dusting Powder without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26659, 'Lixifine 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 250mg Tablet (Human Biolife India Pvt Ltd)', 'Q. Can Lixifine 250mg Tablet be safe for use in patients with liver cirrhosis?', 'Oral intake of Lixifine 250mg Tablet is not recommended in patients with chronic or active liver disease. Your doctor may prescribe a liver function test to check whether the liver is functioning effectively or not. This is done because the medicine gets metabolized by liver enzymes and any inefficiency in liver function can lead to increased levels of the medication in the blood, resulting in increased side effects and toxicity. Therefore, it is important to inform your doctor if you have any liver disease or cirrhosis. Also, inform your doctor about the medicines you may be taking as taking Lixifine 250mg Tablet with another medicine can lead to liver toxicity and Lixifine 250mg Tablet by acting on the liver enzymes can change the levels of other drugs. Your doctor may suggest periodic monitoring (after 4-6 weeks of treatment) of liver function test and make dose adjustments accordingly.'),
(26660, 'Lixifine 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 250mg Tablet (Human Biolife India Pvt Ltd)', 'Q. Does Lixifine 250mg Tablet cause any skin reactions?', 'Yes, sensitive individuals may develop skin reactions while using Lixifine 250mg Tablet. There are rare reports of people developing serious skin/hypersensitivity reactions like Stevens-Johnson syndrome, toxic epidermal necrolysis, and other severe skin reactions with Lixifine 250mg Tablet. Therefore, do not take this medication without consulting your physician. And, in case you encounter any type of skin reaction or rashes, stop the medication immediately and report to the doctor.'),
(26661, 'Lixifine 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 250mg Tablet (Human Biolife India Pvt Ltd)', 'Q. Is Lixifine 250mg Tablet effective?', 'Lixifine 250mg Tablet is effective as an anti fungal medicine if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop taking this medicine too early, the fungus may continue to grow and the infection may return or worsen.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26662, 'Lixifine 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 250mg Tablet (Human Biolife India Pvt Ltd)', 'Q. How long do I need to take Lixifine 250mg Tablet?', 'The usual duration of treatment for Tinea pedis (fungal infection in the foot), Tinea corporis (ringworms), and Tinea cruris (fungal infection in the groin) is about 2 to 4 weeks. The duration may sometimes be extended to 6 weeks. For fungal infections of nails, the duration of treatment usually varies from 6 to 12 weeks. For fingernail fungal infections it may take 6 weeks whereas toenail fungal infection may take about 12 weeks. However, the exact duration of the therapy is decided by the doctor depending upon the type of infection, the site of infection, and the patient’s response to the therapy.'),
(26663, 'Lixifine 250mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 250mg Tablet (Human Biolife India Pvt Ltd)', 'Q. Can I drink tea or coffee while taking Lixifine 250mg Tablet?', 'Caffeinated drinks like tea and coffee should be taken with caution while being on treatment with Lixifine 250mg Tablet. Lixifine 250mg Tablet decreases the rate of metabolism of caffeine by 19% which is an important constituent of coffee, thereby increasing the levels of caffeine in the blood. These increased levels of caffeine may lead to side effects such as jitteriness, headache, increased heartbeat, and restlessness.'),
(26664, 'Lixifine 250mg Tablet', 'Ellesmith Skincare', 'Lixifine 250mg Tablet (Ellesmith Skincare)', 'Can Lixifine 250mg Tablet be safe for use in patients with liver cirrhosis?', 'Oral intake of Lixifine 250mg Tablet is not recommended in patients with chronic or active liver disease. Your doctor may prescribe a liver function test to check whether the liver is functioning effectively or not. This is done because the medicine gets metabolized by liver enzymes and any inefficiency in liver function can lead to increased levels of the medication in the blood, resulting in increased side effects and toxicity. Therefore, it is important to inform your doctor if you have any liver disease or cirrhosis. Also, inform your doctor about the medicines you may be taking as taking Lixifine 250mg Tablet with another medicine can lead to liver toxicity and Lixifine 250mg Tablet by acting on the liver enzymes can change the levels of other drugs. Your doctor may suggest periodic monitoring (after 4-6 weeks of treatment) of liver function test and make dose adjustments accordingly.'),
(26665, 'Lixifine 250mg Tablet', 'Ellesmith Skincare', 'Lixifine 250mg Tablet (Ellesmith Skincare)', 'Does Lixifine 250mg Tablet cause any skin reactions?', 'Yes, sensitive individuals may develop skin reactions while using Lixifine 250mg Tablet. There are rare reports of people developing serious skin/hypersensitivity reactions like Stevens-Johnson syndrome, toxic epidermal necrolysis, and other severe skin reactions with Lixifine 250mg Tablet. Therefore, do not take this medication without consulting your physician. And, in case you encounter any type of skin reaction or rashes, stop the medication immediately and report to the doctor.'),
(26666, 'Lixifine 250mg Tablet', 'Ellesmith Skincare', 'Lixifine 250mg Tablet (Ellesmith Skincare)', 'Is Lixifine 250mg Tablet effective?', 'Lixifine 250mg Tablet is effective as an anti fungal medicine if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop taking this medicine too early, the fungus may continue to grow and the infection may return or worsen.'),
(26667, 'Lixifine 250mg Tablet', 'Ellesmith Skincare', 'Lixifine 250mg Tablet (Ellesmith Skincare)', 'How long do I need to take Lixifine 250mg Tablet?', 'The usual duration of treatment for Tinea pedis (fungal infection in the foot), Tinea corporis (ringworms), and Tinea cruris (fungal infection in the groin) is about 2 to 4 weeks. The duration may sometimes be extended to 6 weeks. For fungal infections of nails, the duration of treatment usually varies from 6 to 12 weeks. For fingernail fungal infections it may take 6 weeks whereas toenail fungal infection may take about 12 weeks. However, the exact duration of the therapy is decided by the doctor depending upon the type of infection, the site of infection, and the patient’s response to the therapy.'),
(26668, 'Lixifine 250mg Tablet', 'Ellesmith Skincare', 'Lixifine 250mg Tablet (Ellesmith Skincare)', 'Can I drink tea or coffee while taking Lixifine 250mg Tablet?', 'Caffeinated drinks like tea and coffee should be taken with caution while being on treatment with Lixifine 250mg Tablet. Lixifine 250mg Tablet decreases the rate of metabolism of caffeine by 19% which is an important constituent of coffee, thereby increasing the levels of caffeine in the blood. These increased levels of caffeine may lead to side effects such as jitteriness, headache, increased heartbeat, and restlessness.'),
(26669, 'Lixifine 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 500mg Tablet', 'Can Lixifine 500mg Tablet be safe for use in patients with liver cirrhosis?', 'Oral intake of Lixifine 500mg Tablet is not recommended in patients with chronic or active liver disease. Your doctor may prescribe a liver function test to check whether the liver is functioning effectively or not. This is done because the medicine gets metabolized by liver enzymes and any inefficiency in liver function can lead to increased levels of the medication in the blood, resulting in increased side effects and toxicity. Therefore, it is important to inform your doctor if you have any liver disease or cirrhosis. Also, inform your doctor about the medicines you may be taking as taking Lixifine 500mg Tablet with another medicine can lead to liver toxicity and Lixifine 500mg Tablet by acting on the liver enzymes can change the levels of other drugs. Your doctor may suggest periodic monitoring (after 4-6 weeks of treatment) of liver function test and make dose adjustments accordingly.'),
(26670, 'Lixifine 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 500mg Tablet', 'Does Lixifine 500mg Tablet cause any skin reactions?', 'Yes, sensitive individuals may develop skin reactions while using Lixifine 500mg Tablet. There are rare reports of people developing serious skin/hypersensitivity reactions like Stevens-Johnson syndrome, toxic epidermal necrolysis, and other severe skin reactions with Lixifine 500mg Tablet. Therefore, do not take this medication without consulting your physician. And, in case you encounter any type of skin reaction or rashes, stop the medication immediately and report to the doctor.'),
(26671, 'Lixifine 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 500mg Tablet', 'Is Lixifine 500mg Tablet effective?', 'Lixifine 500mg Tablet is effective as an anti fungal medicine if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop taking this medicine too early, the fungus may continue to grow and the infection may return or worsen.'),
(26672, 'Lixifine 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 500mg Tablet', 'How long do I need to take Lixifine 500mg Tablet?', 'The usual duration of treatment for Tinea pedis (fungal infection in the foot), Tinea corporis (ringworms), and Tinea cruris (fungal infection in the groin) is about 2 to 4 weeks. The duration may sometimes be extended to 6 weeks. For fungal infections of nails, the duration of treatment usually varies from 6 to 12 weeks. For fingernail fungal infections it may take 6 weeks whereas toenail fungal infection may take about 12 weeks. However, the exact duration of the therapy is decided by the doctor depending upon the type of infection, the site of infection, and the patient’s response to the therapy.'),
(26673, 'Lixifine 500mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixifine 500mg Tablet', 'Can I drink tea or coffee while taking Lixifine 500mg Tablet?', 'Caffeinated drinks like tea and coffee should be taken with caution while being on treatment with Lixifine 500mg Tablet. Lixifine 500mg Tablet decreases the rate of metabolism of caffeine by 19% which is an important constituent of coffee, thereby increasing the levels of caffeine in the blood. These increased levels of caffeine may lead to side effects such as jitteriness, headache, increased heartbeat, and restlessness.'),
(26674, 'Lixifine Cream', 'Human Biolife India Pvt Ltd', 'Lixifine Cream', 'What is Lixifine Cream?', 'Lixifine Cream is a medication used to treat superficial fungal infections such as athlete’s foot, ringworm, and jock itch. It also helps to treat fungal skin infections like pityriasis (tinea versicolor), which causes white or dark pigmentation on the face, neck, chest, arms, or legs. It acts by killing the causative fungus, thereby treating the infection.'),
(26675, 'Lixifine Cream', 'Human Biolife India Pvt Ltd', 'Lixifine Cream', 'How long does it take for Lixifine Cream to work on the skin?', 'Lixifine Cream is an antifungal medicine that acts on the skin and cures fungal skin infections. The usual dosage of Lixifine Cream is once or twice daily. The duration of the treatment varies from 1 to 2 weeks depending upon the type of fungal skin infection. The doctor may even extend the duration of the therapy depending upon the person’s response to the medication. You will see noticeable results within a few days, but you still need to continue the medication for the prescribed duration to cure the fungal infection completely. Do not stop using it without completing the course.'),
(26676, 'Lixifine Cream', 'Human Biolife India Pvt Ltd', 'Lixifine Cream', 'How do we apply Lixifine Cream on the skin?', 'Clean and dry the affected skin properly. Then, apply a thin layer of Lixifine Cream on and around the affected skin gently. Do not cover the area after applying the cream unless specified by the doctor. However, if the infection is present under the breasts, between the fingers, buttocks, or in the groin, then the cream should be applied properly and the skin may be covered with a sterile dressing. Avoid getting the medicine into the eyes, nose, or mouth. Inform your doctor in case of any signs of increased irritation, redness, itching, burning, blistering, swelling, or oozing.'),
(26677, 'Lixifine Cream', 'Human Biolife India Pvt Ltd', 'Lixifine Cream', 'How long can I use Lixifine Cream?', 'Lixifine Cream usually takes a few days to relieve the symptoms. But, since fungal infections affect multiple layers of the skin, you may need to continue the medication for the prescribed duration to get cured completely. For various fungal infections, the duration of treatment varies from 1 to 2 weeks and can be extended up to 4 weeks. Irregular use or stopping the treatment before the prescribed time increases the risk of relapse of the infection. In case you do not notice any improvement in your symptoms within the prescribed duration, kindly consult your doctor immediately.'),
(26678, 'Lixifine Cream', 'Human Biolife India Pvt Ltd', 'Lixifine Cream', 'Is Lixifine Cream safe in children?', 'Lixifine Cream has been approved for use only in people above 12 years of age. The safety of the medication has not been approved in children. Refrain from using it in children less than 12 years of age unless prescribed by the doctor.'),
(26679, 'Lixifine Cream', 'Human Biolife India Pvt Ltd', 'Lixifine Cream', 'I feel better now. Can I stop using Lixifine Cream?', 'No, do not stop taking Lixifine Cream without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26680, 'Lixifine Lotion', 'Human Biolife India Pvt Ltd', 'Lixifine Lotion', 'What is Lixifine Lotion?', 'Lixifine Lotion is a medication used to treat superficial fungal infections such as athlete’s foot, ringworm, and jock itch. It also helps to treat fungal skin infections like pityriasis (tinea versicolor), which causes white or dark pigmentation on the face, neck, chest, arms, or legs. It acts by killing the causative fungus, thereby treating the infection.'),
(26681, 'Lixifine Lotion', 'Human Biolife India Pvt Ltd', 'Lixifine Lotion', 'How long does it take for Lixifine Lotion to work on the skin?', 'Lixifine Lotion is an antifungal medicine that acts on the skin and cures fungal skin infections. The usual dosage of Lixifine Lotion is once or twice daily. The duration of the treatment varies from 1 to 2 weeks depending upon the type of fungal skin infection. The doctor may even extend the duration of the therapy depending upon the person’s response to the medication. You will see noticeable results within a few days, but you still need to continue the medication for the prescribed duration to cure the fungal infection completely. Do not stop using it without completing the course.'),
(26682, 'Lixifine Lotion', 'Human Biolife India Pvt Ltd', 'Lixifine Lotion', 'How do we apply Lixifine Lotion on the skin?', 'Clean and dry the affected skin properly. Then, apply a thin layer of Lixifine Lotion on and around the affected skin gently. Do not cover the area after applying the cream unless specified by the doctor. However, if the infection is present under the breasts, between the fingers, buttocks, or in the groin, then the cream should be applied properly and the skin may be covered with a sterile dressing. Avoid getting the medicine into the eyes, nose, or mouth. Inform your doctor in case of any signs of increased irritation, redness, itching, burning, blistering, swelling, or oozing.'),
(26683, 'Lixifine Lotion', 'Human Biolife India Pvt Ltd', 'Lixifine Lotion', 'How long can I use Lixifine Lotion?', 'Lixifine Lotion usually takes a few days to relieve the symptoms. But, since fungal infections affect multiple layers of the skin, you may need to continue the medication for the prescribed duration to get cured completely. For various fungal infections, the duration of treatment varies from 1 to 2 weeks and can be extended up to 4 weeks. Irregular use or stopping the treatment before the prescribed time increases the risk of relapse of the infection. In case you do not notice any improvement in your symptoms within the prescribed duration, kindly consult your doctor immediately.'),
(26684, 'Lixifine Lotion', 'Human Biolife India Pvt Ltd', 'Lixifine Lotion', 'Is Lixifine Lotion safe in children?', 'Lixifine Lotion has been approved for use only in people above 12 years of age. The safety of the medication has not been approved in children. Refrain from using it in children less than 12 years of age unless prescribed by the doctor.'),
(26685, 'Lixifine Lotion', 'Human Biolife India Pvt Ltd', 'Lixifine Lotion', 'I feel better now. Can I stop using Lixifine Lotion?', 'No, do not stop taking Lixifine Lotion without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26686, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'Is Lixime 100mg Tablet safe to use?', 'Lixime 100mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(26687, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'Can the use of Lixime 100mg Tablet cause diarrhea?', 'Yes, the use of Lixime 100mg Tablet can cause diarrhea. Lixime 100mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(26688, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'Is Lixime 100mg Tablet an antibiotic?', 'Yes, Lixime 100mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(26689, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'Can Lixime 100mg Tablet cause constipation?', 'Yes, Lixime 100mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(26690, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'Can I stop taking Lixime 100mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lixime 100mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(26691, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'How long does Lixime 100mg Tablet take to work?', 'Usually, Lixime 100mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(26692, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'What if I do not get better after using Lixime 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(26693, 'Lixime 100mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 100mg Tablet', 'Can Lixime 100mg Tablet treat UTI?', 'Yes, Lixime 100mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lixime 100mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(26694, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'Is Lixime 200mg Tablet safe to use?', 'Lixime 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(26695, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'Can the use of Lixime 200mg Tablet cause diarrhea?', 'Yes, the use of Lixime 200mg Tablet can cause diarrhea. Lixime 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(26696, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'Is Lixime 200mg Tablet an antibiotic?', 'Yes, Lixime 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(26697, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'Can Lixime 200mg Tablet cause constipation?', 'Yes, Lixime 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(26698, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'Can I stop taking Lixime 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Lixime 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(26699, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'How long does Lixime 200mg Tablet take to work?', 'Usually, Lixime 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(26700, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'What if I do not get better after using Lixime 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(26701, 'Lixime 200mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime 200mg Tablet', 'Can Lixime 200mg Tablet treat UTI?', 'Yes, Lixime 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Lixime 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(26702, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'Can the use of Lixime CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lixime CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26703, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'How long does Lixime CV 200mg/125mg Tablet takes to work?', 'Usually, Lixime CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(26704, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'What if I don\'t get better after using Lixime CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26705, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'Can I stop taking Lixime CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Lixime CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(26706, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'What is Lixime CV 200mg/125mg Tablet?', 'Lixime CV 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(26707, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'Can the use of Lixime CV 200mg/125mg Tablet cause any serious side effects?', 'Lixime CV 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(26708, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'Can I stop taking Lixime CV 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lixime CV 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(26709, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'Can Lixime CV 200mg/125mg Tablet cause allergic reaction?', 'Yes, Lixime CV 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(26710, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'Are there any specific contraindications associated with the use of Lixime CV 200mg/125mg Tablet?', 'The use of Lixime CV 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Lixime CV 200mg/125mg Tablet.'),
(26711, 'Lixime CV 200mg/125mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixime CV 200mg/125mg Tablet', 'Can I take oral contraceptive pills while taking Lixime CV 200mg/125mg Tablet?', 'No, Lixime CV 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(26712, 'Lixin 500mg Infusion', 'I.I.F.A Health Care', 'Lixin 500mg Infusion', 'Is Lixin 500mg Infusion safe?', 'Lixin 500mg Infusion is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26713, 'Lixin 500mg Infusion', 'I.I.F.A Health Care', 'Lixin 500mg Infusion', 'Can the use of Lixin 500mg Infusion cause diarrhea?', 'Yes, the use of Lixin 500mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26714, 'Lixin 500mg Infusion', 'I.I.F.A Health Care', 'Lixin 500mg Infusion', 'Can the use of Lixin 500mg Infusion increase the risk of muscle damage?', 'Yes, the use of Lixin 500mg Infusion is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lixin 500mg Infusion but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26715, 'Lixin 500mg Infusion', 'I.I.F.A Health Care', 'Lixin 500mg Infusion', 'How is Lixin 500mg Infusion administered?', 'Lixin 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lixin 500mg Infusion.'),
(26716, 'Lixin 500mg Infusion', 'I.I.F.A Health Care', 'Lixin 500mg Infusion', 'Is Lixin 500mg Infusion effective?', 'Lixin 500mg Infusion is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lixin 500mg Infusion too early, the symptoms may return or worsen.'),
(26717, 'Lixin 500mg Tablet', 'I.I.F.A Health Care', 'Lixin 500mg Tablet', 'Is Lixin 500mg Tablet safe?', 'Lixin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26718, 'Lixin 500mg Tablet', 'I.I.F.A Health Care', 'Lixin 500mg Tablet', 'What if I forget to take a dose of Lixin 500mg Tablet?', 'If you forget a dose of Lixin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(26719, 'Lixin 500mg Tablet', 'I.I.F.A Health Care', 'Lixin 500mg Tablet', 'Can the use of Lixin 500mg Tablet cause diarrhea?', 'Yes, the use of Lixin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26720, 'Lixin 500mg Tablet', 'I.I.F.A Health Care', 'Lixin 500mg Tablet', 'Can I stop taking Lixin 500mg Tablet when I feel better?', 'No, do not stop taking Lixin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lixin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lixin 500mg Tablet in the dose and duration advised by the doctor.'),
(26721, 'Lixin 500mg Tablet', 'I.I.F.A Health Care', 'Lixin 500mg Tablet', 'Can the use of Lixin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lixin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lixin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(26722, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Why is Lixofate O Syrup prescribed?', 'Lixofate O Syrup is prescribed for the treatment of acidity, heartburn and stomach ulcers.'),
(26723, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'How should I take Lixofate O Syrup?', 'Take Lixofate O Syrup on an empty stomach, at least 1 hour before or 2 hours after a meal.'),
(26724, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Can I drink water after taking Lixofate O Syrup?', 'Avoid drinking anything immediately after taking Lixofate O Syrup as that can reduce the effectiveness of this medicine.'),
(26725, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Can the use of Lixofate O Syrup cause constipation?', 'Yes, Lixofate O Syrup contains Sucralfate, which can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits and cereals. Drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or take a short walk. Talk to your doctor about treating constipation if it persists for a long time.'),
(26726, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Can I stop taking Lixofate O Syrup when my symptoms are relieved?', 'No, take Lixofate O Syrup for the full prescribed length of time even if you feel better. Do not stop taking this medication without consulting your doctor.'),
(26727, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Why is Lixofate O Syrup prescribed?', 'Lixofate O Syrup is prescribed for the treatment of acidity, heartburn and stomach ulcers.'),
(26728, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'How should I take Lixofate O Syrup?', 'Take Lixofate O Syrup on an empty stomach, at least 1 hour before or 2 hours after a meal.'),
(26729, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Can I drink water after taking Lixofate O Syrup?', 'Avoid drinking anything immediately after taking Lixofate O Syrup as that can reduce the effectiveness of this medicine.'),
(26730, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Can the use of Lixofate O Syrup cause constipation?', 'Yes, Lixofate O Syrup contains Sucralfate, which can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits and cereals. Drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or take a short walk. Talk to your doctor about treating constipation if it persists for a long time.'),
(26731, 'Lixofate O Syrup', 'Human Biolife India Pvt Ltd', 'Lixofate O Syrup', 'Can I stop taking Lixofate O Syrup when my symptoms are relieved?', 'No, take Lixofate O Syrup for the full prescribed length of time even if you feel better. Do not stop taking this medication without consulting your doctor.'),
(26732, 'Lixofer 1% Soap', 'Cosmederma Remedies', 'Lixofer 1% Soap', 'What should I do if I forget to use Lixofer 1% Soap?', 'If you forget to use Lixofer 1% Soap, do not worry and continue using Lixofer 1% Soap as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(26733, 'Lixofer 1% Soap', 'Cosmederma Remedies', 'Lixofer 1% Soap', 'Can I stop using Lixofer 1% Soap when I feel better?', 'No, do not stop using Lixofer 1% Soap without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26734, 'Lixofer 1% Soap', 'Cosmederma Remedies', 'Lixofer 1% Soap', 'Is Lixofer 1% Soap safe?', 'Lixofer 1% Soap is safe if used in the dose and duration advised by your doctor. Use it exactly as directed by the doctor to get the most benefit. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26735, 'Lixoff Soap', 'Medivista Lifesciences Pvt. Ltd.', 'Lixoff Soap', 'What should I do if I forget to use Lixoff Soap?', 'If you forget to use Lixoff Soap, do not worry and continue using Lixoff Soap as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(26736, 'Lixoff Soap', 'Medivista Lifesciences Pvt. Ltd.', 'Lixoff Soap', 'Can I stop using Lixoff Soap when I feel better?', 'No, do not stop using Lixoff Soap without consulting your doctor even if you are feeling better. Your symptoms may improve before the infection is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(26737, 'Lixoff Soap', 'Medivista Lifesciences Pvt. Ltd.', 'Lixoff Soap', 'Is Lixoff Soap safe?', 'Lixoff Soap is safe if used in the dose and duration advised by your doctor. Use it exactly as directed by the doctor to get the most benefit. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(26738, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. What if I vomit after taking Lixomol 1000mg Tablet?', 'If you vomit in less than 30 minutes after having a dose of Lixomol 1000mg Tablet tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(26739, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. When will I feel better after taking the Lixomol 1000mg Tablet?', 'Usually, you will start feeling better after about half an hour of taking a Lixomol 1000mg Tablet.'),
(26740, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. How often can I take the Lixomol 1000mg Tablet?', 'You should only take four doses of Lixomol 1000mg Tablet in 24 hours. There should be a gap of at least 4 hours between two doses. Do not take Lixomol 1000mg Tablet for more than 3 days without consulting a doctor first.'),
(26741, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. Does Lixomol 1000mg Tablet make babies sleepy?', 'No, Lixomol 1000mg Tablet does not make babies sleepy. It is a pain-relieving medicine that is also used to control high fever.'),
(26742, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. Is Lixomol 1000mg Tablet safe for children?', 'Lixomol 1000mg Tablet is considered safe for children only when used as directed by the doctor.'),
(26743, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. Is Lixomol 1000mg Tablet an antibiotic?', 'No, Lixomol 1000mg Tablet is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(26744, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. Can I take Lixomol 1000mg Tablet and ibuprofen together?', 'Ibuprofen and Lixomol 1000mg Tablet are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(26745, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. How long does a Lixomol 1000mg Tablet take to work?', 'Lixomol 1000mg Tablet takes around 30-45 min to start working and show its effects. It is advised to take this medicine for the duration suggested by the doctor. Consult your doctor if you experience any bothersome side effects.'),
(26746, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. What are the serious side effects of taking an excess of the Lixomol 1000mg Tablet?', 'Overdose of Lixomol 1000mg Tablete may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(26747, 'Lixomol 1000mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 1000mg Tablet', 'Q. Can Lixomol 1000mg Tablet cause nausea and vomiting?', 'Yes, Lixomol 1000mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.u003cbr>'),
(26748, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'How much Lixomol 250mg Dry Syrup should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(26749, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'When will my child’s condition improve after taking Lixomol 250mg Dry Syrup?', 'Lixomol 250mg Dry Syrup usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(26750, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'My child vomited after taking Lixomol 250mg Dry Syrup. What should I do?', 'If your child vomits within 30 minutes of taking Lixomol 250mg Dry Syrup, repeat the dose again. If it has been more than 30 minutes after taking Lixomol 250mg Dry Syrup and your child vomits, no need to repeat the dose and wait until it is time for the next dose. If you are not sure, consult your doctor.'),
(26751, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'Can I give Lixomol 250mg Dry Syrup to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(26752, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'My child’s fever is persistent even after taking Lixomol 250mg Dry Syrup. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(26753, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'How much of Lixomol 250mg Dry Syrup is considered as an overdose?', 'You should only take four doses of Lixomol 250mg Dry Syrup in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(26754, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(26755, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(26756, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'In what conditions Lixomol 250mg Dry Syrup must be given with caution?', 'It is advised to use Lixomol 250mg Dry Syrup with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(26757, 'Lixomol 250mg Dry Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol 250mg Dry Syrup', 'Can I give Lixomol 250mg Dry Syrup on a routine basis when my child is taking a vaccine?', 'Lixomol 250mg Dry Syrup usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(26758, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'What if I vomit after taking Lixomol 650mg Tablet?', 'If you vomit in less than 30 minutes after having a dose of Lixomol 650mg Tablet tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(26759, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'When will I feel better after taking the Lixomol 650mg Tablet?', 'Usually, you will start feeling better after about half an hour of taking a Lixomol 650mg Tablet.'),
(26760, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'How often can I take the Lixomol 650mg Tablet?', 'You should only take four doses of Lixomol 650mg Tablet in 24 hours. There should be a gap of at least 4 hours between two doses. Do not take Lixomol 650mg Tablet for more than 3 days without consulting a doctor first.'),
(26761, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'Is Lixomol 650mg Tablet an antibiotic?', 'No, Lixomol 650mg Tablet is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(26762, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'Can I take Lixomol 650mg Tablet and ibuprofen together?', 'Ibuprofen and Lixomol 650mg Tablet are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(26763, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'How long does a Lixomol 650mg Tablet take to work?', 'Lixomol 650mg Tablet takes around 30-45 min to start working and show its effects. It is advised to take this medicine for the duration suggested by the doctor. Consult your doctor if you experience any bothersome side effects.'),
(26764, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'What are the serious side effects of taking an excess of the Lixomol 650mg Tablet?', 'Overdose of Lixomol 650mg Tablete may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(26765, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'Can Lixomol 650mg Tablet cause nausea and vomiting?', 'Yes, Lixomol 650mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.u003cbr>'),
(26766, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'Is Lixomol 650mg Tablet helpful in relieving stomach pain due to indigestion?', 'No, Lixomol 650mg Tablet should not be taken for stomach pain without consulting a doctor. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(26767, 'Lixomol 650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol 650mg Tablet', 'Can I take Lixomol 650mg Tablet with an antibiotic?', 'Yes, taking Lixomol 650mg Tablet and antibiotics at the same time should not cause any problems. Antibiotics are used to help clear infections but often don\'t do anything to relieve pain. Therefore you can generally take Lixomol 650mg Tablet alongside your antibiotics. However, always consult your doctor before taking any medications.'),
(26768, 'Lixomol Active 50mg/650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Active 50mg/650mg Tablet', 'What is the rationale behind using caffeine with paracetamol?', 'Caffeine is often combined with paracetamol because it increases the effectiveness of paracetamol.'),
(26769, 'Lixomol Active 50mg/650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Active 50mg/650mg Tablet', 'What if I overdose on Lixomol Active 50mg/650mg Tablet?', 'Contact your doctor immediately even if you feel well. An overdose of Lixomol Active 50mg/650mg Tablet can cause serious liver damage. Symptoms of liver damage are fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, and yellow skin or eyes.'),
(26770, 'Lixomol Active 50mg/650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Active 50mg/650mg Tablet', 'What is the recommended dose of Lixomol Active 50mg/650mg Tablet?', 'The recommended doses for adults and children are different. Adults should take 1-2 tablets every 4 hours. Do not take more than 8 tablets a day. Whereas, children should be given 1 tablet every 4 hours. Do not give more than 4 tablets a day.'),
(26771, 'Lixomol Active 50mg/650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Active 50mg/650mg Tablet', 'Can I take Lixomol Active 50mg/650mg Tablet for headache everyday?', 'Avoid using Lixomol Active 50mg/650mg Tablet for more than 2-3 days per week for headache. Its overuse can instead lead to the occurrence of a medicine-overuse headache.'),
(26772, 'Lixomol Active 50mg/650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Active 50mg/650mg Tablet', 'What are the instructions for the storage and disposal of Lixomol Active 50mg/650mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26773, 'Lixomol Active 50mg/650mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Active 50mg/650mg Tablet', 'Can the use of Lixomol Active 50mg/650mg Tablet cause damage to the liver?', 'Lixomol Active 50mg/650mg Tablet contains paracetamol. This medicine is known to cause harm to the liver in high doses. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26774, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'How is Lixomol IV Infusion administered?', 'Lixomol IV Infusion should be administered under the supervision of a trained healthcare professional or a doctor only. It should not be self-administered. The dose of the medicine will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lixomol IV Infusion.'),
(26775, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'What if I vomit after taking Lixomol IV Infusion?', 'If you vomit in less than 30 minutes after having a dose of Lixomol IV Infusion tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(26776, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'What are the serious side effects of taking an excess of the Lixomol IV Infusion?', 'Overdose of Lixomol IV Infusione may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(26777, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'When will I feel better after taking the Lixomol IV Infusion?', 'Usually, you will start feeling better after about half an hour of taking a Lixomol IV Infusion.'),
(26778, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'Is Lixomol IV Infusion an antibiotic?', 'No, Lixomol IV Infusion is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(26779, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'Is Lixomol IV Infusion safe for children?', 'Lixomol IV Infusion is considered safe for children only when used as directed by the doctor.'),
(26780, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'Can I take Lixomol IV Infusion and ibuprofen together?', 'Ibuprofen and Lixomol IV Infusion are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(26781, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'Does Lixomol IV Infusion make babies sleepy?', 'No, Lixomol IV Infusion does not make babies sleepy. It is a pain-relieving medicine that is also used to control high fever.'),
(26782, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'What if I vomit after taking Lixomol IV Infusion?', 'If you vomit in less than 30 minutes after having a dose of Lixomol IV Infusion tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(26783, 'Lixomol IV Infusion', 'Human Biolife India Pvt Ltd', 'Lixomol IV Infusion', 'When will I feel better after taking the Lixomol IV Infusion?', 'Usually, you will start feeling better after about half an hour of taking a Lixomol IV Infusion.'),
(26784, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Is it safe to use Lixomol M Forte Oral Suspension?', 'Yes, Lixomol M Forte Oral Suspension is safe to use in most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(26785, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Can Lixomol M Forte Oral Suspension be stopped when the pain is relieved?', 'Lixomol M Forte Oral Suspension is usually used for short term and can be discontinued when the pain is relieved. However, if advised by the doctor, it should be continued for the recommended time period.'),
(26786, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Can the use of Lixomol M Forte Oral Suspension cause nausea and vomiting?', 'Yes, the use of Lixomol M Forte Oral Suspension can cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with the medicine. In the case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to the doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(26787, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Can the use of Lixomol M Forte Oral Suspension cause dizziness?', 'Yes, the use of Lixomol M Forte Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(26788, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Are there any specific contraindications associated with the use of Lixomol M Forte Oral Suspension?', 'The use of Lixomol M Forte Oral Suspension is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of liver or kidney disease.'),
(26789, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Can I take Lixomol M Forte Oral Suspension with vitamin B-complex?', 'Yes, Lixomol M Forte Oral Suspension can be taken with Vitamin B-complex preparations. While Lixomol M Forte Oral Suspension helps to relieve pain, Vitamin B-complex can help correct the vitamin deficiency that might be causing the underlying painful condition.'),
(26790, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Can the use of Lixomol M Forte Oral Suspension cause damage to kidneys?', 'Yes, the long-term use of Lixomol M Forte Oral Suspension can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect the kidneys from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(26791, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'Is it safe to take a higher than the recommended dose of Lixomol M Forte Oral Suspension?', 'No, taking a higher than the recommended dose of Lixomol M Forte Oral Suspension can increase the risks of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage the kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(26792, 'Lixomol M Forte Oral Suspension', 'Human Biolife India Pvt Ltd', 'Lixomol M Forte Oral Suspension', 'What are the storage condition for Lixomol M Forte Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26793, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'How much Lixomol M Syrup should I give to my child?', 'Your doctor will prescribe the dose according to your child’s condition and body weight. Stick to the prescribed dosing schedule as that is the best way to ensure safe and complete recovery of your child.'),
(26794, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'Can I change the dose of Lixomol M Syrup for my child by myself according to the severity of illness?', 'No, it is not recommended to alter the dose of the medicine without consulting a doctor. While an unnecessary increase in dose may lead to toxicity, a sudden lowering of the dosing may cause recurrence of symptoms. So, for best results, speak to your child’s doctor if you feel a change in dose may be needed.'),
(26795, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'Can all children be given the same dose of Lixomol M Syrup?', 'No. Lixomol M Syrup cannot be given to everyone in the same dose. The doctor decides the appropriate dose based on the child’s age and body weight. Since the dose changes so unpredictably, you must never give any dose of this medicine to anyone without consulting a doctor. Follow your doctor’s instructions carefully to get the most benefit.'),
(26796, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'When will my child feel better?', 'The doctor may advise you to keep giving Lixomol M Syrup to your child for a few days to weeks, depending upon the severity of the illness. You’ll notice that the pain or fever will reduce and your child will start feeling better gradually as the course approaches its end. In case your child continues to feel unwell even after completion of the full prescribed course of the medicine, consult your child’s doctor as soon as possible.'),
(26797, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'Are there any serious side effects of this medicine for my child?', 'Lixomol M Syrup is well-tolerated by most children. However, if your child experiences any intolerable episodes like persistent vomiting, body swelling, decreased urine frequency, serious allergic reaction, and severe pain due to gastric ulcers, then rush to your doctor on an immediate basis.'),
(26798, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'How should I store Lixomol M Syrup?', 'Store Lixomol M Syrup at room temperature, in a dry place, away from direct heat and light. Avoid leaving medicines within the reach and sight of children.'),
(26799, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'My child is taking Lixomol M Syrup for toothache and now has to undergo an extraction procedure. Should I continue giving Lixomol M Syrup?', 'Withhold Lixomol M Syrup from at least 3 to 5 days before a surgical procedure to prevent excessive bleeding. In case of any confusion, it is best to reach out to your child’s doctor.'),
(26800, 'Lixomol M Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol M Syrup', 'Can other medicines be given at the same time as Lixomol M Syrup?', 'Lixomol M Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lixomol M Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26801, 'Lixomol PM Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol PM Syrup', 'Is it safe to give Lixomol PM Syrup to children less than 1 year old?', 'Lixomol PM Syrup should not be used in children who are less than 2 years of age because it has the potential of causing fatal respiratory depression.'),
(26802, 'Lixomol PM Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol PM Syrup', 'What if I give an overdose of Lixomol PM Syrup by mistake?', 'Prolonged or excess intake of Lixomol PM Syrup can put your child at risk of developing serious side effects like bradycardia, decreased blood pressure, confusion, delirium, disorientation, dizziness, drowsiness, and hallucinations. Always stick to the prescribed dose. To pour out the right dose, use the calibrated cup provided with the medicine by the manufacturer. Do not use a kitchen teaspoon as it will not give the correct estimate.'),
(26803, 'Lixomol PM Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol PM Syrup', 'When will my child’s condition improve after taking Lixomol PM Syrup?', 'Lixomol PM Syrup usually starts working within 30 to 60 minutes of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(26804, 'Lixomol PM Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol PM Syrup', 'Where should I keep Lixomol PM Syrup?', 'Keep Lixomol PM Syrup out of the reach and sight of children to avoid any accidental intake. Also, it should be stored at room temperature, in a dry place, away from direct heat and light.'),
(26805, 'Lixomol PM Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol PM Syrup', 'Can Lixomol PM Syrup make my child sleepy?', 'Lixomol PM Syrup may cause mild drowsiness, making your child feel sleepy. So, be cautious and never give this medicine if your child is suffering from a sleep disorder as this medicine can mask the symptoms of underlying sleep disorders like insomnia. It is always best to consult your child’s doctor before giving this medicine to your child.'),
(26806, 'Lixomol PM Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol PM Syrup', 'In what conditions should Lixomol PM Syrup be given with caution?', 'It is advised to use Lixomol PM Syrup with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(26807, 'Lixomol PM Syrup', 'Human Biolife India Pvt Ltd', 'Lixomol PM Syrup', 'When should I call my child’s doctor right away?', 'Do not delay calling your child’s doctor if your child starts to show side effects like irregular heartbeat, complaints of urinary retention, vision problem, muscle spasm, irregular bodily movements, and sudden weakness.'),
(26808, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'What is Lixomol Spas 20mg/325mg Tablet?', 'Lixomol Spas 20mg/325mg Tablet is a combination of two medicines: Dicyclomine and Paracetamol. This medication helps in relieving stomach pain. It works by relaxing the muscles of the stomach and intestine by decreasing the levels of chemical substances in the body that cause pain.'),
(26809, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'Is it safe to use Lixomol Spas 20mg/325mg Tablet?', 'Lixomol Spas 20mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, dryness of mouth, blurred vision, sleepiness, weakness and nervousness. If you experience any persistent problem while taking this medication, inform your doctor as soon as possible.'),
(26810, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'Can I stop taking Lixomol Spas 20mg/325mg Tablet when my pain is relieved?', 'Lixomol Spas 20mg/325mg Tablet is usually used for short-term and can be discontinued if there is no pain. However, it should be continued if you are advised by your doctor to do so.'),
(26811, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'Can the use of Lixomol Spas 20mg/325mg Tablet cause diarrhea?', 'Yes, the use of Lixomol Spas 20mg/325mg Tablet can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids by taking small frequent sips. Also, avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without speaking to your doctor.'),
(26812, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'Can the use of Lixomol Spas 20mg/325mg Tablet cause dry mouth?', 'Yes, the use of Lixomol Spas 20mg/325mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some by your bed at night. You may use lip balm if your lips are also dry. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(26813, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lixomol Spas 20mg/325mg Tablet?', 'The use of Lixomol Spas 20mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. It should be used carefully in patients with alcohol dependency or with underlying kidney or liver damage.'),
(26814, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'Can the use of Lixomol Spas 20mg/325mg Tablet cause damage to liver?', 'Lixomol Spas 20mg/325mg Tablet is usually safe to use in the dose as recommended by the doctor. However, an overdose of Lixomol Spas 20mg/325mg Tablet can cause damage to the liver. Avoid drinking alcohol while taking this medicine, as it may further increase the risk of liver damage. Use of this medicine is not recommended in patients with the severe liver disease.'),
(26815, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'Can I take a higher dose of this medicine than recommended?', 'No, taking higher than the recommended dose of Lixomol Spas 20mg/325mg Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(26816, 'Lixomol Spas 20mg/325mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixomol Spas 20mg/325mg Tablet', 'What are the instructions for storage and disposal of Lixomol Spas 20mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26817, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'What is Lixostat 40mg Tablet used for?', 'Lixostat 40mg Tablet is used to treat gout in adults. It is mainly used in patients who did not respond to the treatment with allopurinol or who are not able to take allopurinol. Gout is a type of arthritis in which uric acid, a naturally occurring substance in the body, builds up in the joints. It causes sudden attacks of redness, swelling, pain, and heat in one or more joints.'),
(26818, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'What are the side effects of Lixostat 40mg Tablet?', 'Lixostat 40mg Tablet may cause common side effects such as abnormal liver test results, diarrhea, headache, rash, nausea, and even an increase in gout symptoms and localized swelling due to retention of fluids in tissues (edema). Whereas, the serious side effects of Lixostat 40mg Tablet include heart problems, gout flares, liver problems, and severe skin and allergic reactions. Immediately inform your doctor if you experience any serious side effects.'),
(26819, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'How long should I take Lixostat 40mg Tablet?', 'The dose and duration of Lixostat 40mg Tablet vary from person to person and are decided by your doctor. It may take several months before Lixostat 40mg Tablet begins to prevent gout attacks. Do not stop taking Lixostat 40mg Tablet without the advice of your doctor even if you feel better.'),
(26820, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'What is the best time to take Lixostat 40mg Tablet?', 'Lixostat 40mg Tablet is advised to be taken once a day. It can be taken at any time of the day, but preferably at the same time each day so that you remember to take it every day. This will help maintain the levels of Lixostat 40mg Tablet in the body. You can take this medicine with or without food.'),
(26821, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'Can Lixostat 40mg Tablet cause kidney damage?', 'Lixostat 40mg Tablet may affect kidneys in different ways, though it is quite uncommon. You may experience blood in the urine, frequent urination, kidney stones, abnormal urine tests (increased level of proteins in the urine), and a reduction in the ability of the kidneys to function properly. Rarely, it may cause changes or decrease in urine amount due to inflammation in the kidneys (tubulointerstitial nephritis). Consult your doctor if your kidney functions get further affected.'),
(26822, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'Can I stop taking Lixostat 40mg Tablet on my own if I am fine and have no pain or swelling in joints?', 'No, do not stop taking Lixostat 40mg Tablet without your doctor\'s advice even if you feel better. Discontinuation of medicine may increase the levels of uric acid. It may also worsen your symptoms due to the formation of new crystals of urate in and around your joints and kidneys.'),
(26823, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'What are the things which I need to know while taking Lixostat 40mg Tablet?', 'You should be aware that Lixostat 40mg Tablet may cause serious heart problems which can be life-threatening in some cases. The symptoms of heart problems include chest pain, shortness of breath or trouble breathing, dizziness, fainting or feeling light-headed, rapid or irregular heartbeat. It may also cause numbness or weakness in one side of your body, slurring of speech and sudden blurry vision, or sudden severe headache. Immediately inform your doctor and seek medical help if you experience any of these symptoms.'),
(26824, 'Lixostat 40mg Tablet', 'Yodley Life Sciences Private Limited', 'Lixostat 40mg Tablet (Yodley Life Sciences Private Limited)', 'Can Lixostat 40mg Tablet cause any liver problems?', 'Yes, Lixostat 40mg Tablet use may cause liver problems. Your doctor may advise you to get regular blood tests done before and during treatment with Lixostat 40mg Tablet to check how well your liver was working before and while taking this medicine. Inform your doctor if you notice symptoms such as fatigue, pain, or tenderness on the right side of the abdomen or loss of appetite for several days or longer. It may also cause changes in the color of urine (dark or tea-colored) and may make your skin or the white part of your eyes turn yellow (jaundice).'),
(26825, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'What is Lixostat 40mg Tablet used for?', 'Lixostat 40mg Tablet is used to treat gout in adults. It is mainly used in patients who did not respond to the treatment with allopurinol or who are not able to take allopurinol. Gout is a type of arthritis in which uric acid, a naturally occurring substance in the body, builds up in the joints. It causes sudden attacks of redness, swelling, pain, and heat in one or more joints.'),
(26826, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'What are the side effects of Lixostat 40mg Tablet?', 'Lixostat 40mg Tablet may cause common side effects such as abnormal liver test results, diarrhea, headache, rash, nausea, and even an increase in gout symptoms and localized swelling due to retention of fluids in tissues (edema). Whereas, the serious side effects of Lixostat 40mg Tablet include heart problems, gout flares, liver problems, and severe skin and allergic reactions. Immediately inform your doctor if you experience any serious side effects.'),
(26827, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'How long should I take Lixostat 40mg Tablet?', 'The dose and duration of Lixostat 40mg Tablet vary from person to person and are decided by your doctor. It may take several months before Lixostat 40mg Tablet begins to prevent gout attacks. Do not stop taking Lixostat 40mg Tablet without the advice of your doctor even if you feel better.'),
(26828, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'What is the best time to take Lixostat 40mg Tablet?', 'Lixostat 40mg Tablet is advised to be taken once a day. It can be taken at any time of the day, but preferably at the same time each day so that you remember to take it every day. This will help maintain the levels of Lixostat 40mg Tablet in the body. You can take this medicine with or without food.'),
(26829, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'Can Lixostat 40mg Tablet cause kidney damage?', 'Lixostat 40mg Tablet may affect kidneys in different ways, though it is quite uncommon. You may experience blood in the urine, frequent urination, kidney stones, abnormal urine tests (increased level of proteins in the urine), and a reduction in the ability of the kidneys to function properly. Rarely, it may cause changes or decrease in urine amount due to inflammation in the kidneys (tubulointerstitial nephritis). Consult your doctor if your kidney functions get further affected.'),
(26830, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'Can I stop taking Lixostat 40mg Tablet on my own if I am fine and have no pain or swelling in joints?', 'No, do not stop taking Lixostat 40mg Tablet without your doctor\'s advice even if you feel better. Discontinuation of medicine may increase the levels of uric acid. It may also worsen your symptoms due to the formation of new crystals of urate in and around your joints and kidneys.'),
(26831, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'What are the things which I need to know while taking Lixostat 40mg Tablet?', 'You should be aware that Lixostat 40mg Tablet may cause serious heart problems which can be life-threatening in some cases. The symptoms of heart problems include chest pain, shortness of breath or trouble breathing, dizziness, fainting or feeling light-headed, rapid or irregular heartbeat. It may also cause numbness or weakness in one side of your body, slurring of speech and sudden blurry vision, or sudden severe headache. Immediately inform your doctor and seek medical help if you experience any of these symptoms.'),
(26832, 'Lixostat 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostat 40mg Tablet (Human Biolife India Pvt Ltd)', 'Can Lixostat 40mg Tablet cause any liver problems?', 'Yes, Lixostat 40mg Tablet use may cause liver problems. Your doctor may advise you to get regular blood tests done before and during treatment with Lixostat 40mg Tablet to check how well your liver was working before and while taking this medicine. Inform your doctor if you notice symptoms such as fatigue, pain, or tenderness on the right side of the abdomen or loss of appetite for several days or longer. It may also cause changes in the color of urine (dark or tea-colored) and may make your skin or the white part of your eyes turn yellow (jaundice).'),
(26833, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'What is Lixostate 40mg Tablet used for?', 'Lixostate 40mg Tablet is used to treat gout in adults. It is mainly used in patients who did not respond to the treatment with allopurinol or who are not able to take allopurinol. Gout is a type of arthritis in which uric acid, a naturally occurring substance in the body, builds up in the joints. It causes sudden attacks of redness, swelling, pain, and heat in one or more joints.'),
(26834, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'What are the side effects of Lixostate 40mg Tablet?', 'Lixostate 40mg Tablet may cause common side effects such as abnormal liver test results, diarrhea, headache, rash, nausea, and even an increase in gout symptoms and localized swelling due to retention of fluids in tissues (edema). Whereas, the serious side effects of Lixostate 40mg Tablet include heart problems, gout flares, liver problems, and severe skin and allergic reactions. Immediately inform your doctor if you experience any serious side effects.'),
(26835, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'How long should I take Lixostate 40mg Tablet?', 'The dose and duration of Lixostate 40mg Tablet vary from person to person and are decided by your doctor. It may take several months before Lixostate 40mg Tablet begins to prevent gout attacks. Do not stop taking Lixostate 40mg Tablet without the advice of your doctor even if you feel better.'),
(26836, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'What is the best time to take Lixostate 40mg Tablet?', 'Lixostate 40mg Tablet is advised to be taken once a day. It can be taken at any time of the day, but preferably at the same time each day so that you remember to take it every day. This will help maintain the levels of Lixostate 40mg Tablet in the body. You can take this medicine with or without food.'),
(26837, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'Can Lixostate 40mg Tablet cause kidney damage?', 'Lixostate 40mg Tablet may affect kidneys in different ways, though it is quite uncommon. You may experience blood in the urine, frequent urination, kidney stones, abnormal urine tests (increased level of proteins in the urine), and a reduction in the ability of the kidneys to function properly. Rarely, it may cause changes or decrease in urine amount due to inflammation in the kidneys (tubulointerstitial nephritis). Consult your doctor if your kidney functions get further affected.'),
(26838, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'Can I stop taking Lixostate 40mg Tablet on my own if I am fine and have no pain or swelling in joints?', 'No, do not stop taking Lixostate 40mg Tablet without your doctor\'s advice even if you feel better. Discontinuation of medicine may increase the levels of uric acid. It may also worsen your symptoms due to the formation of new crystals of urate in and around your joints and kidneys.'),
(26839, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'What are the things which I need to know while taking Lixostate 40mg Tablet?', 'You should be aware that Lixostate 40mg Tablet may cause serious heart problems which can be life-threatening in some cases. The symptoms of heart problems include chest pain, shortness of breath or trouble breathing, dizziness, fainting or feeling light-headed, rapid or irregular heartbeat. It may also cause numbness or weakness in one side of your body, slurring of speech and sudden blurry vision, or sudden severe headache. Immediately inform your doctor and seek medical help if you experience any of these symptoms.'),
(26840, 'Lixostate 40mg Tablet', 'Human Biolife India Pvt Ltd', 'Lixostate 40mg Tablet', 'Can Lixostate 40mg Tablet cause any liver problems?', 'Yes, Lixostate 40mg Tablet use may cause liver problems. Your doctor may advise you to get regular blood tests done before and during treatment with Lixostate 40mg Tablet to check how well your liver was working before and while taking this medicine. Inform your doctor if you notice symptoms such as fatigue, pain, or tenderness on the right side of the abdomen or loss of appetite for several days or longer. It may also cause changes in the color of urine (dark or tea-colored) and may make your skin or the white part of your eyes turn yellow (jaundice).'),
(26841, 'Lixzone 1000mg/500mg Injection', 'Snu Biocare', 'Lixzone 1000mg/500mg Injection', 'What is Lixzone 1000mg/500mg Injection?', 'Lixzone 1000mg/500mg Injection is a combination of two medicines: Cefoperazone and Sulbactam. Cefoperazone is an antibiotic which works by preventing the formation of the bacterial protective covering which is essential for the survival of bacteria. Sulbactam is a beta-lactamase inhibitor which reduces resistance and enhances the activity of Cefoperazone against bacteria.'),
(26842, 'Lixzone 1000mg/500mg Injection', 'Snu Biocare', 'Lixzone 1000mg/500mg Injection', 'How long does Lixzone 1000mg/500mg Injection takes to work?', 'Usually, Lixzone 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(26843, 'Lixzone 1000mg/500mg Injection', 'Snu Biocare', 'Lixzone 1000mg/500mg Injection', 'What if I don\'t get better after using Lixzone 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(26844, 'Liz 40mg Tablet', 'Deys Medical', 'Liz 40mg Tablet', 'What is the best time to take Liz 40mg Tablet?', 'Take Liz 40mg Tablet before meals or exactly as instructed by your doctor. There is evidence stating that Liz 40mg Tablet works best at controlling post meal high blood sugar levels when taken 30 minutes before breakfast. So, if you are supposed to take it once daily, take it in the morning with breakfast with a glass of water.'),
(26845, 'Liz 40mg Tablet', 'Deys Medical', 'Liz 40mg Tablet', 'Is Liz 40mg Tablet the same as metformin?', 'No, Liz 40mg Tablet is not the same as metformin. Although both these oral medicines are used in the treatment of type 2 diabetes, the way they work to reduce the sugar levels are different. While Liz 40mg Tablet acts by increasing the secretion of insulin by the pancreas, metformin acts by improving the functioning and effectiveness of the insulin already available in the body.'),
(26846, 'Liz 40mg Tablet', 'Deys Medical', 'Liz 40mg Tablet', 'Can you take metformin and Liz 40mg Tablet at the same time?', 'Yes, Liz 40mg Tablet and metformin can be taken at the same time but only if prescribed by the doctor. Your doctor may have prescribed taking the two together to control your uncontrolled sugar levels. However, taking the two together may cause low blood sugar which may also occur if you delay or miss a meal, exercise more than usual or take it with insulin. Follow the instructions given by your doctor strictly to avoid such complications.'),
(26847, 'Liz 40mg Tablet', 'Deys Medical', 'Liz 40mg Tablet', 'Is Liz 40mg Tablet bad for kidneys?', 'No, Liz 40mg Tablet is not harmful if your kidney function is normal. Any previous case of kidney problem should be informed to the doctor, so that the use of Liz 40mg Tablet can be assessed. This is done in order to analyze whether Liz 40mg Tablet can be given or not because it is principally excreted by the kidney. If you have kidney problems you will be started at a lower dose.'),
(26848, 'Liza 30mg Capsule', 'Ind Swift Laboratories Ltd', 'Liza 30mg Capsule', 'What is Liza 30mg Capsule? What is it used for?', 'Liza 30mg Capsule belongs to a class of medicines known as proton pump inhibitors. Liza 30mg Capsule is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(26849, 'Liza 30mg Capsule', 'Ind Swift Laboratories Ltd', 'Liza 30mg Capsule', 'How is Liza 30mg Capsule given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Liza 30mg Capsule through the nasogastric (NG) tube. Open the Liza 30mg Capsule capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(26850, 'Liza 30mg Capsule', 'Ind Swift Laboratories Ltd', 'Liza 30mg Capsule', 'Should Liza 30mg Capsule be taken empty stomach or with food?', 'Usually, Liza 30mg Capsule is taken once a day, first thing in the morning, on an empty stomach. If you take Liza 30mg Capsule twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(26851, 'Liza 30mg Capsule', 'Ind Swift Laboratories Ltd', 'Liza 30mg Capsule', 'While taking Liza 30mg Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(26852, 'Liza 30mg Capsule', 'Ind Swift Laboratories Ltd', 'Liza 30mg Capsule', 'Is Liza 30mg Capsule used for children?', 'Yes, Liza 30mg Capsule is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Liza 30mg Capsule are established only in children between 1 to 17 years of age.'),
(26853, 'Liza 5mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza 5mg Tablet', 'Is Liza 5mg Tablet a steroid? What is it used for?', 'No, Liza 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26854, 'Liza 5mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza 5mg Tablet', 'Does Liza 5mg Tablet make you tired and drowsy?', 'Yes, Liza 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26855, 'Liza 5mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza 5mg Tablet', 'How long does it take for Liza 5mg Tablet to work?', 'Liza 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26856, 'Liza 5mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza 5mg Tablet', 'Can I take Liza 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Liza 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26857, 'Liza 5mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza 5mg Tablet', 'Is it safe to take Liza 5mg Tablet for a long time?', 'Liza 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Liza 5mg Tablet for only as long as you need it.'),
(26858, 'Liza 5mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza 5mg Tablet', 'For how long should I continue Liza 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Liza 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Liza 5mg Tablet'),
(26859, 'Liza M 5mg/10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M 5mg/10mg Tablet (Cassel Research Laboratories Pvt Ltd)', 'What is Liza M 5mg/10mg Tablet?', 'Liza M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26860, 'Liza M 5mg/10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M 5mg/10mg Tablet (Cassel Research Laboratories Pvt Ltd)', 'Can the use of Liza M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liza M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26861, 'Liza M 5mg/10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M 5mg/10mg Tablet (Cassel Research Laboratories Pvt Ltd)', 'Can Liza M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Liza M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26862, 'Liza M 5mg/10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M 5mg/10mg Tablet (Cassel Research Laboratories Pvt Ltd)', 'Can the use of Liza M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Liza M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26863, 'Liza M 5mg/10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M 5mg/10mg Tablet (Cassel Research Laboratories Pvt Ltd)', 'Can I drink alcohol while taking Liza M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Liza M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liza M 5mg/10mg Tablet.'),
(26864, 'Liza M 5mg/10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M 5mg/10mg Tablet (Cassel Research Laboratories Pvt Ltd)', 'Will Liza M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liza M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26865, 'Liza M 5mg/10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M 5mg/10mg Tablet (Cassel Research Laboratories Pvt Ltd)', 'What are the instructions for storage and disposal of Liza M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26866, 'Liza M 5mg/10mg Tablet', 'Subwell Lifesciences', 'Liza M 5mg/10mg Tablet (Subwell Lifesciences)', 'What is Liza M 5mg/10mg Tablet?', 'Liza M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26867, 'Liza M 5mg/10mg Tablet', 'Subwell Lifesciences', 'Liza M 5mg/10mg Tablet (Subwell Lifesciences)', 'Can the use of Liza M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liza M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26868, 'Liza M 5mg/10mg Tablet', 'Subwell Lifesciences', 'Liza M 5mg/10mg Tablet (Subwell Lifesciences)', 'Can Liza M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Liza M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26869, 'Liza M 5mg/10mg Tablet', 'Subwell Lifesciences', 'Liza M 5mg/10mg Tablet (Subwell Lifesciences)', 'Can the use of Liza M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Liza M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26870, 'Liza M 5mg/10mg Tablet', 'Subwell Lifesciences', 'Liza M 5mg/10mg Tablet (Subwell Lifesciences)', 'Can I drink alcohol while taking Liza M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Liza M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liza M 5mg/10mg Tablet.'),
(26871, 'Liza M 5mg/10mg Tablet', 'Subwell Lifesciences', 'Liza M 5mg/10mg Tablet (Subwell Lifesciences)', 'Will Liza M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liza M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26872, 'Liza M 5mg/10mg Tablet', 'Subwell Lifesciences', 'Liza M 5mg/10mg Tablet (Subwell Lifesciences)', 'What are the instructions for storage and disposal of Liza M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26873, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(26874, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'Can I decrease the dose of Liza M Kid 2.5mg/4mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(26875, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'How should Liza M Kid 2.5mg/4mg Tablet be stored?', 'Liza M Kid 2.5mg/4mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26876, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'Can Liza M Kid 2.5mg/4mg Tablet make my child sleepy?', 'Liza M Kid 2.5mg/4mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(26877, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Liza M Kid 2.5mg/4mg Tablet?', 'No, don’t start Liza M Kid 2.5mg/4mg Tablet without speaking to your child’s doctor. Moreover, Liza M Kid 2.5mg/4mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26878, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Liza M Kid 2.5mg/4mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(26879, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Liza M Kid 2.5mg/4mg Tablet to my child?', 'Some studies show that Liza M Kid 2.5mg/4mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(26880, 'Liza M Kid 2.5mg/4mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Liza M Kid 2.5mg/4mg Tablet', 'Can I use Liza M Kid 2.5mg/4mg Tablet for treating acute asthma attacks in my child?', 'Liza M Kid 2.5mg/4mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(26881, 'Lizacet Syrup', 'Liza Life Sciences', 'Lizacet Syrup', 'My child is restless and unable to sleep properly at night. Can I give Lizacet Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(26882, 'Lizacet Syrup', 'Liza Life Sciences', 'Lizacet Syrup', 'Can other medicines be given at the same time as Lizacet Syrup?', 'Lizacet Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizacet Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26883, 'Lizacet Syrup', 'Liza Life Sciences', 'Lizacet Syrup', 'How much Lizacet Syrup should I give to my child?', 'Lizacet Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(26884, 'Lizacet Syrup', 'Liza Life Sciences', 'Lizacet Syrup', 'What if I give too much of Lizacet Syrup by mistake?', 'Although Lizacet Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(26885, 'Lizacet Syrup', 'Liza Life Sciences', 'Lizacet Syrup', 'How should Lizacet Syrup be stored?', 'Store Lizacet Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26886, 'Lizacet Syrup', 'Liza Life Sciences', 'Lizacet Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(26887, 'Lizacet Tablet', 'Liza Life Sciences', 'Lizacet Tablet', 'Is Lizacet Tablet a steroid? What is it used for?', 'No, Lizacet Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26888, 'Lizacet Tablet', 'Liza Life Sciences', 'Lizacet Tablet', 'Does Lizacet Tablet make you tired and drowsy?', 'Yes, Lizacet Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26889, 'Lizacet Tablet', 'Liza Life Sciences', 'Lizacet Tablet', 'How long does it take for Lizacet Tablet to work?', 'Lizacet Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26890, 'Lizacet Tablet', 'Liza Life Sciences', 'Lizacet Tablet', 'Can I take Lizacet Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizacet Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26891, 'Lizacet Tablet', 'Liza Life Sciences', 'Lizacet Tablet', 'Is it safe to take Lizacet Tablet for a long time?', 'Lizacet Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizacet Tablet for only as long as you need it.'),
(26892, 'Lizacet Tablet', 'Liza Life Sciences', 'Lizacet Tablet', 'For how long should I continue Lizacet Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizacet Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lizacet Tablet'),
(26893, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(26894, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'Can I decrease the dose of Lizacet-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(26895, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'How should Lizacet-M Syrup be stored?', 'Lizacet-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(26896, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'Can Lizacet-M Syrup make my child sleepy?', 'Lizacet-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(26897, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lizacet-M Syrup?', 'No, don’t start Lizacet-M Syrup without speaking to your child’s doctor. Moreover, Lizacet-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(26898, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lizacet-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(26899, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lizacet-M Syrup to my child?', 'Some studies show that Lizacet-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(26900, 'Lizacet-M Syrup', 'Liza Life Sciences', 'Lizacet-M Syrup', 'Can I use Lizacet-M Syrup for treating acute asthma attacks in my child?', 'Lizacet-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(26901, 'Lizacet-M Tablet', 'Liza Life Sciences', 'Lizacet-M Tablet', 'What is Lizacet-M Tablet?', 'Lizacet-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26902, 'Lizacet-M Tablet', 'Liza Life Sciences', 'Lizacet-M Tablet', 'Can the use of Lizacet-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lizacet-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26903, 'Lizacet-M Tablet', 'Liza Life Sciences', 'Lizacet-M Tablet', 'Can Lizacet-M Tablet be stopped when allergy symptoms are relieved?', 'No, Lizacet-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26904, 'Lizacet-M Tablet', 'Liza Life Sciences', 'Lizacet-M Tablet', 'Can the use of Lizacet-M Tablet cause dry mouth?', 'Yes, the use of Lizacet-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26905, 'Lizacet-M Tablet', 'Liza Life Sciences', 'Lizacet-M Tablet', 'Can I drink alcohol while taking Lizacet-M Tablet?', 'No, do not take alcohol while taking Lizacet-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lizacet-M Tablet.'),
(26906, 'Lizacet-M Tablet', 'Liza Life Sciences', 'Lizacet-M Tablet', 'Will Lizacet-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lizacet-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26907, 'Lizacet-M Tablet', 'Liza Life Sciences', 'Lizacet-M Tablet', 'What are the instructions for storage and disposal of Lizacet-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26908, 'Lizadef 6 Tablet', 'Liza Life Sciences', 'Lizadef 6 Tablet', 'Q. Is Lizadef 6 Tablet a steroid?', 'Yes, Lizadef 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lizadef 6 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(26909, 'Lizadef 6 Tablet', 'Liza Life Sciences', 'Lizadef 6 Tablet', 'Q. What is Lizadef 6 Tablet used for?', 'Lizadef 6 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(26910, 'Lizadef 6 Tablet', 'Liza Life Sciences', 'Lizadef 6 Tablet', 'Q. How does Lizadef 6 Tablet work?', 'Lizadef 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(26911, 'Lizadef 6 Tablet', 'Liza Life Sciences', 'Lizadef 6 Tablet', 'Q. Is Lizadef 6 Tablet better than Prednisone?', 'Clinical studies have shown that Lizadef 6 Tablet has a similar effect as that of prednisone. Moreover, Lizadef 6 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(26912, 'Lizadef 6 Tablet', 'Liza Life Sciences', 'Lizadef 6 Tablet', 'Q. Is Lizadef 6 Tablet a painkiller?', 'No, Lizadef 6 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(26913, 'Lizadef 6 Tablet', 'Liza Life Sciences', 'Lizadef 6 Tablet', 'Q. Can I take Lizadef 6 Tablet with Tamsulosin?', 'Yes, Lizadef 6 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(26914, 'Lizado 600 Tablet', 'Ridgecure Pharma', 'Lizado 600 Tablet', 'Q. Can the use of Lizado 600 Tablet cause diarrhea?', 'Yes, the use of Lizado 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26915, 'Lizado 600 Tablet', 'Ridgecure Pharma', 'Lizado 600 Tablet', 'Q. What foods should I avoid while taking Lizado 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizado 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(26916, 'Lizamox-D 250mg/250mg Capsule', 'Elisa Biotech Pvt Ltd', 'Lizamox-D 250mg/250mg Capsule', 'How long does Lizamox-D 250mg/250mg Capsule takes to work?', 'Usually, Lizamox-D 250mg/250mg Capsule starts working soon after using it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(26917, 'Lizamox-D 250mg/250mg Capsule', 'Elisa Biotech Pvt Ltd', 'Lizamox-D 250mg/250mg Capsule', 'Can I stop taking Lizamox-D 250mg/250mg Capsule when I feel better?', 'No, do not stop taking Lizamox-D 250mg/250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(26918, 'Lizapride Plus Capsule SR', 'Alluvium Health Care Pvt Ltd', 'Lizapride Plus Capsule SR', 'Q. Which is the best time to take Lizapride Plus Capsule SR?', 'Take the Lizapride Plus Capsule SR exactly as directed by your doctor. It is best to take one capsule daily on an empty stomach.'),
(26919, 'Lizapride Plus Capsule SR', 'Alluvium Health Care Pvt Ltd', 'Lizapride Plus Capsule SR', 'Q. What are the contraindications associated with the use of Lizapride Plus Capsule SR?', 'Use of Lizapride Plus Capsule SR should be avoided in patients with known allergy to any of the components or excipients of this medicine.'),
(26920, 'Lizapride Plus Capsule SR', 'Alluvium Health Care Pvt Ltd', 'Lizapride Plus Capsule SR', 'Q. Can the use of Lizapride Plus Capsule SR cause dizziness?', 'Yes, the use of Lizapride Plus Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(26921, 'Lizapride Plus Capsule SR', 'Alluvium Health Care Pvt Ltd', 'Lizapride Plus Capsule SR', 'Q. Does the use of Lizapride Plus Capsule SR lead to increased risk of fractures?', 'Several studies in adults suggest that treatment with Lizapride Plus Capsule SR may be associated with an increased risk of osteoporosis-related fractures of the hip, wrist or spine. The risk of fracture was increased in patients who received high dose. High dose can mean multiple daily doses, and long-term therapy (a year or longer).'),
(26922, 'Lizapride Plus Capsule SR', 'Alluvium Health Care Pvt Ltd', 'Lizapride Plus Capsule SR', 'Q. Can I drive while taking Lizapride Plus Capsule SR?', 'No, taking Lizapride Plus Capsule SR may make you feel sleepy, dizzy or could affect your eyesight. So do not drive or use machines until you know how this medicine affects you.'),
(26923, 'Lizapride Plus Capsule SR', 'Alluvium Health Care Pvt Ltd', 'Lizapride Plus Capsule SR', 'Q. What are the instructions for the storage and disposal of Lizapride Plus Capsule SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26924, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'What is Lizar D 50mg/10mg Tablet?', 'Lizar D 50mg/10mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(26925, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'Is it safe to use Lizar D 50mg/10mg Tablet?', 'Yes, Lizar D 50mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(26926, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'Can I stop taking Lizar D 50mg/10mg Tablet when my pain is relieved?', 'Lizar D 50mg/10mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lizar D 50mg/10mg Tablet should be continued if  your physician has advised you to do so.'),
(26927, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'Can the use of Lizar D 50mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Lizar D 50mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(26928, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'Can the use of Lizar D 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Lizar D 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(26929, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Lizar D 50mg/10mg Tablet?', 'The use of Lizar D 50mg/10mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(26930, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'Can I take Lizar D 50mg/10mg Tablet with Vitamin B-complex?', 'Lizar D 50mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Lizar D 50mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(26931, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'Can I take Lizar D 50mg/10mg Tablet for stomach pain?', 'No, Lizar D 50mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(26932, 'Lizar D 50mg/10mg Tablet', 'Dewallace Pharmaceuticals', 'Lizar D 50mg/10mg Tablet', 'What is the storage condition for the Lizar D 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(26933, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'What if I give an excess of Lizemox Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(26934, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizemox Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(26935, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizemox Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizemox Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(26936, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'Can Lizemox Dry Syrup be given for a long duration?', 'Prolonged use of Lizemox Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(26937, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'Can other medicines be given at the same time as Lizemox Dry Syrup?', 'Lizemox Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizemox Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26938, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizemox Dry Syrup?', 'For children receiving Lizemox Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(26939, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'In which disease conditions should I avoid giving Lizemox Dry Syrup to my child?', 'Avoid giving Lizemox Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizemox Dry Syrup to your child.'),
(26940, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'What food items should my child avoid while taking Lizemox Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizemox Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(26941, 'Lizemox Dry Syrup', 'Molekule India Pvt Ltd', 'Lizemox Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizemox Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizemox Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(26942, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'What if I give an excess of Lizen 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(26943, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizen 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(26944, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizen 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizen 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(26945, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'Can Lizen 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizen 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(26946, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'Can other medicines be given at the same time as Lizen 100mg Dry Syrup?', 'Lizen 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizen 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(26947, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizen 100mg Dry Syrup?', 'For children receiving Lizen 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(26948, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lizen 100mg Dry Syrup to my child?', 'Avoid giving Lizen 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizen 100mg Dry Syrup to your child.'),
(26949, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'What food items should my child avoid while taking Lizen 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizen 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(26950, 'Lizen 100mg Dry Syrup', 'Efpia Medicine Private Limited', 'Lizen 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizen 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizen 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(26951, 'Lizen 450mg Tablet ER', 'Theo Pharma Pvt Ltd', 'Lizen 450mg Tablet ER', 'How quickly does Lizen 450mg Tablet ER work?', 'It takes some time before you see improvement in your symptoms after taking Lizen 450mg Tablet ER. Though it varies from person to person, it may take 1-3 weeks or longer for you to see the full benefits of Lizen 450mg Tablet ER. Do not stop taking Lizen 450mg Tablet ER if you feel you are not improving. Instead, discuss it with your doctor.'),
(26952, 'Lizen 450mg Tablet ER', 'Theo Pharma Pvt Ltd', 'Lizen 450mg Tablet ER', 'Does Lizen 450mg Tablet ER make you sleepy?', 'Yes, Lizen 450mg Tablet ER can cause nervous system disorders like sleepiness and dizziness and feeling confused. It can also cause rapid eye movements, blurred vision, or blind spots in your eyesight. If you experience any of these symptoms, consult your doctor. In addition, avoid driving or operating heavy machinery as it can be hazardous for you.'),
(26953, 'Lizen 450mg Tablet ER', 'Theo Pharma Pvt Ltd', 'Lizen 450mg Tablet ER', 'Is Lizen 450mg Tablet ER bad for kidneys?', 'Yes, Lizen 450mg Tablet ER may cause kidney problems. Lizen 450mg Tablet ER is not prescribed in patients who already have severe kidney impairment. The kidney problems may not be reversible and the symptoms include swollen ankles, passing a lot of urine and feeling thirsty. Before starting treatment with Lizen 450mg Tablet ER, your doctor will get blood tests done to see if your kidney function is normal. During Lizen 450mg Tablet ER therapy, any gradual or sudden changes in renal function, even within the normal range, may indicate the need for re-evaluation of treatment.'),
(26954, 'Lizen 450mg Tablet ER', 'Theo Pharma Pvt Ltd', 'Lizen 450mg Tablet ER', 'Can Lizen 450mg Tablet ER cause gain in weight?', 'Lizen 450mg Tablet ER can cause both weight gain or weight loss. You should keep a check on your weight during Lizen 450mg Tablet ER therapy. If you feel you are gaining or losing too much weight, consult your doctor who will assess whether the change in weight is due to Lizen 450mg Tablet ER or some other reason.'),
(26955, 'Lizen 450mg Tablet ER', 'Theo Pharma Pvt Ltd', 'Lizen 450mg Tablet ER', 'What is the most important information I should know about Lizen 450mg Tablet ER?', 'Lizen 450mg Tablet ER therapy should only be started if adequate facilities for assessing Lizen 450mg Tablet ER levels are available. This is because Lizen 450mg Tablet ER toxicity is related to increased levels of Lizen 450mg Tablet ER in blood. Lizen 450mg Tablet ER toxicity can even occur at dose which is effective for treatment. Therefore, your doctor may closely monitor your Lizen 450mg Tablet ER levels weekly until stabilization is achieved, then weekly for one month and then at monthly intervals thereafter.'),
(26956, 'Lizen 450mg Tablet ER', 'Theo Pharma Pvt Ltd', 'Lizen 450mg Tablet ER', 'How should Lizen 450mg Tablet ER be taken?', 'Take Lizen 450mg Tablet ER exactly as prescribed by your doctor. Check with your doctor if you are not sure. It is meant for oral administration and can be taken with or without food. However, if you start following a certain type of diet, talk to your doctor first. Any drastic changes in the amount of water you drink or amount of sodium (salt) in your diet may require more frequent monitoring of Lizen 450mg Tablet ER levels.'),
(26957, 'Lizen 450mg Tablet ER', 'Theo Pharma Pvt Ltd', 'Lizen 450mg Tablet ER', 'Which medicines decrease Lizen 450mg Tablet ER levels?', 'You should inform your doctor about the medicines you are taking before starting Lizen 450mg Tablet ER since many medicines interfere with the working of Lizen 450mg Tablet ER. Some medicines decrease the levels of Lizen 450mg Tablet ER in blood which means that it will not work well. These include theophylline (for asthma), caffeine, anything containing sodium bicarbonate, or a special group of diuretics (water tablets) called carbonic anhydrase inhibitors and urea used to treat skin conditions.'),
(26958, 'Lizen 600mg Tablet', 'Efpia Medicine Private Limited', 'Lizen 600mg Tablet', 'Can the use of Lizen 600mg Tablet cause diarrhea?', 'Yes, the use of Lizen 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26959, 'Lizen 600mg Tablet', 'Efpia Medicine Private Limited', 'Lizen 600mg Tablet', 'What foods should I avoid while taking Lizen 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizen 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(26960, 'Lizerton B6 Oral Solution', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution', 'How should I take Lizerton B6 Oral Solution?', 'Lizerton B6 Oral Solution should be taken as directed by the treating doctor. Always dilute the dosage recommended by your doctor with one glass of water, before taking it.'),
(26961, 'Lizerton B6 Oral Solution', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution', 'Who should not take Lizerton B6 Oral Solution?', 'Lizerton B6 Oral Solution should not be taken by people who suffer from high potassium levels (hyperkalemia) as it may lead to rise of potassium to even higher levels that can cause a cardiac arrest. Such people include those with chronic renal failure, uncontrolled diabetes mellitus, acute dehydration, those who do strenuous exercise, or suffer from adrenal insufficiency, extensive tissue breakdown, or those taking potassium-sparing agents (such as triamterene, spironolactone or amiloride). People with delayed gastric emptying, esophageal compression, intestinal obstruction or stricture, or those taking anticholinergic medications should also refrain from taking Lizerton B6 Oral Solution. People who have peptic ulcer disease, active urinary tract infection, or renal insufficiency (glomerular filtration rate of less than 0.7 ml/kg/min) should also not take Lizerton B6 Oral Solution. If you have any further doubts, please consult your doctor.'),
(26962, 'Lizerton B6 Oral Solution', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution', 'Can I take Lizerton B6 Oral Solution in pregnancy?', 'There is no clarity on the use of Lizerton B6 Oral Solution in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Lizerton B6 Oral Solution. You may take it only if prescribed by your doctor.'),
(26963, 'Lizerton B6 Oral Solution', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution', 'Are there any foods that may be avoided while taking Lizerton B6 Oral Solution?', 'Yes, certain foods containing high levels of potassium such as almonds, apricots, bananas, beans (lima, pinto, white), cantaloupe, carrot juice (canned), figs, grapefruit juice, halibut, milk, oat bran, potato (with skin), salmon, spinach, etc., must be avoided while taking Lizerton B6 Oral Solution. It is advised to consult a dietitian, to get a diet that suits your body requirements.'),
(26964, 'Lizerton B6 Oral Solution', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution', 'What should I tell my doctor before starting treatment with Lizerton B6 Oral Solution?', 'Before starting treatment with Lizerton B6 Oral Solution, tell your doctor if you have any other health problems, like kidney, stomach or heart-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are planning a baby, if you are pregnant or breastfeeding.'),
(26965, 'Lizerton B6 Oral Solution', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution', 'What medicines should I avoid while on treatment with Lizerton B6 Oral Solution?', 'Medicines containing containing potassium or those that raise potassium levels such as potassium-sparing diuretics, Angiotensin Receptor Blockers (ARBs such as irbesartan, valsartan, losartan and candesartan), Angiotensin-Converting Enzyme inhibitors (ACE inhibitors such as captopril, enalapril, lisinopril), Nonsteroidal anti-inflammatory drugs (NSAIDs such as ibuprofen), certain nutritional supplements, etc., must be stopped before starting treatment with Lizerton B6 Oral Solution. Let your doctor know if you are taking any medicines or supplements before taking Lizerton B6 Oral Solution.'),
(26966, 'Lizerton B6 Oral Solution Orange Sugar Free', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution Orange Sugar Free', 'How should I take Lizerton B6 Oral Solution Orange Sugar Free?', 'Lizerton B6 Oral Solution Orange Sugar Free should be taken as directed by the treating doctor. Always dilute the dosage recommended by your doctor with one glass of water, before taking it.'),
(26967, 'Lizerton B6 Oral Solution Orange Sugar Free', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution Orange Sugar Free', 'Who should not take Lizerton B6 Oral Solution Orange Sugar Free?', 'Lizerton B6 Oral Solution Orange Sugar Free should not be taken by people who suffer from high potassium levels (hyperkalemia) as it may lead to rise of potassium to even higher levels that can cause a cardiac arrest. Such people include those with chronic renal failure, uncontrolled diabetes mellitus, acute dehydration, those who do strenuous exercise, or suffer from adrenal insufficiency, extensive tissue breakdown, or those taking potassium-sparing agents (such as triamterene, spironolactone or amiloride). People with delayed gastric emptying, esophageal compression, intestinal obstruction or stricture, or those taking anticholinergic medications should also refrain from taking Lizerton B6 Oral Solution Orange Sugar Free. People who have peptic ulcer disease, active urinary tract infection, or renal insufficiency (glomerular filtration rate of less than 0.7 ml/kg/min) should also not take Lizerton B6 Oral Solution Orange Sugar Free. If you have any further doubts, please consult your doctor.'),
(26968, 'Lizerton B6 Oral Solution Orange Sugar Free', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution Orange Sugar Free', 'Can I take Lizerton B6 Oral Solution Orange Sugar Free in pregnancy?', 'There is no clarity on the use of Lizerton B6 Oral Solution Orange Sugar Free in pregnancy. However, if you are pregnant or planning to conceive, consult your doctor before taking Lizerton B6 Oral Solution Orange Sugar Free. You may take it only if prescribed by your doctor.'),
(26969, 'Lizerton B6 Oral Solution Orange Sugar Free', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution Orange Sugar Free', 'Are there any foods that may be avoided while taking Lizerton B6 Oral Solution Orange Sugar Free?', 'Yes, certain foods containing high levels of potassium such as almonds, apricots, bananas, beans (lima, pinto, white), cantaloupe, carrot juice (canned), figs, grapefruit juice, halibut, milk, oat bran, potato (with skin), salmon, spinach, etc., must be avoided while taking Lizerton B6 Oral Solution Orange Sugar Free. It is advised to consult a dietitian, to get a diet that suits your body requirements.'),
(26970, 'Lizerton B6 Oral Solution Orange Sugar Free', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution Orange Sugar Free', 'What should I tell my doctor before starting treatment with Lizerton B6 Oral Solution Orange Sugar Free?', 'Before starting treatment with Lizerton B6 Oral Solution Orange Sugar Free, tell your doctor if you have any other health problems, like kidney, stomach or heart-related issues. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are planning a baby, if you are pregnant or breastfeeding.'),
(26971, 'Lizerton B6 Oral Solution Orange Sugar Free', 'Samarth Life Sciences Pvt Ltd', 'Lizerton B6 Oral Solution Orange Sugar Free', 'What medicines should I avoid while on treatment with Lizerton B6 Oral Solution Orange Sugar Free?', 'Medicines containing containing potassium or those that raise potassium levels such as potassium-sparing diuretics, Angiotensin Receptor Blockers (ARBs such as irbesartan, valsartan, losartan and candesartan), Angiotensin-Converting Enzyme inhibitors (ACE inhibitors such as captopril, enalapril, lisinopril), Nonsteroidal anti-inflammatory drugs (NSAIDs such as ibuprofen), certain nutritional supplements, etc., must be stopped before starting treatment with Lizerton B6 Oral Solution Orange Sugar Free. Let your doctor know if you are taking any medicines or supplements before taking Lizerton B6 Oral Solution Orange Sugar Free.'),
(26972, 'Lizet 5mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lizet 5mg Tablet', 'Is Lizet 5mg Tablet a steroid? What is it used for?', 'No, Lizet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26973, 'Lizet 5mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lizet 5mg Tablet', 'Does Lizet 5mg Tablet make you tired and drowsy?', 'Yes, Lizet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26974, 'Lizet 5mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lizet 5mg Tablet', 'How long does it take for Lizet 5mg Tablet to work?', 'Lizet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26975, 'Lizet 5mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lizet 5mg Tablet', 'Can I take Lizet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26976, 'Lizet 5mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lizet 5mg Tablet', 'Is it safe to take Lizet 5mg Tablet for a long time?', 'Lizet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizet 5mg Tablet for only as long as you need it.'),
(26977, 'Lizet 5mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lizet 5mg Tablet', 'For how long should I continue Lizet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lizet 5mg Tablet'),
(26978, 'Lizet Tablet', 'Aziva Laboratories Pvt Ltd', 'Lizet Tablet', 'Is Lizet Tablet a steroid? What is it used for?', 'No, Lizet Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26979, 'Lizet Tablet', 'Aziva Laboratories Pvt Ltd', 'Lizet Tablet', 'Does Lizet Tablet make you tired and drowsy?', 'Yes, Lizet Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26980, 'Lizet Tablet', 'Aziva Laboratories Pvt Ltd', 'Lizet Tablet', 'How long does it take for Lizet Tablet to work?', 'Lizet Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26981, 'Lizet Tablet', 'Aziva Laboratories Pvt Ltd', 'Lizet Tablet', 'Can I take Lizet Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizet Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26982, 'Lizet Tablet', 'Aziva Laboratories Pvt Ltd', 'Lizet Tablet', 'Is it safe to take Lizet Tablet for a long time?', 'Lizet Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizet Tablet for only as long as you need it.'),
(26983, 'Lizet Tablet', 'Aziva Laboratories Pvt Ltd', 'Lizet Tablet', 'For how long should I continue Lizet Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizet Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lizet Tablet'),
(26984, 'Lizgo 600 Tablet', 'Salsim Pharma Pvt Ltd', 'Lizgo 600 Tablet', 'Can the use of Lizgo 600 Tablet cause diarrhea?', 'Yes, the use of Lizgo 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(26985, 'Lizgo 600 Tablet', 'Salsim Pharma Pvt Ltd', 'Lizgo 600 Tablet', 'What foods should I avoid while taking Lizgo 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizgo 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(26986, 'Lizi 5mg Tablet MD', 'Truwin Pharmaceuticals Pvt Ltd', 'Lizi 5mg Tablet MD', 'Is Lizi 5mg Tablet MD a steroid? What is it used for?', 'No, Lizi 5mg Tablet MD is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(26987, 'Lizi 5mg Tablet MD', 'Truwin Pharmaceuticals Pvt Ltd', 'Lizi 5mg Tablet MD', 'Does Lizi 5mg Tablet MD make you tired and drowsy?', 'Yes, Lizi 5mg Tablet MD can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(26988, 'Lizi 5mg Tablet MD', 'Truwin Pharmaceuticals Pvt Ltd', 'Lizi 5mg Tablet MD', 'How long does it take for Lizi 5mg Tablet MD to work?', 'Lizi 5mg Tablet MD starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(26989, 'Lizi 5mg Tablet MD', 'Truwin Pharmaceuticals Pvt Ltd', 'Lizi 5mg Tablet MD', 'Can I take Lizi 5mg Tablet MD and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizi 5mg Tablet MD during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(26990, 'Lizi 5mg Tablet MD', 'Truwin Pharmaceuticals Pvt Ltd', 'Lizi 5mg Tablet MD', 'Is it safe to take Lizi 5mg Tablet MD for a long time?', 'Lizi 5mg Tablet MD is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizi 5mg Tablet MD for only as long as you need it.'),
(26991, 'Lizi 5mg Tablet MD', 'Truwin Pharmaceuticals Pvt Ltd', 'Lizi 5mg Tablet MD', 'For how long should I continue Lizi 5mg Tablet MD?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizi 5mg Tablet MD for a longer time. Talk to your doctor if you are unsure about the duration of using Lizi 5mg Tablet MD'),
(26992, 'Lizi M 5mg/10mg Tablet', 'Radius Healthcare Pvt Ltd', 'Lizi M 5mg/10mg Tablet', 'What is Lizi M 5mg/10mg Tablet?', 'Lizi M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(26993, 'Lizi M 5mg/10mg Tablet', 'Radius Healthcare Pvt Ltd', 'Lizi M 5mg/10mg Tablet', 'Can the use of Lizi M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lizi M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(26994, 'Lizi M 5mg/10mg Tablet', 'Radius Healthcare Pvt Ltd', 'Lizi M 5mg/10mg Tablet', 'Can Lizi M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lizi M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(26995, 'Lizi M 5mg/10mg Tablet', 'Radius Healthcare Pvt Ltd', 'Lizi M 5mg/10mg Tablet', 'Can the use of Lizi M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lizi M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(26996, 'Lizi M 5mg/10mg Tablet', 'Radius Healthcare Pvt Ltd', 'Lizi M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lizi M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lizi M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lizi M 5mg/10mg Tablet.'),
(26997, 'Lizi M 5mg/10mg Tablet', 'Radius Healthcare Pvt Ltd', 'Lizi M 5mg/10mg Tablet', 'Will Lizi M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lizi M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(26998, 'Lizi M 5mg/10mg Tablet', 'Radius Healthcare Pvt Ltd', 'Lizi M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lizi M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(26999, 'Lizic M 5mg/10mg Tablet', 'Cause & Cure Pvt Ltd', 'Lizic M 5mg/10mg Tablet', 'What is Lizic M 5mg/10mg Tablet?', 'Lizic M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27000, 'Lizic M 5mg/10mg Tablet', 'Cause & Cure Pvt Ltd', 'Lizic M 5mg/10mg Tablet', 'Can the use of Lizic M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lizic M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27001, 'Lizic M 5mg/10mg Tablet', 'Cause & Cure Pvt Ltd', 'Lizic M 5mg/10mg Tablet', 'Can Lizic M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lizic M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27002, 'Lizic M 5mg/10mg Tablet', 'Cause & Cure Pvt Ltd', 'Lizic M 5mg/10mg Tablet', 'Can the use of Lizic M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lizic M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27003, 'Lizic M 5mg/10mg Tablet', 'Cause & Cure Pvt Ltd', 'Lizic M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lizic M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lizic M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lizic M 5mg/10mg Tablet.'),
(27004, 'Lizic M 5mg/10mg Tablet', 'Cause & Cure Pvt Ltd', 'Lizic M 5mg/10mg Tablet', 'Will Lizic M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lizic M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27005, 'Lizic M 5mg/10mg Tablet', 'Cause & Cure Pvt Ltd', 'Lizic M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lizic M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27006, 'Lizidox LB Capsule', 'Dermacia Healthcare', 'Lizidox LB Capsule', 'What is Lizidox LB Capsule?', 'Lizidox LB Capsule is a combination of two medicines: Doxycycline and Lactobacillus. Doxycycline is an antibiotic medicine belonging to the class called \'__\'tetracyclines”. It is used to treat bacterial infections in many different parts of the body. On the other hand, Lactobacillus is a live microorganism which restores the balance of good bacteria in the intestine that may get upset with the use of antibiotics.'),
(27007, 'Lizidox LB Capsule', 'Dermacia Healthcare', 'Lizidox LB Capsule', 'Can I drink milk while taking Lizidox LB Capsule?', 'No, you should avoid using milk and milk products while taking Lizidox LB Capsule. Consuming dairy products along with Lizidox LB Capsule can decrease its absorption from the stomach, which may lead to inadequate affect of this medicine.'),
(27008, 'Lizidox LB Capsule', 'Dermacia Healthcare', 'Lizidox LB Capsule', 'What is the recommended storage condition for Lizidox LB Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27009, 'Lizidox LB Capsule', 'Dermacia Healthcare', 'Lizidox LB Capsule', 'How long after taking Lizidox LB Capsule can I eat?', 'It is best to wait for 2 hours after consuming Lizidox LB Capsule. Consuming food along with Lizidox LB Capsule may decrease its absorption from the stomach.'),
(27010, 'Lizidox LB Capsule', 'Dermacia Healthcare', 'Lizidox LB Capsule', 'Can I take Lizidox LB Capsule with food if its causing stomach upset?', 'Yes, you can take Lizidox LB Capsule with food if its causing you stomach upset. However, avoid consuming milk and milk products 1 hr before and 2 hr after taking this medicine.'),
(27011, 'Lizid-T 1000mg/125mg Injection', 'Veliko Pharmacls', 'Lizid-T 1000mg/125mg Injection', 'Can the use of Lizid-T 1000mg/125mg Injection cause diarrhea?', 'Yes, the use of Lizid-T 1000mg/125mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27012, 'Lizid-T 1000mg/125mg Injection', 'Veliko Pharmacls', 'Lizid-T 1000mg/125mg Injection', 'How long does Lizid-T 1000mg/125mg Injection takes to work?', 'Usually, Lizid-T 1000mg/125mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(27013, 'Lizid-T 1000mg/125mg Injection', 'Veliko Pharmacls', 'Lizid-T 1000mg/125mg Injection', 'What if I don\'t get better after using Lizid-T 1000mg/125mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(27014, 'Lizimed 5mg Tablet', 'Exmed Health Care', 'Lizimed 5mg Tablet', 'Is Lizimed 5mg Tablet a steroid? What is it used for?', 'No, Lizimed 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(27015, 'Lizimed 5mg Tablet', 'Exmed Health Care', 'Lizimed 5mg Tablet', 'Does Lizimed 5mg Tablet make you tired and drowsy?', 'Yes, Lizimed 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(27016, 'Lizimed 5mg Tablet', 'Exmed Health Care', 'Lizimed 5mg Tablet', 'How long does it take for Lizimed 5mg Tablet to work?', 'Lizimed 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(27017, 'Lizimed 5mg Tablet', 'Exmed Health Care', 'Lizimed 5mg Tablet', 'Can I take Lizimed 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizimed 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(27018, 'Lizimed 5mg Tablet', 'Exmed Health Care', 'Lizimed 5mg Tablet', 'Is it safe to take Lizimed 5mg Tablet for a long time?', 'Lizimed 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizimed 5mg Tablet for only as long as you need it.'),
(27019, 'Lizimed 5mg Tablet', 'Exmed Health Care', 'Lizimed 5mg Tablet', 'For how long should I continue Lizimed 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizimed 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lizimed 5mg Tablet'),
(27020, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27021, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'Can I decrease the dose of Lizimont Oral Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27022, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'How should Lizimont Oral Suspension be stored?', 'Lizimont Oral Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27023, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'Can Lizimont Oral Suspension make my child sleepy?', 'Lizimont Oral Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27024, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lizimont Oral Suspension?', 'No, don’t start Lizimont Oral Suspension without speaking to your child’s doctor. Moreover, Lizimont Oral Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27025, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lizimont Oral Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27026, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'My child is suffering from a mood disorder. Is it safe to give Lizimont Oral Suspension to my child?', 'Some studies show that Lizimont Oral Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27027, 'Lizimont Oral Suspension', 'Medley Pharmaceuticals', 'Lizimont Oral Suspension', 'Can I use Lizimont Oral Suspension for treating acute asthma attacks in my child?', 'Lizimont Oral Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27028, 'Lizine 5mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Lizine 5mg Tablet', 'Is Lizine 5mg Tablet a steroid? What is it used for?', 'No, Lizine 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(27029, 'Lizine 5mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Lizine 5mg Tablet', 'Does Lizine 5mg Tablet make you tired and drowsy?', 'Yes, Lizine 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(27030, 'Lizine 5mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Lizine 5mg Tablet', 'How long does it take for Lizine 5mg Tablet to work?', 'Lizine 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(27031, 'Lizine 5mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Lizine 5mg Tablet', 'Can I take Lizine 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizine 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(27032, 'Lizine 5mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Lizine 5mg Tablet', 'Is it safe to take Lizine 5mg Tablet for a long time?', 'Lizine 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizine 5mg Tablet for only as long as you need it.'),
(27033, 'Lizine 5mg Tablet', 'Plenteous Pharmaceuticals Ltd', 'Lizine 5mg Tablet', 'For how long should I continue Lizine 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizine 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lizine 5mg Tablet'),
(27034, 'Lizine M 5mg/10mg Tablet', 'Mak Pharmaceuticals', 'Lizine M 5mg/10mg Tablet', 'What is Lizine M 5mg/10mg Tablet?', 'Lizine M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27035, 'Lizine M 5mg/10mg Tablet', 'Mak Pharmaceuticals', 'Lizine M 5mg/10mg Tablet', 'Can the use of Lizine M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lizine M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27036, 'Lizine M 5mg/10mg Tablet', 'Mak Pharmaceuticals', 'Lizine M 5mg/10mg Tablet', 'Can Lizine M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lizine M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27037, 'Lizine M 5mg/10mg Tablet', 'Mak Pharmaceuticals', 'Lizine M 5mg/10mg Tablet', 'Can the use of Lizine M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lizine M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27038, 'Lizine M 5mg/10mg Tablet', 'Mak Pharmaceuticals', 'Lizine M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lizine M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lizine M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lizine M 5mg/10mg Tablet.'),
(27039, 'Lizine M 5mg/10mg Tablet', 'Mak Pharmaceuticals', 'Lizine M 5mg/10mg Tablet', 'Will Lizine M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lizine M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27040, 'Lizine M 5mg/10mg Tablet', 'Mak Pharmaceuticals', 'Lizine M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lizine M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27041, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27042, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'Can I decrease the dose of Lizine M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27043, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'How should Lizine M Syrup be stored?', 'Lizine M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27044, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'Can Lizine M Syrup make my child sleepy?', 'Lizine M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27045, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lizine M Syrup?', 'No, don’t start Lizine M Syrup without speaking to your child’s doctor. Moreover, Lizine M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27046, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lizine M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27047, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lizine M Syrup to my child?', 'Some studies show that Lizine M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27048, 'Lizine M Syrup', 'Mak Pharmaceuticals', 'Lizine M Syrup', 'Can I use Lizine M Syrup for treating acute asthma attacks in my child?', 'Lizine M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27049, 'Lizintas 200mg Syrup', 'Intas Pharmaceuticals Ltd', 'Lizintas 200mg Syrup', 'Can the use of Lizintas 200mg Syrup cause diarrhea?', 'Yes, the use of Lizintas 200mg Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27050, 'Lizintas 200mg Syrup', 'Intas Pharmaceuticals Ltd', 'Lizintas 200mg Syrup', 'What foods should I avoid while taking Lizintas 200mg Syrup?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizintas 200mg Syrup can result in elevation of blood pressure, which may result in an emergency situation.'),
(27051, 'Lizintas 600mg Syrup', 'Intas Pharmaceuticals Ltd', 'Lizintas 600mg Syrup', 'Can the use of Lizintas 600mg Syrup cause diarrhea?', 'Yes, the use of Lizintas 600mg Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27052, 'Lizintas 600mg Syrup', 'Intas Pharmaceuticals Ltd', 'Lizintas 600mg Syrup', 'What foods should I avoid while taking Lizintas 600mg Syrup?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizintas 600mg Syrup can result in elevation of blood pressure, which may result in an emergency situation.'),
(27053, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. What if I give too much of Lizithro 200mg Syrup by mistake?', 'Lizithro 200mg Syrup is unlikely to cause any harm if an extra dose is given by mistake. However, if you think you have given too much of Lizithro 200mg Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(27054, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Are there any possible serious side effects of Lizithro 200mg Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(27055, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Can other medicines be given at the same time as Lizithro 200mg Syrup?', 'Lizithro 200mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizithro 200mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27056, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Can I get my child vaccinated while on treatment with Lizithro 200mg Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(27057, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Which all lab tests should my child undergo while taking Lizithro 200mg Syrup on a long term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(27058, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Can Lizithro 200mg Syrup impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking medicines. When antibiotics are given, the good bacteria in their gastrointestinal tract may too get affected.  Lizithro 200mg Syrup may kill off good bacteria along with the bad ones, increasing your child’s risk of developing other infections. So, in case your child is having diarrhea while on Lizithro 200mg Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask the next steps. In some cases, the doctor may alter the dose.'),
(27059, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Why is Lizithro 200mg Syrup given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lizithro 200mg Syrup is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regimen advised by your doctor.'),
(27060, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. What should I avoid while taking Lizithro 200mg Syrup?', 'Generally, it is recommended that patients taking Lizithro 200mg Syrup should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lizithro 200mg Syrup. It is also recommended to avoid exposure to sunlight or tanning beds as Lizithro 200mg Syrup increases the risk of sunburn.'),
(27061, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Is Lizithro 200mg Syrup a strong antibiotic?', 'Lizithro 200mg Syrup is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lizithro 200mg Syrup has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(27062, 'Lizithro 200mg Syrup', 'Syntonic Lifesciences', 'Lizithro 200mg Syrup', 'Q. Can you get a yeast infection from taking Lizithro 200mg Syrup?', 'Some people may get a fungal or yeast infection known as thrush after taking Lizithro 200mg Syrup. Antibiotics such as Lizithro 200mg Syrup can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lizithro 200mg Syrup or soon after stopping it.'),
(27063, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'What if I give too much of Lizithro Syrup 100mg by mistake?', 'Lizithro Syrup 100mg is unlikely to cause any harm if an extra dose is given by mistake. However, if you think you have given too much of Lizithro Syrup 100mg to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(27064, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Are there any possible serious side effects of Lizithro Syrup 100mg?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(27065, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Can other medicines be given at the same time as Lizithro Syrup 100mg?', 'Lizithro Syrup 100mg can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizithro Syrup 100mg. Also, check with your child’s doctor before giving any medicine to your child.'),
(27066, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Can I get my child vaccinated while on treatment with Lizithro Syrup 100mg?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(27067, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Which all lab tests should my child undergo while taking Lizithro Syrup 100mg on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(27068, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Can Lizithro Syrup 100mg impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking medicines. When antibiotics are given, the good bacteria in their gastrointestinal tract may too get affected.  Lizithro Syrup 100mg may kill off good bacteria along with the bad ones, increasing your child’s risk of developing other infections. So, in case your child is having diarrhea while on Lizithro Syrup 100mg, do not stop the medicine course. Instead, call your child’s doctor to ask the next steps. In some cases, the doctor may alter the dose.'),
(27069, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Why is Lizithro Syrup 100mg given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lizithro Syrup 100mg is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regimen advised by your doctor.'),
(27070, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'What should I avoid while taking Lizithro Syrup 100mg?', 'Generally, it is recommended that patients taking Lizithro Syrup 100mg should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lizithro Syrup 100mg. It is also recommended to avoid exposure to sunlight or tanning beds as Lizithro Syrup 100mg increases the risk of sunburn.'),
(27071, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Is Lizithro Syrup 100mg a strong antibiotic?', 'Lizithro Syrup 100mg is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lizithro Syrup 100mg has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(27072, 'Lizithro Syrup 100mg', 'Syntonic Lifesciences', 'Lizithro Syrup 100mg', 'Can you get a yeast infection from taking Lizithro Syrup 100mg?', 'Some people may get a fungal or yeast infection known as thrush after taking Lizithro Syrup 100mg. Antibiotics such as Lizithro Syrup 100mg can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lizithro Syrup 100mg or soon after stopping it.'),
(27073, 'Lizivox 5mg Tablet', 'Voxiva Pharmaceuticals', 'Lizivox 5mg Tablet', 'Is Lizivox 5mg Tablet a steroid? What is it used for?', 'No, Lizivox 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(27074, 'Lizivox 5mg Tablet', 'Voxiva Pharmaceuticals', 'Lizivox 5mg Tablet', 'Does Lizivox 5mg Tablet make you tired and drowsy?', 'Yes, Lizivox 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(27075, 'Lizivox 5mg Tablet', 'Voxiva Pharmaceuticals', 'Lizivox 5mg Tablet', 'How long does it take for Lizivox 5mg Tablet to work?', 'Lizivox 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(27076, 'Lizivox 5mg Tablet', 'Voxiva Pharmaceuticals', 'Lizivox 5mg Tablet', 'Can I take Lizivox 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizivox 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(27077, 'Lizivox 5mg Tablet', 'Voxiva Pharmaceuticals', 'Lizivox 5mg Tablet', 'Is it safe to take Lizivox 5mg Tablet for a long time?', 'Lizivox 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizivox 5mg Tablet for only as long as you need it.'),
(27078, 'Lizivox 5mg Tablet', 'Voxiva Pharmaceuticals', 'Lizivox 5mg Tablet', 'For how long should I continue Lizivox 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizivox 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lizivox 5mg Tablet'),
(27079, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'What is Liz-M Tablet SR?', 'Liz-M Tablet SR is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(27080, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'What are the possible side effects of Liz-M Tablet SR?', 'The use of Liz-M Tablet SR is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(27081, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'Can the use of Liz-M Tablet SR cause hypoglycemia?', 'Yes, the use of Liz-M Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(27082, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'Can the use of Liz-M Tablet SR cause lactic acidosis?', 'Yes, the use of Liz-M Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin associated lactic acidosis). It is a rare side effect associated with the use of metformin. It is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Liz-M Tablet SR and immediately consult your doctor.'),
(27083, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'Can the use of Liz-M Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Liz-M Tablet SR can cause vitamin B12 deficiency on long-term use. The deficiency occurs as the medicine interferes with absorption of vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can have tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(27084, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'Are there any specific conditions in which Liz-M Tablet SR should not to be taken?', 'The use of Liz-M Tablet SR should be avoided in patients with known allergy to any of the component or excipients of this medicine. It is also avoided in patients with moderate to severe kidney disease or with underlying metabolic acidosis including diabetic ketoacidosis.'),
(27085, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'Is it safe to take alcohol while I am also taking Liz-M Tablet SR?', 'No, it is not safe to take alcohol along with Liz-M Tablet SR. It may lower your low blood sugar levels (hypoglycemia) and can increase the chances of lactic acidosis.'),
(27086, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'What is Liz-M Tablet SR?', 'Liz-M Tablet SR is a combination of two medicines: Gliclazide and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Gliclazide lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of Type 1 DM.'),
(27087, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'What are the possible side effects of Liz-M Tablet SR?', 'The use of Liz-M Tablet SR is associated with common side effects. These side effects may include hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to vitamin B12 deficiency.'),
(27088, 'Liz-M Tablet SR', 'Deys Medical', 'Liz-M Tablet SR', 'Can the use of Liz-M Tablet SR cause hypoglycemia?', 'Yes, the use of Liz-M Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always keep glucose tablets, honey or fruit juice with you.'),
(27089, 'Lizmect 6mg Tablet', 'Syntonic Lifesciences', 'Lizmect 6mg Tablet', 'What is Lizmect 6mg Tablet? What is it used for?', 'Lizmect 6mg Tablet belongs to a class of medicines known as ectoparasiticides. It helps to treat many types of parasite infections, including head lice, scabies, river blindness (onchocerciasis), certain types of diarrhea (strongyloidiasis) and some other worm infections. It can be taken by mouth or applied to the skin for external infestations.'),
(27090, 'Lizmect 6mg Tablet', 'Syntonic Lifesciences', 'Lizmect 6mg Tablet', 'Is Lizmect 6mg Tablet effective?', 'Lizmect 6mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. It is important to complete the full course of treatment. Stopping the use of Lizmect 6mg Tablet may cause the symptoms to return or even worsen.'),
(27091, 'Lizmect 6mg Tablet', 'Syntonic Lifesciences', 'Lizmect 6mg Tablet', 'Is Lizmect 6mg Tablet available over the counter?', 'No, Lizmect 6mg Tablet is not available over the counter. It can only be taken if prescribed by a doctor. Do not self-medicate to avoid any side effects. Take it only under the supervision of a healthcare professional to get the maximum benefit of Lizmect 6mg Tablet.'),
(27092, 'Lizmect 6mg Tablet', 'Syntonic Lifesciences', 'Lizmect 6mg Tablet', 'How does Lizmect 6mg Tablet work?', 'Lizmect 6mg Tablet works by first paralyzing and then later killing the infection-causing organisms. This also helps in slowing down the multiplication rate of the causative organisms, thereby accelerating the healing process. This whole process helps in treating the infection.'),
(27093, 'Lizmect 6mg Tablet', 'Syntonic Lifesciences', 'Lizmect 6mg Tablet', 'What if I forget to take a dose of Lizmect 6mg Tablet?', 'If you forget a dose of Lizmect 6mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(27094, 'Lizmect 6mg Tablet', 'Syntonic Lifesciences', 'Lizmect 6mg Tablet', 'Is Lizmect 6mg Tablet safe?', 'Lizmect 6mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(27095, 'Lizmep D 30mg/20mg Capsule SR', 'Syntonic Lifesciences', 'Lizmep D 30mg/20mg Capsule SR', 'Is it safe to use Lizmep D 30mg/20mg Capsule SR?', 'Yes, Lizmep D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(27096, 'Lizmep D 30mg/20mg Capsule SR', 'Syntonic Lifesciences', 'Lizmep D 30mg/20mg Capsule SR', 'What are the contraindications of Lizmep D 30mg/20mg Capsule SR?', 'The use of Lizmep D 30mg/20mg Capsule SR is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27097, 'Lizmep D 30mg/20mg Capsule SR', 'Syntonic Lifesciences', 'Lizmep D 30mg/20mg Capsule SR', 'What is the best time to take Lizmep D 30mg/20mg Capsule SR?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(27098, 'Lizmep D 30mg/20mg Capsule SR', 'Syntonic Lifesciences', 'Lizmep D 30mg/20mg Capsule SR', 'Can the use of Lizmep D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Lizmep D 30mg/20mg Capsule SR can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(27099, 'Lizmep D 30mg/20mg Capsule SR', 'Syntonic Lifesciences', 'Lizmep D 30mg/20mg Capsule SR', 'Does the use of Lizmep D 30mg/20mg Capsule SR lead to dry mouth?', 'Yes, the use of Lizmep D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(27100, 'Lizmep D 30mg/20mg Capsule SR', 'Syntonic Lifesciences', 'Lizmep D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Lizmep D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27101, 'Lizo 5mg Tablet', 'Ambreyo Lifesciences', 'Lizo 5mg Tablet', 'Is Lizo 5mg Tablet a steroid? What is it used for?', 'No, Lizo 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(27102, 'Lizo 5mg Tablet', 'Ambreyo Lifesciences', 'Lizo 5mg Tablet', 'Does Lizo 5mg Tablet make you tired and drowsy?', 'Yes, Lizo 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(27103, 'Lizo 5mg Tablet', 'Ambreyo Lifesciences', 'Lizo 5mg Tablet', 'How long does it take for Lizo 5mg Tablet to work?', 'Lizo 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(27104, 'Lizo 5mg Tablet', 'Ambreyo Lifesciences', 'Lizo 5mg Tablet', 'Can I take Lizo 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lizo 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(27105, 'Lizo 5mg Tablet', 'Ambreyo Lifesciences', 'Lizo 5mg Tablet', 'Is it safe to take Lizo 5mg Tablet for a long time?', 'Lizo 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lizo 5mg Tablet for only as long as you need it.'),
(27106, 'Lizo 5mg Tablet', 'Ambreyo Lifesciences', 'Lizo 5mg Tablet', 'For how long should I continue Lizo 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lizo 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lizo 5mg Tablet'),
(27107, 'Lizo M 5mg/10mg Tablet', 'Ambreyo Lifesciences', 'Lizo M 5mg/10mg Tablet', 'What is Lizo M 5mg/10mg Tablet?', 'Lizo M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27108, 'Lizo M 5mg/10mg Tablet', 'Ambreyo Lifesciences', 'Lizo M 5mg/10mg Tablet', 'Can the use of Lizo M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lizo M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27109, 'Lizo M 5mg/10mg Tablet', 'Ambreyo Lifesciences', 'Lizo M 5mg/10mg Tablet', 'Can Lizo M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lizo M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27110, 'Lizo M 5mg/10mg Tablet', 'Ambreyo Lifesciences', 'Lizo M 5mg/10mg Tablet', 'Can the use of Lizo M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lizo M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27111, 'Lizo M 5mg/10mg Tablet', 'Ambreyo Lifesciences', 'Lizo M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lizo M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lizo M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lizo M 5mg/10mg Tablet.'),
(27112, 'Lizo M 5mg/10mg Tablet', 'Ambreyo Lifesciences', 'Lizo M 5mg/10mg Tablet', 'Will Lizo M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lizo M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27113, 'Lizo M 5mg/10mg Tablet', 'Ambreyo Lifesciences', 'Lizo M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lizo M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27114, 'Lizobact 0.05%/0.5%/2% Ointment', 'Elisa Biotech Pvt Ltd', 'Lizobact 0.05%/0.5%/2% Ointment', 'Can I stop using Lizobact 0.05%/0.5%/2% Ointment when my symptoms are relieved?', 'No, do not stop using Lizobact 0.05%/0.5%/2% Ointment without consulting your doctor. Use Lizobact 0.05%/0.5%/2% Ointment in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(27115, 'Lizobact 0.05%/0.5%/2% Ointment', 'Elisa Biotech Pvt Ltd', 'Lizobact 0.05%/0.5%/2% Ointment', 'What precautions should I take while using Lizobact 0.05%/0.5%/2% Ointment?', 'Lizobact 0.05%/0.5%/2% Ointment should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(27116, 'Lizobact 0.05%/0.5%/2% Ointment', 'Elisa Biotech Pvt Ltd', 'Lizobact 0.05%/0.5%/2% Ointment', 'How to use Lizobact 0.05%/0.5%/2% Ointment?', 'Lizobact 0.05%/0.5%/2% Ointment should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lizobact 0.05%/0.5%/2% Ointment unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(27117, 'Lizobact 0.05%/0.5%/2% Ointment', 'Elisa Biotech Pvt Ltd', 'Lizobact 0.05%/0.5%/2% Ointment', 'What would happen if I use a higher than the recommended dose of Lizobact 0.05%/0.5%/2% Ointment for long periods?', 'Lizobact 0.05%/0.5%/2% Ointment should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(27118, 'Lizobact 0.05%/0.5%/2% Ointment', 'Elisa Biotech Pvt Ltd', 'Lizobact 0.05%/0.5%/2% Ointment', 'What are the contraindications associated with the use of Lizobact 0.05%/0.5%/2% Ointment?', 'Use of Lizobact 0.05%/0.5%/2% Ointment is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(27119, 'Lizobact 0.05%/0.5%/2% Ointment', 'Elisa Biotech Pvt Ltd', 'Lizobact 0.05%/0.5%/2% Ointment', 'What are the instructions for the storage of Lizobact 0.05%/0.5%/2% Ointment?', 'Lizobact 0.05%/0.5%/2% Ointment should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(27120, 'Lizobact 600mg Tablet', 'Signova Pharma Pvt Ltd', 'Lizobact 600mg Tablet', 'Can the use of Lizobact 600mg Tablet cause diarrhea?', 'Yes, the use of Lizobact 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27121, 'Lizobact 600mg Tablet', 'Signova Pharma Pvt Ltd', 'Lizobact 600mg Tablet', 'What foods should I avoid while taking Lizobact 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizobact 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27122, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'What if I give an excess of Lizobact Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27123, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizobact Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27124, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'What should I do if my child shows no improvement even after taking Lizobact Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lizobact Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27125, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'Can Lizobact Oral Suspension be given for a long duration?', 'Prolonged use of Lizobact Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27126, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'Can other medicines be given at the same time as Lizobact Oral Suspension?', 'Lizobact Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizobact Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(27127, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Lizobact Oral Suspension?', 'For children receiving Lizobact Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27128, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'In which disease conditions should I avoid giving Lizobact Oral Suspension to my child?', 'Avoid giving Lizobact Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizobact Oral Suspension to your child.'),
(27129, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'What food items should my child avoid while taking Lizobact Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizobact Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27130, 'Lizobact Oral Suspension', 'Innovative Pharmaceuticals', 'Lizobact Oral Suspension', 'Can I get my child vaccinated while on treatment with Lizobact Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Lizobact Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27131, 'Lizobert 600 Tablet', 'Hilbert Healthcare', 'Lizobert 600 Tablet', 'Can the use of Lizobert 600 Tablet cause diarrhea?', 'Yes, the use of Lizobert 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27132, 'Lizobert 600 Tablet', 'Hilbert Healthcare', 'Lizobert 600 Tablet', 'What foods should I avoid while taking Lizobert 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizobert 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27133, 'Lizobert 600mg Tablet', 'Hilbert Healthcare', 'Lizobert 600mg Tablet', 'Can the use of Lizobert 600mg Tablet cause diarrhea?', 'Yes, the use of Lizobert 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27134, 'Lizobert 600mg Tablet', 'Hilbert Healthcare', 'Lizobert 600mg Tablet', 'What foods should I avoid while taking Lizobert 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizobert 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27135, 'Lizobest 600mg Tablet', 'Tabq Therapeutics', 'Lizobest 600mg Tablet', 'Can the use of Lizobest 600mg Tablet cause diarrhea?', 'Yes, the use of Lizobest 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27136, 'Lizobest 600mg Tablet', 'Tabq Therapeutics', 'Lizobest 600mg Tablet', 'What foods should I avoid while taking Lizobest 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizobest 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27137, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'What if I give an excess of Lizobet 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27138, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizobet 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27139, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizobet 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizobet 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27140, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'Can Lizobet 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizobet 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27141, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'Can other medicines be given at the same time as Lizobet 100mg Dry Syrup?', 'Lizobet 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizobet 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27142, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizobet 100mg Dry Syrup?', 'For children receiving Lizobet 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27143, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lizobet 100mg Dry Syrup to my child?', 'Avoid giving Lizobet 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizobet 100mg Dry Syrup to your child.'),
(27144, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'What food items should my child avoid while taking Lizobet 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizobet 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27145, 'Lizobet 100mg Dry Syrup', 'Trulip Pharma', 'Lizobet 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizobet 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizobet 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27146, 'Lizobet 600mg Tablet', 'Trulip Pharma', 'Lizobet 600mg Tablet', 'Can the use of Lizobet 600mg Tablet cause diarrhea?', 'Yes, the use of Lizobet 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27147, 'Lizobet 600mg Tablet', 'Trulip Pharma', 'Lizobet 600mg Tablet', 'What foods should I avoid while taking Lizobet 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizobet 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27148, 'Lizobon 600mg Tablet', 'Bongyn Bioscience Pvt Ltd', 'Lizobon 600mg Tablet', 'Can the use of Lizobon 600mg Tablet cause diarrhea?', 'Yes, the use of Lizobon 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27149, 'Lizobon 600mg Tablet', 'Bongyn Bioscience Pvt Ltd', 'Lizobon 600mg Tablet', 'What foods should I avoid while taking Lizobon 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizobon 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27150, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. What if I give an excess of Lizocam 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27151, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizocam 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27152, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. What should I do if my child shows no improvement even after taking Lizocam 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizocam 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27153, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. Can Lizocam 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizocam 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27154, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. Can other medicines be given at the same time as Lizocam 100mg Dry Syrup?', 'Lizocam 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizocam 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27155, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. What lab tests that are required for monitoring while my child is taking Lizocam 100mg Dry Syrup?', 'For children receiving Lizocam 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27156, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. In which disease conditions should I avoid giving Lizocam 100mg Dry Syrup to my child?', 'Avoid giving Lizocam 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizocam 100mg Dry Syrup to your child.'),
(27157, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. What food items should my child avoid while taking Lizocam 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizocam 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27158, 'Lizocam 100mg Dry Syrup', 'Camrut Pharma', 'Lizocam 100mg Dry Syrup', 'Q. Can I get my child vaccinated while on treatment with Lizocam 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizocam 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27159, 'Lizocam 600mg Tablet', 'Camrut Pharma', 'Lizocam 600mg Tablet', 'Q. Can the use of Lizocam 600mg Tablet cause diarrhea?', 'Yes, the use of Lizocam 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27160, 'Lizocam 600mg Tablet', 'Camrut Pharma', 'Lizocam 600mg Tablet', 'Q. What foods should I avoid while taking Lizocam 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizocam 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27161, 'Lizocan 600mg Tablet', 'Canbro Healthcare', 'Lizocan 600mg Tablet', 'Can the use of Lizocan 600mg Tablet cause diarrhea?', 'Yes, the use of Lizocan 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27162, 'Lizocan 600mg Tablet', 'Canbro Healthcare', 'Lizocan 600mg Tablet', 'What foods should I avoid while taking Lizocan 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizocan 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27163, 'Lizocare 600 Tablet', 'Carezone Healthcare', 'Lizocare 600 Tablet', 'Can the use of Lizocare 600 Tablet cause diarrhea?', 'Yes, the use of Lizocare 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27164, 'Lizocare 600 Tablet', 'Carezone Healthcare', 'Lizocare 600 Tablet', 'What foods should I avoid while taking Lizocare 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizocare 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27165, 'Lizocas 600mg Tablet', 'Casca Remedies Pvt Ltd', 'Lizocas 600mg Tablet', 'Can the use of Lizocas 600mg Tablet cause diarrhea?', 'Yes, the use of Lizocas 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27166, 'Lizocas 600mg Tablet', 'Casca Remedies Pvt Ltd', 'Lizocas 600mg Tablet', 'What foods should I avoid while taking Lizocas 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizocas 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27167, 'Lizocom 600mg Tablet', 'Comed Chemicals Ltd', 'Lizocom 600mg Tablet', 'Can the use of Lizocom 600mg Tablet cause diarrhea?', 'Yes, the use of Lizocom 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27168, 'Lizocom 600mg Tablet', 'Comed Chemicals Ltd', 'Lizocom 600mg Tablet', 'What foods should I avoid while taking Lizocom 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizocom 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27169, 'Lizocot 600mg Tablet', 'Alcott Healthcare Pvt Ltd', 'Lizocot 600mg Tablet', 'Can the use of Lizocot 600mg Tablet cause diarrhea?', 'Yes, the use of Lizocot 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27170, 'Lizocot 600mg Tablet', 'Alcott Healthcare Pvt Ltd', 'Lizocot 600mg Tablet', 'What foods should I avoid while taking Lizocot 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizocot 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27171, 'Lizodact 600mg Tablet', 'Zanetaz Medicorp', 'Lizodact 600mg Tablet', 'Can the use of Lizodact 600mg Tablet cause diarrhea?', 'Yes, the use of Lizodact 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27172, 'Lizodact 600mg Tablet', 'Zanetaz Medicorp', 'Lizodact 600mg Tablet', 'What foods should I avoid while taking Lizodact 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizodact 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27173, 'Lizodoz 600mg Tablet', 'Vibdrugs Biosciences', 'Lizodoz 600mg Tablet', 'Can the use of Lizodoz 600mg Tablet cause diarrhea?', 'Yes, the use of Lizodoz 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27174, 'Lizodoz 600mg Tablet', 'Vibdrugs Biosciences', 'Lizodoz 600mg Tablet', 'What foods should I avoid while taking Lizodoz 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizodoz 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27175, 'Lizofast 600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast 600mg Tablet', 'Can the use of Lizofast 600mg Tablet cause diarrhea?', 'Yes, the use of Lizofast 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27176, 'Lizofast 600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast 600mg Tablet', 'What foods should I avoid while taking Lizofast 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizofast 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27177, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'What if I miss my dose?', 'Take Lizofast Turbo 500mg/600mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(27178, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'Can I stop taking Lizofast Turbo 500mg/600mg Tablet when I feel better?', 'No, do not stop taking Lizofast Turbo 500mg/600mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(27179, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'What is Lizofast Turbo 500mg/600mg Tablet used for?', 'Lizofast Turbo 500mg/600mg Tablet is used in the treatment of bacterial infections. Cefuroxime treats infections of acute or chronic bronchitis, tonsillitis,  gonorrhea, syphilis, pneumonia, and urinary tract infection. Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(27180, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'Does the use of Lizofast Turbo 500mg/600mg Tablet help to treat UTI?', 'Urinary tract infections (UTIs) are among the most common infections people suffer from. The use of Lizofast Turbo 500mg/600mg Tablet is usually helpful in treating urinary tract infection.'),
(27181, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'Can the use of Lizofast Turbo 500mg/600mg Tablet cause diarrhea?', 'Yes, the use of Lizofast Turbo 500mg/600mg Tablet can cause diarrhea. Antibiotics can kill good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27182, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'Is the use of Lizofast Turbo 500mg/600mg Tablet helpful in the treatment of bronchitis?', 'Yes, Lizofast Turbo 500mg/600mg Tablet is helpful in the treatment of bronchitis.'),
(27183, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'Is the use of Lizofast Turbo 500mg/600mg Tablet contraindicated in patients with the impaired kidney?', 'The drug is eliminated by the renal mechanisms and a patient with impaired renal function will clear it more slowly. This can prove harmful for the patient. Therefore, caution is advised when administering Lizofast Turbo 500mg/600mg Tablet to patients with renal impairment or renal failure.'),
(27184, 'Lizofast Turbo 500mg/600mg Tablet', 'Chemo Healthcare Pvt Ltd', 'Lizofast Turbo 500mg/600mg Tablet', 'What are the instructions for the storage and disposal of Lizofast Turbo 500mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27185, 'Lizoff 600mg Tablet', 'Brand Distribution India Ltd', 'Lizoff 600mg Tablet', 'Can the use of Lizoff 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoff 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27186, 'Lizoff 600mg Tablet', 'Brand Distribution India Ltd', 'Lizoff 600mg Tablet', 'What foods should I avoid while taking Lizoff 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoff 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27187, 'Lizofit 200mg Infusion', 'Intas Pharmaceuticals Ltd', 'Lizofit 200mg Infusion', 'Can the use of Lizofit 200mg Infusion cause diarrhea?', 'Yes, the use of Lizofit 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27188, 'Lizofit 200mg Infusion', 'Intas Pharmaceuticals Ltd', 'Lizofit 200mg Infusion', 'What foods should I avoid while taking Lizofit 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizofit 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(27189, 'Lizofit 600mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lizofit 600mg Tablet', 'Can the use of Lizofit 600mg Tablet cause diarrhea?', 'Yes, the use of Lizofit 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27190, 'Lizofit 600mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lizofit 600mg Tablet', 'What foods should I avoid while taking Lizofit 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizofit 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27191, 'Lizofix Infusion', 'Intra Life', 'Lizofix Infusion', 'Can the use of Lizofix Infusion cause diarrhea?', 'Yes, the use of Lizofix Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27192, 'Lizofix Infusion', 'Intra Life', 'Lizofix Infusion', 'What foods should I avoid while taking Lizofix Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizofix Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(27193, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'What if I give an excess of Lizofly 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27194, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizofly 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27195, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizofly 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizofly 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27196, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'Can Lizofly 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizofly 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27197, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'Can other medicines be given at the same time as Lizofly 100mg Dry Syrup?', 'Lizofly 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizofly 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27198, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizofly 100mg Dry Syrup?', 'For children receiving Lizofly 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27199, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lizofly 100mg Dry Syrup to my child?', 'Avoid giving Lizofly 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizofly 100mg Dry Syrup to your child.'),
(27200, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'What food items should my child avoid while taking Lizofly 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizofly 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27201, 'Lizofly 100mg Dry Syrup', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizofly 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizofly 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27202, 'Lizofly 600mg Tablet', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 600mg Tablet', 'Can the use of Lizofly 600mg Tablet cause diarrhea?', 'Yes, the use of Lizofly 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27203, 'Lizofly 600mg Tablet', 'Brinton Pharmaceuticals Pvt Ltd', 'Lizofly 600mg Tablet', 'What foods should I avoid while taking Lizofly 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizofly 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27204, 'Lizoforce 600 Tablet', 'Mankind Pharma Ltd', 'Lizoforce 600 Tablet', 'Q. Can the use of Lizoforce 600 Tablet cause diarrhea?', 'Yes, the use of Lizoforce 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27205, 'Lizoforce 600 Tablet', 'Mankind Pharma Ltd', 'Lizoforce 600 Tablet', 'Q. What foods should I avoid while taking Lizoforce 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoforce 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27206, 'Lizoforce 600mg Tablet', 'Mankind Pharma Ltd', 'Lizoforce 600mg Tablet', 'Can the use of Lizoforce 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoforce 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27207, 'Lizoforce 600mg Tablet', 'Mankind Pharma Ltd', 'Lizoforce 600mg Tablet', 'What foods should I avoid while taking Lizoforce 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoforce 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27208, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'What if I give an excess of Lizoforce Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27209, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizoforce Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27210, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizoforce Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizoforce Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27211, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'Can Lizoforce Dry Syrup be given for a long duration?', 'Prolonged use of Lizoforce Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27212, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'Can other medicines be given at the same time as Lizoforce Dry Syrup?', 'Lizoforce Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizoforce Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27213, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizoforce Dry Syrup?', 'For children receiving Lizoforce Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27214, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'In which disease conditions should I avoid giving Lizoforce Dry Syrup to my child?', 'Avoid giving Lizoforce Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizoforce Dry Syrup to your child.'),
(27215, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'What food items should my child avoid while taking Lizoforce Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizoforce Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27216, 'Lizoforce Dry Syrup', 'Mankind Pharma Ltd', 'Lizoforce Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizoforce Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizoforce Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27217, 'Lizoforce IV Injection', 'Mankind Pharma Ltd', 'Lizoforce IV Injection', 'Can the use of Lizoforce IV Injection cause diarrhea?', 'Yes, the use of Lizoforce IV Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27218, 'Lizoforce IV Injection', 'Mankind Pharma Ltd', 'Lizoforce IV Injection', 'What foods should I avoid while taking Lizoforce IV Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoforce IV Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(27219, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. What if I give an excess of Lizofull 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27220, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizofull 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27221, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. What should I do if my child shows no improvement even after taking Lizofull 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizofull 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27222, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. Can Lizofull 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizofull 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27223, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. Can other medicines be given at the same time as Lizofull 100mg Dry Syrup?', 'Lizofull 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizofull 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27224, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. What lab tests that are required for monitoring while my child is taking Lizofull 100mg Dry Syrup?', 'For children receiving Lizofull 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27225, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. In which disease conditions should I avoid giving Lizofull 100mg Dry Syrup to my child?', 'Avoid giving Lizofull 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizofull 100mg Dry Syrup to your child.'),
(27226, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. What food items should my child avoid while taking Lizofull 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizofull 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27227, 'Lizofull 100mg Dry Syrup', 'Olamic Healthcare', 'Lizofull 100mg Dry Syrup', 'Q. Can I get my child vaccinated while on treatment with Lizofull 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizofull 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27228, 'Lizogold 600mg Infusion', 'AXA Parenterals Ltd', 'Lizogold 600mg Infusion', 'Can the use of Lizogold 600mg Infusion cause diarrhea?', 'Yes, the use of Lizogold 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27229, 'Lizogold 600mg Infusion', 'AXA Parenterals Ltd', 'Lizogold 600mg Infusion', 'What foods should I avoid while taking Lizogold 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizogold 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(27230, 'Lizogrip 600mg Tablet', 'Grantham Lifesciences', 'Lizogrip 600mg Tablet', 'Can the use of Lizogrip 600mg Tablet cause diarrhea?', 'Yes, the use of Lizogrip 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27231, 'Lizogrip 600mg Tablet', 'Grantham Lifesciences', 'Lizogrip 600mg Tablet', 'What foods should I avoid while taking Lizogrip 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizogrip 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27232, 'Lizogris 600mg Tablet', 'Scythian Healthcare', 'Lizogris 600mg Tablet', 'Can the use of Lizogris 600mg Tablet cause diarrhea?', 'Yes, the use of Lizogris 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27233, 'Lizogris 600mg Tablet', 'Scythian Healthcare', 'Lizogris 600mg Tablet', 'What foods should I avoid while taking Lizogris 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizogris 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27234, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'What if I give an excess of Lizoheal 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27235, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizoheal 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27236, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizoheal 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizoheal 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27237, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'Can Lizoheal 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizoheal 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27238, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'Can other medicines be given at the same time as Lizoheal 100mg Dry Syrup?', 'Lizoheal 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizoheal 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27239, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizoheal 100mg Dry Syrup?', 'For children receiving Lizoheal 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27240, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lizoheal 100mg Dry Syrup to my child?', 'Avoid giving Lizoheal 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizoheal 100mg Dry Syrup to your child.'),
(27241, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'What food items should my child avoid while taking Lizoheal 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizoheal 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27242, 'Lizoheal 100mg Dry Syrup', 'Janus Biotech', 'Lizoheal 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizoheal 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizoheal 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27243, 'Lizoheal 600mg Tablet', 'Janus Biotech', 'Lizoheal 600mg Tablet', 'Can the use of Lizoheal 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoheal 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27244, 'Lizoheal 600mg Tablet', 'Janus Biotech', 'Lizoheal 600mg Tablet', 'What foods should I avoid while taking Lizoheal 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoheal 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27245, 'Lizohil 600mg Tablet', 'Frisco Hill Pharmacia', 'Lizohil 600mg Tablet', 'Can the use of Lizohil 600mg Tablet cause diarrhea?', 'Yes, the use of Lizohil 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27246, 'Lizohil 600mg Tablet', 'Frisco Hill Pharmacia', 'Lizohil 600mg Tablet', 'What foods should I avoid while taking Lizohil 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizohil 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27247, 'Lizojem 600mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Lizojem 600mg Tablet', 'Can the use of Lizojem 600mg Tablet cause diarrhea?', 'Yes, the use of Lizojem 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27248, 'Lizojem 600mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Lizojem 600mg Tablet', 'What foods should I avoid while taking Lizojem 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizojem 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27249, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'What if I give an excess of Lizok 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27250, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizok 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27251, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizok 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizok 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27252, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'Can Lizok 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizok 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27253, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'Can other medicines be given at the same time as Lizok 100mg Dry Syrup?', 'Lizok 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizok 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27254, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizok 100mg Dry Syrup?', 'For children receiving Lizok 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27255, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lizok 100mg Dry Syrup to my child?', 'Avoid giving Lizok 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizok 100mg Dry Syrup to your child.'),
(27256, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'What food items should my child avoid while taking Lizok 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizok 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27257, 'Lizok 100mg Dry Syrup', 'Kusum Healthcare Pvt Ltd', 'Lizok 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizok 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizok 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27258, 'Lizok Tablet', 'Kusum Healthcare Pvt Ltd', 'Lizok Tablet', 'Can the use of Lizok Tablet cause diarrhea?', 'Yes, the use of Lizok Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27259, 'Lizok Tablet', 'Kusum Healthcare Pvt Ltd', 'Lizok Tablet', 'What foods should I avoid while taking Lizok Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizok Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27260, 'Lizokef Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizokef Tablet', 'Q. What is Lizokef Tablet used for?', 'Lizokef Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(27261, 'Lizokef Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizokef Tablet', 'Q. Can the use of Lizokef Tablet cause diarrhea?', 'Yes, the use of Lizokef Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27262, 'Lizokef Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizokef Tablet', 'Q. Is the use of Lizokef Tablet helpful in the treatment of bronchitis?', 'Yes, Lizokef Tablet is helpful in the treatment of bronchitis.'),
(27263, 'Lizokef Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizokef Tablet', 'Q. What are the instructions for the storage and disposal of Lizokef Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27264, 'Lizoking 600mg Tablet', 'Kingscure Medicare', 'Lizoking 600mg Tablet', 'Can the use of Lizoking 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoking 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27265, 'Lizoking 600mg Tablet', 'Kingscure Medicare', 'Lizoking 600mg Tablet', 'What foods should I avoid while taking Lizoking 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoking 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27266, 'Lizokit Tablet', 'Primecure Medicine Pvt Ltd', 'Lizokit Tablet', 'Can the use of Lizokit Tablet cause diarrhea?', 'Yes, the use of Lizokit Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27267, 'Lizokit Tablet', 'Primecure Medicine Pvt Ltd', 'Lizokit Tablet', 'What foods should I avoid while taking Lizokit Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizokit Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27268, 'Lizolam 600mg Tablet', 'Clipwin Pharmaceuticals', 'Lizolam 600mg Tablet', 'Can the use of Lizolam 600mg Tablet cause diarrhea?', 'Yes, the use of Lizolam 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27269, 'Lizolam 600mg Tablet', 'Clipwin Pharmaceuticals', 'Lizolam 600mg Tablet', 'What foods should I avoid while taking Lizolam 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolam 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27270, 'Lizole 1% Cream', 'Dermazone Pharmaceuticals Private Limited', 'Lizole 1% Cream', 'Is Lizole 1% Cream safe in pregnancy?', 'Lizole 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lizole 1% Cream.'),
(27271, 'Lizole 1% Cream', 'Dermazone Pharmaceuticals Private Limited', 'Lizole 1% Cream', 'Is Lizole 1% Cream fungicidal or Fungistatic?', 'Lizole 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(27272, 'Lizole 1% Cream', 'Dermazone Pharmaceuticals Private Limited', 'Lizole 1% Cream', 'How to use Lizole 1% Cream?', 'Use Lizole 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(27273, 'Lizole 1% Cream', 'Dermazone Pharmaceuticals Private Limited', 'Lizole 1% Cream', 'How long does it take for Lizole 1% Cream to work?', 'For different ailments, Lizole 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(27274, 'Lizole 1% Cream', 'Dermazone Pharmaceuticals Private Limited', 'Lizole 1% Cream', 'How should I store Lizole 1% Cream?', 'Keep Lizole 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(27275, 'Lizole 1% Cream', 'Dermazone Pharmaceuticals Private Limited', 'Lizole 1% Cream', 'Is Lizole 1% Cream safe to use in children?', 'Yes, Lizole 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(27276, 'Lizoley 600mg Tablet', 'Zodley Pharmaceuticals Pvt Ltd', 'Lizoley 600mg Tablet', 'Q. Can the use of Lizoley 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoley 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27277, 'Lizoley 600mg Tablet', 'Zodley Pharmaceuticals Pvt Ltd', 'Lizoley 600mg Tablet', 'Q. What foods should I avoid while taking Lizoley 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoley 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27278, 'Lizolid 300ml IV Injection', 'Integrace Pvt Ltd', 'Lizolid 300ml IV Injection', 'Can the use of Lizolid 300ml IV Injection cause diarrhea?', 'Yes, the use of Lizolid 300ml IV Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27279, 'Lizolid 300ml IV Injection', 'Integrace Pvt Ltd', 'Lizolid 300ml IV Injection', 'What foods should I avoid while taking Lizolid 300ml IV Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolid 300ml IV Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(27280, 'Lizolid 600 Tablet', 'Integrace Pvt Ltd', 'Lizolid 600 Tablet', 'Can the use of Lizolid 600 Tablet cause diarrhea?', 'Yes, the use of Lizolid 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27281, 'Lizolid 600 Tablet', 'Integrace Pvt Ltd', 'Lizolid 600 Tablet', 'What foods should I avoid while taking Lizolid 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolid 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27282, 'Lizolid 600mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lizolid 600mg Tablet', 'Can the use of Lizolid 600mg Tablet cause diarrhea?', 'Yes, the use of Lizolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27283, 'Lizolid 600mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lizolid 600mg Tablet', 'What foods should I avoid while taking Lizolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27284, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'What if I give an excess of Lizolife 100mg Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27285, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizolife 100mg Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27286, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'What should I do if my child shows no improvement even after taking Lizolife 100mg Syrup for the prescribed duration?', 'Ineffective treatment with Lizolife 100mg Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27287, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'Can Lizolife 100mg Syrup be given for a long duration?', 'Prolonged use of Lizolife 100mg Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27288, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'Can other medicines be given at the same time as Lizolife 100mg Syrup?', 'Lizolife 100mg Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizolife 100mg Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27289, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'What lab tests that are required for monitoring while my child is taking Lizolife 100mg Syrup?', 'For children receiving Lizolife 100mg Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27290, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'In which disease conditions should I avoid giving Lizolife 100mg Syrup to my child?', 'Avoid giving Lizolife 100mg Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizolife 100mg Syrup to your child.'),
(27291, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'What food items should my child avoid while taking Lizolife 100mg Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizolife 100mg Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27292, 'Lizolife 100mg Syrup', 'LifeCare Formulation Pvt Ltd', 'Lizolife 100mg Syrup', 'Can I get my child vaccinated while on treatment with Lizolife 100mg Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizolife 100mg Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27293, 'Lizolife 600mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lizolife 600mg Tablet', 'Can the use of Lizolife 600mg Tablet cause diarrhea?', 'Yes, the use of Lizolife 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27294, 'Lizolife 600mg Tablet', 'LifeCare Formulation Pvt Ltd', 'Lizolife 600mg Tablet', 'What foods should I avoid while taking Lizolife 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolife 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27295, 'Lizoline 600mg Tablet', 'Biocrross Chem LLP', 'Lizoline 600mg Tablet', 'Can the use of Lizoline 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoline 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27296, 'Lizoline 600mg Tablet', 'Biocrross Chem LLP', 'Lizoline 600mg Tablet', 'What foods should I avoid while taking Lizoline 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoline 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27297, 'Lizolite 600mg Infusion', 'Allites life Sciences Pvt Ltd', 'Lizolite 600mg Infusion', 'Can the use of Lizolite 600mg Infusion cause diarrhea?', 'Yes, the use of Lizolite 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27298, 'Lizolite 600mg Infusion', 'Allites life Sciences Pvt Ltd', 'Lizolite 600mg Infusion', 'What foods should I avoid while taking Lizolite 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolite 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(27299, 'Lizolite 600mg Tablet', 'Allites life Sciences Pvt Ltd', 'Lizolite 600mg Tablet', 'Can the use of Lizolite 600mg Tablet cause diarrhea?', 'Yes, the use of Lizolite 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27300, 'Lizolite 600mg Tablet', 'Allites life Sciences Pvt Ltd', 'Lizolite 600mg Tablet', 'What foods should I avoid while taking Lizolite 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolite 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27301, 'Lizolon 600mg Tablet', 'Zovilon Healthcare Private Limited', 'Lizolon 600mg Tablet', 'Can the use of Lizolon 600mg Tablet cause diarrhea?', 'Yes, the use of Lizolon 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27302, 'Lizolon 600mg Tablet', 'Zovilon Healthcare Private Limited', 'Lizolon 600mg Tablet', 'What foods should I avoid while taking Lizolon 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizolon 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27303, 'Lizomac 200mg Infusion', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac 200mg Infusion', 'Can the use of Lizomac 200mg Infusion cause diarrhea?', 'Yes, the use of Lizomac 200mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27304, 'Lizomac 200mg Infusion', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac 200mg Infusion', 'What foods should I avoid while taking Lizomac 200mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomac 200mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(27305, 'Lizomac 600mg Injection', 'Volentis Healthcare Pvt Ltd', 'Lizomac 600mg Injection', 'Can the use of Lizomac 600mg Injection cause diarrhea?', 'Yes, the use of Lizomac 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27306, 'Lizomac 600mg Injection', 'Volentis Healthcare Pvt Ltd', 'Lizomac 600mg Injection', 'What foods should I avoid while taking Lizomac 600mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomac 600mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(27307, 'Lizomac CX Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac CX Tablet', 'What is Lizomac CX Tablet used for?', 'Lizomac CX Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(27308, 'Lizomac CX Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac CX Tablet', 'Can the use of Lizomac CX Tablet cause diarrhea?', 'Yes, the use of Lizomac CX Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27309, 'Lizomac CX Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac CX Tablet', 'Is the use of Lizomac CX Tablet helpful in the treatment of bronchitis?', 'Yes, Lizomac CX Tablet is helpful in the treatment of bronchitis.'),
(27310, 'Lizomac CX Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac CX Tablet', 'What are the instructions for the storage and disposal of Lizomac CX Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27311, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'What if I give an excess of Lizomac DS Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27312, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizomac DS Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27313, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizomac DS Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizomac DS Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27314, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'Can Lizomac DS Dry Syrup be given for a long duration?', 'Prolonged use of Lizomac DS Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27315, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'Can other medicines be given at the same time as Lizomac DS Dry Syrup?', 'Lizomac DS Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizomac DS Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27316, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizomac DS Dry Syrup?', 'For children receiving Lizomac DS Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27317, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'In which disease conditions should I avoid giving Lizomac DS Dry Syrup to my child?', 'Avoid giving Lizomac DS Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizomac DS Dry Syrup to your child.'),
(27318, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'What food items should my child avoid while taking Lizomac DS Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizomac DS Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27319, 'Lizomac DS Dry Syrup', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac DS Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizomac DS Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizomac DS Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27320, 'Lizomac Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac Tablet', 'Can the use of Lizomac Tablet cause diarrhea?', 'Yes, the use of Lizomac Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27321, 'Lizomac Tablet', 'Macleods Pharmaceuticals Pvt Ltd', 'Lizomac Tablet', 'What foods should I avoid while taking Lizomac Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomac Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27322, 'Lizomak 600mg Tablet', 'Trimak Lifesciences', 'Lizomak 600mg Tablet', 'Can the use of Lizomak 600mg Tablet cause diarrhea?', 'Yes, the use of Lizomak 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27323, 'Lizomak 600mg Tablet', 'Trimak Lifesciences', 'Lizomak 600mg Tablet', 'What foods should I avoid while taking Lizomak 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomak 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27324, 'Lizomed 600 I.V Infusion', 'Aglowmed Limited', 'Lizomed 600 I.V Infusion', 'Can the use of Lizomed 600 I.V Infusion cause diarrhea?', 'Yes, the use of Lizomed 600 I.V Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27325, 'Lizomed 600 I.V Infusion', 'Aglowmed Limited', 'Lizomed 600 I.V Infusion', 'What foods should I avoid while taking Lizomed 600 I.V Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomed 600 I.V Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(27326, 'Lizomed 600 Tablet', 'Aglowmed Limited', 'Lizomed 600 Tablet', 'Can the use of Lizomed 600 Tablet cause diarrhea?', 'Yes, the use of Lizomed 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27327, 'Lizomed 600 Tablet', 'Aglowmed Limited', 'Lizomed 600 Tablet', 'What foods should I avoid while taking Lizomed 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomed 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27328, 'Lizomed 600mg Tablet', 'Aglowmed Limited', 'Lizomed 600mg Tablet (Aglowmed Limited)', 'Can the use of Lizomed 600mg Tablet cause diarrhea?', 'Yes, the use of Lizomed 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27329, 'Lizomed 600mg Tablet', 'Aglowmed Limited', 'Lizomed 600mg Tablet (Aglowmed Limited)', 'What foods should I avoid while taking Lizomed 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomed 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27330, 'Lizomed 600mg Tablet', 'Medliva Lifesciences', 'Lizomed 600mg Tablet (Medliva Lifesciences)', 'Can the use of Lizomed 600mg Tablet cause diarrhea?', 'Yes, the use of Lizomed 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27331, 'Lizomed 600mg Tablet', 'Medliva Lifesciences', 'Lizomed 600mg Tablet (Medliva Lifesciences)', 'What foods should I avoid while taking Lizomed 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomed 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27332, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. What if I give an excess of Lizomed Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27333, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizomed Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27334, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. What should I do if my child shows no improvement even after taking Lizomed Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizomed Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27335, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. Can Lizomed Dry Syrup be given for a long duration?', 'Prolonged use of Lizomed Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27336, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. Can other medicines be given at the same time as Lizomed Dry Syrup?', 'Lizomed Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizomed Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27337, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. What lab tests that are required for monitoring while my child is taking Lizomed Dry Syrup?', 'For children receiving Lizomed Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27338, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. In which disease conditions should I avoid giving Lizomed Dry Syrup to my child?', 'Avoid giving Lizomed Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizomed Dry Syrup to your child.'),
(27339, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. What food items should my child avoid while taking Lizomed Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizomed Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27340, 'Lizomed Dry Syrup', 'Aglowmed Limited', 'Lizomed Dry Syrup', 'Q. Can I get my child vaccinated while on treatment with Lizomed Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizomed Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27341, 'Lizomet 600mg Tablet', 'Aspiriss Healthcare', 'Lizomet 600mg Tablet', 'Can the use of Lizomet 600mg Tablet cause diarrhea?', 'Yes, the use of Lizomet 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27342, 'Lizomet 600mg Tablet', 'Aspiriss Healthcare', 'Lizomet 600mg Tablet', 'What foods should I avoid while taking Lizomet 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizomet 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27343, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'What if I give an excess of Lizonab Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27344, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizonab Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27345, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizonab Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizonab Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27346, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'Can Lizonab Dry Syrup be given for a long duration?', 'Prolonged use of Lizonab Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27347, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'Can other medicines be given at the same time as Lizonab Dry Syrup?', 'Lizonab Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizonab Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27348, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizonab Dry Syrup?', 'For children receiving Lizonab Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27349, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'In which disease conditions should I avoid giving Lizonab Dry Syrup to my child?', 'Avoid giving Lizonab Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizonab Dry Syrup to your child.'),
(27350, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'What food items should my child avoid while taking Lizonab Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizonab Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27351, 'Lizonab Dry Syrup', 'Narun Bharti Pvt Ltd', 'Lizonab Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizonab Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizonab Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27352, 'Lizonab Tablet', 'Nabarun Life Sciences', 'Lizonab Tablet (Nabarun Life Sciences)', 'Can the use of Lizonab Tablet cause diarrhea?', 'Yes, the use of Lizonab Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27353, 'Lizonab Tablet', 'Nabarun Life Sciences', 'Lizonab Tablet (Nabarun Life Sciences)', 'What foods should I avoid while taking Lizonab Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizonab Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27354, 'Lizonab Tablet', 'Narun Bharti Pvt Ltd', 'Lizonab Tablet (Narun Bharti Pvt Ltd)', 'Can the use of Lizonab Tablet cause diarrhea?', 'Yes, the use of Lizonab Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27355, 'Lizonab Tablet', 'Narun Bharti Pvt Ltd', 'Lizonab Tablet (Narun Bharti Pvt Ltd)', 'What foods should I avoid while taking Lizonab Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizonab Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27356, 'Lizonus 600mg Tablet', 'Nidus Pharma Pvt Ltd', 'Lizonus 600mg Tablet', 'Can the use of Lizonus 600mg Tablet cause diarrhea?', 'Yes, the use of Lizonus 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27357, 'Lizonus 600mg Tablet', 'Nidus Pharma Pvt Ltd', 'Lizonus 600mg Tablet', 'What foods should I avoid while taking Lizonus 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizonus 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27358, 'Lizopax 600mg Tablet', 'I.I.F.A Health Care', 'Lizopax 600mg Tablet', 'Can the use of Lizopax 600mg Tablet cause diarrhea?', 'Yes, the use of Lizopax 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27359, 'Lizopax 600mg Tablet', 'I.I.F.A Health Care', 'Lizopax 600mg Tablet', 'What foods should I avoid while taking Lizopax 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizopax 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27360, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'What if I give an excess of Lizopel Syrup Pineapple by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27361, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizopel Syrup Pineapple along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27362, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'What should I do if my child shows no improvement even after taking Lizopel Syrup Pineapple for the prescribed duration?', 'Ineffective treatment with Lizopel Syrup Pineapple could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27363, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'Can Lizopel Syrup Pineapple be given for a long duration?', 'Prolonged use of Lizopel Syrup Pineapple may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27364, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'Can other medicines be given at the same time as Lizopel Syrup Pineapple?', 'Lizopel Syrup Pineapple can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizopel Syrup Pineapple. Also, check with your child’s doctor before giving any medicine to your child.'),
(27365, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'What lab tests that are required for monitoring while my child is taking Lizopel Syrup Pineapple?', 'For children receiving Lizopel Syrup Pineapple for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27366, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'In which disease conditions should I avoid giving Lizopel Syrup Pineapple to my child?', 'Avoid giving Lizopel Syrup Pineapple if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizopel Syrup Pineapple to your child.'),
(27367, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'What food items should my child avoid while taking Lizopel Syrup Pineapple?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizopel Syrup Pineapple. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27368, 'Lizopel Syrup Pineapple', 'Pelzar Healthcare', 'Lizopel Syrup Pineapple', 'Can I get my child vaccinated while on treatment with Lizopel Syrup Pineapple?', 'It is advised not to get your child vaccinated while they are on treatment with Lizopel Syrup Pineapple. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27369, 'Lizoprax 600mg Tablet', 'Praxis Health Care', 'Lizoprax 600mg Tablet', 'Can the use of Lizoprax 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoprax 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27370, 'Lizoprax 600mg Tablet', 'Praxis Health Care', 'Lizoprax 600mg Tablet', 'What foods should I avoid while taking Lizoprax 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoprax 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27371, 'Lizopro 600mg Tablet', 'Orsim Pharma', 'Lizopro 600mg Tablet', 'Can the use of Lizopro 600mg Tablet cause diarrhea?', 'Yes, the use of Lizopro 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27372, 'Lizopro 600mg Tablet', 'Orsim Pharma', 'Lizopro 600mg Tablet', 'What foods should I avoid while taking Lizopro 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizopro 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27373, 'Lizoquin 600mg Tablet', 'Qgensun Healthcare', 'Lizoquin 600mg Tablet', 'Can the use of Lizoquin 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoquin 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27374, 'Lizoquin 600mg Tablet', 'Qgensun Healthcare', 'Lizoquin 600mg Tablet', 'What foods should I avoid while taking Lizoquin 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoquin 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27375, 'Lizorab 600 Tablet', 'Rebanta Health Care (P) Limited', 'Lizorab 600 Tablet', 'Can the use of Lizorab 600 Tablet cause diarrhea?', 'Yes, the use of Lizorab 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27376, 'Lizorab 600 Tablet', 'Rebanta Health Care (P) Limited', 'Lizorab 600 Tablet', 'What foods should I avoid while taking Lizorab 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizorab 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27377, 'Lizoris 600mg Tablet', 'Bioris Pharmaceuticals', 'Lizoris 600mg Tablet', 'Can the use of Lizoris 600mg Tablet cause diarrhea?', 'Yes, the use of Lizoris 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27378, 'Lizoris 600mg Tablet', 'Bioris Pharmaceuticals', 'Lizoris 600mg Tablet', 'What foods should I avoid while taking Lizoris 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizoris 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27379, 'Lizorute 600 Tablet', 'Osiante Biotech', 'Lizorute 600 Tablet', 'Can the use of Lizorute 600 Tablet cause diarrhea?', 'Yes, the use of Lizorute 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27380, 'Lizorute 600 Tablet', 'Osiante Biotech', 'Lizorute 600 Tablet', 'What foods should I avoid while taking Lizorute 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizorute 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27381, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'What if I miss my dose?', 'Take Lizorute Turbo 500mg/600mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(27382, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'Can I stop taking Lizorute Turbo 500mg/600mg Tablet when I feel better?', 'No, do not stop taking Lizorute Turbo 500mg/600mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(27383, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'What is Lizorute Turbo 500mg/600mg Tablet used for?', 'Lizorute Turbo 500mg/600mg Tablet is used in the treatment of bacterial infections. Cefuroxime treats infections of acute or chronic bronchitis, tonsillitis,  gonorrhea, syphilis, pneumonia, and urinary tract infection. Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(27384, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'Does the use of Lizorute Turbo 500mg/600mg Tablet help to treat UTI?', 'Urinary tract infections (UTIs) are among the most common infections people suffer from. The use of Lizorute Turbo 500mg/600mg Tablet is usually helpful in treating urinary tract infection.'),
(27385, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'Can the use of Lizorute Turbo 500mg/600mg Tablet cause diarrhea?', 'Yes, the use of Lizorute Turbo 500mg/600mg Tablet can cause diarrhea. Antibiotics can kill good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27386, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'Is the use of Lizorute Turbo 500mg/600mg Tablet helpful in the treatment of bronchitis?', 'Yes, Lizorute Turbo 500mg/600mg Tablet is helpful in the treatment of bronchitis.'),
(27387, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'Is the use of Lizorute Turbo 500mg/600mg Tablet contraindicated in patients with the impaired kidney?', 'The drug is eliminated by the renal mechanisms and a patient with impaired renal function will clear it more slowly. This can prove harmful for the patient. Therefore, caution is advised when administering Lizorute Turbo 500mg/600mg Tablet to patients with renal impairment or renal failure.'),
(27388, 'Lizorute Turbo 500mg/600mg Tablet', 'Osiante Biotech', 'Lizorute Turbo 500mg/600mg Tablet', 'What are the instructions for the storage and disposal of Lizorute Turbo 500mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27389, 'Lizosab 600mg Tablet', 'Sabme Pharmaceuticals Pvt Ltd', 'Lizosab 600mg Tablet', 'Can the use of Lizosab 600mg Tablet cause diarrhea?', 'Yes, the use of Lizosab 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27390, 'Lizosab 600mg Tablet', 'Sabme Pharmaceuticals Pvt Ltd', 'Lizosab 600mg Tablet', 'What foods should I avoid while taking Lizosab 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizosab 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27391, 'Lizosan 600 Tablet', 'Sanoti Laboratories', 'Lizosan 600 Tablet', 'Can the use of Lizosan 600 Tablet cause diarrhea?', 'Yes, the use of Lizosan 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27392, 'Lizosan 600 Tablet', 'Sanoti Laboratories', 'Lizosan 600 Tablet', 'What foods should I avoid while taking Lizosan 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizosan 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27393, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'What if I give an excess of Lizospey 100mg Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27394, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizospey 100mg Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27395, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'What should I do if my child shows no improvement even after taking Lizospey 100mg Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lizospey 100mg Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27396, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'Can Lizospey 100mg Oral Suspension be given for a long duration?', 'Prolonged use of Lizospey 100mg Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27397, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'Can other medicines be given at the same time as Lizospey 100mg Oral Suspension?', 'Lizospey 100mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizospey 100mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(27398, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Lizospey 100mg Oral Suspension?', 'For children receiving Lizospey 100mg Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27399, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'In which disease conditions should I avoid giving Lizospey 100mg Oral Suspension to my child?', 'Avoid giving Lizospey 100mg Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizospey 100mg Oral Suspension to your child.'),
(27400, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'What food items should my child avoid while taking Lizospey 100mg Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizospey 100mg Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27401, 'Lizospey 100mg Oral Suspension', 'Spey Medical Pvt Ltd', 'Lizospey 100mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Lizospey 100mg Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Lizospey 100mg Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27402, 'Lizospey 400mg Tablet DT', 'Spey Medical Pvt Ltd', 'Lizospey 400mg Tablet DT', 'Can the use of Lizospey 400mg Tablet DT cause diarrhea?', 'Yes, the use of Lizospey 400mg Tablet DT can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27403, 'Lizospey 400mg Tablet DT', 'Spey Medical Pvt Ltd', 'Lizospey 400mg Tablet DT', 'What foods should I avoid while taking Lizospey 400mg Tablet DT?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizospey 400mg Tablet DT can result in elevation of blood pressure, which may result in an emergency situation.'),
(27404, 'Lizospey 600mg Tablet DT', 'Spey Medical Pvt Ltd', 'Lizospey 600mg Tablet DT', 'Can the use of Lizospey 600mg Tablet DT cause diarrhea?', 'Yes, the use of Lizospey 600mg Tablet DT can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27405, 'Lizospey 600mg Tablet DT', 'Spey Medical Pvt Ltd', 'Lizospey 600mg Tablet DT', 'What foods should I avoid while taking Lizospey 600mg Tablet DT?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizospey 600mg Tablet DT can result in elevation of blood pressure, which may result in an emergency situation.'),
(27406, 'Lizosung 600mg Tablet', 'Neoliva Formulations', 'Lizosung 600mg Tablet', 'Can the use of Lizosung 600mg Tablet cause diarrhea?', 'Yes, the use of Lizosung 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27407, 'Lizosung 600mg Tablet', 'Neoliva Formulations', 'Lizosung 600mg Tablet', 'What foods should I avoid while taking Lizosung 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizosung 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27408, 'Lizosure 600mg Tablet', 'Roseate Medicare', 'Lizosure 600mg Tablet', 'Can the use of Lizosure 600mg Tablet cause diarrhea?', 'Yes, the use of Lizosure 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27409, 'Lizosure 600mg Tablet', 'Roseate Medicare', 'Lizosure 600mg Tablet', 'What foods should I avoid while taking Lizosure 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizosure 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27410, 'Lizosym 600 Tablet', 'Symbros Pharma Pvt Ltd', 'Lizosym 600 Tablet', 'Can the use of Lizosym 600 Tablet cause diarrhea?', 'Yes, the use of Lizosym 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27411, 'Lizosym 600 Tablet', 'Symbros Pharma Pvt Ltd', 'Lizosym 600 Tablet', 'What foods should I avoid while taking Lizosym 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizosym 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27412, 'Lizotab 600 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Lizotab 600 Tablet', 'Can the use of Lizotab 600 Tablet cause diarrhea?', 'Yes, the use of Lizotab 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27413, 'Lizotab 600 Tablet', 'Unika Pharmaceuticals Pvt. Ltd.', 'Lizotab 600 Tablet', 'What foods should I avoid while taking Lizotab 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizotab 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27414, 'Lizotam 600mg Tablet', 'Gautam Medilife Pvt Ltd', 'Lizotam 600mg Tablet', 'Can the use of Lizotam 600mg Tablet cause diarrhea?', 'Yes, the use of Lizotam 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27415, 'Lizotam 600mg Tablet', 'Gautam Medilife Pvt Ltd', 'Lizotam 600mg Tablet', 'What foods should I avoid while taking Lizotam 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizotam 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27416, 'Lizoten M 500mg/20mg Tablet', 'IIFA Healthcare', 'Lizoten M 500mg/20mg Tablet', 'Is it safe to use Lizoten M 500mg/20mg Tablet?', 'Yes, it is safe to use Lizoten M 500mg/20mg Tablet if you take it for the prescribed duration and according to the dosage advised by the doctor. However, despite taking the prescribed dosage you might experience common side effects like nausea, diarrhea, vomiting, stomach upset, headache, nasal congestion, sore throat, respiratory tract infection and hypoglycemia (low blood sugar level). Hypoglycemia is relatively common in patients who are taking Lizoten M 500mg/20mg Tablet in combination with insulin or Sulfonylurea. Inform your doctor if you experience any persistent problem while taking this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27417, 'Lizoten M 500mg/20mg Tablet', 'IIFA Healthcare', 'Lizoten M 500mg/20mg Tablet', 'Can the use of Lizoten M 500mg/20mg Tablet lead to hypoglycemia?', 'The use of Lizoten M 500mg/20mg Tablet does not usually cause hypoglycemia (low blood sugar level) on its own. But, it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise or take any other antidiabetic medicine along with it. Hence, regular monitoring of blood sugar level is important. It is recommended to always carry glucose tablets, honey or fruit juice with you.'),
(27418, 'Lizoten M 500mg/20mg Tablet', 'IIFA Healthcare', 'Lizoten M 500mg/20mg Tablet', 'Can the use of Lizoten M 500mg/20mg Tablet cause nausea and vomiting?', 'Yes, the use of Lizoten M 500mg/20mg Tablet can cause nausea and vomiting. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without consulting a doctor.'),
(27419, 'Lizoten M 500mg/20mg Tablet', 'IIFA Healthcare', 'Lizoten M 500mg/20mg Tablet', 'Are there any specific contraindications associated with the use of Lizoten M 500mg/20mg Tablet?', 'The use of Lizoten M 500mg/20mg Tablet should be avoided in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine is also considered to be harmful for patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis or diabetic ketoacidosis.'),
(27420, 'Lizoten M 500mg/20mg Tablet', 'IIFA Healthcare', 'Lizoten M 500mg/20mg Tablet', 'Can the use of Lizoten M 500mg/20mg Tablet cause lactic acidosis?', 'Yes, the use of Lizoten M 500mg/20mg Tablet can lead to lactic acidosis which is also known as MALA (Metformin-associated lactic acidosis). It is caused by increased levels of lactic acid in the blood. It is a very rare side effect associated with the use of metformin and therefore it is avoided in patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Lizoten M 500mg/20mg Tablet and immediately consult your doctor.'),
(27421, 'Lizoten M 500mg/20mg Tablet', 'IIFA Healthcare', 'Lizoten M 500mg/20mg Tablet', 'Can the use of Lizoten M 500mg/20mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Lizoten M 500mg/20mg Tablet can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. Deficiency of B12 may cause anemia and nerve problems. These may further cause a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). Consult your doctor if you experience these symptoms. Your doctor may advise monitoring of B12 levels and prescribe a vitamin B12 supplement if required.'),
(27422, 'Lizoten M 500mg/20mg Tablet', 'IIFA Healthcare', 'Lizoten M 500mg/20mg Tablet', 'What is the storage condition for the Lizoten M 500mg/20mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27423, 'Lizotex 600mg Tablet', 'Texas Pharmaceuticals', 'Lizotex 600mg Tablet', 'Can the use of Lizotex 600mg Tablet cause diarrhea?', 'Yes, the use of Lizotex 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27424, 'Lizotex 600mg Tablet', 'Texas Pharmaceuticals', 'Lizotex 600mg Tablet', 'What foods should I avoid while taking Lizotex 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizotex 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27425, 'Lizotiru 600mg Tablet', 'Tiruvision Medicare', 'Lizotiru 600mg Tablet', 'Can the use of Lizotiru 600mg Tablet cause diarrhea?', 'Yes, the use of Lizotiru 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27426, 'Lizotiru 600mg Tablet', 'Tiruvision Medicare', 'Lizotiru 600mg Tablet', 'What foods should I avoid while taking Lizotiru 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizotiru 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27427, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'What if I give an excess of Lizotiva Oral Suspension by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27428, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizotiva Oral Suspension along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27429, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'What should I do if my child shows no improvement even after taking Lizotiva Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lizotiva Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27430, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'Can Lizotiva Oral Suspension be given for a long duration?', 'Prolonged use of Lizotiva Oral Suspension may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27431, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'Can other medicines be given at the same time as Lizotiva Oral Suspension?', 'Lizotiva Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizotiva Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(27432, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'What lab tests that are required for monitoring while my child is taking Lizotiva Oral Suspension?', 'For children receiving Lizotiva Oral Suspension for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27433, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'In which disease conditions should I avoid giving Lizotiva Oral Suspension to my child?', 'Avoid giving Lizotiva Oral Suspension if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizotiva Oral Suspension to your child.'),
(27434, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'What food items should my child avoid while taking Lizotiva Oral Suspension?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizotiva Oral Suspension. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27435, 'Lizotiva Oral Suspension', 'RBN Healthcare', 'Lizotiva Oral Suspension', 'Can I get my child vaccinated while on treatment with Lizotiva Oral Suspension?', 'It is advised not to get your child vaccinated while they are on treatment with Lizotiva Oral Suspension. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27436, 'Lizotreat 600mg Infusion', 'Human Bio Organics Pvt Ltd', 'Lizotreat 600mg Infusion', 'Can the use of Lizotreat 600mg Infusion cause diarrhea?', 'Yes, the use of Lizotreat 600mg Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27437, 'Lizotreat 600mg Infusion', 'Human Bio Organics Pvt Ltd', 'Lizotreat 600mg Infusion', 'What foods should I avoid while taking Lizotreat 600mg Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizotreat 600mg Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(27438, 'Lizotreat 600mg Tablet', 'Human Bio Organics Pvt Ltd', 'Lizotreat 600mg Tablet', 'Can the use of Lizotreat 600mg Tablet cause diarrhea?', 'Yes, the use of Lizotreat 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27439, 'Lizotreat 600mg Tablet', 'Human Bio Organics Pvt Ltd', 'Lizotreat 600mg Tablet', 'What foods should I avoid while taking Lizotreat 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizotreat 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27440, 'Lizotus 400mg Tablet DT', 'Meritus Life Care Pvt Ltd', 'Lizotus 400mg Tablet DT', 'Can the use of Lizotus 400mg Tablet DT cause diarrhea?', 'Yes, the use of Lizotus 400mg Tablet DT can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27441, 'Lizotus 400mg Tablet DT', 'Meritus Life Care Pvt Ltd', 'Lizotus 400mg Tablet DT', 'What foods should I avoid while taking Lizotus 400mg Tablet DT?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizotus 400mg Tablet DT can result in elevation of blood pressure, which may result in an emergency situation.'),
(27442, 'Lizova 600mg Tablet', 'Alpha Nova Pharmaceuticals', 'Lizova 600mg Tablet', 'Can the use of Lizova 600mg Tablet cause diarrhea?', 'Yes, the use of Lizova 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27443, 'Lizova 600mg Tablet', 'Alpha Nova Pharmaceuticals', 'Lizova 600mg Tablet', 'What foods should I avoid while taking Lizova 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizova 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27444, 'Lizovel AP Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel AP Tablet', 'What is Lizovel AP Tablet?', 'Lizovel AP Tablet is the combination of Ambroxol, Levocetirizine, Paracetamol / Acetaminophen and Phenylephrine and is used in the treatment of common cold.'),
(27445, 'Lizovel AP Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel AP Tablet', 'Can the use of Lizovel AP Tablet cause nausea and vomiting?', 'Yes, the use of Lizovel AP Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(27446, 'Lizovel AP Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel AP Tablet', 'Can the use of Lizovel AP Tablet cause dizziness?', 'Yes, the use of Lizovel AP Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(27447, 'Lizovel AP Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel AP Tablet', 'Are there any specific contraindications associated with the use of Lizovel AP Tablet?', 'The use of Lizovel AP Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine and in patients with gastric ulcers, liver or kidney problems.'),
(27448, 'Lizovel AP Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel AP Tablet', 'What are the recommended storage conditions for Lizovel AP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27449, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'What is Lizovel Complete Tablet?', 'Lizovel Complete Tablet is a combination of five medicines: Caffeine, Cetirizine, Nimesulide, Paracetamol and Phenylephrine. This combination is helpful in relieving the symptoms of cold. These symptoms include body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(27450, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'Can I breastfeed while taking Lizovel Complete Tablet?', 'No, it is not advisable to breastfeed while using Lizovel Complete Tablet. This medicine contains cetirizine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(27451, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'Can the use of Lizovel Complete Tablet cause damage to liver?', 'Lizovel Complete Tablet contains Paracetamol and Nimesulide. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(27452, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'Are there any foods which I should avoid while taking Lizovel Complete Tablet?', 'Lizovel Complete Tablet contains caffeine. So, it is preferable to avoid medicines or food that also contain caffeine. Foods like coffee, tea, cola drinks and chocolate should be avoided as they may add to your total caffeine intake. Increased caffeine intake can cause difficulty in sleeping, you may experience tremors and/or may have chest discomfort. Also, avoid drinking alcohol (beer, wine, etc) while taking this medicine.'),
(27453, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'Can the use of Lizovel Complete Tablet cause sleepiness or drowsiness?', 'Yes, Lizovel Complete Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(27454, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'Are there any serious side effects associated with the use of Lizovel Complete Tablet?', 'Serious side effects with Lizovel Complete Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat. These side effects are uncommon but may be serious and may need urgent medical attention.'),
(27455, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'Will a higher than the recommended dose of Lizovel Complete Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(27456, 'Lizovel Complete Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Complete Tablet', 'What are the instructions for the storage and disposal of Lizovel Complete Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27457, 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Fort 2mg/500mg/10mg Tablet', 'What is Lizovel Fort 2mg/500mg/10mg Tablet?', 'Lizovel Fort 2mg/500mg/10mg Tablet is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(27458, 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Is it safe to use Lizovel Fort 2mg/500mg/10mg Tablet?', 'Yes, Lizovel Fort 2mg/500mg/10mg Tablet is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(27459, 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Can I stop taking Lizovel Fort 2mg/500mg/10mg Tablet when I am relieved of my symptoms?', 'Lizovel Fort 2mg/500mg/10mg Tablet is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(27460, 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Can the use of Lizovel Fort 2mg/500mg/10mg Tablet cause dizziness?', 'Yes, the use of Lizovel Fort 2mg/500mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(27461, 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Can the use of Lizovel Fort 2mg/500mg/10mg Tablet cause damage to liver?', 'Lizovel Fort 2mg/500mg/10mg Tablet is usually safe when taken according to the recommended dose. However, an overdose of Lizovel Fort 2mg/500mg/10mg Tablet can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(27462, 'Lizovel Fort 2mg/500mg/10mg Tablet', 'Vinson Pharma Pvt Ltd', 'Lizovel Fort 2mg/500mg/10mg Tablet', 'What is the recommended storage condition for the Lizovel Fort 2mg/500mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27463, 'Lizovel Oral Suspension', 'Vinson Pharma Pvt Ltd', 'Lizovel Oral Suspension', 'What is Lizovel Oral Suspension?', 'Lizovel Oral Suspension is a combination of three medicines: Chlorpheniramine, Paracetamol / Acetaminophen and Phenylephrine. This combination helps to relieve symptoms of cold like runny nose, watery eyes, fever and headache. Chlorpheniramine is an antiallergic. It relieves allergy symptoms like runny nose, watery eyes and sneezing. Paracetamol blocks the release of certain chemical messengers in the brain that are responsible for pain and fever. Phenylephrine is a decongestant which narrows the small blood vessels and provides relief from congestion or stuffiness in the nose.'),
(27464, 'Lizovel Oral Suspension', 'Vinson Pharma Pvt Ltd', 'Lizovel Oral Suspension', 'Is it safe to use Lizovel Oral Suspension?', 'Yes, Lizovel Oral Suspension is safe in most patients. However, in some patients it may cause common side effects like nausea, vomiting, allergic reaction, sleepiness, headache and other uncommon or rare side effects. Inform the doctor if you experience any persistent problem while taking this medicine.'),
(27465, 'Lizovel Oral Suspension', 'Vinson Pharma Pvt Ltd', 'Lizovel Oral Suspension', 'Can I stop taking Lizovel Oral Suspension when I am relieved of my symptoms?', 'Lizovel Oral Suspension is usually used for short term and can be discontinued when your symptoms are relieved. However, continue taking this medicine if your doctor has advised you to do so.'),
(27466, 'Lizovel Oral Suspension', 'Vinson Pharma Pvt Ltd', 'Lizovel Oral Suspension', 'Can the use of Lizovel Oral Suspension cause dizziness?', 'Yes, the use of Lizovel Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(27467, 'Lizovel Oral Suspension', 'Vinson Pharma Pvt Ltd', 'Lizovel Oral Suspension', 'Can the use of Lizovel Oral Suspension cause damage to liver?', 'Lizovel Oral Suspension is usually safe when taken according to the recommended dose. However, an overdose of Lizovel Oral Suspension can damage your liver. Avoid drinking alcohol, while taking this medicine as it may increase your risk of liver damage.'),
(27468, 'Lizovel Oral Suspension', 'Vinson Pharma Pvt Ltd', 'Lizovel Oral Suspension', 'What is the recommended storage condition for the Lizovel Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27469, 'Lizovib 600mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Lizovib 600mg Tablet', 'Can the use of Lizovib 600mg Tablet cause diarrhea?', 'Yes, the use of Lizovib 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27470, 'Lizovib 600mg Tablet', 'Vibcare Pharma Pvt Ltd', 'Lizovib 600mg Tablet', 'What foods should I avoid while taking Lizovib 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizovib 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27471, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'What if I give an excess of Lizovib Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27472, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizovib Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27473, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizovib Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizovib Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27474, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'Can Lizovib Dry Syrup be given for a long duration?', 'Prolonged use of Lizovib Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27475, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'Can other medicines be given at the same time as Lizovib Dry Syrup?', 'Lizovib Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizovib Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27476, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizovib Dry Syrup?', 'For children receiving Lizovib Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27477, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'In which disease conditions should I avoid giving Lizovib Dry Syrup to my child?', 'Avoid giving Lizovib Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizovib Dry Syrup to your child.'),
(27478, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'What food items should my child avoid while taking Lizovib Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizovib Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27479, 'Lizovib Dry Syrup', 'Vibcare Pharma Pvt Ltd', 'Lizovib Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizovib Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizovib Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27480, 'Lizovind 600mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Lizovind 600mg Tablet', 'Can the use of Lizovind 600mg Tablet cause diarrhea?', 'Yes, the use of Lizovind 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27481, 'Lizovind 600mg Tablet', 'Dr Arvind Lifescience Pvt Ltd', 'Lizovind 600mg Tablet', 'What foods should I avoid while taking Lizovind 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizovind 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27482, 'Lizovox 600mg Tablet', 'Ceras Pharmaceutical', 'Lizovox 600mg Tablet', 'Can the use of Lizovox 600mg Tablet cause diarrhea?', 'Yes, the use of Lizovox 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27483, 'Lizovox 600mg Tablet', 'Ceras Pharmaceutical', 'Lizovox 600mg Tablet', 'What foods should I avoid while taking Lizovox 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizovox 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27484, 'Lizowin Tablet', 'Grimarck Healthcare', 'Lizowin Tablet', 'Can the use of Lizowin  Tablet cause diarrhea?', 'Yes, the use of Lizowin  Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27485, 'Lizowin Tablet', 'Grimarck Healthcare', 'Lizowin Tablet', 'What foods should I avoid while taking Lizowin  Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizowin  Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27486, 'Lizowish 600mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Lizowish 600mg Tablet', 'Can the use of Lizowish 600mg Tablet cause diarrhea?', 'Yes, the use of Lizowish 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27487, 'Lizowish 600mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Lizowish 600mg Tablet', 'What foods should I avoid while taking Lizowish 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizowish 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27488, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'What if I give an excess of Lizowish Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27489, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizowish Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27490, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizowish Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizowish Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27491, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'Can Lizowish Dry Syrup be given for a long duration?', 'Prolonged use of Lizowish Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27492, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'Can other medicines be given at the same time as Lizowish Dry Syrup?', 'Lizowish Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizowish Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27493, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizowish Dry Syrup?', 'For children receiving Lizowish Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27494, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'In which disease conditions should I avoid giving Lizowish Dry Syrup to my child?', 'Avoid giving Lizowish Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizowish Dry Syrup to your child.'),
(27495, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'What food items should my child avoid while taking Lizowish Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizowish Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27496, 'Lizowish Dry Syrup', 'Nusmith Pharma Pvt. Ltd', 'Lizowish Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizowish Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizowish Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27497, 'Lizowor 600mg Tablet', 'World Healthcare Pharma', 'Lizowor 600mg Tablet', 'Can the use of Lizowor 600mg Tablet cause diarrhea?', 'Yes, the use of Lizowor 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27498, 'Lizowor 600mg Tablet', 'World Healthcare Pharma', 'Lizowor 600mg Tablet', 'What foods should I avoid while taking Lizowor 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lizowor 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27499, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'What if I give an excess of Lizpic 100mg Dry Syrup by mistake?', 'Overdose may cause unwanted side effects such as low blood count, nerve damage, or loss of vision. It may even cause a life-threatening complication called lactic acidosis which shows symptoms of abdominal pain, nausea, vomiting, and generalized weakness. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(27500, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'My child is suffering from depression and is on antidepressant therapy. Is it safe to give Lizpic 100mg Dry Syrup along with these medicines?', 'No, it is not safe as it can lead to life-threatening syndrome known as serotonin syndrome which can be manifested as hypertension, increased heart rate, shaking of the body, seizures, and increased body temperature. Call your child’s doctor right away if these symptoms appear.'),
(27501, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'What should I do if my child shows no improvement even after taking Lizpic 100mg Dry Syrup for the prescribed duration?', 'Ineffective treatment with Lizpic 100mg Dry Syrup could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may change the medicine and prescribe an antibiotic which has a stronger impact on the infection-causing bacteria. Since some of these antibiotics are given as intravenous injections, you may have to visit the doctor to give this medicine to your child.'),
(27502, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'Can Lizpic 100mg Dry Syrup be given for a long duration?', 'Prolonged use of Lizpic 100mg Dry Syrup may result in fungal or bacterial superinfection, including serious gastrointestinal infections due to inhibition of good bacteria of the gut. You must reach out to the doctor soon.'),
(27503, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'Can other medicines be given at the same time as Lizpic 100mg Dry Syrup?', 'Lizpic 100mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizpic 100mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27504, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'What lab tests that are required for monitoring while my child is taking Lizpic 100mg Dry Syrup?', 'For children receiving Lizpic 100mg Dry Syrup for a longer duration, the doctor may ask for complete blood count, basic metabolic panel, liver function test, and routine eye and nerve function assessments.'),
(27505, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'In which disease conditions should I avoid giving Lizpic 100mg Dry Syrup to my child?', 'Avoid giving Lizpic 100mg Dry Syrup if your child is suffering from conditions like diabetes mellitus (risk of low glucose), hypertension, hyperthyroidism, and seizure disorder. To ensure that this medicine is not given in such conditions, tell your child’s complete medical history to the doctor before giving Lizpic 100mg Dry Syrup to your child.'),
(27506, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'What food items should my child avoid while taking Lizpic 100mg Dry Syrup?', 'Avoid giving tyramine-containing foods like old cheese, red meat, fava or broad bean pods, soy sauce, and other soybean condiments while your child is taking Lizpic 100mg Dry Syrup. Always recheck the freshness of food before giving it to your child as it is an important concern.'),
(27507, 'Lizpic 100mg Dry Syrup', 'Alpic Biotech Ltd', 'Lizpic 100mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lizpic 100mg Dry Syrup?', 'It is advised not to get your child vaccinated while they are on treatment with Lizpic 100mg Dry Syrup. Let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better, even if he or she is on antibiotics, the vaccine can and should be given.'),
(27508, 'Lizpiccf 200mg/600mg Tablet', 'Alpic Biotech Ltd', 'Lizpiccf 200mg/600mg Tablet', 'What is Lizpiccf 200mg/600mg Tablet used for?', 'Lizpiccf 200mg/600mg Tablet is used in the treatment of bacterial infections. Cefixime treats infections of the urinary tract, skin, soft-tissue, ear, abdomen, genitals and lungs (pneumonia and bronchitis). Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(27509, 'Lizpiccf 200mg/600mg Tablet', 'Alpic Biotech Ltd', 'Lizpiccf 200mg/600mg Tablet', 'Can the use of Lizpiccf 200mg/600mg Tablet cause diarrhea?', 'Yes, the use of Lizpiccf 200mg/600mg Tablet can cause diarrhea. Antibiotics can kill the good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27510, 'Lizpiccf 200mg/600mg Tablet', 'Alpic Biotech Ltd', 'Lizpiccf 200mg/600mg Tablet', 'Is the use of Lizpiccf 200mg/600mg Tablet helpful in the treatment of bronchitis?', 'Yes, Lizpiccf 200mg/600mg Tablet is helpful in the treatment of bronchitis.'),
(27511, 'Lizpiccf 200mg/600mg Tablet', 'Alpic Biotech Ltd', 'Lizpiccf 200mg/600mg Tablet', 'What are the instructions for the storage and disposal of Lizpiccf 200mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27512, 'Liztop Expectorant', 'Atavism Health Specialities Pvt Ltd', 'Liztop Expectorant', 'Will a higher than the recommended dose of Liztop Expectorant be more effective?', 'No, taking higher than the recommended dose may not be more effective, rather it may increase the chances of having increased side effects. If you do not find any relief in your symptoms while taking Liztop Expectorant, please consult your doctor.'),
(27513, 'Liztop Expectorant', 'Atavism Health Specialities Pvt Ltd', 'Liztop Expectorant', 'In which type of cough will the doctor prescribe Liztop Expectorant?', 'Liztop Expectorant is indicated in the treatment of a cough that is associated with excessive mucus secretion.'),
(27514, 'Liztop Expectorant', 'Atavism Health Specialities Pvt Ltd', 'Liztop Expectorant', 'Are there any contraindications associated with use of Liztop Expectorant?', 'It is not recommended to use Liztop Expectorant if you have hypersensitivity to any of the components of the formulation. Avoid the medication if you have pre-existing ischaemic heart disease, significant risk factors for ischaemic heart disease and gastric ulceration.'),
(27515, 'Liztop Expectorant', 'Atavism Health Specialities Pvt Ltd', 'Liztop Expectorant', 'What are the instructions for the storage and disposal of Liztop Expectorant?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27516, 'Liztop M 5mg/10mg Tablet', 'Atavism Health Specialities Pvt Ltd', 'Liztop M 5mg/10mg Tablet', 'What is Liztop M 5mg/10mg Tablet?', 'Liztop M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27517, 'Liztop M 5mg/10mg Tablet', 'Atavism Health Specialities Pvt Ltd', 'Liztop M 5mg/10mg Tablet', 'Can the use of Liztop M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Liztop M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27518, 'Liztop M 5mg/10mg Tablet', 'Atavism Health Specialities Pvt Ltd', 'Liztop M 5mg/10mg Tablet', 'Can Liztop M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Liztop M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27519, 'Liztop M 5mg/10mg Tablet', 'Atavism Health Specialities Pvt Ltd', 'Liztop M 5mg/10mg Tablet', 'Can the use of Liztop M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Liztop M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27520, 'Liztop M 5mg/10mg Tablet', 'Atavism Health Specialities Pvt Ltd', 'Liztop M 5mg/10mg Tablet', 'Can I drink alcohol while taking Liztop M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Liztop M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Liztop M 5mg/10mg Tablet.'),
(27521, 'Liztop M 5mg/10mg Tablet', 'Atavism Health Specialities Pvt Ltd', 'Liztop M 5mg/10mg Tablet', 'Will Liztop M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Liztop M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27522, 'Liztop M 5mg/10mg Tablet', 'Atavism Health Specialities Pvt Ltd', 'Liztop M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Liztop M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27523, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27524, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'Can I decrease the dose of Liztop M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27525, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'How should Liztop M Kid Syrup be stored?', 'Liztop M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27526, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'Can Liztop M Kid Syrup make my child sleepy?', 'Liztop M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27527, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Liztop M Kid Syrup?', 'No, don’t start Liztop M Kid Syrup without speaking to your child’s doctor. Moreover, Liztop M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27528, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Liztop M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27529, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give Liztop M Kid Syrup to my child?', 'Some studies show that Liztop M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27530, 'Liztop M Kid Syrup', 'Atavism Health Specialities Pvt Ltd', 'Liztop M Kid Syrup', 'Can I use Liztop M Kid Syrup for treating acute asthma attacks in my child?', 'Liztop M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27531, 'Lizu M 5mg/10mg Tablet', 'Elancer Pharmaceuticals', 'Lizu M 5mg/10mg Tablet', 'What is Lizu M 5mg/10mg Tablet?', 'Lizu M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27532, 'Lizu M 5mg/10mg Tablet', 'Elancer Pharmaceuticals', 'Lizu M 5mg/10mg Tablet', 'Can the use of Lizu M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lizu M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27533, 'Lizu M 5mg/10mg Tablet', 'Elancer Pharmaceuticals', 'Lizu M 5mg/10mg Tablet', 'Can Lizu M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lizu M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27534, 'Lizu M 5mg/10mg Tablet', 'Elancer Pharmaceuticals', 'Lizu M 5mg/10mg Tablet', 'Can the use of Lizu M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lizu M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27535, 'Lizu M 5mg/10mg Tablet', 'Elancer Pharmaceuticals', 'Lizu M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lizu M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lizu M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lizu M 5mg/10mg Tablet.'),
(27536, 'Lizu M 5mg/10mg Tablet', 'Elancer Pharmaceuticals', 'Lizu M 5mg/10mg Tablet', 'Will Lizu M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lizu M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27537, 'Lizu M 5mg/10mg Tablet', 'Elancer Pharmaceuticals', 'Lizu M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lizu M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27538, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27539, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'Can I decrease the dose of Lizu-M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27540, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'How should Lizu-M Syrup be stored?', 'Lizu-M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27541, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'Can Lizu-M Syrup make my child sleepy?', 'Lizu-M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27542, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lizu-M Syrup?', 'No, don’t start Lizu-M Syrup without speaking to your child’s doctor. Moreover, Lizu-M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27543, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lizu-M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27544, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lizu-M Syrup to my child?', 'Some studies show that Lizu-M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27545, 'Lizu-M Syrup', 'Elancer Pharmaceuticals', 'Lizu-M Syrup', 'Can I use Lizu-M Syrup for treating acute asthma attacks in my child?', 'Lizu-M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27546, 'Lizuvira 200mg Capsule', 'Zuventus Healthcare Ltd', 'Lizuvira 200mg Capsule', 'Can Lizuvira 200mg Capsule be given to children?', 'No, Lizuvira 200mg Capsule is not approved for use in children or patients below the age of 18 years as it may interfere with the growth of bones and cartilage.'),
(27547, 'Lizuvira 200mg Capsule', 'Zuventus Healthcare Ltd', 'Lizuvira 200mg Capsule', 'What is the advantage of using Lizuvira 200mg Capsule?', 'Lizuvira 200mg Capsule has better patient compliance than some other treatment options available against COVID-19. Unlike other medicines that may need a skilled healthcare professional (a doctor or a nurse) to administer, Lizuvira 200mg Capsule is an oral medicine that can be consumed by mouth in the dosage and schedule prescribed by the doctor.'),
(27548, 'Lizuvira 200mg Capsule', 'Zuventus Healthcare Ltd', 'Lizuvira 200mg Capsule', 'Are there any serious risks of taking Lizuvira 200mg Capsule?', 'Yes, there are some serious risks involved with using Lizuvira 200mg Capsule, including its potential to cause birth defects in pregnant women and serious damage to the growth of bones and cartilage (which may cause serious muscle damage). Therefore, Lizuvira 200mg Capsule should be used only if prescribed by a doctor and not used for self-medication.'),
(27549, 'Lizuvira 200mg Capsule', 'Zuventus Healthcare Ltd', 'Lizuvira 200mg Capsule', 'Is taking Lizuvira 200mg Capsule better than getting vaccinated?', 'No. There is no comparison between the two, and Lizuvira 200mg Capsule is not a substitute for getting vaccinated. Vaccination is for prevention, while Lizuvira 200mg Capsule is used to treat an existing COVID-19 infection, provided the infection is diagnosed at an early stage.'),
(27550, 'Lizuvira 200mg Capsule', 'Zuventus Healthcare Ltd', 'Lizuvira 200mg Capsule', 'Who is at a high risk of developing severe COVID-19?', 'People who are at a high risk of developing severe COVID-19 include those aged above 60 years, who are obese, have comorbid conditions including high blood pressure, diabetes, asthma, other medical conditions related to the lungs, kidneys (like dialysis patients), liver, or those who have a weak immunity (like cancer patients).'),
(27551, 'Lizuvira 200mg Capsule', 'Zuventus Healthcare Ltd', 'Lizuvira 200mg Capsule', 'Who should not take Lizuvira 200mg Capsule?', 'Lizuvira 200mg Capsule should not be taken to prevent COVID-19 or treat patients hospitalized due to COVID-19. According to the ongoing clinical trials, patients hospitalized with severe COVID-19 infection have not benefited from taking Lizuvira 200mg Capsule.'),
(27552, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'What is Lizy 2.5 Tablet? What is it used for?', 'Lizy 2.5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(27553, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'What should I tell my doctor before taking Lizy 2.5 Tablet?', 'Before taking Lizy 2.5 Tablet you must tell your doctor if you are allergic to Lizy 2.5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lizy 2.5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(27554, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'What time of the day should I take Lizy 2.5 Tablet?', 'Lizy 2.5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lizy 2.5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lizy 2.5 Tablet, please consult your doctor.'),
(27555, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'I feel better after taking Lizy 2.5 Tablet, can I stop taking it?', 'No, continue taking Lizy 2.5 Tablet even if you feel better and your blood pressure is under control. Stopping Lizy 2.5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(27556, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'Will Lizy 2.5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lizy 2.5 Tablet may make you feel dizzy or lightheaded. If Lizy 2.5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(27557, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'What other lifestyle changes should I make while taking Lizy 2.5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lizy 2.5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lizy 2.5 Tablet and to keep yourself healthy.'),
(27558, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'I have diabetes. Does Lizy 2.5 Tablet have any effect on blood sugar levels?', 'Yes, Lizy 2.5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(27559, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'After starting Lizy 2.5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lizy 2.5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lizy 2.5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lizy 2.5 Tablet, the cough may take a few days to a month to resolve completely.'),
(27560, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'Can Lizy 2.5 Tablet affect my fertility?', 'There is no evidence that Lizy 2.5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lizy 2.5 Tablet is not recommended in pregnancy.'),
(27561, 'Lizy 2.5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 2.5 Tablet', 'Can Lizy 2.5 Tablet increase potassium levels? If so, what should be done?', 'Lizy 2.5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lizy 2.5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(27562, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'What is Lizy 5 Tablet? What is it used for?', 'Lizy 5 Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(27563, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'What should I tell my doctor before taking Lizy 5 Tablet?', 'Before taking Lizy 5 Tablet you must tell your doctor if you are allergic to Lizy 5 Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lizy 5 Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(27564, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'What time of the day should I take Lizy 5 Tablet?', 'Lizy 5 Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lizy 5 Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lizy 5 Tablet, please consult your doctor.'),
(27565, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'I feel better after taking Lizy 5 Tablet, can I stop taking it?', 'No, continue taking Lizy 5 Tablet even if you feel better and your blood pressure is under control. Stopping Lizy 5 Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(27566, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'Will Lizy 5 Tablet make me feel dizzy? What should I do about it?', 'Yes, Lizy 5 Tablet may make you feel dizzy or lightheaded. If Lizy 5 Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(27567, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'What other lifestyle changes should I make while taking Lizy 5 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lizy 5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lizy 5 Tablet and to keep yourself healthy.'),
(27568, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'I have diabetes. Does Lizy 5 Tablet have any effect on blood sugar levels?', 'Yes, Lizy 5 Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(27569, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'After starting Lizy 5 Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lizy 5 Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lizy 5 Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lizy 5 Tablet, the cough may take a few days to a month to resolve completely.'),
(27570, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'Can Lizy 5 Tablet affect my fertility?', 'There is no evidence that Lizy 5 Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lizy 5 Tablet is not recommended in pregnancy.'),
(27571, 'Lizy 5 Tablet', 'Dr. Ethix\'s Product & Services Pvt Ltd', 'Lizy 5 Tablet', 'Can Lizy 5 Tablet increase potassium levels? If so, what should be done?', 'Lizy 5 Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lizy 5 Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(27572, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'Is Lizzi 250 Tablet safe?', 'Lizzi 250 Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(27573, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Lizzi 250 Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(27574, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'Can the use of Lizzi 250 Tablet cause diarrhea?', 'Yes, the use of Lizzi 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27575, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'Can Lizzi 250 Tablet be taken at night?', 'Lizzi 250 Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Lizzi 250 Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(27576, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'How long does it take Lizzi 250 Tablet to work?', 'Lizzi 250 Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(27577, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'Why is Lizzi 250 Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lizzi 250 Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(27578, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'What should I avoid while taking Lizzi 250 Tablet?', 'Generally, it is recommended that patients taking Lizzi 250 Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lizzi 250 Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Lizzi 250 Tablet increases the risk of sunburn.'),
(27579, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'Is Lizzi 250 Tablet a strong antibiotic?', 'Lizzi 250 Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lizzi 250 Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(27580, 'Lizzi 250 Tablet', 'Drugmed Pharma', 'Lizzi 250 Tablet', 'Can you get a yeast infection from taking Lizzi 250 Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Lizzi 250 Tablet. Antibiotics such as Lizzi 250 Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lizzi 250 Tablet or soon after stopping it.'),
(27581, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. Is Lizzi 500 Tablet safe?', 'Lizzi 500 Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(27582, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Lizzi 500 Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(27583, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. Can the use of Lizzi 500 Tablet cause diarrhea?', 'Yes, the use of Lizzi 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27584, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. Can Lizzi 500 Tablet be taken at night?', 'Lizzi 500 Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Lizzi 500 Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(27585, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. How long does it take Lizzi 500 Tablet to work?', 'Lizzi 500 Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(27586, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. Why is Lizzi 500 Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lizzi 500 Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(27587, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. What should I avoid while taking Lizzi 500 Tablet?', 'Generally, it is recommended that patients taking Lizzi 500 Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lizzi 500 Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Lizzi 500 Tablet increases the risk of sunburn.'),
(27588, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. Is Lizzi 500 Tablet a strong antibiotic?', 'Lizzi 500 Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lizzi 500 Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(27589, 'Lizzi 500 Tablet', 'Drugmed Pharma', 'Lizzi 500 Tablet', 'Q. Can you get a yeast infection from taking Lizzi 500 Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Lizzi 500 Tablet. Antibiotics such as Lizzi 500 Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lizzi 500 Tablet or soon after stopping it.'),
(27590, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'What if I give too much of Lizzi Oral Suspension by mistake?', 'Lizzi Oral Suspension is unlikely to cause any harm if an extra dose is given by mistake. However, if you think you have given too much of Lizzi Oral Suspension to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(27591, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Are there any possible serious side effects of Lizzi Oral Suspension?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(27592, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Can other medicines be given at the same time as Lizzi Oral Suspension?', 'Lizzi Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lizzi Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(27593, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Can I get my child vaccinated while on treatment with Lizzi Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(27594, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Which all lab tests should my child undergo while taking Lizzi Oral Suspension on a long term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(27595, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Can Lizzi Oral Suspension impact my child’s digestion?', 'Children often have a sensitive stomach and develop a stomach upset while taking medicines. When antibiotics are given, the good bacteria in their gastrointestinal tract may too get affected.  Lizzi Oral Suspension may kill off good bacteria along with the bad ones, increasing your child’s risk of developing other infections. So, in case your child is having diarrhea while on Lizzi Oral Suspension, do not stop the medicine course. Instead, call your child’s doctor to ask the next steps. In some cases, the doctor may alter the dose.'),
(27596, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Why is Lizzi Oral Suspension given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Lizzi Oral Suspension is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regimen advised by your doctor.'),
(27597, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'What should I avoid while taking Lizzi Oral Suspension?', 'Generally, it is recommended that patients taking Lizzi Oral Suspension should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Lizzi Oral Suspension. It is also recommended to avoid exposure to sunlight or tanning beds as Lizzi Oral Suspension increases the risk of sunburn.'),
(27598, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Is Lizzi Oral Suspension a strong antibiotic?', 'Lizzi Oral Suspension is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Lizzi Oral Suspension has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(27599, 'Lizzi Oral Suspension', 'Drugmed Pharma', 'Lizzi Oral Suspension', 'Can you get a yeast infection from taking Lizzi Oral Suspension?', 'Some people may get a fungal or yeast infection known as thrush after taking Lizzi Oral Suspension. Antibiotics such as Lizzi Oral Suspension can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Lizzi Oral Suspension or soon after stopping it.'),
(27600, 'Lj Metro 500mg Infusion', 'Lifejoy Healthcare', 'Lj Metro 500mg Infusion', 'Q. How long does Lj Metro 500mg Infusion take to work?', 'Usually, Lj Metro 500mg Infusion starts working within 1 hour of its administration. However, it may take around 2-3 days to make you feel better while taking Lj Metro 500mg Infusion. If you do not experience any significant reduction in your symptoms, consult your doctor.'),
(27601, 'Lj Metro 500mg Infusion', 'Lifejoy Healthcare', 'Lj Metro 500mg Infusion', 'Q. How is Lj Metro 500mg Infusion administered?', 'Lj Metro 500mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lj Metro 500mg Infusion.'),
(27602, 'Lj Metro 500mg Infusion', 'Lifejoy Healthcare', 'Lj Metro 500mg Infusion', 'Q. Can I drink alcohol while using Lj Metro 500mg Infusion?', 'No, avoid drinking alcohol while taking Lj Metro 500mg Infusion. Moreover, you should avoid alcohol even after 3 days of finishing the complete course. Drinking alcohol can cause an unpleasant reaction (Disulfiram like reaction) with symptoms such as stomach pain, nausea, vomiting, headache, flushing or redness of the face.'),
(27603, 'Lj Metro 500mg Infusion', 'Lifejoy Healthcare', 'Lj Metro 500mg Infusion', 'Q. Can the use of Lj Metro 500mg Infusion cause metallic taste?', 'Yes, Lj Metro 500mg Infusion may cause a temporary metallic taste. This metallic taste can be reduced by staying hydrated, brushing teeth after the meals and chewing sugar-free gum or mints.'),
(27604, 'Lj Metro 500mg Infusion', 'Lifejoy Healthcare', 'Lj Metro 500mg Infusion', 'Q. What if I take more than the recommended dose of Lj Metro 500mg Infusion?', 'If you have taken Lj Metro 500mg Infusion in excess (more than the recommended dose), immediately contact your doctor or report to the nearest hospital. Overdose of Lj Metro 500mg Infusion may cause loss of appetite, metallic taste, headache, dizziness, insomnia or drowsiness.'),
(27605, 'Lj Metro 500mg Infusion', 'Lifejoy Healthcare', 'Lj Metro 500mg Infusion', 'Q. What if there is no improvement after using Lj Metro 500mg Infusion?', 'Inform your doctor if you did not feel better even after completing the full course of treatment. Also, inform him/her if your symptoms are getting worse while using this medicine.'),
(27606, 'LK Plus 50mg/12.5mg Capsule', 'Pacific Pharmaceuticals Pvt Ltd', 'LK Plus 50mg/12.5mg Capsule', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27607, 'LK Plus 50mg/12.5mg Capsule', 'Pacific Pharmaceuticals Pvt Ltd', 'LK Plus 50mg/12.5mg Capsule', 'Can I feel dizzy after taking LK Plus 50mg/12.5mg Capsule?', 'Yes, the use of LK Plus 50mg/12.5mg Capsule can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(27608, 'LK Plus 50mg/12.5mg Capsule', 'Pacific Pharmaceuticals Pvt Ltd', 'LK Plus 50mg/12.5mg Capsule', 'Can I use LK Plus 50mg/12.5mg Capsule in pregnancy?', 'No, LK Plus 50mg/12.5mg Capsule should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using LK Plus 50mg/12.5mg Capsule, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(27609, 'LK Plus 50mg/12.5mg Capsule', 'Pacific Pharmaceuticals Pvt Ltd', 'LK Plus 50mg/12.5mg Capsule', 'What are some lifestyle changes to make while using LK Plus 50mg/12.5mg Capsule?', 'Making lifestyle changes can boost your health while taking LK Plus 50mg/12.5mg Capsule. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(27610, 'LK Plus 50mg/12.5mg Capsule', 'Pacific Pharmaceuticals Pvt Ltd', 'LK Plus 50mg/12.5mg Capsule', 'Can I stop taking LK Plus 50mg/12.5mg Capsule if I feel well?', 'No, keep using LK Plus 50mg/12.5mg Capsule as advised by your doctor, even if you feel well. Stopping LK Plus 50mg/12.5mg Capsule suddenly may lead to serious complications such as heart attack and stroke.'),
(27611, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'For how long should I take Lla 10mg Tablet?', 'You may need to take Lla 10mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lla 10mg Tablet. Stopping Lla 10mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(27612, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'Does Lla 10mg Tablet cause weight gain?', 'No, there is no evidence of Lla 10mg Tablet causing weight gain. If you are taking Lla 10mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(27613, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'Does Lla 10mg Tablet make you tired?', 'Yes, Lla 10mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lla 10mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lla 10mg Tablet.'),
(27614, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'Should Lla 10mg Tablet be taken at night?', 'Lla 10mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(27615, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'What foods should be avoided when taking Lla 10mg Tablet?', 'Lla 10mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(27616, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'How do I know whether Lla 10mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lla 10mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lla 10mg Tablet versus the risks of not taking it at all.'),
(27617, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'Can Lla 10mg Tablet cause memory loss?', 'Lla 10mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lla 10mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(27618, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'Can Lla 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lla 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(27619, 'Lla 10mg Tablet', 'Rangsubbs', 'Lla 10mg Tablet', 'Is it true that Lla 10mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lla 10mg Tablet may slightly increase this risk. This is because Lla 10mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(27620, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'For how long should I take Lla 20mg Tablet?', 'You may need to take Lla 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lla 20mg Tablet. Stopping Lla 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(27621, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'Does Lla 20mg Tablet cause weight gain?', 'No, there is no evidence of Lla 20mg Tablet causing weight gain. If you are taking Lla 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(27622, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'Does Lla 20mg Tablet make you tired?', 'Yes, Lla 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lla 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lla 20mg Tablet.'),
(27623, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'Should Lla 20mg Tablet be taken at night?', 'Lla 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(27624, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'What foods should be avoided when taking Lla 20mg Tablet?', 'Lla 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(27625, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'How do I know whether Lla 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lla 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lla 20mg Tablet versus the risks of not taking it at all.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27626, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'Can Lla 20mg Tablet cause memory loss?', 'Lla 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lla 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(27627, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'Can Lla 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lla 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(27628, 'Lla 20mg Tablet', 'Rangsubbs', 'Lla 20mg Tablet', 'Is it true that Lla 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lla 20mg Tablet may slightly increase this risk. This is because Lla 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(27629, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'For how long should I take Lla 40mg Tablet?', 'You may need to take Lla 40mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lla 40mg Tablet. Stopping Lla 40mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(27630, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'Does Lla 40mg Tablet cause weight gain?', 'No, there is no evidence of Lla 40mg Tablet causing weight gain. If you are taking Lla 40mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(27631, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'Does Lla 40mg Tablet make you tired?', 'Yes, Lla 40mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lla 40mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lla 40mg Tablet.'),
(27632, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'Should Lla 40mg Tablet be taken at night?', 'Lla 40mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(27633, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'What foods should be avoided when taking Lla 40mg Tablet?', 'Lla 40mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(27634, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'How do I know whether Lla 40mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lla 40mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lla 40mg Tablet versus the risks of not taking it at all.'),
(27635, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'Can Lla 40mg Tablet cause memory loss?', 'Lla 40mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lla 40mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(27636, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'Can Lla 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lla 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(27637, 'Lla 40mg Tablet', 'Rangsubbs', 'Lla 40mg Tablet', 'Is it true that Lla 40mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lla 40mg Tablet may slightly increase this risk. This is because Lla 40mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(27638, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'For how long should I take Lla 5mg Tablet?', 'You may need to take Lla 5mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lla 5mg Tablet. Stopping Lla 5mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(27639, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'Does Lla 5mg Tablet cause weight gain?', 'No, there is no evidence of Lla 5mg Tablet causing weight gain. If you are taking Lla 5mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(27640, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'Does Lla 5mg Tablet make you tired?', 'Yes, Lla 5mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lla 5mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lla 5mg Tablet.'),
(27641, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'Should Lla 5mg Tablet be taken at night?', 'Lla 5mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(27642, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'What foods should be avoided when taking Lla 5mg Tablet?', 'Lla 5mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(27643, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'How do I know whether Lla 5mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lla 5mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lla 5mg Tablet versus the risks of not taking it at all.'),
(27644, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'Can Lla 5mg Tablet cause memory loss?', 'Lla 5mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lla 5mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(27645, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'Can Lla 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lla 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(27646, 'Lla 5mg Tablet', 'Rangsubbs', 'Lla 5mg Tablet', 'Is it true that Lla 5mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lla 5mg Tablet may slightly increase this risk. This is because Lla 5mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(27647, 'Lla F 160mg/10mg Tablet', 'Rangsubbs', 'Lla F 160mg/10mg Tablet', 'Can the use of Lla F 160mg/10mg Tablet cause liver damage?', 'Lla F 160mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(27648, 'Lla F 160mg/10mg Tablet', 'Rangsubbs', 'Lla F 160mg/10mg Tablet', 'Can the use of Lla F 160mg/10mg Tablet cause muscle pain?', 'Yes, Lla F 160mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(27649, 'Lla F 160mg/10mg Tablet', 'Rangsubbs', 'Lla F 160mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lla F 160mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lla F 160mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(27650, 'Lla F 160mg/10mg Tablet', 'Rangsubbs', 'Lla F 160mg/10mg Tablet', 'What medicines should I avoid while taking Lla F 160mg/10mg Tablet?', 'Lla F 160mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lla F 160mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(27651, 'Lla F 160mg/10mg Tablet', 'Rangsubbs', 'Lla F 160mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lla F 160mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27652, 'Llcol 1% Lotion', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol 1% Lotion', 'Is Llcol 1% Lotion safe in pregnancy?', 'Llcol 1% Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Llcol 1% Lotion.'),
(27653, 'Llcol 1% Lotion', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol 1% Lotion', 'Is Llcol 1% Lotion fungicidal or Fungistatic?', 'Llcol 1% Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(27654, 'Llcol 1% Lotion', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol 1% Lotion', 'How to use Llcol 1% Lotion?', 'Use Llcol 1% Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(27655, 'Llcol 1% Lotion', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol 1% Lotion', 'How long does it take for Llcol 1% Lotion to work?', 'For different ailments, Llcol 1% Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(27656, 'Llcol 1% Lotion', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol 1% Lotion', 'How should I store Llcol 1% Lotion?', 'Keep Llcol 1% Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(27657, 'Llcol 1% Lotion', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol 1% Lotion', 'Is Llcol 1% Lotion safe to use in children?', 'Yes, Llcol 1% Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(27658, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. Is Llcol Cream safe in pregnancy?', 'Llcol Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Llcol Cream.'),
(27659, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. Is Llcol Cream fungicidal or Fungistatic?', 'Llcol Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(27660, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. How to use Llcol Cream?', 'Use Llcol Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(27661, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. How long does it take for Llcol Cream to work?', 'For different ailments, Llcol Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(27662, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. How should I store Llcol Cream?', 'Keep Llcol Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(27663, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. Is Llcol Cream safe to use in children?', 'Yes, Llcol Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(27664, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. Is Llcol Cream safe in pregnancy?', 'Llcol Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Llcol Cream.'),
(27665, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. Is Llcol Cream fungicidal or Fungistatic?', 'Llcol Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(27666, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. How to use Llcol Cream?', 'Use Llcol Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(27667, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. How long does it take for Llcol Cream to work?', 'For different ailments, Llcol Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(27668, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. How should I store Llcol Cream?', 'Keep Llcol Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(27669, 'Llcol Cream', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Cream', 'Q. Is Llcol Cream safe to use in children?', 'Yes, Llcol Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(27670, 'Llcol Lotion 1%', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Lotion 1%', 'Is Llcol Lotion 1% safe in pregnancy?', 'Llcol Lotion 1% should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Llcol Lotion 1%.'),
(27671, 'Llcol Lotion 1%', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Lotion 1%', 'Is Llcol Lotion 1% fungicidal or Fungistatic?', 'Llcol Lotion 1% has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(27672, 'Llcol Lotion 1%', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Lotion 1%', 'How to use Llcol Lotion 1%?', 'Use Llcol Lotion 1% exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(27673, 'Llcol Lotion 1%', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Lotion 1%', 'How long does it take for Llcol Lotion 1% to work?', 'For different ailments, Llcol Lotion 1% works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(27674, 'Llcol Lotion 1%', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Lotion 1%', 'How should I store Llcol Lotion 1%?', 'Keep Llcol Lotion 1% in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(27675, 'Llcol Lotion 1%', 'Unison Pharmaceuticals Pvt Ltd', 'Llcol Lotion 1%', 'Is Llcol Lotion 1% safe to use in children?', 'Yes, Llcol Lotion 1% is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(27676, 'Lld 600mg Tablet', 'In Med Therapeutics', 'Lld 600mg Tablet', 'Can the use of Lld 600mg Tablet cause diarrhea?', 'Yes, the use of Lld 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27677, 'Lld 600mg Tablet', 'In Med Therapeutics', 'Lld 600mg Tablet', 'What foods should I avoid while taking Lld 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lld 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(27678, 'L-Loc Injection', 'Louis and Clark Pharmaceutical', 'L-Loc Injection', 'Who should not take L-Loc Injection?', 'L-Loc Injection should not be given to anyone with a known allergy or hypersensitivity to L-Loc Injection or any of its ingredients.'),
(27679, 'L-Loc Injection', 'Louis and Clark Pharmaceutical', 'L-Loc Injection', 'What should I tell my doctor before starting treatment with L-Loc Injection?', 'Before starting treatment with L-Loc Injection, tell your doctor if you have any other health problems, like kidney or liver-related issues, breathing issues like asthma, heart related ailments like uncontrollable or high blood pressure, irregular heartbeat, etc. This is because certain medical conditions may affect your treatment and you may even need dose modifications. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you are planning a baby, if you are pregnant or breastfeeding.'),
(27680, 'L-Loc Injection', 'Louis and Clark Pharmaceutical', 'L-Loc Injection', 'How do you give L-Loc Injection?', 'L-Loc Injection is given by a doctor or nurse into the muscle or under the skin. It should not be self-administered. The dose will depend on the body weight of the patient and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from L-Loc Injection.'),
(27681, 'L-Loc Injection', 'Louis and Clark Pharmaceutical', 'L-Loc Injection', 'Can L-Loc Injection be used in children?', 'There is not enough data available for its use in children. For any doubts, consult your doctor.'),
(27682, 'LM 10 Tablet', 'Briscon Remedies', 'LM 10 Tablet (Briscon Remedies)', 'Q. What is LM 10 Tablet?', 'LM 10 Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27683, 'LM 10 Tablet', 'Briscon Remedies', 'LM 10 Tablet (Briscon Remedies)', 'Q. Can the use of LM 10 Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of LM 10 Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27684, 'LM 10 Tablet', 'Briscon Remedies', 'LM 10 Tablet (Briscon Remedies)', 'Q. Can LM 10 Tablet be stopped when allergy symptoms are relieved?', 'No, LM 10 Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27685, 'LM 10 Tablet', 'Briscon Remedies', 'LM 10 Tablet (Briscon Remedies)', 'Q. Can the use of LM 10 Tablet cause dry mouth?', 'Yes, the use of LM 10 Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27686, 'LM 10 Tablet', 'Briscon Remedies', 'LM 10 Tablet (Briscon Remedies)', 'Q. Can I drink alcohol while taking LM 10 Tablet?', 'No, do not take alcohol while taking LM 10 Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by LM 10 Tablet.'),
(27687, 'LM 10 Tablet', 'Briscon Remedies', 'LM 10 Tablet (Briscon Remedies)', 'Q. Will LM 10 Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of LM 10 Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27688, 'LM 10 Tablet', 'Briscon Remedies', 'LM 10 Tablet (Briscon Remedies)', 'Q. What are the instructions for storage and disposal of LM 10 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27689, 'LM 10 Tablet', 'Wonder Drugs Pvt Ltd', 'LM 10 Tablet (Wonder Drugs Pvt Ltd)', 'What is LM 10 Tablet?', 'LM 10 Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27690, 'LM 10 Tablet', 'Wonder Drugs Pvt Ltd', 'LM 10 Tablet (Wonder Drugs Pvt Ltd)', 'Can the use of LM 10 Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of LM 10 Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27691, 'LM 10 Tablet', 'Wonder Drugs Pvt Ltd', 'LM 10 Tablet (Wonder Drugs Pvt Ltd)', 'Can LM 10 Tablet be stopped when allergy symptoms are relieved?', 'No, LM 10 Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27692, 'LM 10 Tablet', 'Wonder Drugs Pvt Ltd', 'LM 10 Tablet (Wonder Drugs Pvt Ltd)', 'Can the use of LM 10 Tablet cause dry mouth?', 'Yes, the use of LM 10 Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27693, 'LM 10 Tablet', 'Wonder Drugs Pvt Ltd', 'LM 10 Tablet (Wonder Drugs Pvt Ltd)', 'Can I drink alcohol while taking LM 10 Tablet?', 'No, do not take alcohol while taking LM 10 Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by LM 10 Tablet.'),
(27694, 'LM 10 Tablet', 'Wonder Drugs Pvt Ltd', 'LM 10 Tablet (Wonder Drugs Pvt Ltd)', 'Will LM 10 Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of LM 10 Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27695, 'LM 10 Tablet', 'Wonder Drugs Pvt Ltd', 'LM 10 Tablet (Wonder Drugs Pvt Ltd)', 'What are the instructions for storage and disposal of LM 10 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27696, 'LM 2 Tablet', 'S.S. Pharma Lifescience (P) Limited', 'LM 2 Tablet', 'What is LM 2 Tablet?', 'LM 2 Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27697, 'LM 2 Tablet', 'S.S. Pharma Lifescience (P) Limited', 'LM 2 Tablet', 'Can the use of LM 2 Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of LM 2 Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27698, 'LM 2 Tablet', 'S.S. Pharma Lifescience (P) Limited', 'LM 2 Tablet', 'Can LM 2 Tablet be stopped when allergy symptoms are relieved?', 'No, LM 2 Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27699, 'LM 2 Tablet', 'S.S. Pharma Lifescience (P) Limited', 'LM 2 Tablet', 'Can the use of LM 2 Tablet cause dry mouth?', 'Yes, the use of LM 2 Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27700, 'LM 2 Tablet', 'S.S. Pharma Lifescience (P) Limited', 'LM 2 Tablet', 'Can I drink alcohol while taking LM 2 Tablet?', 'No, do not take alcohol while taking LM 2 Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by LM 2 Tablet.'),
(27701, 'LM 2 Tablet', 'S.S. Pharma Lifescience (P) Limited', 'LM 2 Tablet', 'Will LM 2 Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of LM 2 Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27702, 'LM 2 Tablet', 'S.S. Pharma Lifescience (P) Limited', 'LM 2 Tablet', 'What are the instructions for storage and disposal of LM 2 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27703, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27704, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'Can I decrease the dose of LM Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27705, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'How should LM Kid Syrup be stored?', 'LM Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27706, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'Can LM Kid Syrup make my child sleepy?', 'LM Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27707, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of LM Kid Syrup?', 'No, don’t start LM Kid Syrup without speaking to your child’s doctor. Moreover, LM Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27708, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of LM Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27709, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give LM Kid Syrup to my child?', 'Some studies show that LM Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27710, 'LM Kid Syrup', 'Rozer Pharmaceuticals Pvt Ltd', 'LM Kid Syrup', 'Can I use LM Kid Syrup for treating acute asthma attacks in my child?', 'LM Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27711, 'L-M Tablet', 'Plena Remedies', 'L-M Tablet', 'What is L-M Tablet?', 'L-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27712, 'L-M Tablet', 'Plena Remedies', 'L-M Tablet', 'Can the use of L-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27713, 'L-M Tablet', 'Plena Remedies', 'L-M Tablet', 'Can L-M Tablet be stopped when allergy symptoms are relieved?', 'No, L-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27714, 'L-M Tablet', 'Plena Remedies', 'L-M Tablet', 'Can the use of L-M Tablet cause dry mouth?', 'Yes, the use of L-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27715, 'L-M Tablet', 'Plena Remedies', 'L-M Tablet', 'Can I drink alcohol while taking L-M Tablet?', 'No, do not take alcohol while taking L-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-M Tablet.'),
(27716, 'L-M Tablet', 'Plena Remedies', 'L-M Tablet', 'Will L-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27717, 'L-M Tablet', 'Plena Remedies', 'L-M Tablet', 'What are the instructions for storage and disposal of L-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27718, 'Lmcet 5mg/10mg Tablet', 'ARP Pharma', 'Lmcet 5mg/10mg Tablet', 'What is Lmcet 5mg/10mg Tablet?', 'Lmcet 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27719, 'Lmcet 5mg/10mg Tablet', 'ARP Pharma', 'Lmcet 5mg/10mg Tablet', 'Can the use of Lmcet 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lmcet 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27720, 'Lmcet 5mg/10mg Tablet', 'ARP Pharma', 'Lmcet 5mg/10mg Tablet', 'Can Lmcet 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lmcet 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27721, 'Lmcet 5mg/10mg Tablet', 'ARP Pharma', 'Lmcet 5mg/10mg Tablet', 'Can the use of Lmcet 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lmcet 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27722, 'Lmcet 5mg/10mg Tablet', 'ARP Pharma', 'Lmcet 5mg/10mg Tablet', 'Can I drink alcohol while taking Lmcet 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lmcet 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lmcet 5mg/10mg Tablet.'),
(27723, 'Lmcet 5mg/10mg Tablet', 'ARP Pharma', 'Lmcet 5mg/10mg Tablet', 'Will Lmcet 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lmcet 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27724, 'Lmcet 5mg/10mg Tablet', 'ARP Pharma', 'Lmcet 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lmcet 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27725, 'Lmd 5mg/10mg Tablet', 'Drukst Biotech Private Limited', 'Lmd 5mg/10mg Tablet', 'What is Lmd 5mg/10mg Tablet?', 'Lmd 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27726, 'Lmd 5mg/10mg Tablet', 'Drukst Biotech Private Limited', 'Lmd 5mg/10mg Tablet', 'Can the use of Lmd 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lmd 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27727, 'Lmd 5mg/10mg Tablet', 'Drukst Biotech Private Limited', 'Lmd 5mg/10mg Tablet', 'Can Lmd 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lmd 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27728, 'Lmd 5mg/10mg Tablet', 'Drukst Biotech Private Limited', 'Lmd 5mg/10mg Tablet', 'Can the use of Lmd 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lmd 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27729, 'Lmd 5mg/10mg Tablet', 'Drukst Biotech Private Limited', 'Lmd 5mg/10mg Tablet', 'Can I drink alcohol while taking Lmd 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lmd 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lmd 5mg/10mg Tablet.'),
(27730, 'Lmd 5mg/10mg Tablet', 'Drukst Biotech Private Limited', 'Lmd 5mg/10mg Tablet', 'Will Lmd 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lmd 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27731, 'Lmd 5mg/10mg Tablet', 'Drukst Biotech Private Limited', 'Lmd 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lmd 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27732, 'Lmdot 5mg/10mg Tablet', 'Three Dots Lifescience', 'Lmdot 5mg/10mg Tablet', 'What is Lmdot 5mg/10mg Tablet?', 'Lmdot 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27733, 'Lmdot 5mg/10mg Tablet', 'Three Dots Lifescience', 'Lmdot 5mg/10mg Tablet', 'Can the use of Lmdot 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lmdot 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27734, 'Lmdot 5mg/10mg Tablet', 'Three Dots Lifescience', 'Lmdot 5mg/10mg Tablet', 'Can Lmdot 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lmdot 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27735, 'Lmdot 5mg/10mg Tablet', 'Three Dots Lifescience', 'Lmdot 5mg/10mg Tablet', 'Can the use of Lmdot 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lmdot 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27736, 'Lmdot 5mg/10mg Tablet', 'Three Dots Lifescience', 'Lmdot 5mg/10mg Tablet', 'Can I drink alcohol while taking Lmdot 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lmdot 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lmdot 5mg/10mg Tablet.'),
(27737, 'Lmdot 5mg/10mg Tablet', 'Three Dots Lifescience', 'Lmdot 5mg/10mg Tablet', 'Will Lmdot 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lmdot 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27738, 'Lmdot 5mg/10mg Tablet', 'Three Dots Lifescience', 'Lmdot 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lmdot 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27739, 'Lmetehr 80mg/480mg Tablet', 'Pure Drugs & Life Science', 'Lmetehr 80mg/480mg Tablet', 'How to take Lmetehr 80mg/480mg Tablet?', 'Take Lmetehr 80mg/480mg Tablet with food, exactly as prescribed by your doctor. This medicine is usually taken twice a day with a meal for 3 days, or as directed. On your first day of treatment, take your first dose with food, followed by your second dose 8 hours later. Then for the next 2 days, take one dose in the morning and one dose in the evening. Patients should be encouraged to resume normal eating as soon as food can be tolerated, since this improves the absorption of the medicine.'),
(27740, 'Lmetehr 80mg/480mg Tablet', 'Pure Drugs & Life Science', 'Lmetehr 80mg/480mg Tablet', 'Can I take Lmetehr 80mg/480mg Tablet while I am pregnant?', 'No, Lmetehr 80mg/480mg Tablet is considered to be harmful for women in their first trimester of pregnancy. The reason being, it increases the chances of fetal loss.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27741, 'Lmetehr 80mg/480mg Tablet', 'Pure Drugs & Life Science', 'Lmetehr 80mg/480mg Tablet', 'Are there any specific contraindications associated with the use of Lmetehr 80mg/480mg Tablet?', 'The use of Lmetehr 80mg/480mg Tablet is considered to be harmful for patients with a known hypersensitivity to any of the active or inactive ingredients of the medicine. Caution is advised in patients with cases of severe malaria and in the first trimester of pregnancy.'),
(27742, 'Lmetehr 80mg/480mg Tablet', 'Pure Drugs & Life Science', 'Lmetehr 80mg/480mg Tablet', 'What should I know about the storage and disposal of Lmetehr 80mg/480mg Tablet?', 'It is advised to keep this medicine in the container it came in, tightly closed. It should be kept out of reach of children. Store it at room temperature and away from excess heat and moisture.'),
(27743, 'Lmg 500mg Tablet', 'Yacca Pharmaceuticals Pvt Ltd', 'Lmg 500mg Tablet', 'Is Lmg 500mg Tablet safe?', 'Lmg 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(27744, 'Lmg 500mg Tablet', 'Yacca Pharmaceuticals Pvt Ltd', 'Lmg 500mg Tablet', 'What if I forget to take a dose of Lmg 500mg Tablet?', 'If you forget a dose of Lmg 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(27745, 'Lmg 500mg Tablet', 'Yacca Pharmaceuticals Pvt Ltd', 'Lmg 500mg Tablet', 'Can the use of Lmg 500mg Tablet cause diarrhea?', 'Yes, the use of Lmg 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27746, 'Lmg 500mg Tablet', 'Yacca Pharmaceuticals Pvt Ltd', 'Lmg 500mg Tablet', 'Can I stop taking Lmg 500mg Tablet when I feel better?', 'No, do not stop taking Lmg 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lmg 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lmg 500mg Tablet in the dose and duration advised by the doctor.'),
(27747, 'Lmg 500mg Tablet', 'Yacca Pharmaceuticals Pvt Ltd', 'Lmg 500mg Tablet', 'Can the use of Lmg 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lmg 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lmg 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(27748, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. For how long can L-Mica 250mg Injection be taken?', 'The usual course of treatment with L-Mica 250mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking L-Mica 250mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(27749, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. Is L-Mica 250mg Injection safe?', 'L-Mica 250mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(27750, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. How is L-Mica 250mg Injection administered?', 'L-Mica 250mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from L-Mica 250mg Injection.'),
(27751, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. Can I take a higher than the recommended dose of this medicine?', 'No, L-Mica 250mg Injection should be taken in the recommended dose only. Overdose of L-Mica 250mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(27752, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. What are the instructions for the storage and disposal of L-Mica 250mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27753, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. What if I don\'t get better after using L-Mica 250mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(27754, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. Can I stop taking L-Mica 250mg Injection when I feel better?', 'No, do not stop taking L-Mica 250mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(27755, 'L-Mica 250mg Injection', 'Kayess Healthcare', 'L-Mica 250mg Injection', 'Q. Can I take alcohol while on L-Mica 250mg Injection?', 'You should avoid alcohol while being on treatment with L-Mica 250mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by L-Mica 250mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(27756, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'For how long can L-Mica 500mg Injection be taken?', 'The usual course of treatment with L-Mica 500mg Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking L-Mica 500mg Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(27757, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'Is L-Mica 500mg Injection safe?', 'L-Mica 500mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(27758, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'How is L-Mica 500mg Injection administered?', 'L-Mica 500mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from L-Mica 500mg Injection.'),
(27759, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, L-Mica 500mg Injection should be taken in the recommended dose only. Overdose of L-Mica 500mg Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(27760, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'What are the instructions for the storage and disposal of L-Mica 500mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27761, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'What if I don\'t get better after using L-Mica 500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(27762, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'Can I stop taking L-Mica 500mg Injection when I feel better?', 'No, do not stop taking L-Mica 500mg Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(27763, 'L-Mica 500mg Injection', 'Kayess Healthcare', 'L-Mica 500mg Injection', 'Can I take alcohol while on L-Mica 500mg Injection?', 'You should avoid alcohol while being on treatment with L-Mica 500mg Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by L-Mica 500mg Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(27764, 'LMK 5mg/10mg Tablet', 'Kansas Labs', 'LMK 5mg/10mg Tablet', 'What is LMK 5mg/10mg Tablet?', 'LMK 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27765, 'LMK 5mg/10mg Tablet', 'Kansas Labs', 'LMK 5mg/10mg Tablet', 'Can the use of LMK 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of LMK 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27766, 'LMK 5mg/10mg Tablet', 'Kansas Labs', 'LMK 5mg/10mg Tablet', 'Can LMK 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, LMK 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27767, 'LMK 5mg/10mg Tablet', 'Kansas Labs', 'LMK 5mg/10mg Tablet', 'Can the use of LMK 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of LMK 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27768, 'LMK 5mg/10mg Tablet', 'Kansas Labs', 'LMK 5mg/10mg Tablet', 'Can I drink alcohol while taking LMK 5mg/10mg Tablet?', 'No, do not take alcohol while taking LMK 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by LMK 5mg/10mg Tablet.'),
(27769, 'LMK 5mg/10mg Tablet', 'Kansas Labs', 'LMK 5mg/10mg Tablet', 'Will LMK 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of LMK 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27770, 'LMK 5mg/10mg Tablet', 'Kansas Labs', 'LMK 5mg/10mg Tablet', 'What are the instructions for storage and disposal of LMK 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27771, 'Lmn OD 5mg/10mg Tablet', 'Resilient Cosmeceuticals Pvt Ltd', 'Lmn OD 5mg/10mg Tablet', 'What is Lmn OD 5mg/10mg Tablet?', 'Lmn OD 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27772, 'Lmn OD 5mg/10mg Tablet', 'Resilient Cosmeceuticals Pvt Ltd', 'Lmn OD 5mg/10mg Tablet', 'Can the use of Lmn OD 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lmn OD 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27773, 'Lmn OD 5mg/10mg Tablet', 'Resilient Cosmeceuticals Pvt Ltd', 'Lmn OD 5mg/10mg Tablet', 'Can Lmn OD 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lmn OD 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27774, 'Lmn OD 5mg/10mg Tablet', 'Resilient Cosmeceuticals Pvt Ltd', 'Lmn OD 5mg/10mg Tablet', 'Can the use of Lmn OD 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lmn OD 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27775, 'Lmn OD 5mg/10mg Tablet', 'Resilient Cosmeceuticals Pvt Ltd', 'Lmn OD 5mg/10mg Tablet', 'Can I drink alcohol while taking Lmn OD 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lmn OD 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lmn OD 5mg/10mg Tablet.'),
(27776, 'Lmn OD 5mg/10mg Tablet', 'Resilient Cosmeceuticals Pvt Ltd', 'Lmn OD 5mg/10mg Tablet', 'Will Lmn OD 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lmn OD 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27777, 'Lmn OD 5mg/10mg Tablet', 'Resilient Cosmeceuticals Pvt Ltd', 'Lmn OD 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lmn OD 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27778, 'L-Mont 5mg/10mg Tablet', 'Innova Formulations Pvt Ltd', 'L-Mont 5mg/10mg Tablet', 'What is L-Mont 5mg/10mg Tablet?', 'L-Mont 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27779, 'L-Mont 5mg/10mg Tablet', 'Innova Formulations Pvt Ltd', 'L-Mont 5mg/10mg Tablet', 'Can the use of L-Mont 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-Mont 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27780, 'L-Mont 5mg/10mg Tablet', 'Innova Formulations Pvt Ltd', 'L-Mont 5mg/10mg Tablet', 'Can L-Mont 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, L-Mont 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27781, 'L-Mont 5mg/10mg Tablet', 'Innova Formulations Pvt Ltd', 'L-Mont 5mg/10mg Tablet', 'Can the use of L-Mont 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of L-Mont 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27782, 'L-Mont 5mg/10mg Tablet', 'Innova Formulations Pvt Ltd', 'L-Mont 5mg/10mg Tablet', 'Can I drink alcohol while taking L-Mont 5mg/10mg Tablet?', 'No, do not take alcohol while taking L-Mont 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-Mont 5mg/10mg Tablet.'),
(27783, 'L-Mont 5mg/10mg Tablet', 'Innova Formulations Pvt Ltd', 'L-Mont 5mg/10mg Tablet', 'Will L-Mont 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-Mont 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27784, 'L-Mont 5mg/10mg Tablet', 'Innova Formulations Pvt Ltd', 'L-Mont 5mg/10mg Tablet', 'What are the instructions for storage and disposal of L-Mont 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27785, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27786, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'Can I decrease the dose of L-Mont Suspension by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27787, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'How should L-Mont Suspension be stored?', 'L-Mont Suspension should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27788, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'Can L-Mont Suspension make my child sleepy?', 'L-Mont Suspension causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27789, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of L-Mont Suspension?', 'No, don’t start L-Mont Suspension without speaking to your child’s doctor. Moreover, L-Mont Suspension can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27790, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of L-Mont Suspension usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27791, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'My child is suffering from a mood disorder. Is it safe to give L-Mont Suspension to my child?', 'Some studies show that L-Mont Suspension can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27792, 'L-Mont Suspension', 'Innova Formulations Pvt Ltd', 'L-Mont Suspension', 'Can I use L-Mont Suspension for treating acute asthma attacks in my child?', 'L-Mont Suspension should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27793, 'L-Mont XL Tablet SR', 'Volterra Pharma', 'L-Mont XL Tablet SR', 'Can the use of L-Mont XL Tablet SR cause dry mouth?', 'Yes, the use of L-Mont XL Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(27794, 'L-Mont XL Tablet SR', 'Volterra Pharma', 'L-Mont XL Tablet SR', 'Can I use L-Mont XL Tablet SR while breastfeeding?', 'No, L-Mont XL Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(27795, 'L-Mont XL Tablet SR', 'Volterra Pharma', 'L-Mont XL Tablet SR', 'Can I drink alcohol while taking L-Mont XL Tablet SR?', 'No, avoid drinking alcohol while taking L-Mont XL Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by L-Mont XL Tablet SR.'),
(27796, 'L-Mont XL Tablet SR', 'Volterra Pharma', 'L-Mont XL Tablet SR', 'What are the instructions for the storage and disposal of L-Mont XL Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27797, 'L-Monte Tablet', 'M.K.G. Formulation', 'L-Monte Tablet (M.K.G. Formulation)', 'What is L-Monte Tablet?', 'L-Monte Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27798, 'L-Monte Tablet', 'M.K.G. Formulation', 'L-Monte Tablet (M.K.G. Formulation)', 'Can the use of L-Monte Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-Monte Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27799, 'L-Monte Tablet', 'M.K.G. Formulation', 'L-Monte Tablet (M.K.G. Formulation)', 'Can L-Monte Tablet be stopped when allergy symptoms are relieved?', 'No, L-Monte Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27800, 'L-Monte Tablet', 'M.K.G. Formulation', 'L-Monte Tablet (M.K.G. Formulation)', 'Can the use of L-Monte Tablet cause dry mouth?', 'Yes, the use of L-Monte Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27801, 'L-Monte Tablet', 'M.K.G. Formulation', 'L-Monte Tablet (M.K.G. Formulation)', 'Can I drink alcohol while taking L-Monte Tablet?', 'No, do not take alcohol while taking L-Monte Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-Monte Tablet.'),
(27802, 'L-Monte Tablet', 'M.K.G. Formulation', 'L-Monte Tablet (M.K.G. Formulation)', 'Will L-Monte Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-Monte Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27803, 'L-Monte Tablet', 'M.K.G. Formulation', 'L-Monte Tablet (M.K.G. Formulation)', 'What are the instructions for storage and disposal of L-Monte Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27804, 'L-Monte Tablet', 'Isovia Life Science', 'L-Monte Tablet (Isovia Life Science)', 'What is L-Monte Tablet?', 'L-Monte Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27805, 'L-Monte Tablet', 'Isovia Life Science', 'L-Monte Tablet (Isovia Life Science)', 'Can the use of L-Monte Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-Monte Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27806, 'L-Monte Tablet', 'Isovia Life Science', 'L-Monte Tablet (Isovia Life Science)', 'Can L-Monte Tablet be stopped when allergy symptoms are relieved?', 'No, L-Monte Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27807, 'L-Monte Tablet', 'Isovia Life Science', 'L-Monte Tablet (Isovia Life Science)', 'Can the use of L-Monte Tablet cause dry mouth?', 'Yes, the use of L-Monte Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27808, 'L-Monte Tablet', 'Isovia Life Science', 'L-Monte Tablet (Isovia Life Science)', 'Can I drink alcohol while taking L-Monte Tablet?', 'No, do not take alcohol while taking L-Monte Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-Monte Tablet.'),
(27809, 'L-Monte Tablet', 'Isovia Life Science', 'L-Monte Tablet (Isovia Life Science)', 'Will L-Monte Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-Monte Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27810, 'L-Monte Tablet', 'Isovia Life Science', 'L-Monte Tablet (Isovia Life Science)', 'What are the instructions for storage and disposal of L-Monte Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27811, 'Lmostat 5mg/10mg Tablet', 'Secure Life Science India Pvt Ltd', 'Lmostat 5mg/10mg Tablet', 'What is Lmostat 5mg/10mg Tablet?', 'Lmostat 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27812, 'Lmostat 5mg/10mg Tablet', 'Secure Life Science India Pvt Ltd', 'Lmostat 5mg/10mg Tablet', 'Can the use of Lmostat 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lmostat 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27813, 'Lmostat 5mg/10mg Tablet', 'Secure Life Science India Pvt Ltd', 'Lmostat 5mg/10mg Tablet', 'Can Lmostat 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lmostat 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27814, 'Lmostat 5mg/10mg Tablet', 'Secure Life Science India Pvt Ltd', 'Lmostat 5mg/10mg Tablet', 'Can the use of Lmostat 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lmostat 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27815, 'Lmostat 5mg/10mg Tablet', 'Secure Life Science India Pvt Ltd', 'Lmostat 5mg/10mg Tablet', 'Can I drink alcohol while taking Lmostat 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lmostat 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lmostat 5mg/10mg Tablet.'),
(27816, 'Lmostat 5mg/10mg Tablet', 'Secure Life Science India Pvt Ltd', 'Lmostat 5mg/10mg Tablet', 'Will Lmostat 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lmostat 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27817, 'Lmostat 5mg/10mg Tablet', 'Secure Life Science India Pvt Ltd', 'Lmostat 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lmostat 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27818, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'What is L-Mox-CV 500mg/125mg Tablet?', 'L-Mox-CV 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(27819, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Is it safe to use L-Mox-CV 500mg/125mg Tablet?', 'L-Mox-CV 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(27820, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of L-Mox-CV 500mg/125mg Tablet?', 'The use of L-Mox-CV 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(27821, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Can the use of L-Mox-CV 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of L-Mox-CV 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking L-Mox-CV 500mg/125mg Tablet.'),
(27822, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of L-Mox-CV 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of L-Mox-CV 500mg/125mg Tablet can increase the risks of side effects. L-Mox-CV 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(27823, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of L-Mox-CV 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27824, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Can I stop taking L-Mox-CV 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking L-Mox-CV 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(27825, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Can L-Mox-CV 500mg/125mg Tablet cause an allergic reaction?', 'Yes, L-Mox-CV 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(27826, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Can the use of L-Mox-CV 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of L-Mox-CV 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27827, 'L-Mox-CV 500mg/125mg Tablet', 'LeeMed Pharmaceuticals', 'L-Mox-CV 500mg/125mg Tablet', 'Can I take L-Mox-CV 500mg/125mg Tablet to treat cold and flu?', 'No, L-Mox-CV 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(27828, 'L-Mox-D 250mg/250mg Capsule', 'LeeMed Pharmaceuticals', 'L-Mox-D 250mg/250mg Capsule', 'How long does L-Mox-D 250mg/250mg Capsule takes to work?', 'Usually, L-Mox-D 250mg/250mg Capsule starts working soon after using it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(27829, 'L-Mox-D 250mg/250mg Capsule', 'LeeMed Pharmaceuticals', 'L-Mox-D 250mg/250mg Capsule', 'Can I stop taking L-Mox-D 250mg/250mg Capsule when I feel better?', 'No, do not stop taking L-Mox-D 250mg/250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(27830, 'Lmpred 16mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lmpred 16mg Tablet', 'What is Lmpred 16mg Tablet used for?', 'Lmpred 16mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(27831, 'Lmpred 16mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lmpred 16mg Tablet', 'How does Lmpred 16mg Tablet work?', 'Lmpred 16mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(27832, 'Lmpred 16mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lmpred 16mg Tablet', 'Is Lmpred 16mg Tablet effective?', 'Lmpred 16mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lmpred 16mg Tablet too early, the symptoms may return or worsen.'),
(27833, 'Lmpred 16mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lmpred 16mg Tablet', 'When will I feel better after taking Lmpred 16mg Tablet?', 'Lmpred 16mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lmpred 16mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lmpred 16mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(27834, 'Lmpred 16mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lmpred 16mg Tablet', 'What if I forget to take a dose of Lmpred 16mg Tablet?', 'If you forget a dose of Lmpred 16mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(27835, 'Lmpred 16mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lmpred 16mg Tablet', 'Is Lmpred 16mg Tablet safe?', 'Lmpred 16mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(27836, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27837, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'Can I decrease the dose of LM-Rex Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27838, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'How should LM-Rex Syrup be stored?', 'LM-Rex Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27839, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'Can LM-Rex Syrup make my child sleepy?', 'LM-Rex Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27840, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of LM-Rex Syrup?', 'No, don’t start LM-Rex Syrup without speaking to your child’s doctor. Moreover, LM-Rex Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27841, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of LM-Rex Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27842, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'My child is suffering from a mood disorder. Is it safe to give LM-Rex Syrup to my child?', 'Some studies show that LM-Rex Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27843, 'LM-Rex Syrup', 'Mcbrex Lifesciences', 'LM-Rex Syrup', 'Can I use LM-Rex Syrup for treating acute asthma attacks in my child?', 'LM-Rex Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27844, 'LM-Rex Tablet', 'Mcbrex Lifesciences', 'LM-Rex Tablet', 'What is LM-Rex Tablet?', 'LM-Rex Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27845, 'LM-Rex Tablet', 'Mcbrex Lifesciences', 'LM-Rex Tablet', 'Can the use of LM-Rex Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of LM-Rex Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27846, 'LM-Rex Tablet', 'Mcbrex Lifesciences', 'LM-Rex Tablet', 'Can LM-Rex Tablet be stopped when allergy symptoms are relieved?', 'No, LM-Rex Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27847, 'LM-Rex Tablet', 'Mcbrex Lifesciences', 'LM-Rex Tablet', 'Can the use of LM-Rex Tablet cause dry mouth?', 'Yes, the use of LM-Rex Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27848, 'LM-Rex Tablet', 'Mcbrex Lifesciences', 'LM-Rex Tablet', 'Can I drink alcohol while taking LM-Rex Tablet?', 'No, do not take alcohol while taking LM-Rex Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by LM-Rex Tablet.'),
(27849, 'LM-Rex Tablet', 'Mcbrex Lifesciences', 'LM-Rex Tablet', 'Will LM-Rex Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of LM-Rex Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27850, 'LM-Rex Tablet', 'Mcbrex Lifesciences', 'LM-Rex Tablet', 'What are the instructions for storage and disposal of LM-Rex Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27851, 'LMS Urge Oral Suspension Sugar Free', 'Medisun Lifescience Pvt Ltd', 'LMS Urge Oral Suspension Sugar Free', 'What all should I tell my doctor before taking LMS Urge Oral Suspension Sugar Free?', 'Before taking LMS Urge Oral Suspension Sugar Free, inform your doctor about all the medical problems and medicines you are taking. LMS Urge Oral Suspension Sugar Free should be used cautiously in patients with kidney problems. It should also be used with caution in pregnant or breastfeeding women.'),
(27852, 'LMS Urge Oral Suspension Sugar Free', 'Medisun Lifescience Pvt Ltd', 'LMS Urge Oral Suspension Sugar Free', 'Can the use of LMS Urge Oral Suspension Sugar Free cause diarrhea?', 'Yes, the use of LMS Urge Oral Suspension Sugar Free can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(27853, 'LMS Urge Oral Suspension Sugar Free', 'Medisun Lifescience Pvt Ltd', 'LMS Urge Oral Suspension Sugar Free', 'Will a higher than the recommended dose of LMS Urge Oral Suspension Sugar Free be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(27854, 'LMS Urge Oral Suspension Sugar Free', 'Medisun Lifescience Pvt Ltd', 'LMS Urge Oral Suspension Sugar Free', 'What are the instructions for storage and disposal of LMS Urge Oral Suspension Sugar Free?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27855, 'Lmshine 5mg/10mg Tablet', 'Carecroft Medic Private Limited', 'Lmshine 5mg/10mg Tablet', 'What is Lmshine 5mg/10mg Tablet?', 'Lmshine 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27856, 'Lmshine 5mg/10mg Tablet', 'Carecroft Medic Private Limited', 'Lmshine 5mg/10mg Tablet', 'Can the use of Lmshine 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lmshine 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27857, 'Lmshine 5mg/10mg Tablet', 'Carecroft Medic Private Limited', 'Lmshine 5mg/10mg Tablet', 'Can Lmshine 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lmshine 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27858, 'Lmshine 5mg/10mg Tablet', 'Carecroft Medic Private Limited', 'Lmshine 5mg/10mg Tablet', 'Can the use of Lmshine 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lmshine 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27859, 'Lmshine 5mg/10mg Tablet', 'Carecroft Medic Private Limited', 'Lmshine 5mg/10mg Tablet', 'Can I drink alcohol while taking Lmshine 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lmshine 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lmshine 5mg/10mg Tablet.'),
(27860, 'Lmshine 5mg/10mg Tablet', 'Carecroft Medic Private Limited', 'Lmshine 5mg/10mg Tablet', 'Will Lmshine 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lmshine 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27861, 'Lmshine 5mg/10mg Tablet', 'Carecroft Medic Private Limited', 'Lmshine 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lmshine 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27862, 'Lmtotal 5mg/10mg Tablet', 'WellYou Biotech', 'Lmtotal 5mg/10mg Tablet', 'What is Lmtotal 5mg/10mg Tablet?', 'Lmtotal 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27863, 'Lmtotal 5mg/10mg Tablet', 'WellYou Biotech', 'Lmtotal 5mg/10mg Tablet', 'Can the use of Lmtotal 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lmtotal 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27864, 'Lmtotal 5mg/10mg Tablet', 'WellYou Biotech', 'Lmtotal 5mg/10mg Tablet', 'Can Lmtotal 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lmtotal 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27865, 'Lmtotal 5mg/10mg Tablet', 'WellYou Biotech', 'Lmtotal 5mg/10mg Tablet', 'Can the use of Lmtotal 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lmtotal 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27866, 'Lmtotal 5mg/10mg Tablet', 'WellYou Biotech', 'Lmtotal 5mg/10mg Tablet', 'Can I drink alcohol while taking Lmtotal 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lmtotal 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lmtotal 5mg/10mg Tablet.'),
(27867, 'Lmtotal 5mg/10mg Tablet', 'WellYou Biotech', 'Lmtotal 5mg/10mg Tablet', 'Will Lmtotal 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lmtotal 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27868, 'Lmtotal 5mg/10mg Tablet', 'WellYou Biotech', 'Lmtotal 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lmtotal 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27869, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(27870, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'Can I decrease the dose of LM-True Oral Suspension Orange by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(27871, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'How should LM-True Oral Suspension Orange be stored?', 'LM-True Oral Suspension Orange should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(27872, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'Can LM-True Oral Suspension Orange make my child sleepy?', 'LM-True Oral Suspension Orange causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(27873, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of LM-True Oral Suspension Orange?', 'No, don’t start LM-True Oral Suspension Orange without speaking to your child’s doctor. Moreover, LM-True Oral Suspension Orange can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(27874, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of LM-True Oral Suspension Orange usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(27875, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'My child is suffering from a mood disorder. Is it safe to give LM-True Oral Suspension Orange to my child?', 'Some studies show that LM-True Oral Suspension Orange can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(27876, 'LM-True Oral Suspension Orange', 'Avighna Medicare Pvt. Ltd.', 'LM-True Oral Suspension Orange', 'Can I use LM-True Oral Suspension Orange for treating acute asthma attacks in my child?', 'LM-True Oral Suspension Orange should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(27877, 'LM-True Plus Tablet', 'Avighna Medicare Pvt. Ltd.', 'LM-True Plus Tablet', 'What is LM-True Plus Tablet?', 'LM-True Plus Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(27878, 'LM-True Plus Tablet', 'Avighna Medicare Pvt. Ltd.', 'LM-True Plus Tablet', 'Can the use of LM-True Plus Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of LM-True Plus Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(27879, 'LM-True Plus Tablet', 'Avighna Medicare Pvt. Ltd.', 'LM-True Plus Tablet', 'Can LM-True Plus Tablet be stopped when allergy symptoms are relieved?', 'No, LM-True Plus Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(27880, 'LM-True Plus Tablet', 'Avighna Medicare Pvt. Ltd.', 'LM-True Plus Tablet', 'Can the use of LM-True Plus Tablet cause dry mouth?', 'Yes, the use of LM-True Plus Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(27881, 'LM-True Plus Tablet', 'Avighna Medicare Pvt. Ltd.', 'LM-True Plus Tablet', 'Can I drink alcohol while taking LM-True Plus Tablet?', 'No, do not take alcohol while taking LM-True Plus Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by LM-True Plus Tablet.'),
(27882, 'LM-True Plus Tablet', 'Avighna Medicare Pvt. Ltd.', 'LM-True Plus Tablet', 'Will LM-True Plus Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of LM-True Plus Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(27883, 'LM-True Plus Tablet', 'Avighna Medicare Pvt. Ltd.', 'LM-True Plus Tablet', 'What are the instructions for storage and disposal of LM-True Plus Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(27884, 'LMV 10 Tablet', 'Royal Sapphire Remedies', 'LMV 10 Tablet', 'Is LMV 10 Tablet a steroid? What is it used for?', 'No, LMV 10 Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(27885, 'LMV 10 Tablet', 'Royal Sapphire Remedies', 'LMV 10 Tablet', 'Does LMV 10 Tablet make you tired and drowsy?', 'Yes, LMV 10 Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(27886, 'LMV 10 Tablet', 'Royal Sapphire Remedies', 'LMV 10 Tablet', 'How long does it take for LMV 10 Tablet to work?', 'LMV 10 Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(27887, 'LMV 10 Tablet', 'Royal Sapphire Remedies', 'LMV 10 Tablet', 'Can I take LMV 10 Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking LMV 10 Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(27888, 'LMV 10 Tablet', 'Royal Sapphire Remedies', 'LMV 10 Tablet', 'Is it safe to take LMV 10 Tablet for a long time?', 'LMV 10 Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take LMV 10 Tablet for only as long as you need it.'),
(27889, 'LMV 10 Tablet', 'Royal Sapphire Remedies', 'LMV 10 Tablet', 'For how long should I continue LMV 10 Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take LMV 10 Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using LMV 10 Tablet'),
(27890, 'LMV Syrup', 'Royal Sapphire Remedies', 'LMV Syrup', 'Is LMV Syrup a steroid? What is it used for?', 'No, LMV Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(27891, 'LMV Syrup', 'Royal Sapphire Remedies', 'LMV Syrup', 'Does LMV Syrup make you tired and drowsy?', 'Yes, LMV Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(27892, 'LMV Syrup', 'Royal Sapphire Remedies', 'LMV Syrup', 'How long does it take for LMV Syrup to work?', 'LMV Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(27893, 'LMV Syrup', 'Royal Sapphire Remedies', 'LMV Syrup', 'Can I take LMV Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking LMV Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(27894, 'LMV Syrup', 'Royal Sapphire Remedies', 'LMV Syrup', 'Is it safe to take LMV Syrup for a long time?', 'LMV Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take LMV Syrup for only as long as you need it.'),
(27895, 'LMV Syrup', 'Royal Sapphire Remedies', 'LMV Syrup', 'For how long should I continue LMV Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take LMV Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using LMV Syrup'),
(27896, 'Lmwx 20 Injection', 'Abbott', 'Lmwx 20 Injection', 'How do you administer Lmwx 20 Injection?', 'Lmwx 20 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(27897, 'Lmwx 20 Injection', 'Abbott', 'Lmwx 20 Injection', 'What are the conditions where I should be cautious before taking Lmwx 20 Injection?', 'You must give a proper history to your doctor before you start taking Lmwx 20 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(27898, 'Lmwx 20 Injection', 'Abbott', 'Lmwx 20 Injection', 'How to store Lmwx 20 Injection injections?', 'Store Lmwx 20 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(27899, 'Lmwx 20 Injection', 'Abbott', 'Lmwx 20 Injection', 'Can Lmwx 20 Injection be used in heart attack?', 'Yes, Lmwx 20 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(27900, 'Lmwx 20 Injection', 'Abbott', 'Lmwx 20 Injection', 'Is it ok to inject the air bubble in Lmwx 20 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(27901, 'Lmwx 40 Injection', 'Abbott', 'Lmwx 40 Injection', 'How do you administer Lmwx 40 Injection?', 'Lmwx 40 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(27902, 'Lmwx 40 Injection', 'Abbott', 'Lmwx 40 Injection', 'What are the conditions where I should be cautious before taking Lmwx 40 Injection?', 'You must give a proper history to your doctor before you start taking Lmwx 40 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(27903, 'Lmwx 40 Injection', 'Abbott', 'Lmwx 40 Injection', 'How to store Lmwx 40 Injection injections?', 'Store Lmwx 40 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(27904, 'Lmwx 40 Injection', 'Abbott', 'Lmwx 40 Injection', 'Can Lmwx 40 Injection be used in heart attack?', 'Yes, Lmwx 40 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(27905, 'Lmwx 40 Injection', 'Abbott', 'Lmwx 40 Injection', 'Is it ok to inject the air bubble in Lmwx 40 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(27906, 'Lmwx 60 Injection', 'Abbott', 'Lmwx 60 Injection', 'How do you administer Lmwx 60 Injection?', 'Lmwx 60 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(27907, 'Lmwx 60 Injection', 'Abbott', 'Lmwx 60 Injection', 'What are the conditions where I should be cautious before taking Lmwx 60 Injection?', 'You must give a proper history to your doctor before you start taking Lmwx 60 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(27908, 'Lmwx 60 Injection', 'Abbott', 'Lmwx 60 Injection', 'How to store Lmwx 60 Injection injections?', 'Store Lmwx 60 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(27909, 'Lmwx 60 Injection', 'Abbott', 'Lmwx 60 Injection', 'Can Lmwx 60 Injection be used in heart attack?', 'Yes, Lmwx 60 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(27910, 'Lmwx 60 Injection', 'Abbott', 'Lmwx 60 Injection', 'Is it ok to inject the air bubble in Lmwx 60 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(27911, 'Lmwx 80 Injection', 'Abbott', 'Lmwx 80 Injection', 'How do you administer Lmwx 80 Injection?', 'Lmwx 80 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(27912, 'Lmwx 80 Injection', 'Abbott', 'Lmwx 80 Injection', 'What are the conditions where I should be cautious before taking Lmwx 80 Injection?', 'You must give a proper history to your doctor before you start taking Lmwx 80 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(27913, 'Lmwx 80 Injection', 'Abbott', 'Lmwx 80 Injection', 'How to store Lmwx 80 Injection injections?', 'Store Lmwx 80 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(27914, 'Lmwx 80 Injection', 'Abbott', 'Lmwx 80 Injection', 'Can Lmwx 80 Injection be used in heart attack?', 'Yes, Lmwx 80 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(27915, 'Lmwx 80 Injection', 'Abbott', 'Lmwx 80 Injection', 'Is it ok to inject the air bubble in Lmwx 80 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(27916, 'LMX 250 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 250 Capsule', 'What if I miss my dose?', 'Take LMX 250 Capsule as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(27917, 'LMX 250 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 250 Capsule', 'Can the use of LMX 250 Capsule cause diarrhea?', 'Yes, the use of LMX 250 Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27918, 'LMX 250 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 250 Capsule', 'How long does LMX 250 Capsule takes to work?', 'Usually, LMX 250 Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(27919, 'LMX 250 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 250 Capsule', 'Can I stop taking LMX 250 Capsule when I feel better?', 'No, do not stop taking LMX 250 Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(27920, 'LMX 500 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 500 Capsule', 'What if I miss my dose?', 'Take LMX 500 Capsule as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(27921, 'LMX 500 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 500 Capsule', 'Can the use of LMX 500 Capsule cause diarrhea?', 'Yes, the use of LMX 500 Capsule can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27922, 'LMX 500 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 500 Capsule', 'How long does LMX 500 Capsule takes to work?', 'Usually, LMX 500 Capsule starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(27923, 'LMX 500 Capsule', 'Cadila Pharmaceuticals Ltd', 'LMX 500 Capsule', 'Can I stop taking LMX 500 Capsule when I feel better?', 'No, do not stop taking LMX 500 Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(27924, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'What is Lmx Forte 1000mg/200mg Injection?', 'Lmx Forte 1000mg/200mg Injection is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections.. The medicine works by killing the harmful bacteria that cause infections.'),
(27925, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'Is it safe to use Lmx Forte 1000mg/200mg Injection?', 'Lmx Forte 1000mg/200mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(27926, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'How is Lmx Forte 1000mg/200mg Injection administered?', 'Lmx Forte 1000mg/200mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lmx Forte 1000mg/200mg Injection.'),
(27927, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'Are there any specific cautions associated with the use of Lmx Forte 1000mg/200mg Injection?', 'The use of Lmx Forte 1000mg/200mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(27928, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'Can the use of Lmx Forte 1000mg/200mg Injection cause contraceptive failure?', 'Yes, the use of Lmx Forte 1000mg/200mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lmx Forte 1000mg/200mg Injection.'),
(27929, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'Can I take a higher than the recommended dose of Lmx Forte 1000mg/200mg Injection?', 'No, taking a higher than the recommended dose of Lmx Forte 1000mg/200mg Injection can increase the risks of side effects. Lmx Forte 1000mg/200mg Injection takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(27930, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'What are the instructions for the storage and disposal of Lmx Forte 1000mg/200mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27931, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'Can Lmx Forte 1000mg/200mg Injection cause an allergic reaction?', 'Yes, Lmx Forte 1000mg/200mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(27932, 'Lmx Forte 1000mg/200mg Injection', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 1000mg/200mg Injection', 'Can the use of Lmx Forte 1000mg/200mg Injection cause diarrhea?', 'Yes, the use of Lmx Forte 1000mg/200mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27933, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'What is Lmx Forte 250 mg/125 mg Tablet?', 'Lmx Forte 250 mg/125 mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(27934, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Is it safe to use Lmx Forte 250 mg/125 mg Tablet?', 'Lmx Forte 250 mg/125 mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(27935, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Are there any specific cautions associated with the use of Lmx Forte 250 mg/125 mg Tablet?', 'The use of Lmx Forte 250 mg/125 mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(27936, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Can the use of Lmx Forte 250 mg/125 mg Tablet cause contraceptive failure?', 'Yes, the use of Lmx Forte 250 mg/125 mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lmx Forte 250 mg/125 mg Tablet.'),
(27937, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Can I take a higher than the recommended dose of Lmx Forte 250 mg/125 mg Tablet?', 'No, taking a higher than the recommended dose of Lmx Forte 250 mg/125 mg Tablet can increase the risks of side effects. Lmx Forte 250 mg/125 mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(27938, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'What are the instructions for the storage and disposal of Lmx Forte 250 mg/125 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27939, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Can I stop taking Lmx Forte 250 mg/125 mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lmx Forte 250 mg/125 mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(27940, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Can Lmx Forte 250 mg/125 mg Tablet cause an allergic reaction?', 'Yes, Lmx Forte 250 mg/125 mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(27941, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Can the use of Lmx Forte 250 mg/125 mg Tablet cause diarrhea?', 'Yes, the use of Lmx Forte 250 mg/125 mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27942, 'Lmx Forte 250 mg/125 mg Tablet', 'Cadomed Pharmaceuticals Pvt Ltd', 'Lmx Forte 250 mg/125 mg Tablet', 'Can I take Lmx Forte 250 mg/125 mg Tablet to treat cold and flu?', 'No, Lmx Forte 250 mg/125 mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(27943, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'What is Lmx Forte 500mg/125mg Tablet?', 'Lmx Forte 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(27944, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Is it safe to use Lmx Forte 500mg/125mg Tablet?', 'Lmx Forte 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(27945, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Lmx Forte 500mg/125mg Tablet?', 'The use of Lmx Forte 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(27946, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Can the use of Lmx Forte 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Lmx Forte 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lmx Forte 500mg/125mg Tablet.'),
(27947, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Lmx Forte 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Lmx Forte 500mg/125mg Tablet can increase the risks of side effects. Lmx Forte 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(27948, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lmx Forte 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27949, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Can I stop taking Lmx Forte 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lmx Forte 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(27950, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Can Lmx Forte 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Lmx Forte 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(27951, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Can the use of Lmx Forte 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lmx Forte 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27952, 'Lmx Forte 500mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 500mg/125mg Tablet', 'Can I take Lmx Forte 500mg/125mg Tablet to treat cold and flu?', 'No, Lmx Forte 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(27953, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'What is Lmx Forte 875mg/125mg Tablet?', 'Lmx Forte 875mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(27954, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Is it safe to use Lmx Forte 875mg/125mg Tablet?', 'Lmx Forte 875mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(27955, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Are there any specific cautions associated with the use of Lmx Forte 875mg/125mg Tablet?', 'The use of Lmx Forte 875mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(27956, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Can the use of Lmx Forte 875mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Lmx Forte 875mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lmx Forte 875mg/125mg Tablet.'),
(27957, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Can I take a higher than the recommended dose of Lmx Forte 875mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Lmx Forte 875mg/125mg Tablet can increase the risks of side effects. Lmx Forte 875mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(27958, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'What are the instructions for the storage and disposal of Lmx Forte 875mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(27959, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Can I stop taking Lmx Forte 875mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lmx Forte 875mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(27960, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Can Lmx Forte 875mg/125mg Tablet cause an allergic reaction?', 'Yes, Lmx Forte 875mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(27961, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Can the use of Lmx Forte 875mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lmx Forte 875mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(27962, 'Lmx Forte 875mg/125mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte 875mg/125mg Tablet', 'Can I take Lmx Forte 875mg/125mg Tablet to treat cold and flu?', 'No, Lmx Forte 875mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(27963, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Can other medicines be given at the same time as Lmx Forte DS Oral Suspension?', 'Lmx Forte DS Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lmx Forte DS Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(27964, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Can I get my child vaccinated while on treatment with Lmx Forte DS Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(27965, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Which lab tests may my child undergo while taking Lmx Forte DS Oral Suspension on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(27966, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Can I give a higher than the recommended dose of Lmx Forte DS Oral Suspension to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(27967, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Can I stop giving Lmx Forte DS Oral Suspension to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(27968, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Can the use of Lmx Forte DS Oral Suspension cause diarrhea?', 'Yes, Lmx Forte DS Oral Suspension may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(27969, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(27970, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(27971, 'Lmx Forte DS Oral Suspension', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte DS Oral Suspension', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(27972, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Can other medicines be given at the same time as Lmx Forte Syrup?', 'Lmx Forte Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lmx Forte Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(27973, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Can I get my child vaccinated while on treatment with Lmx Forte Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(27974, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Which lab tests may my child undergo while taking Lmx Forte Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(27975, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Can I give a higher than the recommended dose of Lmx Forte Syrup to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(27976, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Can I stop giving Lmx Forte Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(27977, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Can the use of Lmx Forte Syrup cause diarrhea?', 'Yes, Lmx Forte Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(27978, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(27979, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(27980, 'Lmx Forte Syrup', 'Cadila Pharmaceuticals Ltd', 'Lmx Forte Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(27981, 'LMX Kid 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'LMX Kid 250mg Tablet', 'What if I miss my dose?', 'Take LMX Kid 250mg Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(27982, 'LMX Kid 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'LMX Kid 250mg Tablet', 'Can the use of LMX Kid 250mg Tablet cause diarrhea?', 'Yes, the use of LMX Kid 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(27983, 'LMX Kid 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'LMX Kid 250mg Tablet', 'How long does LMX Kid 250mg Tablet takes to work?', 'Usually, LMX Kid 250mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(27984, 'LMX Kid 250mg Tablet', 'Cadila Pharmaceuticals Ltd', 'LMX Kid 250mg Tablet', 'Can I stop taking LMX Kid 250mg Tablet when I feel better?', 'No, do not stop taking LMX Kid 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(27985, 'Ln Bind 10mg Tablet', 'Sanlife Science LLP', 'Ln Bind 10mg Tablet', 'What is the use of Ln Bind 10mg Tablet?', 'Ln Bind 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(27986, 'Ln Bind 10mg Tablet', 'Sanlife Science LLP', 'Ln Bind 10mg Tablet', 'Which is better amlodipine or Ln Bind 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Ln Bind 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Ln Bind 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(27987, 'Ln Bind 10mg Tablet', 'Sanlife Science LLP', 'Ln Bind 10mg Tablet', 'What are the side effects of Ln Bind 10mg Tablet?', 'Ln Bind 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(27988, 'Ln Bind 10mg Tablet', 'Sanlife Science LLP', 'Ln Bind 10mg Tablet', 'Is Ln Bind 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Ln Bind 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(27989, 'Ln Bind 10mg Tablet', 'Sanlife Science LLP', 'Ln Bind 10mg Tablet', 'Should I take Ln Bind 10mg Tablet in the morning or at night?', 'Ln Bind 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(27990, 'Ln Bind 10mg Tablet', 'Sanlife Science LLP', 'Ln Bind 10mg Tablet', 'How long do I need to take Ln Bind 10mg Tablet?', 'You should keep on taking Ln Bind 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Ln Bind 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(27991, 'Ln Bind 10mg Tablet', 'Sanlife Science LLP', 'Ln Bind 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Ln Bind 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Ln Bind 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Ln Bind 10mg Tablet and to keep healthy.'),
(27992, 'LN BLOCK 10mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 10mg Tablet', 'What is the use of LN BLOCK 10mg Tablet?', 'LN BLOCK 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(27993, 'LN BLOCK 10mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 10mg Tablet', 'Which is better amlodipine or LN BLOCK 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LN BLOCK 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LN BLOCK 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(27994, 'LN BLOCK 10mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 10mg Tablet', 'What are the side effects of LN BLOCK 10mg Tablet?', 'LN BLOCK 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(27995, 'LN BLOCK 10mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 10mg Tablet', 'Is LN BLOCK 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LN BLOCK 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(27996, 'LN BLOCK 10mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 10mg Tablet', 'Should I take LN BLOCK 10mg Tablet in the morning or at night?', 'LN BLOCK 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(27997, 'LN BLOCK 10mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 10mg Tablet', 'How long do I need to take LN BLOCK 10mg Tablet?', 'You should keep on taking LN BLOCK 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LN BLOCK 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(27998, 'LN BLOCK 10mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LN BLOCK 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LN BLOCK 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LN BLOCK 10mg Tablet and to keep healthy.'),
(27999, 'LN BLOCK 20mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 20mg Tablet', 'What is the use of LN BLOCK 20mg Tablet?', 'LN BLOCK 20mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28000, 'LN BLOCK 20mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 20mg Tablet', 'Which is better amlodipine or LN BLOCK 20mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LN BLOCK 20mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LN BLOCK 20mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28001, 'LN BLOCK 20mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 20mg Tablet', 'What are the side effects of LN BLOCK 20mg Tablet?', 'LN BLOCK 20mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28002, 'LN BLOCK 20mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 20mg Tablet', 'Is LN BLOCK 20mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LN BLOCK 20mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28003, 'LN BLOCK 20mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 20mg Tablet', 'Should I take LN BLOCK 20mg Tablet in the morning or at night?', 'LN BLOCK 20mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28004, 'LN BLOCK 20mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 20mg Tablet', 'How long do I need to take LN BLOCK 20mg Tablet?', 'You should keep on taking LN BLOCK 20mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LN BLOCK 20mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28005, 'LN BLOCK 20mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 20mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LN BLOCK 20mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LN BLOCK 20mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LN BLOCK 20mg Tablet and to keep healthy.'),
(28006, 'LN BLOCK 5mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 5mg Tablet', 'What is the use of LN BLOCK 5mg Tablet?', 'LN BLOCK 5mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28007, 'LN BLOCK 5mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 5mg Tablet', 'Which is better amlodipine or LN BLOCK 5mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LN BLOCK 5mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LN BLOCK 5mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28008, 'LN BLOCK 5mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 5mg Tablet', 'What are the side effects of LN BLOCK 5mg Tablet?', 'LN BLOCK 5mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28009, 'LN BLOCK 5mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 5mg Tablet', 'Is LN BLOCK 5mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LN BLOCK 5mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28010, 'LN BLOCK 5mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 5mg Tablet', 'Should I take LN BLOCK 5mg Tablet in the morning or at night?', 'LN BLOCK 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28011, 'LN BLOCK 5mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 5mg Tablet', 'How long do I need to take LN BLOCK 5mg Tablet?', 'You should keep on taking LN BLOCK 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LN BLOCK 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28012, 'LN BLOCK 5mg Tablet', 'Eris Lifesciences Ltd', 'LN BLOCK 5mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LN BLOCK 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LN BLOCK 5mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LN BLOCK 5mg Tablet and to keep healthy.'),
(28013, 'LN Catch 10mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch 10mg Tablet', 'What is the use of LN Catch 10mg Tablet?', 'LN Catch 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28014, 'LN Catch 10mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch 10mg Tablet', 'Which is better amlodipine or LN Catch 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LN Catch 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LN Catch 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28015, 'LN Catch 10mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch 10mg Tablet', 'What are the side effects of LN Catch 10mg Tablet?', 'LN Catch 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28016, 'LN Catch 10mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch 10mg Tablet', 'Is LN Catch 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LN Catch 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28017, 'LN Catch 10mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch 10mg Tablet', 'Should I take LN Catch 10mg Tablet in the morning or at night?', 'LN Catch 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28018, 'LN Catch 10mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch 10mg Tablet', 'How long do I need to take LN Catch 10mg Tablet?', 'You should keep on taking LN Catch 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LN Catch 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28019, 'LN Catch 10mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LN Catch 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LN Catch 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LN Catch 10mg Tablet and to keep healthy.'),
(28020, 'LN Catch T 10mg/40mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch T 10mg/40mg Tablet', 'What lifestyle changes should I make while using LN Catch T 10mg/40mg Tablet?', 'Modification in lifestyle changes can help boost your health while taking LN Catch T 10mg/40mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce your risk of heart attack.'),
(28021, 'LN Catch T 10mg/40mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch T 10mg/40mg Tablet', 'How would I know if I have high potassium levels?', 'Your doctor will check your blood potassium levels periodically for high potassium levels. Make sure not to miss any future appointments with the doctor.'),
(28022, 'LN Catch T 10mg/40mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch T 10mg/40mg Tablet', 'Can I stop taking LN Catch T 10mg/40mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping LN Catch T 10mg/40mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28023, 'LN Catch T 10mg/40mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch T 10mg/40mg Tablet', 'What is the rationale behind this combination medicine?', 'LN Catch T 10mg/40mg Tablet is a medicine that contains Telmisartan and Cilnidipine. These two medicines are combined to lower the blood pressure more effectively, thereby lowering the chances of having a stroke or heart attack.'),
(28024, 'LN Catch T 10mg/40mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch T 10mg/40mg Tablet', 'Can I feel dizzy after taking LN Catch T 10mg/40mg Tablet?', 'Yes, the use of LN Catch T 10mg/40mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28025, 'LN Catch T 10mg/40mg Tablet', 'Glivita Pharma Pvt Ltd', 'LN Catch T 10mg/40mg Tablet', 'Can I use LN Catch T 10mg/40mg Tablet in pregnancy?', 'No, LN Catch T 10mg/40mg Tablet should be avoided in pregnancy. LN Catch T 10mg/40mg Tablet can cause harmful effects on the baby. If you conceive while taking LN Catch T 10mg/40mg Tablet, stop using it and contact your doctor immediately. The doctor may suggest other ways to lower blood pressure.'),
(28026, 'Ln cor 10mg Tablet', 'Ucardix Pharmaceuticals', 'Ln cor 10mg Tablet', 'What is the use of Ln cor 10mg Tablet?', 'Ln cor 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28027, 'Ln cor 10mg Tablet', 'Ucardix Pharmaceuticals', 'Ln cor 10mg Tablet', 'Which is better amlodipine or Ln cor 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Ln cor 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Ln cor 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28028, 'Ln cor 10mg Tablet', 'Ucardix Pharmaceuticals', 'Ln cor 10mg Tablet', 'What are the side effects of Ln cor 10mg Tablet?', 'Ln cor 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28029, 'Ln cor 10mg Tablet', 'Ucardix Pharmaceuticals', 'Ln cor 10mg Tablet', 'Is Ln cor 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Ln cor 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28030, 'Ln cor 10mg Tablet', 'Ucardix Pharmaceuticals', 'Ln cor 10mg Tablet', 'Should I take Ln cor 10mg Tablet in the morning or at night?', 'Ln cor 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28031, 'Ln cor 10mg Tablet', 'Ucardix Pharmaceuticals', 'Ln cor 10mg Tablet', 'How long do I need to take Ln cor 10mg Tablet?', 'You should keep on taking Ln cor 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Ln cor 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28032, 'Ln cor 10mg Tablet', 'Ucardix Pharmaceuticals', 'Ln cor 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Ln cor 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Ln cor 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Ln cor 10mg Tablet and to keep healthy.'),
(28033, 'LN Dipine 10mg Tablet', 'Riozen Pharmaceuticals', 'LN Dipine 10mg Tablet', 'What is the use of LN Dipine 10mg Tablet?', 'LN Dipine 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28034, 'LN Dipine 10mg Tablet', 'Riozen Pharmaceuticals', 'LN Dipine 10mg Tablet', 'Which is better amlodipine or LN Dipine 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LN Dipine 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LN Dipine 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28035, 'LN Dipine 10mg Tablet', 'Riozen Pharmaceuticals', 'LN Dipine 10mg Tablet', 'What are the side effects of LN Dipine 10mg Tablet?', 'LN Dipine 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28036, 'LN Dipine 10mg Tablet', 'Riozen Pharmaceuticals', 'LN Dipine 10mg Tablet', 'Is LN Dipine 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LN Dipine 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28037, 'LN Dipine 10mg Tablet', 'Riozen Pharmaceuticals', 'LN Dipine 10mg Tablet', 'Should I take LN Dipine 10mg Tablet in the morning or at night?', 'LN Dipine 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28038, 'LN Dipine 10mg Tablet', 'Riozen Pharmaceuticals', 'LN Dipine 10mg Tablet', 'How long do I need to take LN Dipine 10mg Tablet?', 'You should keep on taking LN Dipine 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LN Dipine 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28039, 'LN Dipine 10mg Tablet', 'Riozen Pharmaceuticals', 'LN Dipine 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LN Dipine 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LN Dipine 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LN Dipine 10mg Tablet and to keep healthy.'),
(28040, 'LN Zolid 600mg Tablet', 'H2H India Biotech Private Limited', 'LN Zolid 600mg Tablet', 'Can the use of LN Zolid 600mg Tablet cause diarrhea?', 'Yes, the use of LN Zolid 600mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(28041, 'LN Zolid 600mg Tablet', 'H2H India Biotech Private Limited', 'LN Zolid 600mg Tablet', 'What foods should I avoid while taking LN Zolid 600mg Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking LN Zolid 600mg Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(28042, 'L-Nano Tablet', 'Sterling Pharmatech Pvt Ltd', 'L-Nano Tablet', 'What is L-Nano Tablet?', 'L-Nano Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(28043, 'L-Nano Tablet', 'Sterling Pharmatech Pvt Ltd', 'L-Nano Tablet', 'Can the use of L-Nano Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-Nano Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(28044, 'L-Nano Tablet', 'Sterling Pharmatech Pvt Ltd', 'L-Nano Tablet', 'Can L-Nano Tablet be stopped when allergy symptoms are relieved?', 'No, L-Nano Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(28045, 'L-Nano Tablet', 'Sterling Pharmatech Pvt Ltd', 'L-Nano Tablet', 'Can the use of L-Nano Tablet cause dry mouth?', 'Yes, the use of L-Nano Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(28046, 'L-Nano Tablet', 'Sterling Pharmatech Pvt Ltd', 'L-Nano Tablet', 'Can I drink alcohol while taking L-Nano Tablet?', 'No, do not take alcohol while taking L-Nano Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-Nano Tablet.'),
(28047, 'L-Nano Tablet', 'Sterling Pharmatech Pvt Ltd', 'L-Nano Tablet', 'Will L-Nano Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-Nano Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(28048, 'L-Nano Tablet', 'Sterling Pharmatech Pvt Ltd', 'L-Nano Tablet', 'What are the instructions for storage and disposal of L-Nano Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(28049, 'LNBflor 10mg Tablet', 'Biofloris Pharmaceuticals Private Limited', 'LNBflor 10mg Tablet', 'What is the use of LNBflor 10mg Tablet?', 'LNBflor 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28050, 'LNBflor 10mg Tablet', 'Biofloris Pharmaceuticals Private Limited', 'LNBflor 10mg Tablet', 'Which is better amlodipine or LNBflor 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LNBflor 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LNBflor 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28051, 'LNBflor 10mg Tablet', 'Biofloris Pharmaceuticals Private Limited', 'LNBflor 10mg Tablet', 'What are the side effects of LNBflor 10mg Tablet?', 'LNBflor 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28052, 'LNBflor 10mg Tablet', 'Biofloris Pharmaceuticals Private Limited', 'LNBflor 10mg Tablet', 'Is LNBflor 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LNBflor 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28053, 'LNBflor 10mg Tablet', 'Biofloris Pharmaceuticals Private Limited', 'LNBflor 10mg Tablet', 'Should I take LNBflor 10mg Tablet in the morning or at night?', 'LNBflor 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28054, 'LNBflor 10mg Tablet', 'Biofloris Pharmaceuticals Private Limited', 'LNBflor 10mg Tablet', 'How long do I need to take LNBflor 10mg Tablet?', 'You should keep on taking LNBflor 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LNBflor 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28055, 'LNBflor 10mg Tablet', 'Biofloris Pharmaceuticals Private Limited', 'LNBflor 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LNBflor 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LNBflor 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LNBflor 10mg Tablet and to keep healthy.'),
(28056, 'Lnbloc 10 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 10 Tablet', 'What is the use of Lnbloc 10 Tablet?', 'Lnbloc 10 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28057, 'Lnbloc 10 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 10 Tablet', 'Which is better amlodipine or Lnbloc 10 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lnbloc 10 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lnbloc 10 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28058, 'Lnbloc 10 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 10 Tablet', 'What are the side effects of Lnbloc 10 Tablet?', 'Lnbloc 10 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28059, 'Lnbloc 10 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 10 Tablet', 'Is Lnbloc 10 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lnbloc 10 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28060, 'Lnbloc 10 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 10 Tablet', 'Should I take Lnbloc 10 Tablet in the morning or at night?', 'Lnbloc 10 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28061, 'Lnbloc 10 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 10 Tablet', 'How long do I need to take Lnbloc 10 Tablet?', 'You should keep on taking Lnbloc 10 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lnbloc 10 Tablet, your blood pressure may increase again and your condition may worsen.'),
(28062, 'Lnbloc 10 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 10 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lnbloc 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lnbloc 10 Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lnbloc 10 Tablet and to keep healthy.'),
(28063, 'Lnbloc 20 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 20 Tablet', 'What is the use of Lnbloc 20 Tablet?', 'Lnbloc 20 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28064, 'Lnbloc 20 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 20 Tablet', 'Which is better amlodipine or Lnbloc 20 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lnbloc 20 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lnbloc 20 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28065, 'Lnbloc 20 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 20 Tablet', 'What are the side effects of Lnbloc 20 Tablet?', 'Lnbloc 20 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28066, 'Lnbloc 20 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 20 Tablet', 'Is Lnbloc 20 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lnbloc 20 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28067, 'Lnbloc 20 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 20 Tablet', 'Should I take Lnbloc 20 Tablet in the morning or at night?', 'Lnbloc 20 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28068, 'Lnbloc 20 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 20 Tablet', 'How long do I need to take Lnbloc 20 Tablet?', 'You should keep on taking Lnbloc 20 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lnbloc 20 Tablet, your blood pressure may increase again and your condition may worsen.'),
(28069, 'Lnbloc 20 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 20 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lnbloc 20 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lnbloc 20 Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lnbloc 20 Tablet and to keep healthy.'),
(28070, 'Lnbloc 5 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 5 Tablet', 'What is the use of Lnbloc 5 Tablet?', 'Lnbloc 5 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28071, 'Lnbloc 5 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 5 Tablet', 'Which is better amlodipine or Lnbloc 5 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lnbloc 5 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lnbloc 5 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28072, 'Lnbloc 5 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 5 Tablet', 'What are the side effects of Lnbloc 5 Tablet?', 'Lnbloc 5 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28073, 'Lnbloc 5 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 5 Tablet', 'Is Lnbloc 5 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lnbloc 5 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28074, 'Lnbloc 5 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 5 Tablet', 'Should I take Lnbloc 5 Tablet in the morning or at night?', 'Lnbloc 5 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28075, 'Lnbloc 5 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 5 Tablet', 'How long do I need to take Lnbloc 5 Tablet?', 'You should keep on taking Lnbloc 5 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lnbloc 5 Tablet, your blood pressure may increase again and your condition may worsen.'),
(28076, 'Lnbloc 5 Tablet', 'Eris Lifesciences Ltd', 'Lnbloc 5 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lnbloc 5 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lnbloc 5 Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lnbloc 5 Tablet and to keep healthy.'),
(28077, 'LNC 10mg Tablet', 'Grievers Remedies', 'LNC 10mg Tablet', 'What is the use of LNC 10mg Tablet?', 'LNC 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28078, 'LNC 10mg Tablet', 'Grievers Remedies', 'LNC 10mg Tablet', 'Which is better amlodipine or LNC 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LNC 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LNC 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28079, 'LNC 10mg Tablet', 'Grievers Remedies', 'LNC 10mg Tablet', 'What are the side effects of LNC 10mg Tablet?', 'LNC 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28080, 'LNC 10mg Tablet', 'Grievers Remedies', 'LNC 10mg Tablet', 'Is LNC 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LNC 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28081, 'LNC 10mg Tablet', 'Grievers Remedies', 'LNC 10mg Tablet', 'Should I take LNC 10mg Tablet in the morning or at night?', 'LNC 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28082, 'LNC 10mg Tablet', 'Grievers Remedies', 'LNC 10mg Tablet', 'How long do I need to take LNC 10mg Tablet?', 'You should keep on taking LNC 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LNC 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28083, 'LNC 10mg Tablet', 'Grievers Remedies', 'LNC 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LNC 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LNC 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LNC 10mg Tablet and to keep healthy.'),
(28084, 'LNC 5mg Tablet', 'Grievers Remedies', 'LNC 5mg Tablet', 'What is the use of LNC 5mg Tablet?', 'LNC 5mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28085, 'LNC 5mg Tablet', 'Grievers Remedies', 'LNC 5mg Tablet', 'Which is better amlodipine or LNC 5mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LNC 5mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LNC 5mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28086, 'LNC 5mg Tablet', 'Grievers Remedies', 'LNC 5mg Tablet', 'What are the side effects of LNC 5mg Tablet?', 'LNC 5mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28087, 'LNC 5mg Tablet', 'Grievers Remedies', 'LNC 5mg Tablet', 'Is LNC 5mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LNC 5mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28088, 'LNC 5mg Tablet', 'Grievers Remedies', 'LNC 5mg Tablet', 'Should I take LNC 5mg Tablet in the morning or at night?', 'LNC 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28089, 'LNC 5mg Tablet', 'Grievers Remedies', 'LNC 5mg Tablet', 'How long do I need to take LNC 5mg Tablet?', 'You should keep on taking LNC 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LNC 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28090, 'LNC 5mg Tablet', 'Grievers Remedies', 'LNC 5mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LNC 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LNC 5mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of LNC 5mg Tablet and to keep healthy.'),
(28091, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Can other medicines be given at the same time as Lnc Dry Syrup?', 'Lnc Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lnc Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(28092, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Can I get my child vaccinated while on treatment with Lnc Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(28093, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Which lab tests may my child undergo while taking Lnc Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(28094, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Can I give a higher than the recommended dose of Lnc Dry Syrup to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(28095, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Can I stop giving Lnc Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(28096, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Can the use of Lnc Dry Syrup cause diarrhea?', 'Yes, Lnc Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(28097, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(28098, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(28099, 'Lnc Dry Syrup', 'Domagk Smith Labs Pvt Ltd', 'Lnc Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(28100, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. What is Lnc LB 500mg/125mg Tablet?', 'Lnc LB 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(28101, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Is it safe to use Lnc LB 500mg/125mg Tablet?', 'Lnc LB 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(28102, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Are there any specific cautions associated with the use of Lnc LB 500mg/125mg Tablet?', 'The use of Lnc LB 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(28103, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Can the use of Lnc LB 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Lnc LB 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lnc LB 500mg/125mg Tablet.'),
(28104, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Can I take a higher than the recommended dose of Lnc LB 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Lnc LB 500mg/125mg Tablet can increase the risks of side effects. Lnc LB 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28105, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. What are the instructions for the storage and disposal of Lnc LB 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28106, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Can I stop taking Lnc LB 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lnc LB 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(28107, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Can Lnc LB 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Lnc LB 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(28108, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Can the use of Lnc LB 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lnc LB 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(28109, 'Lnc LB 500mg/125mg Tablet', 'Domagk Smith Labs Pvt Ltd', 'Lnc LB 500mg/125mg Tablet', 'Q. Can I take Lnc LB 500mg/125mg Tablet to treat cold and flu?', 'No, Lnc LB 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(28110, 'Lncil 10mg Tablet', 'Archicare Limited', 'Lncil 10mg Tablet', 'What is the use of Lncil 10mg Tablet?', 'Lncil 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28111, 'Lncil 10mg Tablet', 'Archicare Limited', 'Lncil 10mg Tablet', 'Which is better amlodipine or Lncil 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lncil 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lncil 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28112, 'Lncil 10mg Tablet', 'Archicare Limited', 'Lncil 10mg Tablet', 'What are the side effects of Lncil 10mg Tablet?', 'Lncil 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28113, 'Lncil 10mg Tablet', 'Archicare Limited', 'Lncil 10mg Tablet', 'Is Lncil 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lncil 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28114, 'Lncil 10mg Tablet', 'Archicare Limited', 'Lncil 10mg Tablet', 'Should I take Lncil 10mg Tablet in the morning or at night?', 'Lncil 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28115, 'Lncil 10mg Tablet', 'Archicare Limited', 'Lncil 10mg Tablet', 'How long do I need to take Lncil 10mg Tablet?', 'You should keep on taking Lncil 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lncil 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28116, 'Lncil 10mg Tablet', 'Archicare Limited', 'Lncil 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lncil 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lncil 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lncil 10mg Tablet and to keep healthy.'),
(28117, 'Lncil 5mg Tablet', 'Archicare Limited', 'Lncil 5mg Tablet', 'What is the use of Lncil 5mg Tablet?', 'Lncil 5mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28118, 'Lncil 5mg Tablet', 'Archicare Limited', 'Lncil 5mg Tablet', 'Which is better amlodipine or Lncil 5mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lncil 5mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lncil 5mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28119, 'Lncil 5mg Tablet', 'Archicare Limited', 'Lncil 5mg Tablet', 'What are the side effects of Lncil 5mg Tablet?', 'Lncil 5mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28120, 'Lncil 5mg Tablet', 'Archicare Limited', 'Lncil 5mg Tablet', 'Is Lncil 5mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lncil 5mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28121, 'Lncil 5mg Tablet', 'Archicare Limited', 'Lncil 5mg Tablet', 'Should I take Lncil 5mg Tablet in the morning or at night?', 'Lncil 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28122, 'Lncil 5mg Tablet', 'Archicare Limited', 'Lncil 5mg Tablet', 'How long do I need to take Lncil 5mg Tablet?', 'You should keep on taking Lncil 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lncil 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28123, 'Lncil 5mg Tablet', 'Archicare Limited', 'Lncil 5mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lncil 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lncil 5mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lncil 5mg Tablet and to keep healthy.'),
(28124, 'Lncil T 10mg/40mg Tablet', 'Archicare Limited', 'Lncil T 10mg/40mg Tablet', 'What lifestyle changes should I make while using Lncil T 10mg/40mg Tablet?', 'Modification in lifestyle changes can help boost your health while taking Lncil T 10mg/40mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce your risk of heart attack.'),
(28125, 'Lncil T 10mg/40mg Tablet', 'Archicare Limited', 'Lncil T 10mg/40mg Tablet', 'How would I know if I have high potassium levels?', 'Your doctor will check your blood potassium levels periodically for high potassium levels. Make sure not to miss any future appointments with the doctor.'),
(28126, 'Lncil T 10mg/40mg Tablet', 'Archicare Limited', 'Lncil T 10mg/40mg Tablet', 'Can I stop taking Lncil T 10mg/40mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping Lncil T 10mg/40mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28127, 'Lncil T 10mg/40mg Tablet', 'Archicare Limited', 'Lncil T 10mg/40mg Tablet', 'What is the rationale behind this combination medicine?', 'Lncil T 10mg/40mg Tablet is a medicine that contains Telmisartan and Cilnidipine. These two medicines are combined to lower the blood pressure more effectively, thereby lowering the chances of having a stroke or heart attack.'),
(28128, 'Lncil T 10mg/40mg Tablet', 'Archicare Limited', 'Lncil T 10mg/40mg Tablet', 'Can I feel dizzy after taking Lncil T 10mg/40mg Tablet?', 'Yes, the use of Lncil T 10mg/40mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28129, 'Lncil T 10mg/40mg Tablet', 'Archicare Limited', 'Lncil T 10mg/40mg Tablet', 'Can I use Lncil T 10mg/40mg Tablet in pregnancy?', 'No, Lncil T 10mg/40mg Tablet should be avoided in pregnancy. Lncil T 10mg/40mg Tablet can cause harmful effects on the baby. If you conceive while taking Lncil T 10mg/40mg Tablet, stop using it and contact your doctor immediately. The doctor may suggest other ways to lower blood pressure.'),
(28130, 'Lnd 5mg Tablet', 'Evans Pharma', 'Lnd 5mg Tablet', 'Is Lnd 5mg Tablet a steroid? What is it used for?', 'No, Lnd 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(28131, 'Lnd 5mg Tablet', 'Evans Pharma', 'Lnd 5mg Tablet', 'Does Lnd 5mg Tablet make you tired and drowsy?', 'Yes, Lnd 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(28132, 'Lnd 5mg Tablet', 'Evans Pharma', 'Lnd 5mg Tablet', 'How long does it take for Lnd 5mg Tablet to work?', 'Lnd 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(28133, 'Lnd 5mg Tablet', 'Evans Pharma', 'Lnd 5mg Tablet', 'Can I take Lnd 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lnd 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(28134, 'Lnd 5mg Tablet', 'Evans Pharma', 'Lnd 5mg Tablet', 'Is it safe to take Lnd 5mg Tablet for a long time?', 'Lnd 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lnd 5mg Tablet for only as long as you need it.'),
(28135, 'Lnd 5mg Tablet', 'Evans Pharma', 'Lnd 5mg Tablet', 'For how long should I continue Lnd 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lnd 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lnd 5mg Tablet'),
(28136, 'Lnd 600mg Injection', 'Akumentis Healthcare Ltd', 'Lnd 600mg Injection', 'Can the use of Lnd 600mg Injection cause diarrhea?', 'Yes, the use of Lnd 600mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(28137, 'Lnd 600mg Injection', 'Akumentis Healthcare Ltd', 'Lnd 600mg Injection', 'What foods should I avoid while taking Lnd 600mg Injection?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking Lnd 600mg Injection can result in elevation of blood pressure, which may result in an emergency situation.'),
(28138, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'What if I miss my dose?', 'Take Lnd Cef 500mg/600mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(28139, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'Can I stop taking Lnd Cef 500mg/600mg Tablet when I feel better?', 'No, do not stop taking Lnd Cef 500mg/600mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(28140, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'What is Lnd Cef 500mg/600mg Tablet used for?', 'Lnd Cef 500mg/600mg Tablet is used in the treatment of bacterial infections. Cefuroxime treats infections of acute or chronic bronchitis, tonsillitis,  gonorrhea, syphilis, pneumonia, and urinary tract infection. Linezolid is used for the treatment of bacterial infections of lungs (pneumonia), and some infections in or under the skin.'),
(28141, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'Does the use of Lnd Cef 500mg/600mg Tablet help to treat UTI?', 'Urinary tract infections (UTIs) are among the most common infections people suffer from. The use of Lnd Cef 500mg/600mg Tablet is usually helpful in treating urinary tract infection.'),
(28142, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'Can the use of Lnd Cef 500mg/600mg Tablet cause diarrhea?', 'Yes, the use of Lnd Cef 500mg/600mg Tablet can cause diarrhea. Antibiotics can kill good and helpful bacteria present in your stomach or intestine and cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(28143, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'Is the use of Lnd Cef 500mg/600mg Tablet helpful in the treatment of bronchitis?', 'Yes, Lnd Cef 500mg/600mg Tablet is helpful in the treatment of bronchitis.'),
(28144, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'Is the use of Lnd Cef 500mg/600mg Tablet contraindicated in patients with the impaired kidney?', 'The drug is eliminated by the renal mechanisms and a patient with impaired renal function will clear it more slowly. This can prove harmful for the patient. Therefore, caution is advised when administering Lnd Cef 500mg/600mg Tablet to patients with renal impairment or renal failure.'),
(28145, 'Lnd Cef 500mg/600mg Tablet', 'Akumentis Healthcare Ltd', 'Lnd Cef 500mg/600mg Tablet', 'What are the instructions for the storage and disposal of Lnd Cef 500mg/600mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28146, 'Lnd M 5mg/10mg Tablet', 'Evans Pharma', 'Lnd M 5mg/10mg Tablet', 'What is Lnd M 5mg/10mg Tablet?', 'Lnd M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(28147, 'Lnd M 5mg/10mg Tablet', 'Evans Pharma', 'Lnd M 5mg/10mg Tablet', 'Can the use of Lnd M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lnd M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(28148, 'Lnd M 5mg/10mg Tablet', 'Evans Pharma', 'Lnd M 5mg/10mg Tablet', 'Can Lnd M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lnd M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(28149, 'Lnd M 5mg/10mg Tablet', 'Evans Pharma', 'Lnd M 5mg/10mg Tablet', 'Can the use of Lnd M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lnd M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(28150, 'Lnd M 5mg/10mg Tablet', 'Evans Pharma', 'Lnd M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lnd M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lnd M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lnd M 5mg/10mg Tablet.'),
(28151, 'Lnd M 5mg/10mg Tablet', 'Evans Pharma', 'Lnd M 5mg/10mg Tablet', 'Will Lnd M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lnd M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(28152, 'Lnd M 5mg/10mg Tablet', 'Evans Pharma', 'Lnd M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lnd M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(28153, 'Lndip 10mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 10mg Tablet', 'What is the use of Lndip 10mg Tablet?', 'Lndip 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28154, 'Lndip 10mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 10mg Tablet', 'Which is better amlodipine or Lndip 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lndip 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lndip 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28155, 'Lndip 10mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 10mg Tablet', 'What are the side effects of Lndip 10mg Tablet?', 'Lndip 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28156, 'Lndip 10mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 10mg Tablet', 'Is Lndip 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lndip 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28157, 'Lndip 10mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 10mg Tablet', 'Should I take Lndip 10mg Tablet in the morning or at night?', 'Lndip 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28158, 'Lndip 10mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 10mg Tablet', 'How long do I need to take Lndip 10mg Tablet?', 'You should keep on taking Lndip 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lndip 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28159, 'Lndip 10mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lndip 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lndip 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lndip 10mg Tablet and to keep healthy.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28160, 'Lndip 20 Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 20 Tablet', 'What is the use of Lndip 20 Tablet?', 'Lndip 20 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28161, 'Lndip 20 Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 20 Tablet', 'Which is better amlodipine or Lndip 20 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lndip 20 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lndip 20 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28162, 'Lndip 20 Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 20 Tablet', 'What are the side effects of Lndip 20 Tablet?', 'Lndip 20 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28163, 'Lndip 20 Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 20 Tablet', 'Is Lndip 20 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lndip 20 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28164, 'Lndip 20 Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 20 Tablet', 'Should I take Lndip 20 Tablet in the morning or at night?', 'Lndip 20 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28165, 'Lndip 20 Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 20 Tablet', 'How long do I need to take Lndip 20 Tablet?', 'You should keep on taking Lndip 20 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lndip 20 Tablet, your blood pressure may increase again and your condition may worsen.'),
(28166, 'Lndip 20 Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 20 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lndip 20 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lndip 20 Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lndip 20 Tablet and to keep healthy.'),
(28167, 'Lndip 5mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 5mg Tablet', 'What is the use of Lndip 5mg Tablet?', 'Lndip 5mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28168, 'Lndip 5mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 5mg Tablet', 'Which is better amlodipine or Lndip 5mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lndip 5mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lndip 5mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28169, 'Lndip 5mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 5mg Tablet', 'What are the side effects of Lndip 5mg Tablet?', 'Lndip 5mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28170, 'Lndip 5mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 5mg Tablet', 'Is Lndip 5mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lndip 5mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28171, 'Lndip 5mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 5mg Tablet', 'Should I take Lndip 5mg Tablet in the morning or at night?', 'Lndip 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28172, 'Lndip 5mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 5mg Tablet', 'How long do I need to take Lndip 5mg Tablet?', 'You should keep on taking Lndip 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lndip 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28173, 'Lndip 5mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip 5mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lndip 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lndip 5mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lndip 5mg Tablet and to keep healthy.'),
(28174, 'Lndip T 10mg/40mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip T 10mg/40mg Tablet', 'What lifestyle changes should I make while using Lndip T 10mg/40mg Tablet?', 'Modification in lifestyle changes can help boost your health while taking Lndip T 10mg/40mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce your risk of heart attack.'),
(28175, 'Lndip T 10mg/40mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip T 10mg/40mg Tablet', 'How would I know if I have high potassium levels?', 'Your doctor will check your blood potassium levels periodically for high potassium levels. Make sure not to miss any future appointments with the doctor.'),
(28176, 'Lndip T 10mg/40mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip T 10mg/40mg Tablet', 'Can I stop taking Lndip T 10mg/40mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping Lndip T 10mg/40mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28177, 'Lndip T 10mg/40mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip T 10mg/40mg Tablet', 'What is the rationale behind this combination medicine?', 'Lndip T 10mg/40mg Tablet is a medicine that contains Telmisartan and Cilnidipine. These two medicines are combined to lower the blood pressure more effectively, thereby lowering the chances of having a stroke or heart attack.'),
(28178, 'Lndip T 10mg/40mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip T 10mg/40mg Tablet', 'Can I feel dizzy after taking Lndip T 10mg/40mg Tablet?', 'Yes, the use of Lndip T 10mg/40mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28179, 'Lndip T 10mg/40mg Tablet', 'Fusion Healthcare Pvt Ltd', 'Lndip T 10mg/40mg Tablet', 'Can I use Lndip T 10mg/40mg Tablet in pregnancy?', 'No, Lndip T 10mg/40mg Tablet should be avoided in pregnancy. Lndip T 10mg/40mg Tablet can cause harmful effects on the baby. If you conceive while taking Lndip T 10mg/40mg Tablet, stop using it and contact your doctor immediately. The doctor may suggest other ways to lower blood pressure.'),
(28180, 'Lndt 15mg Tablet', 'Absolute Medicare Solutions Pvt Ltd', 'Lndt 15mg Tablet', 'What is Lndt 15mg Tablet? What is it used for?', 'Lndt 15mg Tablet belongs to a class of medicines known as proton pump inhibitors. Lndt 15mg Tablet is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(28181, 'Lndt 15mg Tablet', 'Absolute Medicare Solutions Pvt Ltd', 'Lndt 15mg Tablet', 'How is Lndt 15mg Tablet given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Lndt 15mg Tablet through the nasogastric (NG) tube. Open the Lndt 15mg Tablet capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(28182, 'Lndt 15mg Tablet', 'Absolute Medicare Solutions Pvt Ltd', 'Lndt 15mg Tablet', 'Should Lndt 15mg Tablet be taken empty stomach or with food?', 'Usually, Lndt 15mg Tablet is taken once a day, first thing in the morning, on an empty stomach. If you take Lndt 15mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(28183, 'Lndt 15mg Tablet', 'Absolute Medicare Solutions Pvt Ltd', 'Lndt 15mg Tablet', 'While taking Lndt 15mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(28184, 'Lndt 15mg Tablet', 'Absolute Medicare Solutions Pvt Ltd', 'Lndt 15mg Tablet', 'Is Lndt 15mg Tablet used for children?', 'Yes, Lndt 15mg Tablet is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Lndt 15mg Tablet are established only in children between 1 to 17 years of age.'),
(28185, 'Lnflagone 200mg/20mg Tablet', 'Glivita Pharma Pvt Ltd', 'Lnflagone 200mg/20mg Tablet', 'What is Lnflagone 200mg/20mg Tablet?', 'Lnflagone 200mg/20mg Tablet is a combination of two medicines: Aceclofenac and Rabeprazole. This medication helps in relieving pain and inflammation. Aceclofenac works by lowering the levels of chemical substances in the body that cause pain and inflammation. Rabeprazole helps in preventing the digestive problem that may occur due to Aceclofenac.'),
(28186, 'Lnflagone 200mg/20mg Tablet', 'Glivita Pharma Pvt Ltd', 'Lnflagone 200mg/20mg Tablet', 'Can I stop taking Lnflagone 200mg/20mg Tablet when my pain is relieved?', 'Lnflagone 200mg/20mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(28187, 'Lnflagone 200mg/20mg Tablet', 'Glivita Pharma Pvt Ltd', 'Lnflagone 200mg/20mg Tablet', 'Can the use of Lnflagone 200mg/20mg Tablet cause nausea and vomiting?', 'Yes, the use of Lnflagone 200mg/20mg Tablet can cause nausea and vomiting. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(28188, 'Lnflagone 200mg/20mg Tablet', 'Glivita Pharma Pvt Ltd', 'Lnflagone 200mg/20mg Tablet', 'Can the use of Lnflagone 200mg/20mg Tablet cause dizziness?', 'Yes, the use of Lnflagone 200mg/20mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(28189, 'Lnflagone 200mg/20mg Tablet', 'Glivita Pharma Pvt Ltd', 'Lnflagone 200mg/20mg Tablet', 'Can I take Lnflagone 200mg/20mg Tablet with Vitamin B-complex?', 'Yes, Lnflagone 200mg/20mg Tablet can be taken with Vitamin B-complex preparations. While Lnflagone 200mg/20mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(28190, 'Lnflagone 200mg/20mg Tablet', 'Glivita Pharma Pvt Ltd', 'Lnflagone 200mg/20mg Tablet', 'What is the recommended storage condition for Lnflagone 200mg/20mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28191, 'L-Nin Forte Tablet SR', 'Henin Lukinz Pvt Ltd', 'L-Nin Forte Tablet SR', 'Can the use of L-Nin Forte Tablet SR cause dry mouth?', 'Yes, the use of L-Nin Forte Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(28192, 'L-Nin Forte Tablet SR', 'Henin Lukinz Pvt Ltd', 'L-Nin Forte Tablet SR', 'Can I use L-Nin Forte Tablet SR while breastfeeding?', 'No, L-Nin Forte Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(28193, 'L-Nin Forte Tablet SR', 'Henin Lukinz Pvt Ltd', 'L-Nin Forte Tablet SR', 'Can I drink alcohol while taking L-Nin Forte Tablet SR?', 'No, avoid drinking alcohol while taking L-Nin Forte Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by L-Nin Forte Tablet SR.'),
(28194, 'L-Nin Forte Tablet SR', 'Henin Lukinz Pvt Ltd', 'L-Nin Forte Tablet SR', 'What are the instructions for the storage and disposal of L-Nin Forte Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28195, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(28196, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'Can I decrease the dose of L-Nin M Kid Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(28197, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'How should L-Nin M Kid Syrup be stored?', 'L-Nin M Kid Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(28198, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'Can L-Nin M Kid Syrup make my child sleepy?', 'L-Nin M Kid Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(28199, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of L-Nin M Kid Syrup?', 'No, don’t start L-Nin M Kid Syrup without speaking to your child’s doctor. Moreover, L-Nin M Kid Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(28200, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of L-Nin M Kid Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(28201, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'My child is suffering from a mood disorder. Is it safe to give L-Nin M Kid Syrup to my child?', 'Some studies show that L-Nin M Kid Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(28202, 'L-Nin M Kid Syrup', 'Henin Lukinz Pvt Ltd', 'L-Nin M Kid Syrup', 'Can I use L-Nin M Kid Syrup for treating acute asthma attacks in my child?', 'L-Nin M Kid Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(28203, 'L-Nin M Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin M Tablet', 'What is L-Nin M Tablet?', 'L-Nin M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(28204, 'L-Nin M Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin M Tablet', 'Can the use of L-Nin M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of L-Nin M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(28205, 'L-Nin M Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin M Tablet', 'Can L-Nin M Tablet be stopped when allergy symptoms are relieved?', 'No, L-Nin M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(28206, 'L-Nin M Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin M Tablet', 'Can the use of L-Nin M Tablet cause dry mouth?', 'Yes, the use of L-Nin M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(28207, 'L-Nin M Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin M Tablet', 'Can I drink alcohol while taking L-Nin M Tablet?', 'No, do not take alcohol while taking L-Nin M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by L-Nin M Tablet.'),
(28208, 'L-Nin M Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin M Tablet', 'Will L-Nin M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of L-Nin M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(28209, 'L-Nin M Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin M Tablet', 'What are the instructions for storage and disposal of L-Nin M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(28210, 'L-Nin Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin Tablet', 'Is L-Nin Tablet a steroid? What is it used for?', 'No, L-Nin Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(28211, 'L-Nin Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin Tablet', 'Does L-Nin Tablet make you tired and drowsy?', 'Yes, L-Nin Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(28212, 'L-Nin Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin Tablet', 'How long does it take for L-Nin Tablet to work?', 'L-Nin Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(28213, 'L-Nin Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin Tablet', 'Can I take L-Nin Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking L-Nin Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(28214, 'L-Nin Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin Tablet', 'Is it safe to take L-Nin Tablet for a long time?', 'L-Nin Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take L-Nin Tablet for only as long as you need it.'),
(28215, 'L-Nin Tablet', 'Henin Lukinz Pvt Ltd', 'L-Nin Tablet', 'For how long should I continue L-Nin Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take L-Nin Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using L-Nin Tablet'),
(28216, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(28217, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'Can I decrease the dose of Lnin-M Kid Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(28218, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'How should Lnin-M Kid Tablet be stored?', 'Lnin-M Kid Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(28219, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'Can Lnin-M Kid Tablet make my child sleepy?', 'Lnin-M Kid Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(28220, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lnin-M Kid Tablet?', 'No, don’t start Lnin-M Kid Tablet without speaking to your child’s doctor. Moreover, Lnin-M Kid Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(28221, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lnin-M Kid Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(28222, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'My child is suffering from a mood disorder. Is it safe to give Lnin-M Kid Tablet to my child?', 'Some studies show that Lnin-M Kid Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(28223, 'Lnin-M Kid Tablet', 'Henin Lukinz Pvt Ltd', 'Lnin-M Kid Tablet', 'Can I use Lnin-M Kid Tablet for treating acute asthma attacks in my child?', 'Lnin-M Kid Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(28224, 'L-Nix OZ Oral Suspension', 'Medinix Pharmaceutical Pvt Ltd', 'L-Nix OZ Oral Suspension', 'What if I don\'t get better after using L-Nix OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(28225, 'L-Nix OZ Oral Suspension', 'Medinix Pharmaceutical Pvt Ltd', 'L-Nix OZ Oral Suspension', 'Can I stop taking L-Nix OZ Oral Suspension when I feel better?', 'No, do not stop taking L-Nix OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(28226, 'L-Nix OZ Oral Suspension', 'Medinix Pharmaceutical Pvt Ltd', 'L-Nix OZ Oral Suspension', 'What if I miss my dose?', 'Take L-Nix OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(28227, 'Lnkav 20mg Tablet', 'Kavach 9 Pharma & Research Pvt Ltd', 'Lnkav 20mg Tablet', 'What is the use of Lnkav 20mg Tablet?', 'Lnkav 20mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28228, 'Lnkav 20mg Tablet', 'Kavach 9 Pharma & Research Pvt Ltd', 'Lnkav 20mg Tablet', 'Which is better amlodipine or Lnkav 20mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Lnkav 20mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Lnkav 20mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28229, 'Lnkav 20mg Tablet', 'Kavach 9 Pharma & Research Pvt Ltd', 'Lnkav 20mg Tablet', 'What are the side effects of Lnkav 20mg Tablet?', 'Lnkav 20mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28230, 'Lnkav 20mg Tablet', 'Kavach 9 Pharma & Research Pvt Ltd', 'Lnkav 20mg Tablet', 'Is Lnkav 20mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Lnkav 20mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28231, 'Lnkav 20mg Tablet', 'Kavach 9 Pharma & Research Pvt Ltd', 'Lnkav 20mg Tablet', 'Should I take Lnkav 20mg Tablet in the morning or at night?', 'Lnkav 20mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28232, 'Lnkav 20mg Tablet', 'Kavach 9 Pharma & Research Pvt Ltd', 'Lnkav 20mg Tablet', 'How long do I need to take Lnkav 20mg Tablet?', 'You should keep on taking Lnkav 20mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lnkav 20mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28233, 'Lnkav 20mg Tablet', 'Kavach 9 Pharma & Research Pvt Ltd', 'Lnkav 20mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lnkav 20mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lnkav 20mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Lnkav 20mg Tablet and to keep healthy.'),
(28234, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'Can the use of Lnndox CV Dry Syrup cause diarrhea?', 'Yes, the use of Lnndox CV Dry Syrup can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(28235, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'How long does Lnndox CV Dry Syrup takes to work?', 'Usually, Lnndox CV Dry Syrup starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(28236, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'What if I don\'t get better after using Lnndox CV Dry Syrup?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(28237, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'Can I stop taking Lnndox CV Dry Syrup when I feel better?', 'No, do not stop taking Lnndox CV Dry Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(28238, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'What is Lnndox CV Dry Syrup?', 'Lnndox CV Dry Syrup is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(28239, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'Can the use of Lnndox CV Dry Syrup cause any serious side effects?', 'Lnndox CV Dry Syrup may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(28240, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'Can I stop taking Lnndox CV Dry Syrup when my symptoms are relieved?', 'No, do not stop taking Lnndox CV Dry Syrup and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(28241, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'Can Lnndox CV Dry Syrup cause allergic reaction?', 'Yes, Lnndox CV Dry Syrup can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(28242, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'Are there any specific contraindications associated with the use of Lnndox CV Dry Syrup?', 'The use of Lnndox CV Dry Syrup is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Lnndox CV Dry Syrup.'),
(28243, 'Lnndox CV Dry Syrup', 'Asvins Lifecare', 'Lnndox CV Dry Syrup', 'Can I take oral contraceptive pills while taking Lnndox CV Dry Syrup?', 'No, Lnndox CV Dry Syrup can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(28244, 'Lnpil 10mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 10mg Tablet', 'What is Lnpil 10mg Tablet used for?', 'Lnpil 10mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Lnpil 10mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Lnpil 10mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(28245, 'Lnpil 10mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 10mg Tablet', 'When should I take Lnpil 10mg Tablet? What if I miss a dose?', 'Lnpil 10mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(28246, 'Lnpil 10mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 10mg Tablet', 'Is Lnpil 10mg Tablet bad for kidneys?', 'No, there is no evidence that Lnpil 10mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(28247, 'Lnpil 10mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 10mg Tablet', 'Is Lnpil 10mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Lnpil 10mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(28248, 'Lnpil 10mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 10mg Tablet', 'For how long I have to take Lnpil 10mg Tablet? Can I stop the medication?', 'You should keep taking Lnpil 10mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(28249, 'Lnpil 5mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 5mg Tablet', 'What is Lnpil 5mg Tablet used for?', 'Lnpil 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Lnpil 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Lnpil 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(28250, 'Lnpil 5mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 5mg Tablet', 'When should I take Lnpil 5mg Tablet? What if I miss a dose?', 'Lnpil 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(28251, 'Lnpil 5mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 5mg Tablet', 'Is Lnpil 5mg Tablet bad for kidneys?', 'No, there is no evidence that Lnpil 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(28252, 'Lnpil 5mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 5mg Tablet', 'Is Lnpil 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Lnpil 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(28253, 'Lnpil 5mg Tablet', 'Sydmen Lifesciences Pvt Ltd', 'Lnpil 5mg Tablet', 'For how long I have to take Lnpil 5mg Tablet? Can I stop the medication?', 'You should keep taking Lnpil 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(28254, 'LNT 4mg Tablet', 'Jubilant Life Sciences', 'LNT 4mg Tablet', 'What is the use of LNT 4mg Tablet?', 'LNT 4mg Tablet is a medicine used to treat hypertension (high blood pressure) and Angina (heart-related chest pain). It belongs to a group of medicines that block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28255, 'LNT 4mg Tablet', 'Jubilant Life Sciences', 'LNT 4mg Tablet', 'What are the side effects of LNT 4mg Tablet?', 'LNT 4mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, nausea, and stomach pain. It may also cause sleepiness, ankle swelling, and fatigue. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28256, 'LNT 4mg Tablet', 'Jubilant Life Sciences', 'LNT 4mg Tablet', 'Is LNT 4mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LNT 4mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28257, 'LNT 4mg Tablet', 'Jubilant Life Sciences', 'LNT 4mg Tablet', 'Should I take LNT 4mg Tablet in the morning or at night?', 'LNT 4mg Tablet can be taken anytime in the morning or evening, usually prescribed once daily. You should use this medicine as prescribed by a doctor. It is advised to take the medicine at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28258, 'LNT 4mg Tablet', 'Jubilant Life Sciences', 'LNT 4mg Tablet', 'How long do I need to take LNT 4mg Tablet?', 'You should keep on taking LNT 4mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LNT 4mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28259, 'LNT 4mg Tablet', 'Jubilant Life Sciences', 'LNT 4mg Tablet', 'What changes can I make to control my blood pressure better?', 'Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LNT 4mg Tablet. Take low sodium and low-fat diet, and adhere to the lifestyle changes as advised by your doctor.'),
(28260, 'LNT 4mg Tablet', 'Jubilant Life Sciences', 'LNT 4mg Tablet', 'What if you forget to take LNT 4mg Tablet?', 'If you miss a dose of LNT 4mg Tablet, take it as soon as possible. However, if it is almost time for your next dose, skip the missed dose and go back to your regular schedule. Do not double the dose.'),
(28261, 'LNT 8mg Tablet', 'Jubilant Life Sciences', 'LNT 8mg Tablet', 'What is the use of LNT 8mg Tablet?', 'LNT 8mg Tablet is a medicine used to treat hypertension (high blood pressure) and Angina (heart-related chest pain). It belongs to a group of medicines that block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28262, 'LNT 8mg Tablet', 'Jubilant Life Sciences', 'LNT 8mg Tablet', 'What are the side effects of LNT 8mg Tablet?', 'LNT 8mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, nausea, and stomach pain. It may also cause sleepiness, ankle swelling, and fatigue. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28263, 'LNT 8mg Tablet', 'Jubilant Life Sciences', 'LNT 8mg Tablet', 'Is LNT 8mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LNT 8mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28264, 'LNT 8mg Tablet', 'Jubilant Life Sciences', 'LNT 8mg Tablet', 'Should I take LNT 8mg Tablet in the morning or at night?', 'LNT 8mg Tablet can be taken anytime in the morning or evening, usually prescribed once daily. You should use this medicine as prescribed by a doctor. It is advised to take the medicine at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28265, 'LNT 8mg Tablet', 'Jubilant Life Sciences', 'LNT 8mg Tablet', 'How long do I need to take LNT 8mg Tablet?', 'You should keep on taking LNT 8mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LNT 8mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(28266, 'LNT 8mg Tablet', 'Jubilant Life Sciences', 'LNT 8mg Tablet', 'What changes can I make to control my blood pressure better?', 'Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LNT 8mg Tablet. Take low sodium and low-fat diet, and adhere to the lifestyle changes as advised by your doctor.'),
(28267, 'LNT 8mg Tablet', 'Jubilant Life Sciences', 'LNT 8mg Tablet', 'What if you forget to take LNT 8mg Tablet?', 'If you miss a dose of LNT 8mg Tablet, take it as soon as possible. However, if it is almost time for your next dose, skip the missed dose and go back to your regular schedule. Do not double the dose.'),
(28268, 'LN-Tab 10 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 10 Tablet', 'What is the use of LN-Tab 10 Tablet?', 'LN-Tab 10 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28269, 'LN-Tab 10 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 10 Tablet', 'Which is better amlodipine or LN-Tab 10 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LN-Tab 10 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LN-Tab 10 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28270, 'LN-Tab 10 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 10 Tablet', 'What are the side effects of LN-Tab 10 Tablet?', 'LN-Tab 10 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28271, 'LN-Tab 10 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 10 Tablet', 'Is LN-Tab 10 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LN-Tab 10 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28272, 'LN-Tab 10 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 10 Tablet', 'Should I take LN-Tab 10 Tablet in the morning or at night?', 'LN-Tab 10 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28273, 'LN-Tab 10 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 10 Tablet', 'How long do I need to take LN-Tab 10 Tablet?', 'You should keep on taking LN-Tab 10 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LN-Tab 10 Tablet, your blood pressure may increase again and your condition may worsen.'),
(28274, 'LN-Tab 10 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 10 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LN-Tab 10 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LN-Tab 10 Tablet. You should consult your doctor if you need any further help to get maximum benefit of LN-Tab 10 Tablet and to keep healthy.'),
(28275, 'LN-Tab 20 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 20 Tablet', 'What is the use of LN-Tab 20 Tablet?', 'LN-Tab 20 Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(28276, 'LN-Tab 20 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 20 Tablet', 'Which is better amlodipine or LN-Tab 20 Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. LN-Tab 20 Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, LN-Tab 20 Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(28277, 'LN-Tab 20 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 20 Tablet', 'What are the side effects of LN-Tab 20 Tablet?', 'LN-Tab 20 Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(28278, 'LN-Tab 20 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 20 Tablet', 'Is LN-Tab 20 Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, LN-Tab 20 Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(28279, 'LN-Tab 20 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 20 Tablet', 'Should I take LN-Tab 20 Tablet in the morning or at night?', 'LN-Tab 20 Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(28280, 'LN-Tab 20 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 20 Tablet', 'How long do I need to take LN-Tab 20 Tablet?', 'You should keep on taking LN-Tab 20 Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking LN-Tab 20 Tablet, your blood pressure may increase again and your condition may worsen.'),
(28281, 'LN-Tab 20 Tablet', 'Hicxica Formulations Pvt Ltd', 'LN-Tab 20 Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LN-Tab 20 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking LN-Tab 20 Tablet. You should consult your doctor if you need any further help to get maximum benefit of LN-Tab 20 Tablet and to keep healthy.'),
(28282, 'LNZ 600 Tablet', 'Lupin Ltd', 'LNZ 600 Tablet', 'Can the use of LNZ 600 Tablet cause diarrhea?', 'Yes, the use of LNZ 600 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(28283, 'LNZ 600 Tablet', 'Lupin Ltd', 'LNZ 600 Tablet', 'What foods should I avoid while taking LNZ 600 Tablet?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking LNZ 600 Tablet can result in elevation of blood pressure, which may result in an emergency situation.'),
(28284, 'LNZ IV 600 Infusion', 'Lupin Ltd', 'LNZ IV 600 Infusion', 'Can the use of LNZ IV 600 Infusion cause diarrhea?', 'Yes, the use of LNZ IV 600 Infusion can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(28285, 'LNZ IV 600 Infusion', 'Lupin Ltd', 'LNZ IV 600 Infusion', 'What foods should I avoid while taking LNZ IV 600 Infusion?', 'You should avoid taking large quantities of food that contain high tyramine in it. Foods that are fermented, cured, aged or spoiled contain high amount of tyramine e.g cheese, red wine, pickle, over ripe fruits etc. Consuming tyramine while taking LNZ IV 600 Infusion can result in elevation of blood pressure, which may result in an emergency situation.'),
(28286, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'Can I feel dizzy after taking LO 25mg Tablet?', 'Yes, the use of LO 25mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28287, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'Is LO 25mg Tablet a good blood pressure medicine?', 'LO 25mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(28288, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'What are some of the lifestyle changes I should make while using LO 25mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LO 25mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of LO 25mg Tablet and to keep yourself healthy.'),
(28289, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'For how long do I need to take LO 25mg Tablet?', 'You may have to take LO 25mg Tablet for a long term, even life long. LO 25mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding LO 25mg Tablet, but do not stop taking it without consulting the doctor.'),
(28290, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'Does LO 25mg Tablet cause weight gain?', 'No, LO 25mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(28291, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'What are the long-term side effects of LO 25mg Tablet?', 'Long-term use of LO 25mg Tablet is generally considered to be safe. However, in some cases, long-term use of LO 25mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(28292, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'Is LO 25mg Tablet bad for the kidneys?', 'Yes, LO 25mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, LO 25mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(28293, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'How long does LO 25mg Tablet take to work?', 'The blood pressure-lowering effect of LO 25mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(28294, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'When and how should LO 25mg Tablet be taken?', 'Take LO 25mg Tablet exactly as per your doctor’s advice. LO 25mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(28295, 'LO 25mg Tablet', 'East West Pharma', 'LO 25mg Tablet', 'What is the most important information that I need to know about LO 25mg Tablet?', 'Taking LO 25mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking LO 25mg Tablet, stop taking LO 25mg Tablet and call your doctor immediately.'),
(28296, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'Can I feel dizzy after taking LO 50 Tablet?', 'Yes, the use of LO 50 Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28297, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'Is LO 50 Tablet a good blood pressure medicine?', 'LO 50 Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(28298, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'What are some of the lifestyle changes I should make while using LO 50 Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking LO 50 Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of LO 50 Tablet and to keep yourself healthy.'),
(28299, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'For how long do I need to take LO 50 Tablet?', 'You may have to take LO 50 Tablet for a long term, even life long. LO 50 Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding LO 50 Tablet, but do not stop taking it without consulting the doctor.'),
(28300, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'Does LO 50 Tablet cause weight gain?', 'No, LO 50 Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(28301, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'What are the long-term side effects of LO 50 Tablet?', 'Long-term use of LO 50 Tablet is generally considered to be safe. However, in some cases, long-term use of LO 50 Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(28302, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'Is LO 50 Tablet bad for the kidneys?', 'Yes, LO 50 Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, LO 50 Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(28303, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'How long does LO 50 Tablet take to work?', 'The blood pressure-lowering effect of LO 50 Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(28304, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'When and how should LO 50 Tablet be taken?', 'Take LO 50 Tablet exactly as per your doctor’s advice. LO 50 Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(28305, 'LO 50 Tablet', 'East West Pharma', 'LO 50 Tablet', 'What is the most important information that I need to know about LO 50 Tablet?', 'Taking LO 50 Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking LO 50 Tablet, stop taking LO 50 Tablet and call your doctor immediately.'),
(28306, 'LO H Tablet', 'East West Pharma', 'LO H Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28307, 'LO H Tablet', 'East West Pharma', 'LO H Tablet', 'Can I feel dizzy after taking LO H Tablet?', 'Yes, the use of LO H Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28308, 'LO H Tablet', 'East West Pharma', 'LO H Tablet', 'Can I use LO H Tablet in pregnancy?', 'No, LO H Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using LO H Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(28309, 'LO H Tablet', 'East West Pharma', 'LO H Tablet', 'What are some lifestyle changes to make while using LO H Tablet?', 'Making lifestyle changes can boost your health while taking LO H Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(28310, 'LO H Tablet', 'East West Pharma', 'LO H Tablet', 'Can I stop taking LO H Tablet if I feel well?', 'No, keep using LO H Tablet as advised by your doctor, even if you feel well. Stopping LO H Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28311, 'LO Risc Tablet', 'Nouvelle Pharmaceuticals', 'LO Risc Tablet', 'What is LO Risc Tablet? What is LO Risc Tablet used for?', 'LO Risc Tablet is a medicine used in the treatment of conditions caused due to low levels of vitamin B3 in the body. Intake of vitamin B3 helps in reducing high levels of cholesterol and triglycerides and reducing the symptoms of arthritis. Along with that, it boosts brain function.'),
(28312, 'LO Risc Tablet', 'Nouvelle Pharmaceuticals', 'LO Risc Tablet', 'Is LO Risc Tablet effective?', 'LO Risc Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using LO Risc Tablet too early, the symptoms may return or worsen.'),
(28313, 'LO Risc Tablet', 'Nouvelle Pharmaceuticals', 'LO Risc Tablet', 'How should LO Risc Tablet be taken?', 'LO Risc Tablet should be taken in the dose and duration advised by your doctor. It is advised to take LO Risc Tablet with food preferably at the same time each day to avoid the chances of missing a dose.'),
(28314, 'LO Risc Tablet', 'Nouvelle Pharmaceuticals', 'LO Risc Tablet', 'What if I forget to take a dose of LO Risc Tablet?', 'If you forget a dose of LO Risc Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(28315, 'LO Risc Tablet', 'Nouvelle Pharmaceuticals', 'LO Risc Tablet', 'Is LO Risc Tablet safe?', 'LO Risc Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(28316, 'LO Risc Tablet', 'Nouvelle Pharmaceuticals', 'LO Risc Tablet', 'Can deficiency of vitamin B3 cause depression?', 'Yes, any imbalance of vitamin B3 or its deficiency may cause depression. Vitamin B3 along with the other forms of vitamin B are extremely important in regulating those chemicals in the brain that are responsible for our mood and behaviour.'),
(28317, 'LO Stren 50mg Tablet', 'Dahlia Pharmaceutical Pvt Ltd', 'LO Stren 50mg Tablet', 'What is LO Stren 50mg Tablet?', 'LO Stren 50mg Tablet is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of LO Stren 50mg Tablet in the body and decreases its side effects.'),
(28318, 'LO Stren 50mg Tablet', 'Dahlia Pharmaceutical Pvt Ltd', 'LO Stren 50mg Tablet', 'What is LO Stren 50mg Tablet used to treat?', 'LO Stren 50mg Tablet is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(28319, 'LO Stren 50mg Tablet', 'Dahlia Pharmaceutical Pvt Ltd', 'LO Stren 50mg Tablet', 'Can you take LO Stren 50mg Tablet every day?', 'Yes, LO Stren 50mg Tablet can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(28320, 'LO Stren 50mg Tablet', 'Dahlia Pharmaceutical Pvt Ltd', 'LO Stren 50mg Tablet', 'Does LO Stren 50mg Tablet cause weight gain?', 'Yes, taking LO Stren 50mg Tablet may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if LO Stren 50mg Tablet is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(28321, 'LO Stren 50mg Tablet', 'Dahlia Pharmaceutical Pvt Ltd', 'LO Stren 50mg Tablet', 'Is LO Stren 50mg Tablet safe?', 'Yes, LO Stren 50mg Tablet is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(28322, 'LO Stren 50mg Tablet', 'Dahlia Pharmaceutical Pvt Ltd', 'LO Stren 50mg Tablet', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. LO Stren 50mg Tablet (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(28323, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'Is Load 0.5 Tablet an opioid? Is it a habit-forming medicine?', 'No, Load 0.5 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(28324, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'Can Load 0.5 Tablet be used as a sleeping pill?', 'Load 0.5 Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Load 0.5 Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(28325, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'For how long will Load 0.5 Tablet stay in my system?', 'Load 0.5 Tablet may take around 3 days to get completely removed from the system.'),
(28326, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'Are there any symptoms that I would experience if I get addicted to Load 0.5 Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Load 0.5 Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(28327, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'If I suddenly stop taking Load 0.5 Tablet, will it affect me adversely?', 'You should reduce the dose of Load 0.5 Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(28328, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'Does Load 0.5 Tablet cause weight gain?', 'The effect of Load 0.5 Tablet on weight gain or loss is not known.'),
(28329, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'Does Load 0.5 Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Load 0.5 Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(28330, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'My old uncle is taking Load 0.5 Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Load 0.5 Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(28331, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'Are there any harmful effects of taking more than the recommended doses of Load 0.5 Tablet?', 'Taking more than the recommended dose of Load 0.5 Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Load 0.5 Tablet, seek immediate medical help immediately.'),
(28332, 'Load 0.5 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 0.5 Tablet', 'Is Load 0.5 Tablet an opioid? Is it a habit-forming medicine?', 'No, Load 0.5 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(28333, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'Is Load 2 Tablet an opioid? Is it a habit-forming medicine?', 'No, Load 2 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(28334, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'Can Load 2 Tablet be used as a sleeping pill?', 'Load 2 Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Load 2 Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(28335, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'For how long will Load 2 Tablet stay in my system?', 'Load 2 Tablet may take around 3 days to get completely removed from the system.'),
(28336, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'Are there any symptoms that I would experience if I get addicted to Load 2 Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Load 2 Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(28337, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'If I suddenly stop taking Load 2 Tablet, will it affect me adversely?', 'You should reduce the dose of Load 2 Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(28338, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'Does Load 2 Tablet cause weight gain?', 'The effect of Load 2 Tablet on weight gain or loss is not known.'),
(28339, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'Does Load 2 Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Load 2 Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(28340, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'My old uncle is taking Load 2 Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Load 2 Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(28341, 'Load 2 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 2 Tablet', 'Are there any harmful effects of taking more than the recommended doses of Load 2 Tablet?', 'Taking more than the recommended dose of Load 2 Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Load 2 Tablet, seek immediate medical help immediately.'),
(28342, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'Is Load 3 Tablet an opioid? Is it a habit-forming medicine?', 'No, Load 3 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(28343, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'Can Load 3 Tablet be used as a sleeping pill?', 'Load 3 Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Load 3 Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(28344, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'For how long will Load 3 Tablet stay in my system?', 'Load 3 Tablet may take around 3 days to get completely removed from the system.'),
(28345, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'Are there any symptoms that I would experience if I get addicted to Load 3 Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Load 3 Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(28346, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'If I suddenly stop taking Load 3 Tablet, will it affect me adversely?', 'You should reduce the dose of Load 3 Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(28347, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'Does Load 3 Tablet cause weight gain?', 'The effect of Load 3 Tablet on weight gain or loss is not known.'),
(28348, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'Does Load 3 Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Load 3 Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(28349, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'My old uncle is taking Load 3 Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Load 3 Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(28350, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'Are there any harmful effects of taking more than the recommended doses of Load 3 Tablet?', 'Taking more than the recommended dose of Load 3 Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Load 3 Tablet, seek immediate medical help immediately.'),
(28351, 'Load 3 Tablet', 'Laclin Pharma Pvt Ltd', 'Load 3 Tablet', 'Is Load 3 Tablet an opioid? Is it a habit-forming medicine?', 'No, Load 3 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(28352, 'Loagel O Oral Suspension', 'Ikon Remedies Pvt Ltd', 'Loagel O Oral Suspension', 'Will a higher than the recommended dose of Loagel O Oral Suspension be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(28353, 'Loagel O Oral Suspension', 'Ikon Remedies Pvt Ltd', 'Loagel O Oral Suspension', 'What are the instructions for the storage and disposal of Loagel O Oral Suspension?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28354, 'Loagel O Oral Suspension', 'Ikon Remedies Pvt Ltd', 'Loagel O Oral Suspension', 'What should I do if I miss a dose?', 'Take the missed dose as soon as you remember. However, skip the missed dose if it is time to take your next dose and then follow your normal time.'),
(28355, 'Loagel Oral Suspension', 'Ikon Remedies Pvt Ltd', 'Loagel Oral Suspension', 'Can the use of Loagel Oral Suspension cause constipation?', 'Yes, Loagel Oral Suspension can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits and cereals. Drink plenty of water. Engage in physical activities like swimming, jogging or taking a short walk. Talk to your doctor about taking some medicines to treat constipation if it persists for a long time.'),
(28356, 'Loagel Oral Suspension', 'Ikon Remedies Pvt Ltd', 'Loagel Oral Suspension', 'What are the instructions for the storage and disposal of Loagel Oral Suspension?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28357, 'Loamet Oral Suspension', 'AngiaRx Lifescience', 'Loamet Oral Suspension', 'What if I give excess Loamet Oral Suspension by mistake?', 'Although an extra dose of Loamet Oral Suspension will not have any side effects, you must always be vigilant. If you think you have given too much Loamet Oral Suspension to your child, immediately speak to a doctor. Overdose increases the risk of unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heartbeat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(28358, 'Loamet Oral Suspension', 'AngiaRx Lifescience', 'Loamet Oral Suspension', 'What should I do if my child shows no improvement even after taking Loamet Oral Suspension for the prescribed duration?', 'Ineffective treatment with Loamet Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic, having more specific action toward the infection-causing bacteria.'),
(28359, 'Loamet Oral Suspension', 'AngiaRx Lifescience', 'Loamet Oral Suspension', 'Can other medicines be given at the same time as Loamet Oral Suspension?', 'Loamet Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Loamet Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(28360, 'Loamet Oral Suspension', 'AngiaRx Lifescience', 'Loamet Oral Suspension', 'Can I get my child vaccinated while on treatment with Loamet Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(28361, 'Loamet Oral Suspension', 'AngiaRx Lifescience', 'Loamet Oral Suspension', 'What should I tell the doctor before giving Loamet Oral Suspension to my child?', 'Inform the doctor if your child is suffering from heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Loamet Oral Suspension may aggravate these conditions and result in complications.'),
(28362, 'Loamet Oral Suspension', 'AngiaRx Lifescience', 'Loamet Oral Suspension', 'My child has been passing red-brown urine ever since he started taking Loamet Oral Suspension. Is it normal?', 'Yes, it is normal. Loamet Oral Suspension contains an active ingredient called metronidazole which can cause red-brown urine. It is a harmless side effect. It will subside once the medicine is stopped after the completion of the treatment.'),
(28363, 'Loamet Oral Suspension', 'AngiaRx Lifescience', 'Loamet Oral Suspension', 'My child is having a common cold. Is it safe to give Loamet Oral Suspension along with cough & cold medicines?', 'No, do not give Loamet Oral Suspension with cough and cold medicines as it can interfere with their working.'),
(28364, 'Loapep O Oral Gel', 'Innovative Pharmaceuticals', 'Loapep O Oral Gel', 'Will a higher than the recommended dose of Loapep O Oral Gel be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended dosage does not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(28365, 'Loapep O Oral Gel', 'Innovative Pharmaceuticals', 'Loapep O Oral Gel', 'What are the instructions for the storage and disposal of Loapep O Oral Gel?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28366, 'Loapep O Oral Gel', 'Innovative Pharmaceuticals', 'Loapep O Oral Gel', 'What should I do if I miss a dose?', 'Take the missed dose as soon as you remember. However, skip the missed dose if it is time to take your next dose and then follow your normal time.'),
(28367, 'Loapep Oral Suspension', 'Innovative Pharmaceuticals', 'Loapep Oral Suspension', 'Can the use of Loapep Oral Suspension cause constipation?', 'Yes, Loapep Oral Suspension can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits and cereals. Drink plenty of water. Engage in physical activities like swimming, jogging or taking a short walk. Talk to your doctor about taking some medicines to treat constipation if it persists for a long time.'),
(28368, 'Loapep Oral Suspension', 'Innovative Pharmaceuticals', 'Loapep Oral Suspension', 'What are the instructions for the storage and disposal of Loapep Oral Suspension?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28369, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'Can I feel dizzy after taking Loar 25mg Tablet?', 'Yes, the use of Loar 25mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28370, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'Is Loar 25mg Tablet a good blood pressure medicine?', 'Loar 25mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(28371, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'What are some of the lifestyle changes I should make while using Loar 25mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Loar 25mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Loar 25mg Tablet and to keep yourself healthy.'),
(28372, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'For how long do I need to take Loar 25mg Tablet?', 'You may have to take Loar 25mg Tablet for a long term, even life long. Loar 25mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Loar 25mg Tablet, but do not stop taking it without consulting the doctor.'),
(28373, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'Does Loar 25mg Tablet cause weight gain?', 'No, Loar 25mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(28374, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'What are the long-term side effects of Loar 25mg Tablet?', 'Long-term use of Loar 25mg Tablet is generally considered to be safe. However, in some cases, long-term use of Loar 25mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(28375, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'Is Loar 25mg Tablet bad for the kidneys?', 'Yes, Loar 25mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Loar 25mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(28376, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'How long does Loar 25mg Tablet take to work?', 'The blood pressure-lowering effect of Loar 25mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(28377, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'When and how should Loar 25mg Tablet be taken?', 'Take Loar 25mg Tablet exactly as per your doctor’s advice. Loar 25mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(28378, 'Loar 25mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 25mg Tablet', 'What is the most important information that I need to know about Loar 25mg Tablet?', 'Taking Loar 25mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Loar 25mg Tablet, stop taking Loar 25mg Tablet and call your doctor immediately.'),
(28379, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'Can I feel dizzy after taking Loar 50mg Tablet?', 'Yes, the use of Loar 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28380, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'Is Loar 50mg Tablet a good blood pressure medicine?', 'Loar 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28381, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'What are some of the lifestyle changes I should make while using Loar 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Loar 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Loar 50mg Tablet and to keep yourself healthy.'),
(28382, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'For how long do I need to take Loar 50mg Tablet?', 'You may have to take Loar 50mg Tablet for a long term, even life long. Loar 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Loar 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(28383, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'Does Loar 50mg Tablet cause weight gain?', 'No, Loar 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(28384, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'What are the long-term side effects of Loar 50mg Tablet?', 'Long-term use of Loar 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Loar 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(28385, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'Is Loar 50mg Tablet bad for the kidneys?', 'Yes, Loar 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Loar 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(28386, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'How long does Loar 50mg Tablet take to work?', 'The blood pressure-lowering effect of Loar 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(28387, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'When and how should Loar 50mg Tablet be taken?', 'Take Loar 50mg Tablet exactly as per your doctor’s advice. Loar 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(28388, 'Loar 50mg Tablet', 'Baroda Pharma Pvt Ltd', 'Loar 50mg Tablet', 'What is the most important information that I need to know about Loar 50mg Tablet?', 'Taking Loar 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Loar 50mg Tablet, stop taking Loar 50mg Tablet and call your doctor immediately.'),
(28389, 'Loar H Tablet', 'Baroda Pharma Pvt Ltd', 'Loar H Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28390, 'Loar H Tablet', 'Baroda Pharma Pvt Ltd', 'Loar H Tablet', 'Can I feel dizzy after taking Loar H Tablet?', 'Yes, the use of Loar H Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28391, 'Loar H Tablet', 'Baroda Pharma Pvt Ltd', 'Loar H Tablet', 'Can I use Loar H Tablet in pregnancy?', 'No, Loar H Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Loar H Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(28392, 'Loar H Tablet', 'Baroda Pharma Pvt Ltd', 'Loar H Tablet', 'What are some lifestyle changes to make while using Loar H Tablet?', 'Making lifestyle changes can boost your health while taking Loar H Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(28393, 'Loar H Tablet', 'Baroda Pharma Pvt Ltd', 'Loar H Tablet', 'Can I stop taking Loar H Tablet if I feel well?', 'No, keep using Loar H Tablet as advised by your doctor, even if you feel well. Stopping Loar H Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28394, 'Loatro Eye Drop', 'Sapient Laboratories Pvt Ltd', 'Loatro Eye Drop', 'What is the best time to use Loatro Eye Drop?', 'Loatro Eye Drop can be given at any time of the day as prescribed by the doctor. However, it is best to use it just before your child retires to bed since Loatro Eye Drop can cause temporary blurring of vision.'),
(28395, 'Loatro Eye Drop', 'Sapient Laboratories Pvt Ltd', 'Loatro Eye Drop', 'My child is 10 years old and has blurred vision (myopia). Is Loatro Eye Drop the right choice?', 'Loatro Eye Drop is usually given to young children to prevent the progression of myopia. In older children, where myopia has already been progressed, Loatro Eye Drop is not known to have any beneficial effect. Therefore, in this case, avoid giving Loatro Eye Drop to your child and consult your child’s doctor.'),
(28396, 'Loatro Eye Drop', 'Sapient Laboratories Pvt Ltd', 'Loatro Eye Drop', 'What if I give too much of Loatro Eye Drop by mistake?', 'Excessive use of Loatro Eye Drop in children can cause anticholinergic effects (dry mouth), cardiovascular changes (fast heart rate, irregular heartbeat), and central nervous system effects (confusion, restlessness, hallucinations, convulsions). Therefore, it is advised not to give more than the recommended dose.'),
(28397, 'Loatro Eye Drop', 'Sapient Laboratories Pvt Ltd', 'Loatro Eye Drop', 'Can other medicines be given at the same time as Loatro Eye Drop?', 'Loatro Eye Drop may interact with other medicines or eye drops. Check with your child’s doctor before giving any medicine to your child along with Loatro Eye Drop.'),
(28398, 'Loatro Eye Drop', 'Sapient Laboratories Pvt Ltd', 'Loatro Eye Drop', 'How to store Loatro Eye Drop at home?', 'Loatro Eye Drop is for external use only and should be stored out of the sight and reach of children. Keep Loatro Eye Drop upright at room temperature in a dry place away from light.'),
(28399, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. How long does it take for Loaz SF 10gm Syrup to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Loaz SF 10gm Syrup.'),
(28400, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. What is Loaz SF 10gm Syrup used for?', 'Loaz SF 10gm Syrup is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(28401, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. Is Loaz SF 10gm Syrup a laxative?', 'Yes, Loaz SF 10gm Syrup is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(28402, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. What are the side effects of taking Loaz SF 10gm Syrup?', 'Loaz SF 10gm Syrup very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(28403, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. Is it okay to take Loaz SF 10gm Syrup every day?', 'You should take Loaz SF 10gm Syrup for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(28404, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. Who should not be given Loaz SF 10gm Syrup?', 'Loaz SF 10gm Syrup should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(28405, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. Can I take other laxatives along with Loaz SF 10gm Syrup?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Loaz SF 10gm Syrup. The risk of side effects is more with two laxatives.'),
(28406, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. What if I take more than the recommended dose of Loaz SF 10gm Syrup?', 'Taking more than the recommended dose of Loaz SF 10gm Syrup may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(28407, 'Loaz SF 10gm Syrup', 'Grownbury Pharmaceuticals Pvt Ltd', 'Loaz SF 10gm Syrup', 'Q. How should Loaz SF 10gm Syrup be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(28408, 'Lobac 10mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Lobac 10mg Tablet', 'Can Lobac 10mg Tablet make you sleepy?', 'Yes, Lobac 10mg Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Lobac 10mg Tablet affects you.'),
(28409, 'Lobac 10mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Lobac 10mg Tablet', 'Does Lobac 10mg Tablet help anxiety?', 'Though Lobac 10mg Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(28410, 'Lobac 10mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Lobac 10mg Tablet', 'Can I take Lobac 10mg Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Lobac 10mg Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(28411, 'Lobac 10mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Lobac 10mg Tablet', 'Does Lobac 10mg Tablet have any effect on kidneys?', 'Lobac 10mg Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(28412, 'Lobac 10mg Tablet', 'Roussel Laboratories Pvt Ltd', 'Lobac 10mg Tablet', 'How should Lobac 10mg Tablet be taken?', 'Take Lobac 10mg Tablet exactly as directed by your doctor. If a person experiences nausea while taking Lobac 10mg Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(28413, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'Is Lobachek 10mg Tablet habit forming?', 'Yes, Lobachek 10mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28414, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'Can Lobachek 10mg Tablet make me sleepy?', 'Yes, Lobachek 10mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28415, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'How long does Lobachek 10mg Tablet take to work?', 'Lobachek 10mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobachek 10mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28416, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'Is Lobachek 10mg Tablet the same as clonazepam?', 'No, Lobachek 10mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28417, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'How long does Lobachek 10mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobachek 10mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28418, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'Can I stop taking Lobachek 10mg Tablet?', 'No, do not stop taking Lobachek 10mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobachek 10mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28419, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'What if more than the recommended dose of Lobachek 10mg Tablet is taken?', 'Taking more than the recommended doses of Lobachek 10mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28420, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'Can using Lobachek 10mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobachek 10mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobachek 10mg Tablet may cause a fall in the blood pressure'),
(28421, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'Can Lobachek 10mg Tablet make me tired?', 'Lobachek 10mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28422, 'Lobachek 10mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 10mg Tablet', 'Does Lobachek 10mg Tablet cause depression?', 'No, Lobachek 10mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28423, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'Is Lobachek 5mg Tablet habit forming?', 'Yes, Lobachek 5mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28424, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'Can Lobachek 5mg Tablet make me sleepy?', 'Yes, Lobachek 5mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28425, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'How long does Lobachek 5mg Tablet take to work?', 'Lobachek 5mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobachek 5mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28426, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'Is Lobachek 5mg Tablet the same as clonazepam?', 'No, Lobachek 5mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28427, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'How long does Lobachek 5mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobachek 5mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28428, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'Can I stop taking Lobachek 5mg Tablet?', 'No, do not stop taking Lobachek 5mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobachek 5mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28429, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'What if more than the recommended dose of Lobachek 5mg Tablet is taken?', 'Taking more than the recommended doses of Lobachek 5mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28430, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'Can using Lobachek 5mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobachek 5mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobachek 5mg Tablet may cause a fall in the blood pressure'),
(28431, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'Can Lobachek 5mg Tablet make me tired?', 'Lobachek 5mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28432, 'Lobachek 5mg Tablet', 'La Renon Healthcare Pvt Ltd', 'Lobachek 5mg Tablet', 'Does Lobachek 5mg Tablet cause depression?', 'No, Lobachek 5mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28433, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'Is Lobacor 10mg Tablet MD habit forming?', 'Yes, Lobacor 10mg Tablet MD can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28434, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'Can Lobacor 10mg Tablet MD make me sleepy?', 'Yes, Lobacor 10mg Tablet MD can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28435, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'How long does Lobacor 10mg Tablet MD take to work?', 'Lobacor 10mg Tablet MD is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobacor 10mg Tablet MD reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28436, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'Is Lobacor 10mg Tablet MD the same as clonazepam?', 'No, Lobacor 10mg Tablet MD and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28437, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'How long does Lobacor 10mg Tablet MD withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobacor 10mg Tablet MD. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28438, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'Can I stop taking Lobacor 10mg Tablet MD?', 'No, do not stop taking Lobacor 10mg Tablet MD even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobacor 10mg Tablet MD may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28439, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'What if more than the recommended dose of Lobacor 10mg Tablet MD is taken?', 'Taking more than the recommended doses of Lobacor 10mg Tablet MD can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28440, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'Can using Lobacor 10mg Tablet MD cause a decrease in the blood pressure?', 'Generally, the use of Lobacor 10mg Tablet MD does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobacor 10mg Tablet MD may cause a fall in the blood pressure'),
(28441, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'Can Lobacor 10mg Tablet MD make me tired?', 'Lobacor 10mg Tablet MD may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28442, 'Lobacor 10mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 10mg Tablet MD', 'Does Lobacor 10mg Tablet MD cause depression?', 'No, Lobacor 10mg Tablet MD dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28443, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'Is Lobacor 5mg Tablet MD habit forming?', 'Yes, Lobacor 5mg Tablet MD can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28444, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'Can Lobacor 5mg Tablet MD make me sleepy?', 'Yes, Lobacor 5mg Tablet MD can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28445, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'How long does Lobacor 5mg Tablet MD take to work?', 'Lobacor 5mg Tablet MD is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobacor 5mg Tablet MD reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28446, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'Is Lobacor 5mg Tablet MD the same as clonazepam?', 'No, Lobacor 5mg Tablet MD and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28447, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'How long does Lobacor 5mg Tablet MD withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobacor 5mg Tablet MD. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28448, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'Can I stop taking Lobacor 5mg Tablet MD?', 'No, do not stop taking Lobacor 5mg Tablet MD even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobacor 5mg Tablet MD may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28449, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'What if more than the recommended dose of Lobacor 5mg Tablet MD is taken?', 'Taking more than the recommended doses of Lobacor 5mg Tablet MD can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28450, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'Can using Lobacor 5mg Tablet MD cause a decrease in the blood pressure?', 'Generally, the use of Lobacor 5mg Tablet MD does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobacor 5mg Tablet MD may cause a fall in the blood pressure'),
(28451, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'Can Lobacor 5mg Tablet MD make me tired?', 'Lobacor 5mg Tablet MD may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28452, 'Lobacor 5mg Tablet MD', 'Emcure Pharmaceuticals Ltd', 'Lobacor 5mg Tablet MD', 'Does Lobacor 5mg Tablet MD cause depression?', 'No, Lobacor 5mg Tablet MD dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28453, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'Is Lobact 2mg Tablet safe?', 'Lobact 2mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(28454, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'What is Lobact 2mg Tablet used for?', 'Lobact 2mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(28455, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'Can Lobact 2mg Tablet be used for IBS?', 'Lobact 2mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(28456, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'Can I take Lobact 2mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lobact 2mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lobact 2mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(28457, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'Does Lobact 2mg Tablet help in opiate withdrawal?', 'Lobact 2mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(28458, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'Is Lobact 2mg Tablet addictive?', 'No, Lobact 2mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(28459, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'Can Lobact 2mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lobact 2mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(28460, 'Lobact 2mg Tablet', 'B L Pharma Limited', 'Lobact 2mg Tablet', 'Can I take Lobact 2mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lobact 2mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lobact 2mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(28461, 'Lobaid GM Cream', 'Workcell Solutions Private Limited', 'Lobaid GM Cream', 'Can I stop taking Lobaid GM Cream when I feel better?', 'No, do not stop taking Lobaid GM Cream and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(28462, 'Lobaid GM Cream', 'Workcell Solutions Private Limited', 'Lobaid GM Cream', 'What if I don\'t get better after using Lobaid GM Cream?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(28463, 'Lobaid GM Cream', 'Workcell Solutions Private Limited', 'Lobaid GM Cream', 'How long does Lobaid GM Cream takes to work?', 'Usually, Lobaid GM Cream starts working soon after applying it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(28464, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'What is Lobak  Forte 500mg/50mg/500mg Tablet?', 'Lobak  Forte 500mg/50mg/500mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(28465, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'Is it safe to use Lobak  Forte 500mg/50mg/500mg Tablet?', 'Lobak  Forte 500mg/50mg/500mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(28466, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'Can I stop taking Lobak  Forte 500mg/50mg/500mg Tablet when my pain is relieved?', 'Lobak  Forte 500mg/50mg/500mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(28467, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'Can the use of Lobak  Forte 500mg/50mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Lobak  Forte 500mg/50mg/500mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(28468, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'Can the use of Lobak  Forte 500mg/50mg/500mg Tablet cause dizziness?', 'Yes, the use of Lobak  Forte 500mg/50mg/500mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(28469, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'Can the use of Lobak  Forte 500mg/50mg/500mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lobak  Forte 500mg/50mg/500mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(28470, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lobak  Forte 500mg/50mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(28471, 'Lobak Forte 500mg/50mg/500mg Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Forte 500mg/50mg/500mg Tablet', 'What are the recommended storage conditions for Lobak  Forte 500mg/50mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28472, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'What is Lobak  Tablet?', 'Lobak  Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(28473, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'Is it safe to use Lobak  Tablet?', 'Lobak  Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(28474, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'Can I stop taking Lobak  Tablet when my pain is relieved?', 'Lobak  Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(28475, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'Can the use of Lobak  Tablet cause nausea and vomiting?', 'Yes, the use of Lobak  Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(28476, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'Can the use of Lobak  Tablet cause dizziness?', 'Yes, the use of Lobak  Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(28477, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'Can the use of Lobak  Tablet cause damage to kidneys?', 'Yes, the long-term use of Lobak  Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(28478, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lobak  Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(28479, 'Lobak Tablet', 'Geno Pharmaceuticals Ltd', 'Lobak Tablet', 'What are the recommended storage conditions for Lobak  Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28480, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'Is Lobaone 10mg Tablet MD habit forming?', 'Yes, Lobaone 10mg Tablet MD can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28481, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'Can Lobaone 10mg Tablet MD make me sleepy?', 'Yes, Lobaone 10mg Tablet MD can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28482, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'How long does Lobaone 10mg Tablet MD take to work?', 'Lobaone 10mg Tablet MD is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobaone 10mg Tablet MD reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28483, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'Is Lobaone 10mg Tablet MD the same as clonazepam?', 'No, Lobaone 10mg Tablet MD and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28484, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'How long does Lobaone 10mg Tablet MD withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobaone 10mg Tablet MD. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28485, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'Can I stop taking Lobaone 10mg Tablet MD?', 'No, do not stop taking Lobaone 10mg Tablet MD even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobaone 10mg Tablet MD may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28486, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'What if more than the recommended dose of Lobaone 10mg Tablet MD is taken?', 'Taking more than the recommended doses of Lobaone 10mg Tablet MD can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28487, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'Can using Lobaone 10mg Tablet MD cause a decrease in the blood pressure?', 'Generally, the use of Lobaone 10mg Tablet MD does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobaone 10mg Tablet MD may cause a fall in the blood pressure'),
(28488, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'Can Lobaone 10mg Tablet MD make me tired?', 'Lobaone 10mg Tablet MD may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28489, 'Lobaone 10mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 10mg Tablet MD', 'Does Lobaone 10mg Tablet MD cause depression?', 'No, Lobaone 10mg Tablet MD dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28490, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. Is Lobaone 5mg Tablet MD habit forming?', 'Yes, Lobaone 5mg Tablet MD can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28491, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. Can Lobaone 5mg Tablet MD make me sleepy?', 'Yes, Lobaone 5mg Tablet MD can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28492, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. How long does Lobaone 5mg Tablet MD take to work?', 'Lobaone 5mg Tablet MD is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobaone 5mg Tablet MD reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28493, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. Is Lobaone 5mg Tablet MD the same as clonazepam?', 'No, Lobaone 5mg Tablet MD and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28494, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. How long does Lobaone 5mg Tablet MD withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobaone 5mg Tablet MD. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28495, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. Can I stop taking Lobaone 5mg Tablet MD?', 'No, do not stop taking Lobaone 5mg Tablet MD even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobaone 5mg Tablet MD may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28496, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. What if more than the recommended dose of Lobaone 5mg Tablet MD is taken?', 'Taking more than the recommended doses of Lobaone 5mg Tablet MD can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28497, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. Can using Lobaone 5mg Tablet MD cause a decrease in the blood pressure?', 'Generally, the use of Lobaone 5mg Tablet MD does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobaone 5mg Tablet MD may cause a fall in the blood pressure'),
(28498, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. Can Lobaone 5mg Tablet MD make me tired?', 'Lobaone 5mg Tablet MD may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28499, 'Lobaone 5mg Tablet MD', 'Inizia Healthcare Pvt Ltd', 'Lobaone 5mg Tablet MD', 'Q. Does Lobaone 5mg Tablet MD cause depression?', 'No, Lobaone 5mg Tablet MD dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28500, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'Is Lobasan 5mg Tablet habit forming?', 'Yes, Lobasan 5mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28501, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'Can Lobasan 5mg Tablet make me sleepy?', 'Yes, Lobasan 5mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28502, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'How long does Lobasan 5mg Tablet take to work?', 'Lobasan 5mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobasan 5mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28503, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'Is Lobasan 5mg Tablet the same as clonazepam?', 'No, Lobasan 5mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28504, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'How long does Lobasan 5mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobasan 5mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28505, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'Can I stop taking Lobasan 5mg Tablet?', 'No, do not stop taking Lobasan 5mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobasan 5mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28506, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'What if more than the recommended dose of Lobasan 5mg Tablet is taken?', 'Taking more than the recommended doses of Lobasan 5mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28507, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'Can using Lobasan 5mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobasan 5mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobasan 5mg Tablet may cause a fall in the blood pressure');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28508, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'Can Lobasan 5mg Tablet make me tired?', 'Lobasan 5mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28509, 'Lobasan 5mg Tablet', 'Sanity Pharma', 'Lobasan 5mg Tablet', 'Does Lobasan 5mg Tablet cause depression?', 'No, Lobasan 5mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28510, 'Lobaset 10 Tablet', 'Emcure Pharmaceuticals Ltd', 'Lobaset 10 Tablet', 'Can Lobaset 10 Tablet make you sleepy?', 'Yes, Lobaset 10 Tablet can cause sleepiness. It can make a person dizzy due to its sedative effect. It can also affect vision and therefore you should avoid driving and using heavy machinery until and unless you know how Lobaset 10 Tablet affects you.'),
(28511, 'Lobaset 10 Tablet', 'Emcure Pharmaceuticals Ltd', 'Lobaset 10 Tablet', 'Does Lobaset 10 Tablet help anxiety?', 'Though Lobaset 10 Tablet is not approved to treat anxiety disorders, it has been observed in some studies that it is effective in treating stress which occurs after a trauma.'),
(28512, 'Lobaset 10 Tablet', 'Emcure Pharmaceuticals Ltd', 'Lobaset 10 Tablet', 'Can I take Lobaset 10 Tablet if I have a liver problem?', 'If you have a liver problem then you need to be cautious while taking Lobaset 10 Tablet. This is because the medicine may increase the production of liver enzymes. Hence, regular laboratory examination of liver enzymes is required while taking this medicine as advised by your doctor.'),
(28513, 'Lobaset 10 Tablet', 'Emcure Pharmaceuticals Ltd', 'Lobaset 10 Tablet', 'Does Lobaset 10 Tablet have any effect on kidneys?', 'Lobaset 10 Tablet may cause side effects in patients with normal kidney function which include excessive day time urination (pollakiuria), burning sensation while urinating (dysuria), and loss of bladder control (urinary incontinence). Generally, a lower dose of this medicine is prescribed if a person has abnormally functioning kidneys or if a person is on dialysis.'),
(28514, 'Lobaset 10 Tablet', 'Emcure Pharmaceuticals Ltd', 'Lobaset 10 Tablet', 'How should Lobaset 10 Tablet be taken?', 'Take Lobaset 10 Tablet exactly as directed by your doctor. If a person experiences nausea while taking Lobaset 10 Tablet then it should be consumed with food or milk. However, for night cramps, it would be best to use the medicine at night time or 1 hour before doing specific tasks like physiotherapy or washing.'),
(28515, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. Is Lobate 100mg Tablet safe?', 'Lobate 100mg Tablet is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Lobate 100mg Tablet occur during the first few weeks of treatment and disappear with time.'),
(28516, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. Why is Lobate 100mg Tablet used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Lobate 100mg Tablet in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(28517, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. Does Lobate 100mg Tablet cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Lobate 100mg Tablet. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(28518, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. Is it safe to use Lobate 100mg Tablet in patients with diabetes?', 'Diabetic patients while using Lobate 100mg Tablet should regularly check the blood sugar levels. Lobate 100mg Tablet may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Lobate 100mg Tablet.'),
(28519, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. Does Lobate 100mg Tablet affect heart rate?', 'Lobate 100mg Tablet slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(28520, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. What can happen if I stop taking Lobate 100mg Tablet?', 'Do not stop taking Lobate 100mg Tablet without talking to your doctor. Stopping Lobate 100mg Tablet suddenly may cause serious heart problems such as angina (chest pain) or even a heart attack. If you need to stop taking Lobate 100mg Tablet, your doctor will reduce the dose slowly over 1 or 2 weeks.'),
(28521, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. Will I need to stop taking Lobate 100mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lobate 100mg Tablet for 24 hours before surgery. This is because Lobate 100mg Tablet can lower your blood pressure too much when its use is combined with some anesthetics. So, tell your doctor that you\'re taking Lobate 100mg Tablet if you\'re going to be put to sleep using a general anesthetic or are scheduled to have any kind of major operation.'),
(28522, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. What happens on taking more than the recommended dose of Lobate 100mg Tablet?', 'Taking more than the recommended dose of Lobate 100mg Tablet can lead to a drop in blood pressure and slowing of the heart rate, difficulty breathing, or a drop in blood sugar, which can cause sweating or confusion. If you take too many tablets, tell your doctor immediately or contact the hospital emergency department nearest to you.'),
(28523, 'Lobate 100mg Tablet', 'Abbott India Limited', 'Lobate 100mg Tablet', 'Q. How long does Lobate 100mg Tablet take to work?', 'If you are taking Lobate 100mg Tablet for high blood pressure, it may lower your BP within 1-3 hours of taking it. You may not feel any different, but this does not mean that the medicine is not working, and it is important to keep taking it. On the other hand, if you are taking it for angina, it will probably take a few days for the medicine to reduce the pain. You may still have chest pain during this time or it may get worse.'),
(28524, 'Lobate Cream', 'Abbott', 'Lobate Cream', 'Can Lobate Cream be used for a long time?', 'No, Lobate Cream should not be used for a long time. The doctor generally prescribes it for 2 consecutive weeks only. However, the treatment can be longer for chronic (long-term) inflammatory conditions. Consult your physician before using this medication.'),
(28525, 'Lobate Cream', 'Abbott', 'Lobate Cream', 'Does Lobate Cream cause severe skin reactions?', 'Severe skin reactions are quite rare with Lobate Cream. Lobate Cream is an anti-inflammatory drug which is used to treat skin diseases, skin reactions and eczemas. However, skin reactions can occur in a person who is hypersensitive to Lobate Cream. It is important to leave the affected area open after applying Lobate Cream as using occlusive dressings (air- and water-tight dressing) can lead to skin reactions. The medicine may not itself cause a reaction but the added excipients with the medications can lead to a reaction in some cases. Inform your doctor immediately in case you encounter any skin reactions.'),
(28526, 'Lobate Cream', 'Abbott', 'Lobate Cream', 'Can Lobate Cream be used on the face?', 'No, Lobate Cream should not be used on the face. In addition to this, Lobate Cream should also not be used on the axillae (armpits), groin, and if there is atrophy (wasting away of tissues) at the treatment site. In certain circumstances, it can be exceptionally considered to be used by doctors. It should be used only after consultation with your physician and if possible, the application on the face should be limited to a maximum of 5 days.'),
(28527, 'Lobate Cream', 'Abbott', 'Lobate Cream', 'Can Lobate Cream be applied to children?', 'Lobate Cream is not recommended for use in children less than 1 year of age. It is also not recommended for use in older children and adolescents as the side effects are more common in them. In the pediatric population, there is an increased risk of suppression of the immune system which may make the child prone to other diseases and atrophic changes, hence it is not recommended. Still, in some rare cases, the doctor may recommend this medicine, but the treatment is usually limited to 5 days and the therapy is reviewed weekly.'),
(28528, 'Lobate Cream', 'Abbott', 'Lobate Cream', 'Can we use Lobate Cream in infections?', 'Lobate Cream is not an antimicrobial or antifungal agent. It is a steroid medication. It should not be used in infections as being a corticosteroid, it suppresses the immune system and increases the risk of infections. Bacterial infections are prone to worsen if the infection is covered with a dressing after using Lobate Cream. In case the inflammatory lesions get infected or there is any spread of infection, consult your doctor immediately. The doctor will withdraw the use of Lobate Cream and provide appropriate antimicrobial therapy.'),
(28529, 'Lobate Cream', 'Abbott', 'Lobate Cream', 'Can I stop taking Lobate Cream when my symptoms are relieved?', 'No, do not stop taking Lobate Cream and finish the full course of treatment even if you feel better. Your symptoms may improve before your treatment is complete. Stopping Lobate Cream before your treatment is completed can bring back your symptoms.'),
(28530, 'Lobate Cream', 'Abbott', 'Lobate Cream', 'Does Lobate Cream cause dangerous skin reactions?', 'Local skin reactions are quite rare with Lobate Cream. Being an anti-inflammatory drug, it is used to treat skin diseases, skin reactions, and eczemas. Still, skin reactions can occur in a person who is hypersensitive to Lobate Cream. It is important to leave the affected area open after applying Lobate Cream as using occlusive dressings (air- and water-tight dressing) can lead to skin reactions. If not by the medicine itself, sometimes the reactions are also caused by the added excipients with the medications. Inform your doctor immediately in case you encounter any skin reactions.'),
(28531, 'Lobate GM Neo Cream', 'Abbott', 'Lobate GM Neo Cream', 'Can I stop using Lobate GM Neo Cream when my symptoms are relieved?', 'No, do not stop using Lobate GM Neo Cream without consulting your doctor. Use Lobate GM Neo Cream in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(28532, 'Lobate GM Neo Cream', 'Abbott', 'Lobate GM Neo Cream', 'What precautions should I take while using Lobate GM Neo Cream?', 'Lobate GM Neo Cream should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28533, 'Lobate GM Neo Cream', 'Abbott', 'Lobate GM Neo Cream', 'How to use Lobate GM Neo Cream?', 'Lobate GM Neo Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobate GM Neo Cream unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(28534, 'Lobate GM Neo Cream', 'Abbott', 'Lobate GM Neo Cream', 'What would happen if I use a higher than the recommended dose of Lobate GM Neo Cream for long periods?', 'Lobate GM Neo Cream should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28535, 'Lobate GM Neo Cream', 'Abbott', 'Lobate GM Neo Cream', 'What are the contraindications associated with the use of Lobate GM Neo Cream?', 'Use of Lobate GM Neo Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(28536, 'Lobate GM Neo Cream', 'Abbott', 'Lobate GM Neo Cream', 'What are the instructions for the storage of Lobate GM Neo Cream?', 'Lobate GM Neo Cream should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(28537, 'Lobate GN Skin Cream', 'Abbott', 'Lobate GN Skin Cream', 'How to use Lobate GN Skin Cream?', 'Lobate GN Skin Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of Lobate GN Skin Cream two or three times a day or as suggested, to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobate GN Skin Cream, unless it is used for treating infection of the hands. Avoid any contact with the eyes.'),
(28538, 'Lobate GN Skin Cream', 'Abbott', 'Lobate GN Skin Cream', 'What are the precautions that need to be taken while using Lobate GN Skin Cream?', 'Lobate GN Skin Cream should not be used on the face and contact with eyes should be avoided. Do not apply a bandage or a dressing to the area being treated, as this will increase absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28539, 'Lobate GN Skin Cream', 'Abbott', 'Lobate GN Skin Cream', 'What would happen if I use a higher than the recommended dose of Lobate GN Skin Cream for long periods?', 'Lobate GN Skin Cream should be used only for the dose and duration as advised by the doctor. Using it in higher doses and for longer periods can cause a change in the skin’s color, or thinning or weakening of the skin. Veins under the skin become visible. There could be an increased hair growth. The medicine may get absorbed into the blood circulation and can cause weight gain, high blood pressure and rounding of the face. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28540, 'Lobate GN Skin Cream', 'Abbott', 'Lobate GN Skin Cream', 'Can I stop using Lobate GN Skin Cream when my symptoms are relieved?', 'No, do not stop using Lobate GN Skin Cream and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(28541, 'Lobate GN Skin Cream', 'Abbott', 'Lobate GN Skin Cream', 'What are the contraindications associated with the use of Lobate GN Skin Cream?', 'Use of Lobate GN Skin Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any fungal infections (ringworm or athlete\'s foot) or any viral infections (herpes or chickenpox). It should also be avoided in treating conditions like acne or rosacea. Consult your doctor before using it for any condition.'),
(28542, 'Lobate GN Skin Cream', 'Abbott', 'Lobate GN Skin Cream', 'What are the instructions for the storage and disposal of Lobate GN Skin Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28543, 'Lobate M Cream', 'Abbott', 'Lobate M Cream', 'What precautions should be taken while using Lobate M Cream?', 'Lobate M Cream should not be used on the face and contact with eyes should be avoided. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the medicine and increase the risk of side-effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28544, 'Lobate M Cream', 'Abbott', 'Lobate M Cream', 'Can I stop taking Lobate M Cream when my symptoms are relieved?', 'No, do not stop using Lobate M Cream and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(28545, 'Lobate M Cream', 'Abbott', 'Lobate M Cream', 'How to use Lobate M Cream?', 'Lobate M Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of Lobate M Cream two or three times a day, as suggested to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobate M Cream, unless it is used for treating infection of the hands. Avoid any contact with the eyes.'),
(28546, 'Lobate M Cream', 'Abbott', 'Lobate M Cream', 'What would happen if I use a higher than the recommended dose of Lobate M Cream for long periods?', 'The dose and duration of using Lobate M Cream should be strictly according to the doctor’s advice. Using it in higher doses and for longer periods can cause a change in color at the site of application. Veins beneath the skin become visible because of the thinning and weakening of the skin. There could be an increased hair growth. The medicine may get absorbed into the blood circulation and can cause weight gain, high blood pressure and rounding of the face. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28547, 'Lobate M Cream', 'Abbott', 'Lobate M Cream', 'What are the instructions for the storage and disposal of Lobate M Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28548, 'Lobate M Cream', 'Abbott', 'Lobate M Cream', 'What are the contraindications associated with the use of Lobate M Cream?', 'Use of Lobate M Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any fungal infections (ringworm or athlete\'s foot) or viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(28549, 'Lobate-GM Cream', 'Abbott', 'Lobate-GM Cream', 'Can I stop using Lobate-GM Cream when my symptoms are relieved?', 'No, do not stop using Lobate-GM Cream without consulting your doctor. Use Lobate-GM Cream in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(28550, 'Lobate-GM Cream', 'Abbott', 'Lobate-GM Cream', 'What precautions should I take while using Lobate-GM Cream?', 'Lobate-GM Cream should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28551, 'Lobate-GM Cream', 'Abbott', 'Lobate-GM Cream', 'How to use Lobate-GM Cream?', 'Lobate-GM Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobate-GM Cream unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(28552, 'Lobate-GM Cream', 'Abbott', 'Lobate-GM Cream', 'What would happen if I use a higher than the recommended dose of Lobate-GM Cream for long periods?', 'Lobate-GM Cream should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28553, 'Lobate-GM Cream', 'Abbott', 'Lobate-GM Cream', 'What are the contraindications associated with the use of Lobate-GM Cream?', 'Use of Lobate-GM Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(28554, 'Lobate-GM Cream', 'Abbott', 'Lobate-GM Cream', 'What are the instructions for the storage of Lobate-GM Cream?', 'Lobate-GM Cream should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(28555, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'Q. Can I stop using Lobate-GM Neo Cream when my symptoms are relieved?', 'No, do not stop using Lobate-GM Neo Cream without consulting your doctor. Use Lobate-GM Neo Cream in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(28556, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'Q. What precautions should I take while using Lobate-GM Neo Cream?', 'Lobate-GM Neo Cream should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28557, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'Q. How to use Lobate-GM Neo Cream?', 'Lobate-GM Neo Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobate-GM Neo Cream unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(28558, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'Q. What would happen if I use a higher than the recommended dose of Lobate-GM Neo Cream for long periods?', 'Lobate-GM Neo Cream should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28559, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'Q. What are the contraindications associated with the use of Lobate-GM Neo Cream?', 'Use of Lobate-GM Neo Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(28560, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'Q. What are the instructions for the storage of Lobate-GM Neo Cream?', 'Lobate-GM Neo Cream should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(28561, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'Can I stop using Lobate-GM Neo Cream when my symptoms are relieved?', 'No, do not stop using Lobate-GM Neo Cream without consulting your doctor. Use Lobate-GM Neo Cream in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(28562, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'What precautions should I take while using Lobate-GM Neo Cream?', 'Lobate-GM Neo Cream should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28563, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'How to use Lobate-GM Neo Cream?', 'Lobate-GM Neo Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobate-GM Neo Cream unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(28564, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'What would happen if I use a higher than the recommended dose of Lobate-GM Neo Cream for long periods?', 'Lobate-GM Neo Cream should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28565, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'What are the contraindications associated with the use of Lobate-GM Neo Cream?', 'Use of Lobate-GM Neo Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(28566, 'Lobate-GM Neo Cream', 'Abbott', 'Lobate-GM Neo Cream', 'What are the instructions for the storage of Lobate-GM Neo Cream?', 'Lobate-GM Neo Cream should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(28567, 'Lobate-GM Neo Lotion', 'Abbott', 'Lobate-GM Neo Lotion', 'Can I stop using Lobate-GM Neo Lotion when my symptoms are relieved?', 'No, do not stop using Lobate-GM Neo Lotion without consulting your doctor. Use Lobate-GM Neo Lotion in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(28568, 'Lobate-GM Neo Lotion', 'Abbott', 'Lobate-GM Neo Lotion', 'What precautions should I take while using Lobate-GM Neo Lotion?', 'Lobate-GM Neo Lotion should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28569, 'Lobate-GM Neo Lotion', 'Abbott', 'Lobate-GM Neo Lotion', 'How to use Lobate-GM Neo Lotion?', 'Lobate-GM Neo Lotion should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobate-GM Neo Lotion unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(28570, 'Lobate-GM Neo Lotion', 'Abbott', 'Lobate-GM Neo Lotion', 'What would happen if I use a higher than the recommended dose of Lobate-GM Neo Lotion for long periods?', 'Lobate-GM Neo Lotion should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28571, 'Lobate-GM Neo Lotion', 'Abbott', 'Lobate-GM Neo Lotion', 'What are the contraindications associated with the use of Lobate-GM Neo Lotion?', 'Use of Lobate-GM Neo Lotion is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(28572, 'Lobate-GM Neo Lotion', 'Abbott', 'Lobate-GM Neo Lotion', 'What are the instructions for the storage of Lobate-GM Neo Lotion?', 'Lobate-GM Neo Lotion should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(28573, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'Is Lobatric 10mg Tablet habit forming?', 'Yes, Lobatric 10mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28574, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'Can Lobatric 10mg Tablet make me sleepy?', 'Yes, Lobatric 10mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28575, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'How long does Lobatric 10mg Tablet take to work?', 'Lobatric 10mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobatric 10mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28576, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'Is Lobatric 10mg Tablet the same as clonazepam?', 'No, Lobatric 10mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28577, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'How long does Lobatric 10mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobatric 10mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28578, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'Can I stop taking Lobatric 10mg Tablet?', 'No, do not stop taking Lobatric 10mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobatric 10mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28579, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'What if more than the recommended dose of Lobatric 10mg Tablet is taken?', 'Taking more than the recommended doses of Lobatric 10mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28580, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'Can using Lobatric 10mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobatric 10mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobatric 10mg Tablet may cause a fall in the blood pressure'),
(28581, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'Can Lobatric 10mg Tablet make me tired?', 'Lobatric 10mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28582, 'Lobatric 10mg Tablet', 'Cubit Healthcare', 'Lobatric 10mg Tablet', 'Does Lobatric 10mg Tablet cause depression?', 'No, Lobatric 10mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28583, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'Is Lobatric 5mg Tablet habit forming?', 'Yes, Lobatric 5mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28584, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'Can Lobatric 5mg Tablet make me sleepy?', 'Yes, Lobatric 5mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28585, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'How long does Lobatric 5mg Tablet take to work?', 'Lobatric 5mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobatric 5mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28586, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'Is Lobatric 5mg Tablet the same as clonazepam?', 'No, Lobatric 5mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28587, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'How long does Lobatric 5mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobatric 5mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28588, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'Can I stop taking Lobatric 5mg Tablet?', 'No, do not stop taking Lobatric 5mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobatric 5mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28589, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'What if more than the recommended dose of Lobatric 5mg Tablet is taken?', 'Taking more than the recommended doses of Lobatric 5mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28590, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'Can using Lobatric 5mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobatric 5mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobatric 5mg Tablet may cause a fall in the blood pressure'),
(28591, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'Can Lobatric 5mg Tablet make me tired?', 'Lobatric 5mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28592, 'Lobatric 5mg Tablet', 'Cubit Healthcare', 'Lobatric 5mg Tablet', 'Does Lobatric 5mg Tablet cause depression?', 'No, Lobatric 5mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28593, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'Is Lobaz 10mg Tablet habit forming?', 'Yes, Lobaz 10mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28594, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'Can Lobaz 10mg Tablet make me sleepy?', 'Yes, Lobaz 10mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28595, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'How long does Lobaz 10mg Tablet take to work?', 'Lobaz 10mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobaz 10mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28596, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'Is Lobaz 10mg Tablet the same as clonazepam?', 'No, Lobaz 10mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28597, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'How long does Lobaz 10mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobaz 10mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28598, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'Can I stop taking Lobaz 10mg Tablet?', 'No, do not stop taking Lobaz 10mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobaz 10mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28599, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'What if more than the recommended dose of Lobaz 10mg Tablet is taken?', 'Taking more than the recommended doses of Lobaz 10mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28600, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'Can using Lobaz 10mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobaz 10mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobaz 10mg Tablet may cause a fall in the blood pressure'),
(28601, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'Can Lobaz 10mg Tablet make me tired?', 'Lobaz 10mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28602, 'Lobaz 10mg Tablet', 'D D Pharmaceuticals', 'Lobaz 10mg Tablet', 'Does Lobaz 10mg Tablet cause depression?', 'No, Lobaz 10mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28603, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'Is Lobaz 5mg Tablet habit forming?', 'Yes, Lobaz 5mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28604, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'Can Lobaz 5mg Tablet make me sleepy?', 'Yes, Lobaz 5mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28605, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'How long does Lobaz 5mg Tablet take to work?', 'Lobaz 5mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobaz 5mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28606, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'Is Lobaz 5mg Tablet the same as clonazepam?', 'No, Lobaz 5mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28607, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'How long does Lobaz 5mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobaz 5mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28608, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'Can I stop taking Lobaz 5mg Tablet?', 'No, do not stop taking Lobaz 5mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobaz 5mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28609, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'What if more than the recommended dose of Lobaz 5mg Tablet is taken?', 'Taking more than the recommended doses of Lobaz 5mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28610, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'Can using Lobaz 5mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobaz 5mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobaz 5mg Tablet may cause a fall in the blood pressure'),
(28611, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'Can Lobaz 5mg Tablet make me tired?', 'Lobaz 5mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28612, 'Lobaz 5mg Tablet', 'D D Pharmaceuticals', 'Lobaz 5mg Tablet', 'Does Lobaz 5mg Tablet cause depression?', 'No, Lobaz 5mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28613, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'Is Lobazam 10mg Tablet habit forming?', 'Yes, Lobazam 10mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28614, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'Can Lobazam 10mg Tablet make me sleepy?', 'Yes, Lobazam 10mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28615, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'How long does Lobazam 10mg Tablet take to work?', 'Lobazam 10mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobazam 10mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28616, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'Is Lobazam 10mg Tablet the same as clonazepam?', 'No, Lobazam 10mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28617, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'How long does Lobazam 10mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobazam 10mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28618, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'Can I stop taking Lobazam 10mg Tablet?', 'No, do not stop taking Lobazam 10mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobazam 10mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28619, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'What if more than the recommended dose of Lobazam 10mg Tablet is taken?', 'Taking more than the recommended doses of Lobazam 10mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28620, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'Can using Lobazam 10mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobazam 10mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobazam 10mg Tablet may cause a fall in the blood pressure'),
(28621, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'Can Lobazam 10mg Tablet make me tired?', 'Lobazam 10mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28622, 'Lobazam 10mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet', 'Does Lobazam 10mg Tablet cause depression?', 'No, Lobazam 10mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28623, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'Is Lobazam 10mg Tablet MD habit forming?', 'Yes, Lobazam 10mg Tablet MD can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28624, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'Can Lobazam 10mg Tablet MD make me sleepy?', 'Yes, Lobazam 10mg Tablet MD can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28625, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'How long does Lobazam 10mg Tablet MD take to work?', 'Lobazam 10mg Tablet MD is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobazam 10mg Tablet MD reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28626, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'Is Lobazam 10mg Tablet MD the same as clonazepam?', 'No, Lobazam 10mg Tablet MD and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28627, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'How long does Lobazam 10mg Tablet MD withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobazam 10mg Tablet MD. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28628, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'Can I stop taking Lobazam 10mg Tablet MD?', 'No, do not stop taking Lobazam 10mg Tablet MD even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobazam 10mg Tablet MD may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28629, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'What if more than the recommended dose of Lobazam 10mg Tablet MD is taken?', 'Taking more than the recommended doses of Lobazam 10mg Tablet MD can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28630, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'Can using Lobazam 10mg Tablet MD cause a decrease in the blood pressure?', 'Generally, the use of Lobazam 10mg Tablet MD does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobazam 10mg Tablet MD may cause a fall in the blood pressure'),
(28631, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'Can Lobazam 10mg Tablet MD make me tired?', 'Lobazam 10mg Tablet MD may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28632, 'Lobazam 10mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 10mg Tablet MD', 'Does Lobazam 10mg Tablet MD cause depression?', 'No, Lobazam 10mg Tablet MD dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28633, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'Is Lobazam 20mg Tablet habit forming?', 'Yes, Lobazam 20mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28634, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'Can Lobazam 20mg Tablet make me sleepy?', 'Yes, Lobazam 20mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28635, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'How long does Lobazam 20mg Tablet take to work?', 'Lobazam 20mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobazam 20mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28636, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'Is Lobazam 20mg Tablet the same as clonazepam?', 'No, Lobazam 20mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28637, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'How long does Lobazam 20mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobazam 20mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28638, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'Can I stop taking Lobazam 20mg Tablet?', 'No, do not stop taking Lobazam 20mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobazam 20mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28639, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'What if more than the recommended dose of Lobazam 20mg Tablet is taken?', 'Taking more than the recommended doses of Lobazam 20mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28640, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'Can using Lobazam 20mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobazam 20mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobazam 20mg Tablet may cause a fall in the blood pressure'),
(28641, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'Can Lobazam 20mg Tablet make me tired?', 'Lobazam 20mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28642, 'Lobazam 20mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 20mg Tablet', 'Does Lobazam 20mg Tablet cause depression?', 'No, Lobazam 20mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28643, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'Is Lobazam 5mg Tablet habit forming?', 'Yes, Lobazam 5mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28644, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'Can Lobazam 5mg Tablet make me sleepy?', 'Yes, Lobazam 5mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28645, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'How long does Lobazam 5mg Tablet take to work?', 'Lobazam 5mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobazam 5mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28646, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'Is Lobazam 5mg Tablet the same as clonazepam?', 'No, Lobazam 5mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28647, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'How long does Lobazam 5mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobazam 5mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28648, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'Can I stop taking Lobazam 5mg Tablet?', 'No, do not stop taking Lobazam 5mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobazam 5mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28649, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'What if more than the recommended dose of Lobazam 5mg Tablet is taken?', 'Taking more than the recommended doses of Lobazam 5mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28650, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'Can using Lobazam 5mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobazam 5mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobazam 5mg Tablet may cause a fall in the blood pressure'),
(28651, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'Can Lobazam 5mg Tablet make me tired?', 'Lobazam 5mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28652, 'Lobazam 5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam 5mg Tablet', 'Does Lobazam 5mg Tablet cause depression?', 'No, Lobazam 5mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28653, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'Is Lobazam MD 5 Tablet habit forming?', 'Yes, Lobazam MD 5 Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28654, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'Can Lobazam MD 5 Tablet make me sleepy?', 'Yes, Lobazam MD 5 Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28655, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'How long does Lobazam MD 5 Tablet take to work?', 'Lobazam MD 5 Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobazam MD 5 Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28656, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'Is Lobazam MD 5 Tablet the same as clonazepam?', 'No, Lobazam MD 5 Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28657, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'How long does Lobazam MD 5 Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobazam MD 5 Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28658, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'Can I stop taking Lobazam MD 5 Tablet?', 'No, do not stop taking Lobazam MD 5 Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobazam MD 5 Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28659, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'What if more than the recommended dose of Lobazam MD 5 Tablet is taken?', 'Taking more than the recommended doses of Lobazam MD 5 Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28660, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'Can using Lobazam MD 5 Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobazam MD 5 Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobazam MD 5 Tablet may cause a fall in the blood pressure'),
(28661, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'Can Lobazam MD 5 Tablet make me tired?', 'Lobazam MD 5 Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28662, 'Lobazam MD 5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lobazam MD 5 Tablet', 'Does Lobazam MD 5 Tablet cause depression?', 'No, Lobazam MD 5 Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28663, 'Lobect GM Cream', 'Fawn Incorporation', 'Lobect GM Cream', 'Can I stop using Lobect GM Cream when my symptoms are relieved?', 'No, do not stop using Lobect GM Cream without consulting your doctor. Use Lobect GM Cream in the dose and duration prescribed by the doctor. Usually, your condition will improve within a few days. If the condition worsens or does not improve within seven days, treatment and diagnosis should be re-evaluated. However, if the treatment is recommended to be continued for a longer duration, it should be done under medical supervision.'),
(28664, 'Lobect GM Cream', 'Fawn Incorporation', 'Lobect GM Cream', 'What precautions should I take while using Lobect GM Cream?', 'Lobect GM Cream should be used carefully only over the affected area, avoiding the medicine from getting into the eyes. Do not apply a bandage or dressing on the area being treated, as this will increase the absorption of the medicine and increase the risk of side effects. This medicine should only be used for the condition it is prescribed for. Do not use it for any other condition without consulting your doctor. Do not give it to other people even if their condition appears to be the same.'),
(28665, 'Lobect GM Cream', 'Fawn Incorporation', 'Lobect GM Cream', 'How to use Lobect GM Cream?', 'Lobect GM Cream should be used as advised by the doctor or as per the instructions on the label of the medicine. Apply a thin layer of it to cover the affected areas. The dose would depend on the condition for which it is prescribed. Wash your hands after using Lobect GM Cream unless it is used for treating infection of the hands. Avoid contact with the eyes.'),
(28666, 'Lobect GM Cream', 'Fawn Incorporation', 'Lobect GM Cream', 'What would happen if I use a higher than the recommended dose of Lobect GM Cream for long periods?', 'Lobect GM Cream should be used only for the dose and duration as advised by the doctor. This medicine contains a steroid, clobetasol which when used in higher doses and for longer periods can get absorbed in the blood and cause adrenal suppression and Cushing\'s syndrome. It can cause weight gain, high blood pressure and rounding of the face. Its application can cause a change in color of skin at the site of application. Veins beneath the skin become visible due to the thinning and weakening of the skin. There could be an increased hair growth. If you experience an increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(28667, 'Lobect GM Cream', 'Fawn Incorporation', 'Lobect GM Cream', 'What are the contraindications associated with the use of Lobect GM Cream?', 'Use of Lobect GM Cream is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. Its use should be avoided in case of any primary infected skin lesions caused by infection with fungi, bacteria or yeast, viral infections (herpes or chickenpox). Its use should also be avoided in treating acne or rosacea. Consult your doctor before using it for any condition.'),
(28668, 'Lobect GM Cream', 'Fawn Incorporation', 'Lobect GM Cream', 'What are the instructions for the storage of Lobect GM Cream?', 'Lobect GM Cream should be stored at or below room temperature, away from direct heat or sunlight. Do not freeze. Also, keep it away from the reach of pets and children.'),
(28669, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'Can I feel dizzy after taking Lobeep 25mg Tablet?', 'Yes, the use of Lobeep 25mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28670, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'Is Lobeep 25mg Tablet a good blood pressure medicine?', 'Lobeep 25mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(28671, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'What are some of the lifestyle changes I should make while using Lobeep 25mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lobeep 25mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lobeep 25mg Tablet and to keep yourself healthy.'),
(28672, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'For how long do I need to take Lobeep 25mg Tablet?', 'You may have to take Lobeep 25mg Tablet for a long term, even life long. Lobeep 25mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Lobeep 25mg Tablet, but do not stop taking it without consulting the doctor.'),
(28673, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'Does Lobeep 25mg Tablet cause weight gain?', 'No, Lobeep 25mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(28674, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'What are the long-term side effects of Lobeep 25mg Tablet?', 'Long-term use of Lobeep 25mg Tablet is generally considered to be safe. However, in some cases, long-term use of Lobeep 25mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(28675, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'Is Lobeep 25mg Tablet bad for the kidneys?', 'Yes, Lobeep 25mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Lobeep 25mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(28676, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'How long does Lobeep 25mg Tablet take to work?', 'The blood pressure-lowering effect of Lobeep 25mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(28677, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'When and how should Lobeep 25mg Tablet be taken?', 'Take Lobeep 25mg Tablet exactly as per your doctor’s advice. Lobeep 25mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(28678, 'Lobeep 25mg Tablet', 'Sea Life Care', 'Lobeep 25mg Tablet', 'What is the most important information that I need to know about Lobeep 25mg Tablet?', 'Taking Lobeep 25mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Lobeep 25mg Tablet, stop taking Lobeep 25mg Tablet and call your doctor immediately.'),
(28679, 'Lobeep H 50mg/12.5mg Tablet', 'Sea Life Care', 'Lobeep H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28680, 'Lobeep H 50mg/12.5mg Tablet', 'Sea Life Care', 'Lobeep H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Lobeep H 50mg/12.5mg Tablet?', 'Yes, the use of Lobeep H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28681, 'Lobeep H 50mg/12.5mg Tablet', 'Sea Life Care', 'Lobeep H 50mg/12.5mg Tablet', 'Can I use Lobeep H 50mg/12.5mg Tablet in pregnancy?', 'No, Lobeep H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Lobeep H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(28682, 'Lobeep H 50mg/12.5mg Tablet', 'Sea Life Care', 'Lobeep H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Lobeep H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lobeep H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(28683, 'Lobeep H 50mg/12.5mg Tablet', 'Sea Life Care', 'Lobeep H 50mg/12.5mg Tablet', 'Can I stop taking Lobeep H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Lobeep H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Lobeep H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28684, 'Lobeeto 500 Tablet', 'Santo Formulations', 'Lobeeto 500 Tablet', 'Is Lobeeto 500 Tablet safe?', 'Lobeeto 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(28685, 'Lobeeto 500 Tablet', 'Santo Formulations', 'Lobeeto 500 Tablet', 'What if I forget to take a dose of Lobeeto 500 Tablet?', 'If you forget a dose of Lobeeto 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(28686, 'Lobeeto 500 Tablet', 'Santo Formulations', 'Lobeeto 500 Tablet', 'Can the use of Lobeeto 500 Tablet cause diarrhea?', 'Yes, the use of Lobeeto 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(28687, 'Lobeeto 500 Tablet', 'Santo Formulations', 'Lobeeto 500 Tablet', 'Can I stop taking Lobeeto 500 Tablet when I feel better?', 'No, do not stop taking Lobeeto 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lobeeto 500 Tablet too early, the symptoms may return or worsen. Continue taking Lobeeto 500 Tablet in the dose and duration advised by the doctor.'),
(28688, 'Lobeeto 500 Tablet', 'Santo Formulations', 'Lobeeto 500 Tablet', 'Can the use of Lobeeto 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Lobeeto 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lobeeto 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(28689, 'Lobeeto-OZ Tablet', 'Santo Formulations', 'Lobeeto-OZ Tablet', 'What if I don\'t get better after using Lobeeto-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(28690, 'Lobeeto-OZ Tablet', 'Santo Formulations', 'Lobeeto-OZ Tablet', 'Can I stop taking Lobeeto-OZ Tablet when I feel better?', 'No, do not stop taking Lobeeto-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(28691, 'Lobeeto-OZ Tablet', 'Santo Formulations', 'Lobeeto-OZ Tablet', 'What if I miss my dose?', 'Take Lobeeto-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(28692, 'Lobesol Cream', 'Cure Quick Pharmaceuticals', 'Lobesol Cream', 'Can Lobesol Cream be used for a long time?', 'No, Lobesol Cream should not be used for a long time. The doctor generally prescribes it for 2 consecutive weeks only. However, the treatment can be longer for chronic (long-term) inflammatory conditions. Consult your physician before using this medication.'),
(28693, 'Lobesol Cream', 'Cure Quick Pharmaceuticals', 'Lobesol Cream', 'Does Lobesol Cream cause severe skin reactions?', 'Severe skin reactions are quite rare with Lobesol Cream. Lobesol Cream is an anti-inflammatory drug which is used to treat skin diseases, skin reactions and eczemas. However, skin reactions can occur in a person who is hypersensitive to Lobesol Cream. It is important to leave the affected area open after applying Lobesol Cream as using occlusive dressings (air- and water-tight dressing) can lead to skin reactions. The medicine may not itself cause a reaction but the added excipients with the medications can lead to a reaction in some cases. Inform your doctor immediately in case you encounter any skin reactions.'),
(28694, 'Lobesol Cream', 'Cure Quick Pharmaceuticals', 'Lobesol Cream', 'Can Lobesol Cream be used on the face?', 'No, Lobesol Cream should not be used on the face. In addition to this, Lobesol Cream should also not be used on the axillae (armpits), groin, and if there is atrophy (wasting away of tissues) at the treatment site. In certain circumstances, it can be exceptionally considered to be used by doctors. It should be used only after consultation with your physician and if possible, the application on the face should be limited to a maximum of 5 days.'),
(28695, 'Lobesol Cream', 'Cure Quick Pharmaceuticals', 'Lobesol Cream', 'Can Lobesol Cream be applied to children?', 'Lobesol Cream is not recommended for use in children less than 1 year of age. It is also not recommended for use in older children and adolescents as the side effects are more common in them. In the pediatric population, there is an increased risk of suppression of the immune system which may make the child prone to other diseases and atrophic changes, hence it is not recommended. Still, in some rare cases, the doctor may recommend this medicine, but the treatment is usually limited to 5 days and the therapy is reviewed weekly.'),
(28696, 'Lobesol Cream', 'Cure Quick Pharmaceuticals', 'Lobesol Cream', 'Can we use Lobesol Cream in infections?', 'Lobesol Cream is not an antimicrobial or antifungal agent. It is a steroid medication. It should not be used in infections as being a corticosteroid, it suppresses the immune system and increases the risk of infections. Bacterial infections are prone to worsen if the infection is covered with a dressing after using Lobesol Cream. In case the inflammatory lesions get infected or there is any spread of infection, consult your doctor immediately. The doctor will withdraw the use of Lobesol Cream and provide appropriate antimicrobial therapy.'),
(28697, 'Lobesol Cream', 'Cure Quick Pharmaceuticals', 'Lobesol Cream', 'Can I stop taking Lobesol Cream when my symptoms are relieved?', 'No, do not stop taking Lobesol Cream and finish the full course of treatment even if you feel better. Your symptoms may improve before your treatment is complete. Stopping Lobesol Cream before your treatment is completed can bring back your symptoms.'),
(28698, 'Lobesol Cream', 'Cure Quick Pharmaceuticals', 'Lobesol Cream', 'Does Lobesol Cream cause dangerous skin reactions?', 'Local skin reactions are quite rare with Lobesol Cream. Being an anti-inflammatory drug, it is used to treat skin diseases, skin reactions, and eczemas. Still, skin reactions can occur in a person who is hypersensitive to Lobesol Cream. It is important to leave the affected area open after applying Lobesol Cream as using occlusive dressings (air- and water-tight dressing) can lead to skin reactions. If not by the medicine itself, sometimes the reactions are also caused by the added excipients with the medications. Inform your doctor immediately in case you encounter any skin reactions.'),
(28699, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. Is Lobet 100mg Tablet safe?', 'Lobet 100mg Tablet is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Lobet 100mg Tablet occur during the first few weeks of treatment and disappear with time.'),
(28700, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. Why is Lobet 100mg Tablet used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Lobet 100mg Tablet in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(28701, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. Does Lobet 100mg Tablet cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Lobet 100mg Tablet. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(28702, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. Is it safe to use Lobet 100mg Tablet in patients with diabetes?', 'Diabetic patients while using Lobet 100mg Tablet should regularly check the blood sugar levels. Lobet 100mg Tablet may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Lobet 100mg Tablet.'),
(28703, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. Does Lobet 100mg Tablet affect heart rate?', 'Lobet 100mg Tablet slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(28704, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. What can happen if I stop taking Lobet 100mg Tablet?', 'Do not stop taking Lobet 100mg Tablet without talking to your doctor. Stopping Lobet 100mg Tablet suddenly may cause serious heart problems such as angina (chest pain) or even a heart attack. If you need to stop taking Lobet 100mg Tablet, your doctor will reduce the dose slowly over 1 or 2 weeks.'),
(28705, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. Will I need to stop taking Lobet 100mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lobet 100mg Tablet for 24 hours before surgery. This is because Lobet 100mg Tablet can lower your blood pressure too much when its use is combined with some anesthetics. So, tell your doctor that you\'re taking Lobet 100mg Tablet if you\'re going to be put to sleep using a general anesthetic or are scheduled to have any kind of major operation.'),
(28706, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. What happens on taking more than the recommended dose of Lobet 100mg Tablet?', 'Taking more than the recommended dose of Lobet 100mg Tablet can lead to a drop in blood pressure and slowing of the heart rate, difficulty breathing, or a drop in blood sugar, which can cause sweating or confusion. If you take too many tablets, tell your doctor immediately or contact the hospital emergency department nearest to you.'),
(28707, 'Lobet 100mg Tablet', 'Samarth Life Sciences Pvt Ltd', 'Lobet 100mg Tablet', 'Q. How long does Lobet 100mg Tablet take to work?', 'If you are taking Lobet 100mg Tablet for high blood pressure, it may lower your BP within 1-3 hours of taking it. You may not feel any different, but this does not mean that the medicine is not working, and it is important to keep taking it. On the other hand, if you are taking it for angina, it will probably take a few days for the medicine to reduce the pain. You may still have chest pain during this time or it may get worse.'),
(28708, 'Lobet 20mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Lobet 20mg Injection', 'Q. Is Lobet 20mg Injection safe?', 'Lobet 20mg Injection is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Lobet 20mg Injection occur during the first few weeks of treatment and disappear with time.'),
(28709, 'Lobet 20mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Lobet 20mg Injection', 'Q. Why is Lobet 20mg Injection used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Lobet 20mg Injection in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(28710, 'Lobet 20mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Lobet 20mg Injection', 'Q. Does Lobet 20mg Injection cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Lobet 20mg Injection. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(28711, 'Lobet 20mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Lobet 20mg Injection', 'Q. Is it safe to use Lobet 20mg Injection in patients with diabetes?', 'Diabetic patients while using Lobet 20mg Injection should regularly check the blood sugar levels. Lobet 20mg Injection may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Lobet 20mg Injection.'),
(28712, 'Lobet 20mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Lobet 20mg Injection', 'Q. Does Lobet 20mg Injection affect heart rate?', 'Lobet 20mg Injection slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(28713, 'Lobetajet Injection', 'Suncure Lifescience Pvt Ltd', 'Lobetajet Injection', 'Is Lobetajet Injection safe?', 'Lobetajet Injection is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Lobetajet Injection occur during the first few weeks of treatment and disappear with time.'),
(28714, 'Lobetajet Injection', 'Suncure Lifescience Pvt Ltd', 'Lobetajet Injection', 'Why is Lobetajet Injection used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Lobetajet Injection in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(28715, 'Lobetajet Injection', 'Suncure Lifescience Pvt Ltd', 'Lobetajet Injection', 'Does Lobetajet Injection cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Lobetajet Injection. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(28716, 'Lobetajet Injection', 'Suncure Lifescience Pvt Ltd', 'Lobetajet Injection', 'Is it safe to use Lobetajet Injection in patients with diabetes?', 'Diabetic patients while using Lobetajet Injection should regularly check the blood sugar levels. Lobetajet Injection may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Lobetajet Injection.'),
(28717, 'Lobetajet Injection', 'Suncure Lifescience Pvt Ltd', 'Lobetajet Injection', 'Does Lobetajet Injection affect heart rate?', 'Lobetajet Injection slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(28718, 'Lobg M 50mg/1000mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/1000mg Tablet', 'What is Lobg M 50mg/1000mg Tablet?', 'Lobg M 50mg/1000mg Tablet is a combination of two medicines: Sitagliptin and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus. It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Metformin lowers glucose production in the liver and improves insulin sensitivity. Sitagliptin inhibits the enzyme DPP4 and increases insulin release from the pancreas. This combination is not indicated for the patients below 18 years of age.'),
(28719, 'Lobg M 50mg/1000mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/1000mg Tablet', 'What are the possible side effects of Lobg M 50mg/1000mg Tablet?', 'The use of Lobg M 50mg/1000mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache, and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to Vitamin B12 deficiency.'),
(28720, 'Lobg M 50mg/1000mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/1000mg Tablet', 'Are there any specific conditions in which Lobg M 50mg/1000mg Tablet should not be taken?', 'The use of Lobg M 50mg/1000mg Tablet should be avoided in patients with known allergies to any of the components or excipients of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis, or diabetic ketoacidosis.'),
(28721, 'Lobg M 50mg/1000mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/1000mg Tablet', 'Is it safe to take alcohol while I am taking Lobg M 50mg/1000mg Tablet?', 'No, it is not safe to consume alcohol along with Lobg M 50mg/1000mg Tablet, as it can increase the chances of lactic acidosis.'),
(28722, 'Lobg M 50mg/1000mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/1000mg Tablet', 'Can the use of Lobg M 50mg/1000mg Tablet lead to lactic acidosis?', 'Yes, the use of Lobg M 50mg/1000mg Tablet can lead to lactic acidosis. It is a medical emergency caused by the increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin. Therefore, it is avoided in patients with underlying kidney disease, old age patients, or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain, or slow heart rate. If you have these symptoms, stop taking Sitagliptin + Metformin and immediately consult your doctor.'),
(28723, 'Lobg M 50mg/1000mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/1000mg Tablet', 'Can the use of Lobg M 50mg/1000mg Tablet lead to Vitamin B12 deficiency?', 'Yes, using Lobg M 50mg/1000mg Tablet can cause Vitamin B12 deficiency in the long term. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems, as a result of which the patient can feel a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status, and difficulty maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(28724, 'Lobg M 50mg/1000mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/1000mg Tablet', 'What are the instructions for storage and disposal of Lobg M 50mg/1000mg Tablet?', 'Keep this medicine tightly closed in the container or pack it came in. Store it according to the instructions on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, or other people.'),
(28725, 'Lobg M 50mg/500mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/500mg Tablet', 'What is Lobg M 50mg/500mg Tablet?', 'Lobg M 50mg/500mg Tablet is a combination of two medicines: Sitagliptin and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus. It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Metformin lowers glucose production in the liver and improves insulin sensitivity. Sitagliptin inhibits the enzyme DPP4 and increases insulin release from the pancreas. This combination is not indicated for the patients below 18 years of age.'),
(28726, 'Lobg M 50mg/500mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/500mg Tablet', 'What are the possible side effects of Lobg M 50mg/500mg Tablet?', 'The use of Lobg M 50mg/500mg Tablet is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, headache, and upper respiratory tract infection. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use, it can also lead to Vitamin B12 deficiency.'),
(28727, 'Lobg M 50mg/500mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/500mg Tablet', 'Are there any specific conditions in which Lobg M 50mg/500mg Tablet should not be taken?', 'The use of Lobg M 50mg/500mg Tablet should be avoided in patients with known allergies to any of the components or excipients of this medicine. The use of this medicine should be avoided in patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis, or diabetic ketoacidosis.'),
(28728, 'Lobg M 50mg/500mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/500mg Tablet', 'Is it safe to take alcohol while I am taking Lobg M 50mg/500mg Tablet?', 'No, it is not safe to consume alcohol along with Lobg M 50mg/500mg Tablet, as it can increase the chances of lactic acidosis.'),
(28729, 'Lobg M 50mg/500mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/500mg Tablet', 'Can the use of Lobg M 50mg/500mg Tablet lead to lactic acidosis?', 'Yes, the use of Lobg M 50mg/500mg Tablet can lead to lactic acidosis. It is a medical emergency caused by the increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin. Therefore, it is avoided in patients with underlying kidney disease, old age patients, or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain, or slow heart rate. If you have these symptoms, stop taking Sitagliptin + Metformin and immediately consult your doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28730, 'Lobg M 50mg/500mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/500mg Tablet', 'Can the use of Lobg M 50mg/500mg Tablet lead to Vitamin B12 deficiency?', 'Yes, using Lobg M 50mg/500mg Tablet can cause Vitamin B12 deficiency in the long term. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems, as a result of which the patient can feel a tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status, and difficulty maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of vitamin B12 from outside sources at least once every year.'),
(28731, 'Lobg M 50mg/500mg Tablet', 'Glenmark Pharmaceuticals Ltd', 'Lobg M 50mg/500mg Tablet', 'What are the instructions for storage and disposal of Lobg M 50mg/500mg Tablet?', 'Keep this medicine tightly closed in the container or pack it came in. Store it according to the instructions on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, or other people.'),
(28732, 'Lobhop Granules Orange Sugar Free', 'Abbizon Lifesciences Pvt. Ltd.', 'Lobhop Granules Orange Sugar Free', 'Is it ok to take alcohol when taking Lobhop Granules Orange Sugar Free?', 'No, it is not recommended to take alcohol when on Lobhop Granules Orange Sugar Free. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(28733, 'Lobhop Granules Orange Sugar Free', 'Abbizon Lifesciences Pvt. Ltd.', 'Lobhop Granules Orange Sugar Free', 'What is Lobhop Granules Orange Sugar Free?', 'Lobhop Granules Orange Sugar Free is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(28734, 'Lobhop Granules Orange Sugar Free', 'Abbizon Lifesciences Pvt. Ltd.', 'Lobhop Granules Orange Sugar Free', 'Is it safe to give Lobhop Granules Orange Sugar Free to pregnant or lactating women?', 'Lobhop Granules Orange Sugar Free is not recommended for use in pregnant or breastfeeding women unless absolutely necessary. It is advised that if your doctor prescribes you this medicine then you must discuss all the risks and benefits associated with this medicine.'),
(28735, 'Lobhop Granules Orange Sugar Free', 'Abbizon Lifesciences Pvt. Ltd.', 'Lobhop Granules Orange Sugar Free', 'What is the use of Lobhop Granules Orange Sugar Free in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Lobhop Granules Orange Sugar Free works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(28736, 'Lobhop Granules Orange Sugar Free', 'Abbizon Lifesciences Pvt. Ltd.', 'Lobhop Granules Orange Sugar Free', 'How is Lobhop Granules Orange Sugar Free given?', 'Lobhop Granules Orange Sugar Free can be given orally, with or without food. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(28737, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'Is Lobialol 100mg Tablet safe?', 'Lobialol 100mg Tablet is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Lobialol 100mg Tablet occur during the first few weeks of treatment and disappear with time.'),
(28738, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'Why is Lobialol 100mg Tablet used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Lobialol 100mg Tablet in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(28739, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'Does Lobialol 100mg Tablet cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Lobialol 100mg Tablet. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(28740, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'Is it safe to use Lobialol 100mg Tablet in patients with diabetes?', 'Diabetic patients while using Lobialol 100mg Tablet should regularly check the blood sugar levels. Lobialol 100mg Tablet may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Lobialol 100mg Tablet.'),
(28741, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'Does Lobialol 100mg Tablet affect heart rate?', 'Lobialol 100mg Tablet slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(28742, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'What can happen if I stop taking Lobialol 100mg Tablet?', 'Do not stop taking Lobialol 100mg Tablet without talking to your doctor. Stopping Lobialol 100mg Tablet suddenly may cause serious heart problems such as angina (chest pain) or even a heart attack. If you need to stop taking Lobialol 100mg Tablet, your doctor will reduce the dose slowly over 1 or 2 weeks.'),
(28743, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'Will I need to stop taking Lobialol 100mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lobialol 100mg Tablet for 24 hours before surgery. This is because Lobialol 100mg Tablet can lower your blood pressure too much when its use is combined with some anesthetics. So, tell your doctor that you\'re taking Lobialol 100mg Tablet if you\'re going to be put to sleep using a general anesthetic or are scheduled to have any kind of major operation.'),
(28744, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'What happens on taking more than the recommended dose of Lobialol 100mg Tablet?', 'Taking more than the recommended dose of Lobialol 100mg Tablet can lead to a drop in blood pressure and slowing of the heart rate, difficulty breathing, or a drop in blood sugar, which can cause sweating or confusion. If you take too many tablets, tell your doctor immediately or contact the hospital emergency department nearest to you.'),
(28745, 'Lobialol 100mg Tablet', 'Ridhima Biocare', 'Lobialol 100mg Tablet', 'How long does Lobialol 100mg Tablet take to work?', 'If you are taking Lobialol 100mg Tablet for high blood pressure, it may lower your BP within 1-3 hours of taking it. You may not feel any different, but this does not mean that the medicine is not working, and it is important to keep taking it. On the other hand, if you are taking it for angina, it will probably take a few days for the medicine to reduce the pain. You may still have chest pain during this time or it may get worse.'),
(28746, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'What does Lobimet 500mg Tablet SR do exactly?', 'People with type 2 diabetes are not able to respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Lobimet 500mg Tablet SR acts in several ways to reduce the increased levels of sugar in blood. Lobimet 500mg Tablet SR decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(28747, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'Does Lobimet 500mg Tablet SR cause weight loss?', 'Yes, Lobimet 500mg Tablet SR has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(28748, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'What are the benefits of taking Lobimet 500mg Tablet SR?', 'Lobimet 500mg Tablet SR is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Lobimet 500mg Tablet SR when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(28749, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'Can Lobimet 500mg Tablet SR make you sleepy?', 'Lobimet 500mg Tablet SR usually does not cause sleepiness and is well tolerated. However, the use of Lobimet 500mg Tablet SR may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Lobimet 500mg Tablet SR.'),
(28750, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'How to take Lobimet 500mg Tablet SR?', 'Take Lobimet 500mg Tablet SR with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Lobimet 500mg Tablet SR with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(28751, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'What does Lobimet 500mg Tablet SR do exactly?', 'People with type 2 diabetes are not able to make enough insulin or respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Lobimet 500mg Tablet SR acts in several ways to reduce the increased levels of sugar in blood. Lobimet 500mg Tablet SR decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(28752, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'Does Lobimet 500mg Tablet SR cause weight loss?', 'Yes, Lobimet 500mg Tablet SR has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(28753, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'What are the benefits of taking Lobimet 500mg Tablet SR?', 'Lobimet 500mg Tablet SR is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Lobimet 500mg Tablet SR when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(28754, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'Can Lobimet 500mg Tablet SR make you sleepy?', 'Lobimet 500mg Tablet SR usually does not cause sleepiness and is well tolerated. However, the use of Lobimet 500mg Tablet SR may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Lobimet 500mg Tablet SR.'),
(28755, 'Lobimet 500mg Tablet SR', 'Lia Life Sciences Pvt Ltd', 'Lobimet 500mg Tablet SR', 'How to take Lobimet 500mg Tablet SR?', 'Take Lobimet 500mg Tablet SR with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Lobimet 500mg Tablet SR with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(28756, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'What does Lobimet 850mg Tablet do exactly?', 'People with type 2 diabetes are not able to respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Lobimet 850mg Tablet acts in several ways to reduce the increased levels of sugar in blood. Lobimet 850mg Tablet decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(28757, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'Does Lobimet 850mg Tablet cause weight loss?', 'Yes, Lobimet 850mg Tablet has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(28758, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'What are the benefits of taking Lobimet 850mg Tablet?', 'Lobimet 850mg Tablet is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Lobimet 850mg Tablet when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(28759, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'Can Lobimet 850mg Tablet make you sleepy?', 'Lobimet 850mg Tablet usually does not cause sleepiness and is well tolerated. However, the use of Lobimet 850mg Tablet may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Lobimet 850mg Tablet.'),
(28760, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'How to take Lobimet 850mg Tablet?', 'Take Lobimet 850mg Tablet with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Lobimet 850mg Tablet with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(28761, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'What does Lobimet 850mg Tablet do exactly?', 'People with type 2 diabetes are not able to make enough insulin or respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Lobimet 850mg Tablet acts in several ways to reduce the increased levels of sugar in blood. Lobimet 850mg Tablet decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(28762, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'Does Lobimet 850mg Tablet cause weight loss?', 'Yes, Lobimet 850mg Tablet has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(28763, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'What are the benefits of taking Lobimet 850mg Tablet?', 'Lobimet 850mg Tablet is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Lobimet 850mg Tablet when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(28764, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'Can Lobimet 850mg Tablet make you sleepy?', 'Lobimet 850mg Tablet usually does not cause sleepiness and is well tolerated. However, the use of Lobimet 850mg Tablet may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Lobimet 850mg Tablet.'),
(28765, 'Lobimet 850mg Tablet', 'Lia Life Sciences Pvt Ltd', 'Lobimet 850mg Tablet', 'How to take Lobimet 850mg Tablet?', 'Take Lobimet 850mg Tablet with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Lobimet 850mg Tablet with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(28766, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'What is Lobonac-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(28767, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Is it safe to take Lobonac-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(28768, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Can I stop taking Lobonac-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(28769, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Can Lobonac-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(28770, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Can Lobonac-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(28771, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Are there any specific contraindications associated with taking Lobonac-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(28772, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Can I take Lobonac-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(28773, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Can the use of Lobonac-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(28774, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'Can I take a higher dose of Lobonac-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(28775, 'Lobonac-SP Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-SP Tablet', 'What are the instructions for storage and disposal of Lobonac-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28776, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'What is Lobonac-TH 4 Tablet?', 'Lobonac-TH 4 Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(28777, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'Is it safe to use Lobonac-TH 4 Tablet?', 'Yes, Lobonac-TH 4 Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(28778, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'Can the Lobonac-TH 4 Tablet be stopped when my pain is relieved?', 'Lobonac-TH 4 Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lobonac-TH 4 Tablet should be continued if your doctor has advised you to do so.'),
(28779, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'Can the use of Lobonac-TH 4 Tablet cause dizziness?', 'Yes, the use of Lobonac-TH 4 Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(28780, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'Are there any specific contraindications associated with the use of Lobonac-TH 4 Tablet?', 'The use of Lobonac-TH 4 Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(28781, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'Can Lobonac-TH 4 Tablet be taken with Vitamin B-complex?', 'Yes, Lobonac-TH 4 Tablet can be taken with Vitamin B-complex preparations. While Lobonac-TH 4 Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(28782, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'Can the use of Lobonac-TH 4 Tablet cause damage to kidneys?', 'Yes, the long-term use of Lobonac-TH 4 Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(28783, 'Lobonac-TH 4 Tablet', 'Aadi Medicos Lab Pvt Ltd', 'Lobonac-TH 4 Tablet', 'Will Lobonac-TH 4 Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(28784, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'Is Lobopill 10mg Tablet habit forming?', 'Yes, Lobopill 10mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28785, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'Can Lobopill 10mg Tablet make me sleepy?', 'Yes, Lobopill 10mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28786, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'How long does Lobopill 10mg Tablet take to work?', 'Lobopill 10mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobopill 10mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28787, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'Is Lobopill 10mg Tablet the same as clonazepam?', 'No, Lobopill 10mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28788, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'How long does Lobopill 10mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobopill 10mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28789, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'Can I stop taking Lobopill 10mg Tablet?', 'No, do not stop taking Lobopill 10mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobopill 10mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28790, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'What if more than the recommended dose of Lobopill 10mg Tablet is taken?', 'Taking more than the recommended doses of Lobopill 10mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28791, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'Can using Lobopill 10mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobopill 10mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobopill 10mg Tablet may cause a fall in the blood pressure'),
(28792, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'Can Lobopill 10mg Tablet make me tired?', 'Lobopill 10mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28793, 'Lobopill 10mg Tablet', 'Sycap Pharma', 'Lobopill 10mg Tablet', 'Does Lobopill 10mg Tablet cause depression?', 'No, Lobopill 10mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28794, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'Is Lobopill 5mg Tablet habit forming?', 'Yes, Lobopill 5mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28795, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'Can Lobopill 5mg Tablet make me sleepy?', 'Yes, Lobopill 5mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28796, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'How long does Lobopill 5mg Tablet take to work?', 'Lobopill 5mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobopill 5mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28797, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'Is Lobopill 5mg Tablet the same as clonazepam?', 'No, Lobopill 5mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28798, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'How long does Lobopill 5mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobopill 5mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28799, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'Can I stop taking Lobopill 5mg Tablet?', 'No, do not stop taking Lobopill 5mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobopill 5mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28800, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'What if more than the recommended dose of Lobopill 5mg Tablet is taken?', 'Taking more than the recommended doses of Lobopill 5mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28801, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'Can using Lobopill 5mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobopill 5mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobopill 5mg Tablet may cause a fall in the blood pressure'),
(28802, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'Can Lobopill 5mg Tablet make me tired?', 'Lobopill 5mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28803, 'Lobopill 5mg Tablet', 'Sycap Pharma', 'Lobopill 5mg Tablet', 'Does Lobopill 5mg Tablet cause depression?', 'No, Lobopill 5mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28804, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'Is Lobzem 5mg Tablet habit forming?', 'Yes, Lobzem 5mg Tablet can be habit forming if used for a long time. The risk of dependence increases with dose and duration of treatment; it is also greater in patients with a history of alcohol or drug abuse. Therefore, the duration of treatment is generally as short as possible.'),
(28805, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'Can Lobzem 5mg Tablet make me sleepy?', 'Yes, Lobzem 5mg Tablet can make you sleepy. It usually begins within the first month of treatment and may diminish with continued treatment.'),
(28806, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'How long does Lobzem 5mg Tablet take to work?', 'Lobzem 5mg Tablet is a fast-acting medicine, which means that it quickly gets absorbed from the bloodstream. Lobzem 5mg Tablet reaches its highest blood levels within half an hour to 4 hours after the dose is taken.'),
(28807, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'Is Lobzem 5mg Tablet the same as clonazepam?', 'No, Lobzem 5mg Tablet and clonazepam are not the same medicines but belong to the same class of drugs known as benzodiazepines.'),
(28808, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'How long does Lobzem 5mg Tablet withdrawal last?', 'Withdrawal syndrome may develop at any time up to 3 weeks after stopping Lobzem 5mg Tablet. Withdrawal signs may last anywhere from 4 weeks to a year or more.'),
(28809, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'Can I stop taking Lobzem 5mg Tablet?', 'No, do not stop taking Lobzem 5mg Tablet even if you are feeling well, unless your doctor tells you to. Suddenly stopping Lobzem 5mg Tablet may cause unwanted effects known as withdrawal symptoms. To prevent this, the dose of clobazam needs to be reduced gradually before completely stopping it. Therefore, it is important that you consult your doctor first.'),
(28810, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'What if more than the recommended dose of Lobzem 5mg Tablet is taken?', 'Taking more than the recommended doses of Lobzem 5mg Tablet can affect in different ways, and the patient should seek immediate medical help. In mild cases, it may cause symptoms such as drowsiness, mental confusion, and tiredness. Whereas, in more serious cases, the symptoms may include the complete loss of control of bodily movements, decreased muscle tone, low blood pressure, respiratory depression, coma in rare cases, and death in very rare cases.'),
(28811, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'Can using Lobzem 5mg Tablet cause a decrease in the blood pressure?', 'Generally, the use of Lobzem 5mg Tablet does not cause a decrease in the blood pressure, but taking more than the recommended doses of Lobzem 5mg Tablet may cause a fall in the blood pressure'),
(28812, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'Can Lobzem 5mg Tablet make me tired?', 'Lobzem 5mg Tablet may cause tiredness along with muscle weakness. In case you experience tiredness or if tiredness persists for a long time, then you should consult your doctor.'),
(28813, 'Lobzem 5mg Tablet', 'Carrel Pharmaceuticals', 'Lobzem 5mg Tablet', 'Does Lobzem 5mg Tablet cause depression?', 'No, Lobzem 5mg Tablet dose not cause depression, but it can cause recurrence of pre-existing depression.'),
(28814, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'What is Loc 400 mg/600 mg Tablet?', 'Loc 400 mg/600 mg Tablet is a combination of two medicines: Norfloxacin and Tinidazole. This medication is used to treat diarrhea and dysentry caused due to infection. They work by killing the harmful microorganisms that cause infection. Together they help to treat infection more effectively.'),
(28815, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'Can I stop taking Loc 400 mg/600 mg Tablet when my symptoms are relieved?', 'No, do not stop taking Loc 400 mg/600 mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(28816, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'Can Loc 400 mg/600 mg Tablet increase the risk of tendon rupture?', 'Yes, Loc 400 mg/600 mg Tablet is known to increase the risk of tendon rupture commonly in the achilles tendon. Tendon problems can happen in people of all ages who take Loc 400 mg/600 mg Tablet. Inform your health care provider if you hear or feel a snap or pop, have severe pain, rapid or immediate bruising after an accident, and are unable to use the affected arm or leg. This may indicate that you have a tendon rupture.'),
(28817, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'Can the use of Loc 400 mg/600 mg Tablet cause metallic taste?', 'Yes, Loc 400 mg/600 mg Tablet can cause a temporary metallic taste. This metallic taste can be reduced by chewing sugar-free gum or mints, brushing teeth after the meals and by staying hydrated.'),
(28818, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'Are there any specific contraindications associated with the use of Loc 400 mg/600 mg Tablet?', 'The use of Loc 400 mg/600 mg Tablet is considered to be harmful for patients with known allergy to norfloxacin or tinidazole or any other excipient present in the medicine. It should preferably be avoided in patients with a history of tendinitis (inflammation of the tendons) or tendon rupture caused because of the use of ciprofloxacin or any other medicine which belongs to the quinolone group of antimicrobial agents. It is also avoided in patients with some neurological disorders.'),
(28819, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'Can I drink alcohol while taking Loc 400 mg/600 mg Tablet?', 'No, avoid drinking alcohol while taking Loc 400 mg/600 mg Tablet and for at least 3 days after the dosage is completed. Drinking alcohol while taking this medicine may cause an unpleasant reaction (Disulfuram like reaction) with symptoms such as stomach pain, nausea, vomiting, headache, flushing or redness of the face.'),
(28820, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'Can I take ORS solution with Loc 400 mg/600 mg Tablet?', 'Yes, you can take ORS (oral rehydration salts) with Loc 400 mg/600 mg Tablet. ORS is a special combination of dry salts that is mixed with clean drinking water. It can help restore the fluids lost due to diarrhea. ORS packets or solution can be availed from the nearest pharmacy, shop or from our website.'),
(28821, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loc 400 mg/600 mg Tablet can lead to increased side effects. Loc 400 mg/600 mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of diarrhea which is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(28822, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'What is the recommended storage condition for Loc 400 mg/600 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28823, 'Loc 400 mg/600 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc 400 mg/600 mg Tablet', 'What if I don\'t get better after using Loc 400 mg/600 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(28824, 'Loc 5mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc 5mg Tablet', 'Is Loc 5mg Tablet a steroid? What is it used for?', 'No, Loc 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(28825, 'Loc 5mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc 5mg Tablet', 'Does Loc 5mg Tablet make you tired and drowsy?', 'Yes, Loc 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(28826, 'Loc 5mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc 5mg Tablet', 'How long does it take for Loc 5mg Tablet to work?', 'Loc 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(28827, 'Loc 5mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc 5mg Tablet', 'Can I take Loc 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Loc 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(28828, 'Loc 5mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc 5mg Tablet', 'Is it safe to take Loc 5mg Tablet for a long time?', 'Loc 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Loc 5mg Tablet for only as long as you need it.'),
(28829, 'Loc 5mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc 5mg Tablet', 'For how long should I continue Loc 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Loc 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Loc 5mg Tablet'),
(28830, 'Loc M 5mg/10mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc M 5mg/10mg Tablet', 'What is Loc M 5mg/10mg Tablet?', 'Loc M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(28831, 'Loc M 5mg/10mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc M 5mg/10mg Tablet', 'Can the use of Loc M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Loc M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(28832, 'Loc M 5mg/10mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc M 5mg/10mg Tablet', 'Can Loc M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Loc M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(28833, 'Loc M 5mg/10mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc M 5mg/10mg Tablet', 'Can the use of Loc M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Loc M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(28834, 'Loc M 5mg/10mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc M 5mg/10mg Tablet', 'Can I drink alcohol while taking Loc M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Loc M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Loc M 5mg/10mg Tablet.'),
(28835, 'Loc M 5mg/10mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc M 5mg/10mg Tablet', 'Will Loc M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Loc M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(28836, 'Loc M 5mg/10mg Tablet', 'Satik Pharmaceuticals Private Limited', 'Loc M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Loc M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28837, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'What is Loc OZ 200 mg/500 mg Tablet?', 'Loc OZ 200 mg/500 mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(28838, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'Is it safe to use Loc OZ 200 mg/500 mg Tablet?', 'Loc OZ 200 mg/500 mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(28839, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'Are there any specific contraindications associated with the use of Loc OZ 200 mg/500 mg Tablet?', 'The use of Loc OZ 200 mg/500 mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(28840, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loc OZ 200 mg/500 mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(28841, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'What if I don\'t get better after using Loc OZ 200 mg/500 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(28842, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'Can I stop taking Loc OZ 200 mg/500 mg Tablet when I feel better?', 'No, do not stop taking Loc OZ 200 mg/500 mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(28843, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'What if I miss my dose?', 'Take Loc OZ 200 mg/500 mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(28844, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'Can I take alcohol while on Loc OZ 200 mg/500 mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Loc OZ 200 mg/500 mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(28845, 'Loc OZ 200 mg/500 mg Tablet', 'Omega Remedies Pvt Ltd', 'Loc OZ 200 mg/500 mg Tablet', 'What are the instructions for the storage and disposal of Loc OZ 200 mg/500 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28846, 'Loc Tears Fusion Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loc Tears Fusion Eye Drop', 'What is Loc Tears Fusion Eye Drop used for?', 'Loc Tears Fusion Eye Drop is an artificial substitute for tears. It is used as a lubricant for dry eyes. It is also used for the temporary relief of burning, irritation and/or discomfort due to dryness of eyes. Moreover, it is used to lubricate and re-wet soft and rigid gas permeable contact lenses. It is also indicated to relieve dryness, irritation and discomfort that may be associated with lens wear.'),
(28847, 'Loc Tears Fusion Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loc Tears Fusion Eye Drop', 'What are the side effects of Loc Tears Fusion Eye Drop?', 'You may experience visual disturbances and eye discharge while using this medicine. Some other side effects of this medicine include redness of the eye, eye irritation, burning and discomfort, eyelid swelling and itching of the eye. If any of these side effects bother you, please consult your doctor.'),
(28848, 'Loc Tears Fusion Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loc Tears Fusion Eye Drop', 'How should Loc Tears Fusion Eye Drop be stored?', 'Store at or below 25°C and out of the reach of children. Do not touch the tip of the container to any surface or eye(s). Replace the cap after every use. Remember not to use the eye drops after the expiry date or after 30 days of opening it.'),
(28849, 'Loc Tears Fusion Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loc Tears Fusion Eye Drop', 'How should Loc Tears Fusion Eye Drop be used?', 'If you are using it for dry eyes, instil 1 or 2 drops in the affected eye(s) as needed. If you are using it to lubricate soft and rigid gas-permeable lenses, apply 1 to 2 drops to each eye with the lenses on as needed or as directed by your doctor. Blink several times after pouring the drops. Consult your doctor if not sure.'),
(28850, 'Loc Tears Fusion Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loc Tears Fusion Eye Drop', 'Is Loc Tears Fusion Eye Drop bad?', 'No, Loc Tears Fusion Eye Drop is a safe medicine. It is meant for external use only and is not harmful. However, in some patients, Loc Tears Fusion Eye Drop may cause eye irritation (burning and discomfort), eye pain, itchy eyes and visual disturbance. Immediately contact your doctor if any of these effects perists.'),
(28851, 'Locap RD 15mg/10mg Tablet', 'Archicare Limited', 'Locap RD 15mg/10mg Tablet', 'Is it safe to use Locap RD 15mg/10mg Tablet?', 'Yes, Locap RD 15mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(28852, 'Locap RD 15mg/10mg Tablet', 'Archicare Limited', 'Locap RD 15mg/10mg Tablet', 'What are the contraindications of Locap RD 15mg/10mg Tablet?', 'The use of Locap RD 15mg/10mg Tablet is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(28853, 'Locap RD 15mg/10mg Tablet', 'Archicare Limited', 'Locap RD 15mg/10mg Tablet', 'What is the best time to take Locap RD 15mg/10mg Tablet?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(28854, 'Locap RD 15mg/10mg Tablet', 'Archicare Limited', 'Locap RD 15mg/10mg Tablet', 'Can the use of Locap RD 15mg/10mg Tablet cause abnormal heartbeat?', 'Yes, the use of Locap RD 15mg/10mg Tablet can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(28855, 'Locap RD 15mg/10mg Tablet', 'Archicare Limited', 'Locap RD 15mg/10mg Tablet', 'Does the use of Locap RD 15mg/10mg Tablet lead to dry mouth?', 'Yes, the use of Locap RD 15mg/10mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(28856, 'Locap RD 15mg/10mg Tablet', 'Archicare Limited', 'Locap RD 15mg/10mg Tablet', 'What is the recommended storage condition for Locap RD 15mg/10mg Tablet?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28857, 'Locart 6mg Tablet', 'Luziac Life Sciences', 'Locart 6mg Tablet', 'Is Locart 6mg Tablet a steroid?', 'Yes, Locart 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Locart 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(28858, 'Locart 6mg Tablet', 'Luziac Life Sciences', 'Locart 6mg Tablet', 'What is Locart 6mg Tablet used for?', 'Locart 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(28859, 'Locart 6mg Tablet', 'Luziac Life Sciences', 'Locart 6mg Tablet', 'How does Locart 6mg Tablet work?', 'Locart 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(28860, 'Locart 6mg Tablet', 'Luziac Life Sciences', 'Locart 6mg Tablet', 'Is Locart 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Locart 6mg Tablet has a similar effect as that of prednisone. Moreover, Locart 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(28861, 'Locart 6mg Tablet', 'Luziac Life Sciences', 'Locart 6mg Tablet', 'Is Locart 6mg Tablet a painkiller?', 'No, Locart 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(28862, 'Locart 6mg Tablet', 'Luziac Life Sciences', 'Locart 6mg Tablet', 'Can I take Locart 6mg Tablet with Tamsulosin?', 'Yes, Locart 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(28863, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'Can I feel dizzy after taking Locas 50mg Tablet?', 'Yes, the use of Locas 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28864, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'Is Locas 50mg Tablet a good blood pressure medicine?', 'Locas 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(28865, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'What are some of the lifestyle changes I should make while using Locas 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Locas 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Locas 50mg Tablet and to keep yourself healthy.'),
(28866, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'For how long do I need to take Locas 50mg Tablet?', 'You may have to take Locas 50mg Tablet for a long term, even life long. Locas 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Locas 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(28867, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'Does Locas 50mg Tablet cause weight gain?', 'No, Locas 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(28868, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'What are the long-term side effects of Locas 50mg Tablet?', 'Long-term use of Locas 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Locas 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(28869, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'Is Locas 50mg Tablet bad for the kidneys?', 'Yes, Locas 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Locas 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(28870, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'How long does Locas 50mg Tablet take to work?', 'The blood pressure-lowering effect of Locas 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(28871, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'When and how should Locas 50mg Tablet be taken?', 'Take Locas 50mg Tablet exactly as per your doctor’s advice. Locas 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(28872, 'Locas 50mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas 50mg Tablet', 'What is the most important information that I need to know about Locas 50mg Tablet?', 'Taking Locas 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Locas 50mg Tablet, stop taking Locas 50mg Tablet and call your doctor immediately.'),
(28873, 'Locas A 50mg/5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas A 50mg/5mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28874, 'Locas A 50mg/5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas A 50mg/5mg Tablet', 'Can I feel dizzy after taking Locas A 50mg/5mg Tablet?', 'Yes, the use of Locas A 50mg/5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28875, 'Locas A 50mg/5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas A 50mg/5mg Tablet', 'Can I use Locas A 50mg/5mg Tablet in pregnancy?', 'No, Locas A 50mg/5mg Tablet should be avoided in pregnancy. Its use can cause injury and even endanger the baby. If you conceive while using Locas A 50mg/5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend to you other ways to lower the blood pressure.'),
(28876, 'Locas A 50mg/5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas A 50mg/5mg Tablet', 'What are some of the lifestyle changes I should make while using Locas A 50mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Locas A 50mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Locas A 50mg/5mg Tablet and to keep yourself healthy.'),
(28877, 'Locas A 50mg/5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas A 50mg/5mg Tablet', 'Can I stop taking Locas A 50mg/5mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping Locas A 50mg/5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28878, 'Locas H 50mg/12.5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28879, 'Locas H 50mg/12.5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Locas H 50mg/12.5mg Tablet?', 'Yes, the use of Locas H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28880, 'Locas H 50mg/12.5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas H 50mg/12.5mg Tablet', 'Can I use Locas H 50mg/12.5mg Tablet in pregnancy?', 'No, Locas H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Locas H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(28881, 'Locas H 50mg/12.5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Locas H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Locas H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(28882, 'Locas H 50mg/12.5mg Tablet', 'Casca Remedies Pvt Ltd', 'Locas H 50mg/12.5mg Tablet', 'Can I stop taking Locas H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Locas H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Locas H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28883, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'I have been taking Locasa 100mg Tablet since nine months and haven’t had any seizures till now. Can I stop taking it now?', 'No, you should not stop taking Locasa 100mg Tablet even if you start feeling better. Stopping this medicine suddenly may lead to seizures which can be difficult to control. Consult your doctor if you experience any problems while being on treatment with Locasa 100mg Tablet. The doctor may adjust the dose or gradually reduce the dose.'),
(28884, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'Is it safe to drive if I am taking Locasa 100mg Tablet?', 'No, you need to be careful while driving or operating heavy machinery until and unless you know how Locasa 100mg Tablet affects you. You may experience dizziness or drowsiness and blurred vision, especially during the initial days of treatment. These side effects can also be observed if the dose is increased.'),
(28885, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'What should I do if I forget a dose of Locasa 100mg Tablet?', 'If you miss a dose of Locasa 100mg Tablet within 6 hours of the scheduled time, take it as soon as you remember. However, if you have forgotten to take the dose for more than 6 hours of the scheduled time then skip the dose and take the next one as scheduled. Do not double the dose to make up for the  missed dose.'),
(28886, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'Is Locasa 100mg Tablet a habit-forming medicine?', 'No, Locasa 100mg Tablet is not habit forming. There are no reports which suggest occurrence of withdrawal symptoms following its discontinuation. Locasa 100mg Tablet may cause euphoria (patients may feel extremely happy and overwhelmed) in some individuals who may then take it merely for fun (drug abuse). It is possible that such individuals may become psychologically dependent on this medicine.'),
(28887, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'Does Locasa 100mg Tablet have any effect on fertility?', 'Locasa 100mg Tablet has not been reported to affect fertility in males or females. However, if you are concerned, consult the doctor.'),
(28888, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'Can I take Locasa 100mg Tablet if I am pregnant or breastfeeding?', 'Though no potential side effects have been reported with the use of Locasa 100mg Tablet during pregnancy and breastfeeding, it is best to avoid Locasa 100mg Tablet during pregnancy and breastfeeding.'),
(28889, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'For how long do I need to continue Locasa 100mg Tablet?', 'Locasa 100mg Tablet is generally prescribed for long-term use. Keep taking the medicine as advised by your doctor’s advice. However, if you experience any bothersome side effects, talk to your doctor.'),
(28890, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'What if somebody takes excess of Locasa 100mg Tablet?', 'Excess of Locasa 100mg Tablet may cause dizziness, nausea, vomiting, seizures, shock, heart problems and even coma. If such a situation arises, seek emergency medical support in a nearby hospital.'),
(28891, 'Locasa 100mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 100mg Tablet', 'Is it safe to take Locasa 100mg Tablet if I am on Ritonavir therapy?', 'Be cautious if you are taking Locasa 100mg Tablet while on Ritonavir therapy. It is advised to inform your doctor before starting Locasa 100mg Tablet. This is because if you are taking Ritonavir for liver or kidney problems then the dose of Locasa 100mg Tablet should be modified or reduced.'),
(28892, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'I have been taking Locasa 200mg Tablet since nine months and haven’t had any seizures till now. Can I stop taking it now?', 'No, you should not stop taking Locasa 200mg Tablet even if you start feeling better. Stopping this medicine suddenly may lead to seizures which can be difficult to control. Consult your doctor if you experience any problems while being on treatment with Locasa 200mg Tablet. The doctor may adjust the dose or gradually reduce the dose.'),
(28893, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'Is it safe to drive if I am taking Locasa 200mg Tablet?', 'No, you need to be careful while driving or operating heavy machinery until and unless you know how Locasa 200mg Tablet affects you. You may experience dizziness or drowsiness and blurred vision, especially during the initial days of treatment. These side effects can also be observed if the dose is increased.'),
(28894, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'What should I do if I forget a dose of Locasa 200mg Tablet?', 'If you miss a dose of Locasa 200mg Tablet within 6 hours of the scheduled time, take it as soon as you remember. However, if you have forgotten to take the dose for more than 6 hours of the scheduled time then skip the dose and take the next one as scheduled. Do not double the dose to make up for the  missed dose.'),
(28895, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'Is Locasa 200mg Tablet a habit-forming medicine?', 'No, Locasa 200mg Tablet is not habit forming. There are no reports which suggest occurrence of withdrawal symptoms following its discontinuation. Locasa 200mg Tablet may cause euphoria (patients may feel extremely happy and overwhelmed) in some individuals who may then take it merely for fun (drug abuse). It is possible that such individuals may become psychologically dependent on this medicine.'),
(28896, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'Does Locasa 200mg Tablet have any effect on fertility?', 'Locasa 200mg Tablet has not been reported to affect fertility in males or females. However, if you are concerned, consult the doctor.'),
(28897, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'Can I take Locasa 200mg Tablet if I am pregnant or breastfeeding?', 'Though no potential side effects have been reported with the use of Locasa 200mg Tablet during pregnancy and breastfeeding, it is best to avoid Locasa 200mg Tablet during pregnancy and breastfeeding.'),
(28898, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'For how long do I need to continue Locasa 200mg Tablet?', 'Locasa 200mg Tablet is generally prescribed for long-term use. Keep taking the medicine as advised by your doctor’s advice. However, if you experience any bothersome side effects, talk to your doctor.'),
(28899, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'What if somebody takes excess of Locasa 200mg Tablet?', 'Excess of Locasa 200mg Tablet may cause dizziness, nausea, vomiting, seizures, shock, heart problems and even coma. If such a situation arises, seek emergency medical support in a nearby hospital.'),
(28900, 'Locasa 200mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 200mg Tablet', 'Is it safe to take Locasa 200mg Tablet if I am on Ritonavir therapy?', 'Be cautious if you are taking Locasa 200mg Tablet while on Ritonavir therapy. It is advised to inform your doctor before starting Locasa 200mg Tablet. This is because if you are taking Ritonavir for liver or kidney problems then the dose of Locasa 200mg Tablet should be modified or reduced.'),
(28901, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'I have been taking Locasa 50mg Tablet since nine months and haven’t had any seizures till now. Can I stop taking it now?', 'No, you should not stop taking Locasa 50mg Tablet even if you start feeling better. Stopping this medicine suddenly may lead to seizures which can be difficult to control. Consult your doctor if you experience any problems while being on treatment with Locasa 50mg Tablet. The doctor may adjust the dose or gradually reduce the dose.'),
(28902, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'Is it safe to drive if I am taking Locasa 50mg Tablet?', 'No, you need to be careful while driving or operating heavy machinery until and unless you know how Locasa 50mg Tablet affects you. You may experience dizziness or drowsiness and blurred vision, especially during the initial days of treatment. These side effects can also be observed if the dose is increased.'),
(28903, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'What should I do if I forget a dose of Locasa 50mg Tablet?', 'If you miss a dose of Locasa 50mg Tablet within 6 hours of the scheduled time, take it as soon as you remember. However, if you have forgotten to take the dose for more than 6 hours of the scheduled time then skip the dose and take the next one as scheduled. Do not double the dose to make up for the  missed dose.'),
(28904, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'Is Locasa 50mg Tablet a habit-forming medicine?', 'No, Locasa 50mg Tablet is not habit forming. There are no reports which suggest occurrence of withdrawal symptoms following its discontinuation. Locasa 50mg Tablet may cause euphoria (patients may feel extremely happy and overwhelmed) in some individuals who may then take it merely for fun (drug abuse). It is possible that such individuals may become psychologically dependent on this medicine.'),
(28905, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'Does Locasa 50mg Tablet have any effect on fertility?', 'Locasa 50mg Tablet has not been reported to affect fertility in males or females. However, if you are concerned, consult the doctor.'),
(28906, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'Can I take Locasa 50mg Tablet if I am pregnant or breastfeeding?', 'Though no potential side effects have been reported with the use of Locasa 50mg Tablet during pregnancy and breastfeeding, it is best to avoid Locasa 50mg Tablet during pregnancy and breastfeeding.'),
(28907, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'For how long do I need to continue Locasa 50mg Tablet?', 'Locasa 50mg Tablet is generally prescribed for long-term use. Keep taking the medicine as advised by your doctor’s advice. However, if you experience any bothersome side effects, talk to your doctor.'),
(28908, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'What if somebody takes excess of Locasa 50mg Tablet?', 'Excess of Locasa 50mg Tablet may cause dizziness, nausea, vomiting, seizures, shock, heart problems and even coma. If such a situation arises, seek emergency medical support in a nearby hospital.'),
(28909, 'Locasa 50mg Tablet', 'Shinto Organics (P) Limited', 'Locasa 50mg Tablet', 'Is it safe to take Locasa 50mg Tablet if I am on Ritonavir therapy?', 'Be cautious if you are taking Locasa 50mg Tablet while on Ritonavir therapy. It is advised to inform your doctor before starting Locasa 50mg Tablet. This is because if you are taking Ritonavir for liver or kidney problems then the dose of Locasa 50mg Tablet should be modified or reduced.'),
(28910, 'Locast Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast Tablet', 'Is Locast Tablet a steroid? What is it used for?', 'No, Locast Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(28911, 'Locast Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast Tablet', 'Does Locast Tablet make you tired and drowsy?', 'Yes, Locast Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(28912, 'Locast Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast Tablet', 'How long does it take for Locast Tablet to work?', 'Locast Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(28913, 'Locast Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast Tablet', 'Can I take Locast Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Locast Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(28914, 'Locast Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast Tablet', 'Is it safe to take Locast Tablet for a long time?', 'Locast Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Locast Tablet for only as long as you need it.'),
(28915, 'Locast Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast Tablet', 'For how long should I continue Locast Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Locast Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Locast Tablet'),
(28916, 'Locast-M Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast-M Tablet', 'What is Locast-M Tablet?', 'Locast-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(28917, 'Locast-M Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast-M Tablet', 'Can the use of Locast-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Locast-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(28918, 'Locast-M Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast-M Tablet', 'Can Locast-M Tablet be stopped when allergy symptoms are relieved?', 'No, Locast-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(28919, 'Locast-M Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast-M Tablet', 'Can the use of Locast-M Tablet cause dry mouth?', 'Yes, the use of Locast-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(28920, 'Locast-M Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast-M Tablet', 'Can I drink alcohol while taking Locast-M Tablet?', 'No, do not take alcohol while taking Locast-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Locast-M Tablet.'),
(28921, 'Locast-M Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast-M Tablet', 'Will Locast-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Locast-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(28922, 'Locast-M Tablet', 'Beatus Healthcare Pvt Ltd', 'Locast-M Tablet', 'What are the instructions for storage and disposal of Locast-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(28923, 'Locbeta 25mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 25mg Tablet ER', 'How long does Locbeta 25mg Tablet ER take to work?', 'The time taken by Locbeta 25mg Tablet ER to start working varies from person to person. Usually, Locbeta 25mg Tablet ER starts working within 15 minutes. However, in some patients, it may take up to 2 hours to start working. It starts acting slowly and the maximum or full effect is usually experienced within a span of 1 week. In case you do not feel any difference while taking Locbeta 25mg Tablet ER, do not panic. The medicine exerts its beneficial effects when taken for a long time.'),
(28924, 'Locbeta 25mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 25mg Tablet ER', 'Is taking Locbeta 25mg Tablet ER dangerous?', 'Locbeta 25mg Tablet ER is usually safe when taken as per the doctor’s prescription. This medicine exhibits dangerous effects if the medicine is stopped suddenly. Stopping the medicine suddenly can cause an abrupt increase in the heart rate and affect its activity, which can be dangerous for heart failure patients and can even lead to a heart attack in some patients. So, do not stop the medicine suddenly and take it for the prescribed duration.'),
(28925, 'Locbeta 25mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 25mg Tablet ER', 'Does Locbeta 25mg Tablet ER help you sleep better?', 'Locbeta 25mg Tablet ER belongs to the beta-blockers class of medicine. Though their effect on sleep varies from person to person, it has been found that these medicines are known to alter the sleep pattern and disturb sleep in few patients. On the other hand, it has also been seen to promote better sleep in patients with increased heart rate and anxiety by calming down the heart and nerves. Do consult your doctor in case you have any sleep disturbances.'),
(28926, 'Locbeta 25mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 25mg Tablet ER', 'Can I take alcohol after taking Locbeta 25mg Tablet ER?', 'No, you should not consume alcohol after taking Locbeta 25mg Tablet ER. Alcohol may increase the blood-pressure-lowering effects of this medicine and lead to low blood pressure.'),
(28927, 'Locbeta 50mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 50mg Tablet ER', 'How long does Locbeta 50mg Tablet ER take to work?', 'The time taken by Locbeta 50mg Tablet ER to start working varies from person to person. Usually, Locbeta 50mg Tablet ER starts working within 15 minutes. However, in some patients, it may take up to 2 hours to start working. It starts acting slowly and the maximum or full effect is usually experienced within a span of 1 week. In case you do not feel any difference while taking Locbeta 50mg Tablet ER, do not panic. The medicine exerts its beneficial effects when taken for a long time.'),
(28928, 'Locbeta 50mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 50mg Tablet ER', 'Is taking Locbeta 50mg Tablet ER dangerous?', 'Locbeta 50mg Tablet ER is usually safe when taken as per the doctor’s prescription. This medicine exhibits dangerous effects if the medicine is stopped suddenly. Stopping the medicine suddenly can cause an abrupt increase in the heart rate and affect its activity, which can be dangerous for heart failure patients and can even lead to a heart attack in some patients. So, do not stop the medicine suddenly and take it for the prescribed duration.'),
(28929, 'Locbeta 50mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 50mg Tablet ER', 'Does Locbeta 50mg Tablet ER help you sleep better?', 'Locbeta 50mg Tablet ER belongs to the beta-blockers class of medicine. Though their effect on sleep varies from person to person, it has been found that these medicines are known to alter the sleep pattern and disturb sleep in few patients. On the other hand, it has also been seen to promote better sleep in patients with increased heart rate and anxiety by calming down the heart and nerves. Do consult your doctor in case you have any sleep disturbances.'),
(28930, 'Locbeta 50mg Tablet ER', 'Europa Healthcare Pvt Ltd', 'Locbeta 50mg Tablet ER', 'Can I take alcohol after taking Locbeta 50mg Tablet ER?', 'No, you should not consume alcohol after taking Locbeta 50mg Tablet ER. Alcohol may increase the blood-pressure-lowering effects of this medicine and lead to low blood pressure.'),
(28931, 'Locee Tablet', 'Cure & Care Therapeutics', 'Locee Tablet', 'Can Locee Tablet interfere with laboratory tests?', 'Yes, Locee Tablet contains Acetylcysteine which may interfere with laboratory tests like urine ketone test and may cause false test results. Inform your doctor if you are taking Locee Tablet before taking any tests.'),
(28932, 'Locee Tablet', 'Cure & Care Therapeutics', 'Locee Tablet', 'Will Locee Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If symptoms are not getting relieved by the recommended doses, please consult the doctor for re-evaluation.'),
(28933, 'Locee Tablet', 'Cure & Care Therapeutics', 'Locee Tablet', 'What are the instructions for storage and disposal of Locee Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(28934, 'Locef 1000mg Injection', 'Scutage Pharmaceuticals', 'Locef 1000mg Injection', 'Is Locef 1000mg Injection safe?', 'Locef 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(28935, 'Locef 1000mg Injection', 'Scutage Pharmaceuticals', 'Locef 1000mg Injection', 'How long does Locef 1000mg Injection take to work?', 'Usually, Locef 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(28936, 'Locef 1000mg Injection', 'Scutage Pharmaceuticals', 'Locef 1000mg Injection', 'Who should not take Locef 1000mg Injection?', 'Locef 1000mg Injection should not be prescribed to people who are allergic to Locef 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Locef 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(28937, 'Locef 1000mg Injection', 'Scutage Pharmaceuticals', 'Locef 1000mg Injection', 'What if I do not get better after using Locef 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(28938, 'Locef 1000mg Injection', 'Scutage Pharmaceuticals', 'Locef 1000mg Injection', 'For how long does Locef 1000mg Injection stay in the body?', 'Usually, Locef 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(28939, 'Locef 1000mg Injection', 'Scutage Pharmaceuticals', 'Locef 1000mg Injection', 'Is Locef 1000mg Injection effective?', 'Locef 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Locef 1000mg Injection too early, the symptoms may return or worsen.'),
(28940, 'Locef 1000mg Injection', 'Scutage Pharmaceuticals', 'Locef 1000mg Injection', 'How is Locef 1000mg Injection administered?', 'Locef 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Locef 1000mg Injection.'),
(28941, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'Can I feel dizzy after taking Locert 50mg Tablet?', 'Yes, the use of Locert 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28942, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'Is Locert 50mg Tablet a good blood pressure medicine?', 'Locert 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(28943, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'What are some of the lifestyle changes I should make while using Locert 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Locert 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Locert 50mg Tablet and to keep yourself healthy.'),
(28944, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'For how long do I need to take Locert 50mg Tablet?', 'You may have to take Locert 50mg Tablet for a long term, even life long. Locert 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Locert 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(28945, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'Does Locert 50mg Tablet cause weight gain?', 'No, Locert 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(28946, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'What are the long-term side effects of Locert 50mg Tablet?', 'Long-term use of Locert 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Locert 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(28947, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'Is Locert 50mg Tablet bad for the kidneys?', 'Yes, Locert 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Locert 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(28948, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'How long does Locert 50mg Tablet take to work?', 'The blood pressure-lowering effect of Locert 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(28949, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'When and how should Locert 50mg Tablet be taken?', 'Take Locert 50mg Tablet exactly as per your doctor’s advice. Locert 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(28950, 'Locert 50mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert 50mg Tablet', 'What is the most important information that I need to know about Locert 50mg Tablet?', 'Taking Locert 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Locert 50mg Tablet, stop taking Locert 50mg Tablet and call your doctor immediately.'),
(28951, 'Locert H 50mg/12.5mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(28952, 'Locert H 50mg/12.5mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Locert H 50mg/12.5mg Tablet?', 'Yes, the use of Locert H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(28953, 'Locert H 50mg/12.5mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert H 50mg/12.5mg Tablet', 'Can I use Locert H 50mg/12.5mg Tablet in pregnancy?', 'No, Locert H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Locert H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(28954, 'Locert H 50mg/12.5mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Locert H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Locert H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(28955, 'Locert H 50mg/12.5mg Tablet', 'Retra Life Science Pvt Ltd', 'Locert H 50mg/12.5mg Tablet', 'Can I stop taking Locert H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Locert H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Locert H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(28956, 'Loceryl Cream', 'Galderma India Pvt Ltd', 'Loceryl Cream', 'Q. How often should you use Loceryl Cream?', 'Loceryl Cream contains amorolfine which is an antifungal medicine. It is used to treat fungal infections of the nails. It is applied once weekly on the affected finger or toenails. Sometimes your physician may ask you to apply it twice weekly. The affected areas must be cleaned and dried properly.  Do not stop the treatment in between even if the symptoms heal. Your doctor will recommend the exact dose and duration of the treatment based on the type of fungal infection.'),
(28957, 'Loceryl Cream', 'Galderma India Pvt Ltd', 'Loceryl Cream', 'Q. Is Loceryl Cream a steroid?', 'No, Loceryl Cream is not a steroid. It is a medicine which is used to kill a wide variety of infection-causing fungus. It is applied on the affected nails to treat fungal infections.'),
(28958, 'Loceryl Cream', 'Galderma India Pvt Ltd', 'Loceryl Cream', 'Q. Can we apply Loceryl Cream on other parts of the body?', 'No, this medicine should not be used on other parts of the body like the eyes, oral cavity, or intravaginally. Its use should be restricted to only nails and skin. Before using the medicine consult the doctor and follow the instructions carefully.'),
(28959, 'Loceryl Cream', 'Galderma India Pvt Ltd', 'Loceryl Cream', 'Q. Can Loceryl Cream cause any local reaction or rashes?', 'Yes, the use of Loceryl Cream may cause allergic reactions, but the probability is unknown. Such allergic reaction is not very common and is likely to occur in only susceptible or sensitive individuals. Immediately contact your doctor if you experience such reactions.'),
(28960, 'Loceryl Cream', 'Galderma India Pvt Ltd', 'Loceryl Cream', 'Q. Is Loceryl Cream safe to be used in kids?', 'No, Loceryl Cream should not be used in children and infants. This is because there is no evidence available to prove the safety of the medicine. Consult your doctor in case your kid develops nail or skin infections or has any nail changes.'),
(28961, 'Loceryl Nail Lacquer', 'Galderma India Pvt Ltd', 'Loceryl Nail Lacquer', 'How often should you use Loceryl Nail Lacquer?', 'Loceryl Nail Lacquer contains amorolfine which is an antifungal medicine. It is used to treat fungal infections of the nails. It is applied once weekly on the affected finger or toenails. Sometimes your physician may ask you to apply it twice weekly. The affected areas must be cleaned and dried properly.  Do not stop the treatment in between even if the symptoms heal. Your doctor will recommend the exact dose and duration of the treatment based on the type of fungal infection.'),
(28962, 'Loceryl Nail Lacquer', 'Galderma India Pvt Ltd', 'Loceryl Nail Lacquer', 'Is Loceryl Nail Lacquer a steroid?', 'No, Loceryl Nail Lacquer is not a steroid. It is a medicine which is used to kill a wide variety of infection-causing fungus. It is applied on the affected nails to treat fungal infections.'),
(28963, 'Loceryl Nail Lacquer', 'Galderma India Pvt Ltd', 'Loceryl Nail Lacquer', 'Can we apply Loceryl Nail Lacquer on other parts of the body?', 'No, this medicine should not be used on other parts of the body like the eyes, oral cavity, or intravaginally. Its use should be restricted to only nails and skin. Before using the medicine consult the doctor and follow the instructions carefully.'),
(28964, 'Loceryl Nail Lacquer', 'Galderma India Pvt Ltd', 'Loceryl Nail Lacquer', 'Can Loceryl Nail Lacquer cause any local reaction or rashes?', 'Yes, the use of Loceryl Nail Lacquer may cause allergic reactions, but the probability is unknown. Such allergic reaction is not very common and is likely to occur in only susceptible or sensitive individuals. Immediately contact your doctor if you experience such reactions.'),
(28965, 'Loceryl Nail Lacquer', 'Galderma India Pvt Ltd', 'Loceryl Nail Lacquer', 'Is Loceryl Nail Lacquer safe to be used in kids?', 'No, Loceryl Nail Lacquer should not be used in children and infants. This is because there is no evidence available to prove the safety of the medicine. Consult your doctor in case your kid develops nail or skin infections or has any nail changes.'),
(28966, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'Is Locest 2mg Tablet an opioid? Is it a habit-forming medicine?', 'No, Locest 2mg Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(28967, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'Can Locest 2mg Tablet be used as a sleeping pill?', 'Locest 2mg Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Locest 2mg Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(28968, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'For how long will Locest 2mg Tablet stay in my system?', 'Locest 2mg Tablet may take around 3 days to get completely removed from the system.'),
(28969, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'Are there any symptoms that I would experience if I get addicted to Locest 2mg Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Locest 2mg Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(28970, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'If I suddenly stop taking Locest 2mg Tablet, will it affect me adversely?', 'You should reduce the dose of Locest 2mg Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(28971, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'Does Locest 2mg Tablet cause weight gain?', 'The effect of Locest 2mg Tablet on weight gain or loss is not known.'),
(28972, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'Does Locest 2mg Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Locest 2mg Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(28973, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'My old uncle is taking Locest 2mg Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Locest 2mg Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(28974, 'Locest 2mg Tablet', 'Cestlavie pharma', 'Locest 2mg Tablet', 'Are there any harmful effects of taking more than the recommended doses of Locest 2mg Tablet?', 'Taking more than the recommended dose of Locest 2mg Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Locest 2mg Tablet, seek immediate medical help immediately.'),
(28975, 'Locet 150mg Injection', 'Arvincare Pharma', 'Locet 150mg Injection', 'Is Locet 150mg Injection a good painkiller?', 'Locet 150mg Injection is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain, such as sprains, strains, and other injuries. It is also helpful in the treatment of different types of arthritis and gout. Along with that, it can be used to reduce pain and inflammation which follow after surgery.'),
(28976, 'Locet 150mg Injection', 'Arvincare Pharma', 'Locet 150mg Injection', 'How is Locet 150mg Injection administered?', 'Locet 150mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Locet 150mg Injection.'),
(28977, 'Locet 150mg Injection', 'Arvincare Pharma', 'Locet 150mg Injection', 'Does Locet 150mg Injection get you high?', 'No, Locet 150mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(28978, 'Locet 150mg Injection', 'Arvincare Pharma', 'Locet 150mg Injection', 'Can Locet 150mg Injection hurt your kidneys?', 'Long-term use and high doses of Locet 150mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include dehydrated people, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines that cause excess urination (diuretics), or medicines that have a significant impact on kidney function. Hence, for such patients, kidney function monitoring is recommended.'),
(28979, 'Locet 150mg Injection', 'Arvincare Pharma', 'Locet 150mg Injection', 'Does Locet 150mg Injection make you drowsy?', 'Locet 150mg Injection can cause drowsiness and also dizziness, fatigue (tiredness), and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(28980, 'Locet 150mg Injection', 'Arvincare Pharma', 'Locet 150mg Injection', 'What is the most important information I need to know about Locet 150mg Injection?', 'It is important to know that Locet 150mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Locet 150mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(28981, 'Locet 150mg Injection', 'Arvincare Pharma', 'Locet 150mg Injection', 'Can Locet 150mg Injection be taken during pregnancy?', 'You should not take Locet 150mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Locet 150mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Locet 150mg Injection during the first 6 months of pregnancy also.  In some cases, Locet 150mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(28982, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'Is Locet 200mg Tablet SR a good painkiller?', 'Locet 200mg Tablet SR is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(28983, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'Is Locet 200mg Tablet SR safe?', 'Locet 200mg Tablet SR is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(28984, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'Does Locet 200mg Tablet SR get you high?', 'No, Locet 200mg Tablet SR does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(28985, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'Can Locet 200mg Tablet SR hurt your kidneys?', 'Long-term use and high doses of Locet 200mg Tablet SR may cause renal problems, such as protein or blood in urine and pain during urination. Patients  who had or have heart failure, impaired kidney function and hypertension are at risk of kidney problems. The risk of developing kidney problems is also high in patients who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Along with that, Locet 200mg Tablet SR can affect kidneys of patients who are above 65 years of age or who remain dehydrated. Therefore, kidney function monitoring is recommended for such patients.'),
(28986, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'What if I forget to take a dose of Locet 200mg Tablet SR?', 'If you forget a dose of Locet 200mg Tablet SR, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(28987, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'Does Locet 200mg Tablet SR make you drowsy?', 'Locet 200mg Tablet SR can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(28988, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'What is the most important information I need to know about Locet 200mg Tablet SR?', 'It is important to know that Locet 200mg Tablet SR may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, the use of Locet 200mg Tablet SR may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(28989, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'Can Locet 200mg Tablet SR be taken during pregnancy?', 'You should not take Locet 200mg Tablet SR during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Locet 200mg Tablet SR can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Locet 200mg Tablet SR during the first 6 months of pregnancy also.  In some cases, Locet 200mg Tablet SR may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(28990, 'Locet 200mg Tablet SR', 'Arvincare Pharma', 'Locet 200mg Tablet SR', 'Is Locet 200mg Tablet SR effective?', 'Locet 200mg Tablet SR is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Locet 200mg Tablet SR too early, the symptoms may return or worsen.'),
(28991, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(28992, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'My child is restless and unable to sleep properly at night. Can I give Locet 5mg Tablet?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(28993, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'Can other medicines be given at the same time as Locet 5mg Tablet?', 'Locet 5mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Locet 5mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(28994, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'How much Locet 5mg Tablet should I give to my child?', 'Locet 5mg Tablet should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(28995, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'What if I give too much of Locet 5mg Tablet by mistake?', 'Although Locet 5mg Tablet is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(28996, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'How should Locet 5mg Tablet be stored?', 'Store Locet 5mg Tablet at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(28997, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'Does Locet 5mg Tablet make you tired and drowsy?', 'Yes, Locet 5mg Tablet can make you feel tired, sleepy, and weak.'),
(28998, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'Is Locet 5mg Tablet a steroid? What is it used for?', 'Locet 5mg Tablet is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(28999, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'How long does it take for Locet 5mg Tablet to work?', 'You will notice an improvement within an hour of taking Locet 5mg Tablet. However, it may take a little longer to notice the full benefits.'),
(29000, 'Locet 5mg Tablet', 'Apostle Remedies', 'Locet 5mg Tablet (Apostle Remedies)', 'Can I take Locet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Locet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(29001, 'Locet 5mg Tablet', 'Welbe Life Sciences', 'Locet 5mg Tablet (Welbe Life Sciences)', 'Is Locet 5mg Tablet a steroid? What is it used for?', 'No, Locet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(29002, 'Locet 5mg Tablet', 'Welbe Life Sciences', 'Locet 5mg Tablet (Welbe Life Sciences)', 'Does Locet 5mg Tablet make you tired and drowsy?', 'Yes, Locet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(29003, 'Locet 5mg Tablet', 'Welbe Life Sciences', 'Locet 5mg Tablet (Welbe Life Sciences)', 'How long does it take for Locet 5mg Tablet to work?', 'Locet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(29004, 'Locet 5mg Tablet', 'Welbe Life Sciences', 'Locet 5mg Tablet (Welbe Life Sciences)', 'Can I take Locet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Locet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(29005, 'Locet 5mg Tablet', 'Welbe Life Sciences', 'Locet 5mg Tablet (Welbe Life Sciences)', 'Is it safe to take Locet 5mg Tablet for a long time?', 'Locet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Locet 5mg Tablet for only as long as you need it.'),
(29006, 'Locet 5mg Tablet', 'Welbe Life Sciences', 'Locet 5mg Tablet (Welbe Life Sciences)', 'For how long should I continue Locet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Locet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Locet 5mg Tablet'),
(29007, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'My child is restless and unable to sleep properly at night. Can I give Locet 5mg/5ml Syrup?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(29008, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'Can other medicines be given at the same time as Locet 5mg/5ml Syrup?', 'Locet 5mg/5ml Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Locet 5mg/5ml Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(29009, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'How much Locet 5mg/5ml Syrup should I give to my child?', 'Locet 5mg/5ml Syrup should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(29010, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'What if I give too much of Locet 5mg/5ml Syrup by mistake?', 'Although Locet 5mg/5ml Syrup is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(29011, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'How should Locet 5mg/5ml Syrup be stored?', 'Store Locet 5mg/5ml Syrup at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(29012, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(29013, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'Does Locet 5mg/5ml Syrup make you tired and drowsy?', 'Yes, Locet 5mg/5ml Syrup can make you feel tired, sleepy, and weak.'),
(29014, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'Is Locet 5mg/5ml Syrup a steroid? What is it used for?', 'Locet 5mg/5ml Syrup is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(29015, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'How long does it take for Locet 5mg/5ml Syrup to work?', 'You will notice an improvement within an hour of taking Locet 5mg/5ml Syrup. However, it may take a little longer to notice the full benefits.'),
(29016, 'Locet 5mg/5ml Syrup', 'Apostle Remedies', 'Locet 5mg/5ml Syrup', 'Can I take Locet 5mg/5ml Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Locet 5mg/5ml Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(29017, 'Locet L 5mg Tablet', 'Apostle Remedies', 'Locet L 5mg Tablet', 'Is Locet L 5mg Tablet a steroid? What is it used for?', 'No, Locet L 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(29018, 'Locet L 5mg Tablet', 'Apostle Remedies', 'Locet L 5mg Tablet', 'Does Locet L 5mg Tablet make you tired and drowsy?', 'Yes, Locet L 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(29019, 'Locet L 5mg Tablet', 'Apostle Remedies', 'Locet L 5mg Tablet', 'How long does it take for Locet L 5mg Tablet to work?', 'Locet L 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(29020, 'Locet L 5mg Tablet', 'Apostle Remedies', 'Locet L 5mg Tablet', 'Can I take Locet L 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Locet L 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(29021, 'Locet L 5mg Tablet', 'Apostle Remedies', 'Locet L 5mg Tablet', 'Is it safe to take Locet L 5mg Tablet for a long time?', 'Locet L 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Locet L 5mg Tablet for only as long as you need it.'),
(29022, 'Locet L 5mg Tablet', 'Apostle Remedies', 'Locet L 5mg Tablet', 'For how long should I continue Locet L 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Locet L 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Locet L 5mg Tablet'),
(29023, 'Locet L Syrup', 'Apostle Remedies', 'Locet L Syrup', 'Is Locet L Syrup a steroid? What is it used for?', 'No, Locet L Syrup is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(29024, 'Locet L Syrup', 'Apostle Remedies', 'Locet L Syrup', 'Does Locet L Syrup make you tired and drowsy?', 'Yes, Locet L Syrup can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(29025, 'Locet L Syrup', 'Apostle Remedies', 'Locet L Syrup', 'How long does it take for Locet L Syrup to work?', 'Locet L Syrup starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(29026, 'Locet L Syrup', 'Apostle Remedies', 'Locet L Syrup', 'Can I take Locet L Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Locet L Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(29027, 'Locet L Syrup', 'Apostle Remedies', 'Locet L Syrup', 'Is it safe to take Locet L Syrup for a long time?', 'Locet L Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Locet L Syrup for only as long as you need it.'),
(29028, 'Locet L Syrup', 'Apostle Remedies', 'Locet L Syrup', 'For how long should I continue Locet L Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Locet L Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Locet L Syrup'),
(29029, 'Locet M 5mg/10mg Tablet', 'Oscar Remedies Pvt Ltd', 'Locet M 5mg/10mg Tablet', 'What is Locet M 5mg/10mg Tablet?', 'Locet M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(29030, 'Locet M 5mg/10mg Tablet', 'Oscar Remedies Pvt Ltd', 'Locet M 5mg/10mg Tablet', 'Can the use of Locet M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Locet M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(29031, 'Locet M 5mg/10mg Tablet', 'Oscar Remedies Pvt Ltd', 'Locet M 5mg/10mg Tablet', 'Can Locet M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Locet M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(29032, 'Locet M 5mg/10mg Tablet', 'Oscar Remedies Pvt Ltd', 'Locet M 5mg/10mg Tablet', 'Can the use of Locet M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Locet M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(29033, 'Locet M 5mg/10mg Tablet', 'Oscar Remedies Pvt Ltd', 'Locet M 5mg/10mg Tablet', 'Can I drink alcohol while taking Locet M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Locet M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Locet M 5mg/10mg Tablet.'),
(29034, 'Locet M 5mg/10mg Tablet', 'Oscar Remedies Pvt Ltd', 'Locet M 5mg/10mg Tablet', 'Will Locet M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Locet M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29035, 'Locet M 5mg/10mg Tablet', 'Oscar Remedies Pvt Ltd', 'Locet M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Locet M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(29036, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(29037, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'Can I decrease the dose of Locet M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(29038, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'How should Locet M Syrup be stored?', 'Locet M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(29039, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'Can Locet M Syrup make my child sleepy?', 'Locet M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(29040, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Locet M Syrup?', 'No, don’t start Locet M Syrup without speaking to your child’s doctor. Moreover, Locet M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(29041, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Locet M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(29042, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Locet M Syrup to my child?', 'Some studies show that Locet M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(29043, 'Locet M Syrup', 'Biozec Healthcare', 'Locet M Syrup', 'Can I use Locet M Syrup for treating acute asthma attacks in my child?', 'Locet M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(29044, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'What is Locet MR 100mg/325mg/250mg Tablet?', 'Locet MR 100mg/325mg/250mg Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(29045, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'What can I do along with Locet MR 100mg/325mg/250mg Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(29046, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'Can I get addicted to Locet MR 100mg/325mg/250mg Tablet?', 'No, there are no reports of any patient getting addicted to Locet MR 100mg/325mg/250mg Tablet.'),
(29047, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'Can I stop taking Locet MR 100mg/325mg/250mg Tablet when my pain is relieved?', 'Locet MR 100mg/325mg/250mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Locet MR 100mg/325mg/250mg Tablet should be continued if you are advised by your doctor to do so.'),
(29048, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'Can the use of Locet MR 100mg/325mg/250mg Tablet cause dizziness?', 'Yes, the use of Locet MR 100mg/325mg/250mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(29049, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'Can the use of Locet MR 100mg/325mg/250mg Tablet cause damage to liver?', 'Locet MR 100mg/325mg/250mg Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(29050, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'How long will Locet MR 100mg/325mg/250mg Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Locet MR 100mg/325mg/250mg Tablet.'),
(29051, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'What if I forget to take Locet MR 100mg/325mg/250mg Tablet?', 'If you forget to take the scheduled dose of Locet MR 100mg/325mg/250mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(29052, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'Will Locet MR 100mg/325mg/250mg Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29053, 'Locet MR 100mg/325mg/250mg Tablet', 'Arvincare Pharma', 'Locet MR 100mg/325mg/250mg Tablet', 'Are there any specific contraindications associated with the use of Locet MR 100mg/325mg/250mg Tablet?', 'The use of Locet MR 100mg/325mg/250mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29054, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'What is Locet P 100mg/500mg Tablet?', 'Locet P 100mg/500mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29055, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Is it safe to use Locet P 100mg/500mg Tablet?', 'Locet P 100mg/500mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(29056, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Can I stop taking Locet P 100mg/500mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Locet P 100mg/500mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29057, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Can the use of Locet P 100mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Locet P 100mg/500mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29058, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Can the use of Locet P 100mg/500mg Tablet cause dizziness?', 'Yes, the use of Locet P 100mg/500mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29059, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Locet P 100mg/500mg Tablet?', 'The use of Locet P 100mg/500mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29060, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Can Locet P 100mg/500mg Tablet be taken with vitamin B-complex?', 'Yes, Locet P 100mg/500mg Tablet can be taken with vitamin B-complex preparations. While Locet P 100mg/500mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29061, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Is Locet P 100mg/500mg Tablet helpful in relieving stomach pain?', 'No, Locet P 100mg/500mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29062, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Can the use of Locet P 100mg/500mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Locet P 100mg/500mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29063, 'Locet P 100mg/500mg Tablet', 'Arvincare Pharma', 'Locet P 100mg/500mg Tablet', 'Is it safe to take a higher dose of Locet P 100mg/500mg Tablet than recommended?', 'No, taking higher than the recommended dose of Locet P 100mg/500mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29064, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'What is Locet P Oral Suspension?', 'Locet P Oral Suspension is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29065, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Is it safe to use Locet P Oral Suspension?', 'Locet P Oral Suspension is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(29066, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Can I stop taking Locet P Oral Suspension when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Locet P Oral Suspension should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29067, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Can the use of Locet P Oral Suspension cause nausea and vomiting?', 'Yes, the use of Locet P Oral Suspension can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29068, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Can the use of Locet P Oral Suspension cause dizziness?', 'Yes, the use of Locet P Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29069, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Are there any specific contraindications associated with the use of Locet P Oral Suspension?', 'The use of Locet P Oral Suspension is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29070, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Can Locet P Oral Suspension be taken with vitamin B-complex?', 'Yes, Locet P Oral Suspension can be taken with vitamin B-complex preparations. While Locet P Oral Suspension helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(29071, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Is Locet P Oral Suspension helpful in relieving stomach pain?', 'No, Locet P Oral Suspension preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29072, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Can the use of Locet P Oral Suspension cause damage to kidneys?', 'Yes, the long-term use of Locet P Oral Suspension can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29073, 'Locet P Oral Suspension', 'Arvincare Pharma', 'Locet P Oral Suspension', 'Is it safe to take a higher dose of Locet P Oral Suspension than recommended?', 'No, taking higher than the recommended dose of Locet P Oral Suspension can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29074, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'What is Locet SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29075, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Is it safe to take Locet SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(29076, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Can I stop taking Locet SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(29077, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Can Locet SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(29078, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Can Locet SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29079, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Locet SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29080, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Can I take Locet SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29081, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Can the use of Locet SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(29082, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Locet SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29083, 'Locet SP 100mg/325mg/15mg Tablet', 'Arvincare Pharma', 'Locet SP 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Locet SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29084, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'What is Locet TH 100mg/4mg Tablet?', 'Locet TH 100mg/4mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(29085, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'Is it safe to use Locet TH 100mg/4mg Tablet?', 'Yes, Locet TH 100mg/4mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(29086, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'Can the Locet TH 100mg/4mg Tablet be stopped when my pain is relieved?', 'Locet TH 100mg/4mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Locet TH 100mg/4mg Tablet should be continued if your doctor has advised you to do so.'),
(29087, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'Can the use of Locet TH 100mg/4mg Tablet cause dizziness?', 'Yes, the use of Locet TH 100mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(29088, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'Are there any specific contraindications associated with the use of Locet TH 100mg/4mg Tablet?', 'The use of Locet TH 100mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(29089, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'Can Locet TH 100mg/4mg Tablet be taken with Vitamin B-complex?', 'Yes, Locet TH 100mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Locet TH 100mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29090, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'Can the use of Locet TH 100mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Locet TH 100mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(29091, 'Locet TH 100mg/4mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/4mg Tablet', 'Will Locet TH 100mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29092, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'What is Locet TH 100mg/8mg Tablet?', 'Locet TH 100mg/8mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(29093, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'Is it safe to use Locet TH 100mg/8mg Tablet?', 'Yes, Locet TH 100mg/8mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(29094, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'Can the Locet TH 100mg/8mg Tablet be stopped when my pain is relieved?', 'Locet TH 100mg/8mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Locet TH 100mg/8mg Tablet should be continued if your doctor has advised you to do so.'),
(29095, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'Can the use of Locet TH 100mg/8mg Tablet cause dizziness?', 'Yes, the use of Locet TH 100mg/8mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(29096, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'Are there any specific contraindications associated with the use of Locet TH 100mg/8mg Tablet?', 'The use of Locet TH 100mg/8mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(29097, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'Can Locet TH 100mg/8mg Tablet be taken with Vitamin B-complex?', 'Yes, Locet TH 100mg/8mg Tablet can be taken with Vitamin B-complex preparations. While Locet TH 100mg/8mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29098, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'Can the use of Locet TH 100mg/8mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Locet TH 100mg/8mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(29099, 'Locet TH 100mg/8mg Tablet', 'Arvincare Pharma', 'Locet TH 100mg/8mg Tablet', 'Will Locet TH 100mg/8mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29100, 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Arvincare Pharma', 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Can the use of Locet TH Forte 4mg/100mg/325mg Tablet be stopped when my pain is relieved?', 'Locet TH Forte 4mg/100mg/325mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Locet TH Forte 4mg/100mg/325mg Tablet should be continued if advised by the doctor.'),
(29101, 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Arvincare Pharma', 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Locet TH Forte 4mg/100mg/325mg Tablet?', 'The use of Locet TH Forte 4mg/100mg/325mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29102, 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Arvincare Pharma', 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Can Locet TH Forte 4mg/100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Locet TH Forte 4mg/100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Locet TH Forte 4mg/100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29103, 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Arvincare Pharma', 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Can the use of Locet TH Forte 4mg/100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Locet TH Forte 4mg/100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29104, 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Arvincare Pharma', 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Will Locet TH Forte 4mg/100mg/325mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29105, 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Arvincare Pharma', 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Can the use of Locet TH Forte 4mg/100mg/325mg Tablet cause damage to liver?', 'Locet TH Forte 4mg/100mg/325mg Tablet contains Paracetamol. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(29106, 'Locet TH Forte 4mg/100mg/325mg Tablet', 'Arvincare Pharma', 'Locet TH Forte 4mg/100mg/325mg Tablet', 'What are the instructions for storage and disposal of Locet TH Forte 4mg/100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29107, 'Locfresh Lubricant Eye Drop', 'Realmed Pharma', 'Locfresh Lubricant Eye Drop', 'What is Locfresh Lubricant Eye Drop used for?', 'Locfresh Lubricant Eye Drop is a tear substitute. It is used as a lubricant for dry eyes. It is also used for the temporary relief of burning, irritation and/or discomfort due to dryness of eyes. Moreover, it is used to lubricate and re-wet soft and rigid gas permeable contact lenses. It is also indicated to relieve dryness, irritation, and discomfort that may be associated with lens wear.'),
(29108, 'Locfresh Lubricant Eye Drop', 'Realmed Pharma', 'Locfresh Lubricant Eye Drop', 'What are the side effects of Locfresh Lubricant Eye Drop?', 'You may experience visual disturbances, eye discharge, and may notice medication residue while using this medicine. Some other side effects of this medicine include redness of the eye, eye irritation, burning and discomfort, eyelid swelling and itching of the eye.'),
(29109, 'Locfresh Lubricant Eye Drop', 'Realmed Pharma', 'Locfresh Lubricant Eye Drop', 'How should Locfresh Lubricant Eye Drop be stored?', 'Store at or below 25°C and out of the reach of children.  Do not touch the tip of the container to any surface and replace the cap after every use. Remember not to use the eye drops after the expiry date or after 30 days of opening it.'),
(29110, 'Locfresh Lubricant Eye Drop', 'Realmed Pharma', 'Locfresh Lubricant Eye Drop', 'How should Locfresh Lubricant Eye Drop be used?', 'If you are using it for dry eyes, instil 1 or 2 drops in the affected eye(s) as needed. If you are using it to lubricate soft and rigid gas-permeable lenses, apply 1 to 2 drops to each eye with the lenses on as needed or as directed by your doctor. Blink several times after pouring the drops.'),
(29111, 'Locfresh Lubricant Eye Drop', 'Realmed Pharma', 'Locfresh Lubricant Eye Drop', 'Is Locfresh Lubricant Eye Drop bad?', 'No, Locfresh Lubricant Eye Drop is a safe medicine. It is meant for external use only and is not harmful. In some patients, Locfresh Lubricant Eye Drop may cause eye irritation (burning and discomfort), eye pain, itchy eyes, visual disturbance. Immediately contact your doctor if any of these effects perists.'),
(29112, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(29113, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Can Locholes 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Locholes 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29114, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Is Locholes 10mg Tablet used for lowering cholesterol?', 'Locholes 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Locholes 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Locholes 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(29115, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Can Locholes 10mg Tablet be prescribed to children?', 'Locholes 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(29116, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Is Locholes 10mg Tablet a blood thinner?', 'No, Locholes 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(29117, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Will taking Locholes 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Locholes 10mg Tablet may increase this risk slightly. This is because Locholes 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29118, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'For how long do I need to take Locholes 10mg Tablet? Is it safe for long-term use?', 'You may need to take Locholes 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Locholes 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(29119, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Does Locholes 10mg Tablet cause weight loss?', 'No, Locholes 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Locholes 10mg Tablet.'),
(29120, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Can I stop taking Locholes 10mg Tablet?', 'No, you should not stop taking Locholes 10mg Tablet without consulting your doctor. If you think that Locholes 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(29121, 'Locholes 10mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 10mg Tablet', 'Can I take alcohol with Locholes 10mg Tablet?', 'No, it is not advised to take alcohol with Locholes 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Locholes 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Locholes 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(29122, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(29123, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Can Locholes 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Locholes 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29124, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Is Locholes 20mg Tablet used for lowering cholesterol?', 'Locholes 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Locholes 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Locholes 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(29125, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Can Locholes 20mg Tablet be prescribed to children?', 'Locholes 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(29126, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Is Locholes 20mg Tablet a blood thinner?', 'No, Locholes 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(29127, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Will taking Locholes 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Locholes 20mg Tablet may increase this risk slightly. This is because Locholes 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29128, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'For how long do I need to take Locholes 20mg Tablet? Is it safe for long-term use?', 'You may need to take Locholes 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Locholes 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(29129, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Does Locholes 20mg Tablet cause weight loss?', 'No, Locholes 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Locholes 20mg Tablet.'),
(29130, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Can I stop taking Locholes 20mg Tablet?', 'No, you should not stop taking Locholes 20mg Tablet without consulting your doctor. If you think that Locholes 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(29131, 'Locholes 20mg Tablet', 'Sanes Pharmaceuticals', 'Locholes 20mg Tablet', 'Can I take alcohol with Locholes 20mg Tablet?', 'No, it is not advised to take alcohol with Locholes 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Locholes 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Locholes 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(29132, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'For how long should I take Locholesta 10 Tablet?', 'You may need to take Locholesta 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Locholesta 10 Tablet. Stopping Locholesta 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(29133, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'Does Locholesta 10 Tablet cause weight gain?', 'No, there is no evidence of Locholesta 10 Tablet causing weight gain. If you are taking Locholesta 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(29134, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'Does Locholesta 10 Tablet make you tired?', 'Yes, Locholesta 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Locholesta 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Locholesta 10 Tablet.'),
(29135, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'Should Locholesta 10 Tablet be taken at night?', 'Locholesta 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(29136, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'What foods should be avoided when taking Locholesta 10 Tablet?', 'Locholesta 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(29137, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'How do I know whether Locholesta 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Locholesta 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Locholesta 10 Tablet versus the risks of not taking it at all.'),
(29138, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'Can Locholesta 10 Tablet cause memory loss?', 'Locholesta 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Locholesta 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(29139, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'Can Locholesta 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Locholesta 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29140, 'Locholesta 10 Tablet', 'Trinika Healthcare Pvt Ltd', 'Locholesta 10 Tablet', 'Is it true that Locholesta 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Locholesta 10 Tablet may slightly increase this risk. This is because Locholesta 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29141, 'Locid 30mg Capsule', 'Psychotropics India Ltd', 'Locid 30mg Capsule', 'What is Locid 30mg Capsule? What is it used for?', 'Locid 30mg Capsule belongs to a class of medicines known as proton pump inhibitors. Locid 30mg Capsule is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(29142, 'Locid 30mg Capsule', 'Psychotropics India Ltd', 'Locid 30mg Capsule', 'How is Locid 30mg Capsule given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Locid 30mg Capsule through the nasogastric (NG) tube. Open the Locid 30mg Capsule capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(29143, 'Locid 30mg Capsule', 'Psychotropics India Ltd', 'Locid 30mg Capsule', 'Should Locid 30mg Capsule be taken empty stomach or with food?', 'Usually, Locid 30mg Capsule is taken once a day, first thing in the morning, on an empty stomach. If you take Locid 30mg Capsule twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(29144, 'Locid 30mg Capsule', 'Psychotropics India Ltd', 'Locid 30mg Capsule', 'While taking Locid 30mg Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(29145, 'Locid 30mg Capsule', 'Psychotropics India Ltd', 'Locid 30mg Capsule', 'Is Locid 30mg Capsule used for children?', 'Yes, Locid 30mg Capsule is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Locid 30mg Capsule are established only in children between 1 to 17 years of age.'),
(29146, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'What is Locin OZ 200mg/500mg Tablet?', 'Locin OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(29147, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'Is it safe to use Locin OZ 200mg/500mg Tablet?', 'Locin OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(29148, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Locin OZ 200mg/500mg Tablet?', 'The use of Locin OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(29149, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Locin OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29150, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Locin OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29151, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'Can I stop taking Locin OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Locin OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(29152, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Locin OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29153, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'Can I take alcohol while on Locin OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Locin OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(29154, 'Locin OZ 200mg/500mg Tablet', 'JM Healthcare Pvt Ltd', 'Locin OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Locin OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29155, 'Locin-H 50mg/12.5mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Locin-H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29156, 'Locin-H 50mg/12.5mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Locin-H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Locin-H 50mg/12.5mg Tablet?', 'Yes, the use of Locin-H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(29157, 'Locin-H 50mg/12.5mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Locin-H 50mg/12.5mg Tablet', 'Can I use Locin-H 50mg/12.5mg Tablet in pregnancy?', 'No, Locin-H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Locin-H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(29158, 'Locin-H 50mg/12.5mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Locin-H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Locin-H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Locin-H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(29159, 'Locin-H 50mg/12.5mg Tablet', 'Cinerea Biotech Pvt Ltd', 'Locin-H 50mg/12.5mg Tablet', 'Can I stop taking Locin-H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Locin-H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Locin-H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(29160, 'Locin-M Tablet', 'Svap Pharmaceutical Pvt Ltd', 'Locin-M Tablet', 'What is Locin-M Tablet?', 'Locin-M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(29161, 'Locin-M Tablet', 'Svap Pharmaceutical Pvt Ltd', 'Locin-M Tablet', 'Can the use of Locin-M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Locin-M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(29162, 'Locin-M Tablet', 'Svap Pharmaceutical Pvt Ltd', 'Locin-M Tablet', 'Can Locin-M Tablet be stopped when allergy symptoms are relieved?', 'No, Locin-M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(29163, 'Locin-M Tablet', 'Svap Pharmaceutical Pvt Ltd', 'Locin-M Tablet', 'Can the use of Locin-M Tablet cause dry mouth?', 'Yes, the use of Locin-M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(29164, 'Locin-M Tablet', 'Svap Pharmaceutical Pvt Ltd', 'Locin-M Tablet', 'Can I drink alcohol while taking Locin-M Tablet?', 'No, do not take alcohol while taking Locin-M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Locin-M Tablet.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29165, 'Locin-M Tablet', 'Svap Pharmaceutical Pvt Ltd', 'Locin-M Tablet', 'Will Locin-M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Locin-M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29166, 'Locin-M Tablet', 'Svap Pharmaceutical Pvt Ltd', 'Locin-M Tablet', 'What are the instructions for storage and disposal of Locin-M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(29167, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'What is L-Ocin-OZ Infusion?', 'L-Ocin-OZ Infusion is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(29168, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'Is it safe to use L-Ocin-OZ Infusion?', 'L-Ocin-OZ Infusion is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(29169, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'Are there any specific contraindications associated with the use of L-Ocin-OZ Infusion?', 'The use of L-Ocin-OZ Infusion is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(29170, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of L-Ocin-OZ Infusion can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29171, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'What if I don\'t get better after using L-Ocin-OZ Infusion?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29172, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'Can I stop taking L-Ocin-OZ Infusion when I feel better?', 'No, do not stop taking L-Ocin-OZ Infusion and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(29173, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'What if I miss my dose?', 'Take L-Ocin-OZ Infusion as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29174, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'Can I take alcohol while on L-Ocin-OZ Infusion?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by L-Ocin-OZ Infusion. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(29175, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'What are the instructions for the storage and disposal of L-Ocin-OZ Infusion?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29176, 'L-Ocin-OZ Infusion', 'Zoic Lifesciences', 'L-Ocin-OZ Infusion', 'What is L-Ocin-OZ Infusion?', 'L-Ocin-OZ Infusion is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(29177, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'What is L-Ocin-OZ Tablet?', 'L-Ocin-OZ Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(29178, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'Is it safe to use L-Ocin-OZ Tablet?', 'L-Ocin-OZ Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(29179, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'Are there any specific contraindications associated with the use of L-Ocin-OZ Tablet?', 'The use of L-Ocin-OZ Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(29180, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of L-Ocin-OZ Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29181, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'What if I don\'t get better after using L-Ocin-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29182, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'Can I stop taking L-Ocin-OZ Tablet when I feel better?', 'No, do not stop taking L-Ocin-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(29183, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'What if I miss my dose?', 'Take L-Ocin-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29184, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'Can I take alcohol while on L-Ocin-OZ Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by L-Ocin-OZ Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(29185, 'L-Ocin-OZ Tablet', 'Zoic Lifesciences', 'L-Ocin-OZ Tablet', 'What are the instructions for the storage and disposal of L-Ocin-OZ Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29186, 'Locipil Tablet', 'Corona Remedies Pvt Ltd', 'Locipil Tablet', 'What is Locipil Tablet and what is it used for?', 'Locipil Tablet is a combined oral contraceptive medicine that contains two hormones estrogen and progesterone. It is used to prevent pregnancy.'),
(29187, 'Locipil Tablet', 'Corona Remedies Pvt Ltd', 'Locipil Tablet', 'How and in what dose should I take Locipil Tablet?', 'Take this medicine as per the advice of your doctor. However, take it at the same time each day, to ensure consistent levels of medicine in your body.'),
(29188, 'Locipil Tablet', 'Corona Remedies Pvt Ltd', 'Locipil Tablet', 'What if I forget to take Locipil Tablet?', 'If you forget to take one tablet, take it as soon as you remember, even if it means taking two tablets at the same time and then follow the usual dosing schedule. However, if you forget to take two or more doses, you may not be totally protected against pregnancy. In this case, start taking the tablet as soon as you remember and use a non-hormonal method of contraception such as condoms for at least next 7 days to prevent pregnancy. Frequent missing of doses may lead to unexpected vaginal bleeding or spotting (blood stain). Consult your doctor, if this persists.'),
(29189, 'Locipil Tablet', 'Corona Remedies Pvt Ltd', 'Locipil Tablet', 'What if I vomit after taking Locipil Tablet?', 'If you vomit within 3-4 hours after taking Locipil Tablet, then it is considered as a missed dose. So, you should take another dose as soon as you feel well enough.'),
(29190, 'Locipil Tablet', 'Corona Remedies Pvt Ltd', 'Locipil Tablet', 'What are the common side effects of taking Locipil Tablet?', 'You may experience irregular vaginal bleeding while taking Locipil Tablet. Other common side effects include headache, nausea (feeling sick), acne, depression (sad mood), and breast pain. Most of them are temporary if these persist consult with your doctor.'),
(29191, 'Locip-TZ 500mg/600mg Tablet', 'Forgo Pharmaceuticals Pvt Ltd', 'Locip-TZ 500mg/600mg Tablet', 'What is Locip-TZ 500mg/600mg Tablet?', 'Locip-TZ 500mg/600mg Tablet is a combination of two medicines: Tinidazole and Ciprofloxacin. They work by killing the harmful microorganisms that can cause infection. Together they help to treat the infection more effectively.'),
(29192, 'Locip-TZ 500mg/600mg Tablet', 'Forgo Pharmaceuticals Pvt Ltd', 'Locip-TZ 500mg/600mg Tablet', 'Is it safe to use Locip-TZ 500mg/600mg Tablet?', 'Locip-TZ 500mg/600mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, metallic taste, heartburn and other uncommon or rare side effects. If you experience any problem due to the medication, inform your doctor as soon as possible.'),
(29193, 'Locip-TZ 500mg/600mg Tablet', 'Forgo Pharmaceuticals Pvt Ltd', 'Locip-TZ 500mg/600mg Tablet', 'What if I don\'t get better after using Locip-TZ 500mg/600mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29194, 'Locip-TZ 500mg/600mg Tablet', 'Forgo Pharmaceuticals Pvt Ltd', 'Locip-TZ 500mg/600mg Tablet', 'Can I stop taking Locip-TZ 500mg/600mg Tablet when I feel better?', 'No, do not stop taking Locip-TZ 500mg/600mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(29195, 'Locip-TZ 500mg/600mg Tablet', 'Forgo Pharmaceuticals Pvt Ltd', 'Locip-TZ 500mg/600mg Tablet', 'What if I miss my dose?', 'Take Locip-TZ 500mg/600mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29196, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'What is Lock 40  Injection used for?', 'Lock 40  Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lock 40  Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(29197, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'Can I take antacids along with Lock 40  Injection?', 'Yes, you can take antacids along with Lock 40  Injection. Take it 2 hours before or after you take Lock 40  Injection.'),
(29198, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'How long does it take for Lock 40  Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lock 40  Injection to work properly so you may still have some symptoms during this time.'),
(29199, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'Does Lock 40  Injection cause weight gain?', 'Although rare but long-term treatment with Lock 40  Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(29200, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'Can I take alcohol with Lock 40  Injection?', 'No, alcohol intake is not advised with Lock 40  Injection. Alcohol itself does not affect the working of Lock 40  Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(29201, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'What dietary changes should I make to get relief from acidity?', 'Lock 40  Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(29202, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'Can I take Lock 40  Injection for a long term?', 'Lock 40  Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lock 40  Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lock 40  Injection as advised by your doctor and under their supervision.'),
(29203, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'Are painkillers safe to take along with Lock 40  Injection?', 'Yes, it is safe to take painkillers along with Lock 40  Injection. Lock 40  Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Lock 40  Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(29204, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'Is a single dose of Lock 40  Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lock 40  Injection you may get relief with the symptoms. Lock 40  Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lock 40  Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lock 40  Injection regularly for 2 weeks as prescribed.'),
(29205, 'Lock 40 Injection', 'Shrion Pharmaceuticals', 'Lock 40 Injection', 'What are the long term side effects of Lock 40  Injection?', 'If Lock 40  Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(29206, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'What is Lock 40 Tablet used for?', 'Lock 40 Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lock 40 Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(29207, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'How long does it take for Lock 40 Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lock 40 Tablet to work properly so you may still have some symptoms during this time.'),
(29208, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'Is a single dose of Lock 40 Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lock 40 Tablet you may get relief with the symptoms. Lock 40 Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lock 40 Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lock 40 Tablet regularly for 2 weeks as prescribed.'),
(29209, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'Is Lock 40 Tablet safe?', 'Yes, Lock 40 Tablet is relatively safe. Most of the people who take Lock 40 Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(29210, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'Can I take Lock 40 Tablet for a long term?', 'Lock 40 Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Lock 40 Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lock 40 Tablet as advised by your doctor and under their supervision.'),
(29211, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'What are the long term side effects of Lock 40 Tablet?', 'If Lock 40 Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(29212, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'What is the best time to take Lock 40 Tablet?', 'Usually, Lock 40 Tablet is taken once a day, first thing in the morning. If you take Lock 40 Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(29213, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'Can I stop taking Lock 40 Tablet if I feel better?', 'If you have been taking Lock 40 Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lock 40 Tablet.'),
(29214, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'Does Lock 40 Tablet cause weight gain?', 'Although rare but long-term treatment with Lock 40 Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(29215, 'Lock 40 Tablet', 'Shrion Pharmaceuticals', 'Lock 40 Tablet', 'Can I take alcohol with Lock 40 Tablet?', 'No, alcohol intake is not advised with Lock 40 Tablet. Alcohol itself does not affect the working of Lock 40 Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(29216, 'Lock 5mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock 5mg Tablet', 'Is Lock 5mg Tablet a steroid? What is it used for?', 'No, Lock 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(29217, 'Lock 5mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock 5mg Tablet', 'Does Lock 5mg Tablet make you tired and drowsy?', 'Yes, Lock 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(29218, 'Lock 5mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock 5mg Tablet', 'How long does it take for Lock 5mg Tablet to work?', 'Lock 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(29219, 'Lock 5mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock 5mg Tablet', 'Can I take Lock 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lock 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(29220, 'Lock 5mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock 5mg Tablet', 'Is it safe to take Lock 5mg Tablet for a long time?', 'Lock 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lock 5mg Tablet for only as long as you need it.'),
(29221, 'Lock 5mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock 5mg Tablet', 'For how long should I continue Lock 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lock 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lock 5mg Tablet'),
(29222, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'What is Lock Cold Tablet?', 'Lock Cold Tablet is a combination of five medicines: Caffeine, Cetirizine, Nimesulide, Paracetamol and Phenylephrine. This combination is helpful in relieving the symptoms of cold. These symptoms include body ache, headache, fatigue, fever, watery eyes, sneezing, cough, sore throat, runny and stuffy nose.'),
(29223, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'Can I breastfeed while taking Lock Cold Tablet?', 'No, it is not advisable to breastfeed while using Lock Cold Tablet. This medicine contains cetirizine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(29224, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'Can the use of Lock Cold Tablet cause damage to liver?', 'Lock Cold Tablet contains Paracetamol and Nimesulide. These medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(29225, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'Are there any foods which I should avoid while taking Lock Cold Tablet?', 'Lock Cold Tablet contains caffeine. So, it is preferable to avoid medicines or food that also contain caffeine. Foods like coffee, tea, cola drinks and chocolate should be avoided as they may add to your total caffeine intake. Increased caffeine intake can cause difficulty in sleeping, you may experience tremors and/or may have chest discomfort. Also, avoid drinking alcohol (beer, wine, etc) while taking this medicine.'),
(29226, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'Can the use of Lock Cold Tablet cause sleepiness or drowsiness?', 'Yes, Lock Cold Tablet may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(29227, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'Are there any serious side effects associated with the use of Lock Cold Tablet?', 'Serious side effects with Lock Cold Tablet are uncommon and rare. Tell your doctor as soon as possible if you notice allergic reactions, skin rash or peeling, mouth ulcers, breathing problems, unexplained bleeding, recurrent fevers or infections, vision disturbances, fast or irregular heartbeat. These side effects are uncommon but may be serious and may need urgent medical attention.'),
(29228, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'Will a higher than the recommended dose of Lock Cold Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29229, 'Lock Cold Tablet', 'Brahamputra Research Pvt Ltd', 'Lock Cold Tablet', 'What are the instructions for the storage and disposal of Lock Cold Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29230, 'Lock M 5mg/10mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock M 5mg/10mg Tablet', 'What is Lock M 5mg/10mg Tablet?', 'Lock M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(29231, 'Lock M 5mg/10mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock M 5mg/10mg Tablet', 'Can the use of Lock M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lock M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(29232, 'Lock M 5mg/10mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock M 5mg/10mg Tablet', 'Can Lock M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lock M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(29233, 'Lock M 5mg/10mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock M 5mg/10mg Tablet', 'Can the use of Lock M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lock M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(29234, 'Lock M 5mg/10mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lock M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lock M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lock M 5mg/10mg Tablet.'),
(29235, 'Lock M 5mg/10mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock M 5mg/10mg Tablet', 'Will Lock M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lock M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29236, 'Lock M 5mg/10mg Tablet', 'Brahamputra Research Pvt Ltd', 'Lock M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lock M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(29237, 'Lock Uls 50mg Injection', 'Tribhawan Injectables', 'Lock Uls 50mg Injection', 'Is Lock Uls 50mg Injection safe for long-term use?', 'There is limited data available on whether Lock Uls 50mg Injection can be used for the long term or not, but it is a relatively safe medicine. You should take it for the duration advised by your doctor. Do not take over-the-counter Lock Uls 50mg Injection for longer than 2 weeks unless advised by your doctor.'),
(29238, 'Lock Uls 50mg Injection', 'Tribhawan Injectables', 'Lock Uls 50mg Injection', 'Is Lock Uls 50mg Injection effective?', 'Lock Uls 50mg Injection would be effective only if used for the right indication in the dose and the duration as advised by the doctor. In case you do not find any change in your condition while taking this medicine, please talk to your doctor. Do not change the dose or stop taking the medicine without consulting your doctor.'),
(29239, 'Lock Uls 50mg Injection', 'Tribhawan Injectables', 'Lock Uls 50mg Injection', 'What are the dos and don’ts while taking Lock Uls 50mg Injection?', 'Avoid taking aspirin and other painkillers used to treat arthritis, period pain, or headache. These medicines may irritate the stomach and make your condition worse. Contact your doctor who may suggest other medicines. Avoid coffee, tea, cocoa, and cola drinks because these contain ingredients that may irritate your stomach. Eat smaller, more frequent meals. Eat slowly and chew your food carefully. Try not to rush while having meals. You should stop or cut down on smoking.'),
(29240, 'Lock Uls 50mg Injection', 'Tribhawan Injectables', 'Lock Uls 50mg Injection', 'How long does it take for Lock Uls 50mg Injection to start working?', 'Lock Uls 50mg Injection starts working as fast as 15 minutes from when it is given. Its effect is seen to last all day or all night.'),
(29241, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'What is Lockacid 40mg Injection used for?', 'Lockacid 40mg Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lockacid 40mg Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(29242, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'Can I take antacids along with Lockacid 40mg Injection?', 'Yes, you can take antacids along with Lockacid 40mg Injection. Take it 2 hours before or after you take Lockacid 40mg Injection.'),
(29243, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'How long does it take for Lockacid 40mg Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lockacid 40mg Injection to work properly so you may still have some symptoms during this time.'),
(29244, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'Does Lockacid 40mg Injection cause weight gain?', 'Although rare but long-term treatment with Lockacid 40mg Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(29245, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'Can I take alcohol with Lockacid 40mg Injection?', 'No, alcohol intake is not advised with Lockacid 40mg Injection. Alcohol itself does not affect the working of Lockacid 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(29246, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Lockacid 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(29247, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'Can I take Lockacid 40mg Injection for a long term?', 'Lockacid 40mg Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lockacid 40mg Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lockacid 40mg Injection as advised by your doctor and under their supervision.'),
(29248, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'Are painkillers safe to take along with Lockacid 40mg Injection?', 'Yes, it is safe to take painkillers along with Lockacid 40mg Injection. Lockacid 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Lockacid 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(29249, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'Is a single dose of Lockacid 40mg Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lockacid 40mg Injection you may get relief with the symptoms. Lockacid 40mg Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lockacid 40mg Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lockacid 40mg Injection regularly for 2 weeks as prescribed.'),
(29250, 'Lockacid 40mg Injection', 'Venus Remedies Ltd', 'Lockacid 40mg Injection', 'What are the long term side effects of Lockacid 40mg Injection?', 'If Lockacid 40mg Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(29251, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'What is Lockdol  Tablet?', 'Lockdol  Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29252, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Is it safe to use Lockdol  Tablet?', 'Lockdol  Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(29253, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Can I stop taking Lockdol  Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lockdol  Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29254, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Can the use of Lockdol  Tablet cause nausea and vomiting?', 'Yes, the use of Lockdol  Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29255, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Can the use of Lockdol  Tablet cause dizziness?', 'Yes, the use of Lockdol  Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29256, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Are there any specific contraindications associated with the use of Lockdol  Tablet?', 'The use of Lockdol  Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29257, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Can Lockdol  Tablet be taken with vitamin B-complex?', 'Yes, Lockdol  Tablet can be taken with vitamin B-complex preparations. While Lockdol  Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(29258, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Is Lockdol  Tablet helpful in relieving stomach pain?', 'No, Lockdol  Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29259, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Can the use of Lockdol  Tablet cause damage to kidneys?', 'Yes, the long-term use of Lockdol  Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29260, 'Lockdol Tablet', 'Indospectrum Pharmaceuticals Pvt. Ltd.', 'Lockdol Tablet', 'Is it safe to take a higher dose of Lockdol  Tablet than recommended?', 'No, taking higher than the recommended dose of Lockdol  Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29261, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'What is Lock-DSR Capsule?', 'Lock-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(29262, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'Is it safe to use Lock-DSR Capsule?', 'Lock-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(29263, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'Are there any specific contraindications associated with the use of Lock-DSR Capsule?', 'The use of Lock-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(29264, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'Can the use of Lock-DSR Capsule cause dry mouth?', 'Yes, the use of Lock-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(29265, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'Can the use of Lock-DSR Capsule cause diarrhea?', 'Yes, the use of Lock-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(29266, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'What are the instructions for storage and disposal of Lock-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29267, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'What is Lock-DSR Capsule price?', 'You can get Lock-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(29268, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'While taking Lock-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(29269, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'Can I take alcohol while taking Lock-DSR Capsule?', 'No, alcohol intake is not advised with Lock-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(29270, 'Lock-DSR Capsule', 'Shrion Pharmaceuticals', 'Lock-DSR Capsule', 'Can I stop taking Lock-DSR Capsule if I feel better?', 'If you have been taking Lock-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(29271, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'What is Locker 20mg Tablet used for?', 'Locker 20mg Tablet is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis, or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Locker 20mg Tablet also prevents acidity associated with the use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES).'),
(29272, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'How long does it take for Locker 20mg Tablet to work?', 'Locker 20mg Tablet starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(29273, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'What is the best time to take Locker 20mg Tablet?', 'It is best to take Locker 20mg Tablet before your breakfast. If you are taking two doses, take it in the morning and evening. Locker 20mg Tablet is more effective when it is taken an hour before your food.'),
(29274, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'Can I stop taking Locker 20mg Tablet if I feel better?', 'No, do not stop taking Locker 20mg Tablet before completing the full course of treatment. You will start to feel better before your treatment is complete.'),
(29275, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'Does Locker 20mg Tablet cause bone problems?', 'Yes, long-term use of Locker 20mg Tablet can cause thinning of bones, which is called osteoporosis. Locker 20mg Tablet decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(29276, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'How is Locker 20mg Tablet useful in the treatment of H. pylori infection?', 'Locker 20mg Tablet is used along with antibiotics for the treatment of H.Pylori infection. It works by decreasing stomach acid volume and decreasing breakdown and washout of antibiotics leading to an increased antibiotic concentration and tissue penetration. It also helps in symptomatic relief by decreasing associated acidity, reflux, and heartburn.'),
(29277, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'Can I take Locker 20mg Tablet with vitamin D?', 'Yes, vitamin D can be taken along with Locker 20mg Tablet. Vitamin D is generally advised to be taken as a supplement with Locker 20mg Tablet as the long-term use of Locker 20mg Tablet decreases the absorption of calcium and may lead to calcium deficiency. This can lead to osteoporosis (thinning of bones) and increase the risk of bone fractures like hip, wrist, and spine fractures. Please consult your doctor to know about ways to prevent this.'),
(29278, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'Can long term use of Locker 20mg Tablet cause magnesium deficiency?', 'Long-term use of Locker 20mg Tablet can lower magnesium levels in patients taking multiple daily doses for 3 months or longer. Get your magnesium levels checked at regular intervals. Tell your doctor if you experience seizures (fits), dizziness, abnormal or fast heartbeat, jitteriness, jerking movements or shaking (tremors), muscle weakness, spasms of the hands and feet, cramps, muscle aches.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29279, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'Is it safe to use Locker 20mg Tablet for a long period of time?', 'Locker 20mg Tablet should be used for as long as it has been prescribed by your doctor. Locker 20mg Tablet is usually considered to be safe when taken in the recommended dose and duration. If Locker 20mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood, making you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, subacute cutaneous lupus erythematosus, osteoporosis, and vitamin B12 deficiency.'),
(29280, 'Locker 20mg Tablet', 'Leo Life Science Pvt Ltd', 'Locker 20mg Tablet', 'Can I take alcohol with Locker 20mg Tablet?', 'No, alcohol intake is not advised with Locker 20mg Tablet. Alcohol itself does not affect the working of Locker 20mg Tablet, but it can increase acid production. This may further cause worsening of your symptoms.'),
(29281, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'What is Locker D 30mg/20mg Capsule SR?', 'Locker D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(29282, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'What are the contraindications of Locker D 30mg/20mg Capsule SR?', 'The use of Locker D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(29283, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'Can the use of Locker D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Locker D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(29284, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'Can the use of Locker D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Locker D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(29285, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Locker D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29286, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'Is it safe to use Locker D 30mg/20mg Capsule SR?', 'Yes, Locker D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(29287, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'What is the best time to take Locker D 30mg/20mg Capsule SR?', 'It is best to take Locker D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(29288, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'Can the use of Locker D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Locker D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(29289, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'What is Locker D 30mg/20mg Capsule SR?', 'Locker D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(29290, 'Locker D 30mg/20mg Capsule SR', 'Leo Life Science Pvt Ltd', 'Locker D 30mg/20mg Capsule SR', 'What are the contraindications of Locker D 30mg/20mg Capsule SR?', 'The use of Locker D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(29291, 'Lockheed 1000mg Injection', 'Metamorf Lifesciences', 'Lockheed 1000mg Injection', 'Is Lockheed 1000mg Injection safe?', 'Lockheed 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(29292, 'Lockheed 1000mg Injection', 'Metamorf Lifesciences', 'Lockheed 1000mg Injection', 'How long does Lockheed 1000mg Injection take to work?', 'Usually, Lockheed 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(29293, 'Lockheed 1000mg Injection', 'Metamorf Lifesciences', 'Lockheed 1000mg Injection', 'Who should not take Lockheed 1000mg Injection?', 'Lockheed 1000mg Injection should not be prescribed to people who are allergic to Lockheed 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Lockheed 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(29294, 'Lockheed 1000mg Injection', 'Metamorf Lifesciences', 'Lockheed 1000mg Injection', 'What if I do not get better after using Lockheed 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(29295, 'Lockheed 1000mg Injection', 'Metamorf Lifesciences', 'Lockheed 1000mg Injection', 'For how long does Lockheed 1000mg Injection stay in the body?', 'Usually, Lockheed 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(29296, 'Lockheed 1000mg Injection', 'Metamorf Lifesciences', 'Lockheed 1000mg Injection', 'Is Lockheed 1000mg Injection effective?', 'Lockheed 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lockheed 1000mg Injection too early, the symptoms may return or worsen.'),
(29297, 'Lockheed 1000mg Injection', 'Metamorf Lifesciences', 'Lockheed 1000mg Injection', 'How is Lockheed 1000mg Injection administered?', 'Lockheed 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lockheed 1000mg Injection.'),
(29298, 'Lockheed SB 1000mg/500mg Injection', 'Metamorf Lifesciences', 'Lockheed SB 1000mg/500mg Injection', 'Can the use of Lockheed SB 1000mg/500mg Injection cause allergic reaction?', 'Yes, Lockheed SB 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(29299, 'Lockheed SB 1000mg/500mg Injection', 'Metamorf Lifesciences', 'Lockheed SB 1000mg/500mg Injection', 'Can the use of Lockheed SB 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Lockheed SB 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(29300, 'Lockheed SB 1000mg/500mg Injection', 'Metamorf Lifesciences', 'Lockheed SB 1000mg/500mg Injection', 'How long does Lockheed SB 1000mg/500mg Injection takes to work?', 'Usually, Lockheed SB 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29301, 'Lockheed SB 1000mg/500mg Injection', 'Metamorf Lifesciences', 'Lockheed SB 1000mg/500mg Injection', 'What if I don\'t get better after using Lockheed SB 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29302, 'Lockheed SB 1000mg/500mg Injection', 'Metamorf Lifesciences', 'Lockheed SB 1000mg/500mg Injection', 'Can I stop taking Lockheed SB 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Lockheed SB 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29303, 'Lockmycin 500mg Injection', 'Samarth Life Sciences Pvt Ltd', 'Lockmycin 500mg Injection', 'How long does Lockmycin 500mg Injection take to work?', 'Usually, Lockmycin 500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29304, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'For how long should I take Lockstat 10 Tablet?', 'You may need to take Lockstat 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lockstat 10 Tablet. Stopping Lockstat 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(29305, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'Does Lockstat 10 Tablet cause weight gain?', 'No, there is no evidence of Lockstat 10 Tablet causing weight gain. If you are taking Lockstat 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(29306, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'Does Lockstat 10 Tablet make you tired?', 'Yes, Lockstat 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lockstat 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lockstat 10 Tablet.'),
(29307, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'Should Lockstat 10 Tablet be taken at night?', 'Lockstat 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(29308, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'What foods should be avoided when taking Lockstat 10 Tablet?', 'Lockstat 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(29309, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'How do I know whether Lockstat 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lockstat 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lockstat 10 Tablet versus the risks of not taking it at all.'),
(29310, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'Can Lockstat 10 Tablet cause memory loss?', 'Lockstat 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lockstat 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(29311, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'Can Lockstat 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lockstat 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29312, 'Lockstat 10 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 10 Tablet', 'Is it true that Lockstat 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lockstat 10 Tablet may slightly increase this risk. This is because Lockstat 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29313, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'For how long should I take Lockstat 20 Tablet?', 'You may need to take Lockstat 20 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lockstat 20 Tablet. Stopping Lockstat 20 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(29314, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'Does Lockstat 20 Tablet cause weight gain?', 'No, there is no evidence of Lockstat 20 Tablet causing weight gain. If you are taking Lockstat 20 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(29315, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'Does Lockstat 20 Tablet make you tired?', 'Yes, Lockstat 20 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lockstat 20 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lockstat 20 Tablet.'),
(29316, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'Should Lockstat 20 Tablet be taken at night?', 'Lockstat 20 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(29317, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'What foods should be avoided when taking Lockstat 20 Tablet?', 'Lockstat 20 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(29318, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'How do I know whether Lockstat 20 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lockstat 20 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lockstat 20 Tablet versus the risks of not taking it at all.'),
(29319, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'Can Lockstat 20 Tablet cause memory loss?', 'Lockstat 20 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lockstat 20 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(29320, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'Can Lockstat 20 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lockstat 20 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29321, 'Lockstat 20 Tablet', 'Addii Biotech Pvt Ltd', 'Lockstat 20 Tablet', 'Is it true that Lockstat 20 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lockstat 20 Tablet may slightly increase this risk. This is because Lockstat 20 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29322, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'Can the Lockstat ASP Capsule cause muscle pain?', 'Yes, Lockstat ASP Capsule may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(29323, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'Will I need to stop Lockstat ASP Capsule before surgery or dental procedure?', 'Lockstat ASP Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lockstat ASP Capsule. You should not stop taking Lockstat ASP Capsule on your own.'),
(29324, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'What lifestyle changes should be adopted while taking Lockstat ASP Capsule?', 'Making lifestyle changes can boost your health while taking Lockstat ASP Capsule. Stop smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(29325, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'Which painkiller is safe while taking Lockstat ASP Capsule?', 'Paracetamol is safe to use while taking Lockstat ASP Capsule for relieving pain. Avoid the use of other painkillers while taking Lockstat ASP Capsule, as they may increase the risk of bleeding.'),
(29326, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'Can the use of Lockstat ASP Capsule increase the risk of bleeding?', 'Yes, Lockstat ASP Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(29327, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'How to manage indigestion associated with Lockstat ASP Capsule?', 'Take Lockstat ASP Capsule with or after food to avoid indigestion. Talk to your doctor, if the indigestion problem persists.'),
(29328, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'What medicines should I avoid while taking Lockstat ASP Capsule?', 'Lockstat ASP Capsule can interact with several medicines and can cause serious life-threatening problems. Talk to your doctor and inform him about using Lockstat ASP Capsule before taking any prescription or non-prescription medicine.'),
(29329, 'Lockstat ASP Capsule', 'Lifecare Neuro Products Ltd', 'Lockstat ASP Capsule', 'What are the instructions for the storage and disposal of Lockstat ASP Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29330, 'Lockstat Gold Capsule', 'Addii Biotech Pvt Ltd', 'Lockstat Gold Capsule', 'What are the instructions for the storage and disposal of Lockstat Gold Capsule?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29331, 'Lockstat Gold Capsule', 'Addii Biotech Pvt Ltd', 'Lockstat Gold Capsule', 'Will I need to stop Lockstat Gold Capsule before surgery or dental procedure?', 'Lockstat Gold Capsule may increase the risk of bleeding during a surgery or dental procedure. Therefore, you may be asked by your doctor to stop taking Lockstat Gold Capsule. However, do not stop taking Lockstat Gold Capsule on your own.'),
(29332, 'Lockstat Gold Capsule', 'Addii Biotech Pvt Ltd', 'Lockstat Gold Capsule', 'What are the lifestyle changes to adapt while taking Lockstat Gold Capsule?', 'Making lifestyle changes can boost your health while taking Lockstat Gold Capsule. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(29333, 'Lockstat Gold Capsule', 'Addii Biotech Pvt Ltd', 'Lockstat Gold Capsule', 'Which painkiller is safe while taking Lockstat Gold Capsule?', 'Paracetamol is safe to use while taking Lockstat Gold Capsule for relieving pain. Avoid the use of other painkillers while taking Lockstat Gold Capsule, as they may increase the risk of bleeding.'),
(29334, 'Lockstat Gold Capsule', 'Addii Biotech Pvt Ltd', 'Lockstat Gold Capsule', 'Can the use of Lockstat Gold Capsule increase the risk of bleeding?', 'Yes, Lockstat Gold Capsule increases the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(29335, 'Loclan 10mg Tablet', 'Proqol Healthcare', 'Loclan 10mg Tablet', 'What is the use of Loclan 10mg Tablet?', 'Loclan 10mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(29336, 'Loclan 10mg Tablet', 'Proqol Healthcare', 'Loclan 10mg Tablet', 'Which is better amlodipine or Loclan 10mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Loclan 10mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Loclan 10mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(29337, 'Loclan 10mg Tablet', 'Proqol Healthcare', 'Loclan 10mg Tablet', 'What are the side effects of Loclan 10mg Tablet?', 'Loclan 10mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(29338, 'Loclan 10mg Tablet', 'Proqol Healthcare', 'Loclan 10mg Tablet', 'Is Loclan 10mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Loclan 10mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(29339, 'Loclan 10mg Tablet', 'Proqol Healthcare', 'Loclan 10mg Tablet', 'Should I take Loclan 10mg Tablet in the morning or at night?', 'Loclan 10mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(29340, 'Loclan 10mg Tablet', 'Proqol Healthcare', 'Loclan 10mg Tablet', 'How long do I need to take Loclan 10mg Tablet?', 'You should keep on taking Loclan 10mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Loclan 10mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(29341, 'Loclan 10mg Tablet', 'Proqol Healthcare', 'Loclan 10mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Loclan 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Loclan 10mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Loclan 10mg Tablet and to keep healthy.'),
(29342, 'Loclan 5mg Tablet', 'Proqol Healthcare', 'Loclan 5mg Tablet', 'What is the use of Loclan 5mg Tablet?', 'Loclan 5mg Tablet is a medicine used to treat high blood pressure. It belongs to a group of medicines which block the calcium channels in the blood vessel. It works by relaxing the blood vessels in patients with high blood pressure. This widens the diameter of the blood vessels which helps the blood to pass through them more easily.'),
(29343, 'Loclan 5mg Tablet', 'Proqol Healthcare', 'Loclan 5mg Tablet', 'Which is better amlodipine or Loclan 5mg Tablet?', 'Both these medicines are used in the treatment of blood pressure and are equally good in effectively reducing the blood pressure. Loclan 5mg Tablet has also been found to be beneficial in patients with kidney problems as compared to amlodipine. Additionally, while amlodipine may have chances of causing mild ankle swelling, Loclan 5mg Tablet has been found to have lesser chances of causing ankle swelling, tachycardia and palpitations. Your doctor will suggest either of these after seeing what suits you.'),
(29344, 'Loclan 5mg Tablet', 'Proqol Healthcare', 'Loclan 5mg Tablet', 'What are the side effects of Loclan 5mg Tablet?', 'Loclan 5mg Tablet is generally well tolerated but sometimes can also be associated with side effects like headache, dizziness, flushing, palpitations, low blood pressure, and stomach problems. It may also cause increased urination, ankle swelling, and lethargy. These side effects are not common in everyone but may occur in some individuals. Do consult your doctor if you notice any side effects after taking this medicine.'),
(29345, 'Loclan 5mg Tablet', 'Proqol Healthcare', 'Loclan 5mg Tablet', 'Is Loclan 5mg Tablet good for patients of high blood pressure with kidney impairment?', 'Yes, Loclan 5mg Tablet has been shown to have protective effects on the kidney cells, thereby preventing them from damage. It has also been shown to decrease protein leakage from the kidney in patients who have diabetes as well as high blood pressure.'),
(29346, 'Loclan 5mg Tablet', 'Proqol Healthcare', 'Loclan 5mg Tablet', 'Should I take Loclan 5mg Tablet in the morning or at night?', 'Loclan 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(29347, 'Loclan 5mg Tablet', 'Proqol Healthcare', 'Loclan 5mg Tablet', 'How long do I need to take Loclan 5mg Tablet?', 'You should keep on taking Loclan 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Loclan 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(29348, 'Loclan 5mg Tablet', 'Proqol Healthcare', 'Loclan 5mg Tablet', 'What changes can I make to control my blood pressure better?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Loclan 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your blood pressure normal. Stop smoking and taking alcohol as this helps in lowering your blood pressure and helps to prevent heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Loclan 5mg Tablet. You should consult your doctor if you need any further help to get maximum benefit of Loclan 5mg Tablet and to keep healthy.'),
(29349, 'Loclan T 10mg/40mg Tablet', 'Proqol Healthcare', 'Loclan T 10mg/40mg Tablet', 'What lifestyle changes should I make while using Loclan T 10mg/40mg Tablet?', 'Modification in lifestyle changes can help boost your health while taking Loclan T 10mg/40mg Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce your risk of heart attack.'),
(29350, 'Loclan T 10mg/40mg Tablet', 'Proqol Healthcare', 'Loclan T 10mg/40mg Tablet', 'How would I know if I have high potassium levels?', 'Your doctor will check your blood potassium levels periodically for high potassium levels. Make sure not to miss any future appointments with the doctor.'),
(29351, 'Loclan T 10mg/40mg Tablet', 'Proqol Healthcare', 'Loclan T 10mg/40mg Tablet', 'Can I stop taking Loclan T 10mg/40mg Tablet if I feel well?', 'No, do not stop the medication without consulting with the doctor. It should be used strictly as advised by your doctor, even if you feel well. Stopping Loclan T 10mg/40mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(29352, 'Loclan T 10mg/40mg Tablet', 'Proqol Healthcare', 'Loclan T 10mg/40mg Tablet', 'What is the rationale behind this combination medicine?', 'Loclan T 10mg/40mg Tablet is a medicine that contains Telmisartan and Cilnidipine. These two medicines are combined to lower the blood pressure more effectively, thereby lowering the chances of having a stroke or heart attack.'),
(29353, 'Loclan T 10mg/40mg Tablet', 'Proqol Healthcare', 'Loclan T 10mg/40mg Tablet', 'Can I feel dizzy after taking Loclan T 10mg/40mg Tablet?', 'Yes, the use of Loclan T 10mg/40mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(29354, 'Loclan T 10mg/40mg Tablet', 'Proqol Healthcare', 'Loclan T 10mg/40mg Tablet', 'Can I use Loclan T 10mg/40mg Tablet in pregnancy?', 'No, Loclan T 10mg/40mg Tablet should be avoided in pregnancy. Loclan T 10mg/40mg Tablet can cause harmful effects on the baby. If you conceive while taking Loclan T 10mg/40mg Tablet, stop using it and contact your doctor immediately. The doctor may suggest other ways to lower blood pressure.'),
(29355, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'What is Loclav 625 Tablet?', 'Loclav 625 Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(29356, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Is it safe to use Loclav 625 Tablet?', 'Loclav 625 Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(29357, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Are there any specific cautions associated with the use of Loclav 625 Tablet?', 'The use of Loclav 625 Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(29358, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Can the use of Loclav 625 Tablet cause contraceptive failure?', 'Yes, the use of Loclav 625 Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Loclav 625 Tablet.'),
(29359, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Can I take a higher than the recommended dose of Loclav 625 Tablet?', 'No, taking a higher than the recommended dose of Loclav 625 Tablet can increase the risks of side effects. Loclav 625 Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(29360, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'What are the instructions for the storage and disposal of Loclav 625 Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29361, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Can I stop taking Loclav 625 Tablet when my symptoms are relieved?', 'No, do not stop taking Loclav 625 Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(29362, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Can Loclav 625 Tablet cause an allergic reaction?', 'Yes, Loclav 625 Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(29363, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Can the use of Loclav 625 Tablet cause diarrhea?', 'Yes, the use of Loclav 625 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(29364, 'Loclav 625 Tablet', 'Lifeon Pharmaceuticals', 'Loclav 625 Tablet', 'Can I take Loclav 625 Tablet to treat cold and flu?', 'No, Loclav 625 Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(29365, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'What is Loco 250 mg/50 mg/500 mg Tablet MR?', 'Loco 250 mg/50 mg/500 mg Tablet MR is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(29366, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Is it safe to use Loco 250 mg/50 mg/500 mg Tablet MR?', 'Loco 250 mg/50 mg/500 mg Tablet MR is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(29367, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Can I stop taking Loco 250 mg/50 mg/500 mg Tablet MR when my pain is relieved?', 'Loco 250 mg/50 mg/500 mg Tablet MR should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(29368, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Can the use of Loco 250 mg/50 mg/500 mg Tablet MR cause nausea and vomiting?', 'Yes, the use of Loco 250 mg/50 mg/500 mg Tablet MR can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29369, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Can the use of Loco 250 mg/50 mg/500 mg Tablet MR cause dizziness?', 'Yes, the use of Loco 250 mg/50 mg/500 mg Tablet MR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29370, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Can the use of Loco 250 mg/50 mg/500 mg Tablet MR cause damage to kidneys?', 'Yes, the long-term use of Loco 250 mg/50 mg/500 mg Tablet MR can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29371, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loco 250 mg/50 mg/500 mg Tablet MR can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29372, 'Loco 250 mg/50 mg/500 mg Tablet MR', 'Alchemist Life Science Ltd', 'Loco 250 mg/50 mg/500 mg Tablet MR', 'What are the recommended storage conditions for Loco 250 mg/50 mg/500 mg Tablet MR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29373, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'What if I vomit after taking Loco 650mg Tablet?', 'If you vomit in less than 30 minutes after having a dose of Loco 650mg Tablet tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(29374, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'When will I feel better after taking the Loco 650mg Tablet?', 'Usually, you will start feeling better after about half an hour of taking a Loco 650mg Tablet.'),
(29375, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'How often can I take the Loco 650mg Tablet?', 'You should only take four doses of Loco 650mg Tablet in 24 hours. There should be a gap of at least 4 hours between two doses. Do not take Loco 650mg Tablet for more than 3 days without consulting a doctor first.'),
(29376, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'Is Loco 650mg Tablet an antibiotic?', 'No, Loco 650mg Tablet is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(29377, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'Can I take Loco 650mg Tablet and ibuprofen together?', 'Ibuprofen and Loco 650mg Tablet are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(29378, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'How long does a Loco 650mg Tablet take to work?', 'Loco 650mg Tablet takes around 30-45 min to start working and show its effects. It is advised to take this medicine for the duration suggested by the doctor. Consult your doctor if you experience any bothersome side effects.'),
(29379, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'What are the serious side effects of taking an excess of the Loco 650mg Tablet?', 'Overdose of Loco 650mg Tablete may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(29380, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'Can Loco 650mg Tablet cause nausea and vomiting?', 'Yes, Loco 650mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.u003cbr>'),
(29381, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'Is Loco 650mg Tablet helpful in relieving stomach pain due to indigestion?', 'No, Loco 650mg Tablet should not be taken for stomach pain without consulting a doctor. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29382, 'Loco 650mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loco 650mg Tablet', 'Can I take Loco 650mg Tablet with an antibiotic?', 'Yes, taking Loco 650mg Tablet and antibiotics at the same time should not cause any problems. Antibiotics are used to help clear infections but often don\'t do anything to relieve pain. Therefore you can generally take Loco 650mg Tablet alongside your antibiotics. However, always consult your doctor before taking any medications.'),
(29383, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'Is Locoace 100mg Tablet a good painkiller?', 'Locoace 100mg Tablet is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(29384, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'Is Locoace 100mg Tablet safe?', 'Locoace 100mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(29385, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'Does Locoace 100mg Tablet get you high?', 'No, Locoace 100mg Tablet does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29386, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'Can Locoace 100mg Tablet hurt your kidneys?', 'Long-term use and high doses of Locoace 100mg Tablet may cause renal problems, such as protein or blood in urine and pain during urination. Patients  who had or have heart failure, impaired kidney function and hypertension are at risk of kidney problems. The risk of developing kidney problems is also high in patients who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Along with that, Locoace 100mg Tablet can affect kidneys of patients who are above 65 years of age or who remain dehydrated. Therefore, kidney function monitoring is recommended for such patients.'),
(29387, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'What if I forget to take a dose of Locoace 100mg Tablet?', 'If you forget a dose of Locoace 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(29388, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'Does Locoace 100mg Tablet make you drowsy?', 'Locoace 100mg Tablet can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(29389, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'What is the most important information I need to know about Locoace 100mg Tablet?', 'It is important to know that Locoace 100mg Tablet may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, the use of Locoace 100mg Tablet may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(29390, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'Can Locoace 100mg Tablet be taken during pregnancy?', 'You should not take Locoace 100mg Tablet during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Locoace 100mg Tablet can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Locoace 100mg Tablet during the first 6 months of pregnancy also.  In some cases, Locoace 100mg Tablet may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(29391, 'Locoace 100mg Tablet', 'Alchemist Life Science Ltd', 'Locoace 100mg Tablet', 'Is Locoace 100mg Tablet effective?', 'Locoace 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Locoace 100mg Tablet too early, the symptoms may return or worsen.'),
(29392, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'What is Locoace P 100 mg/500 mg Tablet?', 'Locoace P 100 mg/500 mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29393, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Is it safe to use Locoace P 100 mg/500 mg Tablet?', 'Locoace P 100 mg/500 mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(29394, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Can I stop taking Locoace P 100 mg/500 mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Locoace P 100 mg/500 mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29395, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Can the use of Locoace P 100 mg/500 mg Tablet cause nausea and vomiting?', 'Yes, the use of Locoace P 100 mg/500 mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29396, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Can the use of Locoace P 100 mg/500 mg Tablet cause dizziness?', 'Yes, the use of Locoace P 100 mg/500 mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29397, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Are there any specific contraindications associated with the use of Locoace P 100 mg/500 mg Tablet?', 'The use of Locoace P 100 mg/500 mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29398, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Can Locoace P 100 mg/500 mg Tablet be taken with vitamin B-complex?', 'Yes, Locoace P 100 mg/500 mg Tablet can be taken with vitamin B-complex preparations. While Locoace P 100 mg/500 mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(29399, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Is Locoace P 100 mg/500 mg Tablet helpful in relieving stomach pain?', 'No, Locoace P 100 mg/500 mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29400, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Can the use of Locoace P 100 mg/500 mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Locoace P 100 mg/500 mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29401, 'Locoace P 100 mg/500 mg Tablet', 'Alchemist Life Science Ltd', 'Locoace P 100 mg/500 mg Tablet', 'Is it safe to take a higher dose of Locoace P 100 mg/500 mg Tablet than recommended?', 'No, taking higher than the recommended dose of Locoace P 100 mg/500 mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29402, 'Lococef 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef 200mg Tablet', 'Q. How long should I take Lococef 200mg Tablet?', 'Lococef 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(29403, 'Lococef 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef 200mg Tablet', 'Q. What if I do not get better after using Lococef 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(29404, 'Lococef 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef 200mg Tablet', 'Q. Can the use of Lococef 200mg Tablet cause diarrhea?', 'Yes, the use of Lococef 200mg Tablet can cause diarrhea. Lococef 200mg Tablet is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(29405, 'Lococef 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef 200mg Tablet', 'Q. Is Lococef 200mg Tablet effective?', 'Lococef 200mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lococef 200mg Tablet too early, the symptoms may return or worsen.'),
(29406, 'Lococef 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef 200mg Tablet', 'Q. What if I forget to take a dose of Lococef 200mg Tablet?', 'If you forget a dose of Lococef 200mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(29407, 'Lococef 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef 200mg Tablet', 'Q. Is Lococef 200mg Tablet safe for the kidneys?', 'Yes, Lococef 200mg Tablet is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(29408, 'Lococef 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef 200mg Tablet', 'Q. How long should I take Lococef 200mg Tablet?', 'Lococef 200mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(29409, 'Lococef LB 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef LB 200mg Tablet', 'What if I miss my dose?', 'Take Lococef LB 200mg Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29410, 'Lococef LB 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef LB 200mg Tablet', 'How long does Lococef LB 200mg Tablet take to work?', 'Usually, Lococef LB 200mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29411, 'Lococef LB 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef LB 200mg Tablet', 'What if I don\'t get better after using Lococef LB 200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29412, 'Lococef LB 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef LB 200mg Tablet', 'Can I stop taking Lococef LB 200mg Tablet when I feel better?', 'No, do not stop taking Lococef LB 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29413, 'Lococef LB 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Lococef LB 50mg Dry Syrup', 'My child is suffering from liver failure and his investigations showed high blood ammonia levels. Is it safe to give Lococef LB 50mg Dry Syrup?', 'No. It is better to avoid giving Lococef LB 50mg Dry Syrup as it contains lactobacillus which can further elevate the levels of blood ammonia and increase the risk of serious complications like coma.'),
(29414, 'Lococef LB 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Lococef LB 50mg Dry Syrup', 'What if I give too much of Lococef LB 50mg Dry Syrup by mistake?', 'Avoid giving more than the recommended dose because overdose may cause unwanted side effects and may even worsen your child’s condition. Although an extra dose of Lococef LB 50mg Dry Syrup is unlikely to harm, if you think you have given too much of Lococef LB 50mg Dry Syrup to your child, immediately speak to a doctor.'),
(29415, 'Lococef LB 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Lococef LB 50mg Dry Syrup', 'Are there any possible serious side effects of Lococef LB 50mg Dry Syrup?', 'In rare cases, Lococef LB 50mg Dry Syrup may cause some serious side effects such as persistent vomiting, kidney damage, and allergy. Always consult your child’s doctor for help in such a situation.'),
(29416, 'Lococef LB 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Lococef LB 50mg Dry Syrup', 'Can other medicines be given at the same time as Lococef LB 50mg Dry Syrup?', 'Lococef LB 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lococef LB 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(29417, 'Lococef LB 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Lococef LB 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Lococef LB 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(29418, 'Lococef LB 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Lococef LB 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'No, yellow or green mucus in the nose does not mean that antibiotics are needed. It is normal for mucus to thicken up and change from clear to yellow or green. With symptoms often lasting for 7-10 days, this is exactly how a common cold generally progresses.'),
(29419, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'Can I stop taking Lococef O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lococef O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29420, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lococef O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29421, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'Can the use of Lococef O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lococef O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(29422, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'What if I don\'t get better after using Lococef O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29423, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'Does the use of Lococef O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lococef O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(29424, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(29425, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'Can I drive while I am taking Lococef O 200mg/200mg Tablet?', 'No, taking Lococef O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(29426, 'Lococef O 200mg/200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococef O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Lococef O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29427, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'Does Lococetri 10mg Tablet make you tired and drowsy?', 'Yes, Lococetri 10mg Tablet can make you feel tired, sleepy, and weak. If you have these symptoms, you should avoid driving or operating heavy machinery.'),
(29428, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'Is Lococetri 10mg Tablet a steroid? What is it used for?', 'Lococetri 10mg Tablet is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(29429, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'How long does it take for Lococetri 10mg Tablet to work?', 'You will notice an improvement within an hour of taking Lococetri 10mg Tablet. However, it may take a little longer to notice the full benefits.'),
(29430, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'Can I take Lococetri 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lococetri 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(29431, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'For how long should I continue Lococetri 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. If you are taking it for an insect bite, you may need it for a day or two. Similarly, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of the nose) or chronic urticaria, you may need to take Lococetri 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lococetri 10mg Tablet.'),
(29432, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'Is it safe to take Lococetri 10mg Tablet daily for a long time?', 'Lococetri 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lococetri 10mg Tablet for only as long as you need it.'),
(29433, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'Does Lococetri 10mg Tablet make you tired and drowsy?', 'Yes, Lococetri 10mg Tablet can make you feel tired, sleepy, and weak.'),
(29434, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'Is Lococetri 10mg Tablet a steroid? What is it used for?', 'Lococetri 10mg Tablet is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(29435, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'How long does it take for Lococetri 10mg Tablet to work?', 'You will notice an improvement within an hour of taking Lococetri 10mg Tablet. However, it may take a little longer to notice the full benefits.'),
(29436, 'Lococetri 10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Lococetri 10mg Tablet', 'Can I take Lococetri 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lococetri 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(29437, 'Locodom C 15mg/20mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodom C 15mg/20mg Tablet', 'Can I stop taking Locodom C 15mg/20mg Tablet if I feel well?', 'You should continue to take Locodom C 15mg/20mg Tablet until your doctor asks you to stop it. If you stop taking Locodom C 15mg/20mg Tablet sooner than advised, the symptoms of vertigo may reappear (dizziness and spinning).'),
(29438, 'Locodom C 15mg/20mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodom C 15mg/20mg Tablet', 'What are the instructions for the storage and disposal of Locodom C 15mg/20mg Tablet?', 'Keep this medicine in the packet or container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29439, 'Locodom C 15mg/20mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodom C 15mg/20mg Tablet', 'Can the use of Locodom C 15mg/20mg Tablet cause drowsiness?', 'Yes, Locodom C 15mg/20mg Tablet can make you feel drowsy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities until you know how this medicine affects you.'),
(29440, 'Locodom C 15mg/20mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodom C 15mg/20mg Tablet', 'What if I accidentally take too much of Locodom C 15mg/20mg Tablet?', 'Visit the nearest emergency department if you accidentally take too much of Locodom C 15mg/20mg Tablet.'),
(29441, 'Locodom C 15mg/20mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodom C 15mg/20mg Tablet', 'What if I miss a dose of Locodom C 15mg/20mg Tablet?', 'If you miss a dose of Locodom C 15mg/20mg Tablet, you should skip the missed dose and take the next dose at its usual time and quantity. You should not take a double dose of Locodom C 15mg/20mg Tablet to make up for a missed dose.'),
(29442, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'Is Locodox 200mg Tablet safe to use?', 'Locodox 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(29443, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'Can the use of Locodox 200mg Tablet cause diarrhea?', 'Yes, the use of Locodox 200mg Tablet can cause diarrhea. Locodox 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(29444, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'Is Locodox 200mg Tablet an antibiotic?', 'Yes, Locodox 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(29445, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'Can Locodox 200mg Tablet cause constipation?', 'Yes, Locodox 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(29446, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'Can I stop taking Locodox 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Locodox 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(29447, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'How long does Locodox 200mg Tablet take to work?', 'Usually, Locodox 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(29448, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'What if I do not get better after using Locodox 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(29449, 'Locodox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locodox 200mg Tablet', 'Can Locodox 200mg Tablet treat UTI?', 'Yes, Locodox 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Locodox 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(29450, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'What if I give too much of Locodox 50mg Dry Syrup by mistake?', 'An extra dose of Locodox 50mg Dry Syrup is unlikely to do harm. However, if you think you have given too much of Locodox 50mg Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(29451, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'Are there any possible serious side effects of Locodox 50mg Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(29452, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'Can other medicines be given at the same time as Locodox 50mg Dry Syrup?', 'Locodox 50mg Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Locodox 50mg Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(29453, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'Can I get my child vaccinated while on treatment with Locodox 50mg Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(29454, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'Which lab tests may my child undergo while taking Locodox 50mg Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(29455, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(29456, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(29457, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(29458, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'Can Locodox 50mg Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Locodox 50mg Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Locodox 50mg Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(29459, 'Locodox 50mg Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locodox 50mg Dry Syrup', 'Can Locodox 50mg Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Locodox 50mg Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(29460, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'How should Locoflam AQ 75mg Injection injection be administered?', 'Locoflam AQ 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(29461, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'What is the most important information I need to know about Locoflam AQ 75mg Injection?', 'It is important to know that Locoflam AQ 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Locoflam AQ 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(29462, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'Is Locoflam AQ 75mg Injection a good painkiller?', 'Locoflam AQ 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(29463, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'Can Locoflam AQ 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Locoflam AQ 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(29464, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'Does Locoflam AQ 75mg Injection make you drowsy?', 'Locoflam AQ 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(29465, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'Can Locoflam AQ 75mg Injection be taken during pregnancy?', 'You should not take Locoflam AQ 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Locoflam AQ 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Locoflam AQ 75mg Injection during the first 6 months of pregnancy also.  In some cases, Locoflam AQ 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(29466, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'Does Locoflam AQ 75mg Injection get you high?', 'No, Locoflam AQ 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(29467, 'Locoflam AQ 75mg Injection', 'Albia Biocare', 'Locoflam AQ 75mg Injection', 'Is Locoflam AQ 75mg Injection a narcotic?', 'No, Locoflam AQ 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(29468, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'What is Locoflam MR Tablet?', 'Locoflam MR Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(29469, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'Is it safe to use Locoflam MR Tablet?', 'Locoflam MR Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(29470, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'Can I stop taking Locoflam MR Tablet when my pain is relieved?', 'Locoflam MR Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(29471, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'Can the use of Locoflam MR Tablet cause nausea and vomiting?', 'Yes, the use of Locoflam MR Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29472, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'Can the use of Locoflam MR Tablet cause dizziness?', 'Yes, the use of Locoflam MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29473, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'Can the use of Locoflam MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Locoflam MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29474, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Locoflam MR Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29475, 'Locoflam MR Tablet', 'Albia Biocare', 'Locoflam MR Tablet', 'What are the recommended storage conditions for Locoflam MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29476, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'What is Locoflam P 50mg/325mg Tablet?', 'Locoflam P 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(29477, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Is it safe to use Locoflam P 50mg/325mg Tablet?', 'Yes, Locoflam P 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(29478, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Can I stop taking Locoflam P 50mg/325mg Tablet when my pain is relieved?', 'Locoflam P 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29479, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Can the use of Locoflam P 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Locoflam P 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29480, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Can the use of Locoflam P 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Locoflam P 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(29481, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Can the use of Locoflam P 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Locoflam P 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(29482, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Locoflam P 50mg/325mg Tablet?', 'The use of Locoflam P 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(29483, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Can Locoflam P 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Locoflam P 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Locoflam P 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(29484, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Locoflam P 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Locoflam P 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29485, 'Locoflam P 50mg/325mg Tablet', 'Albia Biocare', 'Locoflam P 50mg/325mg Tablet', 'What is the recommended storage condition for Locoflam P 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29486, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'What is Locoflam S 50mg/10mg Tablet?', 'Locoflam S 50mg/10mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29487, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'Is it safe to use Locoflam S 50mg/10mg Tablet?', 'Yes, Locoflam S 50mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(29488, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'Can I stop taking Locoflam S 50mg/10mg Tablet when my pain is relieved?', 'Locoflam S 50mg/10mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Locoflam S 50mg/10mg Tablet should be continued if  your physician has advised you to do so.'),
(29489, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'Can the use of Locoflam S 50mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Locoflam S 50mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(29490, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'Can the use of Locoflam S 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Locoflam S 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(29491, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Locoflam S 50mg/10mg Tablet?', 'The use of Locoflam S 50mg/10mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29492, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'Can I take Locoflam S 50mg/10mg Tablet with Vitamin B-complex?', 'Locoflam S 50mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Locoflam S 50mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(29493, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'Can I take Locoflam S 50mg/10mg Tablet for stomach pain?', 'No, Locoflam S 50mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29494, 'Locoflam S 50mg/10mg Tablet', 'Albia Biocare', 'Locoflam S 50mg/10mg Tablet', 'What is the storage condition for the Locoflam S 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29495, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'What are the storage condition for Locoflam SP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29496, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'What is Locoflam SP Tablet?', 'Locoflam SP Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(29497, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Is it safe to use Locoflam SP Tablet?', 'Yes, Locoflam SP Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(29498, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Can I stop taking Locoflam SP Tablet when my pain is relieved?', 'Locoflam SP Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Locoflam SP Tablet should be continued if you are advised by your physician to do so.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29499, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Can the use of Locoflam SP Tablet cause nausea and vomiting?', 'Yes, the use of Locoflam SP Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29500, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Can the use of Locoflam SP Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(29501, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Are there any specific contraindications associated with the use of Locoflam SP Tablet?', 'The use of Locoflam SP Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29502, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Can I take Locoflam SP Tablet with Vitamin B-complex?', 'Locoflam SP Tablet can be taken with Vitamin B-complex preparations. While Locoflam SP Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29503, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Can I take Locoflam SP Tablet for stomach pain?', 'No, Locoflam SP Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29504, 'Locoflam SP Tablet', 'Albia Biocare', 'Locoflam SP Tablet', 'Can the use of Locoflam SP Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Locoflam SP Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29505, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'What is Locoflam Tablet?', 'Locoflam Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29506, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Is it safe to use Locoflam Tablet?', 'Locoflam Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(29507, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Can I stop taking Locoflam Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Locoflam Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29508, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Can the use of Locoflam Tablet cause nausea and vomiting?', 'Yes, the use of Locoflam Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29509, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Can the use of Locoflam Tablet cause dizziness?', 'Yes, the use of Locoflam Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29510, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Are there any specific contraindications associated with the use of Locoflam Tablet?', 'The use of Locoflam Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29511, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Can Locoflam Tablet be taken with vitamin B-complex?', 'Yes, Locoflam Tablet can be taken with vitamin B-complex preparations. While Locoflam Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(29512, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Is Locoflam Tablet helpful in relieving stomach pain?', 'No, Locoflam Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29513, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Can the use of Locoflam Tablet cause damage to kidneys?', 'Yes, the long-term use of Locoflam Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29514, 'Locoflam Tablet', 'Locus Pharma Pvt Ltd', 'Locoflam Tablet', 'Is it safe to take a higher dose of Locoflam Tablet than recommended?', 'No, taking higher than the recommended dose of Locoflam Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29515, 'Locoflox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox 200mg Tablet', 'Can the use of Locoflox 200mg Tablet cause diarrhea?', 'Yes, the use of Locoflox 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(29516, 'Locoflox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox 200mg Tablet', 'Can I stop taking Locoflox 200mg Tablet when I feel better?', 'No, do not stop taking Locoflox 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29517, 'Locoflox 200mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox 200mg Tablet', 'Can the use of Locoflox 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Locoflox 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Locoflox 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(29518, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'What is Locoflox OZ 200mg/500mg Tablet?', 'Locoflox OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(29519, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'Is it safe to use Locoflox OZ 200mg/500mg Tablet?', 'Locoflox OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(29520, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Locoflox OZ 200mg/500mg Tablet?', 'The use of Locoflox OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(29521, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Locoflox OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29522, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Locoflox OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29523, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'Can I stop taking Locoflox OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Locoflox OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(29524, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Locoflox OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29525, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'Can I take alcohol while on Locoflox OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Locoflox OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(29526, 'Locoflox OZ 200mg/500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locoflox OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Locoflox OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29527, 'Locoid Lippo Cream', 'Elder Pharmaceuticals Ltd', 'Locoid Lippo Cream', 'Can Locoid Lippo Cream be used on the face?', 'No, Locoid Lippo Cream should not be used on the face. In addition to this, Locoid Lippo Cream should not be used on the axillae (armpits), groin and if there is atrophy (wasting away of tissues) at the treatment site. In certain circumstances, it can be exceptionally considered to be used by the doctors. It should be used only after consultation with your physician and if possible, the application on the face should be limited to a maximum of 5 days.'),
(29528, 'Locoid Lippo Cream', 'Elder Pharmaceuticals Ltd', 'Locoid Lippo Cream', 'Can we use Locoid Lippo Cream in infections?', 'Locoid Lippo Cream is not an antimicrobial or antifungal agent. It is a steroid medication. It should not be used in infections as being a corticosteroid it suppresses the immune system and increases the risk of infections. Bacterial infections are prone to worsen if the infection is covered with a dressing after using Locoid Lippo Cream. In case the inflammatory lesions get infected or there is any spread of infection, consult your doctor immediately. The doctor will withdraw the use of Locoid Lippo Cream and provide appropriate antimicrobial therapy.'),
(29529, 'Locoid Lippo Cream', 'Elder Pharmaceuticals Ltd', 'Locoid Lippo Cream', 'How to use Locoid Lippo Cream?', 'Before using Locoid Lippo Cream, clean and dry the affected area. Gently and thoroughly massage it into the skin. Be careful not to get the medication in your eyes or mouth. If Locoid Lippo Cream gets in your eyes accidentally, wash with plenty of water and call your doctor if your eyes are irritated.'),
(29530, 'Locoid Lippo Cream', 'Elder Pharmaceuticals Ltd', 'Locoid Lippo Cream', 'Can I stop taking Locoid Lippo Cream when my symptoms are relieved?', 'No, do not stop taking Locoid Lippo Cream and finish the full course of treatment even if you feel better. Your symptoms may improve before your treatment is complete. Stopping Locoid Lippo Cream before your treatment is completed can bring back your symptoms of skin.'),
(29531, 'Locoid Lippo Cream', 'Elder Pharmaceuticals Ltd', 'Locoid Lippo Cream', 'What are the precautions that are needed to be taken while using Locoid Lippo Cream?', 'Locoid Lippo Cream should not be used on the face. Do not use the medication for longer periods of time than you have been advised. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side-effects. This medicine should only be used when advised by the doctor and never given to other people even if their condition appears to be the same.'),
(29532, 'Locoid Lippo Cream', 'Elder Pharmaceuticals Ltd', 'Locoid Lippo Cream', 'Who should not use Locoid Lippo Cream?', 'Locoid Lippo Cream should not be used in people who are allergic to Locoid Lippo Cream or any of its ingredients. It should also be avoided if a person has any kind of infection of the skin, eyes etc. It is important to inform your doctor if you are pregnant, planning a baby or breastfeeding to avoid any harm to your baby.'),
(29533, 'Locoid Lippo Cream', 'Elder Pharmaceuticals Ltd', 'Locoid Lippo Cream', 'What should I do if I forget to use Locoid Lippo Cream?', 'If you forget to use Locoid Lippo Cream, do not worry and continue using Locoid Lippo Cream as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(29534, 'Locoid Lotion', 'Elder Pharmaceuticals Ltd', 'Locoid Lotion', 'Can Locoid Lotion be used on the face?', 'No, Locoid Lotion should not be used on the face. In addition to this, Locoid Lotion should not be used on the axillae (armpits), groin and if there is atrophy (wasting away of tissues) at the treatment site. In certain circumstances, it can be exceptionally considered to be used by the doctors. It should be used only after consultation with your physician and if possible, the application on the face should be limited to a maximum of 5 days.'),
(29535, 'Locoid Lotion', 'Elder Pharmaceuticals Ltd', 'Locoid Lotion', 'Can we use Locoid Lotion in infections?', 'Locoid Lotion is not an antimicrobial or antifungal agent. It is a steroid medication. It should not be used in infections as being a corticosteroid it suppresses the immune system and increases the risk of infections. Bacterial infections are prone to worsen if the infection is covered with a dressing after using Locoid Lotion. In case the inflammatory lesions get infected or there is any spread of infection, consult your doctor immediately. The doctor will withdraw the use of Locoid Lotion and provide appropriate antimicrobial therapy.'),
(29536, 'Locoid Lotion', 'Elder Pharmaceuticals Ltd', 'Locoid Lotion', 'How to use Locoid Lotion?', 'Before using Locoid Lotion, clean and dry the affected area. Gently and thoroughly massage it into the skin. Be careful not to get the medication in your eyes or mouth. If Locoid Lotion gets in your eyes accidentally, wash with plenty of water and call your doctor if your eyes are irritated.'),
(29537, 'Locoid Lotion', 'Elder Pharmaceuticals Ltd', 'Locoid Lotion', 'Can I stop taking Locoid Lotion when my symptoms are relieved?', 'No, do not stop taking Locoid Lotion and finish the full course of treatment even if you feel better. Your symptoms may improve before your treatment is complete. Stopping Locoid Lotion before your treatment is completed can bring back your symptoms of skin.'),
(29538, 'Locoid Lotion', 'Elder Pharmaceuticals Ltd', 'Locoid Lotion', 'What are the precautions that are needed to be taken while using Locoid Lotion?', 'Locoid Lotion should not be used on the face. Do not use the medication for longer periods of time than you have been advised. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side-effects. This medicine should only be used when advised by the doctor and never given to other people even if their condition appears to be the same.'),
(29539, 'Locoid Lotion', 'Elder Pharmaceuticals Ltd', 'Locoid Lotion', 'Who should not use Locoid Lotion?', 'Locoid Lotion should not be used in people who are allergic to Locoid Lotion or any of its ingredients. It should also be avoided if a person has any kind of infection of the skin, eyes etc. It is important to inform your doctor if you are pregnant, planning a baby or breastfeeding to avoid any harm to your baby.'),
(29540, 'Locoid Lotion', 'Elder Pharmaceuticals Ltd', 'Locoid Lotion', 'What should I do if I forget to use Locoid Lotion?', 'If you forget to use Locoid Lotion, do not worry and continue using Locoid Lotion as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(29541, 'Locomax GM 750mg/50mg/250mg Tablet', 'Ani Healthcare Pvt Ltd', 'Locomax GM 750mg/50mg/250mg Tablet', 'What are the storage conditions for Locomax GM 750mg/50mg/250mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29542, 'Locomax GM 750mg/50mg/250mg Tablet', 'Ani Healthcare Pvt Ltd', 'Locomax GM 750mg/50mg/250mg Tablet', 'Can the use of Locomax GM 750mg/50mg/250mg Tablet cause indigestion?', 'Locomax GM 750mg/50mg/250mg Tablet may cause indigestion. Take it with or after food to avoid Indigestion. Talk to your doctor if indigestion persists.'),
(29543, 'Locomet G 0.5mg/500mg Tablet SR', 'Locus Pharma Pvt Ltd', 'Locomet G 0.5mg/500mg Tablet SR', 'What are the recommended storage conditions for Locomet G 0.5mg/500mg Tablet SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29544, 'Locomet G 0.5mg/500mg Tablet SR', 'Locus Pharma Pvt Ltd', 'Locomet G 0.5mg/500mg Tablet SR', 'Can the use of Locomet G 0.5mg/500mg Tablet SR lead to lactic acidosis?', 'Yes, the use of Locomet G 0.5mg/500mg Tablet SR can lead to lactic acidosis. It is a medical emergency which is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a rare side effect associated with the use of metformin and therefore, it is considered to be harmful for patients with underlying kidney disease, old age patients or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain or slow heart rate. If you have these symptoms, stop taking Locomet G 0.5mg/500mg Tablet SR and consult your doctor immediately.'),
(29545, 'Locomet G 0.5mg/500mg Tablet SR', 'Locus Pharma Pvt Ltd', 'Locomet G 0.5mg/500mg Tablet SR', 'What is Locomet G 0.5mg/500mg Tablet SR?', 'Locomet G 0.5mg/500mg Tablet SR is a combination of two medicines: Glimepiride and Metformin. This medicine is used in the treatment of type 2 diabetes mellitus (DM). It improves blood glucose levels in adults when taken along with proper diet and regular exercise. Glimepiride lowers the blood glucose levels by increasing the release of insulin from the pancreas. Metformin works by lowering the glucose production in the liver and improving insulin sensitivity. This combination is not indicated for the treatment of type 1 DM.'),
(29546, 'Locomet G 0.5mg/500mg Tablet SR', 'Locus Pharma Pvt Ltd', 'Locomet G 0.5mg/500mg Tablet SR', 'What are the possible side effects of Locomet G 0.5mg/500mg Tablet SR?', 'The use of Locomet G 0.5mg/500mg Tablet SR is associated with common side effects like hypoglycemia (low blood sugar level), altered taste, nausea, stomach pain, diarrhea, and headache. Its use can also lead to serious but rare side effects like lactic acidosis. On long-term use it can also lead to Vitamin B12 deficiency.'),
(29547, 'Locomet G 0.5mg/500mg Tablet SR', 'Locus Pharma Pvt Ltd', 'Locomet G 0.5mg/500mg Tablet SR', 'Can the use of Locomet G 0.5mg/500mg Tablet SR lead to Vitamin B12 deficiency?', 'Yes, the use of Locomet G 0.5mg/500mg Tablet SR can cause Vitamin B12 deficiency on long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems and the patient can experience tingling sensation and numbness in hands and feet, weakness, urinary problems, change in mental status and difficulty in maintaining balance (ataxia). To avoid such problems, some researchers suggest an intake of Vitamin B12 from outside sources at least once every year.'),
(29548, 'Locomet G 0.5mg/500mg Tablet SR', 'Locus Pharma Pvt Ltd', 'Locomet G 0.5mg/500mg Tablet SR', 'Can the use of Locomet G 0.5mg/500mg Tablet SR cause hypoglycemia?', 'Yes, the use of Locomet G 0.5mg/500mg Tablet SR can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of the blood sugar level is important. Always keep a quick source of sugar like glucose tablets, honey or fruit juice with you.'),
(29549, 'Locomet G 0.5mg/500mg Tablet SR', 'Locus Pharma Pvt Ltd', 'Locomet G 0.5mg/500mg Tablet SR', 'Is it safe to take alcohol while I am also taking Locomet G 0.5mg/500mg Tablet SR?', 'No, it is not safe to take Locomet G 0.5mg/500mg Tablet SR along with alcohol, as it may lower your blood sugar levels and lead to hypoglycemia. It can also increase the chances of lactic acidosis.'),
(29550, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Q. What are the contraindications associated with the use of Locomox CV 500mg/125mg Tablet?', 'Locomox CV 500mg/125mg Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(29551, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Q. Which is the best time to take Locomox CV 500mg/125mg Tablet?', 'Locomox CV 500mg/125mg Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(29552, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Q. Can I stop Locomox CV 500mg/125mg Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(29553, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Q. Can I take Locomox CV 500mg/125mg Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(29554, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Q. What are the instructions for the storage and disposal of Locomox CV 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29555, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'What are the contraindications associated with the use of Locomox CV 500mg/125mg Tablet?', 'Locomox CV 500mg/125mg Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(29556, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Which is the best time to take Locomox CV 500mg/125mg Tablet?', 'Locomox CV 500mg/125mg Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(29557, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Can I stop Locomox CV 500mg/125mg Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(29558, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'Can I take Locomox CV 500mg/125mg Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(29559, 'Locomox CV 500mg/125mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox CV 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Locomox CV 500mg/125mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29560, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Can other medicines be given at the same time as Locomox CV Dry Syrup?', 'Locomox CV Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Locomox CV Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(29561, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Can I get my child vaccinated while on treatment with Locomox CV Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(29562, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Which lab tests may my child undergo while taking Locomox CV Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(29563, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Can I give a higher than the recommended dose of Locomox CV Dry Syrup to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(29564, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Can I stop giving Locomox CV Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(29565, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Can the use of Locomox CV Dry Syrup cause diarrhea?', 'Yes, Locomox CV Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(29566, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(29567, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(29568, 'Locomox CV Dry Syrup', 'Loco Healthcare Pvt Ltd', 'Locomox CV Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(29569, 'Locomox LB 500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox LB 500mg Tablet', 'What if I miss my dose?', 'Take Locomox LB 500mg Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(29570, 'Locomox LB 500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox LB 500mg Tablet', 'Can the use of Locomox LB 500mg Tablet cause diarrhea?', 'Yes, the use of Locomox LB 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(29571, 'Locomox LB 500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox LB 500mg Tablet', 'How long does Locomox LB 500mg Tablet takes to work?', 'Usually, Locomox LB 500mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29572, 'Locomox LB 500mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locomox LB 500mg Tablet', 'Can I stop taking Locomox LB 500mg Tablet when I feel better?', 'No, do not stop taking Locomox LB 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29573, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'What is Loconac P 100mg/325mg Tablet?', 'Loconac P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29574, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Is it safe to use Loconac P 100mg/325mg Tablet?', 'Loconac P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(29575, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Can I stop taking Loconac P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Loconac P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29576, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Can the use of Loconac P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Loconac P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29577, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Can the use of Loconac P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Loconac P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29578, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Loconac P 100mg/325mg Tablet?', 'The use of Loconac P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29579, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Can Loconac P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Loconac P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Loconac P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(29580, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Is Loconac P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Loconac P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29581, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Can the use of Loconac P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Loconac P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29582, 'Loconac P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Loconac P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Loconac P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29583, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'What is Loconac SP 100mg/325mg/15mg Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29584, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Is it safe to take Loconac SP 100mg/325mg/15mg Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(29585, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Can I stop taking Loconac SP 100mg/325mg/15mg Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(29586, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Can Loconac SP 100mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(29587, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Can Loconac SP 100mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29588, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with taking Loconac SP 100mg/325mg/15mg Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29589, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Can I take Loconac SP 100mg/325mg/15mg Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29590, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Can the use of Loconac SP 100mg/325mg/15mg Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(29591, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'Can I take a higher dose of Loconac SP 100mg/325mg/15mg Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29592, 'Loconac SP 100mg/325mg/15mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconac SP 100mg/325mg/15mg Tablet', 'What are the instructions for storage and disposal of Loconac SP 100mg/325mg/15mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29593, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'What is the difference between Loconex 20mg Tablet DT and diclofenac?', 'Both Loconex 20mg Tablet DT and diclofenac are pain killers. However, piroxicam is a non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain) inhibitor whereas diclofenac has a bit more selectivity to a COX-2 enzyme. This selectivity of diclofenac is supposed to decrease the side effects as compared to Loconex 20mg Tablet DT.'),
(29594, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'What is the difference between Loconex 20mg Tablet DT and naproxen?', 'Both Loconex 20mg Tablet DT and naproxen are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, gastric side effects are lesser with naproxen as compared to Loconex 20mg Tablet DT.'),
(29595, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'What is the difference between Loconex 20mg Tablet DT and meloxicam?', 'Both Loconex 20mg Tablet DT and meloxicam are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, acute gastric side effects are lesser with meloxicam as compared to Loconex 20mg Tablet DT.'),
(29596, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'What is the difference between Loconex 20mg Tablet DT and ketoprofen?', 'Both Loconex 20mg Tablet DT and ketoprofen are pain killers. Both are non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain). Research studies have shown ketoprofen topical gel is better and effective as compared to Loconex 20mg Tablet DT. Ketoprofen gel also showed excellent tolerability.'),
(29597, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'What is the difference between Loconex 20mg Tablet DT and tramadol?', 'Loconex 20mg Tablet DT is a COX (cyclooxygenase -an enzyme responsible for inflammation and pain) whereas Tramadol is a narcotic-like painkiller. Tramadol is a habit forming medicine.'),
(29598, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'What is the difference between Loconex 20mg Tablet DT and nimesulide?', 'Both Loconex 20mg Tablet DT and nimesulide are pain killers. However, Loconex 20mg Tablet DT is a non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain) inhibitor whereas nimesulide is selective to the COX-2 enzyme. This selectivity of nimesulide is supposed to decrease the side effects as compared to piroxicam. It should not be used in children below 12 years of age.'),
(29599, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'Can Loconex 20mg Tablet DT be used in the treatment of chikungunya?', 'Usually, the platelet count does not dip in cases of chikungunya and painkillers like piroxicam can lead to the risk of increased bleeding tendency. So refrain from taking Loconex 20mg Tablet DT or any painkiller in the case of any fever with joint pain. Consult your doctor before starting Loconex 20mg Tablet DT.'),
(29600, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'Are Loconex 20mg Tablet DT and aspirin same?', 'No. Loconex 20mg Tablet DT and aspirin are not same. They belong to the same class of drugs known as COX (cyclooxygenase) inhibitors. They both are anti-inflammatory and analgesic.'),
(29601, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'Can Loconex 20mg Tablet DT be used along with dexamethasone?', 'No. Loconex 20mg Tablet DT should not be used with dexamethasone. They both increase each other\'s toxicity. There is an increased risk of GI ulceration.'),
(29602, 'Loconex 20mg Tablet DT', 'Loco Healthcare Pvt Ltd', 'Loconex 20mg Tablet DT', 'Can Loconex 20mg Tablet DT be used with methocarbamol?', 'Yes. Methocarbamol can be used with Loconex 20mg Tablet DT as no serious side effects are known. Inform your doctor before starting any of the medication.'),
(29603, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'What is Loconim P 100mg/325mg Tablet?', 'Loconim P 100mg/325mg Tablet is a combination of two medicines: Nimesulide and Paracetamol. This medication helps in relieving the pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29604, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'Can I stop taking Loconim P 100mg/325mg Tablet when my pain is relieved?', 'Loconim P 100mg/325mg Tablet is usually used for short-term pain relief and can be discontinued if there is no pain. However, it should be continued if your physician has advised you to do so.'),
(29605, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'Can the use of Loconim P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Loconim P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small and frequent sips. Talk to your doctor if vomiting persists and you notice any signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29606, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Loconim P 100mg/325mg Tablet?', 'The use of Loconim P 100mg/325mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should also be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29607, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'Can I take Loconim P 100mg/325mg Tablet with Vitamin B-complex?', 'Yes, Loconim P 100mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Loconim P 100mg/325mg Tablet helps to relieve pain, Vitamin B-complex helps to correct the vitamin deficiency that might be causing your symptoms.'),
(29608, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'Does Loconim P 100mg/325mg Tablet help in relieving stomach pain?', 'No, Loconim P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(29609, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'Can the use of Loconim P 100mg/325mg Tablet cause damage to the liver?', 'Loconim P 100mg/325mg Tablet contains Nimesulide and Paracetamol and both these medicines are known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(29610, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Loconim P 100mg/325mg Tablet?', 'No, you should avoid taking a higher than the recommended dose of Loconim P 100mg/325mg Tablet as it can increase the risks of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29611, 'Loconim P 100mg/325mg Tablet', 'Loco Healthcare Pvt Ltd', 'Loconim P 100mg/325mg Tablet', 'What are the recommended storage conditions for Loconim P 100mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29612, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'What is Locopan 40mg Injection used for?', 'Locopan 40mg Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Locopan 40mg Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(29613, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'Can I take antacids along with Locopan 40mg Injection?', 'Yes, you can take antacids along with Locopan 40mg Injection. Take it 2 hours before or after you take Locopan 40mg Injection.'),
(29614, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'How long does it take for Locopan 40mg Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Locopan 40mg Injection to work properly so you may still have some symptoms during this time.'),
(29615, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'Does Locopan 40mg Injection cause weight gain?', 'Although rare but long-term treatment with Locopan 40mg Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(29616, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'Can I take alcohol with Locopan 40mg Injection?', 'No, alcohol intake is not advised with Locopan 40mg Injection. Alcohol itself does not affect the working of Locopan 40mg Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(29617, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Locopan 40mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(29618, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'Can I take Locopan 40mg Injection for a long term?', 'Locopan 40mg Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Locopan 40mg Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Locopan 40mg Injection as advised by your doctor and under their supervision.'),
(29619, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'Are painkillers safe to take along with Locopan 40mg Injection?', 'Yes, it is safe to take painkillers along with Locopan 40mg Injection. Locopan 40mg Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Locopan 40mg Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(29620, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'Is a single dose of Locopan 40mg Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Locopan 40mg Injection you may get relief with the symptoms. Locopan 40mg Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Locopan 40mg Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Locopan 40mg Injection regularly for 2 weeks as prescribed.'),
(29621, 'Locopan 40mg Injection', 'Loco Healthcare Pvt Ltd', 'Locopan 40mg Injection', 'What are the long term side effects of Locopan 40mg Injection?', 'If Locopan 40mg Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(29622, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'What is Locopan D 10mg/40mg Tablet?', 'Locopan D 10mg/40mg Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(29623, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'Is it safe to use Locopan D 10mg/40mg Tablet?', 'Locopan D 10mg/40mg Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(29624, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'Are there any specific contraindications associated with the use of Locopan D 10mg/40mg Tablet?', 'The use of Locopan D 10mg/40mg Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(29625, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'Can the use of Locopan D 10mg/40mg Tablet cause dry mouth?', 'Yes, the use of Locopan D 10mg/40mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(29626, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'Can the use of Locopan D 10mg/40mg Tablet cause diarrhea?', 'Yes, the use of Locopan D 10mg/40mg Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(29627, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'What are the instructions for storage and disposal of Locopan D 10mg/40mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29628, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'What is Locopan D 10mg/40mg Tablet price?', 'You can get Locopan D 10mg/40mg Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(29629, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'While taking Locopan D 10mg/40mg Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(29630, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'Can I take alcohol while taking Locopan D 10mg/40mg Tablet?', 'No, alcohol intake is not advised with Locopan D 10mg/40mg Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(29631, 'Locopan D 10mg/40mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locopan D 10mg/40mg Tablet', 'Can I stop taking Locopan D 10mg/40mg Tablet if I feel better?', 'If you have been taking Locopan D 10mg/40mg Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(29632, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'What is Locopan D 30mg/40mg Capsule SR?', 'Locopan D 30mg/40mg Capsule SR is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(29633, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'Is it safe to use Locopan D 30mg/40mg Capsule SR?', 'Locopan D 30mg/40mg Capsule SR is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(29634, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'Are there any specific contraindications associated with the use of Locopan D 30mg/40mg Capsule SR?', 'The use of Locopan D 30mg/40mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(29635, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'Can the use of Locopan D 30mg/40mg Capsule SR cause dry mouth?', 'Yes, the use of Locopan D 30mg/40mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(29636, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'Can the use of Locopan D 30mg/40mg Capsule SR cause diarrhea?', 'Yes, the use of Locopan D 30mg/40mg Capsule SR can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(29637, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'What are the instructions for storage and disposal of Locopan D 30mg/40mg Capsule SR?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29638, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'What is Locopan D 30mg/40mg Capsule SR price?', 'You can get Locopan D 30mg/40mg Capsule SR at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(29639, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'While taking Locopan D 30mg/40mg Capsule SR, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(29640, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'Can I take alcohol while taking Locopan D 30mg/40mg Capsule SR?', 'No, alcohol intake is not advised with Locopan D 30mg/40mg Capsule SR. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(29641, 'Locopan D 30mg/40mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locopan D 30mg/40mg Capsule SR', 'Can I stop taking Locopan D 30mg/40mg Capsule SR if I feel better?', 'If you have been taking Locopan D 30mg/40mg Capsule SR for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(29642, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'What is Locorab 20mg Injection used for?', 'Locorab 20mg Injection is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Locorab 20mg Injection also prevents acidity associated with use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). Locorab 20mg Injection is also helpful as a preanesthetic medication (medicine given just before anesthesia) to reduce the chances of aspiration related complications like lung injury.'),
(29643, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'What dietary changes should I make to get relief from acidity?', 'Locorab 20mg Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. It also helps to cut down on caffeinated drinks such as tea, coffee, and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(29644, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'Does Locorab 20mg Injection cause bone problems?', 'Yes, long-term use of Locorab 20mg Injection can cause thinning of bones, which is called osteoporosis. Locorab 20mg Injection decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(29645, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'What other lifestyle changes should I make to get maximum benefit of Locorab 20mg Injection?', 'You make see better results if you make certain dietary and lifestyle changes while taking Locorab 20mg Injection. Exercise regularly and eat healthily. You can consult your dietician to get a diet chart that suits you best. Eat at least 3 hours before sleeping to reduce the chances of aggravation of your symptoms at night. You should avoid spicy and fatty foods while taking this medicine. Refrain from caffeinated drinks such as tea, coffee, and cola. Alcohol intake and smoking should also be avoided as they may worsen your symptoms.'),
(29646, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'Can I take alcohol with Locorab 20mg Injection?', 'No, alcohol intake is not advised with Locorab 20mg Injection. Alcohol itself does not affect the working of Locorab 20mg Injection, but it can increase acid production. This may further cause worsening of your symptoms.'),
(29647, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'Can I take antacids along with Locorab 20mg Injection?', 'Yes, you can take antacids along with Locorab 20mg Injection. Take it 2 hours before or after you take Locorab 20mg Injection.'),
(29648, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'How long does it take for Locorab 20mg Injection to work?', 'Locorab 20mg Injection starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(29649, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'Can I stop taking Locorab 20mg Injection if I feel better?', 'No, do not stop taking Rekool before completing the full course of treatment. You will start to feel better before your treatment is complete. Locorab 20mg Injection is given into a vein, only if oral administration is not possible, for upto 7 days. As soon as the person is able to take it orally, intravenous administration is stopped and oral form is prescribed. Take Locorab 20mg Injection only as prescribed by your doctor to get maximum benefit.'),
(29650, 'Locorab 20mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorab 20mg Injection', 'Is Locorab 20mg Injection safe?', 'Yes, Locorab 20mg Injection is relatively safe. Most of the people who take Locorab 20mg Injection do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(29651, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'What is Locorab 20mg Tablet used for?', 'Locorab 20mg Tablet is used for the treatment of stomach and intestinal ulcers (gastric and duodenal ulcers), reflux esophagitis, or gastroesophageal reflux disease (GERD). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms. Locorab 20mg Tablet also prevents acidity associated with the use of painkillers and stress ulcers in critically ill people. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES).'),
(29652, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'How long does it take for Locorab 20mg Tablet to work?', 'Locorab 20mg Tablet starts working within an hour of taking it and shows maximum benefit within two to four hours. You should start feeling better within 2 to 3 days but it may take up to 4 weeks to relieve your symptoms significantly.'),
(29653, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'What is the best time to take Locorab 20mg Tablet?', 'It is best to take Locorab 20mg Tablet before your breakfast. If you are taking two doses, take it in the morning and evening. Locorab 20mg Tablet is more effective when it is taken an hour before your food.'),
(29654, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'Can I stop taking Locorab 20mg Tablet if I feel better?', 'No, do not stop taking Locorab 20mg Tablet before completing the full course of treatment. You will start to feel better before your treatment is complete.'),
(29655, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'Does Locorab 20mg Tablet cause bone problems?', 'Yes, long-term use of Locorab 20mg Tablet can cause thinning of bones, which is called osteoporosis. Locorab 20mg Tablet decreases the calcium absorption leading to calcium deficiency and increases the risk of bone fractures of the hip, wrist, or spine. Take an adequate amount of calcium in your diet or take the supplements as advised by your doctor to avoid any bone problems.'),
(29656, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'How is Locorab 20mg Tablet useful in the treatment of H. pylori infection?', 'Locorab 20mg Tablet is used along with antibiotics for the treatment of H.Pylori infection. It works by decreasing stomach acid volume and decreasing breakdown and washout of antibiotics leading to an increased antibiotic concentration and tissue penetration. It also helps in symptomatic relief by decreasing associated acidity, reflux, and heartburn.'),
(29657, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'Can I take Locorab 20mg Tablet with vitamin D?', 'Yes, vitamin D can be taken along with Locorab 20mg Tablet. Vitamin D is generally advised to be taken as a supplement with Locorab 20mg Tablet as the long-term use of Locorab 20mg Tablet decreases the absorption of calcium and may lead to calcium deficiency. This can lead to osteoporosis (thinning of bones) and increase the risk of bone fractures like hip, wrist, and spine fractures. Please consult your doctor to know about ways to prevent this.'),
(29658, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'Can long term use of Locorab 20mg Tablet cause magnesium deficiency?', 'Long-term use of Locorab 20mg Tablet can lower magnesium levels in patients taking multiple daily doses for 3 months or longer. Get your magnesium levels checked at regular intervals. Tell your doctor if you experience seizures (fits), dizziness, abnormal or fast heartbeat, jitteriness, jerking movements or shaking (tremors), muscle weakness, spasms of the hands and feet, cramps, muscle aches.'),
(29659, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'Is it safe to use Locorab 20mg Tablet for a long period of time?', 'Locorab 20mg Tablet should be used for as long as it has been prescribed by your doctor. Locorab 20mg Tablet is usually considered to be safe when taken in the recommended dose and duration. If Locorab 20mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood, making you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, subacute cutaneous lupus erythematosus, osteoporosis, and vitamin B12 deficiency.'),
(29660, 'Locorab 20mg Tablet', 'Locus Pharma Pvt Ltd', 'Locorab 20mg Tablet', 'Can I take alcohol with Locorab 20mg Tablet?', 'No, alcohol intake is not advised with Locorab 20mg Tablet. Alcohol itself does not affect the working of Locorab 20mg Tablet, but it can increase acid production. This may further cause worsening of your symptoms.'),
(29661, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'What is Locorab D 30mg/20mg Capsule SR?', 'Locorab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(29662, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'What are the contraindications of Locorab D 30mg/20mg Capsule SR?', 'The use of Locorab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(29663, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'Can the use of Locorab D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Locorab D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(29664, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'Can the use of Locorab D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Locorab D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(29665, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Locorab D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29666, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'Is it safe to use Locorab D 30mg/20mg Capsule SR?', 'Yes, Locorab D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(29667, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'What is the best time to take Locorab D 30mg/20mg Capsule SR?', 'It is best to take Locorab D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(29668, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'Can the use of Locorab D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Locorab D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(29669, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'What is Locorab D 30mg/20mg Capsule SR?', 'Locorab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(29670, 'Locorab D 30mg/20mg Capsule SR', 'Loco Healthcare Pvt Ltd', 'Locorab D 30mg/20mg Capsule SR', 'What are the contraindications of Locorab D 30mg/20mg Capsule SR?', 'The use of Locorab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(29671, 'Locorade Oral Suspension', 'Loco Healthcare Pvt Ltd', 'Locorade Oral Suspension', 'Will a higher than the recommended dose of Locorade Oral Suspension be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms or there is an increased severity of your symptoms, please consult your doctor.'),
(29672, 'Locorade Oral Suspension', 'Loco Healthcare Pvt Ltd', 'Locorade Oral Suspension', 'What if I miss a dose?', 'Take the missed dose as soon as you remember. But, skip the missed dose if it is time for your next dose. Then follow your normal routine.'),
(29673, 'Locorade Oral Suspension', 'Loco Healthcare Pvt Ltd', 'Locorade Oral Suspension', 'Can the use of Locorade Oral Suspension cause diarrhea?', 'Yes, the use of Locorade Oral Suspension can cause diarrhea. In case of diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting your doctor.'),
(29674, 'Locorade Oral Suspension', 'Loco Healthcare Pvt Ltd', 'Locorade Oral Suspension', 'Can the use of Locorade Oral Suspension cause constipation?', 'Yes, the use of Locorade Oral Suspension can cause constipation. To prevent constipation, eat high-fiber foods like vegetables, fruits, and cereals. Drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or taking a short walk. Talk to your doctor about if persistent constipation occurs.'),
(29675, 'Locorade Oral Suspension', 'Loco Healthcare Pvt Ltd', 'Locorade Oral Suspension', 'What are the instructions for the storage and disposal of Locorade Oral Suspension?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29676, 'Locorex 1000mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex 1000mg Injection', 'Is Locorex 1000mg Injection safe?', 'Locorex 1000mg Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(29677, 'Locorex 1000mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex 1000mg Injection', 'How long does Locorex 1000mg Injection take to work?', 'Usually, Locorex 1000mg Injection starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(29678, 'Locorex 1000mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex 1000mg Injection', 'Who should not take Locorex 1000mg Injection?', 'Locorex 1000mg Injection should not be prescribed to people who are allergic to Locorex 1000mg Injection or any of its ingredients. Inform your doctor if you have or ever had any problems with your liver, kidneys, gall bladder, or any other blood-related disorders such as hemolytic anemia. If you are pregnant, breastfeeding or if you are planning a baby, do not take Locorex 1000mg Injection without consulting your doctor to avoid any harmful effects on the baby. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine.'),
(29679, 'Locorex 1000mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex 1000mg Injection', 'What if I do not get better after using Locorex 1000mg Injection?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(29680, 'Locorex 1000mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex 1000mg Injection', 'For how long does Locorex 1000mg Injection stay in the body?', 'Usually, Locorex 1000mg Injection stays in the body for around 2 days after completely stopping the medicine.'),
(29681, 'Locorex 1000mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex 1000mg Injection', 'Is Locorex 1000mg Injection effective?', 'Locorex 1000mg Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Locorex 1000mg Injection too early, the symptoms may return or worsen.'),
(29682, 'Locorex 1000mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex 1000mg Injection', 'How is Locorex 1000mg Injection administered?', 'Locorex 1000mg Injection is administered under the supervision of a trained healthcare professional or a doctor and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Locorex 1000mg Injection.'),
(29683, 'Locorex S 1000mg/500mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex S 1000mg/500mg Injection', 'Can the use of Locorex S 1000mg/500mg Injection cause allergic reaction?', 'Yes, Locorex S 1000mg/500mg Injection can cause an allergic reaction and is considered to be harmful for patients with known allergy to a group of antibiotic called cephalosporins. Seek emergency medical help if you have any sign of an allergic reaction like hives; difficulty in breathing; swelling of your face, lips, tongue, or throat.'),
(29684, 'Locorex S 1000mg/500mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex S 1000mg/500mg Injection', 'Can the use of Locorex S 1000mg/500mg Injection cause diarrhea?', 'Yes, the use of Locorex S 1000mg/500mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(29685, 'Locorex S 1000mg/500mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex S 1000mg/500mg Injection', 'How long does Locorex S 1000mg/500mg Injection takes to work?', 'Usually, Locorex S 1000mg/500mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29686, 'Locorex S 1000mg/500mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex S 1000mg/500mg Injection', 'What if I don\'t get better after using Locorex S 1000mg/500mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29687, 'Locorex S 1000mg/500mg Injection', 'Loco Healthcare Pvt Ltd', 'Locorex S 1000mg/500mg Injection', 'Can I stop taking Locorex S 1000mg/500mg Injection when I feel better?', 'No, do not stop taking Locorex S 1000mg/500mg Injection and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29688, 'Locort Cream', 'Ochoa Laboratories Ltd', 'Locort Cream', 'Q. Can Locort Cream be used on the face?', 'No, Locort Cream should not be used on the face. In addition to this, Locort Cream should not be used on the axillae (armpits), groin and if there is atrophy (wasting away of tissues) at the treatment site. In certain circumstances, it can be exceptionally considered to be used by the doctors. It should be used only after consultation with your physician and if possible, the application on the face should be limited to a maximum of 5 days.'),
(29689, 'Locort Cream', 'Ochoa Laboratories Ltd', 'Locort Cream', 'Q. Can we use Locort Cream in infections?', 'Locort Cream is not an antimicrobial or antifungal agent. It is a steroid medication. It should not be used in infections as being a corticosteroid it suppresses the immune system and increases the risk of infections. Bacterial infections are prone to worsen if the infection is covered with a dressing after using Locort Cream. In case the inflammatory lesions get infected or there is any spread of infection, consult your doctor immediately. The doctor will withdraw the use of Locort Cream and provide appropriate antimicrobial therapy.'),
(29690, 'Locort Cream', 'Ochoa Laboratories Ltd', 'Locort Cream', 'Q. How to use Locort Cream?', 'Before using Locort Cream, clean and dry the affected area. Gently and thoroughly massage it into the skin. Be careful not to get the medication in your eyes or mouth. If Locort Cream gets in your eyes accidentally, wash with plenty of water and call your doctor if your eyes are irritated.'),
(29691, 'Locort Cream', 'Ochoa Laboratories Ltd', 'Locort Cream', 'Q. Can I stop taking Locort Cream when my symptoms are relieved?', 'No, do not stop taking Locort Cream and finish the full course of treatment even if you feel better. Your symptoms may improve before your treatment is complete. Stopping Locort Cream before your treatment is completed can bring back your symptoms of skin.'),
(29692, 'Locort Cream', 'Ochoa Laboratories Ltd', 'Locort Cream', 'Q. What are the precautions that are needed to be taken while using Locort Cream?', 'Locort Cream should not be used on the face. Do not use the medication for longer periods of time than you have been advised. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side-effects. This medicine should only be used when advised by the doctor and never given to other people even if their condition appears to be the same.'),
(29693, 'Locort Cream', 'Ochoa Laboratories Ltd', 'Locort Cream', 'Q. Who should not use Locort Cream?', 'Locort Cream should not be used in people who are allergic to Locort Cream or any of its ingredients. It should also be avoided if a person has any kind of infection of the skin, eyes etc. It is important to inform your doctor if you are pregnant, planning a baby or breastfeeding to avoid any harm to your baby.'),
(29694, 'Locort Cream', 'Ochoa Laboratories Ltd', 'Locort Cream', 'Q. What should I do if I forget to use Locort Cream?', 'If you forget to use Locort Cream, do not worry and continue using Locort Cream as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(29695, 'Locortus Cream', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Locortus Cream', 'Is Locortus Cream safe in pregnancy?', 'Locortus Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Locortus Cream.'),
(29696, 'Locortus Cream', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Locortus Cream', 'Is Locortus Cream fungicidal or Fungistatic?', 'Locortus Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(29697, 'Locortus Cream', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Locortus Cream', 'How to use Locortus Cream?', 'Use Locortus Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(29698, 'Locortus Cream', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Locortus Cream', 'How long does it take for Locortus Cream to work?', 'For different ailments, Locortus Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(29699, 'Locortus Cream', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Locortus Cream', 'How should I store Locortus Cream?', 'Keep Locortus Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(29700, 'Locortus Cream', 'Sanctus Global Lifesciences Pvt. Ltd.', 'Locortus Cream', 'Is Locortus Cream safe to use in children?', 'Yes, Locortus Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(29701, 'Locotaz 250mg/31.25mg Injection', 'Loco Healthcare Pvt Ltd', 'Locotaz 250mg/31.25mg Injection', 'How long does Locotaz 250mg/31.25mg Injection takes to work?', 'Usually, Locotaz 250mg/31.25mg Injection starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29702, 'Locotaz 250mg/31.25mg Injection', 'Loco Healthcare Pvt Ltd', 'Locotaz 250mg/31.25mg Injection', 'What if I don\'t get better after using Locotaz 250mg/31.25mg Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29703, 'Locoz 6mg Oral Suspension', 'Silicon Pharma', 'Locoz 6mg Oral Suspension', 'Is Locoz 6mg Oral Suspension a steroid?', 'Yes, Locoz 6mg Oral Suspension is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Locoz 6mg Oral Suspension increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(29704, 'Locoz 6mg Oral Suspension', 'Silicon Pharma', 'Locoz 6mg Oral Suspension', 'In what conditions should I avoid giving Locoz 6mg Oral Suspension to my child?', 'Avoid giving Locoz 6mg Oral Suspension to your child if they have conditions like cardiac disease or congestive heart failure (except in the presence of active rheumatic carditis), hypertension, thromboembolic disorders, or diabetes mellitus. Locoz 6mg Oral Suspension should also be avoided if your child has a family history of active TB, active herpes infection, osteoporosis, myasthenia gravis, or renal insufficiency.'),
(29705, 'Locoz 6mg Oral Suspension', 'Silicon Pharma', 'Locoz 6mg Oral Suspension', 'What do I need to know about Locoz 6mg Oral Suspension and my child’s immunizations?', 'For certain vaccines (live or live-attenuated vaccines), your child will need to wait 4 to 6 weeks before starting Locoz 6mg Oral Suspension. Hence, your child needs to receive all immunizations according to immunization guidelines before they start taking Locoz 6mg Oral Suspension.'),
(29706, 'Locoz 6mg Oral Suspension', 'Silicon Pharma', 'Locoz 6mg Oral Suspension', 'How can I store Locoz 6mg Oral Suspension at home?', 'Keep the medicine in a cool dry place out of the reach of children and pets. This will help avoid any accidental intake.'),
(29707, 'Locoz 6mg Oral Suspension', 'Silicon Pharma', 'Locoz 6mg Oral Suspension', 'My child is suffering from a seizure disorder. Is it safe to give Locoz 6mg Oral Suspension to my child?', 'Ans: Prolonged intake of Locoz 6mg Oral Suspension can lead to mental illness as well as a seizure disorder. Therefore, any child who is already suffering from seizure disorder should not take Locoz 6mg Oral Suspension.'),
(29708, 'Locoz 6mg Tablet', 'Silicon Pharma', 'Locoz 6mg Tablet', 'Is Locoz 6mg Tablet a steroid?', 'Yes, Locoz 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Locoz 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(29709, 'Locoz 6mg Tablet', 'Silicon Pharma', 'Locoz 6mg Tablet', 'What is Locoz 6mg Tablet used for?', 'Locoz 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(29710, 'Locoz 6mg Tablet', 'Silicon Pharma', 'Locoz 6mg Tablet', 'How does Locoz 6mg Tablet work?', 'Locoz 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(29711, 'Locoz 6mg Tablet', 'Silicon Pharma', 'Locoz 6mg Tablet', 'Is Locoz 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Locoz 6mg Tablet has a similar effect as that of prednisone. Moreover, Locoz 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(29712, 'Locoz 6mg Tablet', 'Silicon Pharma', 'Locoz 6mg Tablet', 'Is Locoz 6mg Tablet a painkiller?', 'No, Locoz 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(29713, 'Locoz 6mg Tablet', 'Silicon Pharma', 'Locoz 6mg Tablet', 'Can I take Locoz 6mg Tablet with Tamsulosin?', 'Yes, Locoz 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(29714, 'Locozine M 5mg/10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locozine M 5mg/10mg Tablet', 'What is Locozine M 5mg/10mg Tablet?', 'Locozine M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29715, 'Locozine M 5mg/10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locozine M 5mg/10mg Tablet', 'Can the use of Locozine M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Locozine M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(29716, 'Locozine M 5mg/10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locozine M 5mg/10mg Tablet', 'Can Locozine M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Locozine M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(29717, 'Locozine M 5mg/10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locozine M 5mg/10mg Tablet', 'Can the use of Locozine M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Locozine M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(29718, 'Locozine M 5mg/10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locozine M 5mg/10mg Tablet', 'Can I drink alcohol while taking Locozine M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Locozine M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Locozine M 5mg/10mg Tablet.'),
(29719, 'Locozine M 5mg/10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locozine M 5mg/10mg Tablet', 'Will Locozine M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Locozine M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29720, 'Locozine M 5mg/10mg Tablet', 'Loco Healthcare Pvt Ltd', 'Locozine M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Locozine M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(29721, 'Locozole Cream', 'Cimera Skin Care', 'Locozole Cream', 'Is Locozole Cream safe in pregnancy?', 'Locozole Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Locozole Cream.'),
(29722, 'Locozole Cream', 'Cimera Skin Care', 'Locozole Cream', 'Is Locozole Cream fungicidal or Fungistatic?', 'Locozole Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(29723, 'Locozole Cream', 'Cimera Skin Care', 'Locozole Cream', 'How to use Locozole Cream?', 'Use Locozole Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(29724, 'Locozole Cream', 'Cimera Skin Care', 'Locozole Cream', 'How long does it take for Locozole Cream to work?', 'For different ailments, Locozole Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(29725, 'Locozole Cream', 'Cimera Skin Care', 'Locozole Cream', 'How should I store Locozole Cream?', 'Keep Locozole Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(29726, 'Locozole Cream', 'Cimera Skin Care', 'Locozole Cream', 'Is Locozole Cream safe to use in children?', 'Yes, Locozole Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(29727, 'Locozole D 10mg/20mg Capsule', 'Loco Healthcare Pvt Ltd', 'Locozole D 10mg/20mg Capsule', 'Is it safe to use Locozole D 10mg/20mg Capsule?', 'Yes, Locozole D 10mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(29728, 'Locozole D 10mg/20mg Capsule', 'Loco Healthcare Pvt Ltd', 'Locozole D 10mg/20mg Capsule', 'What are the contraindications of Locozole D 10mg/20mg Capsule?', 'The use of Locozole D 10mg/20mg Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(29729, 'Locozole D 10mg/20mg Capsule', 'Loco Healthcare Pvt Ltd', 'Locozole D 10mg/20mg Capsule', 'What is the best time to take Locozole D 10mg/20mg Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(29730, 'Locozole D 10mg/20mg Capsule', 'Loco Healthcare Pvt Ltd', 'Locozole D 10mg/20mg Capsule', 'Can the use of Locozole D 10mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Locozole D 10mg/20mg Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(29731, 'Locozole D 10mg/20mg Capsule', 'Loco Healthcare Pvt Ltd', 'Locozole D 10mg/20mg Capsule', 'Does the use of Locozole D 10mg/20mg Capsule lead to dry mouth?', 'Yes, the use of Locozole D 10mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(29732, 'Locozole D 10mg/20mg Capsule', 'Loco Healthcare Pvt Ltd', 'Locozole D 10mg/20mg Capsule', 'What is the recommended storage condition for Locozole D 10mg/20mg Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29733, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'What is Locpat 40mg Tablet used for?', 'Locpat 40mg Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Locpat 40mg Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(29734, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'How long does it take for Locpat 40mg Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Locpat 40mg Tablet to work properly so you may still have some symptoms during this time.'),
(29735, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'Is a single dose of Locpat 40mg Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Locpat 40mg Tablet you may get relief with the symptoms. Locpat 40mg Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Locpat 40mg Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Locpat 40mg Tablet regularly for 2 weeks as prescribed.'),
(29736, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'Is Locpat 40mg Tablet safe?', 'Yes, Locpat 40mg Tablet is relatively safe. Most of the people who take Locpat 40mg Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(29737, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'Can I take Locpat 40mg Tablet for a long term?', 'Locpat 40mg Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Locpat 40mg Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Locpat 40mg Tablet as advised by your doctor and under their supervision.'),
(29738, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'What are the long term side effects of Locpat 40mg Tablet?', 'If Locpat 40mg Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(29739, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'What is the best time to take Locpat 40mg Tablet?', 'Usually, Locpat 40mg Tablet is taken once a day, first thing in the morning. If you take Locpat 40mg Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(29740, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'Can I stop taking Locpat 40mg Tablet if I feel better?', 'If you have been taking Locpat 40mg Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Locpat 40mg Tablet.'),
(29741, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'Does Locpat 40mg Tablet cause weight gain?', 'Although rare but long-term treatment with Locpat 40mg Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(29742, 'Locpat 40mg Tablet', 'Mccoy Laboratories', 'Locpat 40mg Tablet', 'Can I take alcohol with Locpat 40mg Tablet?', 'No, alcohol intake is not advised with Locpat 40mg Tablet. Alcohol itself does not affect the working of Locpat 40mg Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(29743, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'What is Locpen SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(29744, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Is it safe to take Locpen SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(29745, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Can I stop taking Locpen SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(29746, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Can Locpen SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(29747, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Can Locpen SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29748, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Are there any specific contraindications associated with taking Locpen SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(29749, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Can I take Locpen SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29750, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Can the use of Locpen SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(29751, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'Can I take a higher dose of Locpen SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29752, 'Locpen SP Tablet', 'I-Gale Laboratories LLP', 'Locpen SP Tablet', 'What are the instructions for storage and disposal of Locpen SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29753, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'Is Locpod 100mg Tablet safe to use?', 'Locpod 100mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(29754, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'Can the use of Locpod 100mg Tablet cause diarrhea?', 'Yes, the use of Locpod 100mg Tablet can cause diarrhea. Locpod 100mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(29755, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'Is Locpod 100mg Tablet an antibiotic?', 'Yes, Locpod 100mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(29756, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'Can Locpod 100mg Tablet cause constipation?', 'Yes, Locpod 100mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(29757, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'Can I stop taking Locpod 100mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Locpod 100mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(29758, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'How long does Locpod 100mg Tablet take to work?', 'Usually, Locpod 100mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(29759, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'What if I do not get better after using Locpod 100mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(29760, 'Locpod 100mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 100mg Tablet', 'Can Locpod 100mg Tablet treat UTI?', 'Yes, Locpod 100mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Locpod 100mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(29761, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'Is Locpod 200mg Tablet safe to use?', 'Locpod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(29762, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'Can the use of Locpod 200mg Tablet cause diarrhea?', 'Yes, the use of Locpod 200mg Tablet can cause diarrhea. Locpod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(29763, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'Is Locpod 200mg Tablet an antibiotic?', 'Yes, Locpod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(29764, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'Can Locpod 200mg Tablet cause constipation?', 'Yes, Locpod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(29765, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'Can I stop taking Locpod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Locpod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(29766, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'How long does Locpod 200mg Tablet take to work?', 'Usually, Locpod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(29767, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'What if I do not get better after using Locpod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(29768, 'Locpod 200mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod 200mg Tablet', 'Can Locpod 200mg Tablet treat UTI?', 'Yes, Locpod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Locpod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(29769, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'Can the use of Locpod CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Locpod CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(29770, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'How long does Locpod CV 200mg/125mg Tablet takes to work?', 'Usually, Locpod CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29771, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'What if I don\'t get better after using Locpod CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29772, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'Can I stop taking Locpod CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Locpod CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29773, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'What is Locpod CV 200mg/125mg Tablet?', 'Locpod CV 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(29774, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'Can the use of Locpod CV 200mg/125mg Tablet cause any serious side effects?', 'Locpod CV 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(29775, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'Can I stop taking Locpod CV 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Locpod CV 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29776, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'Can Locpod CV 200mg/125mg Tablet cause allergic reaction?', 'Yes, Locpod CV 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(29777, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'Are there any specific contraindications associated with the use of Locpod CV 200mg/125mg Tablet?', 'The use of Locpod CV 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Locpod CV 200mg/125mg Tablet.'),
(29778, 'Locpod CV 200mg/125mg Tablet', 'Medlock Healthcare Pvt Ltd', 'Locpod CV 200mg/125mg Tablet', 'Can I take oral contraceptive pills while taking Locpod CV 200mg/125mg Tablet?', 'No, Locpod CV 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(29779, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'What if I give too much of Locpod Dry Syrup by mistake?', 'An extra dose of Locpod Dry Syrup is unlikely to do harm. However, if you think you have given too much of Locpod Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(29780, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'Are there any possible serious side effects of Locpod Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(29781, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'Can other medicines be given at the same time as Locpod Dry Syrup?', 'Locpod Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Locpod Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(29782, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'Can I get my child vaccinated while on treatment with Locpod Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(29783, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'Which lab tests may my child undergo while taking Locpod Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(29784, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(29785, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(29786, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(29787, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'Can Locpod Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Locpod Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Locpod Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(29788, 'Locpod Dry Syrup', 'Medlock Healthcare Pvt Ltd', 'Locpod Dry Syrup', 'Can Locpod Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Locpod Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(29789, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'Why have I been prescribed Locprin A 75mg/75mg Tablet?', 'You may have been prescribed Locprin A 75mg/75mg Tablet if you had a heart attack, were treated with stents in your coronary arteries, or had coronary artery bypass graft surgery (CABG).'),
(29790, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'Is Locprin A 75mg/75mg Tablet a blood thinner?', 'Yes, Locprin A 75mg/75mg Tablet is a type of blood thinner. It works by preventing platelets (type of blood cells) from sticking together and forming clots. This action of Locprin A 75mg/75mg Tablet helps in preventing conditions like heart attack or stroke in people with heart disease, who have recently suffered a heart attack or severe heart-related chest pain (unstable angina).'),
(29791, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'How long do I need to take Locprin A 75mg/75mg Tablet after stent insertion?', 'Your doctor will suggest the exact duration for which you may have to take Locprin A 75mg/75mg Tablet. The duration will be decided after considering various factors like the illness you are being treated for, type of stent inserted, any episodes of bleeding experienced by you during treatment, etc. Usually, Locprin A 75mg/75mg Tablet is prescribed for a minimum duration of 1 year. However, it is advised to follow your doctor\'s advice precisely to get maximum benefit of Locprin A 75mg/75mg Tablet. Do not stop the medication on your own, consult your doctor first. Sudden discontinuation may increase the chances of clot formation in the stent, heart attack and can even lead to death.'),
(29792, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'Can I drink alcohol while taking Locprin A 75mg/75mg Tablet?', 'It is not advised to take alcohol while taking Locprin A 75mg/75mg Tablet, as alcohol may increase your chance of stomach bleeding. As a result, you may vomit blood (which may be bright red blood or black/dark brown like coffee grounds) or you may have bloody or black tarry stools. Discuss with your doctor if you are not sure.'),
(29793, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'What is the most important information I need to know about Locprin A 75mg/75mg Tablet?', 'Locprin A 75mg/75mg Tablet may cause serious or life-threatening bleeding. Moreover, you may bruise easily and it may take longer than usual for bleeding to stop even if you have a minor injury like a small cut while shaving. Get emergency medical help if you notice excessive or prolonged bleeding. You should inform your doctor if you notice black tarry stools or if there is blood in the urine. Be vigilant on any signs of stroke such as sudden numbness or weakness (one side or both sides of the body), difficulty walking, mental confusion, slurred speech, dizziness and any unexplained headache. Contact your doctor immediately if you develop any such signs of stroke as stroke is an uncommon side effect of Locprin A 75mg/75mg Tablet and needs urgent medical attention as it can otherwise be fatal.'),
(29794, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'Do I need to stop Locprin A 75mg/75mg Tablet before surgery?', 'Your doctor will decide whether you need to stop taking Locprin A 75mg/75mg Tablet before any surgery or treatment or not. Usually, if a surgery or treatment is planned beforehand, the doctor may stop Locprin A 75mg/75mg Tablet a few days (usually 7 days) before the surgery or treatment owing to the increased risk of bleeding during the procedure. You should not stop taking Locprin A 75mg/75mg Tablet on your own without discussing it with your doctor.'),
(29795, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'Who should not take Locprin A 75mg/75mg Tablet?', 'Locprin A 75mg/75mg Tablet is not recommended for people who are allergic to it or any of its ingredients. Do not take Locprin A 75mg/75mg Tablet if you have or ever had severe liver disease, stomach ulcers, bleeding in the brain (stroke or a transient ischemic attack, also known as TIA), or if you have a bleeding disorder known as hemophilia (disease in which blood does not clot normally). Additionally, avoid taking Locprin A 75mg/75mg Tablet if you are trying to get pregnant, already pregnant, or breastfeeding.'),
(29796, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'What if I forget to take a dose of Locprin A 75mg/75mg Tablet?', 'If you forget to take a dose of Locprin A 75mg/75mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(29797, 'Locprin A 75mg/75mg Tablet', 'Acekinetics Healthcare Pvt Ltd', 'Locprin A 75mg/75mg Tablet', 'What should I avoid while taking Locprin A 75mg/75mg Tablet?', 'Avoid activities that may increase your chances of bleeding. Be extra careful while shaving or brushing your teeth to prevent bleeding. Also, you should avoid taking painkillers, but if you need to take one like ibuprofen for joint pain, headache, backache, etc. then consult your doctor first. This is because taking pain killers with Locprin A 75mg/75mg Tablet may increase your chances of developing a stomach ulcer and bleeding. Refrain from taking excessive alcohol with Locprin A 75mg/75mg Tablet as it can irritate your stomach and lead to a stomach ulcer as well.'),
(29798, 'Locren Capsule SR', 'Beaumont Healthcare Pvt Ltd', 'Locren Capsule SR', 'What is Locren Capsule SR?', 'Locren Capsule SR is a combination of two medicines: Aceclofenac and Rabeprazole. This medication helps in relieving pain and inflammation. Aceclofenac works by lowering the levels of chemical substances in the body that cause pain and inflammation. Rabeprazole helps in preventing the digestive problem that may occur due to Aceclofenac.'),
(29799, 'Locren Capsule SR', 'Beaumont Healthcare Pvt Ltd', 'Locren Capsule SR', 'Can I stop taking Locren Capsule SR when my pain is relieved?', 'Locren Capsule SR, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29800, 'Locren Capsule SR', 'Beaumont Healthcare Pvt Ltd', 'Locren Capsule SR', 'Can the use of Locren Capsule SR cause nausea and vomiting?', 'Yes, the use of Locren Capsule SR can cause nausea and vomiting. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29801, 'Locren Capsule SR', 'Beaumont Healthcare Pvt Ltd', 'Locren Capsule SR', 'Can the use of Locren Capsule SR cause dizziness?', 'Yes, the use of Locren Capsule SR can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(29802, 'Locren Capsule SR', 'Beaumont Healthcare Pvt Ltd', 'Locren Capsule SR', 'Can I take Locren Capsule SR with Vitamin B-complex?', 'Yes, Locren Capsule SR can be taken with Vitamin B-complex preparations. While Locren Capsule SR helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(29803, 'Locren Capsule SR', 'Beaumont Healthcare Pvt Ltd', 'Locren Capsule SR', 'What is the recommended storage condition for Locren Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29804, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'What is Locric 75mg Tablet used for?', 'Locric 75mg Tablet is used to prevent formation of blood clots, thus reducing the risk of heart attacks or stroke. It facilitates smooth circulation of blood in the body by reducing the ability of the platelets to stick together, that could otherwise lead to formation of harmful clots in hardened blood vessels.'),
(29805, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'Is Locric 75mg Tablet a blood thinner?', 'Yes, Locric 75mg Tablet is an antiplatelet medicine which is also known as a blood thinner. It makes your blood flow more easily through your blood vessels and prevents formation of harmful blood clots. This lowers your chances of heart attack or stroke.'),
(29806, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'When should you take Locric 75mg Tablet?', 'You should take Locric 75mg Tablet exactly as prescribed by the doctor. You can take it with or without food, at any time of the day. However, it is important to take it regularly at the same time each day for best results. This will also help you to remember to take it daily.'),
(29807, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'Does Locric 75mg Tablet affect blood pressure?', 'Yes, Locric 75mg Tablet may rarely cause a decrease in blood pressure as a side effect. However, this is very rare and does not affect everyone. Consult your doctor if you feel dizzy, lightheaded, weak or have a blurred vision. These are signs and symptoms of low blood pressure and therefore, you should contact your doctor immediately.'),
(29808, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'Who should not take Locric 75mg Tablet?', 'Locric 75mg Tablet is not recommended for people who are allergic to it, have severe liver disease, have stomach ulcers, bleeding in the brain, or have a bleeding disorder known as hemophilia (disease in which blood does not clot normally).'),
(29809, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'Can omeprazole be taken along with Locric 75mg Tablet?', 'Omeprazole ( a proton pump inhibitor or PPI used to treat and prevent indigestion) may interfere with the working of Locric 75mg Tablet and reduce the effect of Locric 75mg Tablet. Your doctor may prescribe an alternate PPI like lansoprazole, if you suffer from indigestion or if they judge that it would be beneficial to you. You should let your doctor know about all the medicines that have been prescribed to you before starting Locric 75mg Tablet. Always consult your doctor before taking any medicine.'),
(29810, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'What will happen if I stop taking Locric 75mg Tablet?', 'If you stop taking Locric 75mg Tablet suddenly, your chances of heart attack or stroke may increase. These conditions can be fatal. Do not stop taking it without talking to your doctor, otherwise your condition may worsen. Continue taking Locric 75mg Tablet for as long as prescribed by your doctor to get maximum benefit.'),
(29811, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'How long does it take Locric 75mg Tablet to start working? How long do I need to take it?', 'Locric 75mg Tablet starts working within 2 hours of taking it. Continue taking it as long as your doctor has advised you. You may have to take it for a few weeks or months, or you may have to take it for the rest of your life.'),
(29812, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'What are the side effects of taking Locric 75mg Tablet?', 'The most common side effect of Locric 75mg Tablet is bleeding. This may lead to bruising on the skin, nosebleeds,  blood in the urine or stools (black tarry stools), or heavier periods than usual in females. Rarely, bleeding may also occur in the head, eyes, lungs, or joints and may even be severe. In case you have a minor injury, such as a small cut while shaving, bleeding may take longer than usual to stop. Get emergency medical help if the bleeding is profuse, does not stop on it’s own, or bothers you. Other side effects of Locric 75mg Tablet that may be seen occasionally in some people include diarrhea, abdominal pain, indigestion or heartburn. Please consult your doctor if any of these side effects persist or worry you.'),
(29813, 'Locric 75mg Tablet', 'Kentreck Laboratories Pvt Ltd', 'Locric 75mg Tablet', 'Can I take alcohol with Locric 75mg Tablet?', 'Yes, you can take alcohol with Locric 75mg Tablet. However, excessive intake of alcohol should be avoided as it can irritate the inner lining of the stomach and this increases the risk of developing a stomach ulcer later.'),
(29814, 'Loctears 0.5% Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loctears 0.5% Eye Drop', 'Q. What is Loctears 0.5% Eye Drop used for?', 'Loctears 0.5% Eye Drop is a tear substitute. It is used as a lubricant for dry eyes. It is also used for the temporary relief of burning, irritation and/or discomfort due to dryness of eyes. Moreover, it is used to lubricate and re-wet soft and rigid gas permeable contact lenses. It is also indicated to relieve dryness, irritation, and discomfort that may be associated with lens wear.'),
(29815, 'Loctears 0.5% Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loctears 0.5% Eye Drop', 'Q. What are the side effects of Loctears 0.5% Eye Drop?', 'You may experience visual disturbances, eye discharge, and may notice medication residue while using this medicine. Some other side effects of this medicine include redness of the eye, eye irritation, burning and discomfort, eyelid swelling and itching of the eye.'),
(29816, 'Loctears 0.5% Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loctears 0.5% Eye Drop', 'Q. How should Loctears 0.5% Eye Drop be stored?', 'Store at or below 25°C and out of the reach of children.  Do not touch the tip of the container to any surface and replace the cap after every use. Remember not to use the eye drops after the expiry date or after 30 days of opening it.'),
(29817, 'Loctears 0.5% Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loctears 0.5% Eye Drop', 'Q. How should Loctears 0.5% Eye Drop be used?', 'If you are using it for dry eyes, instil 1 or 2 drops in the affected eye(s) as needed. If you are using it to lubricate soft and rigid gas-permeable lenses, apply 1 to 2 drops to each eye with the lenses on as needed or as directed by your doctor. Blink several times after pouring the drops.'),
(29818, 'Loctears 0.5% Eye Drop', 'Entod Pharmaceuticals Ltd', 'Loctears 0.5% Eye Drop', 'Q. Is Loctears 0.5% Eye Drop bad?', 'No, Loctears 0.5% Eye Drop is a safe medicine. It is meant for external use only and is not harmful. In some patients, Loctears 0.5% Eye Drop may cause eye irritation (burning and discomfort), eye pain, itchy eyes, visual disturbance. Immediately contact your doctor if any of these effects perists.'),
(29819, 'Locula 10% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 10% Eye Drop', 'What if I don\'t get better after using Locula 10% Eye Drop?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29820, 'Locula 10% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 10% Eye Drop', 'Can I stop taking Locula 10% Eye Drop when my symptoms are relieved?', 'No, do not stop taking Locula 10% Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29821, 'Locula 10% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 10% Eye Drop', 'How long does Locula 10% Eye Drop takes to work?', 'Usually, Locula 10% Eye Drop starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29822, 'Locula 20% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 20% Eye Drop', 'What if I don\'t get better after using Locula 20% Eye Drop?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29823, 'Locula 20% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 20% Eye Drop', 'Can I stop taking Locula 20% Eye Drop when my symptoms are relieved?', 'No, do not stop taking Locula 20% Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29824, 'Locula 20% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 20% Eye Drop', 'How long does Locula 20% Eye Drop takes to work?', 'Usually, Locula 20% Eye Drop starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29825, 'Locula 30% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 30% Eye Drop', 'What if I don\'t get better after using Locula 30% Eye Drop?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(29826, 'Locula 30% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 30% Eye Drop', 'Can I stop taking Locula 30% Eye Drop when my symptoms are relieved?', 'No, do not stop taking Locula 30% Eye Drop and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(29827, 'Locula 30% Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula 30% Eye Drop', 'How long does Locula 30% Eye Drop takes to work?', 'Usually, Locula 30% Eye Drop starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(29828, 'Locula TR Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula TR Eye Drop', 'What is Locula TR Eye Drop used for?', 'Locula TR Eye Drop is a tear substitute. It is used as a lubricant for dry eyes. It is also used for the temporary relief of burning, irritation and/or discomfort due to dryness of eyes. Moreover, it is used to lubricate and re-wet soft and rigid gas permeable contact lenses. It is also indicated to relieve dryness, irritation, and discomfort that may be associated with lens wear.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29829, 'Locula TR Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula TR Eye Drop', 'What are the side effects of Locula TR Eye Drop?', 'You may experience visual disturbances, eye discharge, and may notice medication residue while using this medicine. Some other side effects of this medicine include redness of the eye, eye irritation, burning and discomfort, eyelid swelling and itching of the eye.'),
(29830, 'Locula TR Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula TR Eye Drop', 'How should Locula TR Eye Drop be stored?', 'Store at or below 25°C and out of the reach of children.  Do not touch the tip of the container to any surface and replace the cap after every use. Remember not to use the eye drops after the expiry date or after 30 days of opening it.'),
(29831, 'Locula TR Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula TR Eye Drop', 'How should Locula TR Eye Drop be used?', 'If you are using it for dry eyes, instil 1 or 2 drops in the affected eye(s) as needed. If you are using it to lubricate soft and rigid gas-permeable lenses, apply 1 to 2 drops to each eye with the lenses on as needed or as directed by your doctor. Blink several times after pouring the drops.'),
(29832, 'Locula TR Eye Drop', 'East India Pharmaceutical Works Ltd', 'Locula TR Eye Drop', 'Is Locula TR Eye Drop bad?', 'No, Locula TR Eye Drop is a safe medicine. It is meant for external use only and is not harmful. In some patients, Locula TR Eye Drop may cause eye irritation (burning and discomfort), eye pain, itchy eyes, visual disturbance. Immediately contact your doctor if any of these effects perists.'),
(29833, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'Can I feel dizzy after taking Locure 50mg Tablet?', 'Yes, the use of Locure 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(29834, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'Is Locure 50mg Tablet a good blood pressure medicine?', 'Locure 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(29835, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'What are some of the lifestyle changes I should make while using Locure 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Locure 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Locure 50mg Tablet and to keep yourself healthy.'),
(29836, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'For how long do I need to take Locure 50mg Tablet?', 'You may have to take Locure 50mg Tablet for a long term, even life long. Locure 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Locure 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(29837, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'Does Locure 50mg Tablet cause weight gain?', 'No, Locure 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(29838, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'What are the long-term side effects of Locure 50mg Tablet?', 'Long-term use of Locure 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Locure 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(29839, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'Is Locure 50mg Tablet bad for the kidneys?', 'Yes, Locure 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Locure 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(29840, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'How long does Locure 50mg Tablet take to work?', 'The blood pressure-lowering effect of Locure 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(29841, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'When and how should Locure 50mg Tablet be taken?', 'Take Locure 50mg Tablet exactly as per your doctor’s advice. Locure 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(29842, 'Locure 50mg Tablet', 'Glowsun India Labs Pvt Ltd', 'Locure 50mg Tablet', 'What is the most important information that I need to know about Locure 50mg Tablet?', 'Taking Locure 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Locure 50mg Tablet, stop taking Locure 50mg Tablet and call your doctor immediately.'),
(29843, 'Loczin-AM Tablet SR', 'Amglos Pharmaceutical Private Limited', 'Loczin-AM Tablet SR', 'Can the use of Loczin-AM Tablet SR cause dry mouth?', 'Yes, the use of Loczin-AM Tablet SR can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night.'),
(29844, 'Loczin-AM Tablet SR', 'Amglos Pharmaceutical Private Limited', 'Loczin-AM Tablet SR', 'Can I use Loczin-AM Tablet SR while breastfeeding?', 'No, Loczin-AM Tablet SR should not be used by breastfeeding mothers. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(29845, 'Loczin-AM Tablet SR', 'Amglos Pharmaceutical Private Limited', 'Loczin-AM Tablet SR', 'Can I drink alcohol while taking Loczin-AM Tablet SR?', 'No, avoid drinking alcohol while taking Loczin-AM Tablet SR. Drinking alcohol will increase the risk of serious side effects caused by Loczin-AM Tablet SR.'),
(29846, 'Loczin-AM Tablet SR', 'Amglos Pharmaceutical Private Limited', 'Loczin-AM Tablet SR', 'What are the instructions for the storage and disposal of Loczin-AM Tablet SR?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29847, 'Lod 10mg Tablet', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 10mg Tablet', 'Is Lod 10mg Tablet a steroid? What is it used for?', 'No, Lod 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(29848, 'Lod 10mg Tablet', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 10mg Tablet', 'Does Lod 10mg Tablet make you tired and drowsy?', 'Yes, Lod 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(29849, 'Lod 10mg Tablet', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 10mg Tablet', 'How long does it take for Lod 10mg Tablet to work?', 'Lod 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(29850, 'Lod 10mg Tablet', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 10mg Tablet', 'Can I take Lod 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lod 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(29851, 'Lod 10mg Tablet', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 10mg Tablet', 'Is it safe to take Lod 10mg Tablet for a long time?', 'Lod 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lod 10mg Tablet for only as long as you need it.'),
(29852, 'Lod 10mg Tablet', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 10mg Tablet', 'For how long should I continue Lod 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lod 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lod 10mg Tablet'),
(29853, 'Lod 5mg Capsule', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 5mg Capsule', 'Is Lod 5mg Capsule a steroid? What is it used for?', 'No, Lod 5mg Capsule is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(29854, 'Lod 5mg Capsule', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 5mg Capsule', 'Does Lod 5mg Capsule make you tired and drowsy?', 'Yes, Lod 5mg Capsule can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(29855, 'Lod 5mg Capsule', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 5mg Capsule', 'How long does it take for Lod 5mg Capsule to work?', 'Lod 5mg Capsule starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(29856, 'Lod 5mg Capsule', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 5mg Capsule', 'Can I take Lod 5mg Capsule and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lod 5mg Capsule during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(29857, 'Lod 5mg Capsule', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 5mg Capsule', 'Is it safe to take Lod 5mg Capsule for a long time?', 'Lod 5mg Capsule is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lod 5mg Capsule for only as long as you need it.'),
(29858, 'Lod 5mg Capsule', 'Sol Derma Pharmaceuiticals Pvt Ltd', 'Lod 5mg Capsule', 'For how long should I continue Lod 5mg Capsule?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lod 5mg Capsule for a longer time. Talk to your doctor if you are unsure about the duration of using Lod 5mg Capsule'),
(29859, 'Lodam 50mg Injection', 'Malody Healthcare Ltd', 'Lodam 50mg Injection', 'Is there anything I need to be careful about while on therapy with Lodam 50mg Injection?', 'Lodam 50mg Injection may cause drowsiness and dizziness, especially in the beginning of the treatment. Do not drive or work with tools or machinery if your alertness is affected. It is not advisable to drink alcohol during treatment with this medicine as it might increase sleepiness.'),
(29860, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'For how long should I take Lodens 10 Tablet?', 'You may need to take Lodens 10 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lodens 10 Tablet. Stopping Lodens 10 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(29861, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'Does Lodens 10 Tablet cause weight gain?', 'No, there is no evidence of Lodens 10 Tablet causing weight gain. If you are taking Lodens 10 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(29862, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'Does Lodens 10 Tablet make you tired?', 'Yes, Lodens 10 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lodens 10 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lodens 10 Tablet.'),
(29863, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'Should Lodens 10 Tablet be taken at night?', 'Lodens 10 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(29864, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'What foods should be avoided when taking Lodens 10 Tablet?', 'Lodens 10 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(29865, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'How do I know whether Lodens 10 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lodens 10 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lodens 10 Tablet versus the risks of not taking it at all.'),
(29866, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'Can Lodens 10 Tablet cause memory loss?', 'Lodens 10 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lodens 10 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(29867, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'Can Lodens 10 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lodens 10 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29868, 'Lodens 10 Tablet', 'Anthem Biopharma', 'Lodens 10 Tablet', 'Is it true that Lodens 10 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lodens 10 Tablet may slightly increase this risk. This is because Lodens 10 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29869, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'For how long should I take Lodens 20mg Tablet?', 'You may need to take Lodens 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lodens 20mg Tablet. Stopping Lodens 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(29870, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'Does Lodens 20mg Tablet cause weight gain?', 'No, there is no evidence of Lodens 20mg Tablet causing weight gain. If you are taking Lodens 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(29871, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'Does Lodens 20mg Tablet make you tired?', 'Yes, Lodens 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lodens 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lodens 20mg Tablet.'),
(29872, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'Should Lodens 20mg Tablet be taken at night?', 'Lodens 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(29873, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'What foods should be avoided when taking Lodens 20mg Tablet?', 'Lodens 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(29874, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'How do I know whether Lodens 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lodens 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lodens 20mg Tablet versus the risks of not taking it at all.'),
(29875, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'Can Lodens 20mg Tablet cause memory loss?', 'Lodens 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lodens 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(29876, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'Can Lodens 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lodens 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29877, 'Lodens 20mg Tablet', 'Anthem Biopharma', 'Lodens 20mg Tablet', 'Is it true that Lodens 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lodens 20mg Tablet may slightly increase this risk. This is because Lodens 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29878, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'For how long should I take Lodens 5 Tablet?', 'You may need to take Lodens 5 Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lodens 5 Tablet. Stopping Lodens 5 Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(29879, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'Does Lodens 5 Tablet cause weight gain?', 'No, there is no evidence of Lodens 5 Tablet causing weight gain. If you are taking Lodens 5 Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(29880, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'Does Lodens 5 Tablet make you tired?', 'Yes, Lodens 5 Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lodens 5 Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lodens 5 Tablet.'),
(29881, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'Should Lodens 5 Tablet be taken at night?', 'Lodens 5 Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(29882, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'What foods should be avoided when taking Lodens 5 Tablet?', 'Lodens 5 Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(29883, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'How do I know whether Lodens 5 Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lodens 5 Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lodens 5 Tablet versus the risks of not taking it at all.'),
(29884, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'Can Lodens 5 Tablet cause memory loss?', 'Lodens 5 Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lodens 5 Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(29885, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'Can Lodens 5 Tablet cause muscle problems or muscle injury?', 'Yes, taking Lodens 5 Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(29886, 'Lodens 5 Tablet', 'Anthem Biopharma', 'Lodens 5 Tablet', 'Is it true that Lodens 5 Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lodens 5 Tablet may slightly increase this risk. This is because Lodens 5 Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(29887, 'Lodens F 145mg/10mg Tablet', 'Anthem Biopharma', 'Lodens F 145mg/10mg Tablet', 'Can the use of Lodens F 145mg/10mg Tablet cause liver damage?', 'Lodens F 145mg/10mg Tablet contains Rosuvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(29888, 'Lodens F 145mg/10mg Tablet', 'Anthem Biopharma', 'Lodens F 145mg/10mg Tablet', 'Can the use of Lodens F 145mg/10mg Tablet cause muscle pain?', 'Yes, Lodens F 145mg/10mg Tablet may cause muscle pain due to muscle injury. However, this side effect does not occur in everybody. Talk to your doctor as soon as possible if you are experiencing symptoms such as muscle pain or weakness.'),
(29889, 'Lodens F 145mg/10mg Tablet', 'Anthem Biopharma', 'Lodens F 145mg/10mg Tablet', 'What lifestyle changes should I adopt while taking Lodens F 145mg/10mg Tablet?', 'Making lifestyle changes can boost your health while taking Lodens F 145mg/10mg Tablet. Stop smoking, as smoking lowers your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(29890, 'Lodens F 145mg/10mg Tablet', 'Anthem Biopharma', 'Lodens F 145mg/10mg Tablet', 'What medicines should I avoid while taking Lodens F 145mg/10mg Tablet?', 'Lodens F 145mg/10mg Tablet can interact with several medicines and can cause serious problems. Talk to your doctor and inform him about using Lodens F 145mg/10mg Tablet before taking any prescription or non-prescription medicine.'),
(29891, 'Lodens F 145mg/10mg Tablet', 'Anthem Biopharma', 'Lodens F 145mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lodens F 145mg/10mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29892, 'Lodep 25mg Tablet', 'Excare Laboratories', 'Lodep 25mg Tablet (Excare Laboratories)', 'Can Lodep 25mg Tablet cause impotence?', 'Yes, Lodep 25mg Tablet can cause impotence. Both men and women may experience decreased sexual desire and inability to have an organsm. In males, difficulty in maintaining erection (impotence) or painful ejaculation may be observed. You should consult your doctor immediately if you face any such problems while taking Lodep 25mg Tablet.'),
(29893, 'Lodep 25mg Tablet', 'Excare Laboratories', 'Lodep 25mg Tablet (Excare Laboratories)', 'Is Lodep 25mg Tablet safe?', 'Yes, Lodep 25mg Tablet is safe to use if taken in the dose and duration prescribed by the doctor. Lodep 25mg Tablet is a medicine that treats Obsessive-Compulsive Disorder (OCD), stabilises mood and behavior. It restores the chemical imbalance in the brain and creates a feeling of well being.'),
(29894, 'Lodep 25mg Tablet', 'Excare Laboratories', 'Lodep 25mg Tablet (Excare Laboratories)', 'What are the side effects of Lodep 25mg Tablet?', 'Lodep 25mg Tablet may cause side effects like difficulty or inability to pass urine, altered libido, constipation, dryness in mouth, ejaculation disorder, indigestion and sleepiness. Please consult your doctor if these side effects worry you. The doctor may suggest ways to treat or prevent them.'),
(29895, 'Lodep 25mg Tablet', 'Excare Laboratories', 'Lodep 25mg Tablet (Excare Laboratories)', 'What happens if I take an overdose of Lodep 25mg Tablet?', 'If you have taken an overdose of Lodep 25mg Tablet, you may experience symptoms such as drowsiness, restlessness, agitation and delirium (disturbed state of mind with restlessness and mental confusion). You may also experience severe sweating, fast heartbeat, feeling of faint, seizures (fits), and you may even go into a state of coma. Immediately consult your doctor and seek medical help if you think you have taken too much of this medicine.'),
(29896, 'Lodep 25mg Tablet', 'Excare Laboratories', 'Lodep 25mg Tablet (Excare Laboratories)', 'If I am feeling better, can I stop taking Lodep 25mg Tablet?', 'No, do not stop taking Lodep 25mg Tablet suddenly even if you are feeling better as it may worsen your condition and also cause withdrawal symptoms such as dizziness, nausea, vomiting, headache, weakness, sleep problems, fever, and irritability. Continue taking Lodep 25mg Tablet for the duration as prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(29897, 'Lodep 25mg Tablet', 'PJ Pharmaceuticals', 'Lodep 25mg Tablet (PJ Pharmaceuticals)', 'What is Lodep 25mg Tablet used for?', 'Lodep 25mg Tablet is mainly used to treat depression. It is also used to treat bed wetting in children older than 6 years of age. It works by restoring the chemical imbalance in the brain, thereby enhancing mood and behavior.'),
(29898, 'Lodep 25mg Tablet', 'PJ Pharmaceuticals', 'Lodep 25mg Tablet (PJ Pharmaceuticals)', 'What are the side effects of Lodep 25mg Tablet?', 'Lodep 25mg Tablet may cause side effects  like increased heart rate, blurred vision, dryness in mouth, difficulty in urination, constipation and orthostatic hypotension (sudden decrease in blood pressure on standing). Consult your doctor if these side effects do not go away or worry you.'),
(29899, 'Lodep 25mg Tablet', 'PJ Pharmaceuticals', 'Lodep 25mg Tablet (PJ Pharmaceuticals)', 'Can I just stop taking Lodep 25mg Tablet?', 'No, you must not stop taking Lodep 25mg Tablet suddenly even if you are feeling good as it may worsen your condition. Continue taking Lodep 25mg Tablet for the duration prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(29900, 'Lodep 25mg Tablet', 'PJ Pharmaceuticals', 'Lodep 25mg Tablet (PJ Pharmaceuticals)', 'Can a pregnant woman take Lodep 25mg Tablet?', 'No, pregnant women should avoid taking Lodep 25mg Tablet, unless recommended by the doctor. Studies have shown significant risks to the developing baby and it is given only if the benefits are clearly more than the risks involved. Taking this medicine during the last trimester of the pregnancy may cause symptoms such as breathing problems, weakness, irritability, changes in blood pressure, tremors, and spasms in the newborn. Consult your doctor before taking this medicine if you are pregnant, planning to become pregnant or breastfeeding.'),
(29901, 'Lodep 25mg Tablet', 'PJ Pharmaceuticals', 'Lodep 25mg Tablet (PJ Pharmaceuticals)', 'Does Lodep 25mg Tablet make you sleepy?', 'Yes, Lodep 25mg Tablet may make you feel sleepy. Therefore, it is advised that you should not drive, use any heavy machinery or do any work that requires concentration while taking Lodep 25mg Tablet. Also, refrain from taking alcohol if you are being treated with Lodep 25mg Tablet as it will increase your drowsiness.'),
(29902, 'Lodep 50mg Tablet', 'Excare Laboratories', 'Lodep 50mg Tablet', 'Can Lodep 50mg Tablet cause impotence?', 'Yes, Lodep 50mg Tablet can cause impotence. Both men and women may experience decreased sexual desire and inability to have an organsm. In males, difficulty in maintaining erection (impotence) or painful ejaculation may be observed. You should consult your doctor immediately if you face any such problems while taking Lodep 50mg Tablet.'),
(29903, 'Lodep 50mg Tablet', 'Excare Laboratories', 'Lodep 50mg Tablet', 'Is Lodep 50mg Tablet safe?', 'Yes, Lodep 50mg Tablet is safe to use if taken in the dose and duration prescribed by the doctor. Lodep 50mg Tablet is a medicine that treats Obsessive-Compulsive Disorder (OCD), stabilises mood and behavior. It restores the chemical imbalance in the brain and creates a feeling of well being.'),
(29904, 'Lodep 50mg Tablet', 'Excare Laboratories', 'Lodep 50mg Tablet', 'What are the side effects of Lodep 50mg Tablet?', 'Lodep 50mg Tablet may cause side effects like difficulty or inability to pass urine, altered libido, constipation, dryness in mouth, ejaculation disorder, indigestion and sleepiness. Please consult your doctor if these side effects worry you. The doctor may suggest ways to treat or prevent them.'),
(29905, 'Lodep 50mg Tablet', 'Excare Laboratories', 'Lodep 50mg Tablet', 'What happens if I take an overdose of Lodep 50mg Tablet?', 'If you have taken an overdose of Lodep 50mg Tablet, you may experience symptoms such as drowsiness, restlessness, agitation and delirium (disturbed state of mind with restlessness and mental confusion). You may also experience severe sweating, fast heartbeat, feeling of faint, seizures (fits), and you may even go into a state of coma. Immediately consult your doctor and seek medical help if you think you have taken too much of this medicine.'),
(29906, 'Lodep 50mg Tablet', 'Excare Laboratories', 'Lodep 50mg Tablet', 'If I am feeling better, can I stop taking Lodep 50mg Tablet?', 'No, do not stop taking Lodep 50mg Tablet suddenly even if you are feeling better as it may worsen your condition and also cause withdrawal symptoms such as dizziness, nausea, vomiting, headache, weakness, sleep problems, fever, and irritability. Continue taking Lodep 50mg Tablet for the duration as prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(29907, 'Lodep 75mg Tablet', 'PJ Pharmaceuticals', 'Lodep 75mg Tablet', 'What is Lodep 75mg Tablet used for?', 'Lodep 75mg Tablet is mainly used to treat depression. It is also used to treat bed wetting in children older than 6 years of age. It works by restoring the chemical imbalance in the brain, thereby enhancing mood and behavior.'),
(29908, 'Lodep 75mg Tablet', 'PJ Pharmaceuticals', 'Lodep 75mg Tablet', 'What are the side effects of Lodep 75mg Tablet?', 'Lodep 75mg Tablet may cause side effects  like increased heart rate, blurred vision, dryness in mouth, difficulty in urination, constipation and orthostatic hypotension (sudden decrease in blood pressure on standing). Consult your doctor if these side effects do not go away or worry you.'),
(29909, 'Lodep 75mg Tablet', 'PJ Pharmaceuticals', 'Lodep 75mg Tablet', 'Can I just stop taking Lodep 75mg Tablet?', 'No, you must not stop taking Lodep 75mg Tablet suddenly even if you are feeling good as it may worsen your condition. Continue taking Lodep 75mg Tablet for the duration prescribed by your doctor to get maximum benefit. If any of the side effects are bothering you, consult your doctor. In case you have completed your course of treatment, your doctor will reduce your dose gradually before taking you off this medicine completely.'),
(29910, 'Lodep 75mg Tablet', 'PJ Pharmaceuticals', 'Lodep 75mg Tablet', 'Can a pregnant woman take Lodep 75mg Tablet?', 'No, pregnant women should avoid taking Lodep 75mg Tablet, unless recommended by the doctor. Studies have shown significant risks to the developing baby and it is given only if the benefits are clearly more than the risks involved. Taking this medicine during the last trimester of the pregnancy may cause symptoms such as breathing problems, weakness, irritability, changes in blood pressure, tremors, and spasms in the newborn. Consult your doctor before taking this medicine if you are pregnant, planning to become pregnant or breastfeeding.'),
(29911, 'Lodep 75mg Tablet', 'PJ Pharmaceuticals', 'Lodep 75mg Tablet', 'Does Lodep 75mg Tablet make you sleepy?', 'Yes, Lodep 75mg Tablet may make you feel sleepy. Therefore, it is advised that you should not drive, use any heavy machinery or do any work that requires concentration while taking Lodep 75mg Tablet. Also, refrain from taking alcohol if you are being treated with Lodep 75mg Tablet as it will increase your drowsiness.'),
(29912, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'Are there any important warnings associated with use of Lodep Plus 12.5mg/5mg Tablet?', 'During the first few months of treatment, Lodep Plus 12.5mg/5mg Tablet may increase suicidal thoughts or actions in some patients. Patients having mood or behavioral disorder have a high risk of developing suicidal thoughts and actions. You should pay close attention and report your doctor of any such behavior or mood changes. Make sure that you visit the doctor for the scheduled follow-up appointments.'),
(29913, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'Can I stop taking Lodep Plus 12.5mg/5mg Tablet when my symptoms are relieved?', 'No, you should continue to take Lodep Plus 12.5mg/5mg Tablet, even if you feel well. If you stop Lodep Plus 12.5mg/5mg Tablet suddenly, serious withdrawal symptoms may occur. Consult your doctor if the symptoms are relieved, he might decrease your dose gradually.'),
(29914, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'How to manage weight gain associated with the use of Lodep Plus 12.5mg/5mg Tablet?', 'There are reports which suggest that the use of Lodep Plus 12.5mg/5mg Tablet can cause weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight. An important to remember is that it is easier to prevent weight gain than losing increased weight.'),
(29915, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'What are the instructions for storage and disposal of Lodep Plus 12.5mg/5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29916, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'Can the use of Lodep Plus 12.5mg/5mg Tablet cause sleepiness?', 'Yes, Lodep Plus 12.5mg/5mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(29917, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'Can the use of Lodep Plus 12.5mg/5mg Tablet affect my sexual life?', 'The use of Lodep Plus 12.5mg/5mg Tablet can affect the sexual life of both men and women. Most commonly caused problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while having sex. If you experience these problems, discuss with your doctor.'),
(29918, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'Can I drink alcohol while taking Lodep Plus 12.5mg/5mg Tablet?', 'No, do not drink alcohol while you are taking Lodep Plus 12.5mg/5mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Lodep Plus 12.5mg/5mg Tablet.'),
(29919, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'Can the use of Lodep Plus 12.5mg/5mg Tablet change the color of urine?', 'Yes, Lodep Plus 12.5mg/5mg Tablet can the change the color of the urine to blue or green. This change of color is expected while using Lodep Plus 12.5mg/5mg Tablet, and it is not harmful. Your urine color becomes normal once you stop taking Lodep Plus 12.5mg/5mg Tablet.'),
(29920, 'Lodep Plus 12.5mg/5mg Tablet', 'Densa Pharmaceuticals Pvt Ltd', 'Lodep Plus 12.5mg/5mg Tablet', 'How long does Lodep Plus 12.5mg/5mg Tablet take to work?', 'Everybody responds differently to the treatment. In general, it can take several weeks to feel the full benefits of Lodep Plus 12.5mg/5mg Tablet, although some people will start to feel better sooner. When taking Lodep Plus 12.5mg/5mg Tablet, it is important to give it time to work.'),
(29921, 'Lodes 12mg Tablet', 'Cyrus Remedies', 'Lodes 12mg Tablet', 'Is Lodes 12mg Tablet a steroid?', 'Yes, Lodes 12mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lodes 12mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(29922, 'Lodes 12mg Tablet', 'Cyrus Remedies', 'Lodes 12mg Tablet', 'What is Lodes 12mg Tablet used for?', 'Lodes 12mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(29923, 'Lodes 12mg Tablet', 'Cyrus Remedies', 'Lodes 12mg Tablet', 'How does Lodes 12mg Tablet work?', 'Lodes 12mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(29924, 'Lodes 12mg Tablet', 'Cyrus Remedies', 'Lodes 12mg Tablet', 'Is Lodes 12mg Tablet better than Prednisone?', 'Clinical studies have shown that Lodes 12mg Tablet has a similar effect as that of prednisone. Moreover, Lodes 12mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(29925, 'Lodes 12mg Tablet', 'Cyrus Remedies', 'Lodes 12mg Tablet', 'Is Lodes 12mg Tablet a painkiller?', 'No, Lodes 12mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(29926, 'Lodes 12mg Tablet', 'Cyrus Remedies', 'Lodes 12mg Tablet', 'Can I take Lodes 12mg Tablet with Tamsulosin?', 'Yes, Lodes 12mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(29927, 'Lodes 6mg Tablet', 'Cyrus Remedies', 'Lodes 6mg Tablet', 'Is Lodes 6mg Tablet a steroid?', 'Yes, Lodes 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Lodes 6mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(29928, 'Lodes 6mg Tablet', 'Cyrus Remedies', 'Lodes 6mg Tablet', 'What is Lodes 6mg Tablet used for?', 'Lodes 6mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(29929, 'Lodes 6mg Tablet', 'Cyrus Remedies', 'Lodes 6mg Tablet', 'How does Lodes 6mg Tablet work?', 'Lodes 6mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(29930, 'Lodes 6mg Tablet', 'Cyrus Remedies', 'Lodes 6mg Tablet', 'Is Lodes 6mg Tablet better than Prednisone?', 'Clinical studies have shown that Lodes 6mg Tablet has a similar effect as that of prednisone. Moreover, Lodes 6mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(29931, 'Lodes 6mg Tablet', 'Cyrus Remedies', 'Lodes 6mg Tablet', 'Is Lodes 6mg Tablet a painkiller?', 'No, Lodes 6mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(29932, 'Lodes 6mg Tablet', 'Cyrus Remedies', 'Lodes 6mg Tablet', 'Can I take Lodes 6mg Tablet with Tamsulosin?', 'Yes, Lodes 6mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(29933, 'Lodex Eye Drop', 'Syntho Pharmaceuticals Pvt Ltd', 'Lodex Eye Drop', 'What is Lodex Eye Drop? What is it used for?', 'Lodex Eye Drop belongs to a group of medicines called steroids, also known as corticosteroids. It is used to relieve symptoms caused due to infection such as swelling, itchiness and redness of the eyes.'),
(29934, 'Lodex Eye Drop', 'Syntho Pharmaceuticals Pvt Ltd', 'Lodex Eye Drop', 'Is Lodex Eye Drop effective?', 'Lodex Eye Drop is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lodex Eye Drop too early, the symptoms may return or worsen.'),
(29935, 'Lodex Eye Drop', 'Syntho Pharmaceuticals Pvt Ltd', 'Lodex Eye Drop', 'I feel better now, can I stop using Lodex Eye Drop?', 'No, you should not stop using Lodex Eye Drop suddenly without talking to your doctor. You may feel better and your symptoms may also improve before completing the full course of treatment. Still, it is advised to continue the medication as stopping the medication too early could allow the spread of the infection and hence prevent complete healing.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(29936, 'Lodex Eye Drop', 'Syntho Pharmaceuticals Pvt Ltd', 'Lodex Eye Drop', 'In which conditions is the use of Lodex Eye Drop avoided?', 'Use of Lodex Eye Drop should be avoided in patients who are allergic to Lodex Eye Drop or any of its components. However, if you are not aware of any allergy or if you are using Lodex Eye Drop for the first time, consult your doctor.'),
(29937, 'Lodex Eye Drop', 'Syntho Pharmaceuticals Pvt Ltd', 'Lodex Eye Drop', 'What are the instructions for the storage and disposal of Lodex Eye Drop?', 'Keep Lodex Eye Drop in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Keep it away from children and other people to avoid any misuse.'),
(29938, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'How long does it take for Lodi 5mg Tablet to work?', 'Lodi 5mg Tablet starts working on the day it is taken. However, it may take weeks to see the full effect. You should continue taking the medicine even if you feel better or if you do not notice any considerable difference. Consult your doctor if you have any concerns or you feel worse after taking the medicine.'),
(29939, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'Does Lodi 5mg Tablet cause itching?', 'Lodi 5mg Tablet may cause itching in some patients, though it is an uncommon side effect. However, if you experience severe itching contact your doctor.'),
(29940, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'Is Lodi 5mg Tablet bad for the kidneys?', 'No, there is no evidence that Lodi 5mg Tablet causes deterioration of kidney problems. Lodi 5mg Tablet can be used in normal doses in patients with kidney problems. In fact, its blood pressure-lowering effect, it helps to prevent injury to the kidneys due to hypertension.'),
(29941, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'Should I take Lodi 5mg Tablet in the morning or at night?', 'Lodi 5mg Tablet can be taken anytime of the day. Usually, it is advised to be taken in the morning, but your doctor may advise to take it in the evening as well. You should take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(29942, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'For how long do I need to take Lodi 5mg Tablet?', 'You should keep on taking Lodi 5mg Tablet for as long as your doctor has recommended you to take it. You may need to take it lifelong. Do not stop taking it, even if you feel well or your blood pressure is well controlled. If you stop taking Lodi 5mg Tablet, your blood pressure may increase again and your condition may worsen.'),
(29943, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'Is Lodi 5mg Tablet a beta-blocker?', 'No, Lodi 5mg Tablet is not a beta-blocker. It belongs to a class of medicines known as calcium channel blockers. It lowers blood pressure by relaxing the blood vessels so that blood can easily flow through the blood vessels.'),
(29944, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'What are the serious side effects of Lodi 5mg Tablet?', 'Lodi 5mg Tablet may cause some serious side effects such as liver problems (yellowing of skin, nausea, vomiting, and loss of appetite), pancreatitis (severe stomach pain, nausea, and vomiting), and recurrent chest pain which may be indicative of a heart attack. However, these side effects are rarely seen. Remember that your doctor has prescribed this medicine to you because the benefit to you is greater than the risk of any potential side effects. Follow your doctor\'s advice.'),
(29945, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'What should I avoid while taking Lodi 5mg Tablet?', 'Consult your doctor first before starting any new prescription or non-prescription medicines or supplements. Take low sodium and low-fat diet, and adhere to the lifestyle changes as advised by your doctor. Avoid eating grapefruit (chakotra) or drinking grapefruit juice while taking Lodi 5mg Tablet. Stop smoking and taking alcohol as this helps to lower your blood pressure and prevents heart problems.'),
(29946, 'Lodi 5mg Tablet', 'Arvincare Pharma', 'Lodi 5mg Tablet', 'I have developed ankle edema and swelling over my feet after using a Lodi 5mg Tablet. What should I do?', 'Lodi 5mg Tablet can cause ankle or foot swelling. To reduce swelling raise your legs while you are sitting down. Talk to your doctor if it does not go away.'),
(29947, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'What is Lodic-MR Tablet?', 'Lodic-MR Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(29948, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'Is it safe to use Lodic-MR Tablet?', 'Lodic-MR Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(29949, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'Can I stop taking Lodic-MR Tablet when my pain is relieved?', 'Lodic-MR Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(29950, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'Can the use of Lodic-MR Tablet cause nausea and vomiting?', 'Yes, the use of Lodic-MR Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29951, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'Can the use of Lodic-MR Tablet cause dizziness?', 'Yes, the use of Lodic-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(29952, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'Can the use of Lodic-MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Lodic-MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(29953, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lodic-MR Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(29954, 'Lodic-MR Tablet', 'Accilex Nutricorp', 'Lodic-MR Tablet', 'What are the recommended storage conditions for Lodic-MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29955, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. What is Lodic-P Tablet?', 'Lodic-P Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(29956, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Is it safe to use Lodic-P Tablet?', 'Yes, Lodic-P Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(29957, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Can I stop taking Lodic-P Tablet when my pain is relieved?', 'Lodic-P Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(29958, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Can the use of Lodic-P Tablet cause nausea and vomiting?', 'Yes, the use of Lodic-P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(29959, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Can the use of Lodic-P Tablet cause dizziness?', 'Yes, the use of Lodic-P Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(29960, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Can the use of Lodic-P Tablet cause damage to kidneys?', 'Yes, the long-term use of Lodic-P Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(29961, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Are there any specific contraindications associated with the use of Lodic-P Tablet?', 'The use of Lodic-P Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(29962, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Can Lodic-P Tablet be taken with Vitamin B-complex?', 'Yes, Lodic-P Tablet can be taken with Vitamin B-complex preparations. While Lodic-P Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(29963, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. Is it safe to take a higher than the recommended dose of Lodic-P Tablet?', 'No, taking a higher than the recommended dose of Lodic-P Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(29964, 'Lodic-P Tablet', 'Accilex Nutricorp', 'Lodic-P Tablet', 'Q. What is the recommended storage condition for Lodic-P Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29965, 'Lodiday 5mg Tablet', 'Anant Remedies', 'Lodiday 5mg Tablet', 'Is Lodiday 5mg Tablet a steroid? What is it used for?', 'No, Lodiday 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(29966, 'Lodiday 5mg Tablet', 'Anant Remedies', 'Lodiday 5mg Tablet', 'Does Lodiday 5mg Tablet make you tired and drowsy?', 'Yes, Lodiday 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(29967, 'Lodiday 5mg Tablet', 'Anant Remedies', 'Lodiday 5mg Tablet', 'How long does it take for Lodiday 5mg Tablet to work?', 'Lodiday 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(29968, 'Lodiday 5mg Tablet', 'Anant Remedies', 'Lodiday 5mg Tablet', 'Can I take Lodiday 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lodiday 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(29969, 'Lodiday 5mg Tablet', 'Anant Remedies', 'Lodiday 5mg Tablet', 'Is it safe to take Lodiday 5mg Tablet for a long time?', 'Lodiday 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lodiday 5mg Tablet for only as long as you need it.'),
(29970, 'Lodiday 5mg Tablet', 'Anant Remedies', 'Lodiday 5mg Tablet', 'For how long should I continue Lodiday 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lodiday 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lodiday 5mg Tablet'),
(29971, 'Lodiday M 5mg/10mg Tablet', 'Anant Remedies', 'Lodiday M 5mg/10mg Tablet', 'What is Lodiday M 5mg/10mg Tablet?', 'Lodiday M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(29972, 'Lodiday M 5mg/10mg Tablet', 'Anant Remedies', 'Lodiday M 5mg/10mg Tablet', 'Can the use of Lodiday M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lodiday M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(29973, 'Lodiday M 5mg/10mg Tablet', 'Anant Remedies', 'Lodiday M 5mg/10mg Tablet', 'Can Lodiday M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lodiday M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(29974, 'Lodiday M 5mg/10mg Tablet', 'Anant Remedies', 'Lodiday M 5mg/10mg Tablet', 'Can the use of Lodiday M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lodiday M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(29975, 'Lodiday M 5mg/10mg Tablet', 'Anant Remedies', 'Lodiday M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lodiday M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lodiday M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lodiday M 5mg/10mg Tablet.'),
(29976, 'Lodiday M 5mg/10mg Tablet', 'Anant Remedies', 'Lodiday M 5mg/10mg Tablet', 'Will Lodiday M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lodiday M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(29977, 'Lodiday M 5mg/10mg Tablet', 'Anant Remedies', 'Lodiday M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lodiday M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(29978, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(29979, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'Can I decrease the dose of Lodiday M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(29980, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'How should Lodiday M Syrup be stored?', 'Lodiday M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(29981, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'Can Lodiday M Syrup make my child sleepy?', 'Lodiday M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(29982, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lodiday M Syrup?', 'No, don’t start Lodiday M Syrup without speaking to your child’s doctor. Moreover, Lodiday M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(29983, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lodiday M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(29984, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lodiday M Syrup to my child?', 'Some studies show that Lodiday M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(29985, 'Lodiday M Syrup', 'Anant Remedies', 'Lodiday M Syrup', 'Can I use Lodiday M Syrup for treating acute asthma attacks in my child?', 'Lodiday M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(29986, 'Lodip 150mg/50mg Tablet', 'Sivling Technologies Pvt Ltd', 'Lodip 150mg/50mg Tablet', 'What lifestyle changes should be made while using Lodip 150mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Lodip 150mg/50mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(29987, 'Lodip 150mg/50mg Tablet', 'Sivling Technologies Pvt Ltd', 'Lodip 150mg/50mg Tablet', 'Can I stop taking Lodip 150mg/50mg Tablet if I feel well?', 'No, keep using Lodip 150mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Lodip 150mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(29988, 'Lodip 150mg/50mg Tablet', 'Sivling Technologies Pvt Ltd', 'Lodip 150mg/50mg Tablet', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(29989, 'Lodip 150mg/50mg Tablet', 'Sivling Technologies Pvt Ltd', 'Lodip 150mg/50mg Tablet', 'What are the contraindications associated with the use of Lodip 150mg/50mg Tablet?', 'Lodip 150mg/50mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(29990, 'Lodip 150mg/50mg Tablet', 'Sivling Technologies Pvt Ltd', 'Lodip 150mg/50mg Tablet', 'Can the use of Lodip 150mg/50mg Tablet cause headache?', 'Yes, the use of Lodip 150mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(29991, 'Lodip 150mg/50mg Tablet', 'Sivling Technologies Pvt Ltd', 'Lodip 150mg/50mg Tablet', 'Can I feel dizzy after taking Lodip 150mg/50mg Tablet?', 'Yes, the use of Lodip 150mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(29992, 'Lodiric 100mg Tablet', 'Novartis India Ltd', 'Lodiric 100mg Tablet', 'What is the best time of the day to take Lodiric 100mg Tablet?', 'Lodiric 100mg Tablet can be taken at anytime of the day but preferably should be taken at the same time each day so that you remember to take it. It is usually prescribed once daily and should be taken after meals. If the dose exceeds 300 mg or if your stomach is upset, you can take it in divided doses as advised by your doctor.'),
(29993, 'Lodiric 100mg Tablet', 'Novartis India Ltd', 'Lodiric 100mg Tablet', 'Why do I still get gout while taking Lodiric 100mg Tablet?', 'If you have started taking Lodiric 100mg Tablet, you may experience an increase in attacks of gout (severe pain, swelling, and redness). However, these attacks usually become shorter and less severe after several months of therapy. The possible reason for increased attacks could be gradual breakdown of uric acid crystals, causing fluctuations in uric acid levels in the blood. To prevent such painful events, your doctor may advise to take colchicine with Lodiric 100mg Tablet, as it can suppress the gouty attacks.'),
(29994, 'Lodiric 100mg Tablet', 'Novartis India Ltd', 'Lodiric 100mg Tablet', 'How long does it take for Lodiric 100mg Tablet to lower uric acid levels?', 'It may take several months before you start feeling better or notice any significant reduction in attacks of gout (severe pain, swelling, and redness). Initially after starting Lodiric 100mg Tablet you may experience gouty attacks. Continue taking Lodiric 100mg Tablet even if you do not experience any considerable relief from the attacks. Do not stop taking Lodiric 100mg Tablet without consulting your doctor. Your doctor will prescribe you another medicine along with Lodiric 100mg Tablet to prevent the initial attacks. It may take up to years for the body to completely get rid of all uric acid crystals.'),
(29995, 'Lodiric 100mg Tablet', 'Novartis India Ltd', 'Lodiric 100mg Tablet', 'What if I take alcohol while taking Lodiric 100mg Tablet?', 'You should refrain yourself from consuming alcohol while taking Lodiric 100mg Tablet as this could make your condition worse. Also, you should avoid all foods that are rich source of proteins as it will help to prevent attacks of gout. Consult  your doctor for a detailed list of food items which need to be avoided. It is also recommended that you drink at least 8 glasses of water or other fluids while taking Lodiric 100mg Tablet, unless your doctor has advised otherwise.'),
(29996, 'Lodiric 100mg Tablet', 'Novartis India Ltd', 'Lodiric 100mg Tablet', 'Does Lodiric 100mg Tablet cause drowsiness?', 'Yes, Lodiric 100mg Tablet may cause drowsiness in some people. It can even make you feel giddy (dizzy) or you may have problems with coordination. It would be best to avoid driving or operating machinery if you experience these side effects. However, if it is unavoidable then extreme caution should be exercised while performing such tasks.'),
(29997, 'Lodiric-SR 250mg Capsule', 'Novartis India Ltd', 'Lodiric-SR 250mg Capsule', 'What is the best time of the day to take Lodiric-SR 250mg Capsule?', 'Lodiric-SR 250mg Capsule can be taken at anytime of the day but preferably should be taken at the same time each day so that you remember to take it. It is usually prescribed once daily and should be taken after meals. If the dose exceeds 300 mg or if your stomach is upset, you can take it in divided doses as advised by your doctor.'),
(29998, 'Lodiric-SR 250mg Capsule', 'Novartis India Ltd', 'Lodiric-SR 250mg Capsule', 'Why do I still get gout while taking Lodiric-SR 250mg Capsule?', 'If you have started taking Lodiric-SR 250mg Capsule, you may experience an increase in attacks of gout (severe pain, swelling, and redness). However, these attacks usually become shorter and less severe after several months of therapy. The possible reason for increased attacks could be gradual breakdown of uric acid crystals, causing fluctuations in uric acid levels in the blood. To prevent such painful events, your doctor may advise to take colchicine with Lodiric-SR 250mg Capsule, as it can suppress the gouty attacks.'),
(29999, 'Lodiric-SR 250mg Capsule', 'Novartis India Ltd', 'Lodiric-SR 250mg Capsule', 'How long does it take for Lodiric-SR 250mg Capsule to lower uric acid levels?', 'It may take several months before you start feeling better or notice any significant reduction in attacks of gout (severe pain, swelling, and redness). Initially after starting Lodiric-SR 250mg Capsule you may experience gouty attacks. Continue taking Lodiric-SR 250mg Capsule even if you do not experience any considerable relief from the attacks. Do not stop taking Lodiric-SR 250mg Capsule without consulting your doctor. Your doctor will prescribe you another medicine along with Lodiric-SR 250mg Capsule to prevent the initial attacks. It may take up to years for the body to completely get rid of all uric acid crystals.'),
(30000, 'Lodiric-SR 250mg Capsule', 'Novartis India Ltd', 'Lodiric-SR 250mg Capsule', 'What if I take alcohol while taking Lodiric-SR 250mg Capsule?', 'You should refrain yourself from consuming alcohol while taking Lodiric-SR 250mg Capsule as this could make your condition worse. Also, you should avoid all foods that are rich source of proteins as it will help to prevent attacks of gout. Consult  your doctor for a detailed list of food items which need to be avoided. It is also recommended that you drink at least 8 glasses of water or other fluids while taking Lodiric-SR 250mg Capsule, unless your doctor has advised otherwise.'),
(30001, 'Lodiric-SR 250mg Capsule', 'Novartis India Ltd', 'Lodiric-SR 250mg Capsule', 'Does Lodiric-SR 250mg Capsule cause drowsiness?', 'Yes, Lodiric-SR 250mg Capsule may cause drowsiness in some people. It can even make you feel giddy (dizzy) or you may have problems with coordination. It would be best to avoid driving or operating machinery if you experience these side effects. However, if it is unavoidable then extreme caution should be exercised while performing such tasks.'),
(30002, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'When do I need to call my child’s doctor right away?', 'Always consult your child’s doctor at every step in case of any confusion. However, immediate assistance may be required if your child develops serious side effects. These may include allergic reactions (such as facial swelling, trouble breathing), signs of liver problem (such as dark-colored urine, yellow eyes or skin), excessive sleepiness, rapid heartbeat, hallucinations, feeling confused or hyperactive, trouble passing urine, irritability, and vision changes.'),
(30003, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'My child is restless and unable to sleep properly at night. Can I give Lodizine Flash 5mg Tablet?', 'No, although this medicine causes drowsiness as a side effect, it should not be given to induce sleep in children. Consult your child’s doctor if your child has trouble sleeping as it could be due to some other underlying condition.'),
(30004, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'Can other medicines be given at the same time as Lodizine Flash 5mg Tablet?', 'Lodizine Flash 5mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lodizine Flash 5mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(30005, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'How much Lodizine Flash 5mg Tablet should I give to my child?', 'Lodizine Flash 5mg Tablet should be given strictly as prescribed by your child’s doctor. The dose of the medicine is calculated according to your child’s body weight and age. Do not increase or decrease the dose on your own as it may cause unwanted effects and can worsen your child’s condition.'),
(30006, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'What if I give too much of Lodizine Flash 5mg Tablet by mistake?', 'Although Lodizine Flash 5mg Tablet is relatively safe to use in children yet an excessive amount may cause some serious side effects such as seizures, hallucinations, rapid heart rate, irritability, slow breathing, and coma.'),
(30007, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'How should Lodizine Flash 5mg Tablet be stored?', 'Store Lodizine Flash 5mg Tablet at room temperature, in a dry place, away from direct heat and light. Keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(30008, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'Does Lodizine Flash 5mg Tablet make you tired and drowsy?', 'Yes, Lodizine Flash 5mg Tablet can make you feel tired, sleepy, and weak.'),
(30009, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'Is Lodizine Flash 5mg Tablet a steroid? What is it used for?', 'Lodizine Flash 5mg Tablet is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(30010, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'How long does it take for Lodizine Flash 5mg Tablet to work?', 'You will notice an improvement within an hour of taking Lodizine Flash 5mg Tablet. However, it may take a little longer to notice the full benefits.'),
(30011, 'Lodizine Flash 5mg Tablet', 'Novartis India Ltd', 'Lodizine Flash 5mg Tablet', 'Can I take Lodizine Flash 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lodizine Flash 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(30012, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'Does Lodizine Syrup make you tired and drowsy?', 'Yes, Lodizine Syrup can make you feel tired, sleepy, and weak. If you have these symptoms, you should avoid driving or operating heavy machinery.'),
(30013, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'Is Lodizine Syrup a steroid? What is it used for?', 'Lodizine Syrup is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(30014, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'How long does it take for Lodizine Syrup to work?', 'You will notice an improvement within an hour of taking Lodizine Syrup. However, it may take a little longer to notice the full benefits.'),
(30015, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'Can I take Lodizine Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lodizine Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(30016, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'For how long should I continue Lodizine Syrup?', 'The duration for which the medicine needs to be taken depends on the problem being treated. If you are taking it for an insect bite, you may need it for a day or two. Similarly, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of the nose) or chronic urticaria, you may need to take Lodizine Syrup for a longer time. Talk to your doctor if you are unsure about the duration of using Lodizine Syrup.'),
(30017, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'Is it safe to take Lodizine Syrup daily for a long time?', 'Lodizine Syrup is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lodizine Syrup for only as long as you need it.'),
(30018, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'Does Lodizine Syrup make you tired and drowsy?', 'Yes, Lodizine Syrup can make you feel tired, sleepy, and weak.'),
(30019, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'Is Lodizine Syrup a steroid? What is it used for?', 'Lodizine Syrup is an anti-allergic medication, not a steroid. It relieves the symptoms of allergy. It is used to relieve runny nose, sneezing and redness, itching, and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander, and mold. It is also used to treat symptoms of hives, including itching and rash.'),
(30020, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'How long does it take for Lodizine Syrup to work?', 'You will notice an improvement within an hour of taking Lodizine Syrup. However, it may take a little longer to notice the full benefits.'),
(30021, 'Lodizine Syrup', 'Novartis India Ltd', 'Lodizine Syrup', 'Can I take Lodizine Syrup and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lodizine Syrup during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep. Do not take two antihistamines together unless recommended by your doctor.'),
(30022, 'Lodol 5 mg/50 mg Tablet', 'East West Pharma', 'Lodol 5 mg/50 mg Tablet', 'Q. What lifestyle changes should be made while using Lodol 5 mg/50 mg Tablet?', 'Making lifestyle changes can boost your health while taking Lodol 5 mg/50 mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(30023, 'Lodol 5 mg/50 mg Tablet', 'East West Pharma', 'Lodol 5 mg/50 mg Tablet', 'Q. Can I stop taking Lodol 5 mg/50 mg Tablet if I feel well?', 'No, keep using Lodol 5 mg/50 mg Tablet as advised by your doctor, even if you feel well. Stopping Lodol 5 mg/50 mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(30024, 'Lodol 5 mg/50 mg Tablet', 'East West Pharma', 'Lodol 5 mg/50 mg Tablet', 'Q. Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30025, 'Lodol 5 mg/50 mg Tablet', 'East West Pharma', 'Lodol 5 mg/50 mg Tablet', 'Q. What are the contraindications associated with the use of Lodol 5 mg/50 mg Tablet?', 'Lodol 5 mg/50 mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(30026, 'Lodol 5 mg/50 mg Tablet', 'East West Pharma', 'Lodol 5 mg/50 mg Tablet', 'Q. Can the use of Lodol 5 mg/50 mg Tablet cause headache?', 'Yes, the use of Lodol 5 mg/50 mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(30027, 'Lodol 5 mg/50 mg Tablet', 'East West Pharma', 'Lodol 5 mg/50 mg Tablet', 'Q. Can I feel dizzy after taking Lodol 5 mg/50 mg Tablet?', 'Yes, the use of Lodol 5 mg/50 mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(30028, 'Loduce H 50mg/12.5mg Tablet', 'Vision Biotech', 'Loduce H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30029, 'Loduce H 50mg/12.5mg Tablet', 'Vision Biotech', 'Loduce H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Loduce H 50mg/12.5mg Tablet?', 'Yes, the use of Loduce H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(30030, 'Loduce H 50mg/12.5mg Tablet', 'Vision Biotech', 'Loduce H 50mg/12.5mg Tablet', 'Can I use Loduce H 50mg/12.5mg Tablet in pregnancy?', 'No, Loduce H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Loduce H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(30031, 'Loduce H 50mg/12.5mg Tablet', 'Vision Biotech', 'Loduce H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Loduce H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Loduce H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(30032, 'Loduce H 50mg/12.5mg Tablet', 'Vision Biotech', 'Loduce H 50mg/12.5mg Tablet', 'Can I stop taking Loduce H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Loduce H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Loduce H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(30033, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'For how long should I take Lodz 20mg Tablet?', 'You may need to take Lodz 20mg Tablet for life or for as long as directed by your doctor. The cholesterol levels will be maintained only till you are taking Lodz 20mg Tablet. Stopping Lodz 20mg Tablet without starting a different treatment may increase your cholesterol levels again. This medicine has only a few side effects and is usually considered safe if taken as directed by the doctor.'),
(30034, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'Does Lodz 20mg Tablet cause weight gain?', 'No, there is no evidence of Lodz 20mg Tablet causing weight gain. If you are taking Lodz 20mg Tablet and gaining weight, consult your doctor. The doctor may get some investigations done to know the reason for the weight gain.'),
(30035, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'Does Lodz 20mg Tablet make you tired?', 'Yes, Lodz 20mg Tablet can make you feel tired. This is because it reduces the energy supply to the muscles in the body. However, the exact reason behind the phenomenon is unknown and needs more research. Tiredness usually occurs after exertion. Generalized fatigue is more often in people with heart disease or those suffering from liver illness. Lodz 20mg Tablet also causes muscle damage which further worsens the tiredness. Therefore, you must consult your doctor if you feel tired while taking Lodz 20mg Tablet.'),
(30036, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'Should Lodz 20mg Tablet be taken at night?', 'Lodz 20mg Tablet should be taken once a day. It can be taken in the morning or at night or any time of the day, with or without food. Try taking this medicine at the same time every day. Doing this will help you remember to take it daily.'),
(30037, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'What foods should be avoided when taking Lodz 20mg Tablet?', 'Lodz 20mg Tablet is used to decrease your blood cholesterol levels. Therefore, to seek the best results of this medicine, you should avoid foods that are high in calories like fried food and junk food. It is recommended to eat a low-fat and low-cholesterol diet. Be sure to follow all the exercise and dietary recommendations made by your doctor or dietician.'),
(30038, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'How do I know whether Lodz 20mg Tablet is beneficial for me or not?', 'All medicines have side effects, but the benefits of Lodz 20mg Tablet in reducing cholesterol levels and the risk of heart attack and stroke are proven by a large number of studies. However, if you do have any concerns, then discuss it with your doctor. Your doctor will consider and explain to you the benefits of taking Lodz 20mg Tablet versus the risks of not taking it at all.'),
(30039, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'Can Lodz 20mg Tablet cause memory loss?', 'Lodz 20mg Tablet may cause memory loss in very rare cases. This is generally non-serious and may occur within 1 day of taking this medicine or may take years to appear. These symptoms may disappear within about 3 weeks of discontinuing Lodz 20mg Tablet. However, you should consult your doctor if you experience this side effect as it could be due to some other reason.'),
(30040, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'Can Lodz 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lodz 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(30041, 'Lodz 20mg Tablet', 'Maxcare Pharmaceutical Pvt Ltd', 'Lodz 20mg Tablet', 'Is it true that Lodz 20mg Tablet can cause diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lodz 20mg Tablet may slightly increase this risk. This is because Lodz 20mg Tablet has the potential to cause a slight increase in your blood sugar levels. If you already have type 2 diabetes, your doctor may advise you to keep monitoring your blood sugar levels closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(30042, 'Loestrol 5mg Tablet', 'Elfin Pharma Pvt Ltd', 'Loestrol 5mg Tablet', 'Can Loestrol 5mg Tablet be used as a birth control medicine?', 'No, Loestrol 5mg Tablet cannot be used as a birth control medicine. It is a hormone preparation used to treat repeated miscarriages and to prevent premature birth in pregnant women. You may need to use contraceptive methods to avoid pregnancy. Consult with your doctor to seek options for contraceptives.'),
(30043, 'Loestrol 5mg Tablet', 'Elfin Pharma Pvt Ltd', 'Loestrol 5mg Tablet', 'In what conditions Loestrol 5mg Tablet should be avoided?', 'This medicine should not be used in patients with a history of blood clot events, severe liver disease, incomplete abortion, hormone-dependent carcinoma, and hypersensitivity.'),
(30044, 'Loestrol 5mg Tablet', 'Elfin Pharma Pvt Ltd', 'Loestrol 5mg Tablet', 'I have started feeling depressed after taking Loestrol 5mg Tablet? Is this normal?', 'Depression is one of the common side-effects of this medicine. It is advisable to inform your doctor immediately if you get thoughts about harming yourself. He/she might suggest a suitable alternative based on your condition.'),
(30045, 'Loestrol 5mg Tablet', 'Elfin Pharma Pvt Ltd', 'Loestrol 5mg Tablet', 'What are the functions of natural progesterone?', 'Progesterone helps prepare your body for conception and pregnancy and regulates the monthly menstrual cycle. One of progesterone\'s most important functions is its role in thickening the lining of the uterus each month. The enriched endometrial lining is prepared to receive and nourish a fertilized egg in pregnant women.'),
(30046, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'What is Loette Tablet and what is it used for?', 'Loette Tablet is a combined oral contraceptive medicine that contains two hormones estrogen and progesterone. It is used to prevent pregnancy.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30047, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'What if I forget to take Loette Tablet?', 'If you forget to take one tablet, take it as soon as you remember, even if it means taking two tablets at same time and then follow the usual dosing schedule. However, if you forget to take two or more doses, you may not be totally protected against pregnancy. In this case, start taking the tablet as soon as you remember and use a non-hormonal method of contraception such as condoms for at least next 7 days to prevent pregnancy. Frequent missing of doses may lead to unexpected vaginal bleeding or spotting (blood stain). Consult your doctor if this persists.'),
(30048, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'How and in what dose should I take Loette Tablet?', 'Take this medicine as per the advice of your doctor. However, take it at the same time each day, to ensure consistent levels of medicine in your body.'),
(30049, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'Are there any specific contraindications associated with the use of Loette Tablet?', 'The use of Loette Tablet is not recommended to patients with known allergy to any of its components or excipients. It is not advised to be used by patients with a history of high blood pressure, heart disease, diabetes mellitus, migraine headache, liver disease or tumors, uterine bleeding, breast cancer, deep vein thrombosis and pulmonary embolism (blood clot).'),
(30050, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'Can Loette Tablet be taken by a patient who smokes?', 'Loette Tablet should not be taken by a person who smokes. Smoking increases the risk of serious side effects like death from heart attack, blood clots or stroke. The risk increases in patients who are obese or over 35 years of age and people who are heavy smokers. Inform your doctor if you smoke, before taking Loette Tablet.'),
(30051, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'What if I miss my regular menstrual periods while taking Loette Tablet?', 'If you miss your menstrual periods while taking Loette Tablet, you may be pregnant. Some women may miss periods or have light periods while taking Loette Tablet even if they are not pregnant. Contact your doctor if you think you are pregnant or have missed one or two periods. This may happen in case you are not taking Loette Tablet at the same time every day.'),
(30052, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'Can Loette Tablet cause bleeding or spotting between the regular menstrual periods?', 'Yes, Loette Tablet can cause some unexpected bleeding or spotting, especially during the first three months. Do not stop taking Loette Tablet because of this. This bleeding or spotting decreases with time. You may have unexpected bleeding if you do not take the pills regularly. Consult your doctor if the spotting continues for more than seven days or if the bleeding is heavy.'),
(30053, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'What if I vomit after taking Loette Tablet?', 'If you vomit within 3-4 hours after taking Loette Tablet tablet, then it is considered as a missed dose. So, you should take an another dose as soon as you feel well enough.'),
(30054, 'Loette Tablet', 'Pfizer Ltd', 'Loette Tablet', 'What are the common side effects of taking Loette Tablet?', 'You may experience irregular vaginal bleeding while taking Loette Tablet. Other common side effects include headache, nausea (feeling sick), acne, depression (sad mood), and breast pain. Most of them are temporary. If these persist, consult with your doctor.'),
(30055, 'Loeva 100mg Tablet', 'Lloyd Healthcare Pvt Ltd', 'Loeva 100mg Tablet', 'What is Loeva 100mg Tablet?', 'Loeva 100mg Tablet is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Loeva 100mg Tablet in the body and decreases its side effects.'),
(30056, 'Loeva 100mg Tablet', 'Lloyd Healthcare Pvt Ltd', 'Loeva 100mg Tablet', 'What is Loeva 100mg Tablet used to treat?', 'Loeva 100mg Tablet is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(30057, 'Loeva 100mg Tablet', 'Lloyd Healthcare Pvt Ltd', 'Loeva 100mg Tablet', 'Can you take Loeva 100mg Tablet every day?', 'Yes, Loeva 100mg Tablet can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(30058, 'Loeva 100mg Tablet', 'Lloyd Healthcare Pvt Ltd', 'Loeva 100mg Tablet', 'Does Loeva 100mg Tablet cause weight gain?', 'Yes, taking Loeva 100mg Tablet may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Loeva 100mg Tablet is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(30059, 'Loeva 100mg Tablet', 'Lloyd Healthcare Pvt Ltd', 'Loeva 100mg Tablet', 'Is Loeva 100mg Tablet safe?', 'Yes, Loeva 100mg Tablet is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(30060, 'Loeva 100mg Tablet', 'Lloyd Healthcare Pvt Ltd', 'Loeva 100mg Tablet', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Loeva 100mg Tablet (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(30061, 'Loeva 200mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 200mg Tablet SR', 'What is Loeva 200mg Tablet SR?', 'Loeva 200mg Tablet SR is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Loeva 200mg Tablet SR in the body and decreases its side effects.'),
(30062, 'Loeva 200mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 200mg Tablet SR', 'What is Loeva 200mg Tablet SR used to treat?', 'Loeva 200mg Tablet SR is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(30063, 'Loeva 200mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 200mg Tablet SR', 'Can you take Loeva 200mg Tablet SR every day?', 'Yes, Loeva 200mg Tablet SR can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(30064, 'Loeva 200mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 200mg Tablet SR', 'Does Loeva 200mg Tablet SR cause weight gain?', 'Yes, taking Loeva 200mg Tablet SR may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Loeva 200mg Tablet SR is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(30065, 'Loeva 200mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 200mg Tablet SR', 'Is Loeva 200mg Tablet SR safe?', 'Yes, Loeva 200mg Tablet SR is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(30066, 'Loeva 200mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 200mg Tablet SR', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Loeva 200mg Tablet SR (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(30067, 'Loeva 300mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 300mg Tablet SR', 'What is Loeva 300mg Tablet SR?', 'Loeva 300mg Tablet SR is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Loeva 300mg Tablet SR in the body and decreases its side effects.'),
(30068, 'Loeva 300mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 300mg Tablet SR', 'What is Loeva 300mg Tablet SR used to treat?', 'Loeva 300mg Tablet SR is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(30069, 'Loeva 300mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 300mg Tablet SR', 'Can you take Loeva 300mg Tablet SR every day?', 'Yes, Loeva 300mg Tablet SR can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(30070, 'Loeva 300mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 300mg Tablet SR', 'Does Loeva 300mg Tablet SR cause weight gain?', 'Yes, taking Loeva 300mg Tablet SR may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Loeva 300mg Tablet SR is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(30071, 'Loeva 300mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 300mg Tablet SR', 'Is Loeva 300mg Tablet SR safe?', 'Yes, Loeva 300mg Tablet SR is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(30072, 'Loeva 300mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 300mg Tablet SR', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Loeva 300mg Tablet SR (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(30073, 'Loeva 400mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 400mg Tablet SR', 'What is Loeva 400mg Tablet SR?', 'Loeva 400mg Tablet SR is a type of progesterone hormone which is extracted from plants, but its property matches with the human progesterone. This medicine undergoes a process called micronization where the size of the natural progesterone is reduced. The small size of the progesterone particles enhances its dissolution and absorption. This provides better availability of Loeva 400mg Tablet SR in the body and decreases its side effects.'),
(30074, 'Loeva 400mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 400mg Tablet SR', 'What is Loeva 400mg Tablet SR used to treat?', 'Loeva 400mg Tablet SR is used to treat various disorders. It is given to women with secondary amenorrhea (no menstruation for 3 months in women who have had their menses before). It is used to support pregnancy, prevent premature labor, and treat bleeding disorders that may occur before menopause. It may be used as a part of fertility treatment and may be given as hormone replacement therapy after menopause. It is also given to relieve symptoms of premenstrual syndrome and painful bleeding like in dysfunctional uterine bleeding.'),
(30075, 'Loeva 400mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 400mg Tablet SR', 'Can you take Loeva 400mg Tablet SR every day?', 'Yes, Loeva 400mg Tablet SR can be taken every day. It is usually prescribed to be taken once daily in the evening or at bedtime. The usual duration of prescription may vary from 10-12 days a month to 25 days a month. However, the number of days for which you will need to take this medicine in each cycle will be suggested by your doctor depending upon your health condition.'),
(30076, 'Loeva 400mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 400mg Tablet SR', 'Does Loeva 400mg Tablet SR cause weight gain?', 'Yes, taking Loeva 400mg Tablet SR may cause weight gain. The weight gain may be due to water retention and may not be a serious sign. However, contact your doctor in case your weight gain is worrying you. The risk of weight gain is generally less if Loeva 400mg Tablet SR is taken with estrogen as a combined pill. But, do not start any hormonal therapy without consulting your doctor.'),
(30077, 'Loeva 400mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 400mg Tablet SR', 'Is Loeva 400mg Tablet SR safe?', 'Yes, Loeva 400mg Tablet SR is safer as compared to the normal synthetic progesterone. Its smaller size helps the body absorb it easily and reduces the side effects like fluid retention, reduction of HDL cholesterol levels, headaches and mood disturbance.'),
(30078, 'Loeva 400mg Tablet SR', 'Lloyd Healthcare Pvt Ltd', 'Loeva 400mg Tablet SR', 'How is progesterone beneficial for fertility and pregnancy?', 'Progesterone is a very crucial hormone in fertility. It is the hormone secreted by the ovaries that helps prepare the uterus for pregnancy and maintain it. Loeva 400mg Tablet SR (natural micronized form of progesterone) is given as a medicine in cases of infertility to support the uterus in preparing itself for the pregnancy and to prevent the abortions in some cases. It is also used to prevent premature labor.'),
(30079, 'Lof 200mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof 200mg Tablet', 'Can the use of Lof 200mg Tablet cause diarrhea?', 'Yes, the use of Lof 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30080, 'Lof 200mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof 200mg Tablet', 'Can I stop taking Lof 200mg Tablet when I feel better?', 'No, do not stop taking Lof 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30081, 'Lof 200mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof 200mg Tablet', 'Can the use of Lof 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lof 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lof 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30082, 'Lof 50mg Oral Suspension', 'Lustre Pharmaceuticals Private Limited', 'Lof 50mg Oral Suspension', 'What if I give too much of Lof 50mg Oral Suspension by mistake?', 'An extra dose of Lof 50mg Oral Suspension is unlikely to harm. However, if you think you have given too much to your child, immediately speak to a doctor. Overdose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, unconsciousness, and palpitations (irregularities of heartbeat). Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(30083, 'Lof 50mg Oral Suspension', 'Lustre Pharmaceuticals Private Limited', 'Lof 50mg Oral Suspension', 'What should I do if my child shows no improvement even after taking Lof 50mg Oral Suspension for the prescribed duration?', 'Ineffective treatment with Lof 50mg Oral Suspension could mean that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe some other antibiotic that would be more specific in action. Not all medicines are given by oral route, some may have to be given by IV route (intravenous injection) in the hospital.'),
(30084, 'Lof 50mg Oral Suspension', 'Lustre Pharmaceuticals Private Limited', 'Lof 50mg Oral Suspension', 'Can other medicines be given at the same time as Lof 50mg Oral Suspension?', 'Lof 50mg Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lof 50mg Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(30085, 'Lof 50mg Oral Suspension', 'Lustre Pharmaceuticals Private Limited', 'Lof 50mg Oral Suspension', 'Can I get my child vaccinated while on treatment with Lof 50mg Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(30086, 'Lof 50mg Oral Suspension', 'Lustre Pharmaceuticals Private Limited', 'Lof 50mg Oral Suspension', 'What should I tell the doctor before giving Lof 50mg Oral Suspension to my child?', 'Inform the doctor if your child is suffering from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lof 50mg Oral Suspension may aggravate these conditions and result in complications.'),
(30087, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'What is Lof OZ 200mg/500mg Tablet?', 'Lof OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(30088, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'Is it safe to use Lof OZ 200mg/500mg Tablet?', 'Lof OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(30089, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lof OZ 200mg/500mg Tablet?', 'The use of Lof OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(30090, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lof OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30091, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lof OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30092, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'Can I stop taking Lof OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lof OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30093, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lof OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30094, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lof OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lof OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(30095, 'Lof OZ 200mg/500mg Tablet', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lof OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30096, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'My child is having a common cold. Is it safe to give Lof OZ Syrup along with cough & cold medicines?', 'Lof OZ Syrup can interfere with cough and cold medicines. One of the active ingredients of Lof OZ Syrup can interact with alcohol-containing medicines like cough syrups and can cause adverse effects. Don’t give your child any medicines along with Lof OZ Syrup without consulting the doctor.'),
(30097, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'What if I give excess Lof OZ Syrup by mistake?', 'Though an extra dose of Lof OZ Syrup will not impact your child’s health, never give an overdose of any medicine. If you think you have given too much to your child, immediately speak to a doctor. Exceeding the recommended dose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heart beat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(30098, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'What should I do if my child shows no improvement even after taking Lof OZ Syrup for the prescribed duration?', 'Not seeing any improvement could signify that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe an antibiotic having a farther reach of impact than Lof OZ Syrup. Since not all medicines are given by oral route, your doctor may suggest giving an intravenous injection to your child in the hospital.'),
(30099, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'Can other medicines be given at the same time as Lof OZ Syrup?', 'Lof OZ Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Lof OZ Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(30100, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'Can I get my child vaccinated while on treatment with Lof OZ Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(30101, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'What should I tell the doctor before giving Lof OZ Syrup to my child?', 'Inform the doctor if your child is suffering or has suffered from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Lof OZ Syrup may aggravate these conditions and result in complications.'),
(30102, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'What is Lof OZ Syrup?', 'Lof OZ Syrup is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(30103, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'Is it safe to use Lof OZ Syrup?', 'Lof OZ Syrup is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(30104, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'Are there any specific contraindications associated with the use of Lof OZ Syrup?', 'The use of Lof OZ Syrup is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(30105, 'Lof OZ Syrup', 'Lustre Pharmaceuticals Private Limited', 'Lof OZ Syrup', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lof OZ Syrup can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30106, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. Is Lofatin Cream safe in pregnancy?', 'Lofatin Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lofatin Cream.'),
(30107, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. Is Lofatin Cream fungicidal or Fungistatic?', 'Lofatin Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(30108, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. How to use Lofatin Cream?', 'Use Lofatin Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(30109, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. How long does it take for Lofatin Cream to work?', 'For different ailments, Lofatin Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(30110, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. How should I store Lofatin Cream?', 'Keep Lofatin Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(30111, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. Is Lofatin Cream safe to use in children?', 'Yes, Lofatin Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(30112, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. Is Lofatin Cream safe in pregnancy?', 'Lofatin Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lofatin Cream.'),
(30113, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. Is Lofatin Cream fungicidal or Fungistatic?', 'Lofatin Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(30114, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. How to use Lofatin Cream?', 'Use Lofatin Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(30115, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. How long does it take for Lofatin Cream to work?', 'For different ailments, Lofatin Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(30116, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. How should I store Lofatin Cream?', 'Keep Lofatin Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(30117, 'Lofatin Cream', 'Abbott', 'Lofatin Cream', 'Q. Is Lofatin Cream safe to use in children?', 'Yes, Lofatin Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(30118, 'Lofatin Lotion', 'Abbott', 'Lofatin Lotion', 'Is Lofatin Lotion safe in pregnancy?', 'Lofatin Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lofatin Lotion.'),
(30119, 'Lofatin Lotion', 'Abbott', 'Lofatin Lotion', 'Is Lofatin Lotion fungicidal or Fungistatic?', 'Lofatin Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(30120, 'Lofatin Lotion', 'Abbott', 'Lofatin Lotion', 'How to use Lofatin Lotion?', 'Use Lofatin Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(30121, 'Lofatin Lotion', 'Abbott', 'Lofatin Lotion', 'How long does it take for Lofatin Lotion to work?', 'For different ailments, Lofatin Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(30122, 'Lofatin Lotion', 'Abbott', 'Lofatin Lotion', 'How should I store Lofatin Lotion?', 'Keep Lofatin Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(30123, 'Lofatin Lotion', 'Abbott', 'Lofatin Lotion', 'Is Lofatin Lotion safe to use in children?', 'Yes, Lofatin Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(30124, 'Lofcin 500mg Tablet', 'MedHeal Pharmaceuticals', 'Lofcin 500mg Tablet', 'Is Lofcin 500mg Tablet safe?', 'Lofcin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30125, 'Lofcin 500mg Tablet', 'MedHeal Pharmaceuticals', 'Lofcin 500mg Tablet', 'What if I forget to take a dose of Lofcin 500mg Tablet?', 'If you forget a dose of Lofcin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30126, 'Lofcin 500mg Tablet', 'MedHeal Pharmaceuticals', 'Lofcin 500mg Tablet', 'Can the use of Lofcin 500mg Tablet cause diarrhea?', 'Yes, the use of Lofcin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30127, 'Lofcin 500mg Tablet', 'MedHeal Pharmaceuticals', 'Lofcin 500mg Tablet', 'Can I stop taking Lofcin 500mg Tablet when I feel better?', 'No, do not stop taking Lofcin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lofcin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lofcin 500mg Tablet in the dose and duration advised by the doctor.'),
(30128, 'Lofcin 500mg Tablet', 'MedHeal Pharmaceuticals', 'Lofcin 500mg Tablet', 'Can the use of Lofcin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lofcin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lofcin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30129, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'Is Lofebril 100 Tablet used for anxiety?', 'Yes, Lofebril 100 Tablet is used to treat social anxiety disorder. It is anxiety related to interacting with others or performing in front of others that interferes with normal life. Lofebril 100 Tablet is also used for the treatment of the obsessive-compulsive disorder (OCD) and panic attacks. In OCD, a person experiences unwanted thoughts and the irresistible desire to perform certain actions over and over. These thoughts and desires do not go away and make it bothersome for the person.'),
(30130, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'Can Lofebril 100 Tablet get you high?', 'There is no evidence that Lofebril 100 Tablet causes dependence. But, patients may experience withdrawal symptoms on sudden discontinuation of Lofebril 100 Tablet. Usually, the withdrawal symptoms are mild and go away on their own within 2 weeks.'),
(30131, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'Who should not take Lofebril 100 Tablet?', 'You should not take Lofebril 100 Tablet if you are allergic to it, if you are taking another medicine to treat depression called a Monoamine Oxidase Inhibitor (MAOI), or if you have stopped taking an MAOI within the last 14 days. This is because taking both these medicines close in time together may cause serious and sometimes fatal reactions like high body temperature, convulsions, and even coma.'),
(30132, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'Does Lofebril 100 Tablet make you sleepy?', 'Yes, a common side effect of Lofebril 100 Tablet is sleepiness. It may also affect your ability to think clearly, make decisions, or react quickly. Avoid driving or operating heavy machinery until and unless you know how Lofebril 100 Tablet affects you.'),
(30133, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'Does Lofebril 100 Tablet have any serious health risks associated with it?', 'Yes, the use of Lofebril 100 Tablet may cause serious health risks. These may include increased risks of suicidal thoughts and actions, mania, bleeding problems, convulsions, visual problems, and low sodium levels in the blood.'),
(30134, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'How quickly does Lofebril 100 Tablet work?', 'It takes a long time for Lofebril 100 Tablet to start working. However, you may see an improvement in your sleep, appetite and energy levels within 1-2 weeks of starting Lofebril 100 Tablet. While, conditions like depressed mood and lack of interest in activities may take about 6-8 weeks to improve.'),
(30135, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'Can I stop Lofebril 100 Tablet if I am better now?', 'No, instead of stopping the medicine by yourself, consult your doctor who will gradually reduce the dose before stopping it completely. This is done because sudden discontinuation of Lofebril 100 Tablet may cause withdrawal symptoms. These symptoms include anxiety, irritability, high or low mood, feeling restless or changes in sleep habits, headache, sweating, nausea, dizziness, electric shock-like sensations, shaking, and confusion.'),
(30136, 'Lofebril 100 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 100 Tablet', 'Does Lofebril 100 Tablet cause weight gain?', 'Lofebril 100 Tablet may either cause weight gain or weight loss. The weight loss could be due to loss of appetite. However, the chances of having weight gain or loss is not known. As compared to other anti-depressants, there is no significant change in body weight with Lofebril 100 Tablet in the majority of people.'),
(30137, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'Is Lofebril 50 Tablet used for anxiety?', 'Yes, Lofebril 50 Tablet is used to treat social anxiety disorder. It is anxiety related to interacting with others or performing in front of others that interferes with normal life. Lofebril 50 Tablet is also used for the treatment of the obsessive-compulsive disorder (OCD) and panic attacks. In OCD, a person experiences unwanted thoughts and the irresistible desire to perform certain actions over and over. These thoughts and desires do not go away and make it bothersome for the person.'),
(30138, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'Can Lofebril 50 Tablet get you high?', 'There is no evidence that Lofebril 50 Tablet causes dependence. But, patients may experience withdrawal symptoms on sudden discontinuation of Lofebril 50 Tablet. Usually, the withdrawal symptoms are mild and go away on their own within 2 weeks.'),
(30139, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'Who should not take Lofebril 50 Tablet?', 'You should not take Lofebril 50 Tablet if you are allergic to it, if you are taking another medicine to treat depression called a Monoamine Oxidase Inhibitor (MAOI), or if you have stopped taking an MAOI within the last 14 days. This is because taking both these medicines close in time together may cause serious and sometimes fatal reactions like high body temperature, convulsions, and even coma.'),
(30140, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'Does Lofebril 50 Tablet make you sleepy?', 'Yes, a common side effect of Lofebril 50 Tablet is sleepiness. It may also affect your ability to think clearly, make decisions, or react quickly. Avoid driving or operating heavy machinery until and unless you know how Lofebril 50 Tablet affects you.'),
(30141, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'Does Lofebril 50 Tablet have any serious health risks associated with it?', 'Yes, the use of Lofebril 50 Tablet may cause serious health risks. These may include increased risks of suicidal thoughts and actions, mania, bleeding problems, convulsions, visual problems, and low sodium levels in the blood.'),
(30142, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'How quickly does Lofebril 50 Tablet work?', 'It takes a long time for Lofebril 50 Tablet to start working. However, you may see an improvement in your sleep, appetite and energy levels within 1-2 weeks of starting Lofebril 50 Tablet. While, conditions like depressed mood and lack of interest in activities may take about 6-8 weeks to improve.'),
(30143, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'Can I stop Lofebril 50 Tablet if I am better now?', 'No, instead of stopping the medicine by yourself, consult your doctor who will gradually reduce the dose before stopping it completely. This is done because sudden discontinuation of Lofebril 50 Tablet may cause withdrawal symptoms. These symptoms include anxiety, irritability, high or low mood, feeling restless or changes in sleep habits, headache, sweating, nausea, dizziness, electric shock-like sensations, shaking, and confusion.'),
(30144, 'Lofebril 50 Tablet', 'Dycine Pharmaceuticals Ltd', 'Lofebril 50 Tablet', 'Does Lofebril 50 Tablet cause weight gain?', 'Lofebril 50 Tablet may either cause weight gain or weight loss. The weight loss could be due to loss of appetite. However, the chances of having weight gain or loss is not known. As compared to other anti-depressants, there is no significant change in body weight with Lofebril 50 Tablet in the majority of people.'),
(30145, 'Lofection LB 100mg Capsule', 'Torrent Pharmaceuticals Ltd', 'Lofection LB 100mg Capsule', 'What is Lofection LB 100mg Capsule?', 'Lofection LB 100mg Capsule is a combination of two medicines: Doxycycline and Lactobacillus. Doxycycline is an antibiotic medicine belonging to the class called \'__\'tetracyclines”. It is used to treat bacterial infections in many different parts of the body. On the other hand, Lactobacillus is a live microorganism which restores the balance of good bacteria in the intestine that may get upset with the use of antibiotics.'),
(30146, 'Lofection LB 100mg Capsule', 'Torrent Pharmaceuticals Ltd', 'Lofection LB 100mg Capsule', 'Can I drink milk while taking Lofection LB 100mg Capsule?', 'No, you should avoid using milk and milk products while taking Lofection LB 100mg Capsule. Consuming dairy products along with Lofection LB 100mg Capsule can decrease its absorption from the stomach, which may lead to inadequate affect of this medicine.'),
(30147, 'Lofection LB 100mg Capsule', 'Torrent Pharmaceuticals Ltd', 'Lofection LB 100mg Capsule', 'What is the recommended storage condition for Lofection LB 100mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30148, 'Lofection LB 100mg Capsule', 'Torrent Pharmaceuticals Ltd', 'Lofection LB 100mg Capsule', 'How long after taking Lofection LB 100mg Capsule can I eat?', 'It is best to wait for 2 hours after consuming Lofection LB 100mg Capsule. Consuming food along with Lofection LB 100mg Capsule may decrease its absorption from the stomach.'),
(30149, 'Lofection LB 100mg Capsule', 'Torrent Pharmaceuticals Ltd', 'Lofection LB 100mg Capsule', 'Can I take Lofection LB 100mg Capsule with food if its causing stomach upset?', 'Yes, you can take Lofection LB 100mg Capsule with food if its causing you stomach upset. However, avoid consuming milk and milk products 1 hr before and 2 hr after taking this medicine.'),
(30150, 'Lofel 500mg Tablet', 'East African (India) Overseas', 'Lofel 500mg Tablet', 'Is Lofel 500mg Tablet safe?', 'Lofel 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30151, 'Lofel 500mg Tablet', 'East African (India) Overseas', 'Lofel 500mg Tablet', 'What if I forget to take a dose of Lofel 500mg Tablet?', 'If you forget a dose of Lofel 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30152, 'Lofel 500mg Tablet', 'East African (India) Overseas', 'Lofel 500mg Tablet', 'Can the use of Lofel 500mg Tablet cause diarrhea?', 'Yes, the use of Lofel 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30153, 'Lofel 500mg Tablet', 'East African (India) Overseas', 'Lofel 500mg Tablet', 'Can I stop taking Lofel 500mg Tablet when I feel better?', 'No, do not stop taking Lofel 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lofel 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lofel 500mg Tablet in the dose and duration advised by the doctor.'),
(30154, 'Lofel 500mg Tablet', 'East African (India) Overseas', 'Lofel 500mg Tablet', 'Can the use of Lofel 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lofel 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lofel 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30155, 'Lofel O 250 mg/500 mg Tablet', 'East African (India) Overseas', 'Lofel O 250 mg/500 mg Tablet', 'What if I don\'t get better after using Lofel O 250 mg/500 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30156, 'Lofel O 250 mg/500 mg Tablet', 'East African (India) Overseas', 'Lofel O 250 mg/500 mg Tablet', 'Can I stop taking Lofel O 250 mg/500 mg Tablet when I feel better?', 'No, do not stop taking Lofel O 250 mg/500 mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30157, 'Lofel O 250 mg/500 mg Tablet', 'East African (India) Overseas', 'Lofel O 250 mg/500 mg Tablet', 'What if I miss my dose?', 'Take Lofel O 250 mg/500 mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30158, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. What is Lofen 100mg/500mg Tablet?', 'Lofen 100mg/500mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30159, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Is it safe to use Lofen 100mg/500mg Tablet?', 'Lofen 100mg/500mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(30160, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Can I stop taking Lofen 100mg/500mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lofen 100mg/500mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(30161, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Can the use of Lofen 100mg/500mg Tablet cause nausea and vomiting?', 'Yes, the use of Lofen 100mg/500mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30162, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Can the use of Lofen 100mg/500mg Tablet cause dizziness?', 'Yes, the use of Lofen 100mg/500mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30163, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Are there any specific contraindications associated with the use of Lofen 100mg/500mg Tablet?', 'The use of Lofen 100mg/500mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30164, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Can Lofen 100mg/500mg Tablet be taken with vitamin B-complex?', 'Yes, Lofen 100mg/500mg Tablet can be taken with vitamin B-complex preparations. While Lofen 100mg/500mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(30165, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Is Lofen 100mg/500mg Tablet helpful in relieving stomach pain?', 'No, Lofen 100mg/500mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30166, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Can the use of Lofen 100mg/500mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lofen 100mg/500mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30167, 'Lofen 100mg/500mg Tablet', 'Health Guard India Pvt Ltd', 'Lofen 100mg/500mg Tablet', 'Q. Is it safe to take a higher dose of Lofen 100mg/500mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lofen 100mg/500mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(30168, 'Lofen K 100mg Capsule', 'Medix Laboratories', 'Lofen K 100mg Capsule', 'Is Lofen K 100mg Capsule a good painkiller?', 'Lofen K 100mg Capsule is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(30169, 'Lofen K 100mg Capsule', 'Medix Laboratories', 'Lofen K 100mg Capsule', 'Is Lofen K 100mg Capsule a narcotic?', 'No, Lofen K 100mg Capsule is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(30170, 'Lofen K 100mg Capsule', 'Medix Laboratories', 'Lofen K 100mg Capsule', 'Does Lofen K 100mg Capsule get you high?', 'No, Lofen K 100mg Capsule does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(30171, 'Lofen K 100mg Capsule', 'Medix Laboratories', 'Lofen K 100mg Capsule', 'Can Lofen K 100mg Capsule damage your kidneys?', 'Long-term use and high doses of Lofen K 100mg Capsule may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(30172, 'Lofen K 100mg Capsule', 'Medix Laboratories', 'Lofen K 100mg Capsule', 'Does Lofen K 100mg Capsule make you drowsy?', 'Lofen K 100mg Capsule can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(30173, 'Lofen K 100mg Capsule', 'Medix Laboratories', 'Lofen K 100mg Capsule', 'What is the most important information I need to know about Lofen K 100mg Capsule?', 'It is important to know that Lofen K 100mg Capsule may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lofen K 100mg Capsule may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(30174, 'Lofen K 100mg Capsule', 'Medix Laboratories', 'Lofen K 100mg Capsule', 'Can Lofen K 100mg Capsule be taken during pregnancy?', 'You should not take Lofen K 100mg Capsule during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lofen K 100mg Capsule can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lofen K 100mg Capsule during the first 6 months of pregnancy also.  In some cases, Lofen K 100mg Capsule may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(30175, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'What is Lofen SP 50mg/10mg Tablet?', 'Lofen SP 50mg/10mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30176, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'Is it safe to use Lofen SP 50mg/10mg Tablet?', 'Yes, Lofen SP 50mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(30177, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'Can I stop taking Lofen SP 50mg/10mg Tablet when my pain is relieved?', 'Lofen SP 50mg/10mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lofen SP 50mg/10mg Tablet should be continued if  your physician has advised you to do so.'),
(30178, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'Can the use of Lofen SP 50mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Lofen SP 50mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(30179, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'Can the use of Lofen SP 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Lofen SP 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30180, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Lofen SP 50mg/10mg Tablet?', 'The use of Lofen SP 50mg/10mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30181, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'Can I take Lofen SP 50mg/10mg Tablet with Vitamin B-complex?', 'Lofen SP 50mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Lofen SP 50mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(30182, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'Can I take Lofen SP 50mg/10mg Tablet for stomach pain?', 'No, Lofen SP 50mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30183, 'Lofen SP 50mg/10mg Tablet', 'Medix Laboratories', 'Lofen SP 50mg/10mg Tablet', 'What is the storage condition for the Lofen SP 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30184, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'What is Lofen T 100mg/4mg Tablet?', 'Lofen T 100mg/4mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(30185, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'Is it safe to use Lofen T 100mg/4mg Tablet?', 'Yes, Lofen T 100mg/4mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(30186, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'Can the Lofen T 100mg/4mg Tablet be stopped when my pain is relieved?', 'Lofen T 100mg/4mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Lofen T 100mg/4mg Tablet should be continued if your doctor has advised you to do so.'),
(30187, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'Can the use of Lofen T 100mg/4mg Tablet cause dizziness?', 'Yes, the use of Lofen T 100mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30188, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'Are there any specific contraindications associated with the use of Lofen T 100mg/4mg Tablet?', 'The use of Lofen T 100mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(30189, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'Can Lofen T 100mg/4mg Tablet be taken with Vitamin B-complex?', 'Yes, Lofen T 100mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Lofen T 100mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30190, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'Can the use of Lofen T 100mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lofen T 100mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(30191, 'Lofen T 100mg/4mg Tablet', 'Sarthi Life Sciences', 'Lofen T 100mg/4mg Tablet', 'Will Lofen T 100mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(30192, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'How should Lofenac AQ 75mg Injection injection be administered?', 'Lofenac AQ 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(30193, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'What is the most important information I need to know about Lofenac AQ 75mg Injection?', 'It is important to know that Lofenac AQ 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lofenac AQ 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(30194, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'Is Lofenac AQ 75mg Injection a good painkiller?', 'Lofenac AQ 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(30195, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'Can Lofenac AQ 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Lofenac AQ 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(30196, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'Does Lofenac AQ 75mg Injection make you drowsy?', 'Lofenac AQ 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(30197, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'Can Lofenac AQ 75mg Injection be taken during pregnancy?', 'You should not take Lofenac AQ 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lofenac AQ 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lofenac AQ 75mg Injection during the first 6 months of pregnancy also.  In some cases, Lofenac AQ 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(30198, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'Does Lofenac AQ 75mg Injection get you high?', 'No, Lofenac AQ 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(30199, 'Lofenac AQ 75mg Injection', 'R.B. Remedies Pvt Ltd', 'Lofenac AQ 75mg Injection', 'Is Lofenac AQ 75mg Injection a narcotic?', 'No, Lofenac AQ 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(30200, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'What is Lofen-MR Tablet?', 'Lofen-MR Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(30201, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'What can I do along with Lofen-MR Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(30202, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'Can I get addicted to Lofen-MR Tablet?', 'No, there are no reports of any patient getting addicted to Lofen-MR Tablet.'),
(30203, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'Can I stop taking Lofen-MR Tablet when my pain is relieved?', 'Lofen-MR Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Lofen-MR Tablet should be continued if you are advised by your doctor to do so.'),
(30204, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'Can the use of Lofen-MR Tablet cause dizziness?', 'Yes, the use of Lofen-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30205, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'Can the use of Lofen-MR Tablet cause damage to liver?', 'Lofen-MR Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(30206, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'How long will Lofen-MR Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Lofen-MR Tablet.'),
(30207, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'What if I forget to take Lofen-MR Tablet?', 'If you forget to take the scheduled dose of Lofen-MR Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(30208, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'Will Lofen-MR Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30209, 'Lofen-MR Tablet', 'Surewin Healthcare', 'Lofen-MR Tablet', 'Are there any specific contraindications associated with the use of Lofen-MR Tablet?', 'The use of Lofen-MR Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30210, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'What is Lofen-P Tablet?', 'Lofen-P Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30211, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Is it safe to use Lofen-P Tablet?', 'Lofen-P Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(30212, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Can I stop taking Lofen-P Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lofen-P Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(30213, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Can the use of Lofen-P Tablet cause nausea and vomiting?', 'Yes, the use of Lofen-P Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30214, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Can the use of Lofen-P Tablet cause dizziness?', 'Yes, the use of Lofen-P Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30215, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Are there any specific contraindications associated with the use of Lofen-P Tablet?', 'The use of Lofen-P Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30216, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Can Lofen-P Tablet be taken with vitamin B-complex?', 'Yes, Lofen-P Tablet can be taken with vitamin B-complex preparations. While Lofen-P Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(30217, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Is Lofen-P Tablet helpful in relieving stomach pain?', 'No, Lofen-P Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30218, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Can the use of Lofen-P Tablet cause damage to kidneys?', 'Yes, the long-term use of Lofen-P Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30219, 'Lofen-P Tablet', 'Surewin Healthcare', 'Lofen-P Tablet', 'Is it safe to take a higher dose of Lofen-P Tablet than recommended?', 'No, taking higher than the recommended dose of Lofen-P Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(30220, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'What is Lofen-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30221, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Is it safe to take Lofen-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(30222, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Can I stop taking Lofen-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(30223, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Can Lofen-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(30224, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Can Lofen-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30225, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Are there any specific contraindications associated with taking Lofen-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30226, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Can I take Lofen-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30227, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Can the use of Lofen-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(30228, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'Can I take a higher dose of Lofen-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30229, 'Lofen-SP Tablet', 'Surewin Healthcare', 'Lofen-SP Tablet', 'What are the instructions for storage and disposal of Lofen-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30230, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'How is Lofev 1000mg Infusion administered?', 'Lofev 1000mg Infusion should be administered under the supervision of a trained healthcare professional or a doctor only. It should not be self-administered. The dose of the medicine will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lofev 1000mg Infusion.'),
(30231, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'What if I vomit after taking Lofev 1000mg Infusion?', 'If you vomit in less than 30 minutes after having a dose of Lofev 1000mg Infusion tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(30232, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'What are the serious side effects of taking an excess of the Lofev 1000mg Infusion?', 'Overdose of Lofev 1000mg Infusione may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(30233, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'When will I feel better after taking the Lofev 1000mg Infusion?', 'Usually, you will start feeling better after about half an hour of taking a Lofev 1000mg Infusion.'),
(30234, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'Is Lofev 1000mg Infusion an antibiotic?', 'No, Lofev 1000mg Infusion is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(30235, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'Is Lofev 1000mg Infusion safe for children?', 'Lofev 1000mg Infusion is considered safe for children only when used as directed by the doctor.'),
(30236, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'Can I take Lofev 1000mg Infusion and ibuprofen together?', 'Ibuprofen and Lofev 1000mg Infusion are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(30237, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'Does Lofev 1000mg Infusion make babies sleepy?', 'No, Lofev 1000mg Infusion does not make babies sleepy. It is a pain-relieving medicine that is also used to control high fever.'),
(30238, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'What if I vomit after taking Lofev 1000mg Infusion?', 'If you vomit in less than 30 minutes after having a dose of Lofev 1000mg Infusion tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(30239, 'Lofev 1000mg Infusion', 'Cadila Pharmaceuticals Ltd', 'Lofev 1000mg Infusion', 'When will I feel better after taking the Lofev 1000mg Infusion?', 'Usually, you will start feeling better after about half an hour of taking a Lofev 1000mg Infusion.'),
(30240, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'What if I vomit after taking Lofever 150mg/ml Drop?', 'If you vomit in less than 30 minutes after having a dose of Lofever 150mg/ml Drop tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(30241, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'When will I feel better after taking the Lofever 150mg/ml Drop?', 'Usually, you will start feeling better after about half an hour of taking a Lofever 150mg/ml Drop.'),
(30242, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'How often can I take the Lofever 150mg/ml Drop?', 'You should only take four doses of Lofever 150mg/ml Drop in 24 hours. There should be a gap of at least 4 hours between two doses. Do not take Lofever 150mg/ml Drop for more than 3 days without consulting a doctor first.'),
(30243, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'Is Lofever 150mg/ml Drop an antibiotic?', 'No, Lofever 150mg/ml Drop is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(30244, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'Can I take Lofever 150mg/ml Drop and ibuprofen together?', 'Ibuprofen and Lofever 150mg/ml Drop are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(30245, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'How long does a Lofever 150mg/ml Drop take to work?', 'Lofever 150mg/ml Drop takes around 30-45 min to start working and show its effects. It is advised to take this medicine for the duration suggested by the doctor. Consult your doctor if you experience any bothersome side effects.'),
(30246, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'What are the serious side effects of taking an excess of the Lofever 150mg/ml Drop?', 'Overdose of Lofever 150mg/ml Drope may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(30247, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'Can Lofever 150mg/ml Drop cause nausea and vomiting?', 'Yes, Lofever 150mg/ml Drop may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.u003cbr>'),
(30248, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'Is Lofever 150mg/ml Drop helpful in relieving stomach pain due to indigestion?', 'No, Lofever 150mg/ml Drop should not be taken for stomach pain without consulting a doctor. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30249, 'Lofever 150mg/ml Drop', 'Unipure Biotech', 'Lofever 150mg/ml Drop', 'Can I take Lofever 150mg/ml Drop with an antibiotic?', 'Yes, taking Lofever 150mg/ml Drop and antibiotics at the same time should not cause any problems. Antibiotics are used to help clear infections but often don\'t do anything to relieve pain. Therefore you can generally take Lofever 150mg/ml Drop alongside your antibiotics. However, always consult your doctor before taking any medications.'),
(30250, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'How much Lofever 250mg Syrup should I give to my child?', 'Always follow your doctor\'s instructions regarding how much of the medicine to give and how often to give it. This depends on the strength of the medicine and the age of your child. You may also check the label or the leaflet inside the packaging for directions before use. The commonly recommended dose is 10-15 mg/kg per dose every 4 to 6 hours. In case you are not sure how much to give, consult your child’s doctor.'),
(30251, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'When will my child’s condition improve after taking Lofever 250mg Syrup?', 'Lofever 250mg Syrup usually starts working within 30 to 60 mins of intake and shows its peak effect within 3 to 4 hours. Your child may start to feel better after a few doses. In case the pain or fever persists longer, consult your child’s doctor immediately.'),
(30252, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'My child vomited after taking Lofever 250mg Syrup. What should I do?', 'If your child vomits within 30 minutes of taking Lofever 250mg Syrup, repeat the dose again. If it has been more than 30 minutes after taking Lofever 250mg Syrup and your child vomits, no need to repeat the dose and wait until it is time for the next dose. If you are not sure, consult your doctor.'),
(30253, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'Can I give Lofever 250mg Syrup to my child for low-grade fever?', 'You can give this medicine if your child has a temperature of 38.3°C (101°F) or higher. But, you must always try to speak to your child’s doctor first.'),
(30254, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'My child’s fever is persistent even after taking Lofever 250mg Syrup. What should I do?', 'If the fever doesn\'t come down after the initial few doses, the cause might be an infection (virus or bacteria). It is advised to consult your child’s doctor for specific treatment.'),
(30255, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'How much of Lofever 250mg Syrup is considered as an overdose?', 'You should only take four doses of Lofever 250mg Syrup in 24 hours. There should be a gap of at least 4-6 hours between two doses. Do not take it for more than 3 days without first talking to your doctor. Based on the dose, more than 250 mg/kg can lead to toxicity and can be potentially fatal. An overdose is capable of causing serious damage to the liver and kidneys. Inform your doctor immediately if you think you have given too much of this medicine to your child, even if your child seems well, because of the risk of delayed, serious liver damage.'),
(30256, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'Is there any special diet my child needs to follow while taking this medicine?', 'Unless instructed by your doctor, your child should take a normal balanced diet while continuing this medicine as lack of nutrition can put your child at risk of developing medicinal toxicity.'),
(30257, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'Where should I store this medicine?', 'Keep this medicine at room temperature in a dry place beyond the reach of the children.'),
(30258, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'In what conditions Lofever 250mg Syrup must be given with caution?', 'It is advised to use Lofever 250mg Syrup with caution if the child has malnutrition, G6PD deficiency, liver disease, or any medicinal allergy. So, do not hesitate to share your child’s complete medical history with the doctor as that will help the doctor decide whether the medicine is safe for your child or not.'),
(30259, 'Lofever 250mg Syrup', 'Unipure Biotech', 'Lofever 250mg Syrup', 'Can I give Lofever 250mg Syrup on a routine basis when my child is taking a vaccine?', 'Lofever 250mg Syrup usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, it is best if you let your child recover from the ongoing illness and finish the course of the medicine As soon as a child is feeling better the vaccine can and should be given.'),
(30260, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'What if I vomit after taking Lofever 650mg Tablet?', 'If you vomit in less than 30 minutes after having a dose of Lofever 650mg Tablet tablets or syrup, retake the same dose again. If you vomit after 30 minutes of a dose, you do not need to take another one until the next standard dose.'),
(30261, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'When will I feel better after taking the Lofever 650mg Tablet?', 'Usually, you will start feeling better after about half an hour of taking a Lofever 650mg Tablet.'),
(30262, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'How often can I take the Lofever 650mg Tablet?', 'You should only take four doses of Lofever 650mg Tablet in 24 hours. There should be a gap of at least 4 hours between two doses. Do not take Lofever 650mg Tablet for more than 3 days without consulting a doctor first.'),
(30263, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'Is Lofever 650mg Tablet an antibiotic?', 'No, Lofever 650mg Tablet is not an antibiotic. It works as a painkiller and fever-reducing medicine.'),
(30264, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'Can I take Lofever 650mg Tablet and ibuprofen together?', 'Ibuprofen and Lofever 650mg Tablet are safe medicines, but both should not be used together. Consult your doctor if you are not sure.'),
(30265, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'How long does a Lofever 650mg Tablet take to work?', 'Lofever 650mg Tablet takes around 30-45 min to start working and show its effects. It is advised to take this medicine for the duration suggested by the doctor. Consult your doctor if you experience any bothersome side effects.'),
(30266, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'What are the serious side effects of taking an excess of the Lofever 650mg Tablet?', 'Overdose of Lofever 650mg Tablete may cause severe life-threatening liver injury. Taking more than the prescribed dose may also cause kidney injury, decreased platelet count, and even coma. Early symptoms of an overdose include nausea, vomiting, and general tiredness. Immediately consult a doctor or reach an emergency in case of a suspected overdose.'),
(30267, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'Can Lofever 650mg Tablet cause nausea and vomiting?', 'Yes, Lofever 650mg Tablet may cause nausea and vomiting. Taking it with milk, food or antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine or a low frequency of urination. Do not take any other medicines without speaking to your doctor.u003cbr>'),
(30268, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'Is Lofever 650mg Tablet helpful in relieving stomach pain due to indigestion?', 'No, Lofever 650mg Tablet should not be taken for stomach pain without consulting a doctor. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30269, 'Lofever 650mg Tablet', 'Unipure Biotech', 'Lofever 650mg Tablet', 'Can I take Lofever 650mg Tablet with an antibiotic?', 'Yes, taking Lofever 650mg Tablet and antibiotics at the same time should not cause any problems. Antibiotics are used to help clear infections but often don\'t do anything to relieve pain. Therefore you can generally take Lofever 650mg Tablet alongside your antibiotics. However, always consult your doctor before taking any medications.'),
(30270, 'Loffy 200mg Tablet', 'Solitaire Pharmacia Pvt Ltd', 'Loffy 200mg Tablet', 'Can the use of Loffy 200mg Tablet cause diarrhea?', 'Yes, the use of Loffy 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30271, 'Loffy 200mg Tablet', 'Solitaire Pharmacia Pvt Ltd', 'Loffy 200mg Tablet', 'Can I stop taking Loffy 200mg Tablet when I feel better?', 'No, do not stop taking Loffy 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30272, 'Loffy 200mg Tablet', 'Solitaire Pharmacia Pvt Ltd', 'Loffy 200mg Tablet', 'Can the use of Loffy 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Loffy 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Loffy 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30273, 'Loffy Kid 100mg Tablet', 'Solitaire Pharmacia Pvt Ltd', 'Loffy Kid 100mg Tablet', 'Can the use of Loffy Kid  100mg Tablet cause diarrhea?', 'Yes, the use of Loffy Kid  100mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30274, 'Loffy Kid 100mg Tablet', 'Solitaire Pharmacia Pvt Ltd', 'Loffy Kid 100mg Tablet', 'Can I stop taking Loffy Kid  100mg Tablet when I feel better?', 'No, do not stop taking Loffy Kid  100mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30275, 'Loffy Kid 100mg Tablet', 'Solitaire Pharmacia Pvt Ltd', 'Loffy Kid 100mg Tablet', 'Can the use of Loffy Kid  100mg Tablet increase the risk of muscle damage?', 'Yes, use of Loffy Kid  100mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Loffy Kid  100mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30276, 'Lofidase 150mg Injection', 'Ridhima Biocare', 'Lofidase 150mg Injection', 'Is Lofidase 150mg Injection a good painkiller?', 'Lofidase 150mg Injection is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain, such as sprains, strains, and other injuries. It is also helpful in the treatment of different types of arthritis and gout. Along with that, it can be used to reduce pain and inflammation which follow after surgery.'),
(30277, 'Lofidase 150mg Injection', 'Ridhima Biocare', 'Lofidase 150mg Injection', 'How is Lofidase 150mg Injection administered?', 'Lofidase 150mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lofidase 150mg Injection.'),
(30278, 'Lofidase 150mg Injection', 'Ridhima Biocare', 'Lofidase 150mg Injection', 'Does Lofidase 150mg Injection get you high?', 'No, Lofidase 150mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(30279, 'Lofidase 150mg Injection', 'Ridhima Biocare', 'Lofidase 150mg Injection', 'Can Lofidase 150mg Injection hurt your kidneys?', 'Long-term use and high doses of Lofidase 150mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include dehydrated people, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines that cause excess urination (diuretics), or medicines that have a significant impact on kidney function. Hence, for such patients, kidney function monitoring is recommended.'),
(30280, 'Lofidase 150mg Injection', 'Ridhima Biocare', 'Lofidase 150mg Injection', 'Does Lofidase 150mg Injection make you drowsy?', 'Lofidase 150mg Injection can cause drowsiness and also dizziness, fatigue (tiredness), and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(30281, 'Lofidase 150mg Injection', 'Ridhima Biocare', 'Lofidase 150mg Injection', 'What is the most important information I need to know about Lofidase 150mg Injection?', 'It is important to know that Lofidase 150mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lofidase 150mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(30282, 'Lofidase 150mg Injection', 'Ridhima Biocare', 'Lofidase 150mg Injection', 'Can Lofidase 150mg Injection be taken during pregnancy?', 'You should not take Lofidase 150mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lofidase 150mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lofidase 150mg Injection during the first 6 months of pregnancy also.  In some cases, Lofidase 150mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(30283, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'What is Lofidol-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30284, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Is it safe to take Lofidol-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(30285, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Can I stop taking Lofidol-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(30286, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Can Lofidol-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(30287, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Can Lofidol-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30288, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Are there any specific contraindications associated with taking Lofidol-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30289, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Can I take Lofidol-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30290, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Can the use of Lofidol-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(30291, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'Can I take a higher dose of Lofidol-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30292, 'Lofidol-SP Tablet', 'Neomedix Healthcare India Private Limited', 'Lofidol-SP Tablet', 'What are the instructions for storage and disposal of Lofidol-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30293, 'Loflor 250mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 250mg Tablet', 'Is Loflor 250mg Tablet safe?', 'Loflor 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30294, 'Loflor 250mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 250mg Tablet', 'What if I forget to take a dose of Loflor 250mg Tablet?', 'If you forget a dose of Loflor 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30295, 'Loflor 250mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 250mg Tablet', 'Can the use of Loflor 250mg Tablet cause diarrhea?', 'Yes, the use of Loflor 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30296, 'Loflor 250mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 250mg Tablet', 'Can I stop taking Loflor 250mg Tablet when I feel better?', 'No, do not stop taking Loflor 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Loflor 250mg Tablet too early, the symptoms may return or worsen. Continue taking Loflor 250mg Tablet in the dose and duration advised by the doctor.'),
(30297, 'Loflor 250mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 250mg Tablet', 'Can the use of Loflor 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Loflor 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Loflor 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30298, 'Loflor 500mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 500mg Tablet', 'Is Loflor 500mg Tablet safe?', 'Loflor 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30299, 'Loflor 500mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 500mg Tablet', 'What if I forget to take a dose of Loflor 500mg Tablet?', 'If you forget a dose of Loflor 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30300, 'Loflor 500mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 500mg Tablet', 'Can the use of Loflor 500mg Tablet cause diarrhea?', 'Yes, the use of Loflor 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30301, 'Loflor 500mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 500mg Tablet', 'Can I stop taking Loflor 500mg Tablet when I feel better?', 'No, do not stop taking Loflor 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Loflor 500mg Tablet too early, the symptoms may return or worsen. Continue taking Loflor 500mg Tablet in the dose and duration advised by the doctor.'),
(30302, 'Loflor 500mg Tablet', 'Elder Pharmaceuticals Ltd', 'Loflor 500mg Tablet', 'Can the use of Loflor 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Loflor 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Loflor 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30303, 'Loflox 500mg Tablet', 'Sierra Pharmaceuticals Ltd', 'Loflox 500mg Tablet', 'Is Loflox 500mg Tablet safe?', 'Loflox 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30304, 'Loflox 500mg Tablet', 'Sierra Pharmaceuticals Ltd', 'Loflox 500mg Tablet', 'What if I forget to take a dose of Loflox 500mg Tablet?', 'If you forget a dose of Loflox 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30305, 'Loflox 500mg Tablet', 'Sierra Pharmaceuticals Ltd', 'Loflox 500mg Tablet', 'Can the use of Loflox 500mg Tablet cause diarrhea?', 'Yes, the use of Loflox 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30306, 'Loflox 500mg Tablet', 'Sierra Pharmaceuticals Ltd', 'Loflox 500mg Tablet', 'Can I stop taking Loflox 500mg Tablet when I feel better?', 'No, do not stop taking Loflox 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Loflox 500mg Tablet too early, the symptoms may return or worsen. Continue taking Loflox 500mg Tablet in the dose and duration advised by the doctor.'),
(30307, 'Loflox 500mg Tablet', 'Sierra Pharmaceuticals Ltd', 'Loflox 500mg Tablet', 'Can the use of Loflox 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Loflox 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Loflox 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30308, 'Lofo 250mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 250mg Tablet', 'Is Lofo 250mg Tablet safe?', 'Lofo 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30309, 'Lofo 250mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 250mg Tablet', 'What if I forget to take a dose of Lofo 250mg Tablet?', 'If you forget a dose of Lofo 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30310, 'Lofo 250mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 250mg Tablet', 'Can the use of Lofo 250mg Tablet cause diarrhea?', 'Yes, the use of Lofo 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30311, 'Lofo 250mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 250mg Tablet', 'Can I stop taking Lofo 250mg Tablet when I feel better?', 'No, do not stop taking Lofo 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lofo 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lofo 250mg Tablet in the dose and duration advised by the doctor.'),
(30312, 'Lofo 250mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 250mg Tablet', 'Can the use of Lofo 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lofo 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lofo 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30313, 'Lofo 500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 500mg Tablet', 'Is Lofo 500mg Tablet safe?', 'Lofo 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30314, 'Lofo 500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 500mg Tablet', 'What if I forget to take a dose of Lofo 500mg Tablet?', 'If you forget a dose of Lofo 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30315, 'Lofo 500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 500mg Tablet', 'Can the use of Lofo 500mg Tablet cause diarrhea?', 'Yes, the use of Lofo 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30316, 'Lofo 500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 500mg Tablet', 'Can I stop taking Lofo 500mg Tablet when I feel better?', 'No, do not stop taking Lofo 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lofo 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lofo 500mg Tablet in the dose and duration advised by the doctor.'),
(30317, 'Lofo 500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 500mg Tablet', 'Can the use of Lofo 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lofo 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lofo 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30318, 'Lofo 750mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 750mg Tablet', 'Is Lofo 750mg Tablet safe?', 'Lofo 750mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30319, 'Lofo 750mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 750mg Tablet', 'What if I forget to take a dose of Lofo 750mg Tablet?', 'If you forget a dose of Lofo 750mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30320, 'Lofo 750mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 750mg Tablet', 'Can the use of Lofo 750mg Tablet cause diarrhea?', 'Yes, the use of Lofo 750mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30321, 'Lofo 750mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 750mg Tablet', 'Can I stop taking Lofo 750mg Tablet when I feel better?', 'No, do not stop taking Lofo 750mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lofo 750mg Tablet too early, the symptoms may return or worsen. Continue taking Lofo 750mg Tablet in the dose and duration advised by the doctor.'),
(30322, 'Lofo 750mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo 750mg Tablet', 'Can the use of Lofo 750mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lofo 750mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lofo 750mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30323, 'Lofo OZ 250mg/500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Lofo OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30324, 'Lofo OZ 250mg/500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo OZ 250mg/500mg Tablet', 'Can I stop taking Lofo OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Lofo OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30325, 'Lofo OZ 250mg/500mg Tablet', 'Aronex Life Sciences Pvt Ltd', 'Lofo OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Lofo OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30326, 'Lofo OZ Oral Suspension', 'Aronex Life Sciences Pvt Ltd', 'Lofo OZ Oral Suspension', 'What if I don\'t get better after using Lofo OZ Oral Suspension?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30327, 'Lofo OZ Oral Suspension', 'Aronex Life Sciences Pvt Ltd', 'Lofo OZ Oral Suspension', 'Can I stop taking Lofo OZ Oral Suspension when I feel better?', 'No, do not stop taking Lofo OZ Oral Suspension and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30328, 'Lofo OZ Oral Suspension', 'Aronex Life Sciences Pvt Ltd', 'Lofo OZ Oral Suspension', 'What if I miss my dose?', 'Take Lofo OZ Oral Suspension as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30329, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'Can I stop taking Lofofix 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lofofix 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30330, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lofofix 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30331, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'Can the use of Lofofix 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lofofix 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30332, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'What if I don\'t get better after using Lofofix 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30333, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'Does the use of Lofofix 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lofofix 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(30334, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(30335, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'Can I drive while I am taking Lofofix 200mg/200mg Tablet?', 'No, taking Lofofix 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(30336, 'Lofofix 200mg/200mg Tablet', 'Sai Life Sciences', 'Lofofix 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Lofofix 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30337, 'Lofoxa 200 Tablet', 'Orlife Healthcare', 'Lofoxa 200 Tablet', 'Can the use of Lofoxa 200 Tablet cause diarrhea?', 'Yes, the use of Lofoxa 200 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30338, 'Lofoxa 200 Tablet', 'Orlife Healthcare', 'Lofoxa 200 Tablet', 'Can I stop taking Lofoxa 200 Tablet when I feel better?', 'No, do not stop taking Lofoxa 200 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30339, 'Lofoxa 200 Tablet', 'Orlife Healthcare', 'Lofoxa 200 Tablet', 'Can the use of Lofoxa 200 Tablet increase the risk of muscle damage?', 'Yes, use of Lofoxa 200 Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lofoxa 200 Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30340, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'What is Lofoxa-OZ Tablet?', 'Lofoxa-OZ Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(30341, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'Is it safe to use Lofoxa-OZ Tablet?', 'Lofoxa-OZ Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(30342, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'Are there any specific contraindications associated with the use of Lofoxa-OZ Tablet?', 'The use of Lofoxa-OZ Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(30343, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lofoxa-OZ Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30344, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'What if I don\'t get better after using Lofoxa-OZ Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30345, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'Can I stop taking Lofoxa-OZ Tablet when I feel better?', 'No, do not stop taking Lofoxa-OZ Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30346, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'What if I miss my dose?', 'Take Lofoxa-OZ Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30347, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'Can I take alcohol while on Lofoxa-OZ Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lofoxa-OZ Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(30348, 'Lofoxa-OZ Tablet', 'Orlife Healthcare', 'Lofoxa-OZ Tablet', 'What are the instructions for the storage and disposal of Lofoxa-OZ Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30349, 'Lofoz 200mg Tablet', 'Sai Life Sciences', 'Lofoz 200mg Tablet', 'Can the use of Lofoz 200mg Tablet cause diarrhea?', 'Yes, the use of Lofoz 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30350, 'Lofoz 200mg Tablet', 'Sai Life Sciences', 'Lofoz 200mg Tablet', 'Can I stop taking Lofoz 200mg Tablet when I feel better?', 'No, do not stop taking Lofoz 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30351, 'Lofoz 200mg Tablet', 'Sai Life Sciences', 'Lofoz 200mg Tablet', 'Can the use of Lofoz 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Lofoz 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lofoz 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30352, 'Lofoz 400mg Tablet', 'Sai Life Sciences', 'Lofoz 400mg Tablet', 'Can the use of Lofoz 400mg Tablet cause diarrhea?', 'Yes, the use of Lofoz 400mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30353, 'Lofoz 400mg Tablet', 'Sai Life Sciences', 'Lofoz 400mg Tablet', 'Can I stop taking Lofoz 400mg Tablet when I feel better?', 'No, do not stop taking Lofoz 400mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30354, 'Lofoz 400mg Tablet', 'Sai Life Sciences', 'Lofoz 400mg Tablet', 'Can the use of Lofoz 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lofoz 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lofoz 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30355, 'Lofrit 250 Tablet', 'Aeston Life Sciences', 'Lofrit 250 Tablet', 'Is Lofrit 250 Tablet safe?', 'Lofrit 250 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30356, 'Lofrit 250 Tablet', 'Aeston Life Sciences', 'Lofrit 250 Tablet', 'What if I forget to take a dose of Lofrit 250 Tablet?', 'If you forget a dose of Lofrit 250 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30357, 'Lofrit 250 Tablet', 'Aeston Life Sciences', 'Lofrit 250 Tablet', 'Can the use of Lofrit 250 Tablet cause diarrhea?', 'Yes, the use of Lofrit 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30358, 'Lofrit 250 Tablet', 'Aeston Life Sciences', 'Lofrit 250 Tablet', 'Can I stop taking Lofrit 250 Tablet when I feel better?', 'No, do not stop taking Lofrit 250 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lofrit 250 Tablet too early, the symptoms may return or worsen. Continue taking Lofrit 250 Tablet in the dose and duration advised by the doctor.'),
(30359, 'Lofrit 250 Tablet', 'Aeston Life Sciences', 'Lofrit 250 Tablet', 'Can the use of Lofrit 250 Tablet increase the risk of muscle damage?', 'Yes, the use of Lofrit 250 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lofrit 250 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30360, 'Loft 200mg Tablet', 'Lee Benz Life Science', 'Loft 200mg Tablet', 'Can the use of Loft 200mg Tablet cause diarrhea?', 'Yes, the use of Loft 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30361, 'Loft 200mg Tablet', 'Lee Benz Life Science', 'Loft 200mg Tablet', 'Can I stop taking Loft 200mg Tablet when I feel better?', 'No, do not stop taking Loft 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30362, 'Loft 200mg Tablet', 'Lee Benz Life Science', 'Loft 200mg Tablet', 'Can the use of Loft 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Loft 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Loft 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30363, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'Can I stop taking Loft CF 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Loft CF 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30364, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Loft CF 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30365, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'Can the use of Loft CF 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Loft CF 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30366, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'What if I don\'t get better after using Loft CF 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30367, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'Does the use of Loft CF 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Loft CF 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(30368, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(30369, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'Can I drive while I am taking Loft CF 200mg/200mg Tablet?', 'No, taking Loft CF 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(30370, 'Loft CF 200mg/200mg Tablet', 'Lee Benz Life Science', 'Loft CF 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Loft CF 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30371, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'What is Loftidase 50mg/10mg Tablet?', 'Loftidase 50mg/10mg Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30372, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'Is it safe to use Loftidase 50mg/10mg Tablet?', 'Yes, Loftidase 50mg/10mg Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(30373, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'Can I stop taking Loftidase 50mg/10mg Tablet when my pain is relieved?', 'Loftidase 50mg/10mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Loftidase 50mg/10mg Tablet should be continued if  your physician has advised you to do so.'),
(30374, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'Can the use of Loftidase 50mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Loftidase 50mg/10mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(30375, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'Can the use of Loftidase 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Loftidase 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30376, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Loftidase 50mg/10mg Tablet?', 'The use of Loftidase 50mg/10mg Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30377, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'Can I take Loftidase 50mg/10mg Tablet with Vitamin B-complex?', 'Loftidase 50mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Loftidase 50mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(30378, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'Can I take Loftidase 50mg/10mg Tablet for stomach pain?', 'No, Loftidase 50mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30379, 'Loftidase 50mg/10mg Tablet', 'Ridhima Biocare', 'Loftidase 50mg/10mg Tablet', 'What is the storage condition for the Loftidase 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30380, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'What is Loftidase AP 100mg/325mg Tablet?', 'Loftidase AP 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30381, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Is it safe to use Loftidase AP 100mg/325mg Tablet?', 'Loftidase AP 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(30382, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Can I stop taking Loftidase AP 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Loftidase AP 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(30383, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Can the use of Loftidase AP 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Loftidase AP 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30384, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Can the use of Loftidase AP 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Loftidase AP 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30385, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Loftidase AP 100mg/325mg Tablet?', 'The use of Loftidase AP 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30386, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Can Loftidase AP 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Loftidase AP 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Loftidase AP 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(30387, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Is Loftidase AP 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Loftidase AP 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30388, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Can the use of Loftidase AP 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Loftidase AP 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30389, 'Loftidase AP 100mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase AP 100mg/325mg Tablet', 'Is it safe to take a higher dose of Loftidase AP 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Loftidase AP 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(30390, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'What is Loftidase AP Oral Suspension?', 'Loftidase AP Oral Suspension is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30391, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Is it safe to use Loftidase AP Oral Suspension?', 'Loftidase AP Oral Suspension is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(30392, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Can I stop taking Loftidase AP Oral Suspension when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Loftidase AP Oral Suspension should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(30393, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Can the use of Loftidase AP Oral Suspension cause nausea and vomiting?', 'Yes, the use of Loftidase AP Oral Suspension can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30394, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Can the use of Loftidase AP Oral Suspension cause dizziness?', 'Yes, the use of Loftidase AP Oral Suspension can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30395, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Are there any specific contraindications associated with the use of Loftidase AP Oral Suspension?', 'The use of Loftidase AP Oral Suspension is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30396, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Can Loftidase AP Oral Suspension be taken with vitamin B-complex?', 'Yes, Loftidase AP Oral Suspension can be taken with vitamin B-complex preparations. While Loftidase AP Oral Suspension helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(30397, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Is Loftidase AP Oral Suspension helpful in relieving stomach pain?', 'No, Loftidase AP Oral Suspension preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30398, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Can the use of Loftidase AP Oral Suspension cause damage to kidneys?', 'Yes, the long-term use of Loftidase AP Oral Suspension can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30399, 'Loftidase AP Oral Suspension', 'Ridhima Biocare', 'Loftidase AP Oral Suspension', 'Is it safe to take a higher dose of Loftidase AP Oral Suspension than recommended?', 'No, taking higher than the recommended dose of Loftidase AP Oral Suspension can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(30400, 'Loftidase DP 10mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase DP 10mg/325mg Tablet', 'What is Loftidase DP 10mg/325mg Tablet?', 'Loftidase DP 10mg/325mg Tablet is a combination of two medicines: Domperidone and Paracetamol/Acetaminophen. Domperidone helps to control vomiting. It also increases the movement of the stomach and intestines, allowing food to move more easily through the stomach. This prevents nausea and vomiting caused due to migraine. Paracetamol/Acetaminophen is an analgesic (pain reliever) and an anti-pyretic (fever reducer) which blocks the release of certain chemical messengers that cause pain and fever associated with migraine.'),
(30401, 'Loftidase DP 10mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase DP 10mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loftidase DP 10mg/325mg Tablet can increase the risks of side effects and liver damage. If you are experiencing increased severity of symptoms that are  not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30402, 'Loftidase DP 10mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase DP 10mg/325mg Tablet', 'Can I get addicted to Loftidase DP 10mg/325mg Tablet?', 'No, there is no report of any patient getting addicted to Loftidase DP 10mg/325mg Tablet.'),
(30403, 'Loftidase DP 10mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase DP 10mg/325mg Tablet', 'Can the use of Loftidase DP 10mg/325mg Tablet cause damage to liver?', 'Yes, Loftidase DP 10mg/325mg Tablet can cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease.'),
(30404, 'Loftidase DP 10mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase DP 10mg/325mg Tablet', 'What is the recommended storage condition for the Loftidase DP 10mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30405, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'What is Loftidase K 50mg/325mg Tablet?', 'Loftidase K 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(30406, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Is it safe to use Loftidase K 50mg/325mg Tablet?', 'Yes, Loftidase K 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(30407, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Can I stop taking Loftidase K 50mg/325mg Tablet when my pain is relieved?', 'Loftidase K 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(30408, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Can the use of Loftidase K 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Loftidase K 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30409, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Can the use of Loftidase K 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Loftidase K 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(30410, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Can the use of Loftidase K 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Loftidase K 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(30411, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Loftidase K 50mg/325mg Tablet?', 'The use of Loftidase K 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(30412, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Can Loftidase K 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Loftidase K 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Loftidase K 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(30413, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Loftidase K 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Loftidase K 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(30414, 'Loftidase K 50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase K 50mg/325mg Tablet', 'What is the recommended storage condition for Loftidase K 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30415, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'What is Loftidase KR 250mg/50mg/325mg Tablet?', 'Loftidase KR 250mg/50mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(30416, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'Is it safe to use Loftidase KR 250mg/50mg/325mg Tablet?', 'Loftidase KR 250mg/50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(30417, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'Can I stop taking Loftidase KR 250mg/50mg/325mg Tablet when my pain is relieved?', 'Loftidase KR 250mg/50mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(30418, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'Can the use of Loftidase KR 250mg/50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Loftidase KR 250mg/50mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30419, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'Can the use of Loftidase KR 250mg/50mg/325mg Tablet cause dizziness?', 'Yes, the use of Loftidase KR 250mg/50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30420, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'Can the use of Loftidase KR 250mg/50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Loftidase KR 250mg/50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30421, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loftidase KR 250mg/50mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30422, 'Loftidase KR 250mg/50mg/325mg Tablet', 'Ridhima Biocare', 'Loftidase KR 250mg/50mg/325mg Tablet', 'What are the recommended storage conditions for Loftidase KR 250mg/50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30423, 'Loftidase TH 4mg/50mg Tablet', 'Ridhima Biocare', 'Loftidase TH 4mg/50mg Tablet', 'Are there any specific contraindications associated with the use of Loftidase TH 4mg/50mg Tablet?', 'The use of Loftidase TH 4mg/50mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/ bleeding. Its use should also be avoided in a patient with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30424, 'Loftidase TH 4mg/50mg Tablet', 'Ridhima Biocare', 'Loftidase TH 4mg/50mg Tablet', 'Can I stop taking Loftidase TH 4mg/50mg Tablet when my pain is relieved?', 'Loftidase TH 4mg/50mg Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Loftidase TH 4mg/50mg Tablet should be continued if you are advised by your doctor to do so.'),
(30425, 'Loftidase TH 4mg/50mg Tablet', 'Ridhima Biocare', 'Loftidase TH 4mg/50mg Tablet', 'What are the instructions for the storage and disposal of Loftidase TH 4mg/50mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30426, 'Loftidase TH 4mg/50mg Tablet', 'Ridhima Biocare', 'Loftidase TH 4mg/50mg Tablet', 'Can the use of Loftidase TH 4mg/50mg Tablet cause dizziness?', 'Yes, the use of Loftidase TH 4mg/50mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30427, 'Loftidase TH 4mg/50mg Tablet', 'Ridhima Biocare', 'Loftidase TH 4mg/50mg Tablet', 'Can the use of Loftidase TH 4mg/50mg Tablet cause damage to kidneys?', 'Yes, long-term use of Loftidase TH 4mg/50mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30428, 'Loftidase TH 4mg/50mg Tablet', 'Ridhima Biocare', 'Loftidase TH 4mg/50mg Tablet', 'Will a higher than the recommended dose of Loftidase TH 4mg/50mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30429, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'What is Loftidase-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30430, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Is it safe to take Loftidase-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(30431, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Can I stop taking Loftidase-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(30432, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Can Loftidase-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(30433, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Can Loftidase-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30434, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Are there any specific contraindications associated with taking Loftidase-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30435, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Can I take Loftidase-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30436, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Can the use of Loftidase-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(30437, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'Can I take a higher dose of Loftidase-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30438, 'Loftidase-SP Tablet', 'Ridhima Biocare', 'Loftidase-SP Tablet', 'What are the instructions for storage and disposal of Loftidase-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30439, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'How should Loftinac AQ 75mg Injection injection be administered?', 'Loftinac AQ 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(30440, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'What is the most important information I need to know about Loftinac AQ 75mg Injection?', 'It is important to know that Loftinac AQ 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Loftinac AQ 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(30441, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'Is Loftinac AQ 75mg Injection a good painkiller?', 'Loftinac AQ 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(30442, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'Can Loftinac AQ 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Loftinac AQ 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(30443, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'Does Loftinac AQ 75mg Injection make you drowsy?', 'Loftinac AQ 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(30444, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'Can Loftinac AQ 75mg Injection be taken during pregnancy?', 'You should not take Loftinac AQ 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Loftinac AQ 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Loftinac AQ 75mg Injection during the first 6 months of pregnancy also.  In some cases, Loftinac AQ 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(30445, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'Does Loftinac AQ 75mg Injection get you high?', 'No, Loftinac AQ 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(30446, 'Loftinac AQ 75mg Injection', 'Ridhima Biocare', 'Loftinac AQ 75mg Injection', 'Is Loftinac AQ 75mg Injection a narcotic?', 'No, Loftinac AQ 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(30447, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'Is Loftinec 200mg Tablet SR a good painkiller?', 'Loftinec 200mg Tablet SR is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(30448, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'Is Loftinec 200mg Tablet SR safe?', 'Loftinec 200mg Tablet SR is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30449, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'Does Loftinec 200mg Tablet SR get you high?', 'No, Loftinec 200mg Tablet SR does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(30450, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'Can Loftinec 200mg Tablet SR hurt your kidneys?', 'Long-term use and high doses of Loftinec 200mg Tablet SR may cause renal problems, such as protein or blood in urine and pain during urination. Patients  who had or have heart failure, impaired kidney function and hypertension are at risk of kidney problems. The risk of developing kidney problems is also high in patients who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Along with that, Loftinec 200mg Tablet SR can affect kidneys of patients who are above 65 years of age or who remain dehydrated. Therefore, kidney function monitoring is recommended for such patients.'),
(30451, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'What if I forget to take a dose of Loftinec 200mg Tablet SR?', 'If you forget a dose of Loftinec 200mg Tablet SR, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30452, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'Does Loftinec 200mg Tablet SR make you drowsy?', 'Loftinec 200mg Tablet SR can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(30453, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'What is the most important information I need to know about Loftinec 200mg Tablet SR?', 'It is important to know that Loftinec 200mg Tablet SR may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, the use of Loftinec 200mg Tablet SR may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(30454, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'Can Loftinec 200mg Tablet SR be taken during pregnancy?', 'You should not take Loftinec 200mg Tablet SR during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Loftinec 200mg Tablet SR can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Loftinec 200mg Tablet SR during the first 6 months of pregnancy also.  In some cases, Loftinec 200mg Tablet SR may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(30455, 'Loftinec 200mg Tablet SR', 'Ridhima Biocare', 'Loftinec 200mg Tablet SR', 'Is Loftinec 200mg Tablet SR effective?', 'Loftinec 200mg Tablet SR is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Loftinec 200mg Tablet SR too early, the symptoms may return or worsen.'),
(30456, 'Loftuf 500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf 500mg Tablet', 'Is Loftuf 500mg Tablet safe?', 'Loftuf 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30457, 'Loftuf 500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf 500mg Tablet', 'What if I forget to take a dose of Loftuf 500mg Tablet?', 'If you forget a dose of Loftuf 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30458, 'Loftuf 500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf 500mg Tablet', 'Can the use of Loftuf 500mg Tablet cause diarrhea?', 'Yes, the use of Loftuf 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30459, 'Loftuf 500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf 500mg Tablet', 'Can I stop taking Loftuf 500mg Tablet when I feel better?', 'No, do not stop taking Loftuf 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Loftuf 500mg Tablet too early, the symptoms may return or worsen. Continue taking Loftuf 500mg Tablet in the dose and duration advised by the doctor.'),
(30460, 'Loftuf 500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf 500mg Tablet', 'Can the use of Loftuf 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Loftuf 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Loftuf 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30461, 'Loftuf OZ 250mg/500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Loftuf OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30462, 'Loftuf OZ 250mg/500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf OZ 250mg/500mg Tablet', 'Can I stop taking Loftuf OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Loftuf OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30463, 'Loftuf OZ 250mg/500mg Tablet', 'Nusmith Pharma Pvt. Ltd', 'Loftuf OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Loftuf OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30464, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'Can the use of Loftum-CV Tablet cause diarrhea?', 'Yes, the use of Loftum-CV Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30465, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'How long does Loftum-CV Tablet takes to work?', 'Usually, Loftum-CV Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(30466, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'What if I don\'t get better after using Loftum-CV Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30467, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'Can I stop taking Loftum-CV Tablet when I feel better?', 'No, do not stop taking Loftum-CV Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30468, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'What is Loftum-CV Tablet?', 'Loftum-CV Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(30469, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'Can the use of Loftum-CV Tablet cause any serious side effects?', 'Loftum-CV Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(30470, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'Can I stop taking Loftum-CV Tablet when my symptoms are relieved?', 'No, do not stop taking Loftum-CV Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30471, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'Can Loftum-CV Tablet cause allergic reaction?', 'Yes, Loftum-CV Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(30472, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'Are there any specific contraindications associated with the use of Loftum-CV Tablet?', 'The use of Loftum-CV Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Loftum-CV Tablet.'),
(30473, 'Loftum-CV Tablet', 'Loquat Healthcare Ltd', 'Loftum-CV Tablet', 'Can I take oral contraceptive pills while taking Loftum-CV Tablet?', 'No, Loftum-CV Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(30474, 'Loftycef 200 LB Tablet', 'Primero Life sciences Pvt Ltd', 'Loftycef 200 LB Tablet', 'What if I miss my dose?', 'Take Loftycef 200 LB Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30475, 'Loftycef 200 LB Tablet', 'Primero Life sciences Pvt Ltd', 'Loftycef 200 LB Tablet', 'How long does Loftycef 200 LB Tablet take to work?', 'Usually, Loftycef 200 LB Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(30476, 'Loftycef 200 LB Tablet', 'Primero Life sciences Pvt Ltd', 'Loftycef 200 LB Tablet', 'What if I don\'t get better after using Loftycef 200 LB Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30477, 'Loftycef 200 LB Tablet', 'Primero Life sciences Pvt Ltd', 'Loftycef 200 LB Tablet', 'Can I stop taking Loftycef 200 LB Tablet when I feel better?', 'No, do not stop taking Loftycef 200 LB Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30478, 'Loftycort 100mg Injection', 'Ridhima Biocare', 'Loftycort 100mg Injection', 'How does Loftycort 100mg Injection work?', 'Loftycort 100mg Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(30479, 'Loftycort 100mg Injection', 'Ridhima Biocare', 'Loftycort 100mg Injection', 'Is Loftycort 100mg Injection a steroid?', 'Yes, Loftycort 100mg Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Loftycort 100mg Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(30480, 'Loftycort 100mg Injection', 'Ridhima Biocare', 'Loftycort 100mg Injection', 'What is Loftycort 100mg Injection used for?', 'Loftycort 100mg Injection has anti-inflammatory and immunosuppressant properties. It is used to treat many conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It also helps to treat autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage), and certain eye disorders.'),
(30481, 'Loftycort 100mg Injection', 'Ridhima Biocare', 'Loftycort 100mg Injection', 'How is Loftycort 100mg Injection administered?', 'Loftycort 100mg Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). Your doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Loftycort 100mg Injection.'),
(30482, 'Loftycort 100mg Injection', 'Ridhima Biocare', 'Loftycort 100mg Injection', 'I was given Loftycort 100mg Injection in the knee as I have arthritis. Will it pain after taking Loftycort 100mg Injection? What should I do about it?', 'Loftycort 100mg Injection effectively treats many inflammatory conditions, joint pain and inflammation in arthritis being one of its multiple uses. Usually, the pain gets better after a day or two. Try not to have frequent movement for about 24 hours after the injection and do not do any heavy exercise for best results. However, if you experience pain, consult your doctor. The doctor may prescribe some over the counter pain medications if the pain persists for longer or if it bothers you a lot.'),
(30483, 'Loftycort 18 Tablet', 'Ridhima Biocare', 'Loftycort 18 Tablet', 'Is Loftycort 18 Tablet a steroid?', 'Yes, Loftycort 18 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Loftycort 18 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(30484, 'Loftycort 18 Tablet', 'Ridhima Biocare', 'Loftycort 18 Tablet', 'What is Loftycort 18 Tablet used for?', 'Loftycort 18 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(30485, 'Loftycort 18 Tablet', 'Ridhima Biocare', 'Loftycort 18 Tablet', 'How does Loftycort 18 Tablet work?', 'Loftycort 18 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(30486, 'Loftycort 18 Tablet', 'Ridhima Biocare', 'Loftycort 18 Tablet', 'Is Loftycort 18 Tablet better than Prednisone?', 'Clinical studies have shown that Loftycort 18 Tablet has a similar effect as that of prednisone. Moreover, Loftycort 18 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(30487, 'Loftycort 18 Tablet', 'Ridhima Biocare', 'Loftycort 18 Tablet', 'Is Loftycort 18 Tablet a painkiller?', 'No, Loftycort 18 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(30488, 'Loftycort 18 Tablet', 'Ridhima Biocare', 'Loftycort 18 Tablet', 'Can I take Loftycort 18 Tablet with Tamsulosin?', 'Yes, Loftycort 18 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(30489, 'Loftycort 200mg Injection', 'Ridhima Biocare', 'Loftycort 200mg Injection', 'How does Loftycort 200mg Injection work?', 'Loftycort 200mg Injection works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(30490, 'Loftycort 200mg Injection', 'Ridhima Biocare', 'Loftycort 200mg Injection', 'Is Loftycort 200mg Injection a steroid?', 'Yes, Loftycort 200mg Injection is a steroid medicine also known as corticosteroids which occur naturally in the body. These corticosteroids help to maintain health and wellbeing. Loftycort 200mg Injection increases the levels of corticosteroids in the body by treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(30491, 'Loftycort 200mg Injection', 'Ridhima Biocare', 'Loftycort 200mg Injection', 'What is Loftycort 200mg Injection used for?', 'Loftycort 200mg Injection has anti-inflammatory and immunosuppressant properties. It is used to treat many conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It also helps to treat autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage), and certain eye disorders.'),
(30492, 'Loftycort 200mg Injection', 'Ridhima Biocare', 'Loftycort 200mg Injection', 'How is Loftycort 200mg Injection administered?', 'Loftycort 200mg Injection should be administered by a doctor or under the supervision of a healthcare professional and should not be self-administered. Usually, it is given into a muscle (intramuscular), joint (intra-articular), directly into a vein (direct intravenous), infusion or into the area being treated (soft tissue infiltration). Your doctor will decide the dose based on the condition you are being treated for and also your body weight. Follow your doctor’s instructions carefully to get maximum benefit from Loftycort 200mg Injection.'),
(30493, 'Loftycort 200mg Injection', 'Ridhima Biocare', 'Loftycort 200mg Injection', 'I was given Loftycort 200mg Injection in the knee as I have arthritis. Will it pain after taking Loftycort 200mg Injection? What should I do about it?', 'Loftycort 200mg Injection effectively treats many inflammatory conditions, joint pain and inflammation in arthritis being one of its multiple uses. Usually, the pain gets better after a day or two. Try not to have frequent movement for about 24 hours after the injection and do not do any heavy exercise for best results. However, if you experience pain, consult your doctor. The doctor may prescribe some over the counter pain medications if the pain persists for longer or if it bothers you a lot.'),
(30494, 'Loftycort 24 Tablet', 'Ridhima Biocare', 'Loftycort 24 Tablet', 'Is Loftycort 24 Tablet a steroid?', 'Yes, Loftycort 24 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Loftycort 24 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(30495, 'Loftycort 24 Tablet', 'Ridhima Biocare', 'Loftycort 24 Tablet', 'What is Loftycort 24 Tablet used for?', 'Loftycort 24 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(30496, 'Loftycort 24 Tablet', 'Ridhima Biocare', 'Loftycort 24 Tablet', 'How does Loftycort 24 Tablet work?', 'Loftycort 24 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(30497, 'Loftycort 24 Tablet', 'Ridhima Biocare', 'Loftycort 24 Tablet', 'Is Loftycort 24 Tablet better than Prednisone?', 'Clinical studies have shown that Loftycort 24 Tablet has a similar effect as that of prednisone. Moreover, Loftycort 24 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30498, 'Loftycort 24 Tablet', 'Ridhima Biocare', 'Loftycort 24 Tablet', 'Is Loftycort 24 Tablet a painkiller?', 'No, Loftycort 24 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(30499, 'Loftycort 24 Tablet', 'Ridhima Biocare', 'Loftycort 24 Tablet', 'Can I take Loftycort 24 Tablet with Tamsulosin?', 'Yes, Loftycort 24 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(30500, 'Loftycort 30mg Tablet', 'Ridhima Biocare', 'Loftycort 30mg Tablet', 'Is Loftycort 30mg Tablet a steroid?', 'Yes, Loftycort 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Loftycort 30mg Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(30501, 'Loftycort 30mg Tablet', 'Ridhima Biocare', 'Loftycort 30mg Tablet', 'What is Loftycort 30mg Tablet used for?', 'Loftycort 30mg Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(30502, 'Loftycort 30mg Tablet', 'Ridhima Biocare', 'Loftycort 30mg Tablet', 'How does Loftycort 30mg Tablet work?', 'Loftycort 30mg Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(30503, 'Loftycort 30mg Tablet', 'Ridhima Biocare', 'Loftycort 30mg Tablet', 'Is Loftycort 30mg Tablet better than Prednisone?', 'Clinical studies have shown that Loftycort 30mg Tablet has a similar effect as that of prednisone. Moreover, Loftycort 30mg Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(30504, 'Loftycort 30mg Tablet', 'Ridhima Biocare', 'Loftycort 30mg Tablet', 'Is Loftycort 30mg Tablet a painkiller?', 'No, Loftycort 30mg Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(30505, 'Loftycort 30mg Tablet', 'Ridhima Biocare', 'Loftycort 30mg Tablet', 'Can I take Loftycort 30mg Tablet with Tamsulosin?', 'Yes, Loftycort 30mg Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(30506, 'Loftycort 6 Tablet', 'Ridhima Biocare', 'Loftycort 6 Tablet', 'Is Loftycort 6 Tablet a steroid?', 'Yes, Loftycort 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Loftycort 6 Tablet increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(30507, 'Loftycort 6 Tablet', 'Ridhima Biocare', 'Loftycort 6 Tablet', 'What is Loftycort 6 Tablet used for?', 'Loftycort 6 Tablet has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(30508, 'Loftycort 6 Tablet', 'Ridhima Biocare', 'Loftycort 6 Tablet', 'How does Loftycort 6 Tablet work?', 'Loftycort 6 Tablet is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(30509, 'Loftycort 6 Tablet', 'Ridhima Biocare', 'Loftycort 6 Tablet', 'Is Loftycort 6 Tablet better than Prednisone?', 'Clinical studies have shown that Loftycort 6 Tablet has a similar effect as that of prednisone. Moreover, Loftycort 6 Tablet is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(30510, 'Loftycort 6 Tablet', 'Ridhima Biocare', 'Loftycort 6 Tablet', 'Is Loftycort 6 Tablet a painkiller?', 'No, Loftycort 6 Tablet is not a painkiller. It belongs to the class of medicines known as steroids.'),
(30511, 'Loftycort 6 Tablet', 'Ridhima Biocare', 'Loftycort 6 Tablet', 'Can I take Loftycort 6 Tablet with Tamsulosin?', 'Yes, Loftycort 6 Tablet can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(30512, 'Loftycort 6mg Oral Suspension', 'Ridhima Biocare', 'Loftycort 6mg Oral Suspension', 'Is Loftycort 6mg Oral Suspension a steroid?', 'Yes, Loftycort 6mg Oral Suspension is a steroid medicine also known as glucocorticoids which occur naturally in the body. These glucocorticoids help to maintain health and wellbeing. Loftycort 6mg Oral Suspension increases the corticosteroids levels in the body which helps in treating various illnesses involving inflammation (redness, tenderness, heat and swelling).'),
(30513, 'Loftycort 6mg Oral Suspension', 'Ridhima Biocare', 'Loftycort 6mg Oral Suspension', 'What is Loftycort 6mg Oral Suspension used for?', 'Loftycort 6mg Oral Suspension has anti-inflammatory and immunosuppressant properties. It is used for treating conditions like allergy diseases, anaphylaxis, asthma, rheumatoid arthritis, inflammatory skin diseases and autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage). The medicine also helps transplant patients as it suppresses the immune system so that the body does not reject the organ.'),
(30514, 'Loftycort 6mg Oral Suspension', 'Ridhima Biocare', 'Loftycort 6mg Oral Suspension', 'How does Loftycort 6mg Oral Suspension work?', 'Loftycort 6mg Oral Suspension is a steroid medicine also known as glucocorticoids which occur naturally in the body. The medicine works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(30515, 'Loftycort 6mg Oral Suspension', 'Ridhima Biocare', 'Loftycort 6mg Oral Suspension', 'Is Loftycort 6mg Oral Suspension better than Prednisone?', 'Clinical studies have shown that Loftycort 6mg Oral Suspension has a similar effect as that of prednisone. Moreover, Loftycort 6mg Oral Suspension is better tolerated when used in the treatment of inflammatory conditions. However, consult your doctor for the right treatment of your condition.'),
(30516, 'Loftycort 6mg Oral Suspension', 'Ridhima Biocare', 'Loftycort 6mg Oral Suspension', 'Is Loftycort 6mg Oral Suspension a painkiller?', 'No, Loftycort 6mg Oral Suspension is not a painkiller. It belongs to the class of medicines known as steroids.'),
(30517, 'Loftycort 6mg Oral Suspension', 'Ridhima Biocare', 'Loftycort 6mg Oral Suspension', 'Can I take Loftycort 6mg Oral Suspension with Tamsulosin?', 'Yes, Loftycort 6mg Oral Suspension can be taken with Tamsulosin. No harmful effects or any other interactions have been reported when they are used together.'),
(30518, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'What is Loftynac-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30519, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Is it safe to take Loftynac-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(30520, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Can I stop taking Loftynac-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(30521, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Can Loftynac-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(30522, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Can Loftynac-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30523, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Are there any specific contraindications associated with taking Loftynac-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30524, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Can I take Loftynac-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30525, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Can the use of Loftynac-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(30526, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'Can I take a higher dose of Loftynac-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30527, 'Loftynac-SP Tablet', 'Urmisha Pharma Pvt Ltd', 'Loftynac-SP Tablet', 'What are the instructions for storage and disposal of Loftynac-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30528, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'What is Lofu 40mg Tablet used for?', 'Lofu 40mg Tablet is used to treat gout in adults. It is mainly used in patients who did not respond to the treatment with allopurinol or who are not able to take allopurinol. Gout is a type of arthritis in which uric acid, a naturally occurring substance in the body, builds up in the joints. It causes sudden attacks of redness, swelling, pain, and heat in one or more joints.'),
(30529, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'What are the side effects of Lofu 40mg Tablet?', 'Lofu 40mg Tablet may cause common side effects such as abnormal liver test results, diarrhea, headache, rash, nausea, and even an increase in gout symptoms and localized swelling due to retention of fluids in tissues (edema). Whereas, the serious side effects of Lofu 40mg Tablet include heart problems, gout flares, liver problems, and severe skin and allergic reactions. Immediately inform your doctor if you experience any serious side effects.'),
(30530, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'How long should I take Lofu 40mg Tablet?', 'The dose and duration of Lofu 40mg Tablet vary from person to person and are decided by your doctor. It may take several months before Lofu 40mg Tablet begins to prevent gout attacks. Do not stop taking Lofu 40mg Tablet without the advice of your doctor even if you feel better.'),
(30531, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'What is the best time to take Lofu 40mg Tablet?', 'Lofu 40mg Tablet is advised to be taken once a day. It can be taken at any time of the day, but preferably at the same time each day so that you remember to take it every day. This will help maintain the levels of Lofu 40mg Tablet in the body. You can take this medicine with or without food.'),
(30532, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'Can Lofu 40mg Tablet cause kidney damage?', 'Lofu 40mg Tablet may affect kidneys in different ways, though it is quite uncommon. You may experience blood in the urine, frequent urination, kidney stones, abnormal urine tests (increased level of proteins in the urine), and a reduction in the ability of the kidneys to function properly. Rarely, it may cause changes or decrease in urine amount due to inflammation in the kidneys (tubulointerstitial nephritis). Consult your doctor if your kidney functions get further affected.'),
(30533, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'Can I stop taking Lofu 40mg Tablet on my own if I am fine and have no pain or swelling in joints?', 'No, do not stop taking Lofu 40mg Tablet without your doctor\'s advice even if you feel better. Discontinuation of medicine may increase the levels of uric acid. It may also worsen your symptoms due to the formation of new crystals of urate in and around your joints and kidneys.'),
(30534, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'What are the things which I need to know while taking Lofu 40mg Tablet?', 'You should be aware that Lofu 40mg Tablet may cause serious heart problems which can be life-threatening in some cases. The symptoms of heart problems include chest pain, shortness of breath or trouble breathing, dizziness, fainting or feeling light-headed, rapid or irregular heartbeat. It may also cause numbness or weakness in one side of your body, slurring of speech and sudden blurry vision, or sudden severe headache. Immediately inform your doctor and seek medical help if you experience any of these symptoms.'),
(30535, 'Lofu 40mg Tablet', 'Olcare Laboratories', 'Lofu 40mg Tablet', 'Can Lofu 40mg Tablet cause any liver problems?', 'Yes, Lofu 40mg Tablet use may cause liver problems. Your doctor may advise you to get regular blood tests done before and during treatment with Lofu 40mg Tablet to check how well your liver was working before and while taking this medicine. Inform your doctor if you notice symptoms such as fatigue, pain, or tenderness on the right side of the abdomen or loss of appetite for several days or longer. It may also cause changes in the color of urine (dark or tea-colored) and may make your skin or the white part of your eyes turn yellow (jaundice).'),
(30536, 'Lofylin 100mg Tablet', 'Dr Kumars Pharmaceuticals', 'Lofylin 100mg Tablet', 'Does birth control pills have any effect on Lofylin 100mg Tablet?', 'If you are taking birth control pills, dose of Lofylin 100mg Tablet need to be reduced as birth control pills may interfere with clearance of Lofylin 100mg Tablet, increasing its levels and chances of side effects.'),
(30537, 'Lofylin 100mg Tablet', 'Dr Kumars Pharmaceuticals', 'Lofylin 100mg Tablet', 'How should Lofylin 100mg Tablet be taken?', 'Lofylin 100mg Tablet should be taken strictly as advised by the doctor. To avoid an upset stomach it should be taken with food.'),
(30538, 'Lofylin 100mg Tablet', 'Dr Kumars Pharmaceuticals', 'Lofylin 100mg Tablet', 'Is it okay to take furosemide along with Lofylin 100mg Tablet?', 'One should take proper caution if you are taking furosemide along with Lofylin 100mg Tablet. This is because the combined use of these medicines may decrease the levels of potassium. Hence, regular monitoring of potassium levels is required.'),
(30539, 'Lofylin 100mg Tablet', 'Dr Kumars Pharmaceuticals', 'Lofylin 100mg Tablet', 'When should Lofylin 100mg Tablet be avoided?', 'Lofylin 100mg Tablet should be avoided in patients who are allergic to ambroxol, Lofylin 100mg Tablet, or theophylline. Along with that, patients suffering from low blood pressure, irregular heart beats or rhythm or history of heart attack, liver disease or kidney disorder should avoid taking Lofylin 100mg Tablet.'),
(30540, 'Lofylin 100mg Tablet', 'Dr Kumars Pharmaceuticals', 'Lofylin 100mg Tablet', 'Is Lofylin 100mg Tablet the same as theophylline?', 'Lofylin 100mg Tablet comprises of theophylline-7 acetate and ambroxol which makes it effective in making the mucus more fluid and clearing the airways easily, thereby making breathing easier. This effect of Lofylin 100mg Tablet works as an added advantage over theophylline. Moreover, it also reduces the need for other medicine used to treat asthma, like salbutamol.'),
(30541, 'Log 10mg Tablet', 'Idol Biotech', 'Log 10mg Tablet', 'How quickly does Log 10mg Tablet work?', 'Log 10mg Tablet starts working within an hour of taking it. The maximum benefit of this medicine is seen within 6 hours and the effect lasts for 24 hours.'),
(30542, 'Log 10mg Tablet', 'Idol Biotech', 'Log 10mg Tablet', 'Is Log 10mg Tablet effective?', 'Log 10mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Log 10mg Tablet too early, the symptoms may return or worsen.'),
(30543, 'Log 10mg Tablet', 'Idol Biotech', 'Log 10mg Tablet', 'Can Log 10mg Tablet cause heart problems?', 'Yes, Log 10mg Tablet may cause fast or irregular heartbeat and palpitations, especially in patients with heart problems. Patients who are already suffering from heart disease should remain careful while taking Log 10mg Tablet. Therefore, inform your doctor if you have heart problems.'),
(30544, 'Log 10mg Tablet', 'Idol Biotech', 'Log 10mg Tablet', 'What if I forget to take a dose of Log 10mg Tablet?', 'If you have missed a dose of Log 10mg Tablet, take it as soon as you remember it. However, if it is almost time for your next dose, take it in the regular schedule instead of taking the missed dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30545, 'Log 10mg Tablet', 'Idol Biotech', 'Log 10mg Tablet', 'Does Log 10mg Tablet relieve symptoms of outdoor and indoor allergies?', 'Yes, Log 10mg Tablet relieves the symptoms of upper respiratory allergies or hay fever which can be caused by outdoor and indoor allergens. It relieves the symptoms of itchy or watery eyes, runny nose, and sneezing, or itching of the nose or throat.'),
(30546, 'Log 10mg Tablet', 'Idol Biotech', 'Log 10mg Tablet', 'Can Log 10mg Tablet make you sleepy?', 'Yes, drowsiness is a common side effect of this medicine. However, it does not affect everyone. But in case the drowsiness starts hampering your daily life, consult your doctor who might suggest another anti-allergic medicine which does not cause sleepiness.'),
(30547, 'Log 10mg Tablet', 'Idol Biotech', 'Log 10mg Tablet', 'Can you overdose on Log 10mg Tablet?', 'No, never take an overdose of any medicine. Overdose of Log 10mg Tablet may cause dizziness, drowsiness, fatigue and dry mouth. If you accidentally take more than the recommended dose of Log 10mg Tablet, seek emergency medical service in a nearby hospital or contact your doctor immediately.'),
(30548, 'Log 10mg Tablet DT', 'Idol Biotech', 'Log 10mg Tablet DT', 'How quickly does Log 10mg Tablet DT work?', 'Log 10mg Tablet DT starts working within an hour of taking it. The maximum benefit of this medicine is seen within 6 hours and the effect lasts for 24 hours.'),
(30549, 'Log 10mg Tablet DT', 'Idol Biotech', 'Log 10mg Tablet DT', 'Is Log 10mg Tablet DT effective?', 'Log 10mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Log 10mg Tablet DT too early, the symptoms may return or worsen.'),
(30550, 'Log 10mg Tablet DT', 'Idol Biotech', 'Log 10mg Tablet DT', 'Can Log 10mg Tablet DT cause heart problems?', 'Yes, Log 10mg Tablet DT may cause fast or irregular heartbeat and palpitations, especially in patients with heart problems. Patients who are already suffering from heart disease should remain careful while taking Log 10mg Tablet DT. Therefore, inform your doctor if you have heart problems.'),
(30551, 'Log 10mg Tablet DT', 'Idol Biotech', 'Log 10mg Tablet DT', 'What if I forget to take a dose of Log 10mg Tablet DT?', 'If you have missed a dose of Log 10mg Tablet DT, take it as soon as you remember it. However, if it is almost time for your next dose, take it in the regular schedule instead of taking the missed dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30552, 'Log 10mg Tablet DT', 'Idol Biotech', 'Log 10mg Tablet DT', 'Does Log 10mg Tablet DT relieve symptoms of outdoor and indoor allergies?', 'Yes, Log 10mg Tablet DT relieves the symptoms of upper respiratory allergies or hay fever which can be caused by outdoor and indoor allergens. It relieves the symptoms of itchy or watery eyes, runny nose, and sneezing, or itching of the nose or throat.'),
(30553, 'Log 10mg Tablet DT', 'Idol Biotech', 'Log 10mg Tablet DT', 'Can Log 10mg Tablet DT make you sleepy?', 'Yes, drowsiness is a common side effect of this medicine. However, it does not affect everyone. But in case the drowsiness starts hampering your daily life, consult your doctor who might suggest another anti-allergic medicine which does not cause sleepiness.'),
(30554, 'Log 10mg Tablet DT', 'Idol Biotech', 'Log 10mg Tablet DT', 'Can you overdose on Log 10mg Tablet DT?', 'No, never take an overdose of any medicine. Overdose of Log 10mg Tablet DT may cause dizziness, drowsiness, fatigue and dry mouth. If you accidentally take more than the recommended dose of Log 10mg Tablet DT, seek emergency medical service in a nearby hospital or contact your doctor immediately.'),
(30555, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'What is Logab M 500mcg/50mg Tablet?', 'Logab M 500mcg/50mg Tablet is a combination of two medicines: Pregabalin and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). It calms the damaged or overactive nerves by acting on the brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(30556, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'Can I stop taking Logab M 500mcg/50mg Tablet when my pain is relieved?', 'No, you should not stop taking Logab M 500mcg/50mg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Logab M 500mcg/50mg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the use of Logab M 500mcg/50mg Tablet before you stop the medication completely.'),
(30557, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'How to manage weight gain associated with the use of Logab M 500mcg/50mg Tablet?', 'Logab M 500mcg/50mg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits, and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(30558, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'Can the use of Logab M 500mcg/50mg Tablet cause sleepiness or drowsiness?', 'Yes, Logab M 500mcg/50mg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(30559, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'Are there any serious side effects associated with the use of Logab M 500mcg/50mg Tablet?', 'Serious side effects caused because of the use of Logab M 500mcg/50mg Tablet are uncommon and rare. However, it may cause serious side effects like allergic reaction, suicidal thoughts or swelling of limbs (hands, legs or feet). Stop taking Logab M 500mcg/50mg Tablet and contact your doctor if you have any signs of these serious side effects. Signs of an allergic reaction include swelling of your face, mouth, lips, gums, tongue and neck. Allergic reactions can also lead to trouble in breathing, skin rash, hives (raised bumps) or blisters. Pay attention to any changes, especially sudden changes in mood, behaviors, thoughts or feelings, or if you have suicidal thoughts.'),
(30560, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'How long will the Logab M 500mcg/50mg Tablet take to act?', 'An initial benefit with Logab M 500mcg/50mg Tablet may be seen after 2 weeks of treatment. However, it may take around 2-3 months or more (in some patients) to see the full benefits.'),
(30561, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'What if I forget to take Logab M 500mcg/50mg Tablet?', 'If you forget to take the scheduled dose of Logab M 500mcg/50mg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(30562, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'Will a higher than the recommended dose of Logab M 500mcg/50mg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30563, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'Can I drink alcohol while taking Logab M 500mcg/50mg Tablet?', 'No, do not drink alcohol while taking Logab M 500mcg/50mg Tablet. Drinking alcohol can increase the severity of drowsiness or sleepiness caused by Logab M 500mcg/50mg Tablet.'),
(30564, 'Logab M 500mcg/50mg Tablet', 'Denk Indier Llp', 'Logab M 500mcg/50mg Tablet', 'How often should I see the doctor ?', 'You may need to see your doctor regularly if you have started to take Logab M 500mcg/50mg Tablet. However, you must consult your doctor if the advised dosage of Logab M 500mcg/50mg Tablet does not improve your symptoms or you continue experiencing some unwanted side effects that affect your routine activities.'),
(30565, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'What is Logab Plus 75mg/10mg/750mcg Tablet?', 'Logab Plus 75mg/10mg/750mcg Tablet is a combination of three medicines: Gabapentin, Nortriptyline and Methylcobalamin. This medicine is useful in the treatment of nerve pain (neuropathic pain). This medicine calms the damaged or overactive nerves by acting on brain, thereby decreasing the pain sensation. It also helps in the regeneration of damaged nerves in the body.'),
(30566, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'Can I stop taking Logab Plus 75mg/10mg/750mcg Tablet when my pain is relieved?', 'No, you should not stop taking Logab Plus 75mg/10mg/750mcg Tablet even if your pain is relieved. Continue to take it as advised by your doctor. If you suddenly stop taking Logab Plus 75mg/10mg/750mcg Tablet, you may experience withdrawal symptoms such as anxiety, sleeping difficulties, nausea, pain and sweating. You may need to gradually taper the dose before you stop the medication completely.'),
(30567, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'How to manage weight gain associated with the use of Logab Plus 75mg/10mg/750mcg Tablet?', 'Logab Plus 75mg/10mg/750mcg Tablet can make you feel hungry which might make you eat more, thereby increasing your chances of putting on weight. However, preventing weight gain is easier than losing the increased weight. Try to eat a healthy balanced diet without increasing your portion sizes (per-meal intake). Do not eat food items that contain a lot of calories, such as soft drinks, oily food, chips, cakes, biscuits and sweets. If you feel hungry between meals, avoid eating junk food and eat fruits, vegetables and low-calorie foods. Regular exercise will help prevent weight gain. If you maintain good eating habits and exercise regularly, you might not gain any weight.'),
(30568, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'Can the use of Logab Plus 75mg/10mg/750mcg Tablet cause sleepiness or drowsiness?', 'Yes, Logab Plus 75mg/10mg/750mcg Tablet may make you feel drowsy or you may suddenly fall asleep during your daily activities. Sometimes, you might not even feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights, or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(30569, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'Can the use of Logab Plus 75mg/10mg/750mcg Tablet affect my sexual life?', 'The use of Logab Plus 75mg/10mg/750mcg Tablet can affect the sexual life of both men and women. Most commonly observed problems are decreased sexual desire, erectile dysfunction (inability to develop or maintain erection during the sexual activity) and inability to reach orgasm. It can also cause a decrease in satisfaction and cause discomfort while intercourse. If you experience these problems, discuss them with your doctor but do not stop taking Logab Plus 75mg/10mg/750mcg Tablet.'),
(30570, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'Are there any serious side effects associated with the use of Logab Plus 75mg/10mg/750mcg Tablet?', 'Serious side effects because of Logab Plus 75mg/10mg/750mcg Tablet are uncommon and rare. Consult your doctor if you notice any of the following: changes in body temperature, difficulty in breathing, increased heartbeat (palpitations), weakness, unsteadiness when walking, reduced coordination or slowed reactions, unusual changes in mood or behavior (such as restlessness, nervousness or excitement), signs of depression, seeing or hearing things that are not there, irrational thinking, blurred or double vision, uncontrollable jerky eye movements, difficulty seeing, signs of frequent infections such as fever, severe chills, sore throat or mouth ulcers. These side effects are uncommon but may be serious and need urgent medical attention.'),
(30571, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'How long will Logab Plus 75mg/10mg/750mcg Tablet take to act?', 'An initial benefit with Logab Plus 75mg/10mg/750mcg Tablet may be seen after 2 weeks of the treatment. However, it may take around 2-3 months or more to see full benefits and even.'),
(30572, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'What if I forget to take Logab Plus 75mg/10mg/750mcg Tablet?', 'If you forget to take the scheduled dose of Logab Plus 75mg/10mg/750mcg Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect. If you are not sure what to do, consult your about how to manage a situation like this.'),
(30573, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'What if I take too much of this drug by mistake?', 'In a situation like this, contact your doctor immediately or seek emergency help at the nearest hospital. Do this even if there are no signs of discomfort or poisoning. You may need urgent medical attention. Symptoms of an overdose may include drowsiness, weakness, unsteadiness while walking, having double visions, slurred speech or diarrhea, confusion, blurred vision, dizziness, body temperature changes (low and high), difficulty in breathing and increased heartbeat.'),
(30574, 'Logab Plus 75mg/10mg/750mcg Tablet', 'Denk Indier Llp', 'Logab Plus 75mg/10mg/750mcg Tablet', 'Will a higher than the recommended dose of Logab Plus 75mg/10mg/750mcg Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30575, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'Is Logan 1 Tablet an opioid? Is it a habit-forming medicine?', 'No, Logan 1 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(30576, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'Can Logan 1 Tablet be used as a sleeping pill?', 'Logan 1 Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Logan 1 Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(30577, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'For how long will Logan 1 Tablet stay in my system?', 'Logan 1 Tablet may take around 3 days to get completely removed from the system.'),
(30578, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'Are there any symptoms that I would experience if I get addicted to Logan 1 Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Logan 1 Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(30579, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'If I suddenly stop taking Logan 1 Tablet, will it affect me adversely?', 'You should reduce the dose of Logan 1 Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(30580, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'Does Logan 1 Tablet cause weight gain?', 'The effect of Logan 1 Tablet on weight gain or loss is not known.'),
(30581, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'Does Logan 1 Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Logan 1 Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(30582, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'My old uncle is taking Logan 1 Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Logan 1 Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(30583, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'Are there any harmful effects of taking more than the recommended doses of Logan 1 Tablet?', 'Taking more than the recommended dose of Logan 1 Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Logan 1 Tablet, seek immediate medical help immediately.'),
(30584, 'Logan 1 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 1 Tablet', 'Is Logan 1 Tablet an opioid? Is it a habit-forming medicine?', 'No, Logan 1 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(30585, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'Is Logan 2 Tablet an opioid? Is it a habit-forming medicine?', 'No, Logan 2 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(30586, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'Can Logan 2 Tablet be used as a sleeping pill?', 'Logan 2 Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Logan 2 Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(30587, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'For how long will Logan 2 Tablet stay in my system?', 'Logan 2 Tablet may take around 3 days to get completely removed from the system.'),
(30588, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'Are there any symptoms that I would experience if I get addicted to Logan 2 Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Logan 2 Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(30589, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'If I suddenly stop taking Logan 2 Tablet, will it affect me adversely?', 'You should reduce the dose of Logan 2 Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(30590, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'Does Logan 2 Tablet cause weight gain?', 'The effect of Logan 2 Tablet on weight gain or loss is not known.'),
(30591, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'Does Logan 2 Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Logan 2 Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(30592, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'My old uncle is taking Logan 2 Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Logan 2 Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(30593, 'Logan 2 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 2 Tablet', 'Are there any harmful effects of taking more than the recommended doses of Logan 2 Tablet?', 'Taking more than the recommended dose of Logan 2 Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Logan 2 Tablet, seek immediate medical help immediately.'),
(30594, 'Logan 250mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 250mg Tablet', 'Is Logan 250mg Tablet safe?', 'Logan 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30595, 'Logan 250mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 250mg Tablet', 'What if I forget to take a dose of Logan 250mg Tablet?', 'If you forget a dose of Logan 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30596, 'Logan 250mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 250mg Tablet', 'Can the use of Logan 250mg Tablet cause diarrhea?', 'Yes, the use of Logan 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30597, 'Logan 250mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 250mg Tablet', 'Can I stop taking Logan 250mg Tablet when I feel better?', 'No, do not stop taking Logan 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Logan 250mg Tablet too early, the symptoms may return or worsen. Continue taking Logan 250mg Tablet in the dose and duration advised by the doctor.'),
(30598, 'Logan 250mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 250mg Tablet', 'Can the use of Logan 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Logan 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Logan 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30599, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'Is Logan 3 Tablet an opioid? Is it a habit-forming medicine?', 'No, Logan 3 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(30600, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'Can Logan 3 Tablet be used as a sleeping pill?', 'Logan 3 Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Logan 3 Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(30601, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'For how long will Logan 3 Tablet stay in my system?', 'Logan 3 Tablet may take around 3 days to get completely removed from the system.'),
(30602, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'Are there any symptoms that I would experience if I get addicted to Logan 3 Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Logan 3 Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(30603, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'If I suddenly stop taking Logan 3 Tablet, will it affect me adversely?', 'You should reduce the dose of Logan 3 Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(30604, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'Does Logan 3 Tablet cause weight gain?', 'The effect of Logan 3 Tablet on weight gain or loss is not known.'),
(30605, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'Does Logan 3 Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Logan 3 Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(30606, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'My old uncle is taking Logan 3 Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Logan 3 Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(30607, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'Are there any harmful effects of taking more than the recommended doses of Logan 3 Tablet?', 'Taking more than the recommended dose of Logan 3 Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Logan 3 Tablet, seek immediate medical help immediately.'),
(30608, 'Logan 3 Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Logan 3 Tablet', 'Is Logan 3 Tablet an opioid? Is it a habit-forming medicine?', 'No, Logan 3 Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30609, 'Logan 500mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 500mg Tablet', 'Is Logan 500mg Tablet safe?', 'Logan 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30610, 'Logan 500mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 500mg Tablet', 'What if I forget to take a dose of Logan 500mg Tablet?', 'If you forget a dose of Logan 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30611, 'Logan 500mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 500mg Tablet', 'Can the use of Logan 500mg Tablet cause diarrhea?', 'Yes, the use of Logan 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30612, 'Logan 500mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 500mg Tablet', 'Can I stop taking Logan 500mg Tablet when I feel better?', 'No, do not stop taking Logan 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Logan 500mg Tablet too early, the symptoms may return or worsen. Continue taking Logan 500mg Tablet in the dose and duration advised by the doctor.'),
(30613, 'Logan 500mg Tablet', 'Allentis Pharmaceuticals Pvt Ltd', 'Logan 500mg Tablet', 'Can the use of Logan 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Logan 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Logan 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30614, 'Logan Syrup', 'Rhombus Pharma Pvt Ltd', 'Logan Syrup', 'Is Logan Syrup or Logan Syrup DM syrup a narcotic/opiate/pain killer?', 'Logan Syrup is antihistaminic drug and not a narcotic/opiate/pain killer. Patient should follow the advice of doctor regarding its use'),
(30615, 'Logan Syrup', 'Rhombus Pharma Pvt Ltd', 'Logan Syrup', 'Is Logan Syrup over the counter?', 'No, it is available with doctor\'s prescription only'),
(30616, 'Logan Syrup', 'Rhombus Pharma Pvt Ltd', 'Logan Syrup', 'Can I take Logan Syrup for a hangover/sore throat/ nausea/stomach flu/cramps/toothache/ headache/ cough/pain?', 'Logan Syrup is used for treatment of symptoms of allergies, but not used for hangover, sore throat, stomach flu, cramps, toothache, headache and cough. Patient should follow the advice of doctor regarding its use'),
(30617, 'Logan Syrup', 'Rhombus Pharma Pvt Ltd', 'Logan Syrup', 'Can I take Logan Syrup with Nyquil/ codeine and ibuprofen/ Tylenol/ oxycodone/ Benadryl/ Dayquil/ Zofran/codeine and Nyquil/Xanax?', 'Yes, but taking other medicines may alter the effects of Logan Syrup. Always consult your doctor for the change of dose regimen or an alternative drug of choice that may strictly be required'),
(30618, 'Logan Syrup', 'Rhombus Pharma Pvt Ltd', 'Logan Syrup', 'Does Logan Syrup or Logan Syrup DM make you sleepy/ get you high/make you tired?', 'Logan Syrup may cause these side effects which are not serious. However, always consult your doctor if you experience any of these side effects.'),
(30619, 'Logcef 100mg Tablet DT', 'Mepfarma India Pvt Ltd', 'Logcef 100mg Tablet DT', 'How long should I take Logcef 100mg Tablet DT?', 'Logcef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(30620, 'Logcef 100mg Tablet DT', 'Mepfarma India Pvt Ltd', 'Logcef 100mg Tablet DT', 'What if I do not get better after using Logcef 100mg Tablet DT?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(30621, 'Logcef 100mg Tablet DT', 'Mepfarma India Pvt Ltd', 'Logcef 100mg Tablet DT', 'Can the use of Logcef 100mg Tablet DT cause diarrhea?', 'Yes, the use of Logcef 100mg Tablet DT can cause diarrhea. Logcef 100mg Tablet DT is an antibiotic which kills the harmful bacteria, but it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. If diarrhea persists, talk to your doctor about it.'),
(30622, 'Logcef 100mg Tablet DT', 'Mepfarma India Pvt Ltd', 'Logcef 100mg Tablet DT', 'Is Logcef 100mg Tablet DT effective?', 'Logcef 100mg Tablet DT is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Logcef 100mg Tablet DT too early, the symptoms may return or worsen.'),
(30623, 'Logcef 100mg Tablet DT', 'Mepfarma India Pvt Ltd', 'Logcef 100mg Tablet DT', 'What if I forget to take a dose of Logcef 100mg Tablet DT?', 'If you forget a dose of Logcef 100mg Tablet DT, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30624, 'Logcef 100mg Tablet DT', 'Mepfarma India Pvt Ltd', 'Logcef 100mg Tablet DT', 'Is Logcef 100mg Tablet DT safe for the kidneys?', 'Yes, Logcef 100mg Tablet DT is safe for the kidneys when given alone, but when given along with aminoglycosides (gentamicin, tobramycin) or other cephalosporins antibiotics, it may increase kidney damage. Therefore, it is advised to take this medicine only if prescribed by your doctor.'),
(30625, 'Logcef 100mg Tablet DT', 'Mepfarma India Pvt Ltd', 'Logcef 100mg Tablet DT', 'How long should I take Logcef 100mg Tablet DT?', 'Logcef 100mg Tablet DT is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(30626, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'What if I give too much of Logcef 50mg Tablet by mistake?', 'An extra dose of Logcef 50mg Tablet is unlikely to do harm. However, if you think you have given too much of Logcef 50mg Tablet to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(30627, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'Are there any possible serious side effects of Logcef 50mg Tablet?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(30628, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'Can other medicines be given at the same time as Logcef 50mg Tablet?', 'Logcef 50mg Tablet can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Logcef 50mg Tablet. Also, check with your child’s doctor before giving any medicine to your child.'),
(30629, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'Can I get my child vaccinated while on treatment with Logcef 50mg Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(30630, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'Which lab tests may my child undergo while taking Logcef 50mg Tablet on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(30631, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(30632, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(30633, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'Can Logcef 50mg Tablet impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Logcef 50mg Tablet may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Logcef 50mg Tablet, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(30634, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'Can Logcef 50mg Tablet lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Logcef 50mg Tablet can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(30635, 'Logcef 50mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef 50mg Tablet', 'How long should I take Logcef 50mg Tablet?', 'Logcef 50mg Tablet is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(30636, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'What if I give too much of Logcef Dry Syrup by mistake?', 'An extra dose of Logcef Dry Syrup is unlikely to do harm. However, if you think you have given too much of Logcef Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(30637, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'Are there any possible serious side effects of Logcef Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(30638, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'Can other medicines be given at the same time as Logcef Dry Syrup?', 'Logcef Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Logcef Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(30639, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'Can I get my child vaccinated while on treatment with Logcef Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(30640, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'Which lab tests may my child undergo while taking Logcef Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(30641, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(30642, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(30643, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'Can Logcef Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Logcef Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Logcef Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(30644, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'Can Logcef Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use,, and misuse of Logcef Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(30645, 'Logcef Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logcef Dry Syrup', 'How long should I take Logcef Dry Syrup?', 'Logcef Dry Syrup is usually prescribed for 7-14 days. You should take it for the full duration of your treatment as advised by your doctor.'),
(30646, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'Can I stop taking Logcef-O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Logcef-O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30647, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Logcef-O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30648, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'Can the use of Logcef-O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Logcef-O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30649, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'What if I don\'t get better after using Logcef-O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30650, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'Does the use of Logcef-O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Logcef-O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(30651, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(30652, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'Can I drive while I am taking Logcef-O 200mg/200mg Tablet?', 'No, taking Logcef-O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(30653, 'Logcef-O 200mg/200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logcef-O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Logcef-O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30654, 'Logem 30mg Capsule', 'Lebon Pharmaceuticals', 'Logem 30mg Capsule', 'What is Logem 30mg Capsule? What is it used for?', 'Logem 30mg Capsule belongs to a class of medicines known as proton pump inhibitors. Logem 30mg Capsule is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(30655, 'Logem 30mg Capsule', 'Lebon Pharmaceuticals', 'Logem 30mg Capsule', 'How is Logem 30mg Capsule given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Logem 30mg Capsule through the nasogastric (NG) tube. Open the Logem 30mg Capsule capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(30656, 'Logem 30mg Capsule', 'Lebon Pharmaceuticals', 'Logem 30mg Capsule', 'Should Logem 30mg Capsule be taken empty stomach or with food?', 'Usually, Logem 30mg Capsule is taken once a day, first thing in the morning, on an empty stomach. If you take Logem 30mg Capsule twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(30657, 'Logem 30mg Capsule', 'Lebon Pharmaceuticals', 'Logem 30mg Capsule', 'While taking Logem 30mg Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(30658, 'Logem 30mg Capsule', 'Lebon Pharmaceuticals', 'Logem 30mg Capsule', 'Is Logem 30mg Capsule used for children?', 'Yes, Logem 30mg Capsule is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Logem 30mg Capsule are established only in children between 1 to 17 years of age.'),
(30659, 'Logen 0.25mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.25mg Tablet MD', 'Is Logen 0.25mg Tablet MD a sleeping pill?', 'Logen 0.25mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(30660, 'Logen 0.25mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.25mg Tablet MD', 'Does Logen 0.25mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Logen 0.25mg Tablet MD?', 'Yes, Logen 0.25mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Logen 0.25mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(30661, 'Logen 0.25mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.25mg Tablet MD', 'For how long should I take Logen 0.25mg Tablet MD?', 'The duration of treatment with Logen 0.25mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(30662, 'Logen 0.25mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.25mg Tablet MD', 'Is it safe to take Logen 0.25mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Logen 0.25mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Logen 0.25mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(30663, 'Logen 0.25mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.25mg Tablet MD', 'Is Logen 0.25mg Tablet MD addictive?', 'People taking Logen 0.25mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Logen 0.25mg Tablet MD. Therefore, Logen 0.25mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(30664, 'Logen 0.25mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.25mg Tablet MD', 'Can I stop taking Logen 0.25mg Tablet MD if I start feeling better?', 'No, do not stop taking Logen 0.25mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(30665, 'Logen 0.25mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.25mg Tablet MD', 'Are there any foods we need to avoid while taking Logen 0.25mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Logen 0.25mg Tablet MD. This is because caffeine stimulates your brain and Logen 0.25mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Logen 0.25mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Logen 0.25mg Tablet MD.'),
(30666, 'Logen 0.5mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.5mg Tablet MD', 'Is Logen 0.5mg Tablet MD a sleeping pill?', 'Logen 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(30667, 'Logen 0.5mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.5mg Tablet MD', 'Does Logen 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Logen 0.5mg Tablet MD?', 'Yes, Logen 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Logen 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(30668, 'Logen 0.5mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.5mg Tablet MD', 'For how long should I take Logen 0.5mg Tablet MD?', 'The duration of treatment with Logen 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(30669, 'Logen 0.5mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.5mg Tablet MD', 'Is it safe to take Logen 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Logen 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Logen 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(30670, 'Logen 0.5mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.5mg Tablet MD', 'Is Logen 0.5mg Tablet MD addictive?', 'People taking Logen 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Logen 0.5mg Tablet MD. Therefore, Logen 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(30671, 'Logen 0.5mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.5mg Tablet MD', 'Can I stop taking Logen 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Logen 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(30672, 'Logen 0.5mg Tablet MD', 'Gentech Healthcare Pvt Ltd', 'Logen 0.5mg Tablet MD', 'Are there any foods we need to avoid while taking Logen 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Logen 0.5mg Tablet MD. This is because caffeine stimulates your brain and Logen 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Logen 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Logen 0.5mg Tablet MD.'),
(30673, 'Logen M 5mg/5mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Logen M 5mg/5mg Tablet', 'Can I stop taking Logen M 5mg/5mg Tablet if I feel well?', 'No, keep using Logen M 5mg/5mg Tablet as advised by your doctor, even if you feel well. Stopping Logen M 5mg/5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(30674, 'Logen M 5mg/5mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Logen M 5mg/5mg Tablet', 'What are the instructions for the storage and disposal of Logen M 5mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30675, 'Logen M 5mg/5mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Logen M 5mg/5mg Tablet', 'Can the use of Logen M 5mg/5mg Tablet cause headache?', 'Yes, the use of Logen M 5mg/5mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(30676, 'Logen M 5mg/5mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Logen M 5mg/5mg Tablet', 'What are the contraindications associated with the use of Logen M 5mg/5mg Tablet?', 'Logen M 5mg/5mg Tablet Succinate is considered to be harmful for patients who are allergic to any of its active or inactive ingredient. It should be avoided in patients with a history of asthma or lung disease. Inform your doctor about the your medical history and medicines to avoid any side effects.'),
(30677, 'Logen M 5mg/5mg Tablet', 'Gentech Healthcare Pvt Ltd', 'Logen M 5mg/5mg Tablet', 'Can I feel dizzy after taking Logen M 5mg/5mg Tablet?', 'Yes, the use of Logen M 5mg/5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(30678, 'Logflox 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox 200mg Tablet', 'Can the use of Logflox 200mg Tablet cause diarrhea?', 'Yes, the use of Logflox 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30679, 'Logflox 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox 200mg Tablet', 'Can I stop taking Logflox 200mg Tablet when I feel better?', 'No, do not stop taking Logflox 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(30680, 'Logflox 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox 200mg Tablet', 'Can the use of Logflox 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Logflox 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Logflox 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30681, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'What is Logflox-OZ 200mg/500mg Infusion?', 'Logflox-OZ 200mg/500mg Infusion is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(30682, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'Is it safe to use Logflox-OZ 200mg/500mg Infusion?', 'Logflox-OZ 200mg/500mg Infusion is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(30683, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'Are there any specific contraindications associated with the use of Logflox-OZ 200mg/500mg Infusion?', 'The use of Logflox-OZ 200mg/500mg Infusion is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(30684, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Logflox-OZ 200mg/500mg Infusion can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30685, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'What if I don\'t get better after using Logflox-OZ 200mg/500mg Infusion?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30686, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'Can I stop taking Logflox-OZ 200mg/500mg Infusion when I feel better?', 'No, do not stop taking Logflox-OZ 200mg/500mg Infusion and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30687, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'What if I miss my dose?', 'Take Logflox-OZ 200mg/500mg Infusion as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30688, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'Can I take alcohol while on Logflox-OZ 200mg/500mg Infusion?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Logflox-OZ 200mg/500mg Infusion. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(30689, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'What are the instructions for the storage and disposal of Logflox-OZ 200mg/500mg Infusion?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30690, 'Logflox-OZ 200mg/500mg Infusion', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Infusion', 'What is Logflox-OZ 200mg/500mg Infusion?', 'Logflox-OZ 200mg/500mg Infusion is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(30691, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'What is Logflox-OZ 200mg/500mg Tablet?', 'Logflox-OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(30692, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'Is it safe to use Logflox-OZ 200mg/500mg Tablet?', 'Logflox-OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(30693, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Logflox-OZ 200mg/500mg Tablet?', 'The use of Logflox-OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(30694, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Logflox-OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30695, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Logflox-OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30696, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'Can I stop taking Logflox-OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Logflox-OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30697, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Logflox-OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30698, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'Can I take alcohol while on Logflox-OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Logflox-OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(30699, 'Logflox-OZ 200mg/500mg Tablet', 'Mepfarma India Pvt Ltd', 'Logflox-OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Logflox-OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30700, 'Logic 1500mcg Injection', 'Zegchem', 'Logic 1500mcg Injection', 'What is Logic 1500mcg Injection?', 'Logic 1500mcg Injection is a form of vitamin B12. Vitamin B12 is an essential nutrient which is required by the body to make red blood cells and maintain a healthy nervous system. It is also important for releasing energy from food and using vitamin B11 (folic acid).'),
(30701, 'Logic 1500mcg Injection', 'Zegchem', 'Logic 1500mcg Injection', 'Why can’t I get sufficient vitamin B12 in my diet?', 'You can get vitamin B12 from sources like meat, fish, eggs and dairy products. While people who are vegetarian or vegan may not get Vitamin B12 as it is not found naturally in foods such as fruits, vegetables and grains. Therefore, deficiency of Vitamin B12 is usually noticed in vegetarians or vegans.'),
(30702, 'Logic 1500mcg Injection', 'Zegchem', 'Logic 1500mcg Injection', 'What happens if I have vitamin B12 deficiency?', 'Deficiency of vitamin B12 may cause tiredness, weakness, constipation, loss of appetite, weight loss and megaloblastic anemia (a condition when red blood cells become larger than normal). It may also lead to nerve problems such as numbness and tingling in the hands and feet. Other symptoms of vitamin B12 deficiency may include problems with balance, depression, confusion, dementia, poor memory and soreness of the mouth or tongue.'),
(30703, 'Logic 1500mcg Injection', 'Zegchem', 'Logic 1500mcg Injection', 'Is Logic 1500mcg Injection safe?', 'Logic 1500mcg Injection is generally well tolerated and considered safe. However, in some cases, rare side effects may be observed such as nausea, diarrhea, anorexia and rash. Discontinue taking this medicine immediately if a rash occurs.'),
(30704, 'Logic 1500mcg Injection', 'Zegchem', 'Logic 1500mcg Injection', 'How should Logic 1500mcg Injection be given?', 'Logic 1500mcg Injection can be injected directly into a vein (intravenously) or into a muscle (intramuscularly). The usual dose is 1 ampoule (0.5 mg of Logic 1500mcg Injection) and is given 3 times a week. After 2 months, 1 ampoule (0.5 mg of Logic 1500mcg Injection) is given every one to three months as a part of maintenance therapy.'),
(30705, 'Logic 1500mcg Injection', 'Zegchem', 'Logic 1500mcg Injection', 'What precautions need to be taken while administering Logic 1500mcg Injection?', 'Avoid taking the injections at the same site every time. If there is intense pain while injecting or if the blood flows back into the syringe, take out the needle and re-insert at a different site.'),
(30706, 'Logic H 50mg/12.5mg Tablet', 'Zoic Lifesciences', 'Logic H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30707, 'Logic H 50mg/12.5mg Tablet', 'Zoic Lifesciences', 'Logic H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Logic H 50mg/12.5mg Tablet?', 'Yes, the use of Logic H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(30708, 'Logic H 50mg/12.5mg Tablet', 'Zoic Lifesciences', 'Logic H 50mg/12.5mg Tablet', 'Can I use Logic H 50mg/12.5mg Tablet in pregnancy?', 'No, Logic H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Logic H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(30709, 'Logic H 50mg/12.5mg Tablet', 'Zoic Lifesciences', 'Logic H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Logic H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Logic H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(30710, 'Logic H 50mg/12.5mg Tablet', 'Zoic Lifesciences', 'Logic H 50mg/12.5mg Tablet', 'Can I stop taking Logic H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Logic H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Logic H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(30711, 'Logicon 1% Cream', 'Devoir Lifesciences Pvt Ltd', 'Logicon 1% Cream', 'Is Logicon 1% Cream safe in pregnancy?', 'Logicon 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Logicon 1% Cream.'),
(30712, 'Logicon 1% Cream', 'Devoir Lifesciences Pvt Ltd', 'Logicon 1% Cream', 'Is Logicon 1% Cream fungicidal or Fungistatic?', 'Logicon 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(30713, 'Logicon 1% Cream', 'Devoir Lifesciences Pvt Ltd', 'Logicon 1% Cream', 'How to use Logicon 1% Cream?', 'Use Logicon 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(30714, 'Logicon 1% Cream', 'Devoir Lifesciences Pvt Ltd', 'Logicon 1% Cream', 'How long does it take for Logicon 1% Cream to work?', 'For different ailments, Logicon 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(30715, 'Logicon 1% Cream', 'Devoir Lifesciences Pvt Ltd', 'Logicon 1% Cream', 'How should I store Logicon 1% Cream?', 'Keep Logicon 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(30716, 'Logicon 1% Cream', 'Devoir Lifesciences Pvt Ltd', 'Logicon 1% Cream', 'Is Logicon 1% Cream safe to use in children?', 'Yes, Logicon 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(30717, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'What is Logidec P 50mg/325mg Tablet?', 'Logidec P 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(30718, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Is it safe to use Logidec P 50mg/325mg Tablet?', 'Yes, Logidec P 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(30719, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Can I stop taking Logidec P 50mg/325mg Tablet when my pain is relieved?', 'Logidec P 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(30720, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Can the use of Logidec P 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Logidec P 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30721, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Can the use of Logidec P 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Logidec P 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(30722, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Can the use of Logidec P 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Logidec P 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(30723, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Logidec P 50mg/325mg Tablet?', 'The use of Logidec P 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(30724, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Can Logidec P 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Logidec P 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Logidec P 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30725, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Logidec P 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Logidec P 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(30726, 'Logidec P 50mg/325mg Tablet', 'Apikos Pharma', 'Logidec P 50mg/325mg Tablet', 'What is the recommended storage condition for Logidec P 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30727, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'How should Logidec-Forte Injection injection be administered?', 'Logidec-Forte Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(30728, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'What is the most important information I need to know about Logidec-Forte Injection?', 'It is important to know that Logidec-Forte Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Logidec-Forte Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(30729, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'Is Logidec-Forte Injection a good painkiller?', 'Logidec-Forte Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(30730, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'Can Logidec-Forte Injection hurt your kidneys?', 'Long-term use and high doses of Logidec-Forte Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(30731, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'Does Logidec-Forte Injection make you drowsy?', 'Logidec-Forte Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(30732, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'Can Logidec-Forte Injection be taken during pregnancy?', 'You should not take Logidec-Forte Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Logidec-Forte Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Logidec-Forte Injection during the first 6 months of pregnancy also.  In some cases, Logidec-Forte Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(30733, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'Does Logidec-Forte Injection get you high?', 'No, Logidec-Forte Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(30734, 'Logidec-Forte Injection', 'Apikos Pharma', 'Logidec-Forte Injection', 'Is Logidec-Forte Injection a narcotic?', 'No, Logidec-Forte Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(30735, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'What is Logidec-MR Tablet?', 'Logidec-MR Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(30736, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'Is it safe to use Logidec-MR Tablet?', 'Logidec-MR Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(30737, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'Can I stop taking Logidec-MR Tablet when my pain is relieved?', 'Logidec-MR Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(30738, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'Can the use of Logidec-MR Tablet cause nausea and vomiting?', 'Yes, the use of Logidec-MR Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30739, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'Can the use of Logidec-MR Tablet cause dizziness?', 'Yes, the use of Logidec-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30740, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'Can the use of Logidec-MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Logidec-MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30741, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Logidec-MR Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30742, 'Logidec-MR Tablet', 'Apikos Pharma', 'Logidec-MR Tablet', 'What are the recommended storage conditions for Logidec-MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30743, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'What is Logidec-S Tablet?', 'Logidec-S Tablet is a combination of two medicines: Diclofenac and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30744, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'Is it safe to use Logidec-S Tablet?', 'Yes, Logidec-S Tablet is safe for most of the patients. However, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(30745, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'Can I stop taking Logidec-S Tablet when my pain is relieved?', 'Logidec-S Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Logidec-S Tablet should be continued if  your physician has advised you to do so.'),
(30746, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'Can the use of Logidec-S Tablet cause nausea and vomiting?', 'Yes, the use of Logidec-S Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medicine. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to a doctor.'),
(30747, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'Can the use of Logidec-S Tablet cause dizziness?', 'Yes, the use of Logidec-S Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30748, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'Are there any specific contraindications associated with the use of Logidec-S Tablet?', 'The use of Logidec-S Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30749, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'Can I take Logidec-S Tablet with Vitamin B-complex?', 'Logidec-S Tablet can be taken with Vitamin B-complex preparations. While Logidec-S Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the symptoms.'),
(30750, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'Can I take Logidec-S Tablet for stomach pain?', 'No, Logidec-S Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30751, 'Logidec-S Tablet', 'Apikos Pharma', 'Logidec-S Tablet', 'What is the storage condition for the Logidec-S Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30752, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'What are the storage condition for Logidec-SP Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30753, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'What is Logidec-SP Tablet?', 'Logidec-SP Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(30754, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Is it safe to use Logidec-SP Tablet?', 'Yes, Logidec-SP Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(30755, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Can I stop taking Logidec-SP Tablet when my pain is relieved?', 'Logidec-SP Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Logidec-SP Tablet should be continued if you are advised by your physician to do so.'),
(30756, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Can the use of Logidec-SP Tablet cause nausea and vomiting?', 'Yes, the use of Logidec-SP Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30757, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Can the use of Logidec-SP Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(30758, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Are there any specific contraindications associated with the use of Logidec-SP Tablet?', 'The use of Logidec-SP Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30759, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Can I take Logidec-SP Tablet with Vitamin B-complex?', 'Logidec-SP Tablet can be taken with Vitamin B-complex preparations. While Logidec-SP Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30760, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Can I take Logidec-SP Tablet for stomach pain?', 'No, Logidec-SP Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30761, 'Logidec-SP Tablet', 'Apikos Pharma', 'Logidec-SP Tablet', 'Can the use of Logidec-SP Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Logidec-SP Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30762, 'Logidex Syrup', 'Insead Lifesciences Pvt Ltd', 'Logidex Syrup', 'Will Logidex Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms, that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30763, 'Logidex Syrup', 'Insead Lifesciences Pvt Ltd', 'Logidex Syrup', 'Can I breastfeed while taking Logidex Syrup?', 'No, it is not advisable to breastfeed while using Logidex Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(30764, 'Logidex Syrup', 'Insead Lifesciences Pvt Ltd', 'Logidex Syrup', 'Can the use of Logidex Syrup cause sleepiness or drowsiness?', 'Yes, Logidex Syrup Hydrobromide may make you feel drowsy or sleepy. Avoiding driving car, operating machinery, working at heights or participating in potentially dangerous activities until you know how the medicine affects you. Inform your doctor if you experience such episode while you are taking this medicine.'),
(30765, 'Logidex-Plus Syrup Sugar Free', 'Insead Lifesciences Pvt Ltd', 'Logidex-Plus Syrup Sugar Free', 'Can the use of Logidex-Plus Syrup Sugar Free cause sleepiness or drowsiness?', 'Yes, Logidex-Plus Syrup Sugar Free may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(30766, 'Logidex-Plus Syrup Sugar Free', 'Insead Lifesciences Pvt Ltd', 'Logidex-Plus Syrup Sugar Free', 'Will Logidex-Plus Syrup Sugar Free be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30767, 'Logidex-Plus Syrup Sugar Free', 'Insead Lifesciences Pvt Ltd', 'Logidex-Plus Syrup Sugar Free', 'Can I breastfeed while taking Logidex-Plus Syrup Sugar Free?', 'No, it is not advisable to breastfeed while using Logidex-Plus Syrup Sugar Free. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(30768, 'Logidex-Plus Syrup Sugar Free', 'Insead Lifesciences Pvt Ltd', 'Logidex-Plus Syrup Sugar Free', 'What are the instructions for storage and disposal of Logidex-Plus Syrup Sugar Free?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30769, 'Logifin 1% Cream', 'Canixa Life Sciences Pvt Ltd', 'Logifin 1% Cream', 'Q. Is Logifin 1% Cream safe in pregnancy?', 'Logifin 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Logifin 1% Cream.'),
(30770, 'Logifin 1% Cream', 'Canixa Life Sciences Pvt Ltd', 'Logifin 1% Cream', 'Q. Is Logifin 1% Cream fungicidal or Fungistatic?', 'Logifin 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(30771, 'Logifin 1% Cream', 'Canixa Life Sciences Pvt Ltd', 'Logifin 1% Cream', 'Q. How to use Logifin 1% Cream?', 'Use Logifin 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(30772, 'Logifin 1% Cream', 'Canixa Life Sciences Pvt Ltd', 'Logifin 1% Cream', 'Q. How long does it take for Logifin 1% Cream to work?', 'For different ailments, Logifin 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(30773, 'Logifin 1% Cream', 'Canixa Life Sciences Pvt Ltd', 'Logifin 1% Cream', 'Q. How should I store Logifin 1% Cream?', 'Keep Logifin 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(30774, 'Logifin 1% Cream', 'Canixa Life Sciences Pvt Ltd', 'Logifin 1% Cream', 'Q. Is Logifin 1% Cream safe to use in children?', 'Yes, Logifin 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(30775, 'Logifin CL 1% Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin CL 1% Lotion', 'Is Logifin CL 1% Lotion safe in pregnancy?', 'Logifin CL 1% Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Logifin CL 1% Lotion.'),
(30776, 'Logifin CL 1% Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin CL 1% Lotion', 'Is Logifin CL 1% Lotion fungicidal or Fungistatic?', 'Logifin CL 1% Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(30777, 'Logifin CL 1% Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin CL 1% Lotion', 'How to use Logifin CL 1% Lotion?', 'Use Logifin CL 1% Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(30778, 'Logifin CL 1% Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin CL 1% Lotion', 'How long does it take for Logifin CL 1% Lotion to work?', 'For different ailments, Logifin CL 1% Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(30779, 'Logifin CL 1% Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin CL 1% Lotion', 'How should I store Logifin CL 1% Lotion?', 'Keep Logifin CL 1% Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(30780, 'Logifin CL 1% Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin CL 1% Lotion', 'Is Logifin CL 1% Lotion safe to use in children?', 'Yes, Logifin CL 1% Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(30781, 'Logifin Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin Lotion', 'Is Logifin Lotion safe in pregnancy?', 'Logifin Lotion should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Logifin Lotion.'),
(30782, 'Logifin Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin Lotion', 'Is Logifin Lotion fungicidal or Fungistatic?', 'Logifin Lotion has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(30783, 'Logifin Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin Lotion', 'How to use Logifin Lotion?', 'Use Logifin Lotion exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(30784, 'Logifin Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin Lotion', 'How long does it take for Logifin Lotion to work?', 'For different ailments, Logifin Lotion works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(30785, 'Logifin Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin Lotion', 'How should I store Logifin Lotion?', 'Keep Logifin Lotion in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(30786, 'Logifin Lotion', 'Canixa Life Sciences Pvt Ltd', 'Logifin Lotion', 'Is Logifin Lotion safe to use in children?', 'Yes, Logifin Lotion is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(30787, 'Logiliv Syrup', 'Apikos Pharma', 'Logiliv Syrup', 'Can the use of Logiliv Syrup cause dryness in mouth?', 'Yes, the use of Logiliv Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(30788, 'Logiliv Syrup', 'Apikos Pharma', 'Logiliv Syrup', 'Can the use of Logiliv Syrup cause dizziness?', 'Yes, the use of Logiliv Syrup can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(30789, 'Logiliv Syrup', 'Apikos Pharma', 'Logiliv Syrup', '\\What is the recommended storage condition for Logiliv Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30790, 'Logimed 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed 500 Tablet', 'Is Logimed 500 Tablet safe?', 'Logimed 500 Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(30791, 'Logimed 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed 500 Tablet', 'What if I forget to take a dose of Logimed 500 Tablet?', 'If you forget a dose of Logimed 500 Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(30792, 'Logimed 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed 500 Tablet', 'Can the use of Logimed 500 Tablet cause diarrhea?', 'Yes, the use of Logimed 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30793, 'Logimed 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed 500 Tablet', 'Can I stop taking Logimed 500 Tablet when I feel better?', 'No, do not stop taking Logimed 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Logimed 500 Tablet too early, the symptoms may return or worsen. Continue taking Logimed 500 Tablet in the dose and duration advised by the doctor.'),
(30794, 'Logimed 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed 500 Tablet', 'Can the use of Logimed 500 Tablet increase the risk of muscle damage?', 'Yes, the use of Logimed 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Logimed 500 Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(30795, 'Logimed OZ 250mg/500mg Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed OZ 250mg/500mg Tablet', 'What if I don\'t get better after using Logimed OZ 250mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(30796, 'Logimed OZ 250mg/500mg Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed OZ 250mg/500mg Tablet', 'Can I stop taking Logimed OZ 250mg/500mg Tablet when I feel better?', 'No, do not stop taking Logimed OZ 250mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(30797, 'Logimed OZ 250mg/500mg Tablet', 'Logimed Pharma Pvt Ltd', 'Logimed OZ 250mg/500mg Tablet', 'What if I miss my dose?', 'Take Logimed OZ 250mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(30798, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'What is Loginac T 100mg/4mg Tablet?', 'Loginac T 100mg/4mg Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside. This medication helps in relieving muscle pain. It relaxes the muscles by acting on the central nervous system and lowering chemical substance in the body that cause pain and inflammation.'),
(30799, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'Is it safe to use Loginac T 100mg/4mg Tablet?', 'Yes, Loginac T 100mg/4mg Tablet is safe for most of the patients. However, in some patients it may cause some common unwanted side effects like nausea, vomiting, stomach pain, heartburn, diarrhoea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem due to the medication.'),
(30800, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'Can the Loginac T 100mg/4mg Tablet be stopped when my pain is relieved?', 'Loginac T 100mg/4mg Tablet is usually used for short term and can be discontinued when the pain is relieved. However, Loginac T 100mg/4mg Tablet should be continued if your doctor has advised you to do so.'),
(30801, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'Can the use of Loginac T 100mg/4mg Tablet cause dizziness?', 'Yes, the use of Loginac T 100mg/4mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30802, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'Are there any specific contraindications associated with the use of Loginac T 100mg/4mg Tablet?', 'The use of Loginac T 100mg/4mg Tablet is considered to be harmful for patients with known allergy to painkillers or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcer or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with history of heart failure, high blood pressure, and liver or kidney disease.'),
(30803, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'Can Loginac T 100mg/4mg Tablet be taken with Vitamin B-complex?', 'Yes, Loginac T 100mg/4mg Tablet can be taken with Vitamin B-complex preparations. While Loginac T 100mg/4mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30804, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'Can the use of Loginac T 100mg/4mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Loginac T 100mg/4mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lower the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(30805, 'Loginac T 100mg/4mg Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T 100mg/4mg Tablet', 'Will Loginac T 100mg/4mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(30806, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'What is Loginac T Tablet?', 'Loginac T Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30807, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Is it safe to use Loginac T Tablet?', 'Loginac T Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(30808, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Can I stop taking Loginac T Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Loginac T Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(30809, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Can the use of Loginac T Tablet cause nausea and vomiting?', 'Yes, the use of Loginac T Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(30810, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Can the use of Loginac T Tablet cause dizziness?', 'Yes, the use of Loginac T Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30811, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Are there any specific contraindications associated with the use of Loginac T Tablet?', 'The use of Loginac T Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30812, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Can Loginac T Tablet be taken with vitamin B-complex?', 'Yes, Loginac T Tablet can be taken with vitamin B-complex preparations. While Loginac T Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(30813, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Is Loginac T Tablet helpful in relieving stomach pain?', 'No, Loginac T Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(30814, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Can the use of Loginac T Tablet cause damage to kidneys?', 'Yes, the long-term use of Loginac T Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(30815, 'Loginac T Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac T Tablet', 'Is it safe to take a higher dose of Loginac T Tablet than recommended?', 'No, taking higher than the recommended dose of Loginac T Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(30816, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'What is Loginac-MR Tablet?', 'Loginac-MR Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Chlorzoxazone. This medicine helps in relieving muscle pain by relaxing the affected muscles. It relieves pain caused due to muscle spasm, cramp or injury. It also lowers certain chemical substances in the body that cause pain.'),
(30817, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'What can I do along with Loginac-MR Tablet to reduce muscle pain?', 'If you are suffering from muscle pain due to muscle injury or overuse, you should take rest. Taking rest will help you avoid any further injury and help you recover efficiently. Make sure that you take plenty of sleep and try to reduce stress. Applying ice pack to the affected area may help in relieving pain and inflammation. If your muscle pain is due to some other disease, follow the advice of your doctor.'),
(30818, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'Can I get addicted to Loginac-MR Tablet?', 'No, there are no reports of any patient getting addicted to Loginac-MR Tablet.'),
(30819, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'Can I stop taking Loginac-MR Tablet when my pain is relieved?', 'Loginac-MR Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Loginac-MR Tablet should be continued if you are advised by your doctor to do so.'),
(30820, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'Can the use of Loginac-MR Tablet cause dizziness?', 'Yes, the use of Loginac-MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(30821, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'Can the use of Loginac-MR Tablet cause damage to liver?', 'Loginac-MR Tablet contains Paracetamol and Chlorzoxazone, both these medicines are known to cause harm to the liver especially when taken in doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal live enzymes.'),
(30822, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'How long will Loginac-MR Tablet take to act?', 'It may take about an hour to notice the initial benefits of pain relief after taking Loginac-MR Tablet.'),
(30823, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'What if I forget to take Loginac-MR Tablet?', 'If you forget to take the scheduled dose of Loginac-MR Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effect due to overdosage. If you are not sure what to do, consult your doctor about how to manage a situation like this.'),
(30824, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'Will Loginac-MR Tablet be more effective if taken in higher than recommended doses?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30825, 'Loginac-MR Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-MR Tablet', 'Are there any specific contraindications associated with the use of Loginac-MR Tablet?', 'The use of Loginac-MR Tablet is considered to be harmful in patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30826, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'What is Loginac-SP Tablet?', 'It is a combination of three medicines: Aceclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(30827, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Is it safe to take Loginac-SP Tablet?', 'It is safe to take this medicine for most of the patients. However, in some patients, it may cause unwanted side effects like nausea, vomiting, stomach pain, heartburn, and diarrhea. If you experience any persistent problem due to the medication, inform your doctor as soon as possible.'),
(30828, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Can I stop taking Loginac-SP Tablet when my pain is relieved?', 'This medicine is usually used for the short term and can be discontinued when your pain is relieved. However, continued taking it if your doctor has advised you to do so.'),
(30829, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Can Loginac-SP Tablet cause nausea and vomiting?', 'Yes, the use of this medicine can cause nausea and vomiting. In case you experience nausea while taking this medicine, take it with milk, food, or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicines without speaking to your doctor.'),
(30830, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Can Loginac-SP Tablet cause dizziness?', 'Yes, the use of this medicine can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(30831, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Are there any specific contraindications associated with taking Loginac-SP Tablet?', 'The use of this medicine is considered harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). Its use should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcers/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(30832, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Can I take Loginac-SP Tablet with vitamin B-complex?', 'Yes, this medicine can be taken with vitamin B-complex preparations. While it helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(30833, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Can the use of Loginac-SP Tablet cause damage to kidneys?', 'Yes, long-term use of this medicine can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. The use of painkillers lowers the levels of prostaglandins in the body, which leads to kidney damage on long-term use. The use of painkillers is not recommended in patients with underlying kidney disease.'),
(30834, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'Can I take a higher dose of Loginac-SP Tablet than recommended?', 'No, taking a higher than recommended dose can lead to increased chances of side effects. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(30835, 'Loginac-SP Tablet', 'Logimed Pharma Pvt Ltd', 'Loginac-SP Tablet', 'What are the instructions for storage and disposal of Loginac-SP Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30836, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'What is Logipan 40 Injection used for?', 'Logipan 40 Injection is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Logipan 40 Injection prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(30837, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'Can I take antacids along with Logipan 40 Injection?', 'Yes, you can take antacids along with Logipan 40 Injection. Take it 2 hours before or after you take Logipan 40 Injection.'),
(30838, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'How long does it take for Logipan 40 Injection to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Logipan 40 Injection to work properly so you may still have some symptoms during this time.'),
(30839, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'Does Logipan 40 Injection cause weight gain?', 'Although rare but long-term treatment with Logipan 40 Injection may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30840, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'Can I take alcohol with Logipan 40 Injection?', 'No, alcohol intake is not advised with Logipan 40 Injection. Alcohol itself does not affect the working of Logipan 40 Injection, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(30841, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'What dietary changes should I make to get relief from acidity?', 'Logipan 40 Injection is best taken 1 hour before a meal. You should avoid spicy and fatty foods while taking this medicine. You must refrain from caffeinated drinks such as tea, coffee and cola. Alcohol intake should also be avoided as it may worsen your symptoms.'),
(30842, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'Can I take Logipan 40 Injection for a long term?', 'Logipan 40 Injection is usually prescribed for short term use only. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Logipan 40 Injection may be prescribed for a long term duration as well. Long term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Logipan 40 Injection as advised by your doctor and under their supervision.'),
(30843, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'Are painkillers safe to take along with Logipan 40 Injection?', 'Yes, it is safe to take painkillers along with Logipan 40 Injection. Logipan 40 Injection prevents acidity and stomach ulcers associated with the intake of painkillers. Logipan 40 Injection is taken 1 hour before a meal. On the other hand, painkillers are usually taken with, or after a meal to avoid stomach upset.'),
(30844, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'Is a single dose of Logipan 40 Injection sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Logipan 40 Injection you may get relief with the symptoms. Logipan 40 Injection is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Logipan 40 Injection may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Logipan 40 Injection regularly for 2 weeks as prescribed.'),
(30845, 'Logipan 40 Injection', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Injection', 'What are the long term side effects of Logipan 40 Injection?', 'If Logipan 40 Injection is used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas) or nerve problems such as numbness, tingling and problem in walking.'),
(30846, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. What is Logipan 40 Tablet used for?', 'Logipan 40 Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Logipan 40 Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(30847, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. How long does it take for Logipan 40 Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Logipan 40 Tablet to work properly so you may still have some symptoms during this time.'),
(30848, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. Is a single dose of Logipan 40 Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Logipan 40 Tablet you may get relief with the symptoms. Logipan 40 Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Logipan 40 Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Logipan 40 Tablet regularly for 2 weeks as prescribed.'),
(30849, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. Is Logipan 40 Tablet safe?', 'Yes, Logipan 40 Tablet is relatively safe. Most of the people who take Logipan 40 Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(30850, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. Can I take Logipan 40 Tablet for a long term?', 'Logipan 40 Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Logipan 40 Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Logipan 40 Tablet as advised by your doctor and under their supervision.'),
(30851, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. What are the long term side effects of Logipan 40 Tablet?', 'If Logipan 40 Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(30852, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. What is the best time to take Logipan 40 Tablet?', 'Usually, Logipan 40 Tablet is taken once a day, first thing in the morning. If you take Logipan 40 Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(30853, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. Can I stop taking Logipan 40 Tablet if I feel better?', 'If you have been taking Logipan 40 Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Logipan 40 Tablet.'),
(30854, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. Does Logipan 40 Tablet cause weight gain?', 'Although rare but long-term treatment with Logipan 40 Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(30855, 'Logipan 40 Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan 40 Tablet', 'Q. Can I take alcohol with Logipan 40 Tablet?', 'No, alcohol intake is not advised with Logipan 40 Tablet. Alcohol itself does not affect the working of Logipan 40 Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(30856, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'What is Logipan-D Tablet?', 'Logipan-D Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(30857, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'Is it safe to use Logipan-D Tablet?', 'Logipan-D Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(30858, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'Are there any specific contraindications associated with the use of Logipan-D Tablet?', 'The use of Logipan-D Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(30859, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'Can the use of Logipan-D Tablet cause dry mouth?', 'Yes, the use of Logipan-D Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(30860, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'Can the use of Logipan-D Tablet cause diarrhea?', 'Yes, the use of Logipan-D Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(30861, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'What are the instructions for storage and disposal of Logipan-D Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30862, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'What is Logipan-D Tablet price?', 'You can get Logipan-D Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(30863, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'While taking Logipan-D Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(30864, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'Can I take alcohol while taking Logipan-D Tablet?', 'No, alcohol intake is not advised with Logipan-D Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(30865, 'Logipan-D Tablet', 'Logimed Pharma Pvt Ltd', 'Logipan-D Tablet', 'Can I stop taking Logipan-D Tablet if I feel better?', 'If you have been taking Logipan-D Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(30866, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'What is Logipan-DSR Capsule?', 'Logipan-DSR Capsule is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(30867, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'Is it safe to use Logipan-DSR Capsule?', 'Logipan-DSR Capsule is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(30868, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'Are there any specific contraindications associated with the use of Logipan-DSR Capsule?', 'The use of Logipan-DSR Capsule is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(30869, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'Can the use of Logipan-DSR Capsule cause dry mouth?', 'Yes, the use of Logipan-DSR Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(30870, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'Can the use of Logipan-DSR Capsule cause diarrhea?', 'Yes, the use of Logipan-DSR Capsule can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(30871, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'What are the instructions for storage and disposal of Logipan-DSR Capsule?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30872, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'What is Logipan-DSR Capsule price?', 'You can get Logipan-DSR Capsule at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(30873, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'While taking Logipan-DSR Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(30874, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'Can I take alcohol while taking Logipan-DSR Capsule?', 'No, alcohol intake is not advised with Logipan-DSR Capsule. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(30875, 'Logipan-DSR Capsule', 'Logimed Pharma Pvt Ltd', 'Logipan-DSR Capsule', 'Can I stop taking Logipan-DSR Capsule if I feel better?', 'If you have been taking Logipan-DSR Capsule for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(30876, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'Can the use of Logirex 5 mg/2.5 mg Tablet cause physical dependence?', 'Yes, Logirex 5 mg/2.5 mg Tablet may cause physical dependence as it contains Chlordiazepoxide as one of the ingredients. Physical dependence is defined as the occurrence of a withdrawal reaction following sudden stoppage of the drug or a decrease in dose. Consult your doctor before taking this medicine or if you need to make any change in the dose.'),
(30877, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'Are there any specific contraindications associated with the use of Logirex 5 mg/2.5 mg Tablet?', 'The use of Logirex 5 mg/2.5 mg Tablet is not recommended to patients with known allergy to any of the components or excipients of Logirex 5 mg/2.5 mg Tablet. Its use is also not advisable in patients of glaucoma, benign prostate enlargement and bladder neck obstruction.'),
(30878, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'What precautions do I need to take while using Logirex 5 mg/2.5 mg Tablet?', 'Logirex 5 mg/2.5 mg Tablet should not be taken along with opioids-like substances as it contains chlordiazepoxide. Use of opioids along with chlordiazepoxide may cause excessive sedation (state of calm or sleep), respiratory depression and eventually coma or death. Inform your doctor about all the medicines that you are taking if you are advised to take Logirex 5 mg/2.5 mg Tablet.'),
(30879, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'What are the symptoms of an overdose of Logirex 5 mg/2.5 mg Tablet?', 'Both Chlordiazepoxide and Clidinium show different symptoms of overdose. Chlordiazepoxide can cause sleepiness, reflexes, confusion and coma. Clidinium can cause excessive dryness of mouth, blurred vision, urinary hesitancy and constipation. Inform the doctor in case you take a higher dose and any of these symptoms appear.'),
(30880, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'Can the use of Logirex 5 mg/2.5 mg Tablet cause sleepiness or drowsiness?', 'Yes, Logirex 5 mg/2.5 mg Tablet may make you feel drowsy or sleepy. Do not drive, operate any machines, work at heights, or participate in potentially dangerous activities at the start of your treatment. Inform your doctor if you experience such episodes while you are taking this medicine.'),
(30881, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'Can the use of Logirex 5 mg/2.5 mg Tablet cause constipation?', 'Yes, the use of Logirex 5 mg/2.5 mg Tablet can cause constipation. Eat high-fiber foods like vegetables, fruits and cereals, and drink plenty of water. Exercise regularly by engaging in activities like swimming, jogging or going for a walk. Consult a doctor if constipation persists for a long duration.'),
(30882, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'Can I drink alcohol while taking Logirex 5 mg/2.5 mg Tablet?', 'No, avoid drinking alcohol while you are taking Logirex 5 mg/2.5 mg Tablet. Drinking alcohol can increase the risk of side effects like drowsiness or sleepiness.'),
(30883, 'Logirex 5 mg/2.5 mg Tablet', 'Symbiosis Lab', 'Logirex 5 mg/2.5 mg Tablet', 'What are the instructions for storage and disposal of Logirex 5 mg/2.5 mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30884, 'Logisal Lotion', 'Medcure Pharma', 'Logisal Lotion', 'Q. How to use Logisal Lotion?', 'Follow the directions given by the doctor or provided on the medicine. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Logisal Lotion is usually applied two or three times a day to the affected areas of skin. Wash your hands after using Logisal Lotion, unless it is used for treating skin infection on the hands.'),
(30885, 'Logisal Lotion', 'Medcure Pharma', 'Logisal Lotion', 'Q. Can I stop using Logisal Lotion when my symptoms are relieved?', 'No, do not stop using Logisal Lotion and complete the full course of treatment, even if you feel better. Your symptoms may improve before the disease is completely treated.'),
(30886, 'Logisal Lotion', 'Medcure Pharma', 'Logisal Lotion', 'Q. What are the precautions that need to be taken while using Logisal Lotion?', 'Logisal Lotion should not be used on the face. Do not use the medication for longer than the advised periods of time. Do not apply a bandage or dressing to the area being treated, as this will increase absorption of the preparation and increase the risk of side effects. This medicine should only be used by the patient and never give it to other people, even if their condition appears to be the same.'),
(30887, 'Logisal Lotion', 'Medcure Pharma', 'Logisal Lotion', 'Q. Will Logisal Lotion be more effective if taken more than prescribed?', 'No, Logisal Lotion will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(30888, 'Logisal Lotion', 'Medcure Pharma', 'Logisal Lotion', 'Q. What are the instructions for storage and disposal of Logisal Lotion?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30889, 'Logisil Capsule', 'Canixa Life Sciences Pvt Ltd', 'Logisil Capsule', 'Can Logisil Capsule be used in leg vein ulcers and swelling?', 'Yes, it can be used in the treatment of chronic conditions in which the leg vein becomes diseased or abnormal. Such conditions may include varicose veins and spider veins. These conditions can lead to ulcers in the lower leg along with leg swelling and pain. Contact your doctor if you have such a condition and get a consultation before you start taking this medication.'),
(30890, 'Logisil Capsule', 'Canixa Life Sciences Pvt Ltd', 'Logisil Capsule', 'Is Logisil Capsule effective in diabetic retinopathy?', 'Yes, there is evidence that Logisil Capsule is effective in cases of diabetic retinopathy. Logisil Capsule acts as a potent antioxidant and prevents the action of highly damaging free radicals. It has also been seen that it improves the damage and overgrowth of layers of small blood vessels as seen in diabetic retinopathy.'),
(30891, 'Logisil Capsule', 'Canixa Life Sciences Pvt Ltd', 'Logisil Capsule', 'Can Logisil Capsule completely heal leg ulcers?', 'Logisil Capsule is useful in treating leg ulcers, but the healing depends upon the severity of the disease and the response of the patient. It is not given alone and is prescribed along with other therapies to make it more effective. Contact your doctor before you start using this medication as you might need other medications based on the severity and condition of the ulcer.'),
(30892, 'Logisil Capsule', 'Canixa Life Sciences Pvt Ltd', 'Logisil Capsule', 'Does Logisil Capsule benefit in piles or hemorrhoids?', 'Yes, it is used in the treatment of piles. It effectively relieves the acute symptoms of hemorrhoidal disease in people who take a proper diet and have normal bowel habits. Consult your doctor before starting this medication.'),
(30893, 'Logisil-H Cream', 'Canixa Life Sciences Pvt Ltd', 'Logisil-H Cream', 'What are piles?', 'Piles, also known as haemorrhoids, are simply swollen blood vessels in your rectal area or anus. These swollen blood vessels can cause severe pain or an itchy sensation. This sensation can be very stressful and irritating. Logisil-H Cream is an effective treatment for piles.'),
(30894, 'Logisil-H Cream', 'Canixa Life Sciences Pvt Ltd', 'Logisil-H Cream', 'Can I stop taking Logisil-H Cream when my piles symptoms are relieved?', 'No, do not stop taking Logisil-H Cream and complete the full course of treatment. Your symptoms may improve before the piles are completely cured.'),
(30895, 'Logisil-H Cream', 'Canixa Life Sciences Pvt Ltd', 'Logisil-H Cream', 'Will Logisil-H Cream be more effective if taken more than prescribed?', 'No, a higher than the recommended dosage of Logisil-H Cream will not be more effective. Moreover, it can result in too much of medicine being absorbed into the body and cause unwanted side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(30896, 'Logisil-H Cream', 'Canixa Life Sciences Pvt Ltd', 'Logisil-H Cream', 'Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30897, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'What is Logistic CV 500mg/125mg Tablet?', 'Logistic CV 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(30898, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Is it safe to use Logistic CV 500mg/125mg Tablet?', 'Logistic CV 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(30899, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Logistic CV 500mg/125mg Tablet?', 'The use of Logistic CV 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(30900, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Can the use of Logistic CV 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Logistic CV 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Logistic CV 500mg/125mg Tablet.'),
(30901, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Logistic CV 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Logistic CV 500mg/125mg Tablet can increase the risks of side effects. Logistic CV 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(30902, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Logistic CV 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30903, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Can I stop taking Logistic CV 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Logistic CV 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(30904, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Can Logistic CV 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Logistic CV 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(30905, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Can the use of Logistic CV 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Logistic CV 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(30906, 'Logistic CV 500mg/125mg Tablet', 'Mcastro Pharma', 'Logistic CV 500mg/125mg Tablet', 'Can I take Logistic CV 500mg/125mg Tablet to treat cold and flu?', 'No, Logistic CV 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(30907, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Can other medicines be given at the same time as Logistic CV-DS Oral Suspension?', 'Logistic CV-DS Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Logistic CV-DS Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(30908, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Can I get my child vaccinated while on treatment with Logistic CV-DS Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(30909, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Which lab tests may my child undergo while taking Logistic CV-DS Oral Suspension on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(30910, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Can I give a higher than the recommended dose of Logistic CV-DS Oral Suspension to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(30911, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Can I stop giving Logistic CV-DS Oral Suspension to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(30912, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Can the use of Logistic CV-DS Oral Suspension cause diarrhea?', 'Yes, Logistic CV-DS Oral Suspension may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(30913, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(30914, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(30915, 'Logistic CV-DS Oral Suspension', 'Mcastro Pharma', 'Logistic CV-DS Oral Suspension', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(30916, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Can other medicines be given at the same time as Logistic CV-Kid Oral Suspension?', 'Logistic CV-Kid Oral Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Logistic CV-Kid Oral Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(30917, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Can I get my child vaccinated while on treatment with Logistic CV-Kid Oral Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(30918, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Which lab tests may my child undergo while taking Logistic CV-Kid Oral Suspension on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(30919, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Can I give a higher than the recommended dose of Logistic CV-Kid Oral Suspension to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(30920, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Can I stop giving Logistic CV-Kid Oral Suspension to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(30921, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Can the use of Logistic CV-Kid Oral Suspension cause diarrhea?', 'Yes, Logistic CV-Kid Oral Suspension may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(30922, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(30923, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(30924, 'Logistic CV-Kid Oral Suspension', 'Mcastro Pharma', 'Logistic CV-Kid Oral Suspension', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(30925, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'Can Logit 15mg Tablet cause weight gain?', 'Logit 15mg Tablet commonly causes weight gain which may be dose-related. The reason for this weight gain could be fat accumulation. However, in heart failure patients it could be due to water retention in the body. Therefore, it is important to monitor weight in heart failure cases.'),
(30926, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'Can Logit 15mg Tablet cause heart failure?', 'Logit 15mg Tablet can cause fluid retention which may aggravate or speed up heart failure. The doctor usually starts with the lowest available dose and increases the dose gradually while treating patients who have at least one risk factor for heart failure (previous heart attack, coronary artery disease, elderly). Heart failure is more common when Logit 15mg Tablet is used with insulin.'),
(30927, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'Can you take Logit 15mg Tablet and metformin together?', 'Yes, Logit 15mg Tablet can be used with metformin where sufficient blood sugar management was not possible with metformin alone. This combination of medicines can be used in adult patients with type 2 diabetes mellitus and overweight patients with poor blood sugar control.'),
(30928, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'What time of day should you take Logit 15mg Tablet?', 'It is usually prescribed once daily and can be taken at any time of the day but preferably at the same time each day. It can be taken with or without food. You should take Logit 15mg Tablet exactly as prescribed by your doctor.'),
(30929, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'How long do I need to take Logit 15mg Tablet? Can I stop the medicine for some time?', 'Continue taking Logit 15mg Tablet as long as your doctor recommends taking it. Treatment for diabetes mellitus is long-term so you may have to take it lifelong. However, if you have to stop it then consult with your doctor who will suggest an alternative. Do not stop taking it without consulting your doctor as it may cause blood sugar levels to rise, which could be harmful to you.'),
(30930, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'Does Logit 15mg Tablet affect liver?', 'Yes, Logit 15mg Tablet may cause an increase in liver enzymes, and treatment with Logit 15mg Tablet should be stopped if liver enzymes increase. Hence, levels of liver enzymes should be periodically checked while on treatment with this medicine. Logit 15mg Tablet should not be prescribed to patients with liver disease.'),
(30931, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'What kind of medicine is Logit 15mg Tablet? Is it like metformin?', 'Logit 15mg Tablet belongs to the thiazolidinediones class of anti-diabetic medicines. It helps control blood sugar levels by improving how your body uses a hormone called insulin. This is done by helping your cells become more sensitive to the insulin your body makes.'),
(30932, 'Logit 15mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Logit 15mg Tablet', 'Can Logit 15mg Tablet cause bladder cancer?', 'Logit 15mg Tablet may increase the risk of bladder cancer, though it is very rare. Immediately consult your doctor if you experience blood in your urine, pain when urinating or a sudden need to urinate, during treatment with this medicine. Logit 15mg Tablet should not be used in patients with a prior history of bladder cancer or having bladder cancer.'),
(30933, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'Should Logitel 40mg Tablet be taken in the morning or at night?', 'Logitel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(30934, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'How long does it take for Logitel 40mg Tablet to work?', 'You may see an improvement within a few days. But, the maximum benefit can be seen within 4-8 weeks of starting treatment.'),
(30935, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'My blood pressure is now controlled. Can I stop taking Logitel 40mg Tablet now?', 'No, do not stop taking Logitel 40mg Tablet without consulting your doctor even if your blood pressure is controlled. Stopping it suddenly may increase your blood pressure which could be detrimental for you. Logitel 40mg Tablet does not cure high blood pressure but controls it. So, you may have to take the medicine lifelong. Talk to your doctor if you have any concerns.'),
(30936, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'If I have some kidney problem, can I take Logitel 40mg Tablet? Can it further deteriorate my kidney function?', 'You can take Logitel 40mg Tablet if it has been advised by your doctor. Your doctor may ask you to get regular tests done (potassium and creatinine levels) in order to monitor your kidney function. Logitel 40mg Tablet may cause worsening of kidney function, therefore you should contact your doctor in case you notice swelling in your feet, ankles, or hands or unexplained weight gain.'),
(30937, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'I am overweight and the doctor has prescribed me Logitel 40mg Tablet for blood pressure control. I am bothered that Logitel 40mg Tablet can increase my weight. Is it true?', 'No, do not worry since Logitel 40mg Tablet is not known to cause weight gain. In fact in animal studies Logitel 40mg Tablet has been found to decrease fat tissue.'),
(30938, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'Does Logitel 40mg Tablet affect blood glucose levels in diabetics?', 'Logitel 40mg Tablet may lower blood glucose levels in patients with diabetes. Therefore, it is essential to keep a regular track of your blood glucose levels. Talk to your doctor if you are a diabetic because the dose of insulin or antidiabetic medicines may need adjustment.'),
(30939, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'Can the use of Logitel 40mg Tablet cause hyperkalemia (increased potassium level in blood)?', 'Yes, Logitel 40mg Tablet can cause hyperkalemia (increased potassium level in blood). A regular monitoring of blood potassium levels may be advised by your doctor while taking this medicine.'),
(30940, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'Does Logitel 40mg Tablet work by causing excessive urination?', 'No, Logitel 40mg Tablet does not cause excessive urination and does not belong to the diuretic class of medicines. Logitel 40mg Tablet works by relaxing the blood vessels by blocking the effect of a substance known as angiotensin II. This substance is responsible for increasing the blood pressure by narrowing down the blood vessels.'),
(30941, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'Do I need to follow any precautions if I take ibuprofen and Logitel 40mg Tablet together?', 'If you are taking ibuprofen and Logitel 40mg Tablet together, you should continuously keep a check on your blood pressure and kidney function. Logitel 40mg Tablet may enhance the side effects of ibuprofen which may further cause water retention, especially in patients taking Logitel 40mg Tablet for heart failure. Ibuprofen may interfere with the working of Logitel 40mg Tablet and decrease its efficiency at lowering blood pressure.'),
(30942, 'Logitel 40mg Tablet', 'Synomed Healthcare', 'Logitel 40mg Tablet', 'Should Logitel 40mg Tablet be taken in the morning or at night?', 'Logitel 40mg Tablet is generally recommended to be taken once daily, either in the morning or in the evening. Consider taking it at the same time each day as it will help you to remember taking it.'),
(30943, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'What should I avoid while taking Logitel AM 40mg/5mg Tablet?', 'You should avoid potassium supplements or salt substitutes, unless advised by your doctor. Also, avoid alcohol consumption as doing so can further lower your blood pressure and may cause some side effects. In addition to that, avoid getting dehydrated, drink enough fluids during exercise and in hot weather. The medicine may make you dizzy so avoid driving, using machinery or doing anything that needs concentration unless you know how this medicine affects you. If you feel dizzy, lie down so you do not faint. Then sit for a few moments before standing to prevent feeling dizzy again.'),
(30944, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'What happens if I take too much of Logitel AM 40mg/5mg Tablet?', 'If you accidentally take too much of Logitel AM 40mg/5mg Tablet, you may experience symptoms such as low blood pressure, dizziness, lightheadedness, weakness, vomiting and rapid heartbeat. However, in some cases slow heartbeat, reduced kidney function including kidney failure (e.g., reduced urine output) have also been reported. If you experience any of such symptoms contact your doctor immediately and seek medical help.'),
(30945, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'Can I come off Logitel AM 40mg/5mg Tablet when my blood pressure is under control or normal?', 'Even if your blood pressure is successfully lowered by this medicine, it is advised to continue your medication. If you stop taking Logitel AM 40mg/5mg Tablet, your blood pressure could rise back up again. Blood pressure lowering medicines only help to control your condition but do not cure it. You will probably need to take them for the rest of your life. Remember, by keeping your blood pressure controlled you are reducing your risk of having a heart attack or stroke.'),
(30946, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'What happens if I forget to take Logitel AM 40mg/5mg Tablet?', 'If you forget to take a dose, take it as soon as you remember. However, if it is close to the time of your next dose, skip the missed one and take the next scheduled dose. Do not take a double dose to make up for the one you missed. If you often forget doses, it may help to set an alarm to remind you. If not sure then you can consult your doctor for other ways to help you remember.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(30947, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'What will happen if I stop taking Logitel AM 40mg/5mg Tablet?', 'You should not stop taking Logitel AM 40mg/5mg Tablet without talking to your doctor first. If you do stop taking it, your blood pressure may rise and you may put yourself at greater risk of having a heart attack or a stroke. If you experience side effects, such as dizziness, nausea, diarrhea, etc., talk to your doctor.'),
(30948, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'Is it safe to take Logitel AM 40mg/5mg Tablet for a long time?', 'Logitel AM 40mg/5mg Tablet is generally safe to take for a long time. Remember to follow your doctor\'s advice/instructions.'),
(30949, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'How long will I be taking Logitel AM 40mg/5mg Tablet for?', 'You may have to take Logitel AM 40mg/5mg Tablet for a long-term or even lifelong. The medicine only keeps your blood pressure under control for as long as you are taking it. Therefore, it is advised to continue your medication and follow your doctor\'s advice.'),
(30950, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'What if Logitel AM 40mg/5mg Tablet doesn’t make me feel any better?', 'High blood pressure does not usually have any symptoms, so you may not feel ill if there is any change in the blood pressure. Therefore, this medicine may not make you feel “better”. This does not mean that you can stop the medicine as they are working in the background to reduce your risk of serious illness.'),
(30951, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'Can Logitel AM 40mg/5mg Tablet affect my fertility or sex life?', 'Logitel AM 40mg/5mg Tablet may very rarely lead to erectile dysfunction (inability to gain or maintain an erection). Consult your doctor if you are worried or notice some changes. However, untreated hypertension (high blood pressure) itself can lead to erectile dysfunction, therefore it is important that you take your medicine regularly and keep track of your blood pressure.'),
(30952, 'Logitel AM 40mg/5mg Tablet', 'Synergy Pharmaceuticals', 'Logitel AM 40mg/5mg Tablet', 'What other lifestyle changes should I make while taking Logitel AM 40mg/5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Logitel AM 40mg/5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Logitel AM 40mg/5mg Tablet and to keep yourself healthy.'),
(30953, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'Is Logithro 250 Tablet safe?', 'Logithro 250 Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(30954, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Logithro 250 Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(30955, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'Can the use of Logithro 250 Tablet cause diarrhea?', 'Yes, the use of Logithro 250 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30956, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'Can Logithro 250 Tablet be taken at night?', 'Logithro 250 Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Logithro 250 Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(30957, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'How long does it take Logithro 250 Tablet to work?', 'Logithro 250 Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(30958, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'Why is Logithro 250 Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Logithro 250 Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(30959, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'What should I avoid while taking Logithro 250 Tablet?', 'Generally, it is recommended that patients taking Logithro 250 Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Logithro 250 Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Logithro 250 Tablet increases the risk of sunburn.'),
(30960, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'Is Logithro 250 Tablet a strong antibiotic?', 'Logithro 250 Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Logithro 250 Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(30961, 'Logithro 250 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 250 Tablet', 'Can you get a yeast infection from taking Logithro 250 Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Logithro 250 Tablet. Antibiotics such as Logithro 250 Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Logithro 250 Tablet or soon after stopping it.'),
(30962, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'Is Logithro 500 Tablet safe?', 'Logithro 500 Tablet is safe if used at prescribed doses for the prescribed duration as advised by your doctor.'),
(30963, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'What if I don\'t get better?', 'You should inform your doctor if you do not notice any improvement in your symptoms after 3 days of taking Logithro 500 Tablet. Also, if your symptoms get worse, inform your doctor immediately.'),
(30964, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'Can the use of Logithro 500 Tablet cause diarrhea?', 'Yes, the use of Logithro 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(30965, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'Can Logithro 500 Tablet be taken at night?', 'Logithro 500 Tablet is usually prescribed once daily. You can take it at any time of the day, but remember to take it at the same time each day. The medicine should be taken 1 hour before meals or 2 hours after eating food. You can take the tablet preparation with or without food. However, you must take Logithro 500 Tablet exactly as advised by your doctor and ask your doctor if you have any doubts.'),
(30966, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'How long does it take Logithro 500 Tablet to work?', 'Logithro 500 Tablet starts working within a few hours of taking it. You may notice an improvement in symptoms after a few days. Do not stop taking the medicine without completing the course mentioned by your doctor. Stopping the medicine without consulting your doctor may cause the infection to come back which may be more difficult to treat.'),
(30967, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'Why is Logithro 500 Tablet given for 3 days?', 'The duration of treatment depends on the type of infection being treated and the age of the patient. Logithro 500 Tablet is not necessarily given for 3 days. In most bacterial infections, a single dose of 500 mg is given for 3 days. Alternatively, it can be given as 500 mg once on day 1 and then 250 mg once from day 2 to day 5. In some cases of infection such as genital ulcer disease, it is given as a single 1 gram dose. Therefore, you must stick to the regime advised by your doctor.'),
(30968, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'What should I avoid while taking Logithro 500 Tablet?', 'Generally, it is recommended that patients taking Logithro 500 Tablet should avoid taking any antacid with this medicine as this can affect the overall effectiveness of Logithro 500 Tablet. It is also recommended to avoid exposure to sunlight or tanning beds as Logithro 500 Tablet increases the risk of sunburn.'),
(30969, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'Is Logithro 500 Tablet a strong antibiotic?', 'Logithro 500 Tablet is an effective antibiotic that is used for the treatment of many bacterial infections. Compared to other antibiotics, Logithro 500 Tablet has a longer half-life which means that it stays in the body for a long time because of which it is given once a day and for a short span of time. Other antibiotics comparatively have a shorter half-life and are usually given twice, thrice, or four times a day.'),
(30970, 'Logithro 500 Tablet', 'Logimed Pharma Pvt Ltd', 'Logithro 500 Tablet', 'Can you get a yeast infection from taking Logithro 500 Tablet?', 'Some people may get a fungal or yeast infection known as thrush after taking Logithro 500 Tablet. Antibiotics such as Logithro 500 Tablet can kill the normal or ‘good bacteria’ of your intestine responsible for preventing thrush. You should inform your doctor if you get a sore or vaginal itching or discharge. Also, inform your doctor if you get a white patch in the mouth or tongue after taking Logithro 500 Tablet or soon after stopping it.'),
(30971, 'Logitop 25mg Tablet ER', 'Cista Medicorp', 'Logitop 25mg Tablet ER', 'How long does Logitop 25mg Tablet ER take to work?', 'The time taken by Logitop 25mg Tablet ER to start working varies from person to person. Usually, Logitop 25mg Tablet ER starts working within 15 minutes. However, in some patients, it may take up to 2 hours to start working. It starts acting slowly and the maximum or full effect is usually experienced within a span of 1 week. In case you do not feel any difference while taking Logitop 25mg Tablet ER, do not panic. The medicine exerts its beneficial effects when taken for a long time.'),
(30972, 'Logitop 25mg Tablet ER', 'Cista Medicorp', 'Logitop 25mg Tablet ER', 'Is taking Logitop 25mg Tablet ER dangerous?', 'Logitop 25mg Tablet ER is usually safe when taken as per the doctor’s prescription. This medicine exhibits dangerous effects if the medicine is stopped suddenly. Stopping the medicine suddenly can cause an abrupt increase in the heart rate and affect its activity, which can be dangerous for heart failure patients and can even lead to a heart attack in some patients. So, do not stop the medicine suddenly and take it for the prescribed duration.'),
(30973, 'Logitop 25mg Tablet ER', 'Cista Medicorp', 'Logitop 25mg Tablet ER', 'Does Logitop 25mg Tablet ER help you sleep better?', 'Logitop 25mg Tablet ER belongs to the beta-blockers class of medicine. Though their effect on sleep varies from person to person, it has been found that these medicines are known to alter the sleep pattern and disturb sleep in few patients. On the other hand, it has also been seen to promote better sleep in patients with increased heart rate and anxiety by calming down the heart and nerves. Do consult your doctor in case you have any sleep disturbances.'),
(30974, 'Logitop 25mg Tablet ER', 'Cista Medicorp', 'Logitop 25mg Tablet ER', 'Can I take alcohol after taking Logitop 25mg Tablet ER?', 'No, you should not consume alcohol after taking Logitop 25mg Tablet ER. Alcohol may increase the blood-pressure-lowering effects of this medicine and lead to low blood pressure.'),
(30975, 'Logitop 50mg Tablet ER', 'Cista Medicorp', 'Logitop 50mg Tablet ER', 'How long does Logitop 50mg Tablet ER take to work?', 'The time taken by Logitop 50mg Tablet ER to start working varies from person to person. Usually, Logitop 50mg Tablet ER starts working within 15 minutes. However, in some patients, it may take up to 2 hours to start working. It starts acting slowly and the maximum or full effect is usually experienced within a span of 1 week. In case you do not feel any difference while taking Logitop 50mg Tablet ER, do not panic. The medicine exerts its beneficial effects when taken for a long time.'),
(30976, 'Logitop 50mg Tablet ER', 'Cista Medicorp', 'Logitop 50mg Tablet ER', 'Is taking Logitop 50mg Tablet ER dangerous?', 'Logitop 50mg Tablet ER is usually safe when taken as per the doctor’s prescription. This medicine exhibits dangerous effects if the medicine is stopped suddenly. Stopping the medicine suddenly can cause an abrupt increase in the heart rate and affect its activity, which can be dangerous for heart failure patients and can even lead to a heart attack in some patients. So, do not stop the medicine suddenly and take it for the prescribed duration.'),
(30977, 'Logitop 50mg Tablet ER', 'Cista Medicorp', 'Logitop 50mg Tablet ER', 'Does Logitop 50mg Tablet ER help you sleep better?', 'Logitop 50mg Tablet ER belongs to the beta-blockers class of medicine. Though their effect on sleep varies from person to person, it has been found that these medicines are known to alter the sleep pattern and disturb sleep in few patients. On the other hand, it has also been seen to promote better sleep in patients with increased heart rate and anxiety by calming down the heart and nerves. Do consult your doctor in case you have any sleep disturbances.'),
(30978, 'Logitop 50mg Tablet ER', 'Cista Medicorp', 'Logitop 50mg Tablet ER', 'Can I take alcohol after taking Logitop 50mg Tablet ER?', 'No, you should not consume alcohol after taking Logitop 50mg Tablet ER. Alcohol may increase the blood-pressure-lowering effects of this medicine and lead to low blood pressure.'),
(30979, 'Logitop A 5mg/50mg Tablet', 'Cista Medicorp', 'Logitop A 5mg/50mg Tablet', 'Can I stop taking Logitop A 5mg/50mg Tablet if I feel well?', 'No, keep using Logitop A 5mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Logitop A 5mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(30980, 'Logitop A 5mg/50mg Tablet', 'Cista Medicorp', 'Logitop A 5mg/50mg Tablet', 'What are the instructions for the storage and disposal of Logitop A 5mg/50mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(30981, 'Logitop A 5mg/50mg Tablet', 'Cista Medicorp', 'Logitop A 5mg/50mg Tablet', 'Can the use of Logitop A 5mg/50mg Tablet cause headache?', 'Yes, the use of Logitop A 5mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(30982, 'Logitop A 5mg/50mg Tablet', 'Cista Medicorp', 'Logitop A 5mg/50mg Tablet', 'What are the contraindications associated with the use of Logitop A 5mg/50mg Tablet?', 'Logitop A 5mg/50mg Tablet Succinate is considered to be harmful for patients who are allergic to any of its active or inactive ingredient. It should be avoided in patients with a history of asthma or lung disease. Inform your doctor about the your medical history and medicines to avoid any side effects.'),
(30983, 'Logitop A 5mg/50mg Tablet', 'Cista Medicorp', 'Logitop A 5mg/50mg Tablet', 'Can I feel dizzy after taking Logitop A 5mg/50mg Tablet?', 'Yes, the use of Logitop A 5mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(30984, 'Logivir 400 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 400 DT Tablet', 'Will I get cured after taking Logivir 400 DT Tablet for shingles?', 'Logivir 400 DT Tablet is an antiviral medicine effective against herpes simplex and varicella zoster viruses. It does not cure infections caused by these viruses but helps to minimize the symptoms and shorten the duration of infection. It does not remove the viruses from the body but prevents the viruses from dividing and spreading.'),
(30985, 'Logivir 400 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 400 DT Tablet', 'Does Logivir 400 DT Tablet prevent transmission of infection to others?', 'No, you can infect other people, even while you are being treated with Logivir 400 DT Tablet. Herpes infections are contagious, so avoid letting infected areas come into contact with other people. Avoid touching your eyes after touching an infected area. Wash your hands frequently to prevent transmitting the infection to others. You should practice safe sex by using condoms. You should not have sex if you have genital sores or blisters.'),
(30986, 'Logivir 400 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 400 DT Tablet', 'What are the serious side effects of Logivir 400 DT Tablet?', 'Serious side effects are rare, but if you experience them, you should seek medical advice right away. These rare side effects include hives, blistering or peeling rash, yellow skin or eyes, unusual bruising or bleeding, loss of consciousness, fits, difficulty in breathing, hallucinations and swelling of the face, tongue, lips or throat.'),
(30987, 'Logivir 400 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 400 DT Tablet', 'Do elderly patients need to be more careful while taking Logivir 400 DT Tablet?', 'Older adults (over age 65 years) tend to experience more side effects when taking Logivir 400 DT Tablet. The reason being, their kidneys do not flush the drug out of their system as quickly as a younger person’s kidneys would do. Elderly patients should drink plenty of water while taking Logivir 400 DT Tablet, and their kidney function should be monitored. These patients should be given a lower dose and should be monitored for neurological problems.'),
(30988, 'Logivir 400 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 400 DT Tablet', 'What can happen if somebody takes more than the recommended dose of Logivir 400 DT Tablet accidentally?', 'Accidental, repeated overdoses of oral Logivir 400 DT Tablet over several days have resulted in nausea, vomiting, confusion and headache. Consult your doctor in case of overdose.'),
(30989, 'Logivir 400 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 400 DT Tablet', 'Can I get resistant to Logivir 400 DT Tablet treatment?', 'Patients with advanced HIV disease or patients with an impaired immunity have reported resistance to Logivir 400 DT Tablet. If you are not responding to Logivir 400 DT Tablet, the possibility of drug resistance should be checked.'),
(30990, 'Logivir 400 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 400 DT Tablet', 'Is hair loss caused due to Logivir 400 DT Tablet permanent?', 'Hair loss is an uncommon side effect of Logivir 400 DT Tablet. It stops when the medicine is discontinued.'),
(30991, 'Logivir 800 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 800 DT Tablet', 'Will I get cured after taking Logivir 800 DT Tablet for shingles?', 'Logivir 800 DT Tablet is an antiviral medicine effective against herpes simplex and varicella zoster viruses. It does not cure infections caused by these viruses but helps to minimize the symptoms and shorten the duration of infection. It does not remove the viruses from the body but prevents the viruses from dividing and spreading.'),
(30992, 'Logivir 800 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 800 DT Tablet', 'Does Logivir 800 DT Tablet prevent transmission of infection to others?', 'No, you can infect other people, even while you are being treated with Logivir 800 DT Tablet. Herpes infections are contagious, so avoid letting infected areas come into contact with other people. Avoid touching your eyes after touching an infected area. Wash your hands frequently to prevent transmitting the infection to others. You should practice safe sex by using condoms. You should not have sex if you have genital sores or blisters.'),
(30993, 'Logivir 800 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 800 DT Tablet', 'What are the serious side effects of Logivir 800 DT Tablet?', 'Serious side effects are rare, but if you experience them, you should seek medical advice right away. These rare side effects include hives, blistering or peeling rash, yellow skin or eyes, unusual bruising or bleeding, loss of consciousness, fits, difficulty in breathing, hallucinations and swelling of the face, tongue, lips or throat.'),
(30994, 'Logivir 800 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 800 DT Tablet', 'Do elderly patients need to be more careful while taking Logivir 800 DT Tablet?', 'Older adults (over age 65 years) tend to experience more side effects when taking Logivir 800 DT Tablet. The reason being, their kidneys do not flush the drug out of their system as quickly as a younger person’s kidneys would do. Elderly patients should drink plenty of water while taking Logivir 800 DT Tablet, and their kidney function should be monitored. These patients should be given a lower dose and should be monitored for neurological problems.'),
(30995, 'Logivir 800 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 800 DT Tablet', 'What can happen if somebody takes more than the recommended dose of Logivir 800 DT Tablet accidentally?', 'Accidental, repeated overdoses of oral Logivir 800 DT Tablet over several days have resulted in nausea, vomiting, confusion and headache. Consult your doctor in case of overdose.'),
(30996, 'Logivir 800 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 800 DT Tablet', 'Can I get resistant to Logivir 800 DT Tablet treatment?', 'Patients with advanced HIV disease or patients with an impaired immunity have reported resistance to Logivir 800 DT Tablet. If you are not responding to Logivir 800 DT Tablet, the possibility of drug resistance should be checked.'),
(30997, 'Logivir 800 DT Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir 800 DT Tablet', 'Is hair loss caused due to Logivir 800 DT Tablet permanent?', 'Hair loss is an uncommon side effect of Logivir 800 DT Tablet. It stops when the medicine is discontinued.'),
(30998, 'Logivir Cream', 'Canixa Life Sciences Pvt Ltd', 'Logivir Cream', 'Is Logivir Cream effective?', 'Logivir Cream is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Logivir Cream too early, the symptoms may return or worsen.'),
(30999, 'Logivir Cream', 'Canixa Life Sciences Pvt Ltd', 'Logivir Cream', 'How to use Logivir Cream?', 'Before using Logivir Cream, clean and dry the affected area. Gently and thoroughly massage it into the skin. Be careful not to get the medication in your eyes or mouth. If Logivir Cream gets in your eyes accidentally, wash with plenty of water and call your doctor if your eyes are irritated.'),
(31000, 'Logivir Cream', 'Canixa Life Sciences Pvt Ltd', 'Logivir Cream', 'What precautions do I need to take while using Logivir Cream?', 'Be careful not to get Logivir Cream into your eyes or mouth. If you happen to get it in your eyes, rinse off with plenty of water immediately and contact your doctor. You must not use Logivir Cream if you are allergic to it or any of its ingredients. Tell your doctor if you notice any allergic reaction while using it for the first time. Inform your doctor if you are taking any medicines regularly, to prevent any allergic reaction with other medicines. Do not cover the area being treated with Logivir Cream with a bandage, as this may increase absorption of this medicine and increase the side effects. Do not use more than what is recommended to relieve your symptoms faster. Using more than what is advised will only increase the side effects. Let your doctor know if you are planning to conceive. Pregnant and breastfeeding mothers should use Logivir Cream only if prescribed by the doctor.'),
(31001, 'Logivir Cream', 'Canixa Life Sciences Pvt Ltd', 'Logivir Cream', 'What should I do if I forget to use Logivir Cream?', 'If you forget to use Logivir Cream, do not worry and continue using Logivir Cream as soon as you remember. However, if you are not sure and have any other doubts, please consult your doctor.'),
(31002, 'Logivir Cream', 'Canixa Life Sciences Pvt Ltd', 'Logivir Cream', 'Is Logivir Cream safe?', 'Logivir Cream is safe if used in the dose and duration advised by your doctor. Use it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31003, 'Logivir SR 1200 Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir SR 1200 Tablet', 'Will I get cured after taking Logivir SR 1200 Tablet for shingles?', 'Logivir SR 1200 Tablet is an antiviral medicine effective against herpes simplex and varicella zoster viruses. It does not cure infections caused by these viruses but helps to minimize the symptoms and shorten the duration of infection. It does not remove the viruses from the body but prevents the viruses from dividing and spreading.'),
(31004, 'Logivir SR 1200 Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir SR 1200 Tablet', 'Does Logivir SR 1200 Tablet prevent transmission of infection to others?', 'No, you can infect other people, even while you are being treated with Logivir SR 1200 Tablet. Herpes infections are contagious, so avoid letting infected areas come into contact with other people. Avoid touching your eyes after touching an infected area. Wash your hands frequently to prevent transmitting the infection to others. You should practice safe sex by using condoms. You should not have sex if you have genital sores or blisters.'),
(31005, 'Logivir SR 1200 Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir SR 1200 Tablet', 'What are the serious side effects of Logivir SR 1200 Tablet?', 'Serious side effects are rare, but if you experience them, you should seek medical advice right away. These rare side effects include hives, blistering or peeling rash, yellow skin or eyes, unusual bruising or bleeding, loss of consciousness, fits, difficulty in breathing, hallucinations and swelling of the face, tongue, lips or throat.'),
(31006, 'Logivir SR 1200 Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir SR 1200 Tablet', 'Do elderly patients need to be more careful while taking Logivir SR 1200 Tablet?', 'Older adults (over age 65 years) tend to experience more side effects when taking Logivir SR 1200 Tablet. The reason being, their kidneys do not flush the drug out of their system as quickly as a younger person’s kidneys would do. Elderly patients should drink plenty of water while taking Logivir SR 1200 Tablet, and their kidney function should be monitored. These patients should be given a lower dose and should be monitored for neurological problems.'),
(31007, 'Logivir SR 1200 Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir SR 1200 Tablet', 'What can happen if somebody takes more than the recommended dose of Logivir SR 1200 Tablet accidentally?', 'Accidental, repeated overdoses of oral Logivir SR 1200 Tablet over several days have resulted in nausea, vomiting, confusion and headache. Consult your doctor in case of overdose.'),
(31008, 'Logivir SR 1200 Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir SR 1200 Tablet', 'Can I get resistant to Logivir SR 1200 Tablet treatment?', 'Patients with advanced HIV disease or patients with an impaired immunity have reported resistance to Logivir SR 1200 Tablet. If you are not responding to Logivir SR 1200 Tablet, the possibility of drug resistance should be checked.'),
(31009, 'Logivir SR 1200 Tablet', 'Canixa Life Sciences Pvt Ltd', 'Logivir SR 1200 Tablet', 'Is hair loss caused due to Logivir SR 1200 Tablet permanent?', 'Hair loss is an uncommon side effect of Logivir SR 1200 Tablet. It stops when the medicine is discontinued.'),
(31010, 'Loglime 2mg/500mg/15mg Tablet ER', 'Sanify Healthcare Pvt  Ltd', 'Loglime 2mg/500mg/15mg Tablet ER', 'Can I drink alcohol while taking Loglime 2mg/500mg/15mg Tablet ER?', 'No, it is not safe to drink alcohol while using Loglime 2mg/500mg/15mg Tablet ER. Drinking alcohol may lower your blood sugar levels (hypoglycemia). Also, it can increase the chances of lactic acidosis.'),
(31011, 'Loglime 2mg/500mg/15mg Tablet ER', 'Sanify Healthcare Pvt  Ltd', 'Loglime 2mg/500mg/15mg Tablet ER', 'What should I inform the doctor before taking Loglime 2mg/500mg/15mg Tablet ER?', 'Before taking Loglime 2mg/500mg/15mg Tablet ER inform your doctor if you have congestive heart failure, kidney problems, liver problems, swelling of the back of the eye. Inform the doctor if you are pregnant, breastfeeding or a premenopausal woman. Let the doctor know if you are taking any prescription and non-prescription medicines, vitamins, and herbal supplements.'),
(31012, 'Loglime 2mg/500mg/15mg Tablet ER', 'Sanify Healthcare Pvt  Ltd', 'Loglime 2mg/500mg/15mg Tablet ER', 'Can the use of Loglime 2mg/500mg/15mg Tablet ER lead to Vitamin B12 deficiency?', 'Yes, the use of Loglime 2mg/500mg/15mg Tablet ER can cause vitamin B12 deficiency as it contains metformin in it. On long-term use, it interferes with absorption of vitamin B12 in the stomach.'),
(31013, 'Loglime 2mg/500mg/15mg Tablet ER', 'Sanify Healthcare Pvt  Ltd', 'Loglime 2mg/500mg/15mg Tablet ER', 'Can the use of Loglime 2mg/500mg/15mg Tablet ER cause hypoglycemia?', 'Yes, the use of Loglime 2mg/500mg/15mg Tablet ER can cause hypoglycemia (low blood sugar level). Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate and feeling anxious or shaky. It happens more often if you miss or delay your meal, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, regular monitoring of blood sugar level is important. Always carry some sugary item like a candy or chocolate with you.'),
(31014, 'Loglime 2mg/500mg/15mg Tablet ER', 'Sanify Healthcare Pvt  Ltd', 'Loglime 2mg/500mg/15mg Tablet ER', 'What are the instructions for the storage and disposal of Loglime 2mg/500mg/15mg Tablet ER?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31015, 'Logneg Syrup Raspberry Sugar Free', 'Butson Bioscience', 'Logneg Syrup Raspberry Sugar Free', 'What are the instructions for storage and disposal of Logneg Syrup Raspberry Sugar Free?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31016, 'Logneg Syrup Raspberry Sugar Free', 'Butson Bioscience', 'Logneg Syrup Raspberry Sugar Free', 'Can the use of Logneg Syrup Raspberry Sugar Free cause diarrhea?', 'Yes, Logneg Syrup Raspberry Sugar Free can cause diarrhea. Taking Logneg Syrup Raspberry Sugar Free with water or juice, and after the meals can help prevent diarrhea. Talk to your doctor if diarrhea persists.'),
(31017, 'Logneg Syrup Raspberry Sugar Free', 'Butson Bioscience', 'Logneg Syrup Raspberry Sugar Free', 'What happens if I have taken an overdose of Logneg Syrup Raspberry Sugar Free?', 'If you overdose on Logneg Syrup Raspberry Sugar Free, go to the doctor immediately. Overdosing may result in high potassium levels in blood, which is life-threatening. Its symptoms are nausea, vomiting, tiredness, numbness, irregular heartbeat, trouble breathing and paralysis.'),
(31018, 'Logneg Syrup Raspberry Sugar Free', 'Butson Bioscience', 'Logneg Syrup Raspberry Sugar Free', 'Will a higher than the recommended dose of Logneg Syrup Raspberry Sugar Free be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having serious side effects and toxicity. If the recommended doses do not relieve your symptoms, please consult your doctor.'),
(31019, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Lognemer 500mg Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Lognemer 500mg Injection. Medicines like Lognemer 500mg Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.'),
(31020, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. Even though Lognemer 500mg Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Lognemer 500mg Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(31021, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. Is Lognemer 500mg Injection a strong antibiotic? Which infections does it treat?', 'Lognemer 500mg Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(31022, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. Is Lognemer 500mg Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Lognemer 500mg Injection is effective only against bacteria. It is not effective against virus or fungal infections. Lognemer 500mg Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.'),
(31023, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. My cousin was receiving Lognemer 500mg Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Lognemer 500mg Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Lognemer 500mg Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(31024, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. For how long will I need to take Lognemer 500mg Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Lognemer 500mg Injection. Consult your doctor if you are not sure.'),
(31025, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. What if Lognemer 500mg Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Lognemer 500mg Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Lognemer 500mg Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(31026, 'Lognemer 500mg Injection', 'Dycine Pharmaceuticals Ltd', 'Lognemer 500mg Injection', 'Q. Does it matter if I miss or stop Lognemer 500mg Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Lognemer 500mg Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(31027, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'What is Logoclav 1000mg/200mg Injection?', 'Logoclav 1000mg/200mg Injection is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections.. The medicine works by killing the harmful bacteria that cause infections.'),
(31028, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'Is it safe to use Logoclav 1000mg/200mg Injection?', 'Logoclav 1000mg/200mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(31029, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'How is Logoclav 1000mg/200mg Injection administered?', 'Logoclav 1000mg/200mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Logoclav 1000mg/200mg Injection.'),
(31030, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'Are there any specific cautions associated with the use of Logoclav 1000mg/200mg Injection?', 'The use of Logoclav 1000mg/200mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(31031, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'Can the use of Logoclav 1000mg/200mg Injection cause contraceptive failure?', 'Yes, the use of Logoclav 1000mg/200mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Logoclav 1000mg/200mg Injection.'),
(31032, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'Can I take a higher than the recommended dose of Logoclav 1000mg/200mg Injection?', 'No, taking a higher than the recommended dose of Logoclav 1000mg/200mg Injection can increase the risks of side effects. Logoclav 1000mg/200mg Injection takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(31033, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'What are the instructions for the storage and disposal of Logoclav 1000mg/200mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31034, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'Can Logoclav 1000mg/200mg Injection cause an allergic reaction?', 'Yes, Logoclav 1000mg/200mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(31035, 'Logoclav 1000mg/200mg Injection', 'Logos Pharma', 'Logoclav 1000mg/200mg Injection', 'Can the use of Logoclav 1000mg/200mg Injection cause diarrhea?', 'Yes, the use of Logoclav 1000mg/200mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(31036, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Can other medicines be given at the same time as Logoclav Syrup?', 'Logoclav Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Logoclav Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(31037, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Can I get my child vaccinated while on treatment with Logoclav Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(31038, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Which lab tests may my child undergo while taking Logoclav Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(31039, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Can I give a higher than the recommended dose of Logoclav Syrup to my child?', 'No, giving a higher than the recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(31040, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Can I stop giving Logoclav Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(31041, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Can the use of Logoclav Syrup cause diarrhea?', 'Yes, Logoclav Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark-colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(31042, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(31043, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(31044, 'Logoclav Syrup', 'Logos Pharma', 'Logoclav Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(31045, 'Logofix AZ 200mg/250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Logofix AZ 200mg/250mg Tablet', 'Can I stop taking Logofix AZ 200mg/250mg Tablet when I feel better?', 'No, do not stop taking Logofix AZ 200mg/250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(31046, 'Logofix AZ 200mg/250mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Logofix AZ 200mg/250mg Tablet', 'What if I miss my dose?', 'Take Logofix AZ 200mg/250mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(31047, 'Logofix DX 200mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Logofix DX 200mg/500mg Tablet', 'Can the use of Logofix DX 200mg/500mg Tablet cause diarrhea?', 'Yes, the use of Logofix DX 200mg/500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(31048, 'Logofix DX 200mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Logofix DX 200mg/500mg Tablet', 'How long does Logofix DX 200mg/500mg Tablet takes to work?', 'Usually, Logofix DX 200mg/500mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(31049, 'Logofix DX 200mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Logofix DX 200mg/500mg Tablet', 'What if I don\'t get better after using Logofix DX 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(31050, 'Logofix DX 200mg/500mg Tablet', 'Novalab Healthcare Pvt Ltd', 'Logofix DX 200mg/500mg Tablet', 'Can I stop taking Logofix DX 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Logofix DX 200mg/500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31051, 'Logoheal BR 90mg/48mg/100mg Tablet', 'Myriad Hues Healthcare', 'Logoheal BR 90mg/48mg/100mg Tablet', 'What is Logoheal BR 90mg/48mg/100mg Tablet used for?', 'This is a combination of three medicines: Bromelain, Trypsin and Rutoside. Bromelain and Trypsin are enzymes which increase blood supply in the affected area and help the body produce substances that fight pain and swelling. Rutoside is an antioxidant which protects the body from any damage caused by chemicals (free radicals) and further reduces swelling.'),
(31052, 'Logoheal BR 90mg/48mg/100mg Tablet', 'Myriad Hues Healthcare', 'Logoheal BR 90mg/48mg/100mg Tablet', 'Is trypsin a hormone?', 'No, Trypsin is not a hormone. It is an enzyme, a protein and an endopeptidase.'),
(31053, 'Logoheal BR 90mg/48mg/100mg Tablet', 'Myriad Hues Healthcare', 'Logoheal BR 90mg/48mg/100mg Tablet', 'What is the recommended storage condition for Logoheal BR 90mg/48mg/100mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31054, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'What is Logoheal-Plus Tablet?', 'Logoheal-Plus Tablet is a combination of four medicines: Diclofenac, Paracetamol, Trypsin and Chymotrypsin. This medicine helps in decreasing pain and swelling. It lowers the levels of chemical substances in the body that cause pain and swelling.'),
(31055, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'Can I get addicted to Logoheal-Plus Tablet?', 'No, there are no reports of any patient getting addicted to Logoheal-Plus Tablet.'),
(31056, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'Can I stop taking Logoheal-Plus Tablet when my pain is relieved?', 'Logoheal-Plus Tablet is usually used for short term and can be discontinued when your pain is relieved. However, Logoheal-Plus Tablet should be continued if your doctor has advised you to do so.'),
(31057, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'Can the use of Logoheal-Plus Tablet cause dizziness?', 'Yes, the use of Logoheal-Plus Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(31058, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'Can the use of Logoheal-Plus Tablet cause damage to kidneys?', 'Yes, long-term use of Logoheal-Plus Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(31059, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'Can the use of Logoheal-Plus Tablet cause damage to liver?', 'Logoheal-Plus Tablet contains Paracetamol. This medicine is known to cause harm to the liver especially in the doses above the recommended level. Also, avoid drinking alcohol while taking this medicine, as it may further increase your risk of liver damage. Use of this medicine should preferably be avoided in patients with the underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes and abnormal liver enzymes.'),
(31060, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'How long will Logoheal-Plus Tablet take to act?', 'It may take about an hour to see the initial benefits of pain relief after taking Logoheal-Plus Tablet.'),
(31061, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'What if I forget to take Logoheal-Plus Tablet?', 'If you forget to take the scheduled dose of Logoheal-Plus Tablet and it is almost time for your next dose, skip the dose you missed and take your next dose at the scheduled time. Otherwise, take it as soon as you remember, and then go back to taking your medicine as you would normally. Do not take a double dose to make up for the dose you missed because this may increase the risk of unwanted side effects. If you are not sure what to do, consult your doctor about how to manage situation like this.'),
(31062, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'Will a higher than the recommended dose of Logoheal-Plus Tablet be more effective?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(31063, 'Logoheal-Plus Tablet', 'Myriad Hues Healthcare', 'Logoheal-Plus Tablet', 'Are there any specific contraindications associated with the use of Logoheal-Plus Tablet?', 'The use of Logoheal-Plus Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer / bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(31064, 'Logort-T Injection', 'Logimed Pharma Pvt Ltd', 'Logort-T Injection', 'What is Logort-T Injection used for?', 'Logort-T Injection has anti-inflammatory and immunosuppressant properties. It is used for the treatment of conditions like rheumatoid arthritis and osteoarthritis. It also helps to treat many autoimmune diseases which occur when your body’s immune system attacks the body itself and causes damage.'),
(31065, 'Logort-T Injection', 'Logimed Pharma Pvt Ltd', 'Logort-T Injection', 'How does Logort-T Injection work?', 'Logort-T Injection works by reducing the inflammation which helps in treating many illnesses associated with active inflammation. Also, it stops the reactions known as autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(31066, 'Logort-T Injection', 'Logimed Pharma Pvt Ltd', 'Logort-T Injection', 'How is Logort-T Injection administered?', 'Logort-T Injection should be administered under the supervision of a healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Logort-T Injection.'),
(31067, 'Logort-T Injection', 'Logimed Pharma Pvt Ltd', 'Logort-T Injection', 'Is Logort-T Injection effective?', 'Logort-T Injection is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Logort-T Injection too early, the symptoms may return or worsen.'),
(31068, 'Logort-T Injection', 'Logimed Pharma Pvt Ltd', 'Logort-T Injection', 'When will I feel better after taking Logort-T Injection?', 'Logort-T Injection effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Logort-T Injection in the dose that suits your requirement.'),
(31069, 'Logort-T Injection', 'Logimed Pharma Pvt Ltd', 'Logort-T Injection', 'Is Logort-T Injection safe?', 'Logort-T Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31070, 'Logout 250mg Capsule SR', 'Inga Laboratories Pvt Ltd', 'Logout 250mg Capsule SR', 'What is the best time of the day to take Logout 250mg Capsule SR?', 'Logout 250mg Capsule SR can be taken at anytime of the day but preferably should be taken at the same time each day so that you remember to take it. It is usually prescribed once daily and should be taken after meals. If the dose exceeds 300 mg or if your stomach is upset, you can take it in divided doses as advised by your doctor.'),
(31071, 'Logout 250mg Capsule SR', 'Inga Laboratories Pvt Ltd', 'Logout 250mg Capsule SR', 'Why do I still get gout while taking Logout 250mg Capsule SR?', 'If you have started taking Logout 250mg Capsule SR, you may experience an increase in attacks of gout (severe pain, swelling, and redness). However, these attacks usually become shorter and less severe after several months of therapy. The possible reason for increased attacks could be gradual breakdown of uric acid crystals, causing fluctuations in uric acid levels in the blood. To prevent such painful events, your doctor may advise to take colchicine with Logout 250mg Capsule SR, as it can suppress the gouty attacks.'),
(31072, 'Logout 250mg Capsule SR', 'Inga Laboratories Pvt Ltd', 'Logout 250mg Capsule SR', 'How long does it take for Logout 250mg Capsule SR to lower uric acid levels?', 'It may take several months before you start feeling better or notice any significant reduction in attacks of gout (severe pain, swelling, and redness). Initially after starting Logout 250mg Capsule SR you may experience gouty attacks. Continue taking Logout 250mg Capsule SR even if you do not experience any considerable relief from the attacks. Do not stop taking Logout 250mg Capsule SR without consulting your doctor. Your doctor will prescribe you another medicine along with Logout 250mg Capsule SR to prevent the initial attacks. It may take up to years for the body to completely get rid of all uric acid crystals.'),
(31073, 'Logout 250mg Capsule SR', 'Inga Laboratories Pvt Ltd', 'Logout 250mg Capsule SR', 'What if I take alcohol while taking Logout 250mg Capsule SR?', 'You should refrain yourself from consuming alcohol while taking Logout 250mg Capsule SR as this could make your condition worse. Also, you should avoid all foods that are rich source of proteins as it will help to prevent attacks of gout. Consult  your doctor for a detailed list of food items which need to be avoided. It is also recommended that you drink at least 8 glasses of water or other fluids while taking Logout 250mg Capsule SR, unless your doctor has advised otherwise.'),
(31074, 'Logout 250mg Capsule SR', 'Inga Laboratories Pvt Ltd', 'Logout 250mg Capsule SR', 'Does Logout 250mg Capsule SR cause drowsiness?', 'Yes, Logout 250mg Capsule SR may cause drowsiness in some people. It can even make you feel giddy (dizzy) or you may have problems with coordination. It would be best to avoid driving or operating machinery if you experience these side effects. However, if it is unavoidable then extreme caution should be exercised while performing such tasks.'),
(31075, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'Is Logpod 200mg Tablet safe to use?', 'Logpod 200mg Tablet is safe to use at the prescribed dose for prescribed duration as advised by the doctor. Patients should follow the advice of the doctor regarding its use.'),
(31076, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'Can the use of Logpod 200mg Tablet cause diarrhea?', 'Yes, the use of Logpod 200mg Tablet can cause diarrhea. Logpod 200mg Tablet is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If diarrhea persists, talk to your doctor about it.'),
(31077, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'Is Logpod 200mg Tablet an antibiotic?', 'Yes, Logpod 200mg Tablet is an antibiotic, it belongs to a group of antibiotics known as cephalosporins.'),
(31078, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'Can Logpod 200mg Tablet cause constipation?', 'Yes, Logpod 200mg Tablet may cause constipation as a side effect. However, taking mild laxatives may provide relief if you feel constipated. Also, take a fiber-rich diet including fresh fruits, vegetables, whole wheat grains and avoid taking oily and spicy food as it will only worsen your condition. If your constipation gets worse, please consult your doctor.'),
(31079, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'Can I stop taking Logpod 200mg Tablet when my symptoms are relieved or when I feel better?', 'No, do not stop taking Logpod 200mg Tablet before completing the full course of treatment. You may start feeling better before the infection is completely cured. But, it is important to take this medicine for the full duration advised by the doctor.'),
(31080, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'How long does Logpod 200mg Tablet take to work?', 'Usually, Logpod 200mg Tablet starts working soon after you take it. However, it may take some days to kill all the harmful bacteria and relieve your symptoms completely.'),
(31081, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'What if I do not get better after using Logpod 200mg Tablet?', 'Inform your doctor if you do not feel better even after finishing the full course of treatment. You must also inform your doctor if the symptoms get worse while using this medicine.'),
(31082, 'Logpod 200mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod 200mg Tablet', 'Can Logpod 200mg Tablet treat UTI?', 'Yes, Logpod 200mg Tablet may be used to treat UTI (Urinary Tract Infection). Studies suggest that it has better tolerance and helps to treat symptoms of UTI such as foul smelling urine, frequent urination, vaginal irritation, vaginal discharge, stomach pain, etc., effectively. However, not everyone may be prescribed Logpod 200mg Tablet. It is advisable to take it only if prescribed by a doctor.'),
(31083, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. What if I give too much of Logpod Dry Syrup by mistake?', 'An extra dose of Logpod Dry Syrup is unlikely to do harm. However, if you think you have given too much of Logpod Dry Syrup to your child, immediately speak to a doctor. Overdose may cause unwanted side effects and may even worsen your child’s condition.'),
(31084, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. Are there any possible serious side effects of Logpod Dry Syrup?', 'Some serious side effects of this medicine include persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(31085, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. Can other medicines be given at the same time as Logpod Dry Syrup?', 'Logpod Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Logpod Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(31086, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. Can I get my child vaccinated while on treatment with Logpod Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(31087, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. Which lab tests may my child undergo while taking Logpod Dry Syrup on a long-term basis?', 'The doctor may prescribe getting kidney function tests and liver function tests periodically to keep a check on your child’s condition.'),
(31088, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(31089, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. My child is having a sore throat and ear infection. Can I give antibiotics?', 'No. More than 80% of sore throats and ear infections are caused by a virus and antibiotics are not given for viral infections. If your child has a sore throat, runny nose, a barky cough, pain, and discharge from the ear, it is most likely because of a virus. Consult your child’s doctor to seek guidance.'),
(31090, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. Does a common cold caused by viruses always result in a secondary bacterial infection? When to start an antibiotic to prevent infection?', 'In most cases, bacterial infections do not follow viral infections. Using antibiotics to treat viral infections may instead lead to side effects without benefiting your child\'s health. Use antibiotics only after consulting with your child’s doctor.'),
(31091, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. Can Logpod Dry Syrup impact my child’s digestive system?', 'Children often have a sensitive stomach and develop a stomach upset while taking antibiotics. When antibiotics are given, the good bacteria in their gastrointestinal tract may take a hit too. Logpod Dry Syrup may kill off the good bacteria along with the bad, increasing the risk of developing other infections. In case your child is having diarrhea while on Logpod Dry Syrup, do not stop the medicine course. Instead, call your child’s doctor to ask about the next steps. In some cases, the doctor may alter the dose.'),
(31092, 'Logpod Dry Syrup', 'Mepfarma India Pvt Ltd', 'Logpod Dry Syrup', 'Q. Can Logpod Dry Syrup lead to bacterial resistance in my child?', 'Yes, irregular treatment, repeated use, and misuse of Logpod Dry Syrup can lead to resistance. Resistant bacteria are no longer killed by the antibiotics and may lead to reinfection.'),
(31093, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'Can the use of Logpod-CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Logpod-CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(31094, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'How long does Logpod-CV 200mg/125mg Tablet takes to work?', 'Usually, Logpod-CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(31095, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'What if I don\'t get better after using Logpod-CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(31096, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'Can I stop taking Logpod-CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Logpod-CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(31097, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'What is Logpod-CV 200mg/125mg Tablet?', 'Logpod-CV 200mg/125mg Tablet is a combination of two medicines: Cefpodoxime and Clavulanic acid. This medication is used to treat bacterial infection. This medication works by killing the harmful bacteria that cause infection.'),
(31098, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'Can the use of Logpod-CV 200mg/125mg Tablet cause any serious side effects?', 'Logpod-CV 200mg/125mg Tablet may cause serious side effects in very few patients (less than 1 in 1,000). Inform the doctor straight away if you get bloody diarrhea, yellowing of the eyes and skin, bruising or skin discoloration, shortness of breath, widespread rash, skin peeling and fever. All of these reactions needs urgent medical attention.'),
(31099, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'Can I stop taking Logpod-CV 200mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Logpod-CV 200mg/125mg Tablet and complete the full course of treatment, even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(31100, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'Can Logpod-CV 200mg/125mg Tablet cause allergic reaction?', 'Yes, Logpod-CV 200mg/125mg Tablet can cause allergic reaction and is considered to be harmful patients with known allergy to a group of antibiotics called Cephalosporins. Get emergency medical help if you notice any of the signs of an allergic reaction: hives; difficulty in breathing; swelling of your face, lips, tongue or throat.'),
(31101, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'Are there any specific contraindications associated with the use of Logpod-CV 200mg/125mg Tablet?', 'The use of Logpod-CV 200mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other excipients present in this medicine. This medicine should not be used in patients with previous history of liver damage associated with Logpod-CV 200mg/125mg Tablet.'),
(31102, 'Logpod-CV 200mg/125mg Tablet', 'Mepfarma India Pvt Ltd', 'Logpod-CV 200mg/125mg Tablet', 'Can I take oral contraceptive pills while taking Logpod-CV 200mg/125mg Tablet?', 'No, Logpod-CV 200mg/125mg Tablet can make birth control pills less effective. So, ask your doctor about using a birth control method which does not affect your hormone levels (such as a condom, diaphragm and spermicide).'),
(31103, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'Can the use of Logvil M 500mg/50mg Tablet lead to hypoglycemia?', 'The use of Logvil M 500mg/50mg Tablet does not usually cause hypoglycemia (low blood sugar level) alone. But it could occur if there is insufficient supplementation of calories while taking this medicine. Symptoms of hypoglycemia include nausea, headache, irritability, hunger, sweating, dizziness, fast heart rate, and feeling anxious or shaky. The symptoms are more likely to be noticed if you miss or delay your food, drink alcohol, over-exercise, or take any other antidiabetic medicine along with it. So, regular monitoring of blood sugar levels is important. It is recommended to always carry glucose tablets, honey, or fruit juice with you.'),
(31104, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'Can the use of Logvil M 500mg/50mg Tablet cause nausea and vomiting?', 'Yes, the use of Logvil M 500mg/50mg Tablet can cause nausea and vomiting. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark-colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to a doctor.'),
(31105, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'Are there any specific contraindications associated with the use of Logvil M 500mg/50mg Tablet?', 'The use of Logvil M 500mg/50mg Tablet should be avoided in patients with known allergies to any of the components or excipients of this medicine. The use of this medicine is also considered to be harmful to patients with severe kidney impairment, liver impairment, congestive heart failure, lactic acidosis, or diabetic ketoacidosis.'),
(31106, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'What is the storage condition for the Logvil M 500mg/50mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31107, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'What is Logvil M 500mg/50mg Tablet?', 'Logvil M 500mg/50mg Tablet is a combination of two anti-diabetic drugs: Metformin and Vildagliptin. Metformin is an anti-diabetic medicine and belongs to the class of biguanides. It lowers the glucose production in the liver, delays glucose absorption from the intestines, and increases the body\'s sensitivity to insulin. Vildagliptin inhibits the enzyme DPP4 inhibitor and increases the release of insulin from the pancreas. This combination is not advised for patients below 18 years of age.'),
(31108, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'Can the use of Logvil M 500mg/50mg Tablet cause lactic acidosis?', 'Yes, the use of Logvil M 500mg/50mg Tablet can lead to lactic acidosis. It is a medical emergency that is caused by increased levels of lactic acid in the blood. It is also known as MALA (Metformin-associated lactic acidosis). It is a very rare side effect associated with the use of metformin and therefore, it is avoided in patients with underlying kidney disease, old age patients, or who take large amounts of alcohol. Symptoms of lactic acidosis may include muscle pain or weakness, dizziness, tiredness, feeling of cold in arms and legs, difficulty in breathing, nausea, vomiting, stomach pain, or slow heart rate. If you have these symptoms, stop taking Logvil M 500mg/50mg Tablet and immediately consult your doctor.'),
(31109, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'Can the use of Logvil M 500mg/50mg Tablet lead to Vitamin B12 deficiency?', 'Yes, the use of Logvil M 500mg/50mg Tablet can cause Vitamin B12 deficiency with long-term use. It interferes with the absorption of Vitamin B12 in the stomach. If untreated, it may cause anemia and nerve problems.'),
(31110, 'Logvil M 500mg/50mg Tablet', 'Lino Morgan Pharmaceuticals', 'Logvil M 500mg/50mg Tablet', 'Is it safe to use Logvil M 500mg/50mg Tablet?', 'Yes, it is safe to use Logvil M 500mg/50mg Tablet if you take it for the prescribed duration and according to the dosage advised by the doctor. However, despite taking the prescribed dosage you might experience common side effects like nausea, diarrhea, vomiting, stomach upset, headache, nasal congestion, sore throat, respiratory tract infection, hypoglycemia (low blood sugar level) in combination with insulin or sulphonylurea. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31111, 'Logy 500mcg Injection', 'Sienna Formulations Pvt Ltd', 'Logy 500mcg Injection', 'What is Logy 500mcg Injection?', 'Logy 500mcg Injection is a form of vitamin B12. Vitamin B12 is an essential nutrient which is required by the body to make red blood cells and maintain a healthy nervous system. It is also important for releasing energy from food and using vitamin B11 (folic acid).'),
(31112, 'Logy 500mcg Injection', 'Sienna Formulations Pvt Ltd', 'Logy 500mcg Injection', 'Why can’t I get sufficient vitamin B12 in my diet?', 'You can get vitamin B12 from sources like meat, fish, eggs and dairy products. While people who are vegetarian or vegan may not get Vitamin B12 as it is not found naturally in foods such as fruits, vegetables and grains. Therefore, deficiency of Vitamin B12 is usually noticed in vegetarians or vegans.'),
(31113, 'Logy 500mcg Injection', 'Sienna Formulations Pvt Ltd', 'Logy 500mcg Injection', 'What happens if I have vitamin B12 deficiency?', 'Deficiency of vitamin B12 may cause tiredness, weakness, constipation, loss of appetite, weight loss and megaloblastic anemia (a condition when red blood cells become larger than normal). It may also lead to nerve problems such as numbness and tingling in the hands and feet. Other symptoms of vitamin B12 deficiency may include problems with balance, depression, confusion, dementia, poor memory and soreness of the mouth or tongue.'),
(31114, 'Logy 500mcg Injection', 'Sienna Formulations Pvt Ltd', 'Logy 500mcg Injection', 'Is Logy 500mcg Injection safe?', 'Logy 500mcg Injection is generally well tolerated and considered safe. However, in some cases, rare side effects may be observed such as nausea, diarrhea, anorexia and rash. Discontinue taking this medicine immediately if a rash occurs.'),
(31115, 'Logy 500mcg Injection', 'Sienna Formulations Pvt Ltd', 'Logy 500mcg Injection', 'How should Logy 500mcg Injection be given?', 'Logy 500mcg Injection can be injected directly into a vein (intravenously) or into a muscle (intramuscularly). The usual dose is 1 ampoule (0.5 mg of Logy 500mcg Injection) and is given 3 times a week. After 2 months, 1 ampoule (0.5 mg of Logy 500mcg Injection) is given every one to three months as a part of maintenance therapy.'),
(31116, 'Logy 500mcg Injection', 'Sienna Formulations Pvt Ltd', 'Logy 500mcg Injection', 'What precautions need to be taken while administering Logy 500mcg Injection?', 'Avoid taking the injections at the same site every time. If there is intense pain while injecting or if the blood flows back into the syringe, take out the needle and re-insert at a different site.'),
(31117, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'What is Logyz 4.5 Injection?', 'Logyz 4.5 Injection is a combination of two medicines. It is used to treat bacterial infections like tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection and oral cavity infections.'),
(31118, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'Is it safe to use Logyz 4.5 Injection?', 'Logyz 4.5 Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction, etc. If you experience any persistent problem while taking this medicine, inform your doctor as soon as possible.'),
(31119, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'How is Logyz 4.5 Injection administered?', 'Logyz 4.5 Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Logyz 4.5 Injection.'),
(31120, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'Are there any specific cautions associated with the use of Logyz 4.5 Injection?', 'The use of Logyz 4.5 Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, consult your doctor before using Logyz 4.5 Injection.'),
(31121, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'Can the use of Logyz 4.5 Injection cause contraceptive failure?', 'Yes, the use of Logyz 4.5 Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Logyz 4.5 Injection.'),
(31122, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'Can I take a higher than the recommended dose of Logyz 4.5 Injection?', 'No, Logyz 4.5 Injection should be used in the recommended dose only. Overdose of Logyz 4.5 Injection can increase the risks of side effects. Logyz 4.5 Injection may take some time to show its full effect and treat your infection, be patient. If you experience increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(31123, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'What are the instructions for the storage and disposal of Logyz 4.5 Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31124, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'Can Logyz 4.5 Injection cause an allergic reaction?', 'Yes, Logyz 4.5 Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, swelling of your face, lips, tongue or throat.'),
(31125, 'Logyz 4.5 Injection', 'Logimed Pharma Pvt Ltd', 'Logyz 4.5 Injection', 'Can the use of Logyz 4.5 Injection cause diarrhea?', 'Yes, the use of Logyz 4.5 Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, it can also affect the helpful bacteria in your stomach or intestine and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(31126, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'Can I feel dizzy after taking Loheart 50mg Tablet?', 'Yes, the use of Loheart 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31127, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'Is Loheart 50mg Tablet a good blood pressure medicine?', 'Loheart 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(31128, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'What are some of the lifestyle changes I should make while using Loheart 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Loheart 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Loheart 50mg Tablet and to keep yourself healthy.'),
(31129, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'For how long do I need to take Loheart 50mg Tablet?', 'You may have to take Loheart 50mg Tablet for a long term, even life long. Loheart 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Loheart 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(31130, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'Does Loheart 50mg Tablet cause weight gain?', 'No, Loheart 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(31131, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'What are the long-term side effects of Loheart 50mg Tablet?', 'Long-term use of Loheart 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Loheart 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(31132, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'Is Loheart 50mg Tablet bad for the kidneys?', 'Yes, Loheart 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Loheart 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(31133, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'How long does Loheart 50mg Tablet take to work?', 'The blood pressure-lowering effect of Loheart 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(31134, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'When and how should Loheart 50mg Tablet be taken?', 'Take Loheart 50mg Tablet exactly as per your doctor’s advice. Loheart 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(31135, 'Loheart 50mg Tablet', 'Saitech Medicare Pvt Ltd', 'Loheart 50mg Tablet', 'What is the most important information that I need to know about Loheart 50mg Tablet?', 'Taking Loheart 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Loheart 50mg Tablet, stop taking Loheart 50mg Tablet and call your doctor immediately.'),
(31136, 'Lohist Tablet', 'Imed Healthcare', 'Lohist Tablet', 'Is Lohist Tablet a steroid? What is it used for?', 'No, Lohist Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(31137, 'Lohist Tablet', 'Imed Healthcare', 'Lohist Tablet', 'Does Lohist Tablet make you tired and drowsy?', 'Yes, Lohist Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(31138, 'Lohist Tablet', 'Imed Healthcare', 'Lohist Tablet', 'How long does it take for Lohist Tablet to work?', 'Lohist Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(31139, 'Lohist Tablet', 'Imed Healthcare', 'Lohist Tablet', 'Can I take Lohist Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lohist Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(31140, 'Lohist Tablet', 'Imed Healthcare', 'Lohist Tablet', 'Is it safe to take Lohist Tablet for a long time?', 'Lohist Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lohist Tablet for only as long as you need it.'),
(31141, 'Lohist Tablet', 'Imed Healthcare', 'Lohist Tablet', 'For how long should I continue Lohist Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lohist Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lohist Tablet'),
(31142, 'Lohron 100mg Injection', 'Glounce Pharmaceuticals', 'Lohron 100mg Injection', 'How long can I take Lohron 100mg Injection for?', 'Lohron 100mg Injection is used to regulate hemoglobin levels in the human body. It is usually given to patients who have iron deficient anemia or iron deficiency. The doctor may suggest using this medicine till the hemoglobin level becomes normal. Do consult your doctor to understand the usage of this medicine properly.'),
(31143, 'Lohron 100mg Injection', 'Glounce Pharmaceuticals', 'Lohron 100mg Injection', 'How is Lohron 100mg Injection administered?', 'Lohron 100mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lohron 100mg Injection.'),
(31144, 'Lohron 100mg Injection', 'Glounce Pharmaceuticals', 'Lohron 100mg Injection', 'Can I take Lohron 100mg Injection for anemia and iron deficiency?', 'Yes, Lohron 100mg Injection can be taken for iron deficiency anemia and iron deficiency. However, its use for other types of anemia is not recommended. Take Lohron 100mg Injection in the dose and duration advised by your doctor.'),
(31145, 'Lohron 100mg Injection', 'Glounce Pharmaceuticals', 'Lohron 100mg Injection', 'What types of food items should I take other than Lohron 100mg Injection?', 'You can consume food items that are rich in iron content (like red meat, pork, poultry and seafood). Other food items which contain rich iron content include beans, dark green leafy vegetables (like spinach), peas, dried fruit (raisins and apricots), iron-fortified cereals, breads and pastas. You can also try iron supplements (tablets or capsules) available at pharmacy stores for iron deficient anemia.'),
(31146, 'Lohron 100mg Injection', 'Glounce Pharmaceuticals', 'Lohron 100mg Injection', 'Does Lohron 100mg Injection increase weight?', 'Yes, Lohron 100mg Injection can increase weight. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. You should consult your doctor if you need any further help to manage your weight.'),
(31147, 'Loican 1% Cream', 'Moderik Healthcare', 'Loican 1% Cream', 'Is Loican 1% Cream safe in pregnancy?', 'Loican 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Loican 1% Cream.'),
(31148, 'Loican 1% Cream', 'Moderik Healthcare', 'Loican 1% Cream', 'Is Loican 1% Cream fungicidal or Fungistatic?', 'Loican 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(31149, 'Loican 1% Cream', 'Moderik Healthcare', 'Loican 1% Cream', 'How to use Loican 1% Cream?', 'Use Loican 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(31150, 'Loican 1% Cream', 'Moderik Healthcare', 'Loican 1% Cream', 'How long does it take for Loican 1% Cream to work?', 'For different ailments, Loican 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(31151, 'Loican 1% Cream', 'Moderik Healthcare', 'Loican 1% Cream', 'How should I store Loican 1% Cream?', 'Keep Loican 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(31152, 'Loican 1% Cream', 'Moderik Healthcare', 'Loican 1% Cream', 'Is Loican 1% Cream safe to use in children?', 'Yes, Loican 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(31153, 'Loister Tablet', 'LA Oister Pharma Pvt. Ltd', 'Loister Tablet', 'What is Loister Tablet used for?', 'Loister Tablet is used in the treatment of functional dyspepsia. It helps to relieve the symptoms like bloating after a meal, pain/discomfort in the upper abdomen and early satiety (feeling of fullness in a short span of time after having only little food).'),
(31154, 'Loister Tablet', 'LA Oister Pharma Pvt. Ltd', 'Loister Tablet', 'When should I take Loister Tablet?', 'Loister Tablet should be taken before meals. Always complete the prescribed course of treatment as advised by your doctor even if you start to feel better.'),
(31155, 'Loister Tablet', 'LA Oister Pharma Pvt. Ltd', 'Loister Tablet', 'Is Loister Tablet effective?', 'Loister Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Loister Tablet too early, the symptoms may return or worsen.'),
(31156, 'Loister Tablet', 'LA Oister Pharma Pvt. Ltd', 'Loister Tablet', 'Can I stop taking Loister Tablet when I feel better?', 'No, do not stop taking Loister Tablet without consulting your doctor even if you are feeling better. Your symptoms may improve before the condition is completely cured. Therefore, for better and complete treatment, it is advised to continue your treatment for the prescribed duration.'),
(31157, 'Loister Tablet', 'LA Oister Pharma Pvt. Ltd', 'Loister Tablet', 'Is Loister Tablet safe?', 'Loister Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31158, 'Loister Tablet', 'LA Oister Pharma Pvt. Ltd', 'Loister Tablet', 'Can dyspepsia be cured?', 'No, functional dyspepsia cannot be cured completely. But, the symptoms of functional dyspepsia such as bloating after a meal, pain/discomfort in the upper abdomen and early satiety (feeling of fullness in a short span of time after having only little food), can be effectively managed with medicines as well as a few lifestyle changes. Practise yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also reduces your stress and hence helps in keeping your symptoms well-controlled. Try to eat smaller, frequent meals and avoid eating late at night. There should be a gap of at least 3 to 4 hours between dinner and going to bed at night. Take more fiber-rich foods such as fresh fruits, vegetables and avoid spicy or oily foods. Reducing weight can also help if you are obese. These simple life-hacks can help you manage your condition a lot.'),
(31159, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'Is Lok 2mg Tablet an opioid? Is it a habit-forming medicine?', 'No, Lok 2mg Tablet is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31160, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'Can Lok 2mg Tablet be used as a sleeping pill?', 'Lok 2mg Tablet is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Lok 2mg Tablet is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(31161, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'For how long will Lok 2mg Tablet stay in my system?', 'Lok 2mg Tablet may take around 3 days to get completely removed from the system.'),
(31162, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'Are there any symptoms that I would experience if I get addicted to Lok 2mg Tablet?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Lok 2mg Tablet. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(31163, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'If I suddenly stop taking Lok 2mg Tablet, will it affect me adversely?', 'You should reduce the dose of Lok 2mg Tablet gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(31164, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'Does Lok 2mg Tablet cause weight gain?', 'The effect of Lok 2mg Tablet on weight gain or loss is not known.'),
(31165, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'Does Lok 2mg Tablet cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Lok 2mg Tablet should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(31166, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'My old uncle is taking Lok 2mg Tablet for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Lok 2mg Tablet can cause memory impairment, which may be more apparent in old age patients.'),
(31167, 'Lok 2mg Tablet', 'Organic Laboratories', 'Lok 2mg Tablet', 'Are there any harmful effects of taking more than the recommended doses of Lok 2mg Tablet?', 'Taking more than the recommended dose of Lok 2mg Tablet may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Lok 2mg Tablet, seek immediate medical help immediately.'),
(31168, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'Can I feel dizzy after taking Lok 50mg Tablet?', 'Yes, the use of Lok 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31169, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'Is Lok 50mg Tablet a good blood pressure medicine?', 'Lok 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(31170, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'What are some of the lifestyle changes I should make while using Lok 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lok 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lok 50mg Tablet and to keep yourself healthy.'),
(31171, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'For how long do I need to take Lok 50mg Tablet?', 'You may have to take Lok 50mg Tablet for a long term, even life long. Lok 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Lok 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(31172, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'Does Lok 50mg Tablet cause weight gain?', 'No, Lok 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(31173, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'What are the long-term side effects of Lok 50mg Tablet?', 'Long-term use of Lok 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Lok 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(31174, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'Is Lok 50mg Tablet bad for the kidneys?', 'Yes, Lok 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Lok 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(31175, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'How long does Lok 50mg Tablet take to work?', 'The blood pressure-lowering effect of Lok 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(31176, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'When and how should Lok 50mg Tablet be taken?', 'Take Lok 50mg Tablet exactly as per your doctor’s advice. Lok 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(31177, 'Lok 50mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok 50mg Tablet', 'What is the most important information that I need to know about Lok 50mg Tablet?', 'Taking Lok 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Lok 50mg Tablet, stop taking Lok 50mg Tablet and call your doctor immediately.'),
(31178, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'Is Lok Acid 40mg Injection an opioid? Is it a habit-forming medicine?', 'No, Lok Acid 40mg Injection is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(31179, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'For how long will Lok Acid 40mg Injection stay in my system?', 'Lok Acid 40mg Injection may take around 3 days to get completely removed from the system.'),
(31180, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'Are there any symptoms that I would experience if I get addicted to Lok Acid 40mg Injection?', 'The most important symptom of addiction is that you may feel unpleasant if you do not take Lok Acid 40mg Injection. Another symptom could be that you may increase the dose on your own to feel its effect.'),
(31181, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'If I suddenly stop taking Lok Acid 40mg Injection, will it affect me adversely?', 'You should reduce the dose of Lok Acid 40mg Injection gradually before completely stopping it. Suddenly stopping it may lead to withdrawal symptoms which include loss of the sense of reality, feeling detached from life, and unable to feel emotion. Some patients have also experienced numbness or tingling in the arms or legs, tinnitus (ringing sounds in the ears), uncontrolled or overactive movements, twitching, shaking, feeling sick, being sick, stomach upsets or stomach pain, loss of appetite, agitation and abnormally fast heart beats. It can also cause panic attacks, dizziness or feeling faint, memory loss, hallucinations, feeling stiff and unable to move easily, feeling very warm, convulsions (sudden uncontrolled shaking or jerking of the body) and oversensitivity to light, sound and touch.'),
(31182, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'Does Lok Acid 40mg Injection cause weight gain?', 'The effect of Lok Acid 40mg Injection on weight gain or loss is not known.'),
(31183, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'Does Lok Acid 40mg Injection cause depression?', 'If you have a history of depression then it may increase the risk of developing depression again. Lok Acid 40mg Injection should not be used alone in depressed patients because it may cause suicidal tendencies in such patients.'),
(31184, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'My old uncle is taking Lok Acid 40mg Injection for sleeplessness associated with anxiety. Can it affect his memory?', 'Though it is rare, but use of Lok Acid 40mg Injection can cause memory impairment, which may be more apparent in old age patients.'),
(31185, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'Are there any harmful effects of taking more than the recommended doses of Lok Acid 40mg Injection?', 'Taking more than the recommended dose of Lok Acid 40mg Injection may cause loss of muscle control, low blood pressure, mental confusion, slow breathing and even coma. If you have taken higher than the recommended dose of Lok Acid 40mg Injection, seek immediate medical help immediately.'),
(31186, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'Is Lok Acid 40mg Injection an opioid? Is it a habit-forming medicine?', 'No, Lok Acid 40mg Injection is not an opioid. It belongs to the benzodiazepine group of medicines and is used for short-term treatment (2-4 weeks) only. It is a habit-forming medicine and can make a person physically and psychologically dependent.'),
(31187, 'Lok Acid 40mg Injection', 'Venus Remedies Ltd', 'Lok Acid 40mg Injection', 'Can Lok Acid 40mg Injection be used as a sleeping pill?', 'Lok Acid 40mg Injection is used for sleeping difficulties caused due to short-term anxiety. One of the very common side effects of Lok Acid 40mg Injection is drowsiness and sleepiness. It calms the mind, and therefore, helps a person to sleep.'),
(31188, 'Lok AR 5mg/10mg Tablet', 'Mendine Lifecare Products Private Limited', 'Lok AR 5mg/10mg Tablet', 'What is Lok AR 5mg/10mg Tablet?', 'Lok AR 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(31189, 'Lok AR 5mg/10mg Tablet', 'Mendine Lifecare Products Private Limited', 'Lok AR 5mg/10mg Tablet', 'Can the use of Lok AR 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lok AR 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(31190, 'Lok AR 5mg/10mg Tablet', 'Mendine Lifecare Products Private Limited', 'Lok AR 5mg/10mg Tablet', 'Can Lok AR 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lok AR 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(31191, 'Lok AR 5mg/10mg Tablet', 'Mendine Lifecare Products Private Limited', 'Lok AR 5mg/10mg Tablet', 'Can the use of Lok AR 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lok AR 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(31192, 'Lok AR 5mg/10mg Tablet', 'Mendine Lifecare Products Private Limited', 'Lok AR 5mg/10mg Tablet', 'Can I drink alcohol while taking Lok AR 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lok AR 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lok AR 5mg/10mg Tablet.'),
(31193, 'Lok AR 5mg/10mg Tablet', 'Mendine Lifecare Products Private Limited', 'Lok AR 5mg/10mg Tablet', 'Will Lok AR 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lok AR 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(31194, 'Lok AR 5mg/10mg Tablet', 'Mendine Lifecare Products Private Limited', 'Lok AR 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lok AR 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31195, 'Lok AR Syrup', 'Mendine Lifecare Products Private Limited', 'Lok AR Syrup', 'What is Lok AR Syrup?', 'Lok AR Syrup is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(31196, 'Lok AR Syrup', 'Mendine Lifecare Products Private Limited', 'Lok AR Syrup', 'Can the use of Lok AR Syrup cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lok AR Syrup is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(31197, 'Lok AR Syrup', 'Mendine Lifecare Products Private Limited', 'Lok AR Syrup', 'Can Lok AR Syrup be stopped when allergy symptoms are relieved?', 'No, Lok AR Syrup should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(31198, 'Lok AR Syrup', 'Mendine Lifecare Products Private Limited', 'Lok AR Syrup', 'Can the use of Lok AR Syrup cause dry mouth?', 'Yes, the use of Lok AR Syrup can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(31199, 'Lok AR Syrup', 'Mendine Lifecare Products Private Limited', 'Lok AR Syrup', 'Can I drink alcohol while taking Lok AR Syrup?', 'No, do not take alcohol while taking Lok AR Syrup. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lok AR Syrup.'),
(31200, 'Lok AR Syrup', 'Mendine Lifecare Products Private Limited', 'Lok AR Syrup', 'Will Lok AR Syrup be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lok AR Syrup can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(31201, 'Lok AR Syrup', 'Mendine Lifecare Products Private Limited', 'Lok AR Syrup', 'What are the instructions for storage and disposal of Lok AR Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31202, 'Lok Plus 50mg/12.5mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok Plus 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31203, 'Lok Plus 50mg/12.5mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok Plus 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Lok Plus 50mg/12.5mg Tablet?', 'Yes, the use of Lok Plus 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31204, 'Lok Plus 50mg/12.5mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok Plus 50mg/12.5mg Tablet', 'Can I use Lok Plus 50mg/12.5mg Tablet in pregnancy?', 'No, Lok Plus 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Lok Plus 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(31205, 'Lok Plus 50mg/12.5mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok Plus 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Lok Plus 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lok Plus 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(31206, 'Lok Plus 50mg/12.5mg Tablet', 'Globela Pharma Pvt Ltd', 'Lok Plus 50mg/12.5mg Tablet', 'Can I stop taking Lok Plus 50mg/12.5mg Tablet if I feel well?', 'No, keep using Lok Plus 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Lok Plus 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(31207, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'Why do you have to take Lokast 10mg Tablet at night?', 'Usually, it is recommended to take Lokast 10mg Tablet in the evening when it is being used for asthma and allergic rhinitis (cough and cold due to allergy). However, the exact reason for this is not yet known. Some studies have shown that there is no difference in effectiveness whether Lokast 10mg Tablet is taken in the evening or morning. Hence, take the medicine as directed by your doctor.'),
(31208, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'Is Lokast 10mg Tablet a steroid?', 'No, Lokast 10mg Tablet is not a steroid. It is a leukotriene blocker. Leukotrienes are natural substances released during an allergic reaction which causes constriction of muscles of airway. It can also cause allergy symptoms. This medicine blocks leukotrienes which helps in relieving symptoms of asthma and allergic rhinitis.'),
(31209, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'Does Lokast 10mg Tablet make you drowsy?', 'An uncommon side effect of Lokast 10mg Tablet is drowsiness. It can also cause dizziness. Avoid driving or operating heavy machinery until you know how the medicine affects you. Consult your doctor if you experience these side effects.'),
(31210, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'Can I drink alcohol while taking Lokast 10mg Tablet?', 'Consumption of alcohol should be restricted while taking Lokast 10mg Tablet as it may cause dizziness and drowsiness as a side effect. Also, liver disorders caused as side effect of Lokast 10mg Tablet may occur more commonly with use of alcohol.'),
(31211, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'Can Lokast 10mg Tablet cause mood changes?', 'Yes, although uncommonly but Lokast 10mg Tablet may cause mood changes. The symptoms of mood change include anxiety, agitation, aggressive behaviour or hostility, irritability, and restlessness. One may also experience depression and suicidal tendency. Consult your doctor immediately in case you develop any of these symptoms.'),
(31212, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'Can Lokast 10mg Tablet cause weird dreams?', 'Yes, in rare cases Lokast 10mg Tablet may cause night mares, sleeplessness, and sleep walking. You should contact your doctor if these symptoms persist.'),
(31213, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'How should Lokast 10mg Tablet be taken?', 'Lokast 10mg Tablet should be taken exactly as directed by your doctor. The medicine should be used preferably in the evening with or without food when being used for asthma. Whereas, for allergic rhinitis, it can be taken at any time of the day but at the same time each day. But,  if you are taking it to avoid breathing difficulties during exercise, it should be taken 2 hours before exercise.'),
(31214, 'Lokast 10mg Tablet', 'Cassel Research Laboratories Pvt Ltd', 'Lokast 10mg Tablet', 'How should Lokast 10mg Tablet be given to children?', 'It can be directly given in the mouth or dissolve in 1 teaspoonful of cold or room temperature baby formula or breast milk. It can also be used with 1 spoonful of mashed carrots, applesauce, rice, or ice-cream. Remember to give the mixture within 15 minutes of making it.'),
(31215, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'Is Lokat Eye Drop an antibiotic or steroid?', 'No, Lokat Eye Drop is neither an antibiotic nor a steroid. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines. It is used to relieve moderate to severe pain and inflammation.'),
(31216, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'Is Lokat Eye Drop a good painkiller?', 'Lokat Eye Drop is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain, such as sprains, strains and other injuries. It is also helpful in the treatment of different types of arthritis and gout. Along with that, it can be used to reduce pain and inflammation which follows after a surgery.'),
(31217, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'Is Lokat Eye Drop safe?', 'Lokat Eye Drop is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31218, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'What should I do if I forget to take a dose of Lokat Eye Drop?', 'If you forget a dose of Lokat Eye Drop, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31219, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'Is Lokat Eye Drop effective?', 'Lokat Eye Drop is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lokat Eye Drop too early, the symptoms may return or worsen.'),
(31220, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'What are the side effects of Lokat Eye Drop?', 'Some common side effects associated with Lokat Eye Drop include vomiting, stomach pain, nausea and indigestion. However, these side effects are usually not bothersome and resolve in some time. If they persist for a longer duration or worry you, consult your doctor.'),
(31221, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'Is Lokat Eye Drop an antibiotic or steroid?', 'No, Lokat Eye Drop is neither an antibiotic nor a steroid. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines. It is used to relieve moderate to severe pain and inflammation.'),
(31222, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'Is Lokat Eye Drop a good painkiller?', 'Lokat Eye Drop is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain, such as sprains, strains and other injuries. It is also helpful in the treatment of different types of arthritis and gout. Along with that, it can be used to reduce pain and inflammation which follows after a surgery.'),
(31223, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'Is Lokat Eye Drop safe?', 'Lokat Eye Drop is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31224, 'Lokat Eye Drop', 'Jawa Pharmaceuticals  Pvt Ltd', 'Lokat Eye Drop', 'What should I do if I forget to take a dose of Lokat Eye Drop?', 'If you forget a dose of Lokat Eye Drop, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31225, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. Can I take Lokcid 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lokcid 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(31226, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. What should I know before taking Lokcid 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(31227, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. Can Lokcid 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(31228, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. For how long can Lokcid 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(31229, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. Can Lokcid 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(31230, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. What are the long term side effects of Lokcid 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31231, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. Does Lokcid 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(31232, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Q. Can Lokcid 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(31233, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Can I take Lokcid 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lokcid 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(31234, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'What should I know before taking Lokcid 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(31235, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Can Lokcid 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(31236, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'For how long can Lokcid 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(31237, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Can Lokcid 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(31238, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'What are the long term side effects of Lokcid 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31239, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Does Lokcid 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(31240, 'Lokcid 20mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcid 20mg Capsule', 'Can Lokcid 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(31241, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'What is Lokcidom 10 mg/20 mg Capsule?', 'Lokcidom 10 mg/20 mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(31242, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'What are the contraindications of Lokcidom 10 mg/20 mg Capsule?', 'The use of Lokcidom 10 mg/20 mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(31243, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'Can the use of Lokcidom 10 mg/20 mg Capsule cause dry mouth?', 'Yes, the use of Lokcidom 10 mg/20 mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(31244, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'Can the use of Lokcidom 10 mg/20 mg Capsule cause diarrhea?', 'Yes, the use of Lokcidom 10 mg/20 mg Capsule can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(31245, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'What is the recommended storage condition for Lokcidom 10 mg/20 mg Capsule?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31246, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'Is it safe to use Lokcidom 10 mg/20 mg Capsule?', 'Yes, Lokcidom 10 mg/20 mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31247, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'What is the best time to take Lokcidom 10 mg/20 mg Capsule?', 'It is best to take Lokcidom 10 mg/20 mg Capsule before the first meal of the day or on an empty stomach.'),
(31248, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'Can the use of Lokcidom 10 mg/20 mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lokcidom 10 mg/20 mg Capsule can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(31249, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'What is Lokcidom 10 mg/20 mg Capsule?', 'Lokcidom 10 mg/20 mg Capsule is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(31250, 'Lokcidom 10 mg/20 mg Capsule', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Capsule', 'What are the contraindications of Lokcidom 10 mg/20 mg Capsule?', 'The use of Lokcidom 10 mg/20 mg Capsule is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(31251, 'Lokcidom 10 mg/20 mg Tablet', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Tablet', 'Q. Is it safe to use Lokcidom 10 mg/20 mg Tablet?', 'Yes, Lokcidom 10 mg/20 mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31252, 'Lokcidom 10 mg/20 mg Tablet', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Tablet', 'Q. What are the contraindications of Lokcidom 10 mg/20 mg Tablet?', 'The use of Lokcidom 10 mg/20 mg Tablet is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(31253, 'Lokcidom 10 mg/20 mg Tablet', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Tablet', 'Q. What is the best time to take Lokcidom 10 mg/20 mg Tablet?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(31254, 'Lokcidom 10 mg/20 mg Tablet', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Tablet', 'Q. Can the use of Lokcidom 10 mg/20 mg Tablet cause abnormal heartbeat?', 'Yes, the use of Lokcidom 10 mg/20 mg Tablet can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(31255, 'Lokcidom 10 mg/20 mg Tablet', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Tablet', 'Q. Does the use of Lokcidom 10 mg/20 mg Tablet lead to dry mouth?', 'Yes, the use of Lokcidom 10 mg/20 mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(31256, 'Lokcidom 10 mg/20 mg Tablet', 'Tas Med India Pvt Ltd', 'Lokcidom 10 mg/20 mg Tablet', 'Q. What is the recommended storage condition for Lokcidom 10 mg/20 mg Tablet?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31257, 'Lokcin 100mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin 100mg Tablet', 'Can the use of Lokcin 100mg Tablet cause diarrhea?', 'Yes, the use of Lokcin 100mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(31258, 'Lokcin 100mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin 100mg Tablet', 'Can I stop taking Lokcin 100mg Tablet when I feel better?', 'No, do not stop taking Lokcin 100mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(31259, 'Lokcin 100mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin 100mg Tablet', 'Can the use of Lokcin 100mg Tablet increase the risk of muscle damage?', 'Yes, use of Lokcin 100mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lokcin 100mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31260, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'What is Lokcin OZ 200mg/500mg Tablet?', 'Lokcin OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(31261, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'Is it safe to use Lokcin OZ 200mg/500mg Tablet?', 'Lokcin OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(31262, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Lokcin OZ 200mg/500mg Tablet?', 'The use of Lokcin OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(31263, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lokcin OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(31264, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Lokcin OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(31265, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'Can I stop taking Lokcin OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Lokcin OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(31266, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Lokcin OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(31267, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'Can I take alcohol while on Lokcin OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Lokcin OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31268, 'Lokcin OZ 200mg/500mg Tablet', 'Nascent Medicare Pvt Ltd', 'Lokcin OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Lokcin OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31269, 'Lok-H 50mg/12.5mg Tablet', 'Mepfarma India Pvt Ltd', 'Lok-H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31270, 'Lok-H 50mg/12.5mg Tablet', 'Mepfarma India Pvt Ltd', 'Lok-H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Lok-H 50mg/12.5mg Tablet?', 'Yes, the use of Lok-H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31271, 'Lok-H 50mg/12.5mg Tablet', 'Mepfarma India Pvt Ltd', 'Lok-H 50mg/12.5mg Tablet', 'Can I use Lok-H 50mg/12.5mg Tablet in pregnancy?', 'No, Lok-H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Lok-H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(31272, 'Lok-H 50mg/12.5mg Tablet', 'Mepfarma India Pvt Ltd', 'Lok-H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Lok-H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lok-H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(31273, 'Lok-H 50mg/12.5mg Tablet', 'Mepfarma India Pvt Ltd', 'Lok-H 50mg/12.5mg Tablet', 'Can I stop taking Lok-H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Lok-H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Lok-H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(31274, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'Can I take Lokit 10mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lokit 10mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(31275, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'What should I know before taking Lokit 10mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(31276, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'Can Lokit 10mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(31277, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'For how long can Lokit 10mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(31278, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'Can Lokit 10mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(31279, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'What are the long term side effects of Lokit 10mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31280, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'Does Lokit 10mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(31281, 'Lokit 10mg Capsule', 'Kopran Ltd', 'Lokit 10mg Capsule', 'Can Lokit 10mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(31282, 'Loklin 5mg Tablet', 'Meditech Pharma World', 'Loklin 5mg Tablet', 'What is Loklin 5mg Tablet used for?', 'Loklin 5mg Tablet is used to lower blood sugar levels in patients with type 2 diabetes. In these patients, the body does not make enough insulin or is not able to use the produced insulin properly. Loklin 5mg Tablet is used in patients whose blood sugar levels cannot be adequately controlled with one oral anti-diabetic medicine. It should be taken along with a balanced diet combined with exercise. Loklin 5mg Tablet may be used together with other anti-diabetic medicines such as metformin, sulphonylureas (e.g. glimepiride, glipizide), empagliflozin, or insulin.'),
(31283, 'Loklin 5mg Tablet', 'Meditech Pharma World', 'Loklin 5mg Tablet', 'When should I take Loklin 5mg Tablet? What if I miss a dose?', 'Loklin 5mg Tablet can be taken with or without food at any time of the day. If a dose is missed, it should be taken as soon as the patient remembers. A double dose should not be taken on the same day.'),
(31284, 'Loklin 5mg Tablet', 'Meditech Pharma World', 'Loklin 5mg Tablet', 'Is Loklin 5mg Tablet bad for kidneys?', 'No, there is no evidence that Loklin 5mg Tablet is bad for kidneys. It can be used without any dose adjustment in patients with renal impairment.'),
(31285, 'Loklin 5mg Tablet', 'Meditech Pharma World', 'Loklin 5mg Tablet', 'Is Loklin 5mg Tablet safe to be taken for a long time?', 'Yes, it is safe to take Loklin 5mg Tablet for a long time. Its long-term use which can be months or even years has not shown any harmful effects.'),
(31286, 'Loklin 5mg Tablet', 'Meditech Pharma World', 'Loklin 5mg Tablet', 'For how long I have to take Loklin 5mg Tablet? Can I stop the medication?', 'You should keep taking Loklin 5mg Tablet as directed by your doctor. You may have to take it for the rest of your life depending on how well you can tolerate it. Do not abruptly stop taking the medicine, as it keeps your blood sugar levels under control and prevents health problems which may cause serious problems if left unchecked.'),
(31287, 'Lokof Syrup', 'Abron Healthcare', 'Lokof Syrup', 'Can the use of Lokof Syrup cause sleepiness or drowsiness?', 'Yes, Lokof Syrup may make you feel drowsy or may cause you to fall asleep during your daily activities. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medicine affects you. Inform your doctor if you experience such episodes while taking this medicine.'),
(31288, 'Lokof Syrup', 'Abron Healthcare', 'Lokof Syrup', 'Will Lokof Syrup be more effective if taken in more than recommended dose?', 'No, taking a higher than the recommended dose may not be more effective, rather it may increase the chances of having some serious side effects and toxicity. If you experience increased severity of your symptoms that are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(31289, 'Lokof Syrup', 'Abron Healthcare', 'Lokof Syrup', 'Can I breastfeed while taking Lokof Syrup?', 'No, it is not advisable to breastfeed while using Lokof Syrup. This medicine contains Chlorpheniramine, an antihistamine, which can pass into the breast milk and may harm the baby. Inform your doctor that you are breastfeeding if you are advised to take this medicine.'),
(31290, 'Lokof Syrup', 'Abron Healthcare', 'Lokof Syrup', 'What are the instructions for storage and disposal of Lokof Syrup?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31291, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'Does Lokpam 100mg Tablet make you sleepy?', 'Yes, Lokpam 100mg Tablet may make you sleepy, drowsy, less alert, and may even blur your vision. If you experience these symptoms you should not drive or operate heavy machinery.'),
(31292, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'When should I take Lokpam 100mg Tablet?', 'The time of taking the medicine will be suggested by your doctor depending upon your dose. Doses up to 300 mg can be taken anytime of the day but preferably at the same time each day. Doses more than 300 mg can be taken half in the morning and half in the evening. You can take the medicine during or between meals.'),
(31293, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'What does Lokpam 100mg Tablet do to the brain?', 'Lokpam 100mg Tablet belongs to antipsychotic class of medicines. It acts against dopamine receptors in the brain. Dopamine is a neurotransmitter which helps in regulating mood and behavior. Schizophrenia is associated with an overactivity of dopamine in the brain, and this overactivity may cause delusions and hallucinations. Lokpam 100mg Tablet prevents this excessive activity of dopamine in the brain which helps in treating symptoms of schizophrenia.'),
(31294, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'Does Lokpam 100mg Tablet help with anxiety?', 'No, there is no data to support the use of Lokpam 100mg Tablet in the treatment of anxiety. On the contrary, anxiety is a common side effect of Lokpam 100mg Tablet.'),
(31295, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'Can I stop taking Lokpam 100mg Tablet after some time?', 'No, you should keep taking Lokpam 100mg Tablet as long as your doctor has advised. Do not stop the medication even if you feel better. Stopping it suddenly may worsen your condition or symptoms may come back. Talk to your doctor who will gradually reduce your dose.'),
(31296, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'Who should not take Lokpam 100mg Tablet?', 'You should not take Lokpam 100mg Tablet if you are under 15 years of age, allergic to it, have breast cancer or a tumor known as prolactinoma. Avoid taking Lokpam 100mg Tablet if you are breastfeeding, have tumor of adrenal glands (pheochromocytoma), or if you are taking certain medicines like levodopa, medicines to treat heart rhythm disorders, etc.'),
(31297, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'Is Lokpam 100mg Tablet addictive?', 'No, there is no evidence to say that Lokpam 100mg Tablet causes addiction. Also, its use is not known to have any tendency for abuse.'),
(31298, 'Lokpam 100mg Tablet', 'KC Laboratories', 'Lokpam 100mg Tablet', 'What are the withdrawal symptoms of Lokpam 100mg Tablet?', 'Suddenly stopping Lokpam 100mg Tablet may cause withdrawal symptoms which include nausea, vomiting, sweating, difficulty sleeping, extreme restlessness, muscle stiffness or abnormal movements, or your original condition may come back. Therefore, it is advised to gradually reduce the dose of Lokpam 100mg Tablet.'),
(31299, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'Does Lokpam 50mg Tablet make you sleepy?', 'Yes, Lokpam 50mg Tablet may make you sleepy, drowsy, less alert, and may even blur your vision. If you experience these symptoms you should not drive or operate heavy machinery.'),
(31300, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'When should I take Lokpam 50mg Tablet?', 'The time of taking the medicine will be suggested by your doctor depending upon your dose. Doses up to 300 mg can be taken anytime of the day but preferably at the same time each day. Doses more than 300 mg can be taken half in the morning and half in the evening. You can take the medicine during or between meals.'),
(31301, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'What does Lokpam 50mg Tablet do to the brain?', 'Lokpam 50mg Tablet belongs to antipsychotic class of medicines. It acts against dopamine receptors in the brain. Dopamine is a neurotransmitter which helps in regulating mood and behavior. Schizophrenia is associated with an overactivity of dopamine in the brain, and this overactivity may cause delusions and hallucinations. Lokpam 50mg Tablet prevents this excessive activity of dopamine in the brain which helps in treating symptoms of schizophrenia.'),
(31302, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'Does Lokpam 50mg Tablet help with anxiety?', 'No, there is no data to support the use of Lokpam 50mg Tablet in the treatment of anxiety. On the contrary, anxiety is a common side effect of Lokpam 50mg Tablet.'),
(31303, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'Can I stop taking Lokpam 50mg Tablet after some time?', 'No, you should keep taking Lokpam 50mg Tablet as long as your doctor has advised. Do not stop the medication even if you feel better. Stopping it suddenly may worsen your condition or symptoms may come back. Talk to your doctor who will gradually reduce your dose.'),
(31304, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'Who should not take Lokpam 50mg Tablet?', 'You should not take Lokpam 50mg Tablet if you are under 15 years of age, allergic to it, have breast cancer or a tumor known as prolactinoma. Avoid taking Lokpam 50mg Tablet if you are breastfeeding, have tumor of adrenal glands (pheochromocytoma), or if you are taking certain medicines like levodopa, medicines to treat heart rhythm disorders, etc.'),
(31305, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'Is Lokpam 50mg Tablet addictive?', 'No, there is no evidence to say that Lokpam 50mg Tablet causes addiction. Also, its use is not known to have any tendency for abuse.'),
(31306, 'Lokpam 50mg Tablet', 'KC Laboratories', 'Lokpam 50mg Tablet', 'What are the withdrawal symptoms of Lokpam 50mg Tablet?', 'Suddenly stopping Lokpam 50mg Tablet may cause withdrawal symptoms which include nausea, vomiting, sweating, difficulty sleeping, extreme restlessness, muscle stiffness or abnormal movements, or your original condition may come back. Therefore, it is advised to gradually reduce the dose of Lokpam 50mg Tablet.'),
(31307, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'What is Lokrab D 30mg/20mg Capsule SR?', 'Lokrab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(31308, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'What are the contraindications of Lokrab D 30mg/20mg Capsule SR?', 'The use of Lokrab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(31309, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'Can the use of Lokrab D 30mg/20mg Capsule SR cause dry mouth?', 'Yes, the use of Lokrab D 30mg/20mg Capsule SR can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(31310, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'Can the use of Lokrab D 30mg/20mg Capsule SR cause diarrhea?', 'Yes, the use of Lokrab D 30mg/20mg Capsule SR can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(31311, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'What is the recommended storage condition for Lokrab D 30mg/20mg Capsule SR?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31312, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'Is it safe to use Lokrab D 30mg/20mg Capsule SR?', 'Yes, Lokrab D 30mg/20mg Capsule SR is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31313, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'What is the best time to take Lokrab D 30mg/20mg Capsule SR?', 'It is best to take Lokrab D 30mg/20mg Capsule SR before the first meal of the day or on an empty stomach.'),
(31314, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'Can the use of Lokrab D 30mg/20mg Capsule SR cause abnormal heartbeat?', 'Yes, the use of Lokrab D 30mg/20mg Capsule SR can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(31315, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'What is Lokrab D 30mg/20mg Capsule SR?', 'Lokrab D 30mg/20mg Capsule SR is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(31316, 'Lokrab D 30mg/20mg Capsule SR', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab D 30mg/20mg Capsule SR', 'What are the contraindications of Lokrab D 30mg/20mg Capsule SR?', 'The use of Lokrab D 30mg/20mg Capsule SR is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(31317, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'What is Lokrab DM 10mg/20mg Tablet?', 'Lokrab DM 10mg/20mg Tablet is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(31318, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'What are the contraindications of Lokrab DM 10mg/20mg Tablet?', 'The use of Lokrab DM 10mg/20mg Tablet is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(31319, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'Can the use of Lokrab DM 10mg/20mg Tablet cause dry mouth?', 'Yes, the use of Lokrab DM 10mg/20mg Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(31320, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'Can the use of Lokrab DM 10mg/20mg Tablet cause diarrhea?', 'Yes, the use of Lokrab DM 10mg/20mg Tablet can cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and if you notice any signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(31321, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'What is the recommended storage condition for Lokrab DM 10mg/20mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31322, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'Is it safe to use Lokrab DM 10mg/20mg Tablet?', 'Yes, Lokrab DM 10mg/20mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31323, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'What is the best time to take Lokrab DM 10mg/20mg Tablet?', 'It is best to take Lokrab DM 10mg/20mg Tablet before the first meal of the day or on an empty stomach.'),
(31324, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'Can the use of Lokrab DM 10mg/20mg Tablet cause abnormal heartbeat?', 'Yes, the use of Lokrab DM 10mg/20mg Tablet can increase the risk of developing irregular heartbeat (serious arrhythmias). This is a serious side effect but the chance that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(31325, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'What is Lokrab DM 10mg/20mg Tablet?', 'Lokrab DM 10mg/20mg Tablet is a combination of two medicines: Domperidone and Rabeprazole. This combination is used to treat acidity and heartburn or gastroesophageal reflux disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. Domperidone helps to control vomiting by increasing the movement of the gut, allowing the food to move more easily through the stomach.'),
(31326, 'Lokrab DM 10mg/20mg Tablet', 'Biochemix Health Care Pvt. Ltd.', 'Lokrab DM 10mg/20mg Tablet', 'What are the contraindications of Lokrab DM 10mg/20mg Tablet?', 'The use of Lokrab DM 10mg/20mg Tablet is considered to be harmful for patients with a known hypersensitivity to rabeprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(31327, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(31328, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'Can I decrease the dose of Lokset M Kid 2.5mg/5mg Tablet by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(31329, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'How should Lokset M Kid 2.5mg/5mg Tablet be stored?', 'Lokset M Kid 2.5mg/5mg Tablet should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(31330, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'Can Lokset M Kid 2.5mg/5mg Tablet make my child sleepy?', 'Lokset M Kid 2.5mg/5mg Tablet causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(31331, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lokset M Kid 2.5mg/5mg Tablet?', 'No, don’t start Lokset M Kid 2.5mg/5mg Tablet without speaking to your child’s doctor. Moreover, Lokset M Kid 2.5mg/5mg Tablet can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(31332, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lokset M Kid 2.5mg/5mg Tablet usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(31333, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'My child is suffering from a mood disorder. Is it safe to give Lokset M Kid 2.5mg/5mg Tablet to my child?', 'Some studies show that Lokset M Kid 2.5mg/5mg Tablet can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(31334, 'Lokset M Kid 2.5mg/5mg Tablet', 'Dokcare Life Sciences', 'Lokset M Kid 2.5mg/5mg Tablet', 'Can I use Lokset M Kid 2.5mg/5mg Tablet for treating acute asthma attacks in my child?', 'Lokset M Kid 2.5mg/5mg Tablet should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(31335, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(31336, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'Can I decrease the dose of Lokset M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(31337, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'How should Lokset M Syrup be stored?', 'Lokset M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(31338, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'Can Lokset M Syrup make my child sleepy?', 'Lokset M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(31339, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lokset M Syrup?', 'No, don’t start Lokset M Syrup without speaking to your child’s doctor. Moreover, Lokset M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(31340, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lokset M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(31341, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lokset M Syrup to my child?', 'Some studies show that Lokset M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(31342, 'Lokset M Syrup', 'Dokcare Life Sciences', 'Lokset M Syrup', 'Can I use Lokset M Syrup for treating acute asthma attacks in my child?', 'Lokset M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(31343, 'Lokset M Tablet', 'Dokcare Life Sciences', 'Lokset M Tablet', 'What is Lokset M Tablet?', 'Lokset M Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(31344, 'Lokset M Tablet', 'Dokcare Life Sciences', 'Lokset M Tablet', 'Can the use of Lokset M Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lokset M Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(31345, 'Lokset M Tablet', 'Dokcare Life Sciences', 'Lokset M Tablet', 'Can Lokset M Tablet be stopped when allergy symptoms are relieved?', 'No, Lokset M Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(31346, 'Lokset M Tablet', 'Dokcare Life Sciences', 'Lokset M Tablet', 'Can the use of Lokset M Tablet cause dry mouth?', 'Yes, the use of Lokset M Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(31347, 'Lokset M Tablet', 'Dokcare Life Sciences', 'Lokset M Tablet', 'Can I drink alcohol while taking Lokset M Tablet?', 'No, do not take alcohol while taking Lokset M Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lokset M Tablet.'),
(31348, 'Lokset M Tablet', 'Dokcare Life Sciences', 'Lokset M Tablet', 'Will Lokset M Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lokset M Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(31349, 'Lokset M Tablet', 'Dokcare Life Sciences', 'Lokset M Tablet', 'What are the instructions for storage and disposal of Lokset M Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31350, 'Lokset Tablet', 'Dokcare Life Sciences', 'Lokset Tablet', 'Is Lokset Tablet a steroid? What is it used for?', 'No, Lokset Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(31351, 'Lokset Tablet', 'Dokcare Life Sciences', 'Lokset Tablet', 'Does Lokset Tablet make you tired and drowsy?', 'Yes, Lokset Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(31352, 'Lokset Tablet', 'Dokcare Life Sciences', 'Lokset Tablet', 'How long does it take for Lokset Tablet to work?', 'Lokset Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(31353, 'Lokset Tablet', 'Dokcare Life Sciences', 'Lokset Tablet', 'Can I take Lokset Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lokset Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(31354, 'Lokset Tablet', 'Dokcare Life Sciences', 'Lokset Tablet', 'Is it safe to take Lokset Tablet for a long time?', 'Lokset Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lokset Tablet for only as long as you need it.'),
(31355, 'Lokset Tablet', 'Dokcare Life Sciences', 'Lokset Tablet', 'For how long should I continue Lokset Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lokset Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lokset Tablet'),
(31356, 'Lo-Kuf-BM Syrup', 'Ceverus Pharma Private Limited', 'Lo-Kuf-BM Syrup', 'My child has a cough with no mucus. Can I give Lo-Kuf-BM Syrup?', 'No, Lo-Kuf-BM Syrup is advised for the treatment of wet cough. It aims to expel the mucus from the airway tract, thereby relieving your child from throat irritation, congestion and rendering him a soothing effect. Whereas, for a dry cough, cough suppressants are a better option. So, it will be wise to ask your child’s doctor before giving any medicine to your child.'),
(31357, 'Lo-Kuf-BM Syrup', 'Ceverus Pharma Private Limited', 'Lo-Kuf-BM Syrup', 'What if my child takes too much Lo-Kuf-BM Syrup?', 'An overdose or a prolonged intake of Lo-Kuf-BM Syrup may cause serious side effects like seizures, rapid heart rate, and excess salivation. Make sure to give this medicine to your child strictly as per the prescribed dose, time, and way. You must also ensure not to stop the medication abruptly even if your child starts to feel better. Sudden withdrawal of this medicine may worsen your child’s condition.'),
(31358, 'Lo-Kuf-BM Syrup', 'Ceverus Pharma Private Limited', 'Lo-Kuf-BM Syrup', 'My child has a severe cough. Can I give him two cough medicines together?', 'Do not give your child more than one cough or cold medicine at a time unless advised by your child’s doctor. In case of confusion, always consult your child’s doctor before giving any medications to your child.'),
(31359, 'Lo-Kuf-BM Syrup', 'Ceverus Pharma Private Limited', 'Lo-Kuf-BM Syrup', 'Can I give my cough medicine to my child?', 'Never give your child the medicines that have been recommended for use by adults. Children should only be given the medicines that have been formulated for them, else it may cause unwanted side effects. Check the label of the medicine properly before giving it to your child. Follow the prescribed dose strictly.'),
(31360, 'Lo-Kuf-BM Syrup', 'Ceverus Pharma Private Limited', 'Lo-Kuf-BM Syrup', 'How should Lo-Kuf-BM Syrup be stored?', 'Lo-Kuf-BM Syrup should be stored at room temperature, in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(31361, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'Is Lol 200mg Tablet safe?', 'Lol 200mg Tablet is generally considered a safe medicine if it is taken as directed by the doctor. The side effects that result with use of Lol 200mg Tablet occur during the first few weeks of treatment and disappear with time.'),
(31362, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'Why is Lol 200mg Tablet used in pregnancy?', 'It is important to appropriately treat high blood pressure in pregnancy. Studies have shown that poorly controlled high blood pressure in pregnancy can lead to an increased risk of certain birth defects, stillbirth, reduced growth of the baby within the womb, and premature birth. For some women with high blood pressure, treatment with Lol 200mg Tablet in pregnancy might be considered to be the best option. Your doctor is the best person to help you decide what is right for you and your baby.'),
(31363, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'Does Lol 200mg Tablet cause itching?', 'Yes, itchy skin, a rash or tingly scalp are common side effects of Lol 200mg Tablet. Speak to your doctor if the itchiness or rash gets worse or lasts for more than a week.'),
(31364, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'Is it safe to use Lol 200mg Tablet in patients with diabetes?', 'Diabetic patients while using Lol 200mg Tablet should regularly check the blood sugar levels. Lol 200mg Tablet may make it difficult to recognize the warning signs of low blood sugar such as shaking and a racing heartbeat. Consult your doctor if the blood sugar levels are reduced while taking Lol 200mg Tablet.'),
(31365, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'Does Lol 200mg Tablet affect heart rate?', 'Lol 200mg Tablet slows down your heart rate and makes it easier for your heart to pump blood around your body. Your doctor may regularly check your blood pressure and pulse (heart rate) during therapy to determine your response to the medicine.'),
(31366, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'What can happen if I stop taking Lol 200mg Tablet?', 'Do not stop taking Lol 200mg Tablet without talking to your doctor. Stopping Lol 200mg Tablet suddenly may cause serious heart problems such as angina (chest pain) or even a heart attack. If you need to stop taking Lol 200mg Tablet, your doctor will reduce the dose slowly over 1 or 2 weeks.'),
(31367, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'Will I need to stop taking Lol 200mg Tablet before surgery?', 'Your doctor may advise you to stop taking Lol 200mg Tablet for 24 hours before surgery. This is because Lol 200mg Tablet can lower your blood pressure too much when its use is combined with some anesthetics. So, tell your doctor that you\'re taking Lol 200mg Tablet if you\'re going to be put to sleep using a general anesthetic or are scheduled to have any kind of major operation.'),
(31368, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'What happens on taking more than the recommended dose of Lol 200mg Tablet?', 'Taking more than the recommended dose of Lol 200mg Tablet can lead to a drop in blood pressure and slowing of the heart rate, difficulty breathing, or a drop in blood sugar, which can cause sweating or confusion. If you take too many tablets, tell your doctor immediately or contact the hospital emergency department nearest to you.'),
(31369, 'Lol 200mg Tablet', 'Bageo Pharmaceuticals Pvt Ltd', 'Lol 200mg Tablet', 'How long does Lol 200mg Tablet take to work?', 'If you are taking Lol 200mg Tablet for high blood pressure, it may lower your BP within 1-3 hours of taking it. You may not feel any different, but this does not mean that the medicine is not working, and it is important to keep taking it. On the other hand, if you are taking it for angina, it will probably take a few days for the medicine to reduce the pain. You may still have chest pain during this time or it may get worse.'),
(31370, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'My doctor has prescribed Lol 80mg Capsule SR even though my blood pressure is within normal limits. Is it because of the chest pain that I complained of?', 'Yes, it is possible that your doctor prescribed Lol 80mg Capsule SR for chest pain (angina). Lol 80mg Capsule SR is a beta-blocker that is used to lower high blood pressure, prevent angina, treat or prevent heart attacks or reduce your risk of heart problems following a heart attack. Lol 80mg Capsule SR is also used to treat irregularities in the heartbeat, including those caused by anxiety, essential tremor (shaking of the head, chin and hands). It also prevents migraine headaches, overactive thyroid (thyrotoxicosis and hyperthyroidism), and bleeding in the food pipe caused by high blood pressure.'),
(31371, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'When can I expect relief in my symptoms after starting Lol 80mg Capsule SR for high blood pressure?', 'Lol 80mg Capsule SR usually starts working within a few hours of taking it. However, it may take up to a week to see the full benefits of the symptoms of high blood pressure or heart conditions. You may not notice any difference, but that does not mean it is not working. However, keep taking this medicine as prescribed by your doctor because you will still be getting its full benefits.'),
(31372, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'Can Lol 80mg Capsule SR be used in asthmatics?', 'No, Lol 80mg Capsule SR cannot be used in asthmatics. This is because using Lol 80mg Capsule SR in asthma patients can cause breathing problems, which may trigger an asthma attack. Always inform your doctor if you have or ever had asthma or any episodes of difficulty breathing, before starting treatment with Lol 80mg Capsule SR.'),
(31373, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'What if I forget to take a dose of Lol 80mg Capsule SR?', 'If you forget a dose of Lol 80mg Capsule SR, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose at the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31374, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'Can I stop taking Lol 80mg Capsule SR as my chest pain is under control?', 'No, you should not stop taking Lol 80mg Capsule SR suddenly because that may worsen your angina or may cause a heart attack. Tell your doctor and if there is a need to stop Lol 80mg Capsule SR, your doctor will reduce your dose gradually over a period of a few weeks.'),
(31375, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'Does Lol 80mg Capsule SR relieve anxiety?', 'Yes, Lol 80mg Capsule SR helps relieve the symptoms of anxiety such as irritability, restlessness, excessive worry, lack of concentration, racing or unwanted thoughts, fatigue, insomnia (lack of sleep), palpitations (irregular heart rate), or trembling. The dose and duration of taking Lol 80mg Capsule SR will be suggested by your doctor, depending on whether your symptoms are a recurring problem or occur only in stressful conditions. However, Lol 80mg Capsule SR is usually given for the short-term treatment of anxiety. If you have any doubts, consult your doctor.'),
(31376, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'What other lifestyle changes should I make while taking Lol 80mg Capsule SR?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lol 80mg Capsule SR. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lol 80mg Capsule SR and to keep yourself healthy.'),
(31377, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'Is Lol 80mg Capsule SR effective?', 'Lol 80mg Capsule SR is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lol 80mg Capsule SR too early, the symptoms may return or worsen.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31378, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'What if I take an overdose of Lol 80mg Capsule SR?', 'If you take an overdose of Lol 80mg Capsule SR you may experience symptoms such as slow heartbeat, trembling, difficulty breathing, or dizziness. However, the response of taking too much of Lol 80mg Capsule SR varies from person to person. It would be best to consult a doctor if you think you have taken more than what you are prescribed.'),
(31379, 'Lol 80mg Capsule SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Capsule SR', 'Is Lol 80mg Capsule SR safe?', 'Lol 80mg Capsule SR is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31380, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'My doctor has prescribed Lol 80mg Tablet SR even though my blood pressure is within normal limits. Is it because of the chest pain that I complained of?', 'Yes, it is possible that your doctor prescribed Lol 80mg Tablet SR for chest pain (angina). Lol 80mg Tablet SR is a beta-blocker that is used to lower high blood pressure, prevent angina, treat or prevent heart attacks or reduce your risk of heart problems following a heart attack. Lol 80mg Tablet SR is also used to treat irregularities in the heartbeat, including those caused by anxiety, essential tremor (shaking of the head, chin and hands). It also prevents migraine headaches, overactive thyroid (thyrotoxicosis and hyperthyroidism), and bleeding in the food pipe caused by high blood pressure.'),
(31381, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'When can I expect relief in my symptoms after starting Lol 80mg Tablet SR for high blood pressure?', 'Lol 80mg Tablet SR usually starts working within a few hours of taking it. However, it may take up to a week to see the full benefits of the symptoms of high blood pressure or heart conditions. You may not notice any difference, but that does not mean it is not working. However, keep taking this medicine as prescribed by your doctor because you will still be getting its full benefits.'),
(31382, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'Can Lol 80mg Tablet SR be used in asthmatics?', 'No, Lol 80mg Tablet SR cannot be used in asthmatics. This is because using Lol 80mg Tablet SR in asthma patients can cause breathing problems, which may trigger an asthma attack. Always inform your doctor if you have or ever had asthma or any episodes of difficulty breathing, before starting treatment with Lol 80mg Tablet SR.'),
(31383, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'What if I forget to take a dose of Lol 80mg Tablet SR?', 'If you forget a dose of Lol 80mg Tablet SR, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose at the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31384, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'Can I stop taking Lol 80mg Tablet SR as my chest pain is under control?', 'No, you should not stop taking Lol 80mg Tablet SR suddenly because that may worsen your angina or may cause a heart attack. Tell your doctor and if there is a need to stop Lol 80mg Tablet SR, your doctor will reduce your dose gradually over a period of a few weeks.'),
(31385, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'Does Lol 80mg Tablet SR relieve anxiety?', 'Yes, Lol 80mg Tablet SR helps relieve the symptoms of anxiety such as irritability, restlessness, excessive worry, lack of concentration, racing or unwanted thoughts, fatigue, insomnia (lack of sleep), palpitations (irregular heart rate), or trembling. The dose and duration of taking Lol 80mg Tablet SR will be suggested by your doctor, depending on whether your symptoms are a recurring problem or occur only in stressful conditions. However, Lol 80mg Tablet SR is usually given for the short-term treatment of anxiety. If you have any doubts, consult your doctor.'),
(31386, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'What other lifestyle changes should I make while taking Lol 80mg Tablet SR?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lol 80mg Tablet SR. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lol 80mg Tablet SR and to keep yourself healthy.'),
(31387, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'Is Lol 80mg Tablet SR effective?', 'Lol 80mg Tablet SR is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lol 80mg Tablet SR too early, the symptoms may return or worsen.'),
(31388, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'What if I take an overdose of Lol 80mg Tablet SR?', 'If you take an overdose of Lol 80mg Tablet SR you may experience symptoms such as slow heartbeat, trembling, difficulty breathing, or dizziness. However, the response of taking too much of Lol 80mg Tablet SR varies from person to person. It would be best to consult a doctor if you think you have taken more than what you are prescribed.'),
(31389, 'Lol 80mg Tablet SR', 'Orchid Chemicals & Pharmaceuticals Ltd', 'Lol 80mg Tablet SR', 'Is Lol 80mg Tablet SR safe?', 'Lol 80mg Tablet SR is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31390, 'Lola 5mg Tablet', 'Lavender Pharma', 'Lola 5mg Tablet', 'Is Lola 5mg Tablet a steroid? What is it used for?', 'No, Lola 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(31391, 'Lola 5mg Tablet', 'Lavender Pharma', 'Lola 5mg Tablet', 'Does Lola 5mg Tablet make you tired and drowsy?', 'Yes, Lola 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(31392, 'Lola 5mg Tablet', 'Lavender Pharma', 'Lola 5mg Tablet', 'How long does it take for Lola 5mg Tablet to work?', 'Lola 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(31393, 'Lola 5mg Tablet', 'Lavender Pharma', 'Lola 5mg Tablet', 'Can I take Lola 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lola 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(31394, 'Lola 5mg Tablet', 'Lavender Pharma', 'Lola 5mg Tablet', 'Is it safe to take Lola 5mg Tablet for a long time?', 'Lola 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lola 5mg Tablet for only as long as you need it.'),
(31395, 'Lola 5mg Tablet', 'Lavender Pharma', 'Lola 5mg Tablet', 'For how long should I continue Lola 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lola 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lola 5mg Tablet'),
(31396, 'Lolamp Cream', 'BAMPS Health Care', 'Lolamp Cream', 'Is Lolamp Cream safe in pregnancy?', 'Lolamp Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lolamp Cream.'),
(31397, 'Lolamp Cream', 'BAMPS Health Care', 'Lolamp Cream', 'Is Lolamp Cream fungicidal or Fungistatic?', 'Lolamp Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(31398, 'Lolamp Cream', 'BAMPS Health Care', 'Lolamp Cream', 'How to use Lolamp Cream?', 'Use Lolamp Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(31399, 'Lolamp Cream', 'BAMPS Health Care', 'Lolamp Cream', 'How long does it take for Lolamp Cream to work?', 'For different ailments, Lolamp Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(31400, 'Lolamp Cream', 'BAMPS Health Care', 'Lolamp Cream', 'How should I store Lolamp Cream?', 'Keep Lolamp Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(31401, 'Lolamp Cream', 'BAMPS Health Care', 'Lolamp Cream', 'Is Lolamp Cream safe to use in children?', 'Yes, Lolamp Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(31402, 'Lolaspey 5gm Infusion', 'Strathspey Labs Pvt Ltd', 'Lolaspey 5gm Infusion', 'Is it ok to take alcohol when taking Lolaspey 5gm Infusion?', 'No, it is not recommended to take alcohol when on Lolaspey 5gm Infusion. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(31403, 'Lolaspey 5gm Infusion', 'Strathspey Labs Pvt Ltd', 'Lolaspey 5gm Infusion', 'What is Lolaspey 5gm Infusion?', 'Lolaspey 5gm Infusion is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(31404, 'Lolaspey 5gm Infusion', 'Strathspey Labs Pvt Ltd', 'Lolaspey 5gm Infusion', 'What is the use of Lolaspey 5gm Infusion in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Lolaspey 5gm Infusion works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(31405, 'Lolaspey 5gm Infusion', 'Strathspey Labs Pvt Ltd', 'Lolaspey 5gm Infusion', 'How is Lolaspey 5gm Infusion given?', 'Lolaspey 5gm Infusion can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(31406, 'Lolatrol 5gm Injection', 'Scutonix Lifesciences Pvt Ltd', 'Lolatrol 5gm Injection', 'Is it ok to take alcohol when taking Lolatrol 5gm Injection?', 'No, it is not recommended to take alcohol when on Lolatrol 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(31407, 'Lolatrol 5gm Injection', 'Scutonix Lifesciences Pvt Ltd', 'Lolatrol 5gm Injection', 'What is Lolatrol 5gm Injection?', 'Lolatrol 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(31408, 'Lolatrol 5gm Injection', 'Scutonix Lifesciences Pvt Ltd', 'Lolatrol 5gm Injection', 'What is the use of Lolatrol 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Lolatrol 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(31409, 'Lolatrol 5gm Injection', 'Scutonix Lifesciences Pvt Ltd', 'Lolatrol 5gm Injection', 'How is Lolatrol 5gm Injection given?', 'Lolatrol 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(31410, 'Lolday 250mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 250mg Tablet', 'Is Lolday 250mg Tablet safe?', 'Lolday 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31411, 'Lolday 250mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 250mg Tablet', 'What if I forget to take a dose of Lolday 250mg Tablet?', 'If you forget a dose of Lolday 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31412, 'Lolday 250mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 250mg Tablet', 'Can the use of Lolday 250mg Tablet cause diarrhea?', 'Yes, the use of Lolday 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(31413, 'Lolday 250mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 250mg Tablet', 'Can I stop taking Lolday 250mg Tablet when I feel better?', 'No, do not stop taking Lolday 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lolday 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lolday 250mg Tablet in the dose and duration advised by the doctor.'),
(31414, 'Lolday 250mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 250mg Tablet', 'Can the use of Lolday 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lolday 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lolday 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31415, 'Lolday 500mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 500mg Tablet', 'Is Lolday 500mg Tablet safe?', 'Lolday 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31416, 'Lolday 500mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 500mg Tablet', 'What if I forget to take a dose of Lolday 500mg Tablet?', 'If you forget a dose of Lolday 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31417, 'Lolday 500mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 500mg Tablet', 'Can the use of Lolday 500mg Tablet cause diarrhea?', 'Yes, the use of Lolday 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(31418, 'Lolday 500mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 500mg Tablet', 'Can I stop taking Lolday 500mg Tablet when I feel better?', 'No, do not stop taking Lolday 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lolday 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lolday 500mg Tablet in the dose and duration advised by the doctor.'),
(31419, 'Lolday 500mg Tablet', 'Wellmark Lifesciences Private Limited', 'Lolday 500mg Tablet', 'Can the use of Lolday 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lolday 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lolday 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31420, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(31421, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Can Lo-Ldl 10mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lo-Ldl 10mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(31422, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Is Lo-Ldl 10mg Tablet used for lowering cholesterol?', 'Lo-Ldl 10mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lo-Ldl 10mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lo-Ldl 10mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(31423, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Can Lo-Ldl 10mg Tablet be prescribed to children?', 'Lo-Ldl 10mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(31424, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Is Lo-Ldl 10mg Tablet a blood thinner?', 'No, Lo-Ldl 10mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(31425, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Will taking Lo-Ldl 10mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lo-Ldl 10mg Tablet may increase this risk slightly. This is because Lo-Ldl 10mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(31426, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'For how long do I need to take Lo-Ldl 10mg Tablet? Is it safe for long-term use?', 'You may need to take Lo-Ldl 10mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lo-Ldl 10mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(31427, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Does Lo-Ldl 10mg Tablet cause weight loss?', 'No, Lo-Ldl 10mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lo-Ldl 10mg Tablet.'),
(31428, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Can I stop taking Lo-Ldl 10mg Tablet?', 'No, you should not stop taking Lo-Ldl 10mg Tablet without consulting your doctor. If you think that Lo-Ldl 10mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(31429, 'Lo-Ldl 10mg Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl 10mg Tablet', 'Can I take alcohol with Lo-Ldl 10mg Tablet?', 'No, it is not advised to take alcohol with Lo-Ldl 10mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lo-Ldl 10mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lo-Ldl 10mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(31430, 'Lo-Ldl-F Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl-F Tablet', 'Can Lo-Ldl-F Tablet cause liver damage?', 'Lo-Ldl-F Tablet contains Atorvastatin and Fenofibrate. A very rare (1 in 10000 patient) side effect of this medicine is liver damage. Use of this medicine should be avoided in patients with underlying liver disease. Contact your doctor immediately if you notice any early signs and symptoms of liver damage. These symptoms may include fever, rash, loss of appetite, nausea, vomiting, fatigue, stomach pain, dark urine, yellow skin or eyes, or abnormal liver enzymes.'),
(31431, 'Lo-Ldl-F Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl-F Tablet', 'Can Lo-Ldl-F Tablet cause muscle pain?', 'Yes, Lo-Ldl-F Tablet can cause muscle pain by injuring the muscles. Talk to your doctor as soon as possible if you experience muscle pain, weakness or muscle cramps. It can be a sign of any muscle injury caused due to Lo-Ldl-F Tablet.'),
(31432, 'Lo-Ldl-F Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl-F Tablet', 'What lifestyle changes should be adopted while taking Lo-Ldl-F Tablet?', 'Making lifestyle changes can boost your health while taking Lo-Ldl-F Tablet. Stop smoking, as smoking increases your risk of having a heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and decrease your risk of heart attack.'),
(31433, 'Lo-Ldl-F Tablet', 'Diacardus Pharmacy Pvt Ltd', 'Lo-Ldl-F Tablet', 'What medicines should I avoid while taking Lo-Ldl-F Tablet?', 'The use of Lo-Ldl-F Tablet along with certain medicines can cause serious problems. Consult your doctor before taking any prescription or non-prescription medicine along with Lo-Ldl-F Tablet.'),
(31434, 'Lolicag 1% Cream', 'Cagrus Biopharma', 'Lolicag 1% Cream', 'Is Lolicag 1% Cream safe in pregnancy?', 'Lolicag 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lolicag 1% Cream.'),
(31435, 'Lolicag 1% Cream', 'Cagrus Biopharma', 'Lolicag 1% Cream', 'Is Lolicag 1% Cream fungicidal or Fungistatic?', 'Lolicag 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(31436, 'Lolicag 1% Cream', 'Cagrus Biopharma', 'Lolicag 1% Cream', 'How to use Lolicag 1% Cream?', 'Use Lolicag 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(31437, 'Lolicag 1% Cream', 'Cagrus Biopharma', 'Lolicag 1% Cream', 'How long does it take for Lolicag 1% Cream to work?', 'For different ailments, Lolicag 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(31438, 'Lolicag 1% Cream', 'Cagrus Biopharma', 'Lolicag 1% Cream', 'How should I store Lolicag 1% Cream?', 'Keep Lolicag 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(31439, 'Lolicag 1% Cream', 'Cagrus Biopharma', 'Lolicag 1% Cream', 'Is Lolicag 1% Cream safe to use in children?', 'Yes, Lolicag 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(31440, 'Lolicon Cream', 'Toubib Pharma Private Limited', 'Lolicon Cream', 'Is Lolicon Cream safe in pregnancy?', 'Lolicon Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lolicon Cream.'),
(31441, 'Lolicon Cream', 'Toubib Pharma Private Limited', 'Lolicon Cream', 'Is Lolicon Cream fungicidal or Fungistatic?', 'Lolicon Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(31442, 'Lolicon Cream', 'Toubib Pharma Private Limited', 'Lolicon Cream', 'How to use Lolicon Cream?', 'Use Lolicon Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(31443, 'Lolicon Cream', 'Toubib Pharma Private Limited', 'Lolicon Cream', 'How long does it take for Lolicon Cream to work?', 'For different ailments, Lolicon Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(31444, 'Lolicon Cream', 'Toubib Pharma Private Limited', 'Lolicon Cream', 'How should I store Lolicon Cream?', 'Keep Lolicon Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(31445, 'Lolicon Cream', 'Toubib Pharma Private Limited', 'Lolicon Cream', 'Is Lolicon Cream safe to use in children?', 'Yes, Lolicon Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.'),
(31446, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'What is Loliflam Tablet?', 'Loliflam Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(31447, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Is it safe to use Loliflam Tablet?', 'Loliflam Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(31448, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Can I stop taking Loliflam Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Loliflam Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(31449, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Can the use of Loliflam Tablet cause nausea and vomiting?', 'Yes, the use of Loliflam Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(31450, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Can the use of Loliflam Tablet cause dizziness?', 'Yes, the use of Loliflam Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(31451, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Are there any specific contraindications associated with the use of Loliflam Tablet?', 'The use of Loliflam Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(31452, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Can Loliflam Tablet be taken with vitamin B-complex?', 'Yes, Loliflam Tablet can be taken with vitamin B-complex preparations. While Loliflam Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(31453, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Is Loliflam Tablet helpful in relieving stomach pain?', 'No, Loliflam Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(31454, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Can the use of Loliflam Tablet cause damage to kidneys?', 'Yes, the long-term use of Loliflam Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(31455, 'Loliflam Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Loliflam Tablet', 'Is it safe to take a higher dose of Loliflam Tablet than recommended?', 'No, taking higher than the recommended dose of Loliflam Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(31456, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(31457, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Can Lolip 20mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lolip 20mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(31458, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Is Lolip 20mg Tablet used for lowering cholesterol?', 'Lolip 20mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lolip 20mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lolip 20mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(31459, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Can Lolip 20mg Tablet be prescribed to children?', 'Lolip 20mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(31460, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Is Lolip 20mg Tablet a blood thinner?', 'No, Lolip 20mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(31461, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Will taking Lolip 20mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lolip 20mg Tablet may increase this risk slightly. This is because Lolip 20mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(31462, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'For how long do I need to take Lolip 20mg Tablet? Is it safe for long-term use?', 'You may need to take Lolip 20mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lolip 20mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(31463, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Does Lolip 20mg Tablet cause weight loss?', 'No, Lolip 20mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lolip 20mg Tablet.'),
(31464, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Can I stop taking Lolip 20mg Tablet?', 'No, you should not stop taking Lolip 20mg Tablet without consulting your doctor. If you think that Lolip 20mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(31465, 'Lolip 20mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 20mg Tablet', 'Can I take alcohol with Lolip 20mg Tablet?', 'No, it is not advised to take alcohol with Lolip 20mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lolip 20mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lolip 20mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(31466, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(31467, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Can Lolip 40mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lolip 40mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(31468, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Is Lolip 40mg Tablet used for lowering cholesterol?', 'Lolip 40mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lolip 40mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lolip 40mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(31469, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Can Lolip 40mg Tablet be prescribed to children?', 'Lolip 40mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(31470, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Is Lolip 40mg Tablet a blood thinner?', 'No, Lolip 40mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(31471, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Will taking Lolip 40mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lolip 40mg Tablet may increase this risk slightly. This is because Lolip 40mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(31472, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'For how long do I need to take Lolip 40mg Tablet? Is it safe for long-term use?', 'You may need to take Lolip 40mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lolip 40mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(31473, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Does Lolip 40mg Tablet cause weight loss?', 'No, Lolip 40mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lolip 40mg Tablet.'),
(31474, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Can I stop taking Lolip 40mg Tablet?', 'No, you should not stop taking Lolip 40mg Tablet without consulting your doctor. If you think that Lolip 40mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(31475, 'Lolip 40mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 40mg Tablet', 'Can I take alcohol with Lolip 40mg Tablet?', 'No, it is not advised to take alcohol with Lolip 40mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lolip 40mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lolip 40mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(31476, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(31477, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Can Lolip 5mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lolip 5mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(31478, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Is Lolip 5mg Tablet used for lowering cholesterol?', 'Lolip 5mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lolip 5mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lolip 5mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(31479, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Can Lolip 5mg Tablet be prescribed to children?', 'Lolip 5mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(31480, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Is Lolip 5mg Tablet a blood thinner?', 'No, Lolip 5mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(31481, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Will taking Lolip 5mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lolip 5mg Tablet may increase this risk slightly. This is because Lolip 5mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31482, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'For how long do I need to take Lolip 5mg Tablet? Is it safe for long-term use?', 'You may need to take Lolip 5mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lolip 5mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(31483, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Does Lolip 5mg Tablet cause weight loss?', 'No, Lolip 5mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lolip 5mg Tablet.'),
(31484, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Can I stop taking Lolip 5mg Tablet?', 'No, you should not stop taking Lolip 5mg Tablet without consulting your doctor. If you think that Lolip 5mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(31485, 'Lolip 5mg Tablet', 'Kamron Laboratories Ltd', 'Lolip 5mg Tablet', 'Can I take alcohol with Lolip 5mg Tablet?', 'No, it is not advised to take alcohol with Lolip 5mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lolip 5mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lolip 5mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(31486, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'What should I know about high cholesterol?', 'Cholesterol is a type of fat present in your blood. Total cholesterol is determined by the total amount of LDL and HDL cholesterol in the body. LDL cholesterol is called “bad” cholesterol. Bad cholesterol can build up in the wall of your blood vessels and slow or obstruct blood flow to your heart, brain, and other organs. This can cause heart disease and stroke. HDL cholesterol is called “good” cholesterol as it prevents the bad cholesterol from building up in the blood vessels. High levels of triglycerides are also harmful to you.'),
(31487, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Can Lolip 80mg Tablet cause muscle problems or muscle injury?', 'Yes, taking Lolip 80mg Tablet can cause muscle problems or muscle injury. This is because of the reduced oxygen supply to the muscle cells which leads to fatigue, muscle pain, tenderness, or muscle weakness. The soreness may be significant enough to interfere with your daily activities. Do not take it lightly and consult your doctor to know about ways to prevent this and to avoid making it worse.'),
(31488, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Is Lolip 80mg Tablet used for lowering cholesterol?', 'Lolip 80mg Tablet belongs to a group of medicines known as statins, which lowers the level of lipids or fats. Lolip 80mg Tablet is used to lower lipids known as cholesterol and triglycerides in the blood when a low-fat diet and lifestyle changes fail to lower the levels of cholesterol and triglycerides. If you are at an increased risk of heart disease, Lolip 80mg Tablet can also be used to reduce such risk even if your cholesterol levels are normal. You should maintain a standard cholesterol-lowering diet during treatment.'),
(31489, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Can Lolip 80mg Tablet be prescribed to children?', 'Lolip 80mg Tablet is for adults and children aged 10 years or more whose cholesterol levels do not come down enough with exercise and a low-fat diet. It is not approved for use in patients younger than 10 years old.'),
(31490, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Is Lolip 80mg Tablet a blood thinner?', 'No, Lolip 80mg Tablet is not a blood thinner. It is a cholesterol-lowering medicine. It works by slowing down the production of cholesterol in the body. This further decreases the amount of cholesterol that may build up on the walls of the arteries and block blood flow to the part of the body. By lowering the levels of cholesterol and triglycerides it prevents the chances of stroke and heart attack.'),
(31491, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Will taking Lolip 80mg Tablet lead to an increase in my risk of diabetes?', 'If you are at high risk of developing type 2 diabetes, taking Lolip 80mg Tablet may increase this risk slightly. This is because Lolip 80mg Tablet can raise your blood sugar a little. If you already have type 2 diabetes, your doctor may advise monitoring your blood sugar levels more closely for the first few months. Tell your doctor if you find it harder to control your blood sugar.'),
(31492, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'For how long do I need to take Lolip 80mg Tablet? Is it safe for long-term use?', 'You may need to take Lolip 80mg Tablet life long or for the duration prescribed by your doctor. The benefits will only continue for as long as you take it. If you stop taking Lolip 80mg Tablet without starting a different treatment, your cholesterol levels may rise again. It is considered to be safe and has few side effects if taken as directed by the doctor.'),
(31493, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Does Lolip 80mg Tablet cause weight loss?', 'No, Lolip 80mg Tablet has not been reported to cause weight loss. However, weight gain has been reported as an uncommon side effect. Please consult your doctor if you experience weight loss while taking Lolip 80mg Tablet.'),
(31494, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Can I stop taking Lolip 80mg Tablet?', 'No, you should not stop taking Lolip 80mg Tablet without consulting your doctor. If you think that Lolip 80mg Tablet is causing side effects, you should consult your doctor who may accordingly lower your dose or change your medicine.'),
(31495, 'Lolip 80mg Tablet', 'Cortina Laboratories Pvt Ltd', 'Lolip 80mg Tablet', 'Can I take alcohol with Lolip 80mg Tablet?', 'No, it is not advised to take alcohol with Lolip 80mg Tablet. This is because the risk of developing liver problems increases if you drink alcohol while taking this medicine. Moreover, there is a significant increase in the triglyceride levels if Lolip 80mg Tablet is taken along with alcohol. This can further lead to liver damage and also worsen some of the side effects such as muscle pain, muscle weakness, and tenderness. People with liver problems are therefore advised, not to take Lolip 80mg Tablet without consulting the doctor. They should also refrain from consuming alcohol while taking this medicine to get maximum benefit.'),
(31496, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'What is Lolipan 40 Tablet used for?', 'Lolipan 40 Tablet is used for the treatment of peptic ulcer disease, reflux esophagitis or gastroesophageal reflux disease (GERD). Lolipan 40 Tablet prevents acidity associated with use of painkillers. It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach and thus relieves your symptoms.'),
(31497, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'How long does it take for Lolipan 40 Tablet to work?', 'You should start to feel better within 2 to 3 days. It may take up to 4 weeks for Lolipan 40 Tablet to work properly so you may still have some symptoms during this time.'),
(31498, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'Is a single dose of Lolipan 40 Tablet sufficient?', 'No, a single dose may not be sufficient. However, with only a few doses of Lolipan 40 Tablet you may get relief with the symptoms. Lolipan 40 Tablet is usually needed only for a short term or upto 2 weeks for heartburn, indigestion, acid reflux. However, if need arises, such as for treating peptic ulcer disease and Zollinger Ellison syndrome (ZES), Lolipan 40 Tablet may be prescribed for a long term duration as well. Please consult your doctor if you do not feel better even after taking Lolipan 40 Tablet regularly for 2 weeks as prescribed.'),
(31499, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'Is Lolipan 40 Tablet safe?', 'Yes, Lolipan 40 Tablet is relatively safe. Most of the people who take Lolipan 40 Tablet do not get a side effect. It is advised to be taken as directed by the doctor for maximum benefits.'),
(31500, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'Can I take Lolipan 40 Tablet for a long term?', 'Lolipan 40 Tablet is usually prescribed for short-term use only. However, if the need arises, such as for treating peptic ulcer disease, ZE syndrome, etc. Lolipan 40 Tablet may be prescribed for a long-term duration as well. Long-term use may carry an increased risk for side effects and must be discussed with the doctor. Please use Lolipan 40 Tablet as advised by your doctor and under their supervision.'),
(31501, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'What are the long term side effects of Lolipan 40 Tablet?', 'If Lolipan 40 Tablet is used for more than 3 months, certain long-term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31502, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'What is the best time to take Lolipan 40 Tablet?', 'Usually, Lolipan 40 Tablet is taken once a day, first thing in the morning. If you take Lolipan 40 Tablet twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not to be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(31503, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'Can I stop taking Lolipan 40 Tablet if I feel better?', 'If you have been taking Lolipan 40 Tablet for a long time. Stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes or if you wish to come off Lolipan 40 Tablet.'),
(31504, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'Does Lolipan 40 Tablet cause weight gain?', 'Although rare but long-term treatment with Lolipan 40 Tablet may cause weight gain. The reason could be the relief from reflux symptoms which could make you eat more. Consult your doctor for any weight-related concern.'),
(31505, 'Lolipan 40 Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan 40 Tablet', 'Can I take alcohol with Lolipan 40 Tablet?', 'No, alcohol intake is not advised with Lolipan 40 Tablet. Alcohol itself does not affect the working of Lolipan 40 Tablet, but it can increase the acid production. This may further cause worsening of your symptoms.'),
(31506, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. What is Lolipan D Tablet?', 'Lolipan D Tablet is a combination of two medicines: Domperidone and Pantoprazole. This combination is used to treat acidity, heartburn or Gastroesophageal Reflux Disease (GERD); a condition where the acid in the stomach flows back up into the food pipe (esophagus). It is also used to treat gastric and duodenal ulcers. On the other hand,  Domperidone helps to control vomiting. It increases the movement of the stomach and intestines which allows the food to move more easily through the stomach.'),
(31507, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. Is it safe to use Lolipan D Tablet?', 'Lolipan D Tablet is safe for most of the patients. However, in some patients, it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache, and other uncommon and rare side effects. If you experience any persistent problem while taking this medication, inform your doctor.'),
(31508, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q.  Are there any specific contraindications associated with the use of Lolipan D Tablet?', 'The use of Lolipan D Tablet is considered to be harmful for patients with a known hypersensitivity to pantoprazole or domperidone or any other inactive ingredients of the medicine. Caution is advised in patients with underlying kidney or liver disease.'),
(31509, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. Can the use of Lolipan D Tablet cause dry mouth?', 'Yes, the use of Lolipan D Tablet can cause dry mouth. Dryness of mouth occurs due to Domperidone. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have a dry mouth, try to use alcohol-free mouthwash as its use can increase the risk of tooth decay.'),
(31510, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. Can the use of Lolipan D Tablet cause diarrhea?', 'Yes, the use of Lolipan D Tablet can cause diarrhea. In case, you experience diarrhea, drink plenty of water or other fluids by taking small frequent sips. Avoid taking fatty or fried foods along with this medication. Talk to your doctor if diarrhea persists and you notice signs of dehydration, like less urination with dark colored and strong-smelling urine.'),
(31511, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. What are the instructions for storage and disposal of Lolipan D Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31512, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. What is Lolipan D Tablet price?', 'You can get Lolipan D Tablet at a price of Rs 119 per strip online or from any chemist shop with your doctor’s prescription.'),
(31513, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. While taking Lolipan D Tablet, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example, fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.u003cbr>'),
(31514, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. Can I take alcohol while taking Lolipan D Tablet?', 'No, alcohol intake is not advised with Lolipan D Tablet. Alcohol itself does not affect the working of this medicine, but it can increase acid production. This may further cause the worsening of your symptoms.'),
(31515, 'Lolipan D Tablet', 'DRS Alexia Pharma Pvt Ltd', 'Lolipan D Tablet', 'Q. Can I stop taking Lolipan D Tablet if I feel better?', 'If you have been taking Lolipan D Tablet for a long time, stopping it abruptly may lead to increased acid production, thereby worsening your symptoms. Therefore, you must discuss any dose changes with your doctor.u003cbr>'),
(31516, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'What is Lolish 10mg Tablet? What is it used for?', 'Lolish 10mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(31517, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'What should I tell my doctor before taking Lolish 10mg Tablet?', 'Before taking Lolish 10mg Tablet you must tell your doctor if you are allergic to Lolish 10mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lolish 10mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(31518, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'What time of the day should I take Lolish 10mg Tablet?', 'Lolish 10mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lolish 10mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lolish 10mg Tablet, please consult your doctor.'),
(31519, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'I feel better after taking Lolish 10mg Tablet, can I stop taking it?', 'No, continue taking Lolish 10mg Tablet even if you feel better and your blood pressure is under control. Stopping Lolish 10mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(31520, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'Will Lolish 10mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lolish 10mg Tablet may make you feel dizzy or lightheaded. If Lolish 10mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(31521, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'What other lifestyle changes should I make while taking Lolish 10mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lolish 10mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lolish 10mg Tablet and to keep yourself healthy.'),
(31522, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'I have diabetes. Does Lolish 10mg Tablet have any effect on blood sugar levels?', 'Yes, Lolish 10mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(31523, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'After starting Lolish 10mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lolish 10mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lolish 10mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lolish 10mg Tablet, the cough may take a few days to a month to resolve completely.'),
(31524, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'Can Lolish 10mg Tablet affect my fertility?', 'There is no evidence that Lolish 10mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lolish 10mg Tablet is not recommended in pregnancy.'),
(31525, 'Lolish 10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 10mg Tablet', 'Can Lolish 10mg Tablet increase potassium levels? If so, what should be done?', 'Lolish 10mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lolish 10mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(31526, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'What is Lolish 2.5mg Tablet? What is it used for?', 'Lolish 2.5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(31527, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'What should I tell my doctor before taking Lolish 2.5mg Tablet?', 'Before taking Lolish 2.5mg Tablet you must tell your doctor if you are allergic to Lolish 2.5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lolish 2.5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(31528, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'What time of the day should I take Lolish 2.5mg Tablet?', 'Lolish 2.5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lolish 2.5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lolish 2.5mg Tablet, please consult your doctor.'),
(31529, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'I feel better after taking Lolish 2.5mg Tablet, can I stop taking it?', 'No, continue taking Lolish 2.5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lolish 2.5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(31530, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'Will Lolish 2.5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lolish 2.5mg Tablet may make you feel dizzy or lightheaded. If Lolish 2.5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(31531, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'What other lifestyle changes should I make while taking Lolish 2.5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lolish 2.5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lolish 2.5mg Tablet and to keep yourself healthy.'),
(31532, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'I have diabetes. Does Lolish 2.5mg Tablet have any effect on blood sugar levels?', 'Yes, Lolish 2.5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(31533, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'After starting Lolish 2.5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lolish 2.5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lolish 2.5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lolish 2.5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(31534, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'Can Lolish 2.5mg Tablet affect my fertility?', 'There is no evidence that Lolish 2.5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lolish 2.5mg Tablet is not recommended in pregnancy.'),
(31535, 'Lolish 2.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 2.5mg Tablet', 'Can Lolish 2.5mg Tablet increase potassium levels? If so, what should be done?', 'Lolish 2.5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lolish 2.5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(31536, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'What is Lolish 5mg Tablet? What is it used for?', 'Lolish 5mg Tablet belongs to a group of medicines known as angiotensin-converting enzyme (ACE) inhibitors. It is used to treat high blood pressure (hypertension). It relaxes and widens the blood vessels, making it easier for the blood to pass through the vessels. As a result of this, the heart does not have to work more to push the blood. Since the workload on the heart is reduced, it helps to lower the blood pressure and thus reduces the risk of heart attack and stroke.'),
(31537, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'What should I tell my doctor before taking Lolish 5mg Tablet?', 'Before taking Lolish 5mg Tablet you must tell your doctor if you are allergic to Lolish 5mg Tablet or any of its ingredients. You must tell the doctor if you have any problems related to heart, liver, kidneys (if you are on dialysis) or blood, such as a low white blood cell count (neutropenia or agranulocytosis). Inform your doctor if you have diabetes, irregular blood pressure or if you have recently had diarrhea or vomiting. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Consult your doctor before taking Lolish 5mg Tablet if you are planning to conceive, if you are pregnant or breastfeeding to avoid any harmful effects on the baby.'),
(31538, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'What time of the day should I take Lolish 5mg Tablet?', 'Lolish 5mg Tablet should be taken at the same time each day to reduce the chances of a missed dose. Take it in the dose and duration prescribed by the doctor. Your doctor may advise you to take your first dose before bedtime, because it can make you dizzy. After the first dose, if you do not feel dizzy, you may take Lolish 5mg Tablet at any time of the day. Your dose will depend on the condition you are being treated for and therefore, it will vary from person to person. If you experience any side effects while taking Lolish 5mg Tablet, please consult your doctor.'),
(31539, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'I feel better after taking Lolish 5mg Tablet, can I stop taking it?', 'No, continue taking Lolish 5mg Tablet even if you feel better and your blood pressure is under control. Stopping Lolish 5mg Tablet suddenly may cause your blood pressure to increase and your chances of stroke or heart attack may rise. Usually once you start taking any medicine for controlling blood pressure, you have to continue taking it life long unless you cannot tolerate it.'),
(31540, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'Will Lolish 5mg Tablet make me feel dizzy? What should I do about it?', 'Yes, Lolish 5mg Tablet may make you feel dizzy or lightheaded. If Lolish 5mg Tablet makes you feel dizzy when you stand up, try getting up very slowly or stay seated until you feel better. If you begin to feel dizzy, lie down so that you don\'t faint, then sit until you feel better. Don’t drive, do not use tools or machines and avoid anything requiring concentration while you\'re feeling dizzy or shaky.'),
(31541, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'What other lifestyle changes should I make while taking Lolish 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lolish 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lolish 5mg Tablet and to keep yourself healthy.'),
(31542, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'I have diabetes. Does Lolish 5mg Tablet have any effect on blood sugar levels?', 'Yes, Lolish 5mg Tablet may have some effect on antidiabetic medicines or insulin and may lower your blood sugar levels. Therefore, you need to check your blood sugar levels regularly.'),
(31543, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'After starting Lolish 5mg Tablet, I have developed dry cough which is very irritating and is not getting better with any medicine. What should I do now?', 'Lolish 5mg Tablet may cause dry cough, as a side effect in some people. This can be persistent and may not be relieved by any medicine. Talk to your doctor if it bothers you or if you have trouble sleeping. Your doctor may suggest ways of managing the cough or may prescribe another medicine. Remember, do not stop taking Lolish 5mg Tablet without consulting your doctor as it may increase your blood pressure and put you at a risk of developing a heart attack or stroke. Even if you stop taking Lolish 5mg Tablet, the cough may take a few days to a month to resolve completely.'),
(31544, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'Can Lolish 5mg Tablet affect my fertility?', 'There is no evidence that Lolish 5mg Tablet has any effect on fertility in both men and women. However, if you are planning to get pregnant, consult your doctor first. This is because Lolish 5mg Tablet is not recommended in pregnancy.'),
(31545, 'Lolish 5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lolish 5mg Tablet', 'Can Lolish 5mg Tablet increase potassium levels? If so, what should be done?', 'Lolish 5mg Tablet may increase potassium levels in the blood, especially if you have uncontrolled diabetes mellitus, kidney problems and dehydration. Also, potassium levels may increase in patients who are using potassium salts or medicines or are aged more than 70 years of age. Therefore, if you have any of these conditions and are using Lolish 5mg Tablet, be careful and get regular blood tests done to monitor potassium levels.'),
(31546, 'Lolocet 5mg Tablet', 'Docrix Healthcare Private Limited', 'Lolocet 5mg Tablet', 'Is Lolocet 5mg Tablet a steroid? What is it used for?', 'No, Lolocet 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(31547, 'Lolocet 5mg Tablet', 'Docrix Healthcare Private Limited', 'Lolocet 5mg Tablet', 'Does Lolocet 5mg Tablet make you tired and drowsy?', 'Yes, Lolocet 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(31548, 'Lolocet 5mg Tablet', 'Docrix Healthcare Private Limited', 'Lolocet 5mg Tablet', 'How long does it take for Lolocet 5mg Tablet to work?', 'Lolocet 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(31549, 'Lolocet 5mg Tablet', 'Docrix Healthcare Private Limited', 'Lolocet 5mg Tablet', 'Can I take Lolocet 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lolocet 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(31550, 'Lolocet 5mg Tablet', 'Docrix Healthcare Private Limited', 'Lolocet 5mg Tablet', 'Is it safe to take Lolocet 5mg Tablet for a long time?', 'Lolocet 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lolocet 5mg Tablet for only as long as you need it.'),
(31551, 'Lolocet 5mg Tablet', 'Docrix Healthcare Private Limited', 'Lolocet 5mg Tablet', 'For how long should I continue Lolocet 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lolocet 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lolocet 5mg Tablet'),
(31552, 'Lom 25 DT Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom 25 DT Tablet', 'I started Lom 25 DT Tablet and developed a rash. The doctor stopped Lom 25 DT Tablet immediately and prescribed another medicine. Why?', 'There have been reports where patients developed serious rashes within 8 weeks of starting Lom 25 DT Tablet and were hospitalized. Sometimes these rashes turn into severe skin infections and may endanger the patient’s life. Therefore, it is advised that if a patient develops rashes after starting Lom 25 DT Tablet, it should be stopped and should not be restarted. Use of Lom 25 DT Tablet is stopped even if the rashes are mild and non-serious. It is because of this that your doctor changed the medicine.'),
(31553, 'Lom 25 DT Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom 25 DT Tablet', 'How long does it take Lom 25 DT Tablet to work?', 'Though it varies from person to person, your symptoms may take about 6-8 weeks to improve.'),
(31554, 'Lom 25 DT Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom 25 DT Tablet', 'What can be the consequences of taking a higher than the recommended dose of Lom 25 DT Tablet?', 'You may experience quick and uncontrollable movements of your eye, clumsiness, and lack of coordination. High doses of Lom 25 DT Tablet may cause problems with your balance, changes in heartbeat rhythm, loss of consciousness, fits (convulsions) or coma. Even if there are no signs of discomfort, seek immediate medical attention of a doctor or nearby hospital.'),
(31555, 'Lom 25 DT Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom 25 DT Tablet', 'Can Lom 25 DT Tablet affect pregnancy?', 'Studies on the human population do not show any effects of Lom 25 DT Tablet on pregnant women or her fetus. However, it is advisable that you inform your doctor immediately if you become pregnant or are planning to get pregnant while taking Lom 25 DT Tablet. In case therapy with Lom 25 DT Tablet is considered during pregnancy, your doctor may prescribe the lowest effective dose.'),
(31556, 'Lom 25 DT Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom 25 DT Tablet', 'Can I take Lom 25 DT Tablet with other antiepileptic medicines?', 'It is important that you inform your doctor if you are already on any other antiepileptic medicines. The reason being, taking Lom 25 DT Tablet  with some antiepileptics (like valproate and carbamazepine) may increase the chances of developing side effects. Also, the dose of Lom 25 DT Tablet  may need adjustment if taken with antiepileptic medicines such as oxcarbazepine, felbamate, gabapentin, levetiracetam, pregabalin, topiramate or zonisamide.'),
(31557, 'Lom 25 DT Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom 25 DT Tablet', 'How to take Lom 25 DT Tablet?', 'Lom 25 DT Tablet can be taken with or without food. Continue taking Lom 25 DT Tablet in the dose and duration advised by the doctor to get maximum benefits of Lom 25 DT Tablet.'),
(31558, 'Lom 25 DT Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom 25 DT Tablet', 'I have symptoms of depression. Can I take Lom 25 DT Tablet?', 'Yes, you can take Lom 25 DT Tablet if you have depression symptoms. In fact, Lom 25 DT Tablet is used in preventing depression. But, do not self medicate. Do not start or stop taking Lom 25 DT Tablet on your own, unless otherwise advised by the doctor.'),
(31559, 'Lom 50mg Tablet DT', 'Shatayushi Healthcare Pvt Ltd', 'Lom 50mg Tablet DT', 'I started Lom 50mg Tablet DT and developed a rash. The doctor stopped Lom 50mg Tablet DT immediately and prescribed another medicine. Why?', 'There have been reports where patients developed serious rashes within 8 weeks of starting Lom 50mg Tablet DT and were hospitalized. Sometimes these rashes turn into severe skin infections and may endanger the patient’s life. Therefore, it is advised that if a patient develops rashes after starting Lom 50mg Tablet DT, it should be stopped and should not be restarted. Use of Lom 50mg Tablet DT is stopped even if the rashes are mild and non-serious. It is because of this that your doctor changed the medicine.'),
(31560, 'Lom 50mg Tablet DT', 'Shatayushi Healthcare Pvt Ltd', 'Lom 50mg Tablet DT', 'How long does it take Lom 50mg Tablet DT to work?', 'Though it varies from person to person, your symptoms may take about 6-8 weeks to improve.'),
(31561, 'Lom 50mg Tablet DT', 'Shatayushi Healthcare Pvt Ltd', 'Lom 50mg Tablet DT', 'What can be the consequences of taking a higher than the recommended dose of Lom 50mg Tablet DT?', 'You may experience quick and uncontrollable movements of your eye, clumsiness, and lack of coordination. High doses of Lom 50mg Tablet DT may cause problems with your balance, changes in heartbeat rhythm, loss of consciousness, fits (convulsions) or coma. Even if there are no signs of discomfort, seek immediate medical attention of a doctor or nearby hospital.'),
(31562, 'Lom 50mg Tablet DT', 'Shatayushi Healthcare Pvt Ltd', 'Lom 50mg Tablet DT', 'Can Lom 50mg Tablet DT affect pregnancy?', 'Studies on the human population do not show any effects of Lom 50mg Tablet DT on pregnant women or her fetus. However, it is advisable that you inform your doctor immediately if you become pregnant or are planning to get pregnant while taking Lom 50mg Tablet DT. In case therapy with Lom 50mg Tablet DT is considered during pregnancy, your doctor may prescribe the lowest effective dose.'),
(31563, 'Lom 50mg Tablet DT', 'Shatayushi Healthcare Pvt Ltd', 'Lom 50mg Tablet DT', 'Can I take Lom 50mg Tablet DT with other antiepileptic medicines?', 'It is important that you inform your doctor if you are already on any other antiepileptic medicines. The reason being, taking Lom 50mg Tablet DT  with some antiepileptics (like valproate and carbamazepine) may increase the chances of developing side effects. Also, the dose of Lom 50mg Tablet DT  may need adjustment if taken with antiepileptic medicines such as oxcarbazepine, felbamate, gabapentin, levetiracetam, pregabalin, topiramate or zonisamide.'),
(31564, 'Lom 50mg Tablet DT', 'Shatayushi Healthcare Pvt Ltd', 'Lom 50mg Tablet DT', 'How to take Lom 50mg Tablet DT?', 'Lom 50mg Tablet DT can be taken with or without food. Continue taking Lom 50mg Tablet DT in the dose and duration advised by the doctor to get maximum benefits of Lom 50mg Tablet DT.'),
(31565, 'Lom 50mg Tablet DT', 'Shatayushi Healthcare Pvt Ltd', 'Lom 50mg Tablet DT', 'I have symptoms of depression. Can I take Lom 50mg Tablet DT?', 'Yes, you can take Lom 50mg Tablet DT if you have depression symptoms. In fact, Lom 50mg Tablet DT is used in preventing depression. But, do not self medicate. Do not start or stop taking Lom 50mg Tablet DT on your own, unless otherwise advised by the doctor.'),
(31566, 'Lom OD 100mg Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom OD 100mg Tablet', 'I started Lom OD 100mg Tablet and developed a rash. The doctor stopped Lom OD 100mg Tablet immediately and prescribed another medicine. Why?', 'There have been reports where patients developed serious rashes within 8 weeks of starting Lom OD 100mg Tablet and were hospitalized. Sometimes these rashes turn into severe skin infections and may endanger the patient’s life. Therefore, it is advised that if a patient develops rashes after starting Lom OD 100mg Tablet, it should be stopped and should not be restarted. Use of Lom OD 100mg Tablet is stopped even if the rashes are mild and non-serious. It is because of this that your doctor changed the medicine.'),
(31567, 'Lom OD 100mg Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom OD 100mg Tablet', 'How long does it take Lom OD 100mg Tablet to work?', 'Though it varies from person to person, your symptoms may take about 6-8 weeks to improve.'),
(31568, 'Lom OD 100mg Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom OD 100mg Tablet', 'What can be the consequences of taking a higher than the recommended dose of Lom OD 100mg Tablet?', 'You may experience quick and uncontrollable movements of your eye, clumsiness, and lack of coordination. High doses of Lom OD 100mg Tablet may cause problems with your balance, changes in heartbeat rhythm, loss of consciousness, fits (convulsions) or coma. Even if there are no signs of discomfort, seek immediate medical attention of a doctor or nearby hospital.'),
(31569, 'Lom OD 100mg Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom OD 100mg Tablet', 'Can Lom OD 100mg Tablet affect pregnancy?', 'Studies on the human population do not show any effects of Lom OD 100mg Tablet on pregnant women or her fetus. However, it is advisable that you inform your doctor immediately if you become pregnant or are planning to get pregnant while taking Lom OD 100mg Tablet. In case therapy with Lom OD 100mg Tablet is considered during pregnancy, your doctor may prescribe the lowest effective dose.'),
(31570, 'Lom OD 100mg Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom OD 100mg Tablet', 'Can I take Lom OD 100mg Tablet with other antiepileptic medicines?', 'It is important that you inform your doctor if you are already on any other antiepileptic medicines. The reason being, taking Lom OD 100mg Tablet  with some antiepileptics (like valproate and carbamazepine) may increase the chances of developing side effects. Also, the dose of Lom OD 100mg Tablet  may need adjustment if taken with antiepileptic medicines such as oxcarbazepine, felbamate, gabapentin, levetiracetam, pregabalin, topiramate or zonisamide.'),
(31571, 'Lom OD 100mg Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom OD 100mg Tablet', 'How to take Lom OD 100mg Tablet?', 'Lom OD 100mg Tablet can be taken with or without food. Continue taking Lom OD 100mg Tablet in the dose and duration advised by the doctor to get maximum benefits of Lom OD 100mg Tablet.'),
(31572, 'Lom OD 100mg Tablet', 'Shatayushi Healthcare Pvt Ltd', 'Lom OD 100mg Tablet', 'I have symptoms of depression. Can I take Lom OD 100mg Tablet?', 'Yes, you can take Lom OD 100mg Tablet if you have depression symptoms. In fact, Lom OD 100mg Tablet is used in preventing depression. But, do not self medicate. Do not start or stop taking Lom OD 100mg Tablet on your own, unless otherwise advised by the doctor.'),
(31573, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'Can I take Lomac 10mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lomac 10mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(31574, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'What should I know before taking Lomac 10mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(31575, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'Can Lomac 10mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31576, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'For how long can Lomac 10mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(31577, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'Can Lomac 10mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(31578, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'What are the long term side effects of Lomac 10mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31579, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'Does Lomac 10mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(31580, 'Lomac 10mg Capsule', 'Cipla Ltd', 'Lomac 10mg Capsule', 'Can Lomac 10mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(31581, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can I take Lomac 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lomac 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(31582, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'What should I know before taking Lomac 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(31583, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can Lomac 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(31584, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'For how long can Lomac 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(31585, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can Lomac 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(31586, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'What are the long term side effects of Lomac 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31587, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Does Lomac 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(31588, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can Lomac 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(31589, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can I take Lomac 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lomac 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(31590, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'What should I know before taking Lomac 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(31591, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can Lomac 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(31592, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'For how long can Lomac 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(31593, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can Lomac 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(31594, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'What are the long term side effects of Lomac 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31595, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Does Lomac 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(31596, 'Lomac 20mg Capsule', 'Cipla Ltd', 'Lomac 20mg Capsule', 'Can Lomac 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(31597, 'Lomac D Capsule', 'Cipla Ltd', 'Lomac D Capsule', 'Is it safe to use Lomac D Capsule?', 'Yes, Lomac D Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31598, 'Lomac D Capsule', 'Cipla Ltd', 'Lomac D Capsule', 'What are the contraindications of Lomac D Capsule?', 'The use of Lomac D Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(31599, 'Lomac D Capsule', 'Cipla Ltd', 'Lomac D Capsule', 'What is the best time to take Lomac D Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(31600, 'Lomac D Capsule', 'Cipla Ltd', 'Lomac D Capsule', 'Can the use of Lomac D Capsule cause abnormal heartbeat?', 'Yes, the use of Lomac D Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(31601, 'Lomac D Capsule', 'Cipla Ltd', 'Lomac D Capsule', 'Does the use of Lomac D Capsule lead to dry mouth?', 'Yes, the use of Lomac D Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(31602, 'Lomac D Capsule', 'Cipla Ltd', 'Lomac D Capsule', 'What is the recommended storage condition for Lomac D Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31603, 'Lomadip AT 5mg/50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Lomadip AT 5mg/50mg Tablet', 'Q. What lifestyle changes should be made while using Lomadip AT 5mg/50mg Tablet?', 'Making lifestyle changes can boost your health while taking Lomadip AT 5mg/50mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(31604, 'Lomadip AT 5mg/50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Lomadip AT 5mg/50mg Tablet', 'Q. Can I stop taking Lomadip AT 5mg/50mg Tablet if I feel well?', 'No, keep using Lomadip AT 5mg/50mg Tablet as advised by your doctor, even if you feel well. Stopping Lomadip AT 5mg/50mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(31605, 'Lomadip AT 5mg/50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Lomadip AT 5mg/50mg Tablet', 'Q. Are there any special instructions regarding the storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31606, 'Lomadip AT 5mg/50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Lomadip AT 5mg/50mg Tablet', 'Q. What are the contraindications associated with the use of Lomadip AT 5mg/50mg Tablet?', 'Lomadip AT 5mg/50mg Tablet is considered to be harmful for patients who are allergic to amlodipine, atenolol or any of its ingredients. It should be avoided in patients with history of asthma or lung disease. Also, inform your doctor about your medical history and the medicines you might be taking.'),
(31607, 'Lomadip AT 5mg/50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Lomadip AT 5mg/50mg Tablet', 'Q. Can the use of Lomadip AT 5mg/50mg Tablet cause headache?', 'Yes, the use of Lomadip AT 5mg/50mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(31608, 'Lomadip AT 5mg/50mg Tablet', 'Mova Pharmaceutical Pvt Ltd', 'Lomadip AT 5mg/50mg Tablet', 'Q. Can I feel dizzy after taking Lomadip AT 5mg/50mg Tablet?', 'Yes, the use of Lomadip AT 5mg/50mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31609, 'Lomadol 100mg Injection', 'Parenteral Drugs India Ltd', 'Lomadol 100mg Injection', 'Is there anything I need to be careful about while on therapy with Lomadol 100mg Injection?', 'Lomadol 100mg Injection may cause drowsiness and dizziness, especially in the beginning of the treatment. Do not drive or work with tools or machinery if your alertness is affected. It is not advisable to drink alcohol during treatment with this medicine as it might increase sleepiness.'),
(31610, 'Lomadol 50mg Injection', 'Parenteral Drugs India Ltd', 'Lomadol 50mg Injection', 'Is there anything I need to be careful about while on therapy with Lomadol 50mg Injection?', 'Lomadol 50mg Injection may cause drowsiness and dizziness, especially in the beginning of the treatment. Do not drive or work with tools or machinery if your alertness is affected. It is not advisable to drink alcohol during treatment with this medicine as it might increase sleepiness.'),
(31611, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'Can I feel dizzy after taking Lomasar 25mg Tablet?', 'Yes, the use of Lomasar 25mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31612, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'Is Lomasar 25mg Tablet a good blood pressure medicine?', 'Lomasar 25mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(31613, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'What are some of the lifestyle changes I should make while using Lomasar 25mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lomasar 25mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lomasar 25mg Tablet and to keep yourself healthy.'),
(31614, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'For how long do I need to take Lomasar 25mg Tablet?', 'You may have to take Lomasar 25mg Tablet for a long term, even life long. Lomasar 25mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Lomasar 25mg Tablet, but do not stop taking it without consulting the doctor.'),
(31615, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'Does Lomasar 25mg Tablet cause weight gain?', 'No, Lomasar 25mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(31616, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'What are the long-term side effects of Lomasar 25mg Tablet?', 'Long-term use of Lomasar 25mg Tablet is generally considered to be safe. However, in some cases, long-term use of Lomasar 25mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(31617, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'Is Lomasar 25mg Tablet bad for the kidneys?', 'Yes, Lomasar 25mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Lomasar 25mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(31618, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'How long does Lomasar 25mg Tablet take to work?', 'The blood pressure-lowering effect of Lomasar 25mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(31619, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'When and how should Lomasar 25mg Tablet be taken?', 'Take Lomasar 25mg Tablet exactly as per your doctor’s advice. Lomasar 25mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(31620, 'Lomasar 25mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 25mg Tablet', 'What is the most important information that I need to know about Lomasar 25mg Tablet?', 'Taking Lomasar 25mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Lomasar 25mg Tablet, stop taking Lomasar 25mg Tablet and call your doctor immediately.'),
(31621, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'Can I feel dizzy after taking Lomasar 50mg Tablet?', 'Yes, the use of Lomasar 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31622, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'Is Lomasar 50mg Tablet a good blood pressure medicine?', 'Lomasar 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(31623, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'What are some of the lifestyle changes I should make while using Lomasar 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lomasar 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lomasar 50mg Tablet and to keep yourself healthy.'),
(31624, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'For how long do I need to take Lomasar 50mg Tablet?', 'You may have to take Lomasar 50mg Tablet for a long term, even life long. Lomasar 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Lomasar 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(31625, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'Does Lomasar 50mg Tablet cause weight gain?', 'No, Lomasar 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(31626, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'What are the long-term side effects of Lomasar 50mg Tablet?', 'Long-term use of Lomasar 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Lomasar 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(31627, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'Is Lomasar 50mg Tablet bad for the kidneys?', 'Yes, Lomasar 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Lomasar 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(31628, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'How long does Lomasar 50mg Tablet take to work?', 'The blood pressure-lowering effect of Lomasar 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(31629, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'When and how should Lomasar 50mg Tablet be taken?', 'Take Lomasar 50mg Tablet exactly as per your doctor’s advice. Lomasar 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(31630, 'Lomasar 50mg Tablet', 'Research Medicure Pvt Ltd', 'Lomasar 50mg Tablet', 'What is the most important information that I need to know about Lomasar 50mg Tablet?', 'Taking Lomasar 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Lomasar 50mg Tablet, stop taking Lomasar 50mg Tablet and call your doctor immediately.'),
(31631, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'What is Lomasure 250mg/50mg/325mg Tablet?', 'Lomasure 250mg/50mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(31632, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'Is it safe to use Lomasure 250mg/50mg/325mg Tablet?', 'Lomasure 250mg/50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(31633, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'Can I stop taking Lomasure 250mg/50mg/325mg Tablet when my pain is relieved?', 'Lomasure 250mg/50mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(31634, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'Can the use of Lomasure 250mg/50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lomasure 250mg/50mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(31635, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'Can the use of Lomasure 250mg/50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lomasure 250mg/50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(31636, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'Can the use of Lomasure 250mg/50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lomasure 250mg/50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(31637, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lomasure 250mg/50mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(31638, 'Lomasure 250mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 250mg/50mg/325mg Tablet', 'What are the recommended storage conditions for Lomasure 250mg/50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31639, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'What is Lomasure 500mg/50mg/325mg Tablet?', 'Lomasure 500mg/50mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(31640, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'Is it safe to use Lomasure 500mg/50mg/325mg Tablet?', 'Lomasure 500mg/50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(31641, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'Can I stop taking Lomasure 500mg/50mg/325mg Tablet when my pain is relieved?', 'Lomasure 500mg/50mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(31642, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'Can the use of Lomasure 500mg/50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lomasure 500mg/50mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(31643, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'Can the use of Lomasure 500mg/50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lomasure 500mg/50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(31644, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'Can the use of Lomasure 500mg/50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lomasure 500mg/50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(31645, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lomasure 500mg/50mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(31646, 'Lomasure 500mg/50mg/325mg Tablet', 'Avighna Medicare Pvt. Ltd.', 'Lomasure 500mg/50mg/325mg Tablet', 'What are the recommended storage conditions for Lomasure 500mg/50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31647, 'Lomat 40mg Capsule', 'Neon Laboratories Ltd', 'Lomat 40mg Capsule', 'Is Lomat 40mg Capsule effective?', 'Lomat 40mg Capsule is effective if taken as per the dose and for the duration prescribed by a doctor. It may be used in combination with other drugs/radiotherapy or surgery to get best results. Follow your doctor\'s instructions about this treatment carefully.'),
(31648, 'Lomat 40mg Capsule', 'Neon Laboratories Ltd', 'Lomat 40mg Capsule', 'How fast does Lomat 40mg Capsule work?', 'Lomat 40mg Capsule treatment includes administration of medicine in several sessions/cycles. Each cycle of Lomat 40mg Capsule is usually a single oral dose given every 6-8 weeks. Duration of treatment may depend upon the type of cancer and body\'s response to the medicine. Total treatment with Lomat 40mg Capsule may run over a few months.'),
(31649, 'Lomat 40mg Capsule', 'Neon Laboratories Ltd', 'Lomat 40mg Capsule', 'How long does Lomat 40mg Capsule stay in the body?', 'Lomat 40mg Capsule may stay in body from 16 hours to 2 days.'),
(31650, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'Is Lomax 2mg Capsule safe?', 'Lomax 2mg Capsule is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31651, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'What is Lomax 2mg Capsule used for?', 'Lomax 2mg Capsule is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31652, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'Can Lomax 2mg Capsule be used for IBS?', 'Lomax 2mg Capsule may be used in few cases of IBS but please consult your doctor before its use.'),
(31653, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'Can I take Lomax 2mg Capsule with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomax 2mg Capsule may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomax 2mg Capsule might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31654, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'Does Lomax 2mg Capsule help in opiate withdrawal?', 'Lomax 2mg Capsule is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31655, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'Is Lomax 2mg Capsule addictive?', 'No, Lomax 2mg Capsule is a safe and non-addictive anti-diarrheal drug.'),
(31656, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'Can Lomax 2mg Capsule be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomax 2mg Capsule may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31657, 'Lomax 2mg Capsule', 'Hamax Pharmaceuticals', 'Lomax 2mg Capsule', 'Can I take Lomax 2mg Capsule with cimetidine?', 'Cimetidine can decrease the metabolism of Lomax 2mg Capsule, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomax 2mg Capsule may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31658, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'Can I feel dizzy after taking Lomax 50mg Tablet?', 'Yes, the use of Lomax 50mg Tablet can make you feel dizzy. This may occur when you suddenly get up from a lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31659, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'Is Lomax 50mg Tablet a good blood pressure medicine?', 'Lomax 50mg Tablet is used by many people for reducing blood pressure levels. This medicine generally has very few side effects. In addition to lowering blood pressure, it also protects kidney function in high blood pressure patients having diabetes and impaired kidney function (diabetic nephropathy). It is also used to treat chronic heart failure when treatment with other medicines fails to prove effective. It also helps to decrease the risk of stroke in patients who are hypertensive and have thicker left ventricle (heart chamber).'),
(31660, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'What are some of the lifestyle changes I should make while using Lomax 50mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lomax 50mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables, and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lomax 50mg Tablet and to keep yourself healthy.'),
(31661, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'For how long do I need to take Lomax 50mg Tablet?', 'You may have to take Lomax 50mg Tablet for a long term, even life long. Lomax 50mg Tablet only controls blood pressure but does not cure it. Talk to your doctor in case you have any concerns regarding Lomax 50mg Tablet, but do not stop taking it without consulting the doctor.'),
(31662, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'Does Lomax 50mg Tablet cause weight gain?', 'No, Lomax 50mg Tablet does not cause weight gain. However, if the medicine starts affecting your kidney function then your body may swell due to the accumulation of water, resulting in weight gain. Call your doctor if you experience unexplained weight gain or swelling in your feet, ankles, or hands.'),
(31663, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'What are the long-term side effects of Lomax 50mg Tablet?', 'Long-term use of Lomax 50mg Tablet is generally considered to be safe. However, in some cases, long-term use of Lomax 50mg Tablet may adversely affect the functioning of the kidneys. Therefore, the doctor may prescribe regular blood tests to keep a track of how well the kidneys are working.'),
(31664, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'Is Lomax 50mg Tablet bad for the kidneys?', 'Yes, Lomax 50mg Tablet may impair the kidney function of patients, especially those who have severe heart failure, chronic kidney disease, or narrow or blocked blood vessels that lead to the kidneys (renal artery stenosis). It may also affect kidney function in patients who have experienced severe fluid loss or dehydration due to vomiting, diarrhea, or excessive use of diuretics. Therefore, Lomax 50mg Tablet should be used cautiously in these patients and their kidney function should be regularly monitored.'),
(31665, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'How long does Lomax 50mg Tablet take to work?', 'The blood pressure-lowering effect of Lomax 50mg Tablet can be seen after about 6 hours of taking it. The effect of the medicine lasts for about 24 hours. However, you may have to take the medicine for about 3-6 weeks to see the full benefits.'),
(31666, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'When and how should Lomax 50mg Tablet be taken?', 'Take Lomax 50mg Tablet exactly as per your doctor’s advice. Lomax 50mg Tablet tablets are meant for oral intake. Swallow the tablet with water. You can take it with or without food. The dose will depend on the condition you are being treated for. It is recommended that you take your first dose before bedtime, as it can make you dizzy. After taking the first dose, you can take it at any time of the day but try to take it at the same time each day.'),
(31667, 'Lomax 50mg Tablet', 'Biomax Laboratories', 'Lomax 50mg Tablet', 'What is the most important information that I need to know about Lomax 50mg Tablet?', 'Taking Lomax 50mg Tablet during the last 6 months of pregnancy can cause serious harm or even endanger the life of the unborn baby. Hence, it is important to inform the doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking Lomax 50mg Tablet, stop taking Lomax 50mg Tablet and call your doctor immediately.'),
(31668, 'Lomax H 50mg/12.5mg Tablet', 'Biomax Laboratories', 'Lomax H 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31669, 'Lomax H 50mg/12.5mg Tablet', 'Biomax Laboratories', 'Lomax H 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Lomax H 50mg/12.5mg Tablet?', 'Yes, the use of Lomax H 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31670, 'Lomax H 50mg/12.5mg Tablet', 'Biomax Laboratories', 'Lomax H 50mg/12.5mg Tablet', 'Can I use Lomax H 50mg/12.5mg Tablet in pregnancy?', 'No, Lomax H 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Lomax H 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(31671, 'Lomax H 50mg/12.5mg Tablet', 'Biomax Laboratories', 'Lomax H 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Lomax H 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lomax H 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(31672, 'Lomax H 50mg/12.5mg Tablet', 'Biomax Laboratories', 'Lomax H 50mg/12.5mg Tablet', 'Can I stop taking Lomax H 50mg/12.5mg Tablet if I feel well?', 'No, keep using Lomax H 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Lomax H 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(31673, 'Lombard 250mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 250mg Tablet', 'Is Lombard 250mg Tablet safe?', 'Lombard 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31674, 'Lombard 250mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 250mg Tablet', 'What if I forget to take a dose of Lombard 250mg Tablet?', 'If you forget a dose of Lombard 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31675, 'Lombard 250mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 250mg Tablet', 'Can the use of Lombard 250mg Tablet cause diarrhea?', 'Yes, the use of Lombard 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(31676, 'Lombard 250mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 250mg Tablet', 'Can I stop taking Lombard 250mg Tablet when I feel better?', 'No, do not stop taking Lombard 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lombard 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lombard 250mg Tablet in the dose and duration advised by the doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31677, 'Lombard 250mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 250mg Tablet', 'Can the use of Lombard 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lombard 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lombard 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31678, 'Lombard 500mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 500mg Tablet', 'Is Lombard 500mg Tablet safe?', 'Lombard 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31679, 'Lombard 500mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 500mg Tablet', 'What if I forget to take a dose of Lombard 500mg Tablet?', 'If you forget a dose of Lombard 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(31680, 'Lombard 500mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 500mg Tablet', 'Can the use of Lombard 500mg Tablet cause diarrhea?', 'Yes, the use of Lombard 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(31681, 'Lombard 500mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 500mg Tablet', 'Can I stop taking Lombard 500mg Tablet when I feel better?', 'No, do not stop taking Lombard 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lombard 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lombard 500mg Tablet in the dose and duration advised by the doctor.'),
(31682, 'Lombard 500mg Tablet', 'Vsaar Pharma Pvt Ltd', 'Lombard 500mg Tablet', 'Can the use of Lombard 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lombard 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lombard 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31683, 'Lomcap 40mg Capsule', 'GLS Pharma Ltd.', 'Lomcap 40mg Capsule', 'Q. Is Lomcap 40mg Capsule effective?', 'Lomcap 40mg Capsule is effective if taken as per the dose and for the duration prescribed by a doctor. It may be used in combination with other drugs/radiotherapy or surgery to get best results. Follow your doctor\'s instructions about this treatment carefully.'),
(31684, 'Lomcap 40mg Capsule', 'GLS Pharma Ltd.', 'Lomcap 40mg Capsule', 'Q. How fast does Lomcap 40mg Capsule work?', 'Lomcap 40mg Capsule treatment includes administration of medicine in several sessions/cycles. Each cycle of Lomcap 40mg Capsule is usually a single oral dose given every 6-8 weeks. Duration of treatment may depend upon the type of cancer and body\'s response to the medicine. Total treatment with Lomcap 40mg Capsule may run over a few months.'),
(31685, 'Lomcap 40mg Capsule', 'GLS Pharma Ltd.', 'Lomcap 40mg Capsule', 'Q. How long does Lomcap 40mg Capsule stay in the body?', 'Lomcap 40mg Capsule may stay in body from 16 hours to 2 days.'),
(31686, 'Lomecid D 10 mg/20 mg Capsule', 'Taurus Laboratories Pvt Ltd', 'Lomecid D 10 mg/20 mg Capsule', 'Is it safe to use Lomecid D 10 mg/20 mg Capsule?', 'Yes, Lomecid D 10 mg/20 mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31687, 'Lomecid D 10 mg/20 mg Capsule', 'Taurus Laboratories Pvt Ltd', 'Lomecid D 10 mg/20 mg Capsule', 'What are the contraindications of Lomecid D 10 mg/20 mg Capsule?', 'The use of Lomecid D 10 mg/20 mg Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(31688, 'Lomecid D 10 mg/20 mg Capsule', 'Taurus Laboratories Pvt Ltd', 'Lomecid D 10 mg/20 mg Capsule', 'What is the best time to take Lomecid D 10 mg/20 mg Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(31689, 'Lomecid D 10 mg/20 mg Capsule', 'Taurus Laboratories Pvt Ltd', 'Lomecid D 10 mg/20 mg Capsule', 'Can the use of Lomecid D 10 mg/20 mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lomecid D 10 mg/20 mg Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(31690, 'Lomecid D 10 mg/20 mg Capsule', 'Taurus Laboratories Pvt Ltd', 'Lomecid D 10 mg/20 mg Capsule', 'Does the use of Lomecid D 10 mg/20 mg Capsule lead to dry mouth?', 'Yes, the use of Lomecid D 10 mg/20 mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(31691, 'Lomecid D 10 mg/20 mg Capsule', 'Taurus Laboratories Pvt Ltd', 'Lomecid D 10 mg/20 mg Capsule', 'What is the recommended storage condition for Lomecid D 10 mg/20 mg Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31692, 'Lomedon 400mg Tablet', 'Cadila Pharmaceuticals Ltd', 'Lomedon 400mg Tablet', 'Can the use of Lomedon 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lomedon 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lomedon 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31693, 'Lomef 400mg Tablet', 'Torrent Pharmaceuticals Ltd', 'Lomef 400mg Tablet', 'Can the use of Lomef 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lomef 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lomef 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31694, 'Lomegen 400mg Tablet', 'Genix Pharma Ltd', 'Lomegen 400mg Tablet', 'Can the use of Lomegen 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lomegen 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lomegen 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31695, 'Lomela Cream', 'Intas Pharmaceuticals Ltd', 'Lomela Cream', 'Q. What are the instructions for the storage and disposal of Lomela Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31696, 'Lomela Cream', 'Intas Pharmaceuticals Ltd', 'Lomela Cream', 'Q. How to use Lomela Cream?', 'Follow the directions given by the doctor. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Lomela Cream is usually applied two or three times a day to the affected areas of skin.'),
(31697, 'Lomela Cream', 'Intas Pharmaceuticals Ltd', 'Lomela Cream', 'Q. Will Lomela Cream be more effective if taken more than prescribed?', 'No, Lomela Cream will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(31698, 'Lomela Cream', 'Intas Pharmaceuticals Ltd', 'Lomela Cream', 'What are the instructions for the storage and disposal of Lomela Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31699, 'Lomela Cream', 'Intas Pharmaceuticals Ltd', 'Lomela Cream', 'How to use Lomela Cream?', 'Follow the directions given by the doctor. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Lomela Cream is usually applied two or three times a day to the affected areas of skin.'),
(31700, 'Lomela Cream', 'Intas Pharmaceuticals Ltd', 'Lomela Cream', 'Will Lomela Cream be more effective if taken more than prescribed?', 'No, Lomela Cream will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(31701, 'Lomep HT 50mg/12.5mg Tablet', 'Mepro Pharmaceuticals', 'Lomep HT 50mg/12.5mg Tablet', 'Are there any special instructions regarding storage and disposal of this medicine?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31702, 'Lomep HT 50mg/12.5mg Tablet', 'Mepro Pharmaceuticals', 'Lomep HT 50mg/12.5mg Tablet', 'Can I feel dizzy after taking Lomep HT 50mg/12.5mg Tablet?', 'Yes, the use of Lomep HT 50mg/12.5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(31703, 'Lomep HT 50mg/12.5mg Tablet', 'Mepro Pharmaceuticals', 'Lomep HT 50mg/12.5mg Tablet', 'Can I use Lomep HT 50mg/12.5mg Tablet in pregnancy?', 'No, Lomep HT 50mg/12.5mg Tablet should be avoided in pregnancy. Its use can cause injury and death to the baby. If you conceive while using Lomep HT 50mg/12.5mg Tablet, stop using it and contact your doctor immediately. Your doctor will recommend you other ways to lower the blood pressure.'),
(31704, 'Lomep HT 50mg/12.5mg Tablet', 'Mepro Pharmaceuticals', 'Lomep HT 50mg/12.5mg Tablet', 'What are some lifestyle changes to make while using Lomep HT 50mg/12.5mg Tablet?', 'Making lifestyle changes can boost your health while taking Lomep HT 50mg/12.5mg Tablet. Avoid smoking, as smoking increases your risk of having heart attack and stroke. If you are overweight or obese, try to lose weight. You should maintain a healthy diet by including fruits and vegetables in your meals. Regular exercise can make your heart strong and reduce the risk of heart attack.'),
(31705, 'Lomep HT 50mg/12.5mg Tablet', 'Mepro Pharmaceuticals', 'Lomep HT 50mg/12.5mg Tablet', 'Can I stop taking Lomep HT 50mg/12.5mg Tablet if I feel well?', 'No, keep using Lomep HT 50mg/12.5mg Tablet as advised by your doctor, even if you feel well. Stopping Lomep HT 50mg/12.5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(31706, 'Lomet 100mg Syrup', 'Nordic Formulations Pvt Ltd', 'Lomet 100mg Syrup', 'Can I stop taking Lomet 100mg Syrup when I feel better?', 'No, do not stop taking Lomet 100mg Syrup and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(31707, 'Lomet CT 500 mg/600 mg Tablet', 'Nordic Formulations Pvt Ltd', 'Lomet CT 500 mg/600 mg Tablet', 'What is Lomet CT 500 mg/600 mg Tablet?', 'Lomet CT 500 mg/600 mg Tablet is a combination of two medicines: Tinidazole and Ciprofloxacin. They work by killing the harmful microorganisms that can cause infection. Together they help to treat the infection more effectively.'),
(31708, 'Lomet CT 500 mg/600 mg Tablet', 'Nordic Formulations Pvt Ltd', 'Lomet CT 500 mg/600 mg Tablet', 'Is it safe to use Lomet CT 500 mg/600 mg Tablet?', 'Lomet CT 500 mg/600 mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, metallic taste, heartburn and other uncommon or rare side effects. If you experience any problem due to the medication, inform your doctor as soon as possible.'),
(31709, 'Lomet CT 500 mg/600 mg Tablet', 'Nordic Formulations Pvt Ltd', 'Lomet CT 500 mg/600 mg Tablet', 'What if I don\'t get better after using Lomet CT 500 mg/600 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(31710, 'Lomet CT 500 mg/600 mg Tablet', 'Nordic Formulations Pvt Ltd', 'Lomet CT 500 mg/600 mg Tablet', 'Can I stop taking Lomet CT 500 mg/600 mg Tablet when I feel better?', 'No, do not stop taking Lomet CT 500 mg/600 mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(31711, 'Lomet CT 500 mg/600 mg Tablet', 'Nordic Formulations Pvt Ltd', 'Lomet CT 500 mg/600 mg Tablet', 'What if I miss my dose?', 'Take Lomet CT 500 mg/600 mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(31712, 'Lomewon 400mg Tablet', 'Max Life Science', 'Lomewon 400mg Tablet', 'Can the use of Lomewon 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lomewon 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lomewon 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31713, 'Lomexel 400mg Tablet', 'Medley Pharmaceuticals', 'Lomexel 400mg Tablet', 'Can the use of Lomexel 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lomexel 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lomexel 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31714, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'Can I take Lomez 20mg Capsule with domperidone?', 'This medicine can be safely taken with domperidone as no harmful effects have been reported clinically. A fixed-dose combination of these two medicines is also available. Domperidone works by increasing the gut motility and Lomez 20mg Capsule decreases the acid production in the stomach. So, this combination is very effective in the treatment of reflux esophagitis associated with acidity, heartburn, intestinal and stomach ulcers.'),
(31715, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'What should I know before taking Lomez 20mg Capsule?', 'You should not take it if you are taking a medicine containing atazanavir and nelfinavir (used for HIV infection). Let your doctor know if you are suffering from any liver problems, persistent diarrhea or vomiting, black stools (blood-stained stools), unusual weight loss, trouble swallowing, stomach pain or indigestion. Tell your doctor about all the other medicines you are taking because they may affect, or be affected by, this medicine. Inform your doctor if you have or ever had an allergic skin reaction with this medicine. It should not be given to children who are less than 1 year of age or whose body weight is less than 10 kgs. Pregnant and breastfeeding mothers should consult their doctor before taking this medicine to avoid harmful effects on the baby.'),
(31716, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'Can Lomez 20mg Capsule cause diarrhea?', 'Yes, it may cause diarrhea as a side effect in some people. This is usually not bothersome, but if you experience persistent watery stools that do not go away, along with stomach cramps and fever, get medical help immediately.'),
(31717, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'For how long can Lomez 20mg Capsule be taken?', 'Take it for as long as advised by your doctor. The duration may vary depending on your condition. Do not stop taking this medicine without talking to your doctor.'),
(31718, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'Can Lomez 20mg Capsule cause calcium deficiency and osteoporosis?', 'It can cause osteoporosis (thinning of bones) as it decreases the calcium absorption leading to calcium deficiency. This leads to an increased risk of bone fractures on long-term use, like hip, wrist or spine fractures. Inform your doctor if you have osteoporosis or if you are taking corticosteroids (these can increase the risk of osteoporosis) before starting your therapy. Consult your doctor on ways to prevent this. Your doctor may advise you calcium or vitamin D supplements to reduce the risk.'),
(31719, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'What are the long term side effects of Lomez 20mg Capsule?', 'If used for more than 3 months, certain long term side effects may be seen. The most important of these is low magnesium levels in your blood which may make you feel tired, confused, dizzy, shaky, or dizzy. You may also have muscle twitches or irregular heartbeat. If the use is further prolonged for more than a year, you may have an increased risk of bone fractures (due to decreased calcium levels in the blood), especially hip, wrist, or spine, stomach infections, and vitamin B12 deficiency. Vitamin B12 deficiency can make you anemic, as a result of which you may feel more tired, weak, or pale. Additionally, you may also have palpitations, shortness of breath, lightheadedness, indigestion, loss of appetite, flatulence (gas), or nerve problems such as numbness, tingling, and problem in walking.'),
(31720, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'Does Lomez 20mg Capsule cause vitamin deficiencies?', 'It may cause vitamin B12 and vitamin C deficiency. When taken orally, vitamin B12 requires an acidic environment for its absorption from the stomach while this medicine causes a decrease in gastric acid secretion. You may need to take vitamin B12 supplements along with it. The clinical significance of the decrease in vitamin C levels is not known, so vitamin C supplementation is not recommended.'),
(31721, 'Lomez 20mg Capsule', 'Meyer Organics Pvt Ltd', 'Lomez 20mg Capsule', 'Can Lomez 20mg Capsule be used in cardiac patients?', 'Patients with cardiac disease can take this medicine as prescribed by the doctor. However, it can interact with certain drugs (e.g clopidogrel, digoxin) which might be used by a patient with an underlying cardiac disease. Patients taking these medicines together need to be monitored closely by a doctor.'),
(31722, 'Lomezole D Capsule', 'Laborate Pharmaceuticals India Ltd', 'Lomezole D Capsule', 'Is it safe to use Lomezole D Capsule?', 'Yes, Lomezole D Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(31723, 'Lomezole D Capsule', 'Laborate Pharmaceuticals India Ltd', 'Lomezole D Capsule', 'What are the contraindications of Lomezole D Capsule?', 'The use of Lomezole D Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(31724, 'Lomezole D Capsule', 'Laborate Pharmaceuticals India Ltd', 'Lomezole D Capsule', 'What is the best time to take Lomezole D Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(31725, 'Lomezole D Capsule', 'Laborate Pharmaceuticals India Ltd', 'Lomezole D Capsule', 'Can the use of Lomezole D Capsule cause abnormal heartbeat?', 'Yes, the use of Lomezole D Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(31726, 'Lomezole D Capsule', 'Laborate Pharmaceuticals India Ltd', 'Lomezole D Capsule', 'Does the use of Lomezole D Capsule lead to dry mouth?', 'Yes, the use of Lomezole D Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(31727, 'Lomezole D Capsule', 'Laborate Pharmaceuticals India Ltd', 'Lomezole D Capsule', 'What is the recommended storage condition for Lomezole D Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31728, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'Is Lomid 2mg Capsule safe?', 'Lomid 2mg Capsule is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31729, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'What is Lomid 2mg Capsule used for?', 'Lomid 2mg Capsule is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31730, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'Can Lomid 2mg Capsule be used for IBS?', 'Lomid 2mg Capsule may be used in few cases of IBS but please consult your doctor before its use.'),
(31731, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'Can I take Lomid 2mg Capsule with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomid 2mg Capsule may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomid 2mg Capsule might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31732, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'Does Lomid 2mg Capsule help in opiate withdrawal?', 'Lomid 2mg Capsule is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31733, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'Is Lomid 2mg Capsule addictive?', 'No, Lomid 2mg Capsule is a safe and non-addictive anti-diarrheal drug.'),
(31734, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'Can Lomid 2mg Capsule be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomid 2mg Capsule may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31735, 'Lomid 2mg Capsule', 'Agron Remedies Pvt Ltd', 'Lomid 2mg Capsule', 'Can I take Lomid 2mg Capsule with cimetidine?', 'Cimetidine can decrease the metabolism of Lomid 2mg Capsule, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomid 2mg Capsule may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31736, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'Is Lomid M Syrup safe?', 'Lomid M Syrup is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31737, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'What is Lomid M Syrup used for?', 'Lomid M Syrup is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31738, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'Can Lomid M Syrup be used for IBS?', 'Lomid M Syrup may be used in few cases of IBS but please consult your doctor before its use.'),
(31739, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'Can I take Lomid M Syrup with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomid M Syrup may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomid M Syrup might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31740, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'Does Lomid M Syrup help in opiate withdrawal?', 'Lomid M Syrup is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31741, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'Is Lomid M Syrup addictive?', 'No, Lomid M Syrup is a safe and non-addictive anti-diarrheal drug.'),
(31742, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'Can Lomid M Syrup be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomid M Syrup may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31743, 'Lomid M Syrup', 'Agron Remedies Pvt Ltd', 'Lomid M Syrup', 'Can I take Lomid M Syrup with cimetidine?', 'Cimetidine can decrease the metabolism of Lomid M Syrup, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomid M Syrup may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31744, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'Is Lomide 2mg Tablet safe?', 'Lomide 2mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31745, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'What is Lomide 2mg Tablet used for?', 'Lomide 2mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31746, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'Can Lomide 2mg Tablet be used for IBS?', 'Lomide 2mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31747, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'Can I take Lomide 2mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomide 2mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomide 2mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31748, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'Does Lomide 2mg Tablet help in opiate withdrawal?', 'Lomide 2mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31749, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'Is Lomide 2mg Tablet addictive?', 'No, Lomide 2mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31750, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'Can Lomide 2mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomide 2mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31751, 'Lomide 2mg Tablet', 'East West Pharma', 'Lomide 2mg Tablet (East West Pharma)', 'Can I take Lomide 2mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomide 2mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomide 2mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31752, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'Is Lomide 2mg Tablet safe?', 'Lomide 2mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31753, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'What is Lomide 2mg Tablet used for?', 'Lomide 2mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31754, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'Can Lomide 2mg Tablet be used for IBS?', 'Lomide 2mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31755, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'Can I take Lomide 2mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomide 2mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomide 2mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31756, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'Does Lomide 2mg Tablet help in opiate withdrawal?', 'Lomide 2mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31757, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'Is Lomide 2mg Tablet addictive?', 'No, Lomide 2mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31758, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'Can Lomide 2mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomide 2mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31759, 'Lomide 2mg Tablet', 'Medicraft Group', 'Lomide 2mg Tablet (Medicraft Group)', 'Can I take Lomide 2mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomide 2mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomide 2mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31760, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'Is Lomide Tablet safe?', 'Lomide Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31761, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'What is Lomide Tablet used for?', 'Lomide Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31762, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'Can Lomide Tablet be used for IBS?', 'Lomide Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31763, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'Can I take Lomide Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomide Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomide Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31764, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'Does Lomide Tablet help in opiate withdrawal?', 'Lomide Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31765, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'Is Lomide Tablet addictive?', 'No, Lomide Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31766, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'Can Lomide Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomide Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31767, 'Lomide Tablet', 'Akme Biotec', 'Lomide Tablet', 'Can I take Lomide Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomide Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomide Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31768, 'Lomidon 15mg/20mg Tablet', 'Lok Beta Pharmaceuticals Pvt. Ltd.', 'Lomidon 15mg/20mg Tablet', 'Can I stop taking Lomidon 15mg/20mg Tablet if I feel well?', 'You should continue to take Lomidon 15mg/20mg Tablet until your doctor asks you to stop it. If you stop taking Lomidon 15mg/20mg Tablet sooner than advised, the symptoms of vertigo may reappear (dizziness and spinning).'),
(31769, 'Lomidon 15mg/20mg Tablet', 'Lok Beta Pharmaceuticals Pvt. Ltd.', 'Lomidon 15mg/20mg Tablet', 'What are the instructions for the storage and disposal of Lomidon 15mg/20mg Tablet?', 'Keep this medicine in the packet or container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31770, 'Lomidon 15mg/20mg Tablet', 'Lok Beta Pharmaceuticals Pvt. Ltd.', 'Lomidon 15mg/20mg Tablet', 'Can the use of Lomidon 15mg/20mg Tablet cause drowsiness?', 'Yes, Lomidon 15mg/20mg Tablet can make you feel drowsy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities until you know how this medicine affects you.'),
(31771, 'Lomidon 15mg/20mg Tablet', 'Lok Beta Pharmaceuticals Pvt. Ltd.', 'Lomidon 15mg/20mg Tablet', 'What if I accidentally take too much of Lomidon 15mg/20mg Tablet?', 'Visit the nearest emergency department if you accidentally take too much of Lomidon 15mg/20mg Tablet.'),
(31772, 'Lomidon 15mg/20mg Tablet', 'Lok Beta Pharmaceuticals Pvt. Ltd.', 'Lomidon 15mg/20mg Tablet', 'What if I miss a dose of Lomidon 15mg/20mg Tablet?', 'If you miss a dose of Lomidon 15mg/20mg Tablet, you should skip the missed dose and take the next dose at its usual time and quantity. You should not take a double dose of Lomidon 15mg/20mg Tablet to make up for a missed dose.'),
(31773, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'For how long can Lomik 100 Injection be taken?', 'The usual course of treatment with Lomik 100 Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lomik 100 Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(31774, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'Is Lomik 100 Injection safe?', 'Lomik 100 Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31775, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'How is Lomik 100 Injection administered?', 'Lomik 100 Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lomik 100 Injection.'),
(31776, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lomik 100 Injection should be taken in the recommended dose only. Overdose of Lomik 100 Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(31777, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'What are the instructions for the storage and disposal of Lomik 100 Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31778, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'What if I don\'t get better after using Lomik 100 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(31779, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'Can I stop taking Lomik 100 Injection when I feel better?', 'No, do not stop taking Lomik 100 Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(31780, 'Lomik 100 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 100 Injection', 'Can I take alcohol while on Lomik 100 Injection?', 'You should avoid alcohol while being on treatment with Lomik 100 Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lomik 100 Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(31781, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'For how long can Lomik 250 Injection be taken?', 'The usual course of treatment with Lomik 250 Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lomik 250 Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(31782, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'Is Lomik 250 Injection safe?', 'Lomik 250 Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31783, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'How is Lomik 250 Injection administered?', 'Lomik 250 Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lomik 250 Injection.'),
(31784, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lomik 250 Injection should be taken in the recommended dose only. Overdose of Lomik 250 Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(31785, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'What are the instructions for the storage and disposal of Lomik 250 Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31786, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'What if I don\'t get better after using Lomik 250 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(31787, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'Can I stop taking Lomik 250 Injection when I feel better?', 'No, do not stop taking Lomik 250 Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(31788, 'Lomik 250 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 250 Injection', 'Can I take alcohol while on Lomik 250 Injection?', 'You should avoid alcohol while being on treatment with Lomik 250 Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lomik 250 Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(31789, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'For how long can Lomik 500 Injection be taken?', 'The usual course of treatment with Lomik 500 Injection is about 7 to 10 days. However, your doctor will decide your dose depending on the condition you are being treated for. Continue taking Lomik 500 Injection in the dose and duration prescribed by the doctor to get maximum benefit. Do not alter the dose of the medicine on your own, consult your doctor first.'),
(31790, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'Is Lomik 500 Injection safe?', 'Lomik 500 Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31791, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'How is Lomik 500 Injection administered?', 'Lomik 500 Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get the maximum benefit from Lomik 500 Injection.'),
(31792, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'Can I take a higher than the recommended dose of this medicine?', 'No, Lomik 500 Injection should be taken in the recommended dose only. Overdose of Lomik 500 Injection can increase the risks of side effects. If you experience an increase in the severity of your symptoms during the treatment, please consult your doctor for re-evaluation.'),
(31793, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'What are the instructions for the storage and disposal of Lomik 500 Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31794, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'What if I don\'t get better after using Lomik 500 Injection?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, consult your doctor if your symptoms are getting worse while using this medicine. The doctor may modify the dose or suggest an alternative medicine.'),
(31795, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'Can I stop taking Lomik 500 Injection when I feel better?', 'No, do not stop taking Lomik 500 Injection and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(31796, 'Lomik 500 Injection', 'Medlock Healthcare Pvt Ltd', 'Lomik 500 Injection', 'Can I take alcohol while on Lomik 500 Injection?', 'You should avoid alcohol while being on treatment with Lomik 500 Injection. Alcohol consumption may worsen the dizziness and sleepiness that might be caused by Lomik 500 Injection. However, if you do have alcohol and experience any side effects, consult your doctor.'),
(31797, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'Is Lomika 2mg Capsule safe?', 'Lomika 2mg Capsule is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31798, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'What is Lomika 2mg Capsule used for?', 'Lomika 2mg Capsule is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31799, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'Can Lomika 2mg Capsule be used for IBS?', 'Lomika 2mg Capsule may be used in few cases of IBS but please consult your doctor before its use.'),
(31800, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'Can I take Lomika 2mg Capsule with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomika 2mg Capsule may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomika 2mg Capsule might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31801, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'Does Lomika 2mg Capsule help in opiate withdrawal?', 'Lomika 2mg Capsule is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31802, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'Is Lomika 2mg Capsule addictive?', 'No, Lomika 2mg Capsule is a safe and non-addictive anti-diarrheal drug.'),
(31803, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'Can Lomika 2mg Capsule be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomika 2mg Capsule may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31804, 'Lomika 2mg Capsule', 'Truecure Healthcare Private Limited', 'Lomika 2mg Capsule', 'Can I take Lomika 2mg Capsule with cimetidine?', 'Cimetidine can decrease the metabolism of Lomika 2mg Capsule, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomika 2mg Capsule may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31805, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'Is Lomin 150mg Tablet safe?', 'Lomin 150mg Tablet is safe if taken for prescribed duration in prescribed doses as advised by your doctor.'),
(31806, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'Does Lomin 150mg Tablet treat urinary tract infections (UTI)?', 'Lomin 150mg Tablet can be used to treat lower urinary tract infections i.e. infections of the urinary bladder and urethra. However, please consult a doctor before taking any antibiotics for your condition as it is important to diagnose the infection before starting antibiotics.'),
(31807, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'Can the use of Lomin 150mg Tablet cause diarrhea?', 'Yes, the use of Lomin 150mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31808, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'How long does Lomin 150mg Tablet takes to work?', 'Usually, Lomin 150mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(31809, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'What if I don\'t get better after using Lomin 150mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(31810, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'Can I stop taking Lomin 150mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lomin 150mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(31811, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'Can the use of Lomin 150mg Tablet cause infertility?', 'There is no firm evidence to suggest that the use of Lomin 150mg Tablet will cause infertility in males or females.'),
(31812, 'Lomin 150mg Tablet', 'Healing Touch Pharmaceuticals Pvt Ltd', 'Lomin 150mg Tablet', 'Is Lomin 150mg Tablet an antibiotic?', 'Lomin 150mg Tablet is an antibiotic and belongs to the group of antibiotics known as macrolides. Lomin 150mg Tablet prevents bacteria from growing, by interfering with their protein synthesis.'),
(31813, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'Is Lomin 2mg Tablet safe?', 'Lomin 2mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31814, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'What is Lomin 2mg Tablet used for?', 'Lomin 2mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31815, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'Can Lomin 2mg Tablet be used for IBS?', 'Lomin 2mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31816, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'Can I take Lomin 2mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomin 2mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomin 2mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31817, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'Does Lomin 2mg Tablet help in opiate withdrawal?', 'Lomin 2mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31818, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'Is Lomin 2mg Tablet addictive?', 'No, Lomin 2mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31819, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'Can Lomin 2mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomin 2mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31820, 'Lomin 2mg Tablet', 'Intra Labs India Pvt Ltd', 'Lomin 2mg Tablet', 'Can I take Lomin 2mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomin 2mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomin 2mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31821, 'Lomin 400mg Tablet', 'Mediwin Pharmaceuticals', 'Lomin 400mg Tablet', 'Can the use of Lomin 400mg Tablet increase the risk of muscle damage?', 'Yes, use of Lomin 400mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lomin 400mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(31822, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'What is Lominox 1000mg/200mg Injection?', 'Lominox 1000mg/200mg Injection is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections.. The medicine works by killing the harmful bacteria that cause infections.'),
(31823, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'Is it safe to use Lominox 1000mg/200mg Injection?', 'Lominox 1000mg/200mg Injection is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(31824, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'How is Lominox 1000mg/200mg Injection administered?', 'Lominox 1000mg/200mg Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lominox 1000mg/200mg Injection.'),
(31825, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'Are there any specific cautions associated with the use of Lominox 1000mg/200mg Injection?', 'The use of Lominox 1000mg/200mg Injection is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(31826, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'Can the use of Lominox 1000mg/200mg Injection cause contraceptive failure?', 'Yes, the use of Lominox 1000mg/200mg Injection can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Lominox 1000mg/200mg Injection.'),
(31827, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'Can I take a higher than the recommended dose of Lominox 1000mg/200mg Injection?', 'No, taking a higher than the recommended dose of Lominox 1000mg/200mg Injection can increase the risks of side effects. Lominox 1000mg/200mg Injection takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(31828, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'What are the instructions for the storage and disposal of Lominox 1000mg/200mg Injection?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31829, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'Can Lominox 1000mg/200mg Injection cause an allergic reaction?', 'Yes, Lominox 1000mg/200mg Injection can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(31830, 'Lominox 1000mg/200mg Injection', 'Biological E Ltd', 'Lominox 1000mg/200mg Injection', 'Can the use of Lominox 1000mg/200mg Injection cause diarrhea?', 'Yes, the use of Lominox 1000mg/200mg Injection can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(31831, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'What is Lomnic P 100mg/325mg Tablet?', 'Lomnic P 100mg/325mg Tablet is a combination of two medicines: Aceclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation.'),
(31832, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Is it safe to use Lomnic P 100mg/325mg Tablet?', 'Lomnic P 100mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects.'),
(31833, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Can I stop taking Lomnic P 100mg/325mg Tablet when my pain is relieved?', 'If you are using the medication for a condition associated with long-term pain then Lomnic P 100mg/325mg Tablet should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(31834, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Can the use of Lomnic P 100mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lomnic P 100mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(31835, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Can the use of Lomnic P 100mg/325mg Tablet cause dizziness?', 'Yes, the use of Lomnic P 100mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(31836, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lomnic P 100mg/325mg Tablet?', 'The use of Lomnic P 100mg/325mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). It should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(31837, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Can Lomnic P 100mg/325mg Tablet be taken with vitamin B-complex?', 'Yes, Lomnic P 100mg/325mg Tablet can be taken with vitamin B-complex preparations. While Lomnic P 100mg/325mg Tablet helps to relieve pain, vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(31838, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Is Lomnic P 100mg/325mg Tablet helpful in relieving stomach pain?', 'No, Lomnic P 100mg/325mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(31839, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Can the use of Lomnic P 100mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lomnic P 100mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical messenger called prostaglandins that protects them from damage. Use of painkillers lowers the levels of prostaglandins in the body which leads to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(31840, 'Lomnic P 100mg/325mg Tablet', 'New India Company', 'Lomnic P 100mg/325mg Tablet', 'Is it safe to take a higher dose of Lomnic P 100mg/325mg Tablet than recommended?', 'No, taking higher than the recommended dose of Lomnic P 100mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(31841, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'Is Lomo Tablet safe?', 'Lomo Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31842, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'What is Lomo Tablet used for?', 'Lomo Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31843, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'Can Lomo Tablet be used for IBS?', 'Lomo Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31844, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'Can I take Lomo Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomo Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomo Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31845, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'Does Lomo Tablet help in opiate withdrawal?', 'Lomo Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31846, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'Is Lomo Tablet addictive?', 'No, Lomo Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31847, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'Can Lomo Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomo Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31848, 'Lomo Tablet', 'Shridhara Lifesciences Pvt Ltd', 'Lomo Tablet', 'Can I take Lomo Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomo Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomo Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31849, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'Is Lomocon 2mg Tablet safe?', 'Lomocon 2mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31850, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'What is Lomocon 2mg Tablet used for?', 'Lomocon 2mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31851, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'Can Lomocon 2mg Tablet be used for IBS?', 'Lomocon 2mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31852, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'Can I take Lomocon 2mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomocon 2mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomocon 2mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31853, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'Does Lomocon 2mg Tablet help in opiate withdrawal?', 'Lomocon 2mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31854, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'Is Lomocon 2mg Tablet addictive?', 'No, Lomocon 2mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31855, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'Can Lomocon 2mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomocon 2mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31856, 'Lomocon 2mg Tablet', 'Akme Biotec', 'Lomocon 2mg Tablet', 'Can I take Lomocon 2mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomocon 2mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomocon 2mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31857, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'Is Lomofar 2mg Capsule safe?', 'Lomofar 2mg Capsule is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31858, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'What is Lomofar 2mg Capsule used for?', 'Lomofar 2mg Capsule is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31859, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'Can Lomofar 2mg Capsule be used for IBS?', 'Lomofar 2mg Capsule may be used in few cases of IBS but please consult your doctor before its use.'),
(31860, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'Can I take Lomofar 2mg Capsule with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomofar 2mg Capsule may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomofar 2mg Capsule might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31861, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'Does Lomofar 2mg Capsule help in opiate withdrawal?', 'Lomofar 2mg Capsule is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31862, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'Is Lomofar 2mg Capsule addictive?', 'No, Lomofar 2mg Capsule is a safe and non-addictive anti-diarrheal drug.'),
(31863, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'Can Lomofar 2mg Capsule be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomofar 2mg Capsule may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31864, 'Lomofar 2mg Capsule', 'Roussel Laboratories Pvt Ltd', 'Lomofar 2mg Capsule', 'Can I take Lomofar 2mg Capsule with cimetidine?', 'Cimetidine can decrease the metabolism of Lomofar 2mg Capsule, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomofar 2mg Capsule may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31865, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'Is Lomofen Plus Tablet safe?', 'Lomofen Plus Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31866, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'What is Lomofen Plus Tablet used for?', 'Lomofen Plus Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31867, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'Can Lomofen Plus Tablet be used for IBS?', 'Lomofen Plus Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31868, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'Can I take Lomofen Plus Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomofen Plus Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomofen Plus Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31869, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'Does Lomofen Plus Tablet help in opiate withdrawal?', 'Lomofen Plus Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31870, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'Is Lomofen Plus Tablet addictive?', 'No, Lomofen Plus Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31871, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'Can Lomofen Plus Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomofen Plus Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31872, 'Lomofen Plus Tablet', 'RPG Life Sciences Ltd', 'Lomofen Plus Tablet', 'Can I take Lomofen Plus Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomofen Plus Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomofen Plus Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31873, 'Lomofen Tablet', 'RPG Life Sciences Ltd', 'Lomofen Tablet', 'Are there any contraindications associated with the use of Lomofen Tablet?', 'The use of Lomofen Tablet is considered to be harmful for the patients with known allergy to any of its components. It is better to inform your doctor about your past medical history.'),
(31874, 'Lomofen Tablet', 'RPG Life Sciences Ltd', 'Lomofen Tablet', 'Can Lomofen Tablet cause dizziness?', 'Yes, the use of Lomofen Tablet can cause dizziness. Patient should avoid driving or operating machinery while taking Lomofen Tablet.'),
(31875, 'Lomofen Tablet', 'RPG Life Sciences Ltd', 'Lomofen Tablet', 'What if I take more than the recommended dose of Lomofen Tablet?', 'Taking more than the recommended dose of Lomofen Tablet may cause blurred vision, dry mouth and dizziness. In case of overdose consult your doctor for further advice.'),
(31876, 'Lomofen Tablet', 'RPG Life Sciences Ltd', 'Lomofen Tablet', 'Can the use of Lomofen Tablet cause dry mouth?', 'Yes, the use of Lomofen Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry. Try to avoid food items that are acidic (like lemons), spicy and salty.'),
(31877, 'Lomofen Tablet', 'RPG Life Sciences Ltd', 'Lomofen Tablet', 'Can the use of Lomofen Tablet cause constipation?', 'Yes, the use of Lomofen Tablet can cause constipation. To make your stool softer and easier to pass, eat more high-fiber foods such as fresh fruits and vegetables and cereals. Try to drink several glasses of water or other non-alcoholic liquids every day. If constipation persists, talk to your doctor about its treatment.'),
(31878, 'Lomofen Tablet', 'RPG Life Sciences Ltd', 'Lomofen Tablet', 'What are the recommended storage conditions for Lomofen Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31879, 'Lomogine 50mg Tablet', 'RKG Pharma', 'Lomogine 50mg Tablet', 'I started Lomogine 50mg Tablet and developed a rash. The doctor stopped Lomogine 50mg Tablet immediately and prescribed another medicine. Why?', 'There have been reports where patients developed serious rashes within 8 weeks of starting Lomogine 50mg Tablet and were hospitalized. Sometimes these rashes turn into severe skin infections and may endanger the patient’s life. Therefore, it is advised that if a patient develops rashes after starting Lomogine 50mg Tablet, it should be stopped and should not be restarted. Use of Lomogine 50mg Tablet is stopped even if the rashes are mild and non-serious. It is because of this that your doctor changed the medicine.'),
(31880, 'Lomogine 50mg Tablet', 'RKG Pharma', 'Lomogine 50mg Tablet', 'How long does it take Lomogine 50mg Tablet to work?', 'Though it varies from person to person, your symptoms may take about 6-8 weeks to improve.'),
(31881, 'Lomogine 50mg Tablet', 'RKG Pharma', 'Lomogine 50mg Tablet', 'What can be the consequences of taking a higher than the recommended dose of Lomogine 50mg Tablet?', 'You may experience quick and uncontrollable movements of your eye, clumsiness, and lack of coordination. High doses of Lomogine 50mg Tablet may cause problems with your balance, changes in heartbeat rhythm, loss of consciousness, fits (convulsions) or coma. Even if there are no signs of discomfort, seek immediate medical attention of a doctor or nearby hospital.'),
(31882, 'Lomogine 50mg Tablet', 'RKG Pharma', 'Lomogine 50mg Tablet', 'Can Lomogine 50mg Tablet affect pregnancy?', 'Studies on the human population do not show any effects of Lomogine 50mg Tablet on pregnant women or her fetus. However, it is advisable that you inform your doctor immediately if you become pregnant or are planning to get pregnant while taking Lomogine 50mg Tablet. In case therapy with Lomogine 50mg Tablet is considered during pregnancy, your doctor may prescribe the lowest effective dose.'),
(31883, 'Lomogine 50mg Tablet', 'RKG Pharma', 'Lomogine 50mg Tablet', 'Can I take Lomogine 50mg Tablet with other antiepileptic medicines?', 'It is important that you inform your doctor if you are already on any other antiepileptic medicines. The reason being, taking Lomogine 50mg Tablet  with some antiepileptics (like valproate and carbamazepine) may increase the chances of developing side effects. Also, the dose of Lomogine 50mg Tablet  may need adjustment if taken with antiepileptic medicines such as oxcarbazepine, felbamate, gabapentin, levetiracetam, pregabalin, topiramate or zonisamide.'),
(31884, 'Lomogine 50mg Tablet', 'RKG Pharma', 'Lomogine 50mg Tablet', 'How to take Lomogine 50mg Tablet?', 'Lomogine 50mg Tablet can be taken with or without food. Continue taking Lomogine 50mg Tablet in the dose and duration advised by the doctor to get maximum benefits of Lomogine 50mg Tablet.'),
(31885, 'Lomogine 50mg Tablet', 'RKG Pharma', 'Lomogine 50mg Tablet', 'I have symptoms of depression. Can I take Lomogine 50mg Tablet?', 'Yes, you can take Lomogine 50mg Tablet if you have depression symptoms. In fact, Lomogine 50mg Tablet is used in preventing depression. But, do not self medicate. Do not start or stop taking Lomogine 50mg Tablet on your own, unless otherwise advised by the doctor.'),
(31886, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'Is Lomogood Capsule safe?', 'Lomogood Capsule is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31887, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'What is Lomogood Capsule used for?', 'Lomogood Capsule is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31888, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'Can Lomogood Capsule be used for IBS?', 'Lomogood Capsule may be used in few cases of IBS but please consult your doctor before its use.'),
(31889, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'Can I take Lomogood Capsule with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomogood Capsule may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomogood Capsule might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31890, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'Does Lomogood Capsule help in opiate withdrawal?', 'Lomogood Capsule is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31891, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'Is Lomogood Capsule addictive?', 'No, Lomogood Capsule is a safe and non-addictive anti-diarrheal drug.'),
(31892, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'Can Lomogood Capsule be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomogood Capsule may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31893, 'Lomogood Capsule', 'Workcell Solutions Private Limited', 'Lomogood Capsule', 'Can I take Lomogood Capsule with cimetidine?', 'Cimetidine can decrease the metabolism of Lomogood Capsule, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomogood Capsule may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31894, 'Lomogut (5ml Each) Oral Suspension', 'Indigo Pharmatech', 'Lomogut (5ml Each) Oral Suspension', 'What is Lomogut (5ml Each) Oral Suspension?', 'Lomogut (5ml Each) Oral Suspension is a probiotic that is used to effectively manage diarrhea and imbalance of intestinal bacterial flora changed during diarrhea or after the use of antibiotics.'),
(31895, 'Lomogut (5ml Each) Oral Suspension', 'Indigo Pharmatech', 'Lomogut (5ml Each) Oral Suspension', 'When should Lomogut (5ml Each) Oral Suspension not be used?', 'A person who has hypersensitivity towards the components of the medicine or other closely related substances should not use Lomogut (5ml Each) Oral Suspension. Talk to your doctor if you are not sure.'),
(31896, 'Lomogut (5ml Each) Oral Suspension', 'Indigo Pharmatech', 'Lomogut (5ml Each) Oral Suspension', 'Can I take Lomogut (5ml Each) Oral Suspension for longer durations?', 'Do not take this medicine for longer durations unless prescribed by the doctor. Also, avoid exceeding the indicated dose of Lomogut (5ml Each) Oral Suspension without the doctor’s advice. Talk to your doctor if the condition recurs or if there is no improvement in the symptoms.'),
(31897, 'Lomogut (5ml Each) Oral Suspension', 'Indigo Pharmatech', 'Lomogut (5ml Each) Oral Suspension', 'Is it safe to take Lomogut (5ml Each) Oral Suspension with antibiotics?', 'Lomogut (5ml Each) Oral Suspension can be taken with antibiotics if prescribed by the doctor. However, you are advised to give a minimum gap of 2 hrs between the two medications.'),
(31898, 'Lomogut (5ml Each) Oral Suspension', 'Indigo Pharmatech', 'Lomogut (5ml Each) Oral Suspension', 'What is the recommended storage condition for Lomogut (5ml Each) Oral Suspension?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(31899, 'Lomogut (5ml Each) Oral Suspension', 'Indigo Pharmatech', 'Lomogut (5ml Each) Oral Suspension', 'What other tips to follow to get relief from diarrhea along with taking Lomogut (5ml Each) Oral Suspension?', 'Along with taking Lomogut (5ml Each) Oral Suspension, you can take food items with soluble fiber that can help relieve diarrhea as they help absorb excess fluid from the body. These food items include bananas (ripe), orange, boiled potatoes, white rice, curd, and oatmeal. Diarrhea can cause dehydration in the body, so drink 8-10 glasses of water to avoid dehydration. You can also have soups and juice frequently to hydrate yourself.'),
(31900, 'Lomoh 20 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 20 Injection', 'How do you administer Lomoh 20 Injection?', 'Lomoh 20 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31901, 'Lomoh 20 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 20 Injection', 'What are the conditions where I should be cautious before taking Lomoh 20 Injection?', 'You must give a proper history to your doctor before you start taking Lomoh 20 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31902, 'Lomoh 20 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 20 Injection', 'How to store Lomoh 20 Injection injections?', 'Store Lomoh 20 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31903, 'Lomoh 20 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 20 Injection', 'Can Lomoh 20 Injection be used in heart attack?', 'Yes, Lomoh 20 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31904, 'Lomoh 20 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 20 Injection', 'Is it ok to inject the air bubble in Lomoh 20 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31905, 'Lomoh 40 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 40 Injection', 'How do you administer Lomoh 40 Injection?', 'Lomoh 40 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31906, 'Lomoh 40 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 40 Injection', 'What are the conditions where I should be cautious before taking Lomoh 40 Injection?', 'You must give a proper history to your doctor before you start taking Lomoh 40 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31907, 'Lomoh 40 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 40 Injection', 'How to store Lomoh 40 Injection injections?', 'Store Lomoh 40 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31908, 'Lomoh 40 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 40 Injection', 'Can Lomoh 40 Injection be used in heart attack?', 'Yes, Lomoh 40 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31909, 'Lomoh 40 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 40 Injection', 'Is it ok to inject the air bubble in Lomoh 40 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31910, 'Lomoh 60 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 60 Injection', 'How do you administer Lomoh 60 Injection?', 'Lomoh 60 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31911, 'Lomoh 60 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 60 Injection', 'What are the conditions where I should be cautious before taking Lomoh 60 Injection?', 'You must give a proper history to your doctor before you start taking Lomoh 60 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31912, 'Lomoh 60 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 60 Injection', 'How to store Lomoh 60 Injection injections?', 'Store Lomoh 60 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31913, 'Lomoh 60 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 60 Injection', 'Can Lomoh 60 Injection be used in heart attack?', 'Yes, Lomoh 60 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31914, 'Lomoh 60 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 60 Injection', 'Is it ok to inject the air bubble in Lomoh 60 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31915, 'Lomoh 80 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 80 Injection', 'How do you administer Lomoh 80 Injection?', 'Lomoh 80 Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31916, 'Lomoh 80 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 80 Injection', 'What are the conditions where I should be cautious before taking Lomoh 80 Injection?', 'You must give a proper history to your doctor before you start taking Lomoh 80 Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31917, 'Lomoh 80 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 80 Injection', 'How to store Lomoh 80 Injection injections?', 'Store Lomoh 80 Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31918, 'Lomoh 80 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 80 Injection', 'Can Lomoh 80 Injection be used in heart attack?', 'Yes, Lomoh 80 Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31919, 'Lomoh 80 Injection', 'Emcure Pharmaceuticals Ltd', 'Lomoh 80 Injection', 'Is it ok to inject the air bubble in Lomoh 80 Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31920, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'Is Lomonex 2mg Tablet safe?', 'Lomonex 2mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(31921, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'What is Lomonex 2mg Tablet used for?', 'Lomonex 2mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(31922, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'Can Lomonex 2mg Tablet be used for IBS?', 'Lomonex 2mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(31923, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'Can I take Lomonex 2mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomonex 2mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomonex 2mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(31924, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'Does Lomonex 2mg Tablet help in opiate withdrawal?', 'Lomonex 2mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(31925, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'Is Lomonex 2mg Tablet addictive?', 'No, Lomonex 2mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(31926, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'Can Lomonex 2mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomonex 2mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(31927, 'Lomonex 2mg Tablet', 'Himanshu Pharmaceuticals Pvt Ltd', 'Lomonex 2mg Tablet', 'Can I take Lomonex 2mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomonex 2mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomonex 2mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(31928, 'Lomonex 40mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 40mg Injection', 'How do you administer Lomonex 40mg Injection?', 'Lomonex 40mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31929, 'Lomonex 40mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 40mg Injection', 'What are the conditions where I should be cautious before taking Lomonex 40mg Injection?', 'You must give a proper history to your doctor before you start taking Lomonex 40mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31930, 'Lomonex 40mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 40mg Injection', 'How to store Lomonex 40mg Injection injections?', 'Store Lomonex 40mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31931, 'Lomonex 40mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 40mg Injection', 'Can Lomonex 40mg Injection be used in heart attack?', 'Yes, Lomonex 40mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31932, 'Lomonex 40mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 40mg Injection', 'Is it ok to inject the air bubble in Lomonex 40mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(31933, 'Lomonex 60mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 60mg Injection', 'How do you administer Lomonex 60mg Injection?', 'Lomonex 60mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31934, 'Lomonex 60mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 60mg Injection', 'What are the conditions where I should be cautious before taking Lomonex 60mg Injection?', 'You must give a proper history to your doctor before you start taking Lomonex 60mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31935, 'Lomonex 60mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 60mg Injection', 'How to store Lomonex 60mg Injection injections?', 'Store Lomonex 60mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31936, 'Lomonex 60mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 60mg Injection', 'Can Lomonex 60mg Injection be used in heart attack?', 'Yes, Lomonex 60mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31937, 'Lomonex 60mg Injection', 'Unilex Lifesciences Pvt Ltd', 'Lomonex 60mg Injection', 'Is it ok to inject the air bubble in Lomonex 60mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31938, 'Lomonox 40mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 40mg Injection', 'How do you administer Lomonox 40mg Injection?', 'Lomonox 40mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31939, 'Lomonox 40mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 40mg Injection', 'What are the conditions where I should be cautious before taking Lomonox 40mg Injection?', 'You must give a proper history to your doctor before you start taking Lomonox 40mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31940, 'Lomonox 40mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 40mg Injection', 'How to store Lomonox 40mg Injection injections?', 'Store Lomonox 40mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31941, 'Lomonox 40mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 40mg Injection', 'Can Lomonox 40mg Injection be used in heart attack?', 'Yes, Lomonox 40mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31942, 'Lomonox 40mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 40mg Injection', 'Is it ok to inject the air bubble in Lomonox 40mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31943, 'Lomonox 60mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 60mg Injection', 'How do you administer Lomonox 60mg Injection?', 'Lomonox 60mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31944, 'Lomonox 60mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 60mg Injection', 'What are the conditions where I should be cautious before taking Lomonox 60mg Injection?', 'You must give a proper history to your doctor before you start taking Lomonox 60mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31945, 'Lomonox 60mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 60mg Injection', 'How to store Lomonox 60mg Injection injections?', 'Store Lomonox 60mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31946, 'Lomonox 60mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 60mg Injection', 'Can Lomonox 60mg Injection be used in heart attack?', 'Yes, Lomonox 60mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31947, 'Lomonox 60mg Injection', 'Neiss Labs Pvt Ltd', 'Lomonox 60mg Injection', 'Is it ok to inject the air bubble in Lomonox 60mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31948, 'Lomoother 40 Capsule', 'Therdose Pharma Pvt Ltd', 'Lomoother 40 Capsule', 'Is Lomoother 40 Capsule effective?', 'Lomoother 40 Capsule is effective if taken as per the dose and for the duration prescribed by a doctor. It may be used in combination with other drugs/radiotherapy or surgery to get best results. Follow your doctor\'s instructions about this treatment carefully.'),
(31949, 'Lomoother 40 Capsule', 'Therdose Pharma Pvt Ltd', 'Lomoother 40 Capsule', 'How fast does Lomoother 40 Capsule work?', 'Lomoother 40 Capsule treatment includes administration of medicine in several sessions/cycles. Each cycle of Lomoother 40 Capsule is usually a single oral dose given every 6-8 weeks. Duration of treatment may depend upon the type of cancer and body\'s response to the medicine. Total treatment with Lomoother 40 Capsule may run over a few months.'),
(31950, 'Lomoother 40 Capsule', 'Therdose Pharma Pvt Ltd', 'Lomoother 40 Capsule', 'How long does Lomoother 40 Capsule stay in the body?', 'Lomoother 40 Capsule may stay in body from 16 hours to 2 days.'),
(31951, 'Lomoparin 3500IU Injection', 'Biological E Ltd', 'Lomoparin 3500IU Injection', 'How is Lomoparin 3500IU Injection administered?', 'Lomoparin 3500IU Injection should be administered under the supervision of a trained healthcare professional or a doctor only and should not be self-administered. The dose will depend on the condition you are being treated for and will be decided by your doctor. Follow your doctor’s instructions carefully to get maximum benefit from Lomoparin 3500IU Injection.'),
(31952, 'Lomoparin 3500IU Injection', 'Biological E Ltd', 'Lomoparin 3500IU Injection', 'Is Lomoparin 3500IU Injection safe?', 'Lomoparin 3500IU Injection is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(31953, 'Lomoparin 3500IU Injection', 'Biological E Ltd', 'Lomoparin 3500IU Injection', 'Can the use of Lomoparin 3500IU Injection increase the risk of bleeding?', 'Yes, Lomoparin 3500IU Injection can increase the risk of bleeding. Always be careful while doing activities that may cause an injury or bleeding. Tell your doctor immediately if you notice any abnormal bruising or bleeding.'),
(31954, 'Lomoparin 3500IU Injection', 'Biological E Ltd', 'Lomoparin 3500IU Injection', 'What medicines should I avoid while taking Lomoparin 3500IU Injection?', 'Lomoparin 3500IU Injection can interact with several medicines. If you are already taking Lomoparin 3500IU Injection, do not take any other medicine without talking to your doctor.'),
(31955, 'Lomoparin 3500IU Injection', 'Biological E Ltd', 'Lomoparin 3500IU Injection', 'When will I feel better after taking Lomoparin 3500IU Injection?', 'Lomoparin 3500IU Injection reduces your risk of developing blood clots in the blood vessels of your leg, lungs, heart and brain. You may not feel any difference after taking Lomoparin 3500IU Injection. This does not mean that the medicine is not working, therefore keep taking this medicine as prescribed.'),
(31956, 'Lomorid Oral Suspension', 'Salveo Lifecare', 'Lomorid Oral Suspension', 'How long does Lomorid Oral Suspension take to work?', 'Treatment with Lomorid Oral Suspension should be continued until two normal stools are passed. However, if the diarrhea does not get better after seven days of treatment you must talk to the doctor. Make sure neither to extend nor to stop the treatment by yourself without consulting your child’s doctor. Doing so may have side effects or may lead to a recurrence of symptoms.'),
(31957, 'Lomorid Oral Suspension', 'Salveo Lifecare', 'Lomorid Oral Suspension', 'My child is one year old and is suffering from a neurological disorder. Is it safe to give Lomorid Oral Suspension?', 'Usually, Lomorid Oral Suspension does not enter into the central nervous system and lacks the potential to cause serious side effects such as neurotoxicity. But, since children below the age of 2 have underdeveloped membranes, there could be a chance of the medicine entering the brain and causing side effects. So, consult your child’s doctor before giving Lomorid Oral Suspension in such a condition.'),
(31958, 'Lomorid Oral Suspension', 'Salveo Lifecare', 'Lomorid Oral Suspension', 'My child has milk intolerance. Can I give Lomorid Oral Suspension to my child?', 'No, children having intolerance to dairy products and milk are advised not to take this medicine as it contains lactose.'),
(31959, 'Lomorid Oral Suspension', 'Salveo Lifecare', 'Lomorid Oral Suspension', 'My child is passing watery stools mixed with blood and is also suffering from fever. Is Lomorid Oral Suspension the right choice of treatment?', 'No, do not give Lomorid Oral Suspension if your child is passing stools mixed with blood or pus along with having a high body temperature (fever). These symptoms are indicative of some underlying pathology (infection) and may require some other line of treatment.'),
(31960, 'Lomorid Oral Suspension', 'Salveo Lifecare', 'Lomorid Oral Suspension', 'My child is suffering from long-term (chronic) diarrhea. Can I give Lomorid Oral Suspension?', 'The use of Lomorid Oral Suspension in chronic diarrhea has not been sufficiently studied. Therefore, it is best to consult your child’s doctor before giving this medicine to your child for long-term diarrhea.'),
(31961, 'Lomorid Oral Suspension', 'Salveo Lifecare', 'Lomorid Oral Suspension', 'What all other medicines should my child avoid while taking Lomorid Oral Suspension?', 'Although Lomorid Oral Suspension is not known to cause any interaction with other medicines, you should inform the doctor if your child is taking any medicine. It is best to narrate the complete medical history of your child as this will help the doctor understand your child’s needs better.'),
(31962, 'Lomorin NX 20mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 20mg Injection', 'How do you administer Lomorin NX 20mg Injection?', 'Lomorin NX 20mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31963, 'Lomorin NX 20mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 20mg Injection', 'What are the conditions where I should be cautious before taking Lomorin NX 20mg Injection?', 'You must give a proper history to your doctor before you start taking Lomorin NX 20mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31964, 'Lomorin NX 20mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 20mg Injection', 'How to store Lomorin NX 20mg Injection injections?', 'Store Lomorin NX 20mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31965, 'Lomorin NX 20mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 20mg Injection', 'Can Lomorin NX 20mg Injection be used in heart attack?', 'Yes, Lomorin NX 20mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31966, 'Lomorin NX 20mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 20mg Injection', 'Is it ok to inject the air bubble in Lomorin NX 20mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31967, 'Lomorin NX 40mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 40mg Injection', 'How do you administer Lomorin NX 40mg Injection?', 'Lomorin NX 40mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31968, 'Lomorin NX 40mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 40mg Injection', 'What are the conditions where I should be cautious before taking Lomorin NX 40mg Injection?', 'You must give a proper history to your doctor before you start taking Lomorin NX 40mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31969, 'Lomorin NX 40mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 40mg Injection', 'How to store Lomorin NX 40mg Injection injections?', 'Store Lomorin NX 40mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31970, 'Lomorin NX 40mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 40mg Injection', 'Can Lomorin NX 40mg Injection be used in heart attack?', 'Yes, Lomorin NX 40mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31971, 'Lomorin NX 40mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 40mg Injection', 'Is it ok to inject the air bubble in Lomorin NX 40mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31972, 'Lomorin NX 50mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 50mg Injection', 'How do you administer Lomorin NX 50mg Injection?', 'Lomorin NX 50mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31973, 'Lomorin NX 50mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 50mg Injection', 'What are the conditions where I should be cautious before taking Lomorin NX 50mg Injection?', 'You must give a proper history to your doctor before you start taking Lomorin NX 50mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31974, 'Lomorin NX 50mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 50mg Injection', 'How to store Lomorin NX 50mg Injection injections?', 'Store Lomorin NX 50mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31975, 'Lomorin NX 50mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 50mg Injection', 'Can Lomorin NX 50mg Injection be used in heart attack?', 'Yes, Lomorin NX 50mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31976, 'Lomorin NX 50mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 50mg Injection', 'Is it ok to inject the air bubble in Lomorin NX 50mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31977, 'Lomorin NX 80mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 80mg Injection', 'How do you administer Lomorin NX 80mg Injection?', 'Lomorin NX 80mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(31978, 'Lomorin NX 80mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 80mg Injection', 'What are the conditions where I should be cautious before taking Lomorin NX 80mg Injection?', 'You must give a proper history to your doctor before you start taking Lomorin NX 80mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(31979, 'Lomorin NX 80mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 80mg Injection', 'How to store Lomorin NX 80mg Injection injections?', 'Store Lomorin NX 80mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(31980, 'Lomorin NX 80mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 80mg Injection', 'Can Lomorin NX 80mg Injection be used in heart attack?', 'Yes, Lomorin NX 80mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(31981, 'Lomorin NX 80mg Injection', 'Vhb Life Sciences Inc', 'Lomorin NX 80mg Injection', 'Is it ok to inject the air bubble in Lomorin NX 80mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(31982, 'Lomostop MF 100 mg/400 mg Tablet', 'Wings Biotech Ltd', 'Lomostop MF 100 mg/400 mg Tablet', 'Can I stop taking Lomostop MF 100 mg/400 mg Tablet when my symptoms are relieved?', 'No, do not stop taking Lomostop MF 100 mg/400 mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(31983, 'Lomostop MF 100 mg/400 mg Tablet', 'Wings Biotech Ltd', 'Lomostop MF 100 mg/400 mg Tablet', 'Can the use of Lomostop MF 100 mg/400 mg Tablet cause metallic taste?', 'Yes, Lomostop MF 100 mg/400 mg Tablet can cause a temporary metallic taste. This metallic taste can be lowered by chewing sugar-free gum, mints and by brushing teeth after the meals.'),
(31984, 'Lomostop MF 100 mg/400 mg Tablet', 'Wings Biotech Ltd', 'Lomostop MF 100 mg/400 mg Tablet', 'Can I drink alcohol while taking Lomostop MF 100 mg/400 mg Tablet?', 'Avoid drinking alcohol while taking Lomostop MF 100 mg/400 mg Tablet and for at least 3 days after stopping the medicine. Drinking alcohol while taking this medicine may cause an unpleasant reaction (Disulfiram-like reaction) with symptoms like stomach pain, nausea, vomiting, headache, flushing or redness of the face.'),
(31985, 'Lomostop MF 100 mg/400 mg Tablet', 'Wings Biotech Ltd', 'Lomostop MF 100 mg/400 mg Tablet', 'What are the instructions for the storage and disposal of Lomostop MF 100 mg/400 mg Tablet?', 'Keep this medicine in the packet or container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31986, 'Lomotil 2.5mg/0.025mg Tablet', 'RPG Life Sciences Ltd', 'Lomotil 2.5mg/0.025mg Tablet', 'Can the use of Lomotil 2.5mg/0.025mg Tablet cause dry mouth?', 'Yes, the use of Lomotil 2.5mg/0.025mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(31987, 'Lomotil 2.5mg/0.025mg Tablet', 'RPG Life Sciences Ltd', 'Lomotil 2.5mg/0.025mg Tablet', 'Can the use of Lomotil 2.5mg/0.025mg Tablet cause constipation?', 'Yes, the use of Lomotil 2.5mg/0.025mg Tablet can cause constipation. Talk to your doctor if constipation occurs.'),
(31988, 'Lomotil 2.5mg/0.025mg Tablet', 'RPG Life Sciences Ltd', 'Lomotil 2.5mg/0.025mg Tablet', 'What are the instructions for the storage and disposal of Lomotil 2.5mg/0.025mg Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31989, 'Lomotil 2.5mg/0.025mg Tablet', 'RPG Life Sciences Ltd', 'Lomotil 2.5mg/0.025mg Tablet', 'Can the use of Lomotil 2.5mg/0.025mg Tablet cause dizziness?', 'Yes, the use of Lomotil 2.5mg/0.025mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(31990, 'Lomotil 2.5mg/0.025mg Tablet', 'RPG Life Sciences Ltd', 'Lomotil 2.5mg/0.025mg Tablet', 'Can I drink alcohol while taking Lomotil 2.5mg/0.025mg Tablet?', 'No, avoid drinking alcohol while taking Lomotil 2.5mg/0.025mg Tablet. Drinking alcohol will increase the severity of drowsiness and sleepiness caused by Lomotil 2.5mg/0.025mg Tablet.'),
(31991, 'Lomotil Tablet', 'RPG Life Sciences Ltd', 'Lomotil Tablet', 'Can the use of Lomotil Tablet cause dry mouth?', 'Yes, the use of Lomotil Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. Try to avoid foods that are acidic (like lemons), spicy and salty.'),
(31992, 'Lomotil Tablet', 'RPG Life Sciences Ltd', 'Lomotil Tablet', 'Can the use of Lomotil Tablet cause constipation?', 'Yes, the use of Lomotil Tablet can cause constipation. Talk to your doctor if constipation occurs.'),
(31993, 'Lomotil Tablet', 'RPG Life Sciences Ltd', 'Lomotil Tablet', 'What are the instructions for the storage and disposal of Lomotil Tablet?', 'Keep this medicine in the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(31994, 'Lomotil Tablet', 'RPG Life Sciences Ltd', 'Lomotil Tablet', 'Can the use of Lomotil Tablet cause dizziness?', 'Yes, the use of Lomotil Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better.'),
(31995, 'Lomotil Tablet', 'RPG Life Sciences Ltd', 'Lomotil Tablet', 'Can I drink alcohol while taking Lomotil Tablet?', 'No, avoid drinking alcohol while taking Lomotil Tablet. Drinking alcohol will increase the severity of drowsiness and sleepiness caused by Lomotil Tablet.'),
(31996, 'Lomotril 10DT Tablet Orange', 'Indigo Pharmatech', 'Lomotril 10DT Tablet Orange', 'How long does Lomotril 10DT Tablet Orange take to work?', 'Treatment with Lomotril 10DT Tablet Orange should be continued until two normal stools are passed. However, if the diarrhea does not get better after seven days of treatment you must talk to the doctor. Make sure neither to extend nor to stop the treatment by yourself without consulting your child’s doctor. Doing so may have side effects or may lead to a recurrence of symptoms.'),
(31997, 'Lomotril 10DT Tablet Orange', 'Indigo Pharmatech', 'Lomotril 10DT Tablet Orange', 'My child is one year old and is suffering from a neurological disorder. Is it safe to give Lomotril 10DT Tablet Orange?', 'Usually, Lomotril 10DT Tablet Orange does not enter into the central nervous system and lacks the potential to cause serious side effects such as neurotoxicity. But, since children below the age of 2 have underdeveloped membranes, there could be a chance of the medicine entering the brain and causing side effects. So, consult your child’s doctor before giving Lomotril 10DT Tablet Orange in such a condition.'),
(31998, 'Lomotril 10DT Tablet Orange', 'Indigo Pharmatech', 'Lomotril 10DT Tablet Orange', 'My child has milk intolerance. Can I give Lomotril 10DT Tablet Orange to my child?', 'No, children having intolerance to dairy products and milk are advised not to take this medicine as it contains lactose.'),
(31999, 'Lomotril 10DT Tablet Orange', 'Indigo Pharmatech', 'Lomotril 10DT Tablet Orange', 'My child is passing watery stools mixed with blood and is also suffering from fever. Is Lomotril 10DT Tablet Orange the right choice of treatment?', 'No, do not give Lomotril 10DT Tablet Orange if your child is passing stools mixed with blood or pus along with having a high body temperature (fever). These symptoms are indicative of some underlying pathology (infection) and may require some other line of treatment.'),
(32000, 'Lomotril 10DT Tablet Orange', 'Indigo Pharmatech', 'Lomotril 10DT Tablet Orange', 'My child is suffering from long-term (chronic) diarrhea. Can I give Lomotril 10DT Tablet Orange?', 'The use of Lomotril 10DT Tablet Orange in chronic diarrhea has not been sufficiently studied. Therefore, it is best to consult your child’s doctor before giving this medicine to your child for long-term diarrhea.'),
(32001, 'Lomotril 10DT Tablet Orange', 'Indigo Pharmatech', 'Lomotril 10DT Tablet Orange', 'What all other medicines should my child avoid while taking Lomotril 10DT Tablet Orange?', 'Although Lomotril 10DT Tablet Orange is not known to cause any interaction with other medicines, you should inform the doctor if your child is taking any medicine. It is best to narrate the complete medical history of your child as this will help the doctor understand your child’s needs better.'),
(32002, 'Lomotril Oral Suspension Mango', 'Indigo Pharmatech', 'Lomotril Oral Suspension Mango', 'How long does Lomotril Oral Suspension Mango take to work?', 'Treatment with Lomotril Oral Suspension Mango should be continued until two normal stools are passed. However, if the diarrhea does not get better after seven days of treatment you must talk to the doctor. Make sure neither to extend nor to stop the treatment by yourself without consulting your child’s doctor. Doing so may have side effects or may lead to a recurrence of symptoms.'),
(32003, 'Lomotril Oral Suspension Mango', 'Indigo Pharmatech', 'Lomotril Oral Suspension Mango', 'My child is one year old and is suffering from a neurological disorder. Is it safe to give Lomotril Oral Suspension Mango?', 'Usually, Lomotril Oral Suspension Mango does not enter into the central nervous system and lacks the potential to cause serious side effects such as neurotoxicity. But, since children below the age of 2 have underdeveloped membranes, there could be a chance of the medicine entering the brain and causing side effects. So, consult your child’s doctor before giving Lomotril Oral Suspension Mango in such a condition.'),
(32004, 'Lomotril Oral Suspension Mango', 'Indigo Pharmatech', 'Lomotril Oral Suspension Mango', 'My child has milk intolerance. Can I give Lomotril Oral Suspension Mango to my child?', 'No, children having intolerance to dairy products and milk are advised not to take this medicine as it contains lactose.'),
(32005, 'Lomotril Oral Suspension Mango', 'Indigo Pharmatech', 'Lomotril Oral Suspension Mango', 'My child is passing watery stools mixed with blood and is also suffering from fever. Is Lomotril Oral Suspension Mango the right choice of treatment?', 'No, do not give Lomotril Oral Suspension Mango if your child is passing stools mixed with blood or pus along with having a high body temperature (fever). These symptoms are indicative of some underlying pathology (infection) and may require some other line of treatment.'),
(32006, 'Lomotril Oral Suspension Mango', 'Indigo Pharmatech', 'Lomotril Oral Suspension Mango', 'My child is suffering from long-term (chronic) diarrhea. Can I give Lomotril Oral Suspension Mango?', 'The use of Lomotril Oral Suspension Mango in chronic diarrhea has not been sufficiently studied. Therefore, it is best to consult your child’s doctor before giving this medicine to your child for long-term diarrhea.'),
(32007, 'Lomotril Oral Suspension Mango', 'Indigo Pharmatech', 'Lomotril Oral Suspension Mango', 'What all other medicines should my child avoid while taking Lomotril Oral Suspension Mango?', 'Although Lomotril Oral Suspension Mango is not known to cause any interaction with other medicines, you should inform the doctor if your child is taking any medicine. It is best to narrate the complete medical history of your child as this will help the doctor understand your child’s needs better.'),
(32008, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'Is Lomovex 2mg Tablet safe?', 'Lomovex 2mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(32009, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'What is Lomovex 2mg Tablet used for?', 'Lomovex 2mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(32010, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'Can Lomovex 2mg Tablet be used for IBS?', 'Lomovex 2mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(32011, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'Can I take Lomovex 2mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Lomovex 2mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Lomovex 2mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(32012, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'Does Lomovex 2mg Tablet help in opiate withdrawal?', 'Lomovex 2mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(32013, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'Is Lomovex 2mg Tablet addictive?', 'No, Lomovex 2mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(32014, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'Can Lomovex 2mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Lomovex 2mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(32015, 'Lomovex 2mg Tablet', 'Vintochem Pharmaceuticals', 'Lomovex 2mg Tablet', 'Can I take Lomovex 2mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Lomovex 2mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Lomovex 2mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(32016, 'Lomovian 100mg Injection', 'soleil International', 'Lomovian 100mg Injection', 'How do you administer Lomovian 100mg Injection?', 'Lomovian 100mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32017, 'Lomovian 100mg Injection', 'soleil International', 'Lomovian 100mg Injection', 'What are the conditions where I should be cautious before taking Lomovian 100mg Injection?', 'You must give a proper history to your doctor before you start taking Lomovian 100mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32018, 'Lomovian 100mg Injection', 'soleil International', 'Lomovian 100mg Injection', 'How to store Lomovian 100mg Injection injections?', 'Store Lomovian 100mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32019, 'Lomovian 100mg Injection', 'soleil International', 'Lomovian 100mg Injection', 'Can Lomovian 100mg Injection be used in heart attack?', 'Yes, Lomovian 100mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32020, 'Lomovian 100mg Injection', 'soleil International', 'Lomovian 100mg Injection', 'Is it ok to inject the air bubble in Lomovian 100mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32021, 'Lomovian 20mg Injection', 'Hexagon Nutrition Limited', 'Lomovian 20mg Injection', 'How do you administer Lomovian 20mg Injection?', 'Lomovian 20mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32022, 'Lomovian 20mg Injection', 'Hexagon Nutrition Limited', 'Lomovian 20mg Injection', 'What are the conditions where I should be cautious before taking Lomovian 20mg Injection?', 'You must give a proper history to your doctor before you start taking Lomovian 20mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32023, 'Lomovian 20mg Injection', 'Hexagon Nutrition Limited', 'Lomovian 20mg Injection', 'How to store Lomovian 20mg Injection injections?', 'Store Lomovian 20mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32024, 'Lomovian 20mg Injection', 'Hexagon Nutrition Limited', 'Lomovian 20mg Injection', 'Can Lomovian 20mg Injection be used in heart attack?', 'Yes, Lomovian 20mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32025, 'Lomovian 20mg Injection', 'Hexagon Nutrition Limited', 'Lomovian 20mg Injection', 'Is it ok to inject the air bubble in Lomovian 20mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32026, 'Lomox D 250mg/250mg Capsule', 'Cubit Healthcare', 'Lomox D 250mg/250mg Capsule', 'How long does Lomox D 250mg/250mg Capsule takes to work?', 'Usually, Lomox D 250mg/250mg Capsule starts working soon after using it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(32027, 'Lomox D 250mg/250mg Capsule', 'Cubit Healthcare', 'Lomox D 250mg/250mg Capsule', 'Can I stop taking Lomox D 250mg/250mg Capsule when I feel better?', 'No, do not stop taking Lomox D 250mg/250mg Capsule and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(32028, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'Why has my child been prescribed Lomox Kid Tablet?', 'Lomox Kid Tablet contains two active antibiotics and one probiotic. Giving a combination of two antibiotics increases the efficiency of the medicine and helps in killing the resistant bacteria. The addition of probiotics helps reduce the side effects, such as diarrhea, which can occur due to the prolonged intake of antibiotics.'),
(32029, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'Can I give Lomox Kid Tablet to my child repeatedly for a long time?', 'Giving your child Lomox Kid Tablet for a long-term can cause fungal infection (oral thrush) in the mouth and severe gastrointestinal infections (superinfections). Therefore, do not alter the dose and duration on your own and give Lomox Kid Tablet to your child exactly as prescribed. Additionally, irregular treatment, repeated use, and misuse of Lomox Kid Tablet can make the bacteria resistant.'),
(32030, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'Are there any possible serious side effects of Lomox Kid Tablet?', 'Although rare, Lomox Kid Tablet may cause some serious side effects such as persistent vomiting, kidney damage, allergy, diarrhea, and severe gastrointestinal infections. Always consult your child’s doctor for help in such a situation.'),
(32031, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'Can other medicines be given at the same time as Lomox Kid Tablet?', 'Lomox Kid Tablet can sometimes interact with other medicines or substances. Inform your doctor about any other medicines your child is taking before starting Lomox Kid Tablet.'),
(32032, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'Can I get my child vaccinated while on treatment with Lomox Kid Tablet?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they fully recover from the illness. Post recovery from illness, the child can take the vaccine after consulting the doctor.'),
(32033, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'In conditions like the common cold, the mucus changes its color and thickens up with time, but this does not mean that your child needs antibiotics. Common cold symptoms often last for 7-10 days. In case they fail to clear up within this duration, reach out to your child’s doctor for guidance.'),
(32034, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'Is Lomox Kid Tablet safe for children suffering from infectious mononucleosis?', 'No, do not give this medicine to your child in this case as a high percentage of children with infectious mononucleosis develop a skin rash (erythematous rash) while taking Lomox Kid Tablet.'),
(32035, 'Lomox Kid Tablet', 'Tunic Healthcare', 'Lomox Kid Tablet', 'Is it safe to give Lomox Kid Tablet to children suffering from jaundice?', 'It is advised not to give Lomox Kid Tablet to children if they have jaundice. The reason being, Lomox Kid Tablet contains an active ingredient called cloxacillin which can aggravate the symptoms of jaundice in your child.'),
(32036, 'Lomozol Cream', 'Indigo Pharmatech', 'Lomozol Cream', 'Is Lomozol Cream safe in pregnancy?', 'Lomozol Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lomozol Cream.'),
(32037, 'Lomozol Cream', 'Indigo Pharmatech', 'Lomozol Cream', 'Is Lomozol Cream fungicidal or Fungistatic?', 'Lomozol Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(32038, 'Lomozol Cream', 'Indigo Pharmatech', 'Lomozol Cream', 'How to use Lomozol Cream?', 'Use Lomozol Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(32039, 'Lomozol Cream', 'Indigo Pharmatech', 'Lomozol Cream', 'How long does it take for Lomozol Cream to work?', 'For different ailments, Lomozol Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(32040, 'Lomozol Cream', 'Indigo Pharmatech', 'Lomozol Cream', 'How should I store Lomozol Cream?', 'Keep Lomozol Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(32041, 'Lomozol Cream', 'Indigo Pharmatech', 'Lomozol Cream', 'Is Lomozol Cream safe to use in children?', 'Yes, Lomozol Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32042, 'Lomzy D 10mg/20mg Capsule', 'DR. LBR Medi Care & Research Private Limited', 'Lomzy D 10mg/20mg Capsule', 'Is it safe to use Lomzy D 10mg/20mg Capsule?', 'Yes, Lomzy D 10mg/20mg Capsule is safe for most of the patients. However, in some patients it may cause common side effects like diarrhea, stomach pain, flatulence, dryness in the mouth, dizziness, headache and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(32043, 'Lomzy D 10mg/20mg Capsule', 'DR. LBR Medi Care & Research Private Limited', 'Lomzy D 10mg/20mg Capsule', 'What are the contraindications of Lomzy D 10mg/20mg Capsule?', 'The use of Lomzy D 10mg/20mg Capsule is considered to be harmful in patients with a known hypersensitivity to omeprazole or domperidone or any other inactive ingredients present in the medicine. Cautious use is advised in patients with underlying kidney or liver disease.'),
(32044, 'Lomzy D 10mg/20mg Capsule', 'DR. LBR Medi Care & Research Private Limited', 'Lomzy D 10mg/20mg Capsule', 'What is the best time to take Lomzy D 10mg/20mg Capsule?', 'It is best to take the medicine daily before breakfast or on an empty stomach.'),
(32045, 'Lomzy D 10mg/20mg Capsule', 'DR. LBR Medi Care & Research Private Limited', 'Lomzy D 10mg/20mg Capsule', 'Can the use of Lomzy D 10mg/20mg Capsule cause abnormal heartbeat?', 'Yes, the use of Lomzy D 10mg/20mg Capsule can cause an increased risk of irregular heartbeat (serious arrhythmias). These are serious side effects but the chances that it may happen is very low. The risk may be slightly higher in those who are more than 60 years of age.'),
(32046, 'Lomzy D 10mg/20mg Capsule', 'DR. LBR Medi Care & Research Private Limited', 'Lomzy D 10mg/20mg Capsule', 'Does the use of Lomzy D 10mg/20mg Capsule lead to dry mouth?', 'Yes, the use of Lomzy D 10mg/20mg Capsule can cause dry mouth. Dryness of mouth occurs due to Domperidone, which is present in this combination. If you experience dry mouth, drink plenty of water. Take regular sips of water during the day and keep some water on your bedside at night. Cut down the intake of alcohol and avoid smoking. If you have dry mouth, try to use alcohol-free mouthwash as its use increases the risk of tooth decay.'),
(32047, 'Lomzy D 10mg/20mg Capsule', 'DR. LBR Medi Care & Research Private Limited', 'Lomzy D 10mg/20mg Capsule', 'What is the recommended storage condition for Lomzy D 10mg/20mg Capsule?', 'Keep this medicine in the container or pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32048, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'Does Lon Eye Drop treat pink eye?', 'Lon Eye Drop is used for treat inflammation of parts of conjunctiva; relives redness and itching. It must not be used for undiagnosed red eye condition. Always follow the instructions of doctor regarding its use'),
(32049, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'Is Lon Eye Drop an antibiotic?', 'No, Lon Eye Drop is not an antibiotic. Lon Eye Drop belongs to a group of medicines called synthetic corticosteroid (glucocorticoid). It is used to relive inflammatory condition of the eye'),
(32050, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'Is Lon Eye Drop a steroid?', 'Yes, Lon Eye Drop is a steroid. Lon Eye Drop belongs to a group of medicines called synthetic corticosteroid (glucocorticoid). It is used to relive inflammatory condition of the eye'),
(32051, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'Is Lon Eye Drop safe?', 'Lon Eye Drop is safe if used at prescribed doses for the prescribed duration as advised by your doctor'),
(32052, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'Is Lon Eye Drop generic?', 'Yes, Lon Eye Drop is a generic name. It is available in various trade names'),
(32053, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'How does Lon Eye Drop work?', 'Lon Eye Drop belongs to a group of medicines synthetic corticosteroid (glucocorticoid). Lon Eye Drop binds to its receptors and controls the production of certain chemicals that mediate infections in the body, thereby inhibiting the inflammatory reactions (such as swelling, fibrin deposition, capillary dilatation, phagocyte migration)'),
(32054, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'What is Lon Eye Drop ophthalmic suspension used for?', 'Lon Eye Drop is used to treat inflammation of parts of conjunctiva such as the palpebral conjunctive (a clear membrane, which coats the inside of the eyelids.) and bulbar conjunctiva (a clear membrane of the eye, which covers the outer surface of the eye)'),
(32055, 'Lon Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Eye Drop', 'How much does Lon Eye Drop cost?', 'The price of Lon Eye Drop may vary depending upon the brand prescribed to you.Please read the instruction on the package for the correct price of the product.'),
(32056, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'Does Lon Forte Eye Drop treat pink eye?', 'Lon Forte Eye Drop is used for treat inflammation of parts of conjunctiva; relives redness and itching. It must not be used for undiagnosed red eye condition. Always follow the instructions of doctor regarding its use'),
(32057, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'Is Lon Forte Eye Drop an antibiotic?', 'No, Lon Forte Eye Drop is not an antibiotic. Lon Forte Eye Drop belongs to a group of medicines called synthetic corticosteroid (glucocorticoid). It is used to relive inflammatory condition of the eye'),
(32058, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'Is Lon Forte Eye Drop a steroid?', 'Yes, Lon Forte Eye Drop is a steroid. Lon Forte Eye Drop belongs to a group of medicines called synthetic corticosteroid (glucocorticoid). It is used to relive inflammatory condition of the eye'),
(32059, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'Is Lon Forte Eye Drop safe?', 'Lon Forte Eye Drop is safe if used at prescribed doses for the prescribed duration as advised by your doctor'),
(32060, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'Is Lon Forte Eye Drop generic?', 'Yes, Lon Forte Eye Drop is a generic name. It is available in various trade names'),
(32061, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'How does Lon Forte Eye Drop work?', 'Lon Forte Eye Drop belongs to a group of medicines synthetic corticosteroid (glucocorticoid). Lon Forte Eye Drop binds to its receptors and controls the production of certain chemicals that mediate infections in the body, thereby inhibiting the inflammatory reactions (such as swelling, fibrin deposition, capillary dilatation, phagocyte migration)'),
(32062, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'What is Lon Forte Eye Drop ophthalmic suspension used for?', 'Lon Forte Eye Drop is used to treat inflammation of parts of conjunctiva such as the palpebral conjunctive (a clear membrane, which coats the inside of the eyelids.) and bulbar conjunctiva (a clear membrane of the eye, which covers the outer surface of the eye)'),
(32063, 'Lon Forte Eye Drop', 'Pharmtak Ophtalmics India Pvt Ltd', 'Lon Forte Eye Drop', 'How much does Lon Forte Eye Drop cost?', 'The price of Lon Forte Eye Drop may vary depending upon the brand prescribed to you.Please read the instruction on the package for the correct price of the product.'),
(32064, 'Lona 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 0.5mg Tablet', 'Is Lona 0.5mg Tablet a sleeping pill?', 'Lona 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32065, 'Lona 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 0.5mg Tablet', 'Does Lona 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lona 0.5mg Tablet?', 'Yes, Lona 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lona 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32066, 'Lona 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 0.5mg Tablet', 'For how long should I take Lona 0.5mg Tablet?', 'The duration of treatment with Lona 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32067, 'Lona 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 0.5mg Tablet', 'Is it safe to take Lona 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lona 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lona 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32068, 'Lona 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 0.5mg Tablet', 'Is Lona 0.5mg Tablet addictive?', 'People taking Lona 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lona 0.5mg Tablet. Therefore, Lona 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32069, 'Lona 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 0.5mg Tablet', 'Can I stop taking Lona 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lona 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32070, 'Lona 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lona 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lona 0.5mg Tablet. This is because caffeine stimulates your brain and Lona 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lona 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lona 0.5mg Tablet.'),
(32071, 'Lona 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 1mg Tablet', 'Is Lona 1mg Tablet a sleeping pill?', 'Lona 1mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32072, 'Lona 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 1mg Tablet', 'Does Lona 1mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lona 1mg Tablet?', 'Yes, Lona 1mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lona 1mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32073, 'Lona 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 1mg Tablet', 'For how long should I take Lona 1mg Tablet?', 'The duration of treatment with Lona 1mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32074, 'Lona 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 1mg Tablet', 'Is it safe to take Lona 1mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lona 1mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lona 1mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32075, 'Lona 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 1mg Tablet', 'Is Lona 1mg Tablet addictive?', 'People taking Lona 1mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lona 1mg Tablet. Therefore, Lona 1mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32076, 'Lona 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 1mg Tablet', 'Can I stop taking Lona 1mg Tablet if I start feeling better?', 'No, do not stop taking Lona 1mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32077, 'Lona 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 1mg Tablet', 'Are there any foods we need to avoid while taking Lona 1mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lona 1mg Tablet. This is because caffeine stimulates your brain and Lona 1mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lona 1mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lona 1mg Tablet.'),
(32078, 'Lona 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 2mg Tablet', 'Is Lona 2mg Tablet a sleeping pill?', 'Lona 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32079, 'Lona 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 2mg Tablet', 'Does Lona 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lona 2mg Tablet?', 'Yes, Lona 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lona 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32080, 'Lona 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 2mg Tablet', 'For how long should I take Lona 2mg Tablet?', 'The duration of treatment with Lona 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32081, 'Lona 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 2mg Tablet', 'Is it safe to take Lona 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lona 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lona 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32082, 'Lona 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 2mg Tablet', 'Is Lona 2mg Tablet addictive?', 'People taking Lona 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lona 2mg Tablet. Therefore, Lona 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32083, 'Lona 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 2mg Tablet', 'Can I stop taking Lona 2mg Tablet if I start feeling better?', 'No, do not stop taking Lona 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32084, 'Lona 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lona 2mg Tablet', 'Are there any foods we need to avoid while taking Lona 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lona 2mg Tablet. This is because caffeine stimulates your brain and Lona 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lona 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lona 2mg Tablet.'),
(32085, 'Lona 30mg Capsule', 'Orison Pharma International', 'Lona 30mg Capsule', 'What is Lona 30mg Capsule? What is it used for?', 'Lona 30mg Capsule belongs to a class of medicines known as proton pump inhibitors. Lona 30mg Capsule is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(32086, 'Lona 30mg Capsule', 'Orison Pharma International', 'Lona 30mg Capsule', 'How is Lona 30mg Capsule given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Lona 30mg Capsule through the nasogastric (NG) tube. Open the Lona 30mg Capsule capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(32087, 'Lona 30mg Capsule', 'Orison Pharma International', 'Lona 30mg Capsule', 'Should Lona 30mg Capsule be taken empty stomach or with food?', 'Usually, Lona 30mg Capsule is taken once a day, first thing in the morning, on an empty stomach. If you take Lona 30mg Capsule twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(32088, 'Lona 30mg Capsule', 'Orison Pharma International', 'Lona 30mg Capsule', 'While taking Lona 30mg Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(32089, 'Lona 30mg Capsule', 'Orison Pharma International', 'Lona 30mg Capsule', 'Is Lona 30mg Capsule used for children?', 'Yes, Lona 30mg Capsule is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Lona 30mg Capsule are established only in children between 1 to 17 years of age.'),
(32090, 'Lonac 100mg Tablet', 'Hi-Cure Biotech', 'Lonac 100mg Tablet', 'Is Lonac 100mg Tablet a good painkiller?', 'Lonac 100mg Tablet is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(32091, 'Lonac 100mg Tablet', 'Hi-Cure Biotech', 'Lonac 100mg Tablet', 'Is Lonac 100mg Tablet a narcotic?', 'No, Lonac 100mg Tablet is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(32092, 'Lonac 100mg Tablet', 'Hi-Cure Biotech', 'Lonac 100mg Tablet', 'Does Lonac 100mg Tablet get you high?', 'No, Lonac 100mg Tablet does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(32093, 'Lonac 100mg Tablet', 'Hi-Cure Biotech', 'Lonac 100mg Tablet', 'Can Lonac 100mg Tablet damage your kidneys?', 'Long-term use and high doses of Lonac 100mg Tablet may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(32094, 'Lonac 100mg Tablet', 'Hi-Cure Biotech', 'Lonac 100mg Tablet', 'Does Lonac 100mg Tablet make you drowsy?', 'Lonac 100mg Tablet can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(32095, 'Lonac 100mg Tablet', 'Hi-Cure Biotech', 'Lonac 100mg Tablet', 'What is the most important information I need to know about Lonac 100mg Tablet?', 'It is important to know that Lonac 100mg Tablet may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lonac 100mg Tablet may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(32096, 'Lonac 100mg Tablet', 'Hi-Cure Biotech', 'Lonac 100mg Tablet', 'Can Lonac 100mg Tablet be taken during pregnancy?', 'You should not take Lonac 100mg Tablet during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lonac 100mg Tablet can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lonac 100mg Tablet during the first 6 months of pregnancy also.  In some cases, Lonac 100mg Tablet may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(32097, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'How should Lonac 75mg Injection injection be administered?', 'Lonac 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(32098, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'What is the most important information I need to know about Lonac 75mg Injection?', 'It is important to know that Lonac 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lonac 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(32099, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'Is Lonac 75mg Injection a good painkiller?', 'Lonac 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(32100, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'Can Lonac 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Lonac 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(32101, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'Does Lonac 75mg Injection make you drowsy?', 'Lonac 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(32102, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'Can Lonac 75mg Injection be taken during pregnancy?', 'You should not take Lonac 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lonac 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lonac 75mg Injection during the first 6 months of pregnancy also.  In some cases, Lonac 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(32103, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'Does Lonac 75mg Injection get you high?', 'No, Lonac 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(32104, 'Lonac 75mg Injection', 'Hi-Cure Biotech', 'Lonac 75mg Injection', 'Is Lonac 75mg Injection a narcotic?', 'No, Lonac 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(32105, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'What is Lonac MR 250mg/50mg/325mg Tablet?', 'Lonac MR 250mg/50mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(32106, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'Is it safe to use Lonac MR 250mg/50mg/325mg Tablet?', 'Lonac MR 250mg/50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(32107, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'Can I stop taking Lonac MR 250mg/50mg/325mg Tablet when my pain is relieved?', 'Lonac MR 250mg/50mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(32108, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'Can the use of Lonac MR 250mg/50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lonac MR 250mg/50mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(32109, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'Can the use of Lonac MR 250mg/50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lonac MR 250mg/50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(32110, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'Can the use of Lonac MR 250mg/50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lonac MR 250mg/50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(32111, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lonac MR 250mg/50mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32112, 'Lonac MR 250mg/50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac MR 250mg/50mg/325mg Tablet', 'What are the recommended storage conditions for Lonac MR 250mg/50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32113, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'What is Lonac MR Tablet?', 'Lonac MR Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(32114, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'Is it safe to use Lonac MR Tablet?', 'Lonac MR Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(32115, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'Can I stop taking Lonac MR Tablet when my pain is relieved?', 'Lonac MR Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(32116, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'Can the use of Lonac MR Tablet cause nausea and vomiting?', 'Yes, the use of Lonac MR Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(32117, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'Can the use of Lonac MR Tablet cause dizziness?', 'Yes, the use of Lonac MR Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(32118, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'Can the use of Lonac MR Tablet cause damage to kidneys?', 'Yes, the long-term use of Lonac MR Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(32119, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lonac MR Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32120, 'Lonac MR Tablet', 'Aarpik Pharmaceuticals Pvt Ltd', 'Lonac MR Tablet', 'What are the recommended storage conditions for Lonac MR Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32121, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'What is Lonac P 50mg/325mg Tablet?', 'Lonac P 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(32122, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Is it safe to use Lonac P 50mg/325mg Tablet?', 'Yes, Lonac P 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(32123, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Can I stop taking Lonac P 50mg/325mg Tablet when my pain is relieved?', 'Lonac P 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(32124, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Can the use of Lonac P 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lonac P 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(32125, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Can the use of Lonac P 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lonac P 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(32126, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Can the use of Lonac P 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lonac P 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(32127, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lonac P 50mg/325mg Tablet?', 'The use of Lonac P 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(32128, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Can Lonac P 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Lonac P 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lonac P 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(32129, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lonac P 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Lonac P 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(32130, 'Lonac P 50mg/325mg Tablet', 'Hi-Cure Biotech', 'Lonac P 50mg/325mg Tablet', 'What is the recommended storage condition for Lonac P 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32131, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'What are the storage condition for Lonac SP 50mg/325mg/15mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32132, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'What is Lonac SP 50mg/325mg/15mg Tablet?', 'Lonac SP 50mg/325mg/15mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(32133, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Is it safe to use Lonac SP 50mg/325mg/15mg Tablet?', 'Yes, Lonac SP 50mg/325mg/15mg Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(32134, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Can I stop taking Lonac SP 50mg/325mg/15mg Tablet when my pain is relieved?', 'Lonac SP 50mg/325mg/15mg Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Lonac SP 50mg/325mg/15mg Tablet should be continued if you are advised by your physician to do so.'),
(32135, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Can the use of Lonac SP 50mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of Lonac SP 50mg/325mg/15mg Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(32136, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Can the use of Lonac SP 50mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(32137, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with the use of Lonac SP 50mg/325mg/15mg Tablet?', 'The use of Lonac SP 50mg/325mg/15mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(32138, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Can I take Lonac SP 50mg/325mg/15mg Tablet with Vitamin B-complex?', 'Lonac SP 50mg/325mg/15mg Tablet can be taken with Vitamin B-complex preparations. While Lonac SP 50mg/325mg/15mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(32139, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Can I take Lonac SP 50mg/325mg/15mg Tablet for stomach pain?', 'No, Lonac SP 50mg/325mg/15mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(32140, 'Lonac SP 50mg/325mg/15mg Tablet', 'Hi-Cure Biotech', 'Lonac SP 50mg/325mg/15mg Tablet', 'Can the use of Lonac SP 50mg/325mg/15mg Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Lonac SP 50mg/325mg/15mg Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32141, 'Lonacalm 0.25mg Tablet', 'Propel Healthcare', 'Lonacalm 0.25mg Tablet', 'Is Lonacalm 0.25mg Tablet a sleeping pill?', 'Lonacalm 0.25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32142, 'Lonacalm 0.25mg Tablet', 'Propel Healthcare', 'Lonacalm 0.25mg Tablet', 'Does Lonacalm 0.25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonacalm 0.25mg Tablet?', 'Yes, Lonacalm 0.25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonacalm 0.25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32143, 'Lonacalm 0.25mg Tablet', 'Propel Healthcare', 'Lonacalm 0.25mg Tablet', 'For how long should I take Lonacalm 0.25mg Tablet?', 'The duration of treatment with Lonacalm 0.25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32144, 'Lonacalm 0.25mg Tablet', 'Propel Healthcare', 'Lonacalm 0.25mg Tablet', 'Is it safe to take Lonacalm 0.25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonacalm 0.25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonacalm 0.25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32145, 'Lonacalm 0.25mg Tablet', 'Propel Healthcare', 'Lonacalm 0.25mg Tablet', 'Is Lonacalm 0.25mg Tablet addictive?', 'People taking Lonacalm 0.25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonacalm 0.25mg Tablet. Therefore, Lonacalm 0.25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32146, 'Lonacalm 0.25mg Tablet', 'Propel Healthcare', 'Lonacalm 0.25mg Tablet', 'Can I stop taking Lonacalm 0.25mg Tablet if I start feeling better?', 'No, do not stop taking Lonacalm 0.25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32147, 'Lonacalm 0.25mg Tablet', 'Propel Healthcare', 'Lonacalm 0.25mg Tablet', 'Are there any foods we need to avoid while taking Lonacalm 0.25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonacalm 0.25mg Tablet. This is because caffeine stimulates your brain and Lonacalm 0.25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonacalm 0.25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonacalm 0.25mg Tablet.'),
(32148, 'Lonacare 0.5mg Tablet', 'Reliance Life Sciences', 'Lonacare 0.5mg Tablet', 'Q. Is Lonacare 0.5mg Tablet a sleeping pill?', 'Lonacare 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32149, 'Lonacare 0.5mg Tablet', 'Reliance Life Sciences', 'Lonacare 0.5mg Tablet', 'Q. Does Lonacare 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonacare 0.5mg Tablet?', 'Yes, Lonacare 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonacare 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32150, 'Lonacare 0.5mg Tablet', 'Reliance Life Sciences', 'Lonacare 0.5mg Tablet', 'Q. For how long should I take Lonacare 0.5mg Tablet?', 'The duration of treatment with Lonacare 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32151, 'Lonacare 0.5mg Tablet', 'Reliance Life Sciences', 'Lonacare 0.5mg Tablet', 'Q. Is it safe to take Lonacare 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonacare 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonacare 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32152, 'Lonacare 0.5mg Tablet', 'Reliance Life Sciences', 'Lonacare 0.5mg Tablet', 'Q. Is Lonacare 0.5mg Tablet addictive?', 'People taking Lonacare 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonacare 0.5mg Tablet. Therefore, Lonacare 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32153, 'Lonacare 0.5mg Tablet', 'Reliance Life Sciences', 'Lonacare 0.5mg Tablet', 'Q. Can I stop taking Lonacare 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonacare 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32154, 'Lonacare 0.5mg Tablet', 'Reliance Life Sciences', 'Lonacare 0.5mg Tablet', 'Q. Are there any foods we need to avoid while taking Lonacare 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonacare 0.5mg Tablet. This is because caffeine stimulates your brain and Lonacare 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonacare 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonacare 0.5mg Tablet.'),
(32155, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'Is Lonace 100mg Tablet a good painkiller?', 'Lonace 100mg Tablet is effective in relieving pain and inflammation. It is used to provide relief from various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(32156, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'Is Lonace 100mg Tablet safe?', 'Lonace 100mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32157, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'Does Lonace 100mg Tablet get you high?', 'No, Lonace 100mg Tablet does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(32158, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'Can Lonace 100mg Tablet hurt your kidneys?', 'Long-term use and high doses of Lonace 100mg Tablet may cause renal problems, such as protein or blood in urine and pain during urination. Patients  who had or have heart failure, impaired kidney function and hypertension are at risk of kidney problems. The risk of developing kidney problems is also high in patients who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Along with that, Lonace 100mg Tablet can affect kidneys of patients who are above 65 years of age or who remain dehydrated. Therefore, kidney function monitoring is recommended for such patients.'),
(32159, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'What if I forget to take a dose of Lonace 100mg Tablet?', 'If you forget a dose of Lonace 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32160, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'Does Lonace 100mg Tablet make you drowsy?', 'Lonace 100mg Tablet can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(32161, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'What is the most important information I need to know about Lonace 100mg Tablet?', 'It is important to know that Lonace 100mg Tablet may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, the use of Lonace 100mg Tablet may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(32162, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'Can Lonace 100mg Tablet be taken during pregnancy?', 'You should not take Lonace 100mg Tablet during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lonace 100mg Tablet can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lonace 100mg Tablet during the first 6 months of pregnancy also.  In some cases, Lonace 100mg Tablet may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(32163, 'Lonace 100mg Tablet', 'Agonist Healthcare', 'Lonace 100mg Tablet', 'Is Lonace 100mg Tablet effective?', 'Lonace 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lonace 100mg Tablet too early, the symptoms may return or worsen.'),
(32164, 'Lonacen 0.25mg Tablet MD', 'USV Ltd', 'Lonacen 0.25mg Tablet MD', 'Is Lonacen 0.25mg Tablet MD a sleeping pill?', 'Lonacen 0.25mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32165, 'Lonacen 0.25mg Tablet MD', 'USV Ltd', 'Lonacen 0.25mg Tablet MD', 'Does Lonacen 0.25mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonacen 0.25mg Tablet MD?', 'Yes, Lonacen 0.25mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonacen 0.25mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32166, 'Lonacen 0.25mg Tablet MD', 'USV Ltd', 'Lonacen 0.25mg Tablet MD', 'For how long should I take Lonacen 0.25mg Tablet MD?', 'The duration of treatment with Lonacen 0.25mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32167, 'Lonacen 0.25mg Tablet MD', 'USV Ltd', 'Lonacen 0.25mg Tablet MD', 'Is it safe to take Lonacen 0.25mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonacen 0.25mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonacen 0.25mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32168, 'Lonacen 0.25mg Tablet MD', 'USV Ltd', 'Lonacen 0.25mg Tablet MD', 'Is Lonacen 0.25mg Tablet MD addictive?', 'People taking Lonacen 0.25mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonacen 0.25mg Tablet MD. Therefore, Lonacen 0.25mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32169, 'Lonacen 0.25mg Tablet MD', 'USV Ltd', 'Lonacen 0.25mg Tablet MD', 'Can I stop taking Lonacen 0.25mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonacen 0.25mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32170, 'Lonacen 0.25mg Tablet MD', 'USV Ltd', 'Lonacen 0.25mg Tablet MD', 'Are there any foods we need to avoid while taking Lonacen 0.25mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonacen 0.25mg Tablet MD. This is because caffeine stimulates your brain and Lonacen 0.25mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonacen 0.25mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonacen 0.25mg Tablet MD.'),
(32171, 'Lonacen 0.5mg Tablet MD', 'USV Ltd', 'Lonacen 0.5mg Tablet MD', 'Is Lonacen 0.5mg Tablet MD a sleeping pill?', 'Lonacen 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32172, 'Lonacen 0.5mg Tablet MD', 'USV Ltd', 'Lonacen 0.5mg Tablet MD', 'Does Lonacen 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonacen 0.5mg Tablet MD?', 'Yes, Lonacen 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonacen 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32173, 'Lonacen 0.5mg Tablet MD', 'USV Ltd', 'Lonacen 0.5mg Tablet MD', 'For how long should I take Lonacen 0.5mg Tablet MD?', 'The duration of treatment with Lonacen 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32174, 'Lonacen 0.5mg Tablet MD', 'USV Ltd', 'Lonacen 0.5mg Tablet MD', 'Is it safe to take Lonacen 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonacen 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonacen 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32175, 'Lonacen 0.5mg Tablet MD', 'USV Ltd', 'Lonacen 0.5mg Tablet MD', 'Is Lonacen 0.5mg Tablet MD addictive?', 'People taking Lonacen 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonacen 0.5mg Tablet MD. Therefore, Lonacen 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32176, 'Lonacen 0.5mg Tablet MD', 'USV Ltd', 'Lonacen 0.5mg Tablet MD', 'Can I stop taking Lonacen 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonacen 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32177, 'Lonacen 0.5mg Tablet MD', 'USV Ltd', 'Lonacen 0.5mg Tablet MD', 'Are there any foods we need to avoid while taking Lonacen 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonacen 0.5mg Tablet MD. This is because caffeine stimulates your brain and Lonacen 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonacen 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonacen 0.5mg Tablet MD.'),
(32178, 'Lonacen 1mg Tablet MD', 'USV Ltd', 'Lonacen 1mg Tablet MD', 'Is Lonacen 1mg Tablet MD a sleeping pill?', 'Lonacen 1mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32179, 'Lonacen 1mg Tablet MD', 'USV Ltd', 'Lonacen 1mg Tablet MD', 'Does Lonacen 1mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonacen 1mg Tablet MD?', 'Yes, Lonacen 1mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonacen 1mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32180, 'Lonacen 1mg Tablet MD', 'USV Ltd', 'Lonacen 1mg Tablet MD', 'For how long should I take Lonacen 1mg Tablet MD?', 'The duration of treatment with Lonacen 1mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32181, 'Lonacen 1mg Tablet MD', 'USV Ltd', 'Lonacen 1mg Tablet MD', 'Is it safe to take Lonacen 1mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonacen 1mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonacen 1mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32182, 'Lonacen 1mg Tablet MD', 'USV Ltd', 'Lonacen 1mg Tablet MD', 'Is Lonacen 1mg Tablet MD addictive?', 'People taking Lonacen 1mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonacen 1mg Tablet MD. Therefore, Lonacen 1mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32183, 'Lonacen 1mg Tablet MD', 'USV Ltd', 'Lonacen 1mg Tablet MD', 'Can I stop taking Lonacen 1mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonacen 1mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32184, 'Lonacen 1mg Tablet MD', 'USV Ltd', 'Lonacen 1mg Tablet MD', 'Are there any foods we need to avoid while taking Lonacen 1mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonacen 1mg Tablet MD. This is because caffeine stimulates your brain and Lonacen 1mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonacen 1mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonacen 1mg Tablet MD.'),
(32185, 'Lonacen 2mg Tablet MD', 'USV Ltd', 'Lonacen 2mg Tablet MD', 'Is Lonacen 2mg Tablet MD a sleeping pill?', 'Lonacen 2mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32186, 'Lonacen 2mg Tablet MD', 'USV Ltd', 'Lonacen 2mg Tablet MD', 'Does Lonacen 2mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonacen 2mg Tablet MD?', 'Yes, Lonacen 2mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonacen 2mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32187, 'Lonacen 2mg Tablet MD', 'USV Ltd', 'Lonacen 2mg Tablet MD', 'For how long should I take Lonacen 2mg Tablet MD?', 'The duration of treatment with Lonacen 2mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32188, 'Lonacen 2mg Tablet MD', 'USV Ltd', 'Lonacen 2mg Tablet MD', 'Is it safe to take Lonacen 2mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonacen 2mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonacen 2mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32189, 'Lonacen 2mg Tablet MD', 'USV Ltd', 'Lonacen 2mg Tablet MD', 'Is Lonacen 2mg Tablet MD addictive?', 'People taking Lonacen 2mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonacen 2mg Tablet MD. Therefore, Lonacen 2mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32190, 'Lonacen 2mg Tablet MD', 'USV Ltd', 'Lonacen 2mg Tablet MD', 'Can I stop taking Lonacen 2mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonacen 2mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32191, 'Lonacen 2mg Tablet MD', 'USV Ltd', 'Lonacen 2mg Tablet MD', 'Are there any foods we need to avoid while taking Lonacen 2mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonacen 2mg Tablet MD. This is because caffeine stimulates your brain and Lonacen 2mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonacen 2mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonacen 2mg Tablet MD.'),
(32192, 'Lonacip 500 Tablet', 'Olens Healthcare Pvt Ltd', 'Lonacip 500 Tablet', 'Is Lonacip 500 Tablet safe?', 'Lonacip 500 Tablet is a relatively safe drug. However, it is not devoid of side effects and hence should only be taken if prescribed by a doctor in the appropriate dose, frequency, and duration as advised.'),
(32193, 'Lonacip 500 Tablet', 'Olens Healthcare Pvt Ltd', 'Lonacip 500 Tablet', 'Can the use of Lonacip 500 Tablet cause diarrhea?', 'Yes, the use of Lonacip 500 Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(32194, 'Lonacip 500 Tablet', 'Olens Healthcare Pvt Ltd', 'Lonacip 500 Tablet', 'Can I stop taking Lonacip 500 Tablet when I feel better?', 'No, do not stop taking Lonacip 500 Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(32195, 'Lonacip 500 Tablet', 'Olens Healthcare Pvt Ltd', 'Lonacip 500 Tablet', 'Can the use of Lonacip 500 Tablet increase the risk of muscle damage?', 'Yes, use of Lonacip 500 Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Lonacip 500 Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(32196, 'Lonacip 500 Tablet', 'Olens Healthcare Pvt Ltd', 'Lonacip 500 Tablet', 'Can I take Lonacip 500 Tablet with paracetamol?', 'Lonacip 500 Tablet is not known to have any clinically meaningful interaction with paracetamol. However, interactions can occur. Talk to your doctor before using both the medicines together.'),
(32197, 'Lonadep 0.5mg Tablet MD', 'Werke Healthcare', 'Lonadep 0.5mg Tablet MD', 'Is Lonadep 0.5mg Tablet MD a sleeping pill?', 'Lonadep 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32198, 'Lonadep 0.5mg Tablet MD', 'Werke Healthcare', 'Lonadep 0.5mg Tablet MD', 'Does Lonadep 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonadep 0.5mg Tablet MD?', 'Yes, Lonadep 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonadep 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32199, 'Lonadep 0.5mg Tablet MD', 'Werke Healthcare', 'Lonadep 0.5mg Tablet MD', 'For how long should I take Lonadep 0.5mg Tablet MD?', 'The duration of treatment with Lonadep 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32200, 'Lonadep 0.5mg Tablet MD', 'Werke Healthcare', 'Lonadep 0.5mg Tablet MD', 'Is it safe to take Lonadep 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonadep 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonadep 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32201, 'Lonadep 0.5mg Tablet MD', 'Werke Healthcare', 'Lonadep 0.5mg Tablet MD', 'Is Lonadep 0.5mg Tablet MD addictive?', 'People taking Lonadep 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonadep 0.5mg Tablet MD. Therefore, Lonadep 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32202, 'Lonadep 0.5mg Tablet MD', 'Werke Healthcare', 'Lonadep 0.5mg Tablet MD', 'Can I stop taking Lonadep 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonadep 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32203, 'Lonadep 0.5mg Tablet MD', 'Werke Healthcare', 'Lonadep 0.5mg Tablet MD', 'Are there any foods we need to avoid while taking Lonadep 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonadep 0.5mg Tablet MD. This is because caffeine stimulates your brain and Lonadep 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonadep 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonadep 0.5mg Tablet MD.'),
(32204, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'How should Lonafen Fast 75mg Injection injection be administered?', 'Lonafen Fast 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(32205, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'What is the most important information I need to know about Lonafen Fast 75mg Injection?', 'It is important to know that Lonafen Fast 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Lonafen Fast 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(32206, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'Is Lonafen Fast 75mg Injection a good painkiller?', 'Lonafen Fast 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(32207, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'Can Lonafen Fast 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Lonafen Fast 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(32208, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'Does Lonafen Fast 75mg Injection make you drowsy?', 'Lonafen Fast 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(32209, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'Can Lonafen Fast 75mg Injection be taken during pregnancy?', 'You should not take Lonafen Fast 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Lonafen Fast 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Lonafen Fast 75mg Injection during the first 6 months of pregnancy also.  In some cases, Lonafen Fast 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(32210, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'Does Lonafen Fast 75mg Injection get you high?', 'No, Lonafen Fast 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(32211, 'Lonafen Fast 75mg Injection', 'Zemilon Biotech', 'Lonafen Fast 75mg Injection', 'Is Lonafen Fast 75mg Injection a narcotic?', 'No, Lonafen Fast 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(32212, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'What is Lonafen MR 250mg/50mg/325mg Tablet?', 'Lonafen MR 250mg/50mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(32213, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'Is it safe to use Lonafen MR 250mg/50mg/325mg Tablet?', 'Lonafen MR 250mg/50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(32214, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'Can I stop taking Lonafen MR 250mg/50mg/325mg Tablet when my pain is relieved?', 'Lonafen MR 250mg/50mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(32215, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'Can the use of Lonafen MR 250mg/50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lonafen MR 250mg/50mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(32216, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'Can the use of Lonafen MR 250mg/50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lonafen MR 250mg/50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(32217, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'Can the use of Lonafen MR 250mg/50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lonafen MR 250mg/50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(32218, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Lonafen MR 250mg/50mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32219, 'Lonafen MR 250mg/50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen MR 250mg/50mg/325mg Tablet', 'What are the recommended storage conditions for Lonafen MR 250mg/50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32220, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'What is Lonafen P 50mg/325mg Tablet?', 'Lonafen P 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(32221, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Is it safe to use Lonafen P 50mg/325mg Tablet?', 'Yes, Lonafen P 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(32222, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Can I stop taking Lonafen P 50mg/325mg Tablet when my pain is relieved?', 'Lonafen P 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(32223, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Can the use of Lonafen P 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Lonafen P 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(32224, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Can the use of Lonafen P 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Lonafen P 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(32225, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Can the use of Lonafen P 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Lonafen P 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(32226, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Lonafen P 50mg/325mg Tablet?', 'The use of Lonafen P 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(32227, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Can Lonafen P 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Lonafen P 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Lonafen P 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(32228, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Lonafen P 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Lonafen P 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(32229, 'Lonafen P 50mg/325mg Tablet', 'Zemilon Biotech', 'Lonafen P 50mg/325mg Tablet', 'What is the recommended storage condition for Lonafen P 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32230, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'What are the storage condition for Lonafen SP 50mg/325mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32231, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'What is Lonafen SP 50mg/325mg/10mg Tablet?', 'Lonafen SP 50mg/325mg/10mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(32232, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Is it safe to use Lonafen SP 50mg/325mg/10mg Tablet?', 'Yes, Lonafen SP 50mg/325mg/10mg Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(32233, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Can I stop taking Lonafen SP 50mg/325mg/10mg Tablet when my pain is relieved?', 'Lonafen SP 50mg/325mg/10mg Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Lonafen SP 50mg/325mg/10mg Tablet should be continued if you are advised by your physician to do so.'),
(32234, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Can the use of Lonafen SP 50mg/325mg/10mg Tablet cause nausea and vomiting?', 'Yes, the use of Lonafen SP 50mg/325mg/10mg Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(32235, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Can the use of Lonafen SP 50mg/325mg/10mg Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(32236, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Are there any specific contraindications associated with the use of Lonafen SP 50mg/325mg/10mg Tablet?', 'The use of Lonafen SP 50mg/325mg/10mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(32237, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Can I take Lonafen SP 50mg/325mg/10mg Tablet with Vitamin B-complex?', 'Lonafen SP 50mg/325mg/10mg Tablet can be taken with Vitamin B-complex preparations. While Lonafen SP 50mg/325mg/10mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(32238, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Can I take Lonafen SP 50mg/325mg/10mg Tablet for stomach pain?', 'No, Lonafen SP 50mg/325mg/10mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(32239, 'Lonafen SP 50mg/325mg/10mg Tablet', 'Zemilon Biotech', 'Lonafen SP 50mg/325mg/10mg Tablet', 'Can the use of Lonafen SP 50mg/325mg/10mg Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Lonafen SP 50mg/325mg/10mg Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32240, 'Lonafest 0.25mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.25mg Tablet MD', 'Is Lonafest 0.25mg Tablet MD a sleeping pill?', 'Lonafest 0.25mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32241, 'Lonafest 0.25mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.25mg Tablet MD', 'Does Lonafest 0.25mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonafest 0.25mg Tablet MD?', 'Yes, Lonafest 0.25mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonafest 0.25mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32242, 'Lonafest 0.25mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.25mg Tablet MD', 'For how long should I take Lonafest 0.25mg Tablet MD?', 'The duration of treatment with Lonafest 0.25mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32243, 'Lonafest 0.25mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.25mg Tablet MD', 'Is it safe to take Lonafest 0.25mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonafest 0.25mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonafest 0.25mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32244, 'Lonafest 0.25mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.25mg Tablet MD', 'Is Lonafest 0.25mg Tablet MD addictive?', 'People taking Lonafest 0.25mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonafest 0.25mg Tablet MD. Therefore, Lonafest 0.25mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32245, 'Lonafest 0.25mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.25mg Tablet MD', 'Can I stop taking Lonafest 0.25mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonafest 0.25mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32246, 'Lonafest 0.25mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.25mg Tablet MD', 'Are there any foods we need to avoid while taking Lonafest 0.25mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonafest 0.25mg Tablet MD. This is because caffeine stimulates your brain and Lonafest 0.25mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonafest 0.25mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonafest 0.25mg Tablet MD.'),
(32247, 'Lonafest 0.5 Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.5 Tablet MD', 'Is Lonafest 0.5 Tablet MD a sleeping pill?', 'Lonafest 0.5 Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32248, 'Lonafest 0.5 Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.5 Tablet MD', 'Does Lonafest 0.5 Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonafest 0.5 Tablet MD?', 'Yes, Lonafest 0.5 Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonafest 0.5 Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32249, 'Lonafest 0.5 Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.5 Tablet MD', 'For how long should I take Lonafest 0.5 Tablet MD?', 'The duration of treatment with Lonafest 0.5 Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32250, 'Lonafest 0.5 Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.5 Tablet MD', 'Is it safe to take Lonafest 0.5 Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonafest 0.5 Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonafest 0.5 Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32251, 'Lonafest 0.5 Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.5 Tablet MD', 'Is Lonafest 0.5 Tablet MD addictive?', 'People taking Lonafest 0.5 Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonafest 0.5 Tablet MD. Therefore, Lonafest 0.5 Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32252, 'Lonafest 0.5 Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.5 Tablet MD', 'Can I stop taking Lonafest 0.5 Tablet MD if I start feeling better?', 'No, do not stop taking Lonafest 0.5 Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32253, 'Lonafest 0.5 Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 0.5 Tablet MD', 'Are there any foods we need to avoid while taking Lonafest 0.5 Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonafest 0.5 Tablet MD. This is because caffeine stimulates your brain and Lonafest 0.5 Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonafest 0.5 Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonafest 0.5 Tablet MD.'),
(32254, 'Lonafest 1mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 1mg Tablet MD', 'Is Lonafest 1mg Tablet MD a sleeping pill?', 'Lonafest 1mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32255, 'Lonafest 1mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 1mg Tablet MD', 'Does Lonafest 1mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonafest 1mg Tablet MD?', 'Yes, Lonafest 1mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonafest 1mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32256, 'Lonafest 1mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 1mg Tablet MD', 'For how long should I take Lonafest 1mg Tablet MD?', 'The duration of treatment with Lonafest 1mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32257, 'Lonafest 1mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 1mg Tablet MD', 'Is it safe to take Lonafest 1mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonafest 1mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonafest 1mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32258, 'Lonafest 1mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 1mg Tablet MD', 'Is Lonafest 1mg Tablet MD addictive?', 'People taking Lonafest 1mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonafest 1mg Tablet MD. Therefore, Lonafest 1mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32259, 'Lonafest 1mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 1mg Tablet MD', 'Can I stop taking Lonafest 1mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonafest 1mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32260, 'Lonafest 1mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 1mg Tablet MD', 'Are there any foods we need to avoid while taking Lonafest 1mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonafest 1mg Tablet MD. This is because caffeine stimulates your brain and Lonafest 1mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonafest 1mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonafest 1mg Tablet MD.'),
(32261, 'Lonafest 2mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 2mg Tablet MD', 'Is Lonafest 2mg Tablet MD a sleeping pill?', 'Lonafest 2mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32262, 'Lonafest 2mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 2mg Tablet MD', 'Does Lonafest 2mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonafest 2mg Tablet MD?', 'Yes, Lonafest 2mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonafest 2mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32263, 'Lonafest 2mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 2mg Tablet MD', 'For how long should I take Lonafest 2mg Tablet MD?', 'The duration of treatment with Lonafest 2mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32264, 'Lonafest 2mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 2mg Tablet MD', 'Is it safe to take Lonafest 2mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonafest 2mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonafest 2mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32265, 'Lonafest 2mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 2mg Tablet MD', 'Is Lonafest 2mg Tablet MD addictive?', 'People taking Lonafest 2mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonafest 2mg Tablet MD. Therefore, Lonafest 2mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32266, 'Lonafest 2mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 2mg Tablet MD', 'Can I stop taking Lonafest 2mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonafest 2mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32267, 'Lonafest 2mg Tablet MD', 'Arinna Lifescience Pvt Ltd', 'Lonafest 2mg Tablet MD', 'Are there any foods we need to avoid while taking Lonafest 2mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonafest 2mg Tablet MD. This is because caffeine stimulates your brain and Lonafest 2mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonafest 2mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonafest 2mg Tablet MD.'),
(32268, 'Lonafest P 0.25mg/10mg Tablet', 'Arinna Lifescience Pvt Ltd', 'Lonafest P 0.25mg/10mg Tablet', 'Can I stop taking Lonafest P 0.25mg/10mg Tablet if I feel well?', 'No, you should continue to take Lonafest P 0.25mg/10mg Tablet even if you feel well. If you stop Lonafest P 0.25mg/10mg Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Lonafest P 0.25mg/10mg Tablet. No, you should continue to take Lonafest P 0.25mg/10mg Tablet even if you feel well. If you stop Lonafest P 0.25mg/10mg Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Lonafest P 0.25mg/10mg Tablet.'),
(32269, 'Lonafest P 0.25mg/10mg Tablet', 'Arinna Lifescience Pvt Ltd', 'Lonafest P 0.25mg/10mg Tablet', 'What are the instructions for the storage and disposal of Lonafest P 0.25mg/10mg Tablet?', 'Keep this medicine in the packet or container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(32270, 'Lonafest P 0.25mg/10mg Tablet', 'Arinna Lifescience Pvt Ltd', 'Lonafest P 0.25mg/10mg Tablet', 'Can I feel dizzy after taking Lonafest P 0.25mg/10mg Tablet?', 'Yes, the use of Lonafest P 0.25mg/10mg Tablet can make you feel dizzy. This may occur when you suddenly get up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(32271, 'Lonafest P 0.5mg/20mg Tablet', 'Arinna Lifescience Pvt Ltd', 'Lonafest P 0.5mg/20mg Tablet', 'Can I stop taking Lonafest P 0.5mg/20mg Tablet if I feel well?', 'No, you should continue to take Lonafest P 0.5mg/20mg Tablet even if you feel well. If you stop Lonafest P 0.5mg/20mg Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Lonafest P 0.5mg/20mg Tablet. No, you should continue to take Lonafest P 0.5mg/20mg Tablet even if you feel well. If you stop Lonafest P 0.5mg/20mg Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Lonafest P 0.5mg/20mg Tablet.'),
(32272, 'Lonafest P 0.5mg/20mg Tablet', 'Arinna Lifescience Pvt Ltd', 'Lonafest P 0.5mg/20mg Tablet', 'What are the instructions for the storage and disposal of Lonafest P 0.5mg/20mg Tablet?', 'Keep this medicine in the packet or container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(32273, 'Lonafest P 0.5mg/20mg Tablet', 'Arinna Lifescience Pvt Ltd', 'Lonafest P 0.5mg/20mg Tablet', 'Can I feel dizzy after taking Lonafest P 0.5mg/20mg Tablet?', 'Yes, the use of Lonafest P 0.5mg/20mg Tablet can make you feel dizzy. This may occur when you suddenly get up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(32274, 'Lonapam 0.25mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.25mg Tablet', 'Is Lonapam 0.25mg Tablet a sleeping pill?', 'Lonapam 0.25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32275, 'Lonapam 0.25mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.25mg Tablet', 'Does Lonapam 0.25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonapam 0.25mg Tablet?', 'Yes, Lonapam 0.25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapam 0.25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32276, 'Lonapam 0.25mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.25mg Tablet', 'For how long should I take Lonapam 0.25mg Tablet?', 'The duration of treatment with Lonapam 0.25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32277, 'Lonapam 0.25mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.25mg Tablet', 'Is it safe to take Lonapam 0.25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapam 0.25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonapam 0.25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32278, 'Lonapam 0.25mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.25mg Tablet', 'Is Lonapam 0.25mg Tablet addictive?', 'People taking Lonapam 0.25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapam 0.25mg Tablet. Therefore, Lonapam 0.25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32279, 'Lonapam 0.25mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.25mg Tablet', 'Can I stop taking Lonapam 0.25mg Tablet if I start feeling better?', 'No, do not stop taking Lonapam 0.25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32280, 'Lonapam 0.25mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.25mg Tablet', 'Are there any foods we need to avoid while taking Lonapam 0.25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapam 0.25mg Tablet. This is because caffeine stimulates your brain and Lonapam 0.25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapam 0.25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapam 0.25mg Tablet.'),
(32281, 'Lonapam 0.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.5mg Tablet', 'Is Lonapam 0.5mg Tablet a sleeping pill?', 'Lonapam 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32282, 'Lonapam 0.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.5mg Tablet', 'Does Lonapam 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonapam 0.5mg Tablet?', 'Yes, Lonapam 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapam 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32283, 'Lonapam 0.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.5mg Tablet', 'For how long should I take Lonapam 0.5mg Tablet?', 'The duration of treatment with Lonapam 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32284, 'Lonapam 0.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.5mg Tablet', 'Is it safe to take Lonapam 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapam 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonapam 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32285, 'Lonapam 0.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.5mg Tablet', 'Is Lonapam 0.5mg Tablet addictive?', 'People taking Lonapam 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapam 0.5mg Tablet. Therefore, Lonapam 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32286, 'Lonapam 0.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.5mg Tablet', 'Can I stop taking Lonapam 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonapam 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32287, 'Lonapam 0.5mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonapam 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapam 0.5mg Tablet. This is because caffeine stimulates your brain and Lonapam 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapam 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapam 0.5mg Tablet.'),
(32288, 'Lonapam 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet (Shine Pharmaceuticals Ltd)', 'Q. Is Lonapam 1mg Tablet a sleeping pill?', 'Lonapam 1mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32289, 'Lonapam 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet (Shine Pharmaceuticals Ltd)', 'Q. Does Lonapam 1mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonapam 1mg Tablet?', 'Yes, Lonapam 1mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapam 1mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32290, 'Lonapam 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet (Shine Pharmaceuticals Ltd)', 'Q. For how long should I take Lonapam 1mg Tablet?', 'The duration of treatment with Lonapam 1mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32291, 'Lonapam 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet (Shine Pharmaceuticals Ltd)', 'Q. Is it safe to take Lonapam 1mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapam 1mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonapam 1mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32292, 'Lonapam 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet (Shine Pharmaceuticals Ltd)', 'Q. Is Lonapam 1mg Tablet addictive?', 'People taking Lonapam 1mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapam 1mg Tablet. Therefore, Lonapam 1mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32293, 'Lonapam 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet (Shine Pharmaceuticals Ltd)', 'Q. Can I stop taking Lonapam 1mg Tablet if I start feeling better?', 'No, do not stop taking Lonapam 1mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32294, 'Lonapam 1mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet (Shine Pharmaceuticals Ltd)', 'Q. Are there any foods we need to avoid while taking Lonapam 1mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapam 1mg Tablet. This is because caffeine stimulates your brain and Lonapam 1mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapam 1mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapam 1mg Tablet.'),
(32295, 'Lonapam 1mg Tablet', 'Deltas Pharma', 'Lonapam 1mg Tablet (Deltas Pharma)', 'Is Lonapam 1mg Tablet a sleeping pill?', 'Lonapam 1mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32296, 'Lonapam 1mg Tablet', 'Deltas Pharma', 'Lonapam 1mg Tablet (Deltas Pharma)', 'Does Lonapam 1mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonapam 1mg Tablet?', 'Yes, Lonapam 1mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapam 1mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32297, 'Lonapam 1mg Tablet', 'Deltas Pharma', 'Lonapam 1mg Tablet (Deltas Pharma)', 'For how long should I take Lonapam 1mg Tablet?', 'The duration of treatment with Lonapam 1mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32298, 'Lonapam 1mg Tablet', 'Deltas Pharma', 'Lonapam 1mg Tablet (Deltas Pharma)', 'Is it safe to take Lonapam 1mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapam 1mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonapam 1mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32299, 'Lonapam 1mg Tablet', 'Deltas Pharma', 'Lonapam 1mg Tablet (Deltas Pharma)', 'Is Lonapam 1mg Tablet addictive?', 'People taking Lonapam 1mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapam 1mg Tablet. Therefore, Lonapam 1mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32300, 'Lonapam 1mg Tablet', 'Deltas Pharma', 'Lonapam 1mg Tablet (Deltas Pharma)', 'Can I stop taking Lonapam 1mg Tablet if I start feeling better?', 'No, do not stop taking Lonapam 1mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32301, 'Lonapam 1mg Tablet', 'Deltas Pharma', 'Lonapam 1mg Tablet (Deltas Pharma)', 'Are there any foods we need to avoid while taking Lonapam 1mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapam 1mg Tablet. This is because caffeine stimulates your brain and Lonapam 1mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapam 1mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapam 1mg Tablet.'),
(32302, 'Lonapam 1mg Tablet MD', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet MD', 'Is Lonapam  1mg Tablet MD a sleeping pill?', 'Lonapam  1mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32303, 'Lonapam 1mg Tablet MD', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet MD', 'Does Lonapam  1mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonapam  1mg Tablet MD?', 'Yes, Lonapam  1mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapam  1mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32304, 'Lonapam 1mg Tablet MD', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet MD', 'For how long should I take Lonapam  1mg Tablet MD?', 'The duration of treatment with Lonapam  1mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32305, 'Lonapam 1mg Tablet MD', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet MD', 'Is it safe to take Lonapam  1mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapam  1mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonapam  1mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32306, 'Lonapam 1mg Tablet MD', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet MD', 'Is Lonapam  1mg Tablet MD addictive?', 'People taking Lonapam  1mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapam  1mg Tablet MD. Therefore, Lonapam  1mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32307, 'Lonapam 1mg Tablet MD', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet MD', 'Can I stop taking Lonapam  1mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonapam  1mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32308, 'Lonapam 1mg Tablet MD', 'Shine Pharmaceuticals Ltd', 'Lonapam 1mg Tablet MD', 'Are there any foods we need to avoid while taking Lonapam  1mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapam  1mg Tablet MD. This is because caffeine stimulates your brain and Lonapam  1mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapam  1mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapam  1mg Tablet MD.'),
(32309, 'Lonapam 2mg Tablet', 'Deltas Pharma', 'Lonapam 2mg Tablet (Deltas Pharma)', 'Is Lonapam 2mg Tablet a sleeping pill?', 'Lonapam 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32310, 'Lonapam 2mg Tablet', 'Deltas Pharma', 'Lonapam 2mg Tablet (Deltas Pharma)', 'Does Lonapam 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonapam 2mg Tablet?', 'Yes, Lonapam 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapam 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32311, 'Lonapam 2mg Tablet', 'Deltas Pharma', 'Lonapam 2mg Tablet (Deltas Pharma)', 'For how long should I take Lonapam 2mg Tablet?', 'The duration of treatment with Lonapam 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32312, 'Lonapam 2mg Tablet', 'Deltas Pharma', 'Lonapam 2mg Tablet (Deltas Pharma)', 'Is it safe to take Lonapam 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapam 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonapam 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32313, 'Lonapam 2mg Tablet', 'Deltas Pharma', 'Lonapam 2mg Tablet (Deltas Pharma)', 'Is Lonapam 2mg Tablet addictive?', 'People taking Lonapam 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapam 2mg Tablet. Therefore, Lonapam 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32314, 'Lonapam 2mg Tablet', 'Deltas Pharma', 'Lonapam 2mg Tablet (Deltas Pharma)', 'Can I stop taking Lonapam 2mg Tablet if I start feeling better?', 'No, do not stop taking Lonapam 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32315, 'Lonapam 2mg Tablet', 'Deltas Pharma', 'Lonapam 2mg Tablet (Deltas Pharma)', 'Are there any foods we need to avoid while taking Lonapam 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapam 2mg Tablet. This is because caffeine stimulates your brain and Lonapam 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapam 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapam 2mg Tablet.'),
(32316, 'Lonapam 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 2mg Tablet (Shine Pharmaceuticals Ltd)', 'Is Lonapam 2mg Tablet a sleeping pill?', 'Lonapam 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32317, 'Lonapam 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 2mg Tablet (Shine Pharmaceuticals Ltd)', 'Does Lonapam 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonapam 2mg Tablet?', 'Yes, Lonapam 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapam 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32318, 'Lonapam 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 2mg Tablet (Shine Pharmaceuticals Ltd)', 'For how long should I take Lonapam 2mg Tablet?', 'The duration of treatment with Lonapam 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32319, 'Lonapam 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 2mg Tablet (Shine Pharmaceuticals Ltd)', 'Is it safe to take Lonapam 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapam 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonapam 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32320, 'Lonapam 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 2mg Tablet (Shine Pharmaceuticals Ltd)', 'Is Lonapam 2mg Tablet addictive?', 'People taking Lonapam 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapam 2mg Tablet. Therefore, Lonapam 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32321, 'Lonapam 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 2mg Tablet (Shine Pharmaceuticals Ltd)', 'Can I stop taking Lonapam 2mg Tablet if I start feeling better?', 'No, do not stop taking Lonapam 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32322, 'Lonapam 2mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonapam 2mg Tablet (Shine Pharmaceuticals Ltd)', 'Are there any foods we need to avoid while taking Lonapam 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapam 2mg Tablet. This is because caffeine stimulates your brain and Lonapam 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapam 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapam 2mg Tablet.'),
(32323, 'Lonapil 0.25mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.25mg Tablet MD', 'Is Lonapil 0.25mg Tablet MD a sleeping pill?', 'Lonapil 0.25mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32324, 'Lonapil 0.25mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.25mg Tablet MD', 'Does Lonapil 0.25mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonapil 0.25mg Tablet MD?', 'Yes, Lonapil 0.25mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapil 0.25mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32325, 'Lonapil 0.25mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.25mg Tablet MD', 'For how long should I take Lonapil 0.25mg Tablet MD?', 'The duration of treatment with Lonapil 0.25mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32326, 'Lonapil 0.25mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.25mg Tablet MD', 'Is it safe to take Lonapil 0.25mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapil 0.25mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonapil 0.25mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32327, 'Lonapil 0.25mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.25mg Tablet MD', 'Is Lonapil 0.25mg Tablet MD addictive?', 'People taking Lonapil 0.25mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapil 0.25mg Tablet MD. Therefore, Lonapil 0.25mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32328, 'Lonapil 0.25mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.25mg Tablet MD', 'Can I stop taking Lonapil 0.25mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonapil 0.25mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32329, 'Lonapil 0.25mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.25mg Tablet MD', 'Are there any foods we need to avoid while taking Lonapil 0.25mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapil 0.25mg Tablet MD. This is because caffeine stimulates your brain and Lonapil 0.25mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapil 0.25mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapil 0.25mg Tablet MD.'),
(32330, 'Lonapil 0.5mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.5mg Tablet MD', 'Is Lonapil 0.5mg Tablet MD a sleeping pill?', 'Lonapil 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32331, 'Lonapil 0.5mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.5mg Tablet MD', 'Does Lonapil 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonapil 0.5mg Tablet MD?', 'Yes, Lonapil 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonapil 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32332, 'Lonapil 0.5mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.5mg Tablet MD', 'For how long should I take Lonapil 0.5mg Tablet MD?', 'The duration of treatment with Lonapil 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32333, 'Lonapil 0.5mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.5mg Tablet MD', 'Is it safe to take Lonapil 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonapil 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonapil 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32334, 'Lonapil 0.5mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.5mg Tablet MD', 'Is Lonapil 0.5mg Tablet MD addictive?', 'People taking Lonapil 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonapil 0.5mg Tablet MD. Therefore, Lonapil 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32335, 'Lonapil 0.5mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.5mg Tablet MD', 'Can I stop taking Lonapil 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonapil 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32336, 'Lonapil 0.5mg Tablet MD', 'Arches Pharmaceuticals', 'Lonapil 0.5mg Tablet MD', 'Are there any foods we need to avoid while taking Lonapil 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonapil 0.5mg Tablet MD. This is because caffeine stimulates your brain and Lonapil 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonapil 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonapil 0.5mg Tablet MD.'),
(32337, 'Lonapro 0.5mg/20mg Tablet', 'Winystra Pharmaceuticals Pvt . Ltd.', 'Lonapro 0.5mg/20mg Tablet', 'Can I stop taking Lonapro 0.5mg/20mg Tablet if I feel well?', 'No, you should continue to take Lonapro 0.5mg/20mg Tablet even if you feel well. If you stop Lonapro 0.5mg/20mg Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Lonapro 0.5mg/20mg Tablet. No, you should continue to take Lonapro 0.5mg/20mg Tablet even if you feel well. If you stop Lonapro 0.5mg/20mg Tablet suddenly, serious withdrawal problems may occur. Your doctor will decrease your dose gradually before asking you to stop Lonapro 0.5mg/20mg Tablet.'),
(32338, 'Lonapro 0.5mg/20mg Tablet', 'Winystra Pharmaceuticals Pvt . Ltd.', 'Lonapro 0.5mg/20mg Tablet', 'What are the instructions for the storage and disposal of Lonapro 0.5mg/20mg Tablet?', 'Keep this medicine in the packet or container it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(32339, 'Lonapro 0.5mg/20mg Tablet', 'Winystra Pharmaceuticals Pvt . Ltd.', 'Lonapro 0.5mg/20mg Tablet', 'Can I feel dizzy after taking Lonapro 0.5mg/20mg Tablet?', 'Yes, the use of Lonapro 0.5mg/20mg Tablet can make you feel dizzy. This may occur when you suddenly get up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(32340, 'Lonard 250mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 250mg Tablet', 'Is Lonard 250mg Tablet safe?', 'Lonard 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32341, 'Lonard 250mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 250mg Tablet', 'What if I forget to take a dose of Lonard 250mg Tablet?', 'If you forget a dose of Lonard 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32342, 'Lonard 250mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 250mg Tablet', 'Can the use of Lonard 250mg Tablet cause diarrhea?', 'Yes, the use of Lonard 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(32343, 'Lonard 250mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 250mg Tablet', 'Can I stop taking Lonard 250mg Tablet when I feel better?', 'No, do not stop taking Lonard 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lonard 250mg Tablet too early, the symptoms may return or worsen. Continue taking Lonard 250mg Tablet in the dose and duration advised by the doctor.'),
(32344, 'Lonard 250mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 250mg Tablet', 'Can the use of Lonard 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lonard 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lonard 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(32345, 'Lonard 500mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 500mg Tablet', 'Is Lonard 500mg Tablet safe?', 'Lonard 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32346, 'Lonard 500mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 500mg Tablet', 'What if I forget to take a dose of Lonard 500mg Tablet?', 'If you forget a dose of Lonard 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32347, 'Lonard 500mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 500mg Tablet', 'Can the use of Lonard 500mg Tablet cause diarrhea?', 'Yes, the use of Lonard 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(32348, 'Lonard 500mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 500mg Tablet', 'Can I stop taking Lonard 500mg Tablet when I feel better?', 'No, do not stop taking Lonard 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Lonard 500mg Tablet too early, the symptoms may return or worsen. Continue taking Lonard 500mg Tablet in the dose and duration advised by the doctor.'),
(32349, 'Lonard 500mg Tablet', 'Swiss Pharma Pvt Ltd', 'Lonard 500mg Tablet', 'Can the use of Lonard 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Lonard 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Lonard 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(32350, 'Lonart 20mg/120mg Tablet DT', 'Bliss Gvs Pharma Limited', 'Lonart 20mg/120mg Tablet DT', 'How to take Lonart 20mg/120mg Tablet DT?', 'Take Lonart 20mg/120mg Tablet DT with food, exactly as prescribed by your doctor. This medicine is usually taken twice a day with a meal for 3 days, or as directed. On your first day of treatment, take your first dose with food, followed by your second dose 8 hours later. Then for the next 2 days, take one dose in the morning and one dose in the evening. Patients should be encouraged to resume normal eating as soon as food can be tolerated, since this improves the absorption of the medicine.'),
(32351, 'Lonart 20mg/120mg Tablet DT', 'Bliss Gvs Pharma Limited', 'Lonart 20mg/120mg Tablet DT', 'Can I take Lonart 20mg/120mg Tablet DT while I am pregnant?', 'No, Lonart 20mg/120mg Tablet DT is considered to be harmful for women in their first trimester of pregnancy. The reason being, it increases the chances of fetal loss.'),
(32352, 'Lonart 20mg/120mg Tablet DT', 'Bliss Gvs Pharma Limited', 'Lonart 20mg/120mg Tablet DT', 'Are there any specific contraindications associated with the use of Lonart 20mg/120mg Tablet DT?', 'The use of Lonart 20mg/120mg Tablet DT is considered to be harmful for patients with a known hypersensitivity to any of the active or inactive ingredients of the medicine. Caution is advised in patients with cases of severe malaria and in the first trimester of pregnancy.'),
(32353, 'Lonart 20mg/120mg Tablet DT', 'Bliss Gvs Pharma Limited', 'Lonart 20mg/120mg Tablet DT', 'What should I know about the storage and disposal of Lonart 20mg/120mg Tablet DT?', 'It is advised to keep this medicine in the container it came in, tightly closed. It should be kept out of reach of children. Store it at room temperature and away from excess heat and moisture.'),
(32354, 'Lonart DS 80mg/480mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart DS 80mg/480mg Tablet', 'How to take Lonart DS 80mg/480mg Tablet?', 'Take Lonart DS 80mg/480mg Tablet with food, exactly as prescribed by your doctor. This medicine is usually taken twice a day with a meal for 3 days, or as directed. On your first day of treatment, take your first dose with food, followed by your second dose 8 hours later. Then for the next 2 days, take one dose in the morning and one dose in the evening. Patients should be encouraged to resume normal eating as soon as food can be tolerated, since this improves the absorption of the medicine.'),
(32355, 'Lonart DS 80mg/480mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart DS 80mg/480mg Tablet', 'Can I take Lonart DS 80mg/480mg Tablet while I am pregnant?', 'No, Lonart DS 80mg/480mg Tablet is considered to be harmful for women in their first trimester of pregnancy. The reason being, it increases the chances of fetal loss.'),
(32356, 'Lonart DS 80mg/480mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart DS 80mg/480mg Tablet', 'Are there any specific contraindications associated with the use of Lonart DS 80mg/480mg Tablet?', 'The use of Lonart DS 80mg/480mg Tablet is considered to be harmful for patients with a known hypersensitivity to any of the active or inactive ingredients of the medicine. Caution is advised in patients with cases of severe malaria and in the first trimester of pregnancy.'),
(32357, 'Lonart DS 80mg/480mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart DS 80mg/480mg Tablet', 'What should I know about the storage and disposal of Lonart DS 80mg/480mg Tablet?', 'It is advised to keep this medicine in the container it came in, tightly closed. It should be kept out of reach of children. Store it at room temperature and away from excess heat and moisture.'),
(32358, 'Lonart Forte 40mg/240mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart Forte 40mg/240mg Tablet', 'How to take Lonart Forte 40mg/240mg Tablet?', 'Take Lonart Forte 40mg/240mg Tablet with food, exactly as prescribed by your doctor. This medicine is usually taken twice a day with a meal for 3 days, or as directed. On your first day of treatment, take your first dose with food, followed by your second dose 8 hours later. Then for the next 2 days, take one dose in the morning and one dose in the evening. Patients should be encouraged to resume normal eating as soon as food can be tolerated, since this improves the absorption of the medicine.'),
(32359, 'Lonart Forte 40mg/240mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart Forte 40mg/240mg Tablet', 'Can I take Lonart Forte 40mg/240mg Tablet while I am pregnant?', 'No, Lonart Forte 40mg/240mg Tablet is considered to be harmful for women in their first trimester of pregnancy. The reason being, it increases the chances of fetal loss.'),
(32360, 'Lonart Forte 40mg/240mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart Forte 40mg/240mg Tablet', 'Are there any specific contraindications associated with the use of Lonart Forte 40mg/240mg Tablet?', 'The use of Lonart Forte 40mg/240mg Tablet is considered to be harmful for patients with a known hypersensitivity to any of the active or inactive ingredients of the medicine. Caution is advised in patients with cases of severe malaria and in the first trimester of pregnancy.'),
(32361, 'Lonart Forte 40mg/240mg Tablet', 'Bliss Gvs Pharma Limited', 'Lonart Forte 40mg/240mg Tablet', 'What should I know about the storage and disposal of Lonart Forte 40mg/240mg Tablet?', 'It is advised to keep this medicine in the container it came in, tightly closed. It should be kept out of reach of children. Store it at room temperature and away from excess heat and moisture.'),
(32362, 'Lonast M 5mg/10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonast M 5mg/10mg Tablet', 'What is Lonast M 5mg/10mg Tablet?', 'Lonast M 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(32363, 'Lonast M 5mg/10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonast M 5mg/10mg Tablet', 'Can the use of Lonast M 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lonast M 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(32364, 'Lonast M 5mg/10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonast M 5mg/10mg Tablet', 'Can Lonast M 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lonast M 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(32365, 'Lonast M 5mg/10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonast M 5mg/10mg Tablet', 'Can the use of Lonast M 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lonast M 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(32366, 'Lonast M 5mg/10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonast M 5mg/10mg Tablet', 'Can I drink alcohol while taking Lonast M 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lonast M 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lonast M 5mg/10mg Tablet.'),
(32367, 'Lonast M 5mg/10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonast M 5mg/10mg Tablet', 'Will Lonast M 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lonast M 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(32368, 'Lonast M 5mg/10mg Tablet', 'Shine Pharmaceuticals Ltd', 'Lonast M 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lonast M 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(32369, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(32370, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'Can I decrease the dose of Lonast M Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(32371, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'How should Lonast M Syrup be stored?', 'Lonast M Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(32372, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'Can Lonast M Syrup make my child sleepy?', 'Lonast M Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(32373, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lonast M Syrup?', 'No, don’t start Lonast M Syrup without speaking to your child’s doctor. Moreover, Lonast M Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(32374, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lonast M Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(32375, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lonast M Syrup to my child?', 'Some studies show that Lonast M Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(32376, 'Lonast M Syrup', 'Shine Pharmaceuticals Ltd', 'Lonast M Syrup', 'Can I use Lonast M Syrup for treating acute asthma attacks in my child?', 'Lonast M Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(32377, 'Lonate 5gm Injection', 'F C Remedies', 'Lonate 5gm Injection', 'Is it ok to take alcohol when taking Lonate 5gm Injection?', 'No, it is not recommended to take alcohol when on Lonate 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(32378, 'Lonate 5gm Injection', 'F C Remedies', 'Lonate 5gm Injection', 'What is Lonate 5gm Injection?', 'Lonate 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(32379, 'Lonate 5gm Injection', 'F C Remedies', 'Lonate 5gm Injection', 'What is the use of Lonate 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Lonate 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(32380, 'Lonate 5gm Injection', 'F C Remedies', 'Lonate 5gm Injection', 'How is Lonate 5gm Injection given?', 'Lonate 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(32381, 'Lonator MD 0.25mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.25mg Tablet', 'Is Lonator MD 0.25mg Tablet a sleeping pill?', 'Lonator MD 0.25mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32382, 'Lonator MD 0.25mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.25mg Tablet', 'Does Lonator MD 0.25mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonator MD 0.25mg Tablet?', 'Yes, Lonator MD 0.25mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonator MD 0.25mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32383, 'Lonator MD 0.25mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.25mg Tablet', 'For how long should I take Lonator MD 0.25mg Tablet?', 'The duration of treatment with Lonator MD 0.25mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32384, 'Lonator MD 0.25mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.25mg Tablet', 'Is it safe to take Lonator MD 0.25mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonator MD 0.25mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonator MD 0.25mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32385, 'Lonator MD 0.25mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.25mg Tablet', 'Is Lonator MD 0.25mg Tablet addictive?', 'People taking Lonator MD 0.25mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonator MD 0.25mg Tablet. Therefore, Lonator MD 0.25mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32386, 'Lonator MD 0.25mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.25mg Tablet', 'Can I stop taking Lonator MD 0.25mg Tablet if I start feeling better?', 'No, do not stop taking Lonator MD 0.25mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32387, 'Lonator MD 0.25mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.25mg Tablet', 'Are there any foods we need to avoid while taking Lonator MD 0.25mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonator MD 0.25mg Tablet. This is because caffeine stimulates your brain and Lonator MD 0.25mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonator MD 0.25mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonator MD 0.25mg Tablet.'),
(32388, 'Lonator MD 0.5mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.5mg Tablet', 'Is Lonator MD 0.5mg Tablet a sleeping pill?', 'Lonator MD 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32389, 'Lonator MD 0.5mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.5mg Tablet', 'Does Lonator MD 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonator MD 0.5mg Tablet?', 'Yes, Lonator MD 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonator MD 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32390, 'Lonator MD 0.5mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.5mg Tablet', 'For how long should I take Lonator MD 0.5mg Tablet?', 'The duration of treatment with Lonator MD 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32391, 'Lonator MD 0.5mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.5mg Tablet', 'Is it safe to take Lonator MD 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonator MD 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonator MD 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32392, 'Lonator MD 0.5mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.5mg Tablet', 'Is Lonator MD 0.5mg Tablet addictive?', 'People taking Lonator MD 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonator MD 0.5mg Tablet. Therefore, Lonator MD 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32393, 'Lonator MD 0.5mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.5mg Tablet', 'Can I stop taking Lonator MD 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonator MD 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32394, 'Lonator MD 0.5mg Tablet', 'Torcium Biotech Pvt Ltd', 'Lonator MD 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonator MD 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonator MD 0.5mg Tablet. This is because caffeine stimulates your brain and Lonator MD 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonator MD 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonator MD 0.5mg Tablet.'),
(32395, 'Lonavib 0.25 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.25 Tablet MD', 'Is Lonavib 0.25 Tablet MD a sleeping pill?', 'Lonavib 0.25 Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32396, 'Lonavib 0.25 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.25 Tablet MD', 'Does Lonavib 0.25 Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonavib 0.25 Tablet MD?', 'Yes, Lonavib 0.25 Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonavib 0.25 Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32397, 'Lonavib 0.25 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.25 Tablet MD', 'For how long should I take Lonavib 0.25 Tablet MD?', 'The duration of treatment with Lonavib 0.25 Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32398, 'Lonavib 0.25 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.25 Tablet MD', 'Is it safe to take Lonavib 0.25 Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonavib 0.25 Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonavib 0.25 Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32399, 'Lonavib 0.25 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.25 Tablet MD', 'Is Lonavib 0.25 Tablet MD addictive?', 'People taking Lonavib 0.25 Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonavib 0.25 Tablet MD. Therefore, Lonavib 0.25 Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32400, 'Lonavib 0.25 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.25 Tablet MD', 'Can I stop taking Lonavib 0.25 Tablet MD if I start feeling better?', 'No, do not stop taking Lonavib 0.25 Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32401, 'Lonavib 0.25 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.25 Tablet MD', 'Are there any foods we need to avoid while taking Lonavib 0.25 Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonavib 0.25 Tablet MD. This is because caffeine stimulates your brain and Lonavib 0.25 Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonavib 0.25 Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonavib 0.25 Tablet MD.'),
(32402, 'Lonavib 0.5 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.5 Tablet MD', 'Is Lonavib 0.5 Tablet MD a sleeping pill?', 'Lonavib 0.5 Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32403, 'Lonavib 0.5 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.5 Tablet MD', 'Does Lonavib 0.5 Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonavib 0.5 Tablet MD?', 'Yes, Lonavib 0.5 Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonavib 0.5 Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32404, 'Lonavib 0.5 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.5 Tablet MD', 'For how long should I take Lonavib 0.5 Tablet MD?', 'The duration of treatment with Lonavib 0.5 Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32405, 'Lonavib 0.5 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.5 Tablet MD', 'Is it safe to take Lonavib 0.5 Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonavib 0.5 Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonavib 0.5 Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32406, 'Lonavib 0.5 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.5 Tablet MD', 'Is Lonavib 0.5 Tablet MD addictive?', 'People taking Lonavib 0.5 Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonavib 0.5 Tablet MD. Therefore, Lonavib 0.5 Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32407, 'Lonavib 0.5 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.5 Tablet MD', 'Can I stop taking Lonavib 0.5 Tablet MD if I start feeling better?', 'No, do not stop taking Lonavib 0.5 Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32408, 'Lonavib 0.5 Tablet MD', 'Vibcare Pharma Pvt Ltd', 'Lonavib 0.5 Tablet MD', 'Are there any foods we need to avoid while taking Lonavib 0.5 Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonavib 0.5 Tablet MD. This is because caffeine stimulates your brain and Lonavib 0.5 Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonavib 0.5 Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonavib 0.5 Tablet MD.'),
(32409, 'Lonawel 0.5mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 0.5mg Tablet', 'Is Lonawel 0.5mg Tablet a sleeping pill?', 'Lonawel 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32410, 'Lonawel 0.5mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 0.5mg Tablet', 'Does Lonawel 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonawel 0.5mg Tablet?', 'Yes, Lonawel 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonawel 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32411, 'Lonawel 0.5mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 0.5mg Tablet', 'For how long should I take Lonawel 0.5mg Tablet?', 'The duration of treatment with Lonawel 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32412, 'Lonawel 0.5mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 0.5mg Tablet', 'Is it safe to take Lonawel 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonawel 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonawel 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32413, 'Lonawel 0.5mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 0.5mg Tablet', 'Is Lonawel 0.5mg Tablet addictive?', 'People taking Lonawel 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonawel 0.5mg Tablet. Therefore, Lonawel 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32414, 'Lonawel 0.5mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 0.5mg Tablet', 'Can I stop taking Lonawel 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonawel 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32415, 'Lonawel 0.5mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonawel 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonawel 0.5mg Tablet. This is because caffeine stimulates your brain and Lonawel 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonawel 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonawel 0.5mg Tablet.'),
(32416, 'Lonawel 2mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 2mg Tablet', 'Is Lonawel 2mg Tablet a sleeping pill?', 'Lonawel 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32417, 'Lonawel 2mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 2mg Tablet', 'Does Lonawel 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonawel 2mg Tablet?', 'Yes, Lonawel 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonawel 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32418, 'Lonawel 2mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 2mg Tablet', 'For how long should I take Lonawel 2mg Tablet?', 'The duration of treatment with Lonawel 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32419, 'Lonawel 2mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 2mg Tablet', 'Is it safe to take Lonawel 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonawel 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonawel 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32420, 'Lonawel 2mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 2mg Tablet', 'Is Lonawel 2mg Tablet addictive?', 'People taking Lonawel 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonawel 2mg Tablet. Therefore, Lonawel 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32421, 'Lonawel 2mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 2mg Tablet', 'Can I stop taking Lonawel 2mg Tablet if I start feeling better?', 'No, do not stop taking Lonawel 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32422, 'Lonawel 2mg Tablet', 'Dewallace Pharmaceuticals', 'Lonawel 2mg Tablet', 'Are there any foods we need to avoid while taking Lonawel 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonawel 2mg Tablet. This is because caffeine stimulates your brain and Lonawel 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonawel 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonawel 2mg Tablet.'),
(32423, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'Does the use of Lonax 150mg Tablet affect weight?', 'Yes, Lonax 150mg Tablet affects weight and may cause weight gain. However, in some cases, weight loss has also been reported. Consult a dietician and follow a diet plan to maintain your weight.'),
(32424, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'What are the advantages of Lonax 150mg Tablet over carbamazepine?', 'Lonax 150mg Tablet has fewer side effects as compared to carbamazepine. Moreover, Lonax 150mg Tablet can be started with a clinically effective dose as against carbamazepine which may require frequent visits to the doctor before an effective dose can be decided based on the patient’s response to the treatment.'),
(32425, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'How can I watch for early symptoms of suicidal thoughts and actions?', 'You should pay attention to any changes, especially sudden changes in mood, behaviour, thoughts or feelings. Be aware of common warning signs that might be a signal for risk of suicide. Some of these include talking or thinking about hurting yourself or ending your life, withdrawing from friends and family, becoming depressed or worsening your depression. Keep your appointment with your doctor on schedule, do not miss. Stay connected with the doctor even between visits.'),
(32426, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'When and how should I take Lonax 150mg Tablet?', 'Take Lonax 150mg Tablet exactly as directed by your doctor. It is recommended that you take it twice every day, unless your doctor tells you otherwise. Lonax 150mg Tablet can be taken with or without food. Take your medicine at the same time each day to gain maximum benefit. It will also help you remember when to take it.'),
(32427, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'For how long do I need to take Lonax 150mg Tablet. Can I stop taking it on my own?', 'You should take your medicine for the time and duration prescribed by your doctor. Lonax 150mg Tablet helps to control your epilepsy but does not cure it. You must take this medicine every day, even if you feel well. Do not stop taking Lonax 150mg Tablet or lower the dose yourself. Stopping your medicine suddenly or lowering the dose may cause seizures. Consult your doctor who may reduce the dose gradually before stopping it completely.'),
(32428, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'Will the use of Lonax 150mg Tablet affect my fertility?', 'Lonax 150mg Tablet is not know to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues while taking this medicine.'),
(32429, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'Does Lonax 150mg Tablet cause hair loss?', 'Yes, Lonax 150mg Tablet causes hair loss as a common side effect. However, it does not affect everyone. If there is substantial hair loss, consult your doctor.'),
(32430, 'Lonax 150mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 150mg Tablet', 'Who should not take Lonax 150mg Tablet?', 'You should not take Lonax 150mg Tablet if you are allergic to Lonax 150mg Tablet, eslicarbazepine or to any of their components. Also, pregnant women and women who take birth control pills should avoid Lonax 150mg Tablet. Along with that, people having severe liver or kidney disease and people with a psychiatric disorder should avoid taking Lonax 150mg Tablet.'),
(32431, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'Does the use of Lonax 300mg Tablet affect weight?', 'Yes, Lonax 300mg Tablet affects weight and may cause weight gain. However, in some cases, weight loss has also been reported. Consult a dietician and follow a diet plan to maintain your weight.'),
(32432, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'What are the advantages of Lonax 300mg Tablet over carbamazepine?', 'Lonax 300mg Tablet has fewer side effects as compared to carbamazepine. Moreover, Lonax 300mg Tablet can be started with a clinically effective dose as against carbamazepine which may require frequent visits to the doctor before an effective dose can be decided based on the patient’s response to the treatment.'),
(32433, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'How can I watch for early symptoms of suicidal thoughts and actions?', 'You should pay attention to any changes, especially sudden changes in mood, behaviour, thoughts or feelings. Be aware of common warning signs that might be a signal for risk of suicide. Some of these include talking or thinking about hurting yourself or ending your life, withdrawing from friends and family, becoming depressed or worsening your depression. Keep your appointment with your doctor on schedule, do not miss. Stay connected with the doctor even between visits.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32434, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'When and how should I take Lonax 300mg Tablet?', 'Take Lonax 300mg Tablet exactly as directed by your doctor. It is recommended that you take it twice every day, unless your doctor tells you otherwise. Lonax 300mg Tablet can be taken with or without food. Take your medicine at the same time each day to gain maximum benefit. It will also help you remember when to take it.'),
(32435, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'For how long do I need to take Lonax 300mg Tablet. Can I stop taking it on my own?', 'You should take your medicine for the time and duration prescribed by your doctor. Lonax 300mg Tablet helps to control your epilepsy but does not cure it. You must take this medicine every day, even if you feel well. Do not stop taking Lonax 300mg Tablet or lower the dose yourself. Stopping your medicine suddenly or lowering the dose may cause seizures. Consult your doctor who may reduce the dose gradually before stopping it completely.'),
(32436, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'Will the use of Lonax 300mg Tablet affect my fertility?', 'Lonax 300mg Tablet is not know to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues while taking this medicine.'),
(32437, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'Does Lonax 300mg Tablet cause hair loss?', 'Yes, Lonax 300mg Tablet causes hair loss as a common side effect. However, it does not affect everyone. If there is substantial hair loss, consult your doctor.'),
(32438, 'Lonax 300mg Tablet', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax 300mg Tablet', 'Who should not take Lonax 300mg Tablet?', 'You should not take Lonax 300mg Tablet if you are allergic to Lonax 300mg Tablet, eslicarbazepine or to any of their components. Also, pregnant women and women who take birth control pills should avoid Lonax 300mg Tablet. Along with that, people having severe liver or kidney disease and people with a psychiatric disorder should avoid taking Lonax 300mg Tablet.'),
(32439, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'Does the use of Lonax OD 600mg Tablet ER affect weight?', 'Yes, Lonax OD 600mg Tablet ER affects weight and may cause weight gain. However, in some cases, weight loss has also been reported. Consult a dietician and follow a diet plan to maintain your weight.'),
(32440, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'What are the advantages of Lonax OD 600mg Tablet ER over carbamazepine?', 'Lonax OD 600mg Tablet ER has fewer side effects as compared to carbamazepine. Moreover, Lonax OD 600mg Tablet ER can be started with a clinically effective dose as against carbamazepine which may require frequent visits to the doctor before an effective dose can be decided based on the patient’s response to the treatment.'),
(32441, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'How can I watch for early symptoms of suicidal thoughts and actions?', 'You should pay attention to any changes, especially sudden changes in mood, behaviour, thoughts or feelings. Be aware of common warning signs that might be a signal for risk of suicide. Some of these include talking or thinking about hurting yourself or ending your life, withdrawing from friends and family, becoming depressed or worsening your depression. Keep your appointment with your doctor on schedule, do not miss. Stay connected with the doctor even between visits.'),
(32442, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'When and how should I take Lonax OD 600mg Tablet ER?', 'Take Lonax OD 600mg Tablet ER exactly as directed by your doctor. It is recommended that you take it twice every day, unless your doctor tells you otherwise. Lonax OD 600mg Tablet ER can be taken with or without food. Take your medicine at the same time each day to gain maximum benefit. It will also help you remember when to take it.'),
(32443, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'For how long do I need to take Lonax OD 600mg Tablet ER. Can I stop taking it on my own?', 'You should take your medicine for the time and duration prescribed by your doctor. Lonax OD 600mg Tablet ER helps to control your epilepsy but does not cure it. You must take this medicine every day, even if you feel well. Do not stop taking Lonax OD 600mg Tablet ER or lower the dose yourself. Stopping your medicine suddenly or lowering the dose may cause seizures. Consult your doctor who may reduce the dose gradually before stopping it completely.'),
(32444, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'Will the use of Lonax OD 600mg Tablet ER affect my fertility?', 'Lonax OD 600mg Tablet ER is not know to affect fertility in males or females. However, talk to your doctor if you are facing fertility issues while taking this medicine.'),
(32445, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'Does Lonax OD 600mg Tablet ER cause hair loss?', 'Yes, Lonax OD 600mg Tablet ER causes hair loss as a common side effect. However, it does not affect everyone. If there is substantial hair loss, consult your doctor.'),
(32446, 'Lonax OD 600mg Tablet ER', 'Johnlee Pharmaceuticals Pvt Ltd', 'Lonax OD 600mg Tablet ER', 'Who should not take Lonax OD 600mg Tablet ER?', 'You should not take Lonax OD 600mg Tablet ER if you are allergic to Lonax OD 600mg Tablet ER, eslicarbazepine or to any of their components. Also, pregnant women and women who take birth control pills should avoid Lonax OD 600mg Tablet ER. Along with that, people having severe liver or kidney disease and people with a psychiatric disorder should avoid taking Lonax OD 600mg Tablet ER.'),
(32447, 'Lonaz Plus Tablet', 'Louies Life Sciences', 'Lonaz Plus Tablet', 'What is Lonaz Plus Tablet?', 'Lonaz Plus Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(32448, 'Lonaz Plus Tablet', 'Louies Life Sciences', 'Lonaz Plus Tablet', 'Can the Lonaz Plus Tablet cause sleepiness or drowsiness?', 'Lonaz Plus Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(32449, 'Lonaz Plus Tablet', 'Louies Life Sciences', 'Lonaz Plus Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lonaz Plus Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32450, 'Lonaz Plus Tablet', 'Louies Life Sciences', 'Lonaz Plus Tablet', 'Any special instruction regarding storage and disposal of Lonaz Plus Tablet?', 'Keep Lonaz Plus Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(32451, 'Lonaz Plus Tablet', 'Louies Life Sciences', 'Lonaz Plus Tablet', 'Can I stop taking Lonaz Plus Tablet when my symptoms are relieved?', 'No, you should not stop taking Lonaz Plus Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(32452, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Q. Is Lonazep 0.25 Tablet a sleeping pill?', 'Lonazep 0.25 Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32453, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Q. Does Lonazep 0.25 Tablet cause sleepiness? If yes, then should I stop driving while taking Lonazep 0.25 Tablet?', 'Yes, Lonazep 0.25 Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 0.25 Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32454, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Q. For how long should I take Lonazep 0.25 Tablet?', 'The duration of treatment with Lonazep 0.25 Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32455, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Q. Is it safe to take Lonazep 0.25 Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 0.25 Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 0.25 Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32456, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Q. Is Lonazep 0.25 Tablet addictive?', 'People taking Lonazep 0.25 Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 0.25 Tablet. Therefore, Lonazep 0.25 Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32457, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Q. Can I stop taking Lonazep 0.25 Tablet if I start feeling better?', 'No, do not stop taking Lonazep 0.25 Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32458, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Q. Are there any foods we need to avoid while taking Lonazep 0.25 Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 0.25 Tablet. This is because caffeine stimulates your brain and Lonazep 0.25 Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 0.25 Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 0.25 Tablet.'),
(32459, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Is Lonazep 0.25 Tablet a sleeping pill?', 'Lonazep 0.25 Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32460, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Does Lonazep 0.25 Tablet cause sleepiness? If yes, then should I stop driving while taking Lonazep 0.25 Tablet?', 'Yes, Lonazep 0.25 Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 0.25 Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32461, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'For how long should I take Lonazep 0.25 Tablet?', 'The duration of treatment with Lonazep 0.25 Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32462, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Is it safe to take Lonazep 0.25 Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 0.25 Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 0.25 Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32463, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Is Lonazep 0.25 Tablet addictive?', 'People taking Lonazep 0.25 Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 0.25 Tablet. Therefore, Lonazep 0.25 Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32464, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Can I stop taking Lonazep 0.25 Tablet if I start feeling better?', 'No, do not stop taking Lonazep 0.25 Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32465, 'Lonazep 0.25 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25 Tablet', 'Are there any foods we need to avoid while taking Lonazep 0.25 Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 0.25 Tablet. This is because caffeine stimulates your brain and Lonazep 0.25 Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 0.25 Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 0.25 Tablet.'),
(32466, 'Lonazep 0.25mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25mg Tablet MD', 'Is Lonazep 0.25mg Tablet MD a sleeping pill?', 'Lonazep 0.25mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32467, 'Lonazep 0.25mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25mg Tablet MD', 'Does Lonazep 0.25mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonazep 0.25mg Tablet MD?', 'Yes, Lonazep 0.25mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 0.25mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32468, 'Lonazep 0.25mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25mg Tablet MD', 'For how long should I take Lonazep 0.25mg Tablet MD?', 'The duration of treatment with Lonazep 0.25mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32469, 'Lonazep 0.25mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25mg Tablet MD', 'Is it safe to take Lonazep 0.25mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 0.25mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 0.25mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32470, 'Lonazep 0.25mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25mg Tablet MD', 'Is Lonazep 0.25mg Tablet MD addictive?', 'People taking Lonazep 0.25mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 0.25mg Tablet MD. Therefore, Lonazep 0.25mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32471, 'Lonazep 0.25mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25mg Tablet MD', 'Can I stop taking Lonazep 0.25mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonazep 0.25mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32472, 'Lonazep 0.25mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.25mg Tablet MD', 'Are there any foods we need to avoid while taking Lonazep 0.25mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 0.25mg Tablet MD. This is because caffeine stimulates your brain and Lonazep 0.25mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 0.25mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 0.25mg Tablet MD.'),
(32473, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Is Lonazep 0.5mg Tablet a sleeping pill?', 'Lonazep 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32474, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Does Lonazep 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonazep 0.5mg Tablet?', 'Yes, Lonazep 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32475, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'For how long should I take Lonazep 0.5mg Tablet?', 'The duration of treatment with Lonazep 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32476, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Is it safe to take Lonazep 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32477, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Is Lonazep 0.5mg Tablet addictive?', 'People taking Lonazep 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 0.5mg Tablet. Therefore, Lonazep 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32478, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Can I stop taking Lonazep 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonazep 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32479, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonazep 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 0.5mg Tablet. This is because caffeine stimulates your brain and Lonazep 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 0.5mg Tablet.'),
(32480, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Is Lonazep 0.5mg Tablet a sleeping pill?', 'Lonazep 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32481, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Does Lonazep 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonazep 0.5mg Tablet?', 'Yes, Lonazep 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32482, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'For how long should I take Lonazep 0.5mg Tablet?', 'The duration of treatment with Lonazep 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32483, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Is it safe to take Lonazep 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32484, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Is Lonazep 0.5mg Tablet addictive?', 'People taking Lonazep 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 0.5mg Tablet. Therefore, Lonazep 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32485, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Can I stop taking Lonazep 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonazep 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32486, 'Lonazep 0.5mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonazep 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 0.5mg Tablet. This is because caffeine stimulates your brain and Lonazep 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 0.5mg Tablet.'),
(32487, 'Lonazep 1mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet', 'Is Lonazep 1mg Tablet a sleeping pill?', 'Lonazep 1mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32488, 'Lonazep 1mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet', 'Does Lonazep 1mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonazep 1mg Tablet?', 'Yes, Lonazep 1mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 1mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32489, 'Lonazep 1mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet', 'For how long should I take Lonazep 1mg Tablet?', 'The duration of treatment with Lonazep 1mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32490, 'Lonazep 1mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet', 'Is it safe to take Lonazep 1mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 1mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 1mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32491, 'Lonazep 1mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet', 'Is Lonazep 1mg Tablet addictive?', 'People taking Lonazep 1mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 1mg Tablet. Therefore, Lonazep 1mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32492, 'Lonazep 1mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet', 'Can I stop taking Lonazep 1mg Tablet if I start feeling better?', 'No, do not stop taking Lonazep 1mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32493, 'Lonazep 1mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet', 'Are there any foods we need to avoid while taking Lonazep 1mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 1mg Tablet. This is because caffeine stimulates your brain and Lonazep 1mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 1mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 1mg Tablet.'),
(32494, 'Lonazep 1mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet MD', 'Is Lonazep 1mg Tablet MD a sleeping pill?', 'Lonazep 1mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32495, 'Lonazep 1mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet MD', 'Does Lonazep 1mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonazep 1mg Tablet MD?', 'Yes, Lonazep 1mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 1mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32496, 'Lonazep 1mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet MD', 'For how long should I take Lonazep 1mg Tablet MD?', 'The duration of treatment with Lonazep 1mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32497, 'Lonazep 1mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet MD', 'Is it safe to take Lonazep 1mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 1mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 1mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32498, 'Lonazep 1mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet MD', 'Is Lonazep 1mg Tablet MD addictive?', 'People taking Lonazep 1mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 1mg Tablet MD. Therefore, Lonazep 1mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32499, 'Lonazep 1mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet MD', 'Can I stop taking Lonazep 1mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonazep 1mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32500, 'Lonazep 1mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 1mg Tablet MD', 'Are there any foods we need to avoid while taking Lonazep 1mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 1mg Tablet MD. This is because caffeine stimulates your brain and Lonazep 1mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 1mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 1mg Tablet MD.'),
(32501, 'Lonazep 2mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet', 'Is Lonazep 2mg Tablet a sleeping pill?', 'Lonazep 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32502, 'Lonazep 2mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet', 'Does Lonazep 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonazep 2mg Tablet?', 'Yes, Lonazep 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32503, 'Lonazep 2mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet', 'For how long should I take Lonazep 2mg Tablet?', 'The duration of treatment with Lonazep 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32504, 'Lonazep 2mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet', 'Is it safe to take Lonazep 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32505, 'Lonazep 2mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet', 'Is Lonazep 2mg Tablet addictive?', 'People taking Lonazep 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 2mg Tablet. Therefore, Lonazep 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32506, 'Lonazep 2mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet', 'Can I stop taking Lonazep 2mg Tablet if I start feeling better?', 'No, do not stop taking Lonazep 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32507, 'Lonazep 2mg Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet', 'Are there any foods we need to avoid while taking Lonazep 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 2mg Tablet. This is because caffeine stimulates your brain and Lonazep 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 2mg Tablet.'),
(32508, 'Lonazep 2mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet MD', 'Is Lonazep 2mg Tablet MD a sleeping pill?', 'Lonazep 2mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32509, 'Lonazep 2mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet MD', 'Does Lonazep 2mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonazep 2mg Tablet MD?', 'Yes, Lonazep 2mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep 2mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32510, 'Lonazep 2mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet MD', 'For how long should I take Lonazep 2mg Tablet MD?', 'The duration of treatment with Lonazep 2mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32511, 'Lonazep 2mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet MD', 'Is it safe to take Lonazep 2mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep 2mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep 2mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32512, 'Lonazep 2mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet MD', 'Is Lonazep 2mg Tablet MD addictive?', 'People taking Lonazep 2mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep 2mg Tablet MD. Therefore, Lonazep 2mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32513, 'Lonazep 2mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet MD', 'Can I stop taking Lonazep 2mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonazep 2mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32514, 'Lonazep 2mg Tablet MD', 'Sun Pharmaceutical Industries Ltd', 'Lonazep 2mg Tablet MD', 'Are there any foods we need to avoid while taking Lonazep 2mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep 2mg Tablet MD. This is because caffeine stimulates your brain and Lonazep 2mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep 2mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep 2mg Tablet MD.'),
(32515, 'Lonazep MD 0.5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep MD 0.5 Tablet', 'Is Lonazep MD 0.5 Tablet a sleeping pill?', 'Lonazep MD 0.5 Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32516, 'Lonazep MD 0.5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep MD 0.5 Tablet', 'Does Lonazep MD 0.5 Tablet cause sleepiness? If yes, then should I stop driving while taking Lonazep MD 0.5 Tablet?', 'Yes, Lonazep MD 0.5 Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazep MD 0.5 Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32517, 'Lonazep MD 0.5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep MD 0.5 Tablet', 'For how long should I take Lonazep MD 0.5 Tablet?', 'The duration of treatment with Lonazep MD 0.5 Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32518, 'Lonazep MD 0.5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep MD 0.5 Tablet', 'Is it safe to take Lonazep MD 0.5 Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazep MD 0.5 Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonazep MD 0.5 Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32519, 'Lonazep MD 0.5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep MD 0.5 Tablet', 'Is Lonazep MD 0.5 Tablet addictive?', 'People taking Lonazep MD 0.5 Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazep MD 0.5 Tablet. Therefore, Lonazep MD 0.5 Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32520, 'Lonazep MD 0.5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep MD 0.5 Tablet', 'Can I stop taking Lonazep MD 0.5 Tablet if I start feeling better?', 'No, do not stop taking Lonazep MD 0.5 Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32521, 'Lonazep MD 0.5 Tablet', 'Sun Pharmaceutical Industries Ltd', 'Lonazep MD 0.5 Tablet', 'Are there any foods we need to avoid while taking Lonazep MD 0.5 Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazep MD 0.5 Tablet. This is because caffeine stimulates your brain and Lonazep MD 0.5 Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazep MD 0.5 Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazep MD 0.5 Tablet.'),
(32522, 'Lonazit 0.5mg Tablet MD', 'Progressive Life Care', 'Lonazit 0.5mg Tablet MD', 'Q. Is Lonazit 0.5mg Tablet MD a sleeping pill?', 'Lonazit 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32523, 'Lonazit 0.5mg Tablet MD', 'Progressive Life Care', 'Lonazit 0.5mg Tablet MD', 'Q. Does Lonazit 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonazit 0.5mg Tablet MD?', 'Yes, Lonazit 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonazit 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32524, 'Lonazit 0.5mg Tablet MD', 'Progressive Life Care', 'Lonazit 0.5mg Tablet MD', 'Q. For how long should I take Lonazit 0.5mg Tablet MD?', 'The duration of treatment with Lonazit 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32525, 'Lonazit 0.5mg Tablet MD', 'Progressive Life Care', 'Lonazit 0.5mg Tablet MD', 'Q. Is it safe to take Lonazit 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonazit 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonazit 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32526, 'Lonazit 0.5mg Tablet MD', 'Progressive Life Care', 'Lonazit 0.5mg Tablet MD', 'Q. Is Lonazit 0.5mg Tablet MD addictive?', 'People taking Lonazit 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonazit 0.5mg Tablet MD. Therefore, Lonazit 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32527, 'Lonazit 0.5mg Tablet MD', 'Progressive Life Care', 'Lonazit 0.5mg Tablet MD', 'Q. Can I stop taking Lonazit 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonazit 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32528, 'Lonazit 0.5mg Tablet MD', 'Progressive Life Care', 'Lonazit 0.5mg Tablet MD', 'Q. Are there any foods we need to avoid while taking Lonazit 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonazit 0.5mg Tablet MD. This is because caffeine stimulates your brain and Lonazit 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonazit 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonazit 0.5mg Tablet MD.'),
(32529, 'Lonazit Plus 0.5mg/10mg Tablet', 'Progressive Life Care', 'Lonazit Plus 0.5mg/10mg Tablet', 'What is Lonazit Plus 0.5mg/10mg Tablet?', 'Lonazit Plus 0.5mg/10mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(32530, 'Lonazit Plus 0.5mg/10mg Tablet', 'Progressive Life Care', 'Lonazit Plus 0.5mg/10mg Tablet', 'Can the Lonazit Plus 0.5mg/10mg Tablet cause sleepiness or drowsiness?', 'Lonazit Plus 0.5mg/10mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(32531, 'Lonazit Plus 0.5mg/10mg Tablet', 'Progressive Life Care', 'Lonazit Plus 0.5mg/10mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lonazit Plus 0.5mg/10mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32532, 'Lonazit Plus 0.5mg/10mg Tablet', 'Progressive Life Care', 'Lonazit Plus 0.5mg/10mg Tablet', 'Any special instruction regarding storage and disposal of Lonazit Plus 0.5mg/10mg Tablet?', 'Keep Lonazit Plus 0.5mg/10mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(32533, 'Lonazit Plus 0.5mg/10mg Tablet', 'Progressive Life Care', 'Lonazit Plus 0.5mg/10mg Tablet', 'Can I stop taking Lonazit Plus 0.5mg/10mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lonazit Plus 0.5mg/10mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(32534, 'Lonaz-LS 0.25mg/5mg Tablet', 'Louies Life Sciences', 'Lonaz-LS 0.25mg/5mg Tablet', 'What is Lonaz-LS 0.25mg/5mg Tablet?', 'Lonaz-LS 0.25mg/5mg Tablet is a combination of two medicines: Clonazepam and Escitalopram. This combination is used to treat anxiety disorders. Clonazepam works by decreasing abnormal electrical activity in the brain. Escitalopram works by increasing the amount of serotonin, a natural substance in the brain that helps to improve mood.'),
(32535, 'Lonaz-LS 0.25mg/5mg Tablet', 'Louies Life Sciences', 'Lonaz-LS 0.25mg/5mg Tablet', 'Can the Lonaz-LS 0.25mg/5mg Tablet cause sleepiness or drowsiness?', 'Lonaz-LS 0.25mg/5mg Tablet may make you feel drowsy or you may fall asleep suddenly during your routine activities like watching television, talking, eating or riding in a car. You might not feel drowsy or have any other warning signs before you suddenly fall asleep. Avoid driving a car, operating machinery, working at heights or participating in potentially dangerous activities at the beginning of your treatment until you know how the medication affects you. Inform your doctor if you experience such symptoms.'),
(32536, 'Lonaz-LS 0.25mg/5mg Tablet', 'Louies Life Sciences', 'Lonaz-LS 0.25mg/5mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking higher than the recommended dose of Lonaz-LS 0.25mg/5mg Tablet can lead to increased chances of side effects and toxicity. If you are experiencing increased severity of your symptoms that is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32537, 'Lonaz-LS 0.25mg/5mg Tablet', 'Louies Life Sciences', 'Lonaz-LS 0.25mg/5mg Tablet', 'Any special instruction regarding storage and disposal of Lonaz-LS 0.25mg/5mg Tablet?', 'Keep Lonaz-LS 0.25mg/5mg Tablet in a container that is tightly closed and out of children\'s reach. Store it at room temperature and away from excess heat and moisture (not in the bathroom). Unneeded medications should be disposed of in special ways to ensure that pets, children and other people cannot consume them.'),
(32538, 'Lonaz-LS 0.25mg/5mg Tablet', 'Louies Life Sciences', 'Lonaz-LS 0.25mg/5mg Tablet', 'Can I stop taking Lonaz-LS 0.25mg/5mg Tablet when my symptoms are relieved?', 'No, you should not stop taking Lonaz-LS 0.25mg/5mg Tablet even if you feel well. Continue taking your medicine as advised. Your doctor may lower your dose gradually if your symptoms are improving.'),
(32539, 'Lonclav LB 500/125 Tablet', 'Waylon', 'Lonclav LB 500/125 Tablet', 'What are the contraindications associated with the use of Lonclav LB 500/125 Tablet?', 'Lonclav LB 500/125 Tablet is considered to be harmful for patients with a history of allergic reactions to any penicillin. It is also avoided in patients with a previous history of cholestatic jaundice/liver dysfunction associated with the medicine.'),
(32540, 'Lonclav LB 500/125 Tablet', 'Waylon', 'Lonclav LB 500/125 Tablet', 'Which is the best time to take Lonclav LB 500/125 Tablet?', 'Lonclav LB 500/125 Tablet may be taken every 8 hours or every 12 hours, depending on the dose prescribed by your doctor. It should be taken with a meal or snack to reduce the possibility of getting an upset stomach. Many antibiotics can cause diarrhea. If diarrhea is severe or lasts for more than 2 or 3 days, call your doctor.'),
(32541, 'Lonclav LB 500/125 Tablet', 'Waylon', 'Lonclav LB 500/125 Tablet', 'Can I stop Lonclav LB 500/125 Tablet in between if I feel better?', 'No, complete the course even if you feel better. It is common to feel better early in the course of therapy. However, skipping doses or not completing the full course of therapy may reduce the effectiveness of the immediate treatment. It might also make the bacteria develop resistance against the treatment.'),
(32542, 'Lonclav LB 500/125 Tablet', 'Waylon', 'Lonclav LB 500/125 Tablet', 'Can I take Lonclav LB 500/125 Tablet if I am allergic to penicillin?', 'If you have had an allergic reaction to one type of penicillin, you may get allergic to ampicillin or to some cephalosporins, but not necessarily. Make sure you tell your doctor if you are allergic to penicillin.'),
(32543, 'Lonclav LB 500/125 Tablet', 'Waylon', 'Lonclav LB 500/125 Tablet', 'What are the instructions for the storage and disposal of Lonclav LB 500/125 Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32544, 'Lone 4mg Tablet', 'Mediva Lifecare', 'Lone 4mg Tablet', 'What is Lone 4mg Tablet used for?', 'Lone 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(32545, 'Lone 4mg Tablet', 'Mediva Lifecare', 'Lone 4mg Tablet', 'How does Lone 4mg Tablet work?', 'Lone 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(32546, 'Lone 4mg Tablet', 'Mediva Lifecare', 'Lone 4mg Tablet', 'Is Lone 4mg Tablet effective?', 'Lone 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lone 4mg Tablet too early, the symptoms may return or worsen.'),
(32547, 'Lone 4mg Tablet', 'Mediva Lifecare', 'Lone 4mg Tablet', 'When will I feel better after taking Lone 4mg Tablet?', 'Lone 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lone 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lone 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(32548, 'Lone 4mg Tablet', 'Mediva Lifecare', 'Lone 4mg Tablet', 'What if I forget to take a dose of Lone 4mg Tablet?', 'If you forget a dose of Lone 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32549, 'Lone 4mg Tablet', 'Mediva Lifecare', 'Lone 4mg Tablet', 'Is Lone 4mg Tablet safe?', 'Lone 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32550, 'Lonecort 4mg Tablet', 'Medconic Healthcare', 'Lonecort 4mg Tablet', 'What is Lonecort 4mg Tablet used for?', 'Lonecort 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(32551, 'Lonecort 4mg Tablet', 'Medconic Healthcare', 'Lonecort 4mg Tablet', 'How does Lonecort 4mg Tablet work?', 'Lonecort 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(32552, 'Lonecort 4mg Tablet', 'Medconic Healthcare', 'Lonecort 4mg Tablet', 'Is Lonecort 4mg Tablet effective?', 'Lonecort 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lonecort 4mg Tablet too early, the symptoms may return or worsen.'),
(32553, 'Lonecort 4mg Tablet', 'Medconic Healthcare', 'Lonecort 4mg Tablet', 'When will I feel better after taking Lonecort 4mg Tablet?', 'Lonecort 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lonecort 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lonecort 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(32554, 'Lonecort 4mg Tablet', 'Medconic Healthcare', 'Lonecort 4mg Tablet', 'What if I forget to take a dose of Lonecort 4mg Tablet?', 'If you forget a dose of Lonecort 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32555, 'Lonecort 4mg Tablet', 'Medconic Healthcare', 'Lonecort 4mg Tablet', 'Is Lonecort 4mg Tablet safe?', 'Lonecort 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32556, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Lonem 1000mg Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Lonem 1000mg Injection. Medicines like Lonem 1000mg Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.'),
(32557, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'Even though Lonem 1000mg Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Lonem 1000mg Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(32558, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'Is Lonem 1000mg Injection a strong antibiotic? Which infections does it treat?', 'Lonem 1000mg Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(32559, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'Is Lonem 1000mg Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Lonem 1000mg Injection is effective only against bacteria. It is not effective against virus or fungal infections. Lonem 1000mg Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.'),
(32560, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'My cousin was receiving Lonem 1000mg Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Lonem 1000mg Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Lonem 1000mg Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(32561, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'For how long will I need to take Lonem 1000mg Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Lonem 1000mg Injection. Consult your doctor if you are not sure.'),
(32562, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'What if Lonem 1000mg Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Lonem 1000mg Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Lonem 1000mg Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(32563, 'Lonem 1000mg Injection', 'Servo Healthcare', 'Lonem 1000mg Injection', 'Does it matter if I miss or stop Lonem 1000mg Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Lonem 1000mg Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(32564, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'My friend has a history of epilepsy and she was on valproic acid while receiving treatment with Lonem 2000mg Injection, still, she had an episode of seizure. Why?', 'Any previous history with any other medication should be informed to the doctor before starting your treatment with Lonem 2000mg Injection. Medicines like Lonem 2000mg Injection can interfere with valproic acid which is used for the treatment of epilepsy, making it less effective. So, the reason for the recent episode of seizure could be the result of such drug interaction. Generally, in cases like these, the doctor prescribes a different medicine.'),
(32565, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'Even though Lonem 2000mg Injection is used for skin infections, can it cause any skin-related problems?', 'Serious skin reactions are rare, but some have been reported with the use of Lonem 2000mg Injection. Therefore, before starting the treatment inform your doctor if you are allergic to any medicine or antibiotic. Serious skin reactions are a type of allergic reaction. But, if not properly managed then they can endanger life. So, if you notice any rash along with fever or peeling of the skin, discontinue the medication and inform your doctor.'),
(32566, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'Is Lonem 2000mg Injection a strong antibiotic? Which infections does it treat?', 'Lonem 2000mg Injection is a broad-spectrum antibiotic which means it can treat a variety of bacterial infections. It is used to treat infections affecting the lungs (pneumonia) and complicated infections of the urinary tract, abdomen, and skin and soft tissue infections. Along with that, it is also helpful in treating bacterial infection of the membranes that surround the brain and spinal cord (meningitis) and infections that occur during or after delivery.'),
(32567, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'Is Lonem 2000mg Injection effective against bacteria only? Can it be used for any type of bacterial infection?', 'Yes, Lonem 2000mg Injection is effective only against bacteria. It is not effective against virus or fungal infections. Lonem 2000mg Injection is effective against some bacteria which include Staphylococcus aureus, Streptococcus pneumoniae, S. pyogenes, S. viridans group, etc. Therefore, its use against any other type of bacteria should be avoided.'),
(32568, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'My cousin was receiving Lonem 2000mg Injection for severe skin infection, but the medicine was stopped when she had a fit. Was the fit due to Lonem 2000mg Injection?', 'There are reports which suggest the occurrence of seizures or fits with the use of Lonem 2000mg Injection. However, fits are more likely to occur in patients with a history of seizures or a brain lesion (wound, ulcer, abscess or tumor) or patients having bacterial meningitis or compromised kidney function. Consult your doctor to understand the exact reason.'),
(32569, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'For how long will I need to take Lonem 2000mg Injection?', 'The length of the treatment will be decided by your doctor. The doctor will decide the dose depending on your general health, the type of infection you have, and how well you respond to Lonem 2000mg Injection. Consult your doctor if you are not sure.'),
(32570, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'What if Lonem 2000mg Injection does not suit me?', 'It is common to have minor side effects such as nausea, vomiting, diarrhea, and headache with the use of Lonem 2000mg Injection. However, these symptoms generally settle down with continued medication as the body adapts to the medicine. If the side effects bother you, inform your doctor. The doctor will suggest an alternative medicine if required. Serious side effects with Lonem 2000mg Injection are very rare. In case you develop serious side effects, seek immediate medical advice.'),
(32571, 'Lonem 2000mg Injection', 'Servo Healthcare', 'Lonem 2000mg Injection', 'Does it matter if I miss or stop Lonem 2000mg Injection?', 'You mustn\'t stop the treatment without consulting your doctor. Stopping the treatment may bring back the infection or you may develop resistance to Lonem 2000mg Injection. Similar results may be seen if you skip any dose or are forgetful in taking the suggested doses. Therefore, it is recommended that you do not miss doses. If you do, take the missed dose as soon as you can and take the next dose as planned so that you stick to the same overall daily dose.'),
(32572, 'Lonetop 4mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Lonetop 4mg Tablet', 'What is Lonetop 4mg Tablet used for?', 'Lonetop 4mg Tablet has anti-inflammatory and immunosuppressant properties. It is used to treat conditions like allergic conditions, anaphylaxis, asthma, rheumatoid arthritis and inflammatory skin diseases. It is also helpful in treating autoimmune diseases (these diseases happen when your body’s immune system attacks the body itself and causes damage) and certain eye disorders.'),
(32573, 'Lonetop 4mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Lonetop 4mg Tablet', 'How does Lonetop 4mg Tablet work?', 'Lonetop 4mg Tablet works by reducing the inflammation which helps in treating many illnesses caused due to active inflammation. In addition to that, it stops the autoimmune reactions which occur when your body\'s immune system attacks the body itself and causes damage.'),
(32574, 'Lonetop 4mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Lonetop 4mg Tablet', 'Is Lonetop 4mg Tablet effective?', 'Lonetop 4mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lonetop 4mg Tablet too early, the symptoms may return or worsen.'),
(32575, 'Lonetop 4mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Lonetop 4mg Tablet', 'When will I feel better after taking Lonetop 4mg Tablet?', 'Lonetop 4mg Tablet effectively treats pain and inflammation. However, its effect may vary from person to person, depending on the condition you are being treated for and also your body weight. Your doctor will prescribe you Lonetop 4mg Tablet in the dose that suits your requirement. Do not alter your dose thinking that a higher dose will provide faster relief. Rather, you may end up having undesirable side effects. Be patient, and follow your doctor’s instructions regarding the use of Lonetop 4mg Tablet. Consult your doctor if you do not see improvement in your condition even after completing the full course of treatment.'),
(32576, 'Lonetop 4mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Lonetop 4mg Tablet', 'What if I forget to take a dose of Lonetop 4mg Tablet?', 'If you forget a dose of Lonetop 4mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose on the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32577, 'Lonetop 4mg Tablet', 'Biomax Biotechnics Pvt Ltd', 'Lonetop 4mg Tablet', 'Is Lonetop 4mg Tablet safe?', 'Lonetop 4mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32578, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'What is the difference between Lonex 8mg Tablet DT and diclofenac?', 'Both Lonex 8mg Tablet DT and diclofenac are pain killers. However, piroxicam is a non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain) inhibitor whereas diclofenac has a bit more selectivity to a COX-2 enzyme. This selectivity of diclofenac is supposed to decrease the side effects as compared to Lonex 8mg Tablet DT.'),
(32579, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'What is the difference between Lonex 8mg Tablet DT and naproxen?', 'Both Lonex 8mg Tablet DT and naproxen are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, gastric side effects are lesser with naproxen as compared to Lonex 8mg Tablet DT.'),
(32580, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'What is the difference between Lonex 8mg Tablet DT and meloxicam?', 'Both Lonex 8mg Tablet DT and meloxicam are pain killers. Both are non-selective COX (cyclooxygenase - an enzyme responsible for inflammation and pain). Research studies have shown both are equally effective. However, acute gastric side effects are lesser with meloxicam as compared to Lonex 8mg Tablet DT.'),
(32581, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'What is the difference between Lonex 8mg Tablet DT and ketoprofen?', 'Both Lonex 8mg Tablet DT and ketoprofen are pain killers. Both are non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain). Research studies have shown ketoprofen topical gel is better and effective as compared to Lonex 8mg Tablet DT. Ketoprofen gel also showed excellent tolerability.'),
(32582, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'What is the difference between Lonex 8mg Tablet DT and tramadol?', 'Lonex 8mg Tablet DT is a COX (cyclooxygenase -an enzyme responsible for inflammation and pain) whereas Tramadol is a narcotic-like painkiller. Tramadol is a habit forming medicine.'),
(32583, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'What is the difference between Lonex 8mg Tablet DT and nimesulide?', 'Both Lonex 8mg Tablet DT and nimesulide are pain killers. However, Lonex 8mg Tablet DT is a non-selective COX (cyclooxygenase -an enzyme responsible for inflammation and pain) inhibitor whereas nimesulide is selective to the COX-2 enzyme. This selectivity of nimesulide is supposed to decrease the side effects as compared to piroxicam. It should not be used in children below 12 years of age.'),
(32584, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'Can Lonex 8mg Tablet DT be used in the treatment of chikungunya?', 'Usually, the platelet count does not dip in cases of chikungunya and painkillers like piroxicam can lead to the risk of increased bleeding tendency. So refrain from taking Lonex 8mg Tablet DT or any painkiller in the case of any fever with joint pain. Consult your doctor before starting Lonex 8mg Tablet DT.'),
(32585, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'Are Lonex 8mg Tablet DT and aspirin same?', 'No. Lonex 8mg Tablet DT and aspirin are not same. They belong to the same class of drugs known as COX (cyclooxygenase) inhibitors. They both are anti-inflammatory and analgesic.'),
(32586, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'Can Lonex 8mg Tablet DT be used along with dexamethasone?', 'No. Lonex 8mg Tablet DT should not be used with dexamethasone. They both increase each other\'s toxicity. There is an increased risk of GI ulceration.'),
(32587, 'Lonex 8mg Tablet DT', 'Noel Pharma India Pvt Ltd', 'Lonex 8mg Tablet DT', 'Can Lonex 8mg Tablet DT be used with methocarbamol?', 'Yes. Methocarbamol can be used with Lonex 8mg Tablet DT as no serious side effects are known. Inform your doctor before starting any of the medication.'),
(32588, 'Long Drive 30mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 30mg Tablet', 'Q. What does Long Drive 30mg Tablet do?', 'Long Drive 30mg Tablet increases the time taken to ejaculate and improves the control over ejaculation. This may reduce any frustration or worry about quick ejaculation. Long Drive 30mg Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years.'),
(32589, 'Long Drive 30mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 30mg Tablet', 'Q. Does Long Drive 30mg Tablet cure premature ejaculation?', 'Yes, Long Drive 30mg Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years. Premature ejaculation is when a man ejaculates with minimal sexual stimulation and before he wants. This can cause problems for the man and may cause problems in sexual relationships.'),
(32590, 'Long Drive 30mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 30mg Tablet', 'Q. Is Long Drive 30mg Tablet a prescription medicine?', 'Yes, Long Drive 30mg Tablet is a prescription medicine. It is not an over the counter product.'),
(32591, 'Long Drive 30mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 30mg Tablet', 'Q. Is Long Drive 30mg Tablet safe?', 'Yes, Long Drive 30mg Tablet is safe if used at prescribed doses for the prescribed duration advised by your doctor.'),
(32592, 'Long Drive 30mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 30mg Tablet', 'Q. Is Long Drive 30mg Tablet effective?', 'Long Drive 30mg Tablet is effective if used for the right indication at prescribed doses for the prescribed duration as advised by the physician/ doctor.'),
(32593, 'Long Drive 30mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 30mg Tablet', 'Q. Does Long Drive 30mg Tablet cause erectile dysfunction?', 'Long Drive 30mg Tablet can commonly cause erectile dysfunction, that is, difficulty in getting or keeping an erection. Please consult your doctor if you experience erectile dysfunction while taking Long Drive 30mg Tablet.'),
(32594, 'Long Drive 30mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 30mg Tablet', 'Q. Can I take Long Drive 30mg Tablet with sildenafil?', 'Long Drive 30mg Tablet, when taken along with sildenafil, may lower your blood pressure, possibly upon standing. Please consult your doctor before taking these two medicines together.'),
(32595, 'Long Drive 60mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 60mg Tablet', 'What does Long Drive 60mg Tablet do?', 'Long Drive 60mg Tablet increases the time taken to ejaculate and improves the control over ejaculation. This may reduce any frustration or worry about quick ejaculation. Long Drive 60mg Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years.'),
(32596, 'Long Drive 60mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 60mg Tablet', 'Does Long Drive 60mg Tablet cure premature ejaculation?', 'Yes, Long Drive 60mg Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years. Premature ejaculation is when a man ejaculates with minimal sexual stimulation and before he wants. This can cause problems for the man and may cause problems in sexual relationships.'),
(32597, 'Long Drive 60mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 60mg Tablet', 'Is Long Drive 60mg Tablet a prescription medicine?', 'Yes, Long Drive 60mg Tablet is a prescription medicine. It is not an over the counter product.'),
(32598, 'Long Drive 60mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 60mg Tablet', 'Is Long Drive 60mg Tablet safe?', 'Yes, Long Drive 60mg Tablet is safe if used at prescribed doses for the prescribed duration advised by your doctor.'),
(32599, 'Long Drive 60mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 60mg Tablet', 'Is Long Drive 60mg Tablet effective?', 'Long Drive 60mg Tablet is effective if used for the right indication at prescribed doses for the prescribed duration as advised by the physician/ doctor.'),
(32600, 'Long Drive 60mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 60mg Tablet', 'Does Long Drive 60mg Tablet cause erectile dysfunction?', 'Long Drive 60mg Tablet can commonly cause erectile dysfunction, that is, difficulty in getting or keeping an erection. Please consult your doctor if you experience erectile dysfunction while taking Long Drive 60mg Tablet.'),
(32601, 'Long Drive 60mg Tablet', 'Leeford Healthcare Ltd', 'Long Drive 60mg Tablet', 'Can I take Long Drive 60mg Tablet with sildenafil?', 'Long Drive 60mg Tablet, when taken along with sildenafil, may lower your blood pressure, possibly upon standing. Please consult your doctor before taking these two medicines together.'),
(32602, 'Long Drive Spray', 'Leeford Healthcare Ltd', 'Long Drive Spray', 'What is Long Drive Spray used for?', 'Long Drive Spray is usually applied by a healthcare professional to the area being treated or to the medical equipment as part of a medical procedure. It helps to numb the area and reduces the discomfort associated with the insertion of medical instruments such as needles or catheters. It also helps to reduce the pain and inflammation in conditions such as heamorrhoids (piles) and anal fissures.'),
(32603, 'Long Drive Spray', 'Leeford Healthcare Ltd', 'Long Drive Spray', 'How long does it take for Long Drive Spray to work?', 'Long Drive Spray is applied at the start of a medical procedure and takes 3-5 minutes for the numbing effect to occur.'),
(32604, 'Long Drive Spray', 'Leeford Healthcare Ltd', 'Long Drive Spray', 'Is Long Drive Spray toxic?', 'If Long Drive Spray is used under the supervision of a doctor or as directed by your doctor, it is generally safe to use. However, using more than what is recommended may lead to a number of serious health issues such as numbness of mouth and throat if swallowed. This can lead to difficulty swallowing and even choking.'),
(32605, 'Long Drive-DS Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-DS Gold Tablet', 'How much time does Long Drive-DS Gold Tablet take to become effective?', 'Usually, half an hour is the time period required by Long Drive-DS Gold Tablet to show its effects. The effect may last for almost 4-5 hours.'),
(32606, 'Long Drive-DS Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-DS Gold Tablet', 'Can I drive while I am taking  Long Drive-DS Gold Tablet?', 'No, you must avoid driving after taking Long Drive-DS Gold Tablet as it may make you feel sleepy and dizzy. So, do not drive or use machines while taking this medicine.'),
(32607, 'Long Drive-DS Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-DS Gold Tablet', 'What are the precautions that need to be taken while taking Long Drive-DS Gold Tablet?', 'Before you start taking Long Drive-DS Gold Tablet tell your doctor if you have or have had heart problems, such as a heart attack, irregular heartbeat, angina, chest pain. Inform your doctor if you have undergone a heart surgery within the past 6 months or if you have uncontrolled low or high blood pressure.'),
(32608, 'Long Drive-DS Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-DS Gold Tablet', 'Can the use of Long Drive-DS Gold Tablet cause dryness in mouth?', 'Yes, the use of Long Drive-DS Gold Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(32609, 'Long Drive-DS Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-DS Gold Tablet', 'What should I know about storage and disposal of Long Drive-DS Gold Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32610, 'Long Drive-Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-Gold Tablet', 'How much time does Long Drive-Gold Tablet take to become effective?', 'Usually, half an hour is the time period required by Long Drive-Gold Tablet to show its effects. The effect may last for almost 4-5 hours.'),
(32611, 'Long Drive-Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-Gold Tablet', 'Can I drive while I am taking  Long Drive-Gold Tablet?', 'No, you must avoid driving after taking Long Drive-Gold Tablet as it may make you feel sleepy and dizzy. So, do not drive or use machines while taking this medicine.'),
(32612, 'Long Drive-Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-Gold Tablet', 'What are the precautions that need to be taken while taking Long Drive-Gold Tablet?', 'Before you start taking Long Drive-Gold Tablet tell your doctor if you have or have had heart problems, such as a heart attack, irregular heartbeat, angina, chest pain. Inform your doctor if you have undergone a heart surgery within the past 6 months or if you have uncontrolled low or high blood pressure.'),
(32613, 'Long Drive-Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-Gold Tablet', 'Can the use of Long Drive-Gold Tablet cause dryness in mouth?', 'Yes, the use of Long Drive-Gold Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(32614, 'Long Drive-Gold Tablet', 'Leeford Healthcare Ltd', 'Long Drive-Gold Tablet', 'What should I know about storage and disposal of Long Drive-Gold Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32615, 'Long Last Tablet', 'Alpha Digital Health Private Limited', 'Long Last Tablet', 'What does Long Last Tablet do?', 'Long Last Tablet increases the time taken to ejaculate and improves the control over ejaculation. This may reduce any frustration or worry about quick ejaculation. Long Last Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years.'),
(32616, 'Long Last Tablet', 'Alpha Digital Health Private Limited', 'Long Last Tablet', 'Does Long Last Tablet cure premature ejaculation?', 'Yes, Long Last Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years. Premature ejaculation is when a man ejaculates with minimal sexual stimulation and before he wants. This can cause problems for the man and may cause problems in sexual relationships.'),
(32617, 'Long Last Tablet', 'Alpha Digital Health Private Limited', 'Long Last Tablet', 'Is Long Last Tablet a prescription medicine?', 'Yes, Long Last Tablet is a prescription medicine. It is not an over the counter product.'),
(32618, 'Long Last Tablet', 'Alpha Digital Health Private Limited', 'Long Last Tablet', 'Is Long Last Tablet safe?', 'Yes, Long Last Tablet is safe if used at prescribed doses for the prescribed duration advised by your doctor.'),
(32619, 'Long Last Tablet', 'Alpha Digital Health Private Limited', 'Long Last Tablet', 'Is Long Last Tablet effective?', 'Long Last Tablet is effective if used for the right indication at prescribed doses for the prescribed duration as advised by the physician/ doctor.'),
(32620, 'Long Last Tablet', 'Alpha Digital Health Private Limited', 'Long Last Tablet', 'Does Long Last Tablet cause erectile dysfunction?', 'Long Last Tablet can commonly cause erectile dysfunction, that is, difficulty in getting or keeping an erection. Please consult your doctor if you experience erectile dysfunction while taking Long Last Tablet.'),
(32621, 'Long Last Tablet', 'Alpha Digital Health Private Limited', 'Long Last Tablet', 'Can I take Long Last Tablet with sildenafil?', 'Long Last Tablet, when taken along with sildenafil, may lower your blood pressure, possibly upon standing. Please consult your doctor before taking these two medicines together.'),
(32622, 'Longacillin 1200000IU Injection', 'Hindustan Antibiotics Ltd', 'Longacillin 1200000IU Injection', 'What should I discuss with my doctor before receiving Longacillin 1200000IU Injection?', 'Before taking Longacillin 1200000IU Injection, you should tell your doctor if you have ever had an allergic reaction to Longacillin 1200000IU Injection or any similar medicine. Inform the doctor if you have any type of allergy, asthma or breathing problems, heart disease or kidney disease. Let your doctor know about all the medicines that you may be taking as they may affect or be affected by Longacillin 1200000IU Injection. Pregnant or breastfeeding mothers should also seek their doctor’s advice before taking Longacillin 1200000IU Injection.'),
(32623, 'Longacillin 1200000IU Injection', 'Hindustan Antibiotics Ltd', 'Longacillin 1200000IU Injection', 'Why do Longacillin 1200000IU Injection shots hurt so much?', 'Longacillin 1200000IU Injection is injected deeply into the muscle, usually into the butt muscle, using a lot of fluid used to inject it. Moreover, it is injected slowly which makes it even more painful.'),
(32624, 'Longacillin 1200000IU Injection', 'Hindustan Antibiotics Ltd', 'Longacillin 1200000IU Injection', 'How is Longacillin 1200000IU Injection given?', 'Longacillin 1200000IU Injection can be given as a drip (intravenous infusion) or as an injection directly into a vein or a muscle. It is generally administered by a doctor or a nurse, or under the supervision of a doctor or a nurse. You should not self-administer this medicine at home.'),
(32625, 'Longacillin 1200000IU Injection', 'Hindustan Antibiotics Ltd', 'Longacillin 1200000IU Injection', 'The solution looks discolored. Can I still use Longacillin 1200000IU Injection?', 'No. You should not use Longacillin 1200000IU Injection if the medicine has changed colors or has particles in it. The discolored solution may be contaminated and may not be as effective as it is expected to be. Also, it may cause additional side effects. So, it is best if you discard the solution and go for another vial.'),
(32626, 'Longacillin 1200000IU Injection', 'Hindustan Antibiotics Ltd', 'Longacillin 1200000IU Injection', 'I feel better now. Can I stop taking Longacillin 1200000IU Injection?', 'No. Make sure to receive all doses your doctor has prescribed, even if you feel better. This is because your symptoms may have improved but chances are that the infection is still present in your body. Skipping doses can increase the risk of developing an infection that is resistant to medication. So, continue taking Longacillin 1200000IU Injection as prescribed. After you have finished all the doses, your doctor may advise you on some tests to make sure your infection has completely cleared up.'),
(32627, 'Longacillin 1200000IU Injection', 'Hindustan Antibiotics Ltd', 'Longacillin 1200000IU Injection', 'Does Longacillin 1200000IU Injection treat the flu?', 'No. Longacillin 1200000IU Injection does not treat a viral infection such as the flu or a common cold.'),
(32628, 'Longacillin 1200000IU Injection', 'Hindustan Antibiotics Ltd', 'Longacillin 1200000IU Injection', 'Can Longacillin 1200000IU Injection cause an allergic reaction?', 'Yes. Longacillin 1200000IU Injection may cause an allergic reaction, although it is rare. Get emergency medical help if you have any of the signs of an allergic reaction, such as hives; difficulty breathing; swelling of your face, lips, tongue, or throat.'),
(32629, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'How does biphasic isophane insulin work?', 'Insulin isophane is a recombinant human insulin analogue (genetically modified insulin that is grown in a laboratory and similar to human insulin). It is an intermediate acting insulin preparation. Insulin isophane acts by replacing the normal production of insulin and by helping transfer sugar from the blood into other body tissues where it is utilized to generate energy. It also stops the liver from producing more sugar. Intermediate acting insulin preparations start acting within an hour or 2 of injection, and reach a period of peak activity that lasts up to 7 hours, following which the action trails off; overall duration of action ranges from 18 to 24 hours.'),
(32630, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'What is Longact 40IU/ml Injection? How is it made?', 'Longact 40IU/ml Injection is a man-made version of human insulin, produced by the process of biotechnology called recombinant DNA technology. It is sold as a sterile, aqueous, clear, and colorless solution that contains insulin aspart along with other constituents like glycerin, phenol, metacresol, zinc, sodium chloride etc.'),
(32631, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'Can Longact 40IU/ml Injection cause hypoglycemia? How do I prevent it?', 'Yes. The most common side effect of Longact 40IU/ml Injection is hypoglycemia. It happens more often if you miss or delay your food, drink alcohol, over-exercise or take other antidiabetic medicine along with it. So, don’t skip meals and be consistent in the timing and amount of your meals. Take some snacks as per your requirement if you over exercise. Regular monitoring of the blood sugar level is important. Always carry some glucose tablets, honey or fruit juice with you. Take all your medicines prescribed by the doctor on time and consult your doctor if you notice any fluctuations in your blood sugar levels.'),
(32632, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'What are the other side effects of Longact 40IU/ml Injection? How to prevent them?', 'The other side effects of Longact 40IU/ml Injection are injection site reactions such as redness, itching, pain and swelling. However, these are temporary and usually resolve on their own. Rarely, it can also cause lipodystrophy, which means abnormal changes in the fat tissues due to repeated insulin injections in the same area of the skin. It includes lipohypertrophy (thickening of adipose tissue) and lipoatrophy (thinning of adipose tissue), and may affect insulin absorption. Rotate insulin injection or infusion sites within the same region to reduce the risk of lipodystrophy.'),
(32633, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'How should Longact 40IU/ml Injection be used?', 'Longact 40IU/ml Injection is injected under the skin (subcutaneously). Your doctor will show you the area of your skin where you should inject it. Try not to inject on the same spot every time. Rotate between the typical injection sites, such as abdomen, buttocks, upper legs, or upper arms. Never inject Humalog into a muscle or vein. Move to a new injection site every week or two. Inject in the same area of the body, making sure to move around within that area with each injection, for one or two weeks.Then move to another area of your body and repeat the process. Use the same area for at least a week to avoid extreme blood sugar variations.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32634, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'Is Longact 40IU/ml Injection given as an injection into a vein (intravenous)?', 'Yes, sometimes, in specific situations like diabetic ketoacidosis, severe hyperglycemia etc, Longact 40IU/ml Injection may be given as an injection into a vein (intravenous). However, it is only given by a doctor, under continuous monitoring of blood sugar levels in a hospital setting.'),
(32635, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'Is Longact 40IU/ml Injection safe to use in pregnancy?', 'Yes. Longact 40IU/ml Injection is safe to use in pregnancy if prescribed by a doctor. However, please inform your doctor if you are pregnant, planning to conceive or breastfeeding before using Longact 40IU/ml Injection. You may require dose modifications and your doctor will advise you to monitor your blood sugar levels regularly. You must follow the instructions of your doctor to get maximum benefit.'),
(32636, 'Longact 40IU/ml Injection', 'USV Ltd', 'Longact 40IU/ml Injection', 'When does the dosage of Longact 40IU/ml Injection need to be changed?', 'You should consult your doctor for dose adjustment if you experience weight gain or loss, increased stress, illness, changes in diet such as missed meals or if you are taking alcohol. Your dose may also change if you have recently changed your exercise regime or are taking any medicines. Also, you must be vigilant on the changes you experience while first using Longact 40IU/ml Injection. For eg, you may notice certain side effects that are usually temporary but if these are very severe, you may need dose modifications.'),
(32637, 'Longact Tablet', 'Mech Pharmaceuticals', 'Longact Tablet', 'What if I don\'t get better after using Longact  Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(32638, 'Longact Tablet', 'Mech Pharmaceuticals', 'Longact Tablet', 'Can I stop taking Longact  Tablet when I feel better?', 'No, do not stop taking Longact  Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(32639, 'Longact Tablet', 'Mech Pharmaceuticals', 'Longact Tablet', 'What if I miss my dose?', 'Take Longact  Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(32640, 'Longact Tablet', 'Mech Pharmaceuticals', 'Longact Tablet', 'Can the use of Longact  Tablet cause diarrhea?', 'Yes, the use of Longact  Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(32641, 'Longact Tablet', 'Mech Pharmaceuticals', 'Longact Tablet', 'How long does Longact  Tablet takes to work?', 'Usually, Longact  Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(32642, 'Longcef Tablet', 'Clanthis Lifesciences  Pvt Ltd', 'Longcef Tablet', 'What if I miss my dose?', 'Take Longcef Tablet as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(32643, 'Longcef Tablet', 'Clanthis Lifesciences  Pvt Ltd', 'Longcef Tablet', 'How long does Longcef Tablet take to work?', 'Usually, Longcef Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(32644, 'Longcef Tablet', 'Clanthis Lifesciences  Pvt Ltd', 'Longcef Tablet', 'What if I don\'t get better after using Longcef Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(32645, 'Longcef Tablet', 'Clanthis Lifesciences  Pvt Ltd', 'Longcef Tablet', 'Can I stop taking Longcef Tablet when I feel better?', 'No, do not stop taking Longcef Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(32646, 'Longdep 30 Tablet', 'Medisra Pharma Pvt Ltd', 'Longdep 30 Tablet', 'What does Longdep 30 Tablet do?', 'Longdep 30 Tablet increases the time taken to ejaculate and improves the control over ejaculation. This may reduce any frustration or worry about quick ejaculation. Longdep 30 Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years.'),
(32647, 'Longdep 30 Tablet', 'Medisra Pharma Pvt Ltd', 'Longdep 30 Tablet', 'Does Longdep 30 Tablet cure premature ejaculation?', 'Yes, Longdep 30 Tablet is used to treat premature ejaculation in adult men aged between 18 and 64 years. Premature ejaculation is when a man ejaculates with minimal sexual stimulation and before he wants. This can cause problems for the man and may cause problems in sexual relationships.'),
(32648, 'Longdep 30 Tablet', 'Medisra Pharma Pvt Ltd', 'Longdep 30 Tablet', 'Is Longdep 30 Tablet a prescription medicine?', 'Yes, Longdep 30 Tablet is a prescription medicine. It is not an over the counter product.'),
(32649, 'Longdep 30 Tablet', 'Medisra Pharma Pvt Ltd', 'Longdep 30 Tablet', 'Is Longdep 30 Tablet safe?', 'Yes, Longdep 30 Tablet is safe if used at prescribed doses for the prescribed duration advised by your doctor.'),
(32650, 'Longdep 30 Tablet', 'Medisra Pharma Pvt Ltd', 'Longdep 30 Tablet', 'Is Longdep 30 Tablet effective?', 'Longdep 30 Tablet is effective if used for the right indication at prescribed doses for the prescribed duration as advised by the physician/ doctor.'),
(32651, 'Longdep 30 Tablet', 'Medisra Pharma Pvt Ltd', 'Longdep 30 Tablet', 'Does Longdep 30 Tablet cause erectile dysfunction?', 'Longdep 30 Tablet can commonly cause erectile dysfunction, that is, difficulty in getting or keeping an erection. Please consult your doctor if you experience erectile dysfunction while taking Longdep 30 Tablet.'),
(32652, 'Longdep 30 Tablet', 'Medisra Pharma Pvt Ltd', 'Longdep 30 Tablet', 'Can I take Longdep 30 Tablet with sildenafil?', 'Longdep 30 Tablet, when taken along with sildenafil, may lower your blood pressure, possibly upon standing. Please consult your doctor before taking these two medicines together.'),
(32653, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'How long does it take for Longhit 100mg Tablet to work?', 'The amount of time Longhit 100mg Tablet takes to work varies from person to person, but it normally takes between half an hour and one hour. However, Longhit 100mg Tablet may take longer to start working if you take it with a heavy meal. Its effect may last for about 3-4 hours.'),
(32654, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Can I get Longhit 100mg Tablet without a prescription?', 'No, you need a doctor\'s prescription to get Longhit 100mg Tablet since it is a prescription medicine. Your doctor will prescribe it only if they judge that it would be beneficial for you.'),
(32655, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Can I take Longhit 100mg Tablet as often as I want?', 'No, do not take Longhit 100mg Tablet for more than once a day. If you take more Longhit 100mg Tablet than the recommended dose then you may experience an increase in side effects and their severity. These side effects include flushing, headache, muscle pain, stomach upset, allergic reactions and vision changes such as blurred vision.  Contact your doctor if Longhit 100mg Tablet does not help you to get an erection, or if your erection does not last long enough for you to complete sexual intercourse.'),
(32656, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'When should I take Longhit 100mg Tablet?', 'Take Longhit 100mg Tablet about 1 hour before you plan to have sex. Swallow the tablet whole with a glass of water. Inform your doctor if you feel the effect of Longhit 100mg Tablet is too strong or too weak.'),
(32657, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Can I take Longhit 100mg Tablet for premature ejaculation?', 'No, Longhit 100mg Tablet is not known to have any beneficial effects in treating premature ejaculation. It is used for the treatment of erectile dysfunction.'),
(32658, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Why is the use of Longhit 100mg Tablet contraindicated with nitrates?', 'Use of Longhit 100mg Tablet is harmful for patients taking nitrates or blood pressure-lowering medicines as their combined use can cause a severe fall in blood pressure, which can also result in death. However, if these medicines are to be taken together then it is advised to keep a time gap of 24 hours between the intake of Penegra and blood pressure-lowering medicines.'),
(32659, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Why does Longhit 100mg Tablet cause a fall in blood pressure (hypotension)?', 'Longhit 100mg Tablet has the property of relaxing the smooth muscle of the blood vessels and widening them which can cause a fall in blood pressure (hypotension). So, when used with blood pressure lowering medicines or nitrates, it can cause a severe fall in blood pressure, which could be fatal. Longhit 100mg Tablet should not be taken if you are taking nitrates for chest pain or you have a history of heart attack or stroke in the past 6 months.'),
(32660, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Can I take Longhit 100mg Tablet in my twenties?', 'Yes, if prescribed by your doctor then Longhit 100mg Tablet can be taken in your twenties.'),
(32661, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Does Longhit 100mg Tablet increase blood pressure?', 'No, Longhit 100mg Tablet is not associated with an increase in blood pressure. However, it can cause a decrease in blood pressure especially if taken with other blood pressure-lowering medications. Please consult your doctor before taking Longhit 100mg Tablet with any other medicine.'),
(32662, 'Longhit 100mg Tablet', 'Bolivian Healthcare', 'Longhit 100mg Tablet', 'Is Longhit 100mg Tablet safe to use in patients with diabetes?', 'Yes, if prescribed by your doctor then Longhit 100mg Tablet is safe to use in patients with diabetes.'),
(32663, 'Longifene Syrup', 'Mankind Pharma Ltd', 'Longifene Syrup', 'Can Longifene Syrup be used as an appetite stimulant?', 'No, the Indian government has banned the use of Longifene Syrup as an appetite stimulant [Gazette notification S.O. 6161(E)]. There are no studies available to show its rational use for increasing hunger. Longifene Syrup is used for relieving various symptoms of allergy and motion sickness.'),
(32664, 'Longifene Syrup', 'Mankind Pharma Ltd', 'Longifene Syrup', 'Can I feel sleepy after using Longifene Syrup?', 'Yes, Longifene Syrup can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(32665, 'Longifene Tablet', 'Mankind Pharma Ltd', 'Longifene Tablet', 'Can Longifene Tablet be used as an appetite stimulant?', 'No, the Indian government has banned the use of Longifene Tablet as an appetite stimulant [Gazette notification S.O. 6161(E)]. There are no studies available to show its rational use for increasing hunger. Longifene Tablet is used for relieving various symptoms of allergy and motion sickness.'),
(32666, 'Longifene Tablet', 'Mankind Pharma Ltd', 'Longifene Tablet', 'Can I feel sleepy after using Longifene Tablet?', 'Yes, Longifene Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(32667, 'Longifene-DS Syrup', 'Mankind Pharma Ltd', 'Longifene-DS Syrup', 'Can Longifene-DS Syrup be used as an appetite stimulant?', 'No, the Indian government has banned the use of Longifene-DS Syrup as an appetite stimulant [Gazette notification S.O. 6161(E)]. There are no studies available to show its rational use for increasing hunger. Longifene-DS Syrup is used for relieving various symptoms of allergy and motion sickness.'),
(32668, 'Longifene-DS Syrup', 'Mankind Pharma Ltd', 'Longifene-DS Syrup', 'Can I feel sleepy after using Longifene-DS Syrup?', 'Yes, Longifene-DS Syrup can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(32669, 'Longifene-DS Tablet', 'Mankind Pharma Ltd', 'Longifene-DS Tablet', 'Can Longifene-DS Tablet be used as an appetite stimulant?', 'No, the Indian government has banned the use of Longifene-DS Tablet as an appetite stimulant [Gazette notification S.O. 6161(E)]. There are no studies available to show its rational use for increasing hunger. Longifene-DS Tablet is used for relieving various symptoms of allergy and motion sickness.'),
(32670, 'Longifene-DS Tablet', 'Mankind Pharma Ltd', 'Longifene-DS Tablet', 'Can I feel sleepy after using Longifene-DS Tablet?', 'Yes, Longifene-DS Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(32671, 'Longimax 25mg Tablet', 'Lemford Biotech Pvt Ltd', 'Longimax 25mg Tablet', 'Can Longimax 25mg Tablet be used as an appetite stimulant?', 'No, the Indian government has banned the use of Longimax 25mg Tablet as an appetite stimulant [Gazette notification S.O. 6161(E)]. There are no studies available to show its rational use for increasing hunger. Longimax 25mg Tablet is used for relieving various symptoms of allergy and motion sickness.'),
(32672, 'Longimax 25mg Tablet', 'Lemford Biotech Pvt Ltd', 'Longimax 25mg Tablet', 'Can I feel sleepy after using Longimax 25mg Tablet?', 'Yes, Longimax 25mg Tablet can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(32673, 'Longimax 6mg Syrup', 'Lemford Biotech Pvt Ltd', 'Longimax 6mg Syrup', 'Can Longimax 6mg Syrup be used as an appetite stimulant?', 'No, the Indian government has banned the use of Longimax 6mg Syrup as an appetite stimulant [Gazette notification S.O. 6161(E)]. There are no studies available to show its rational use for increasing hunger. Longimax 6mg Syrup is used for relieving various symptoms of allergy and motion sickness.'),
(32674, 'Longimax 6mg Syrup', 'Lemford Biotech Pvt Ltd', 'Longimax 6mg Syrup', 'Can I feel sleepy after using Longimax 6mg Syrup?', 'Yes, Longimax 6mg Syrup can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(32675, 'Longimax DS 12mg Syrup', 'Lemford Biotech Pvt Ltd', 'Longimax DS 12mg Syrup', 'Can Longimax DS 12mg Syrup be used as an appetite stimulant?', 'No, the Indian government has banned the use of Longimax DS 12mg Syrup as an appetite stimulant [Gazette notification S.O. 6161(E)]. There are no studies available to show its rational use for increasing hunger. Longimax DS 12mg Syrup is used for relieving various symptoms of allergy and motion sickness.'),
(32676, 'Longimax DS 12mg Syrup', 'Lemford Biotech Pvt Ltd', 'Longimax DS 12mg Syrup', 'Can I feel sleepy after using Longimax DS 12mg Syrup?', 'Yes, Longimax DS 12mg Syrup can make you feel sleepy. Avoid driving, operating machinery, working at heights or participating in potentially dangerous activities till you know how this medicine affects you.'),
(32677, 'Longlash 0.01% Eye Drop', 'Emkay Sales Corporation', 'Longlash 0.01% Eye Drop', 'What happens if I stop using Longlash 0.01% Eye Drop?', 'If you stop using Longlash 0.01% Eye Drop, the eyelashes may return to their previous appearance after several weeks or months. In case you have developed any eyelid skin darkening, it may reverse after several weeks or months. However, any change in the color of the iris is permanent and will not reverse.'),
(32678, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'What does Longmet 1000mg Tablet SR do exactly?', 'People with type 2 diabetes are not able to respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Longmet 1000mg Tablet SR acts in several ways to reduce the increased levels of sugar in blood. Longmet 1000mg Tablet SR decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(32679, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'Does Longmet 1000mg Tablet SR cause weight loss?', 'Yes, Longmet 1000mg Tablet SR has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(32680, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'What are the benefits of taking Longmet 1000mg Tablet SR?', 'Longmet 1000mg Tablet SR is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Longmet 1000mg Tablet SR when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(32681, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'Can Longmet 1000mg Tablet SR make you sleepy?', 'Longmet 1000mg Tablet SR usually does not cause sleepiness and is well tolerated. However, the use of Longmet 1000mg Tablet SR may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Longmet 1000mg Tablet SR.'),
(32682, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'How to take Longmet 1000mg Tablet SR?', 'Take Longmet 1000mg Tablet SR with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Longmet 1000mg Tablet SR with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(32683, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'What does Longmet 1000mg Tablet SR do exactly?', 'People with type 2 diabetes are not able to make enough insulin or respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Longmet 1000mg Tablet SR acts in several ways to reduce the increased levels of sugar in blood. Longmet 1000mg Tablet SR decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(32684, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'Does Longmet 1000mg Tablet SR cause weight loss?', 'Yes, Longmet 1000mg Tablet SR has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(32685, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'What are the benefits of taking Longmet 1000mg Tablet SR?', 'Longmet 1000mg Tablet SR is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Longmet 1000mg Tablet SR when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(32686, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'Can Longmet 1000mg Tablet SR make you sleepy?', 'Longmet 1000mg Tablet SR usually does not cause sleepiness and is well tolerated. However, the use of Longmet 1000mg Tablet SR may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Longmet 1000mg Tablet SR.'),
(32687, 'Longmet 1000mg Tablet SR', 'Gold Line', 'Longmet 1000mg Tablet SR', 'How to take Longmet 1000mg Tablet SR?', 'Take Longmet 1000mg Tablet SR with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Longmet 1000mg Tablet SR with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(32688, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'What does Longmet 500mg Tablet SR do exactly?', 'People with type 2 diabetes are not able to respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Longmet 500mg Tablet SR acts in several ways to reduce the increased levels of sugar in blood. Longmet 500mg Tablet SR decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(32689, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'Does Longmet 500mg Tablet SR cause weight loss?', 'Yes, Longmet 500mg Tablet SR has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(32690, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'What are the benefits of taking Longmet 500mg Tablet SR?', 'Longmet 500mg Tablet SR is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Longmet 500mg Tablet SR when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(32691, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'Can Longmet 500mg Tablet SR make you sleepy?', 'Longmet 500mg Tablet SR usually does not cause sleepiness and is well tolerated. However, the use of Longmet 500mg Tablet SR may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Longmet 500mg Tablet SR.'),
(32692, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'How to take Longmet 500mg Tablet SR?', 'Take Longmet 500mg Tablet SR with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Longmet 500mg Tablet SR with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(32693, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'What does Longmet 500mg Tablet SR do exactly?', 'People with type 2 diabetes are not able to make enough insulin or respond normally to the insulin made by their bodies. When this happens, the concentration of sugar/glucose increases in the blood. Longmet 500mg Tablet SR acts in several ways to reduce the increased levels of sugar in blood. Longmet 500mg Tablet SR decreases glucose production from the liver and decreases absorption of glucose from the intestine after taking food while improving the sensitivity of the body organs and muscles towards insulin. This helps improve the uptake of glucose from the blood. It also helps your body to respond better to the insulin it makes naturally.'),
(32694, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'Does Longmet 500mg Tablet SR cause weight loss?', 'Yes, Longmet 500mg Tablet SR has been shown to cause weight loss in people who are overweight or obese. It may also cause a modest loss in weight in those overweight and obese individuals who are at risk for diabetes. In addition, patients who are sensitive or resistant to insulin may also show weight loss. But, do not start taking this medicine for weight loss on your own. Consult your doctor for the same.'),
(32695, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'What are the benefits of taking Longmet 500mg Tablet SR?', 'Longmet 500mg Tablet SR is one of the first medicines that is given to patients with high blood sugar levels. It helps control blood sugar levels. It promotes the body’s response to the insulin made by the pancreas, decreases the amount of sugar made by the liver and decreases the amount of sugar absorbed by the intestines. Unlike other oral antidiabetic medicines, Longmet 500mg Tablet SR when taken alone, rarely causes low blood sugar as it prevents the pancreas from secreting more insulin. In addition to being a great medicine to lower blood sugar levels, it also helps in controlling weight gain.'),
(32696, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'Can Longmet 500mg Tablet SR make you sleepy?', 'Longmet 500mg Tablet SR usually does not cause sleepiness and is well tolerated. However, the use of Longmet 500mg Tablet SR may rarely cause sleep disorders and insomnia. Sleepiness may be due to a very serious side effect called lactic acidosis, which particularly occurs if your kidneys are not working properly. Contact your doctor if you feel sleepy or tired while taking Longmet 500mg Tablet SR.'),
(32697, 'Longmet 500mg Tablet SR', 'Gold Line', 'Longmet 500mg Tablet SR', 'How to take Longmet 500mg Tablet SR?', 'Take Longmet 500mg Tablet SR with or after a meal. Do not crush or chew the tablets and swallow it with a glass of water. If your doctor has prescribed one tablet a day, prefer taking it in the morning with breakfast. If you have been prescribed two tablets a day, then take one in the morning and other in the evening with dinner. In case of three doses a day, apart from morning and evening, you can take it with lunch. Taking Longmet 500mg Tablet SR with meals will reduce its digestive problems like indigestion, nausea, vomiting, diarrhea, stomach ache and loss of appetite.'),
(32698, 'Longtid 10 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 10 Tablet', 'Can the use of Longtid 10 Tablet affect fertility?', 'No, using Longtid 10 Tablet does not affect fertility. It works by relaxing the muscles of penile blood vessels and has no effect on fertility.'),
(32699, 'Longtid 10 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 10 Tablet', 'Do I need to avoid alcohol while taking Longtid 10 Tablet?', 'Alcohol in small amounts may not cause any discomfort to you. However, drinking too much alcohol (5 units or greater) can increase your chances of getting a headache or feeling dizzy, increased heart rate or low blood pressure.'),
(32700, 'Longtid 10 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 10 Tablet', 'Does Longtid 10 Tablet delay ejaculation?', 'No, Longtid 10 Tablet is not known to affect ejaculation. It is used for the treatment of erectile dysfunction.'),
(32701, 'Longtid 10 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 10 Tablet', 'What are the symptoms that should prompt me to discontinue Longtid 10 Tablet?', 'You should immediately consult your doctor if you experience sudden vision loss in one or both eyes, sudden decrease in hearing or hearing loss, ringing in ears and dizziness. Also, contact your doctor if you experience prolonged erections greater than 4 hours and painful erections greater than 6 hours in duration.'),
(32702, 'Longtid 20 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 20 Tablet', 'Can the use of Longtid 20 Tablet affect fertility?', 'No, using Longtid 20 Tablet does not affect fertility. It works by relaxing the muscles of penile blood vessels and has no effect on fertility.'),
(32703, 'Longtid 20 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 20 Tablet', 'Do I need to avoid alcohol while taking Longtid 20 Tablet?', 'Alcohol in small amounts may not cause any discomfort to you. However, drinking too much alcohol (5 units or greater) can increase your chances of getting a headache or feeling dizzy, increased heart rate or low blood pressure.'),
(32704, 'Longtid 20 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 20 Tablet', 'Does Longtid 20 Tablet delay ejaculation?', 'No, Longtid 20 Tablet is not known to affect ejaculation. It is used for the treatment of erectile dysfunction.'),
(32705, 'Longtid 20 Tablet', 'Rockmed Pharma Pvt. Ltd.', 'Longtid 20 Tablet', 'What are the symptoms that should prompt me to discontinue Longtid 20 Tablet?', 'You should immediately consult your doctor if you experience sudden vision loss in one or both eyes, sudden decrease in hearing or hearing loss, ringing in ears and dizziness. Also, contact your doctor if you experience prolonged erections greater than 4 hours and painful erections greater than 6 hours in duration.'),
(32706, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'What is Longwell CV 500mg/125mg Tablet?', 'Longwell CV 500mg/125mg Tablet is a combination of two medicines: Amoxycillin and Clavulanic acid. It is used to treat bacterial infections like, tonsillitis, sinusitis, otitis media, respiratory tract infections, urinary tract infections, boils, abscesses, cellulitis, wound infection, bone infection, and oral cavity infections. The medicine works by killing the harmful bacteria that cause infections.'),
(32707, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Is it safe to use Longwell CV 500mg/125mg Tablet?', 'Longwell CV 500mg/125mg Tablet is safe to use when taken as advised by the doctor. However, in some patients, it may cause common side effects like diarrhea, nausea, vomiting, rash, allergic reaction and other uncommon or rare side effects. If you experience any persistent problem during the course of your treatment, inform your doctor as soon as possible.'),
(32708, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Are there any specific cautions associated with the use of Longwell CV 500mg/125mg Tablet?', 'The use of Longwell CV 500mg/125mg Tablet is considered to be harmful for patients with known allergy to penicillins or any other ingredient of the medicine. It should not be used in patients with a history of liver disease. Therefore, inform your doctor if you are allergic to any medicines.'),
(32709, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Can the use of Longwell CV 500mg/125mg Tablet cause contraceptive failure?', 'Yes, the use of Longwell CV 500mg/125mg Tablet can lower the efficacy of birth control pills. Consult your doctor and seek advice regarding the use of other methods of contraception (e.g., condom, diaphragm, spermicide) while you are taking Longwell CV 500mg/125mg Tablet.'),
(32710, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Can I take a higher than the recommended dose of Longwell CV 500mg/125mg Tablet?', 'No, taking a higher than the recommended dose of Longwell CV 500mg/125mg Tablet can increase the risks of side effects. Longwell CV 500mg/125mg Tablet takes time to show its full effect and treat your infection. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(32711, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'What are the instructions for the storage and disposal of Longwell CV 500mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose off the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32712, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Can I stop taking Longwell CV 500mg/125mg Tablet when my symptoms are relieved?', 'No, do not stop taking Longwell CV 500mg/125mg Tablet before completing the full course of the treatment, even if you feel better. Your symptoms may improve before the infection is completely cured. Hence, continue taking the medicine for the due course as the medicine may still be showing beneficial effects.'),
(32713, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Can Longwell CV 500mg/125mg Tablet cause an allergic reaction?', 'Yes, Longwell CV 500mg/125mg Tablet can cause an allergic reaction. It is considered to be harmful for patients with known allergy to penicillins. Get emergency medical help if you have any signs of allergic reaction like hives, difficulty breathing, or swelling of your face, lips, tongue or throat.'),
(32714, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Can the use of Longwell CV 500mg/125mg Tablet cause diarrhea?', 'Yes, the use of Longwell CV 500mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. In addition to that, the medicine may affect the helpful bacteria in your stomach or intestine as well and cause diarrhea. In case you experience diarrhea, drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not take any other medicine without consulting a doctor.'),
(32715, 'Longwell CV 500mg/125mg Tablet', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV 500mg/125mg Tablet', 'Can I take Longwell CV 500mg/125mg Tablet to treat cold and flu?', 'No, Longwell CV 500mg/125mg Tablet does not treat a viral infection like the common cold or flu. Consult your doctor and avoid self-medication.'),
(32716, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Can other medicines be given at the same time as Longwell CV Dry Syrup?', 'Longwell CV Dry Syrup can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Longwell CV Dry Syrup. Also, check with your child’s doctor before giving any medicine to your child.'),
(32717, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Can I get my child vaccinated while on treatment with Longwell CV Dry Syrup?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(32718, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Which lab tests may my child undergo while taking Longwell CV Dry Syrup on a long-term basis?', 'With prolonged therapy, the doctor may monitor kidney and liver function tests periodically to keep a check on your child’s condition.'),
(32719, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Can I give a higher than the recommended dose of Longwell CV Dry Syrup to my child?', 'No, giving a higher than recommended dose of this medicine can increase the risks of side effects. If your child experiences increased severity of symptoms, please consult your doctor for re-evaluation.'),
(32720, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Can I stop giving Longwell CV Dry Syrup to my child when the symptoms are relieved?', 'No, do not stop giving this medicine to your child unless the full course of the treatment is complete, even if you feel better. The symptoms may improve before the infection is completely cured. Hence, continue giving the medicine for the due course as it may still be showing beneficial effects.'),
(32721, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Can the use of Longwell CV Dry Syrup cause diarrhea?', 'Yes, Longwell CV Dry Syrup may cause diarrhea. It is an antibiotic that kills harmful bacteria. In addition to that, the medicine may also affect the helpful bacteria in your child’s stomach and cause diarrhea. In case of diarrhea, encourage your child to drink plenty of water or other fluids. Talk to your doctor if diarrhea persists and you notice any signs of dehydration, like less frequency of urination with dark colored and strong-smelling urine. Do not give any other medicine to your child without consulting a doctor.'),
(32722, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Do all viral common colds result in secondary bacterial infection?', 'Most of the time, bacterial infections do not follow viral infections. In fact, giving antibiotics in viral infection can increase your child’s risk of developing side effects. So, use antibiotics only after consulting with your child’s doctor.'),
(32723, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'The mucus coming out of my child’s nose is yellow-green. Is it a sign of a bacterial infection?', 'Yellow or green mucus in the nose does not mean that antibiotics are needed. During a common cold, it is normal for mucus to thicken up and change from clear to yellow or green. Symptoms often last for 7-10 days.'),
(32724, 'Longwell CV Dry Syrup', 'Adwel Green Root Organic Pvt. Ltd', 'Longwell CV Dry Syrup', 'Is there any sign which shows that my child needs immediate medical attention?', 'You must call your child’s doctor right away if your child experiences serious allergic reactions (breathing problems, skin rashes), gastrointestinal infections (diarrhea), and liver damage (weakness, paleness, vomiting). Though rare, these side effects are serious and need an expert’s attention.'),
(32725, 'Longy 10mg Tablet', 'Biopharmacieaa Private Limited', 'Longy 10mg Tablet', 'Is Longy 10mg Tablet a steroid? What is it used for?', 'No, Longy 10mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(32726, 'Longy 10mg Tablet', 'Biopharmacieaa Private Limited', 'Longy 10mg Tablet', 'Does Longy 10mg Tablet make you tired and drowsy?', 'Yes, Longy 10mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(32727, 'Longy 10mg Tablet', 'Biopharmacieaa Private Limited', 'Longy 10mg Tablet', 'How long does it take for Longy 10mg Tablet to work?', 'Longy 10mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(32728, 'Longy 10mg Tablet', 'Biopharmacieaa Private Limited', 'Longy 10mg Tablet', 'Can I take Longy 10mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Longy 10mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(32729, 'Longy 10mg Tablet', 'Biopharmacieaa Private Limited', 'Longy 10mg Tablet', 'Is it safe to take Longy 10mg Tablet for a long time?', 'Longy 10mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Longy 10mg Tablet for only as long as you need it.'),
(32730, 'Longy 10mg Tablet', 'Biopharmacieaa Private Limited', 'Longy 10mg Tablet', 'For how long should I continue Longy 10mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Longy 10mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Longy 10mg Tablet'),
(32731, 'Lonido 30mg Capsule', 'Shine Pharmaceuticals Ltd', 'Lonido 30mg Capsule', 'What is Lonido 30mg Capsule? What is it used for?', 'Lonido 30mg Capsule belongs to a class of medicines known as proton pump inhibitors. Lonido 30mg Capsule is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.'),
(32732, 'Lonido 30mg Capsule', 'Shine Pharmaceuticals Ltd', 'Lonido 30mg Capsule', 'How is Lonido 30mg Capsule given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Lonido 30mg Capsule through the nasogastric (NG) tube. Open the Lonido 30mg Capsule capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(32733, 'Lonido 30mg Capsule', 'Shine Pharmaceuticals Ltd', 'Lonido 30mg Capsule', 'Should Lonido 30mg Capsule be taken empty stomach or with food?', 'Usually, Lonido 30mg Capsule is taken once a day, first thing in the morning, on an empty stomach. If you take Lonido 30mg Capsule twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(32734, 'Lonido 30mg Capsule', 'Shine Pharmaceuticals Ltd', 'Lonido 30mg Capsule', 'While taking Lonido 30mg Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(32735, 'Lonido 30mg Capsule', 'Shine Pharmaceuticals Ltd', 'Lonido 30mg Capsule', 'Is Lonido 30mg Capsule used for children?', 'Yes, Lonido 30mg Capsule is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Lonido 30mg Capsule are established only in children between 1 to 17 years of age.'),
(32736, 'Lonikos 5gm Injection', 'Apikos Pharma', 'Lonikos 5gm Injection', 'Q. Is it ok to take alcohol when taking Lonikos 5gm Injection?', 'No, it is not recommended to take alcohol when on Lonikos 5gm Injection. It is a medicine given in cases of liver failure. Although, there are no reported interaction. Still, in cases of liver failure, alcohol should be avoided as it could worsen your complication of liver disease.'),
(32737, 'Lonikos 5gm Injection', 'Apikos Pharma', 'Lonikos 5gm Injection', 'Q. What is Lonikos 5gm Injection?', 'Lonikos 5gm Injection is made up of two amino acids. It is most commonly used in cases of liver diseases in order to prevent it from abnormal brain function called hepatic encephalopathy.'),
(32738, 'Lonikos 5gm Injection', 'Apikos Pharma', 'Lonikos 5gm Injection', 'Q. What is the use of Lonikos 5gm Injection in the treatment of hepatic encephalopathy (HE)?', 'Hepatic encephalopathy (HE) is a brain disorder which occurs in patients with liver failure. In liver failure, there is increased bacterial growth in the intestine which leads to an accumulation of ammonia in blood. This deteriorating condition of the liver starts affecting the functioning of the brain, causing Hepatic encephalopathy. Lonikos 5gm Injection works by detoxifying the ammonia from the blood, hence decreasing the free ammonia from the body. This, as a result, helps decrease the abnormal functioning of the brain caused due to liver failure.'),
(32739, 'Lonikos 5gm Injection', 'Apikos Pharma', 'Lonikos 5gm Injection', 'Q. How is Lonikos 5gm Injection given?', 'Lonikos 5gm Injection can be given daily as an injection that is injected into the veins. Your doctor will suggest the appropriate dose depending on the patient’s health condition and severity of the disease.'),
(32740, 'Lonin 0.5mg Tablet', 'Chemo Biological', 'Lonin 0.5mg Tablet', 'Is Lonin 0.5mg Tablet a sleeping pill?', 'Lonin 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32741, 'Lonin 0.5mg Tablet', 'Chemo Biological', 'Lonin 0.5mg Tablet', 'Does Lonin 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonin 0.5mg Tablet?', 'Yes, Lonin 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonin 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32742, 'Lonin 0.5mg Tablet', 'Chemo Biological', 'Lonin 0.5mg Tablet', 'For how long should I take Lonin 0.5mg Tablet?', 'The duration of treatment with Lonin 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32743, 'Lonin 0.5mg Tablet', 'Chemo Biological', 'Lonin 0.5mg Tablet', 'Is it safe to take Lonin 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonin 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonin 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32744, 'Lonin 0.5mg Tablet', 'Chemo Biological', 'Lonin 0.5mg Tablet', 'Is Lonin 0.5mg Tablet addictive?', 'People taking Lonin 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonin 0.5mg Tablet. Therefore, Lonin 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32745, 'Lonin 0.5mg Tablet', 'Chemo Biological', 'Lonin 0.5mg Tablet', 'Can I stop taking Lonin 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonin 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32746, 'Lonin 0.5mg Tablet', 'Chemo Biological', 'Lonin 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonin 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonin 0.5mg Tablet. This is because caffeine stimulates your brain and Lonin 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonin 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonin 0.5mg Tablet.'),
(32747, 'Lonin 0.5mg Tablet MD', 'CL Reddy Health Care', 'Lonin 0.5mg Tablet MD', 'Is Lonin 0.5mg Tablet MD a sleeping pill?', 'Lonin 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32748, 'Lonin 0.5mg Tablet MD', 'CL Reddy Health Care', 'Lonin 0.5mg Tablet MD', 'Does Lonin 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonin 0.5mg Tablet MD?', 'Yes, Lonin 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonin 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32749, 'Lonin 0.5mg Tablet MD', 'CL Reddy Health Care', 'Lonin 0.5mg Tablet MD', 'For how long should I take Lonin 0.5mg Tablet MD?', 'The duration of treatment with Lonin 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32750, 'Lonin 0.5mg Tablet MD', 'CL Reddy Health Care', 'Lonin 0.5mg Tablet MD', 'Is it safe to take Lonin 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonin 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonin 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32751, 'Lonin 0.5mg Tablet MD', 'CL Reddy Health Care', 'Lonin 0.5mg Tablet MD', 'Is Lonin 0.5mg Tablet MD addictive?', 'People taking Lonin 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonin 0.5mg Tablet MD. Therefore, Lonin 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32752, 'Lonin 0.5mg Tablet MD', 'CL Reddy Health Care', 'Lonin 0.5mg Tablet MD', 'Can I stop taking Lonin 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonin 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32753, 'Lonin 0.5mg Tablet MD', 'CL Reddy Health Care', 'Lonin 0.5mg Tablet MD', 'Are there any foods we need to avoid while taking Lonin 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonin 0.5mg Tablet MD. This is because caffeine stimulates your brain and Lonin 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonin 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonin 0.5mg Tablet MD.'),
(32754, 'Lonin 2mg Tablet', 'Chemo Biological', 'Lonin 2mg Tablet', 'Is Lonin 2mg Tablet a sleeping pill?', 'Lonin 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32755, 'Lonin 2mg Tablet', 'Chemo Biological', 'Lonin 2mg Tablet', 'Does Lonin 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonin 2mg Tablet?', 'Yes, Lonin 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonin 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32756, 'Lonin 2mg Tablet', 'Chemo Biological', 'Lonin 2mg Tablet', 'For how long should I take Lonin 2mg Tablet?', 'The duration of treatment with Lonin 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32757, 'Lonin 2mg Tablet', 'Chemo Biological', 'Lonin 2mg Tablet', 'Is it safe to take Lonin 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonin 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonin 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32758, 'Lonin 2mg Tablet', 'Chemo Biological', 'Lonin 2mg Tablet', 'Is Lonin 2mg Tablet addictive?', 'People taking Lonin 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonin 2mg Tablet. Therefore, Lonin 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32759, 'Lonin 2mg Tablet', 'Chemo Biological', 'Lonin 2mg Tablet', 'Can I stop taking Lonin 2mg Tablet if I start feeling better?', 'No, do not stop taking Lonin 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32760, 'Lonin 2mg Tablet', 'Chemo Biological', 'Lonin 2mg Tablet', 'Are there any foods we need to avoid while taking Lonin 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonin 2mg Tablet. This is because caffeine stimulates your brain and Lonin 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonin 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonin 2mg Tablet.'),
(32761, 'Lonipax 0.25mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.25mg Tablet MD', 'Is Lonipax 0.25mg Tablet MD a sleeping pill?', 'Lonipax 0.25mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32762, 'Lonipax 0.25mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.25mg Tablet MD', 'Does Lonipax 0.25mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonipax 0.25mg Tablet MD?', 'Yes, Lonipax 0.25mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonipax 0.25mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32763, 'Lonipax 0.25mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.25mg Tablet MD', 'For how long should I take Lonipax 0.25mg Tablet MD?', 'The duration of treatment with Lonipax 0.25mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32764, 'Lonipax 0.25mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.25mg Tablet MD', 'Is it safe to take Lonipax 0.25mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonipax 0.25mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonipax 0.25mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32765, 'Lonipax 0.25mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.25mg Tablet MD', 'Is Lonipax 0.25mg Tablet MD addictive?', 'People taking Lonipax 0.25mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonipax 0.25mg Tablet MD. Therefore, Lonipax 0.25mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32766, 'Lonipax 0.25mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.25mg Tablet MD', 'Can I stop taking Lonipax 0.25mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonipax 0.25mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32767, 'Lonipax 0.25mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.25mg Tablet MD', 'Are there any foods we need to avoid while taking Lonipax 0.25mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonipax 0.25mg Tablet MD. This is because caffeine stimulates your brain and Lonipax 0.25mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonipax 0.25mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonipax 0.25mg Tablet MD.'),
(32768, 'Lonipax 0.5mg Tablet', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet', 'Is Lonipax 0.5mg Tablet a sleeping pill?', 'Lonipax 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32769, 'Lonipax 0.5mg Tablet', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet', 'Does Lonipax 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonipax 0.5mg Tablet?', 'Yes, Lonipax 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonipax 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32770, 'Lonipax 0.5mg Tablet', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet', 'For how long should I take Lonipax 0.5mg Tablet?', 'The duration of treatment with Lonipax 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32771, 'Lonipax 0.5mg Tablet', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet', 'Is it safe to take Lonipax 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonipax 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonipax 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32772, 'Lonipax 0.5mg Tablet', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet', 'Is Lonipax 0.5mg Tablet addictive?', 'People taking Lonipax 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonipax 0.5mg Tablet. Therefore, Lonipax 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32773, 'Lonipax 0.5mg Tablet', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet', 'Can I stop taking Lonipax 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonipax 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32774, 'Lonipax 0.5mg Tablet', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonipax 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonipax 0.5mg Tablet. This is because caffeine stimulates your brain and Lonipax 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonipax 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonipax 0.5mg Tablet.'),
(32775, 'Lonipax 0.5mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet MD', 'Is Lonipax 0.5mg Tablet MD a sleeping pill?', 'Lonipax 0.5mg Tablet MD belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32776, 'Lonipax 0.5mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet MD', 'Does Lonipax 0.5mg Tablet MD cause sleepiness? If yes, then should I stop driving while taking Lonipax 0.5mg Tablet MD?', 'Yes, Lonipax 0.5mg Tablet MD causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonipax 0.5mg Tablet MD makes you sleepy and affects your alertness, you should avoid driving.'),
(32777, 'Lonipax 0.5mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet MD', 'For how long should I take Lonipax 0.5mg Tablet MD?', 'The duration of treatment with Lonipax 0.5mg Tablet MD is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32778, 'Lonipax 0.5mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet MD', 'Is it safe to take Lonipax 0.5mg Tablet MD and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonipax 0.5mg Tablet MD since it can cause breathing problems, sleepiness and heart problems. Taking Lonipax 0.5mg Tablet MD with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32779, 'Lonipax 0.5mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet MD', 'Is Lonipax 0.5mg Tablet MD addictive?', 'People taking Lonipax 0.5mg Tablet MD in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonipax 0.5mg Tablet MD. Therefore, Lonipax 0.5mg Tablet MD should be taken for the shortest possible time and in the lowest effective dose.'),
(32780, 'Lonipax 0.5mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet MD', 'Can I stop taking Lonipax 0.5mg Tablet MD if I start feeling better?', 'No, do not stop taking Lonipax 0.5mg Tablet MD suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32781, 'Lonipax 0.5mg Tablet MD', 'Reliance Lifecare Pvt Ltd', 'Lonipax 0.5mg Tablet MD', 'Are there any foods we need to avoid while taking Lonipax 0.5mg Tablet MD?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonipax 0.5mg Tablet MD. This is because caffeine stimulates your brain and Lonipax 0.5mg Tablet MD calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonipax 0.5mg Tablet MD. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonipax 0.5mg Tablet MD.'),
(32782, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'Is Lonipress 5mg Tablet a diuretic?', 'No, Lonipress 5mg Tablet is not a diuretic. Lonipress 5mg Tablet is a beta-blocker medicine which works by blocking the hyperactivity of the nerve impulses in the heart. This relaxes the heart muscles and eventually calms the heart.'),
(32783, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'What is the best time to take Lonipress 5mg Tablet?', 'Lonipress 5mg Tablet can be taken anytime in the morning or evening, usually prescribed once daily. However, your very first dose of Lonipress 5mg Tablet may make you feel dizzy, so it is better to take your first dose at bedtime. After that, if you do not feel dizzy, you may take it any time of the day. Follow the advice of your doctor. It is advised to take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(32784, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'What if I forget to take a dose of Lonipress 5mg Tablet?', 'If you have missed a dose of Lonipress 5mg Tablet, take it as soon as you remember it. However, if it is almost time for your next dose, take it in the regular schedule instead of taking the missed dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32785, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'When will I feel better after taking Lonipress 5mg Tablet?', 'You may not feel any difference after taking Lonipress 5mg Tablet, if you are taking it for high blood pressure. However, keep taking this medicine as prescribed by your doctor because you will still be getting its full benefits. If you are taking Lonipress 5mg Tablet for angina or heart failure, it may take several weeks or months to make you feel better.'),
(32786, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'How many hours does Lonipress 5mg Tablet take to reduce high blood pressure?', 'Lonipress 5mg Tablet starts showing its effect within 2 hours, but it can take up to 2 to 6 weeks to reach its full effect. You may not feel any difference in blood pressure, but this does not mean that the medicine is not working. Take it exactly as directed by your doctor. It\'s important to keep taking your medicine in the prescribed dose and duration to get the maximum benefit of Lonipress 5mg Tablet.'),
(32787, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'Is Lonipress 5mg Tablet safe in pregnancy?', 'No, Lonipress 5mg Tablet is not safe to be taken in pregnancy. It can have many harmful effects on the fetus/newborn and can even cause complications in pregnancy. The use ofLonipress 5mg Tablet may decrease the blood supply to the fetus, slow down its growth, cause intrauterine death, abortion or early labor. Therefore, it is advised to consult your doctor if you are planning a baby or if you become pregnant during the course of treatment with this medication.'),
(32788, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'What if I take more than the prescribed dose of Lonipress 5mg Tablet?', 'If you take more than the prescribed dose, your heart rate may slow down and you may find it difficult to breathe. It can also cause dizziness and trembling. It is advised to go to a hospital immediately, but do not drive yourself to avoid any mishap. Get someone else to drive you or call for an ambulance. Take the Lonipress 5mg Tablet packet or leaflet inside it, plus any remaining medicine, with you.'),
(32789, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'What are the most common side effects of Lonipress 5mg Tablet?', 'The most common side effects of Lonipress 5mg Tablet are cold extremities, fatigue, slow heart rate, nausea, diarrhea and dizziness. However, these are usually mild and short-lived and not everyone will experience these side effects. But, if these do not resolve and bother you, consult your doctor to know about ways of coping up with them. Your doctor may also suggest ways of preventing them in future.'),
(32790, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'What other lifestyle changes should I make while taking Lonipress 5mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lonipress 5mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lonipress 5mg Tablet and to keep yourself healthy.'),
(32791, 'Lonipress 5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress 5mg Tablet', 'Is Lonipress 5mg Tablet effective?', 'Lonipress 5mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lonipress 5mg Tablet too early, the symptoms may return or worsen.'),
(32792, 'Lonipress AM 5mg/5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress AM 5mg/5mg Tablet', 'Can I feel dizzy after taking Lonipress AM 5mg/5mg Tablet?', 'Yes, the use of Lonipress AM 5mg/5mg Tablet can make you feel dizzy. This may occur when you suddenly rise up from lying or sitting position. To lower the chance of feeling dizzy or passing out, rise slowly if you have been sitting or lying down.'),
(32793, 'Lonipress AM 5mg/5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress AM 5mg/5mg Tablet', 'Can I stop taking Lonipress AM 5mg/5mg Tablet if I feel well?', 'No, keep using Lonipress AM 5mg/5mg Tablet as advised by your doctor, even if you feel well. Stopping Lonipress AM 5mg/5mg Tablet suddenly may lead to serious complications such as heart attack and stroke.'),
(32794, 'Lonipress AM 5mg/5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress AM 5mg/5mg Tablet', 'What are the instructions for the storage and disposal of Lonipress AM 5mg/5mg Tablet?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32795, 'Lonipress AM 5mg/5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress AM 5mg/5mg Tablet', 'What are the contraindications associated with the use of Lonipress AM 5mg/5mg Tablet?', 'Lonipress AM 5mg/5mg Tablet is considered to be harmful for patients who are allergic to amlodipine, bisoprolol or any of its ingredients. It should be avoided in patients with a history of asthma or lung disease. Inform your doctor about your medical history and the medicines you might be taking.'),
(32796, 'Lonipress AM 5mg/5mg Tablet', 'Alniche Life Sciences Pvt Ltd', 'Lonipress AM 5mg/5mg Tablet', 'Can the use of Lonipress AM 5mg/5mg Tablet cause headache?', 'Yes, the use of Lonipress AM 5mg/5mg Tablet can cause headaches at the beginning of the treatment. Headaches usually go away after the first week of the treatment. Contact your doctor if the headaches are frequent and do not go away.'),
(32797, 'Lonit 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 10mg Tablet', 'What is Lonit 10mg Tablet and what is it used for?', 'Lonit 10mg Tablet belongs to a class of medicines known as potassium channel openers. It helps in relaxing blood vessels. Widening peripheral blood vessels will decrease blood pressure. This decreases the workload of the heart to pump the blood and helps in the treatment of certain hypertension cases.'),
(32798, 'Lonit 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 10mg Tablet', 'Can I stop taking Lonit 10mg Tablet?', 'No, you should not stop taking Lonit 10mg Tablet without speaking to your doctor first. If you stop Lonit 10mg Tablet suddenly, rebound hypertension may occur. Talk to your doctor if you are experiencing any side effects.'),
(32799, 'Lonit 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 10mg Tablet', 'How long does it take Lonit 10mg Tablet to start working?', 'Lonit 10mg Tablet starts working after about an hour of taking the medicine, but full benefits may be seen only after 7 days.'),
(32800, 'Lonit 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 10mg Tablet', 'For how long do I need to continue Lonit 10mg Tablet?', 'Continue taking your medicine for as long as your doctor tells you. Lonit 10mg Tablet is generally prescribed for a long term. You may even need to take it for the rest of your life.'),
(32801, 'Lonit 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 10mg Tablet', 'What if somebody accidentally takes excess of Lonit 10mg Tablet?', 'He or she should be taken to the hospital immediately. The person may experience signs of low blood pressure, which include feeling weak or dizzy. He or she may also experience irregular or fast heart beat.'),
(32802, 'Lonit 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 10mg Tablet', 'Who should not use Lonit 10mg Tablet?', 'People who are allergic to Lonit 10mg Tablet or any of its ingredients should avoid using this medicine. Also, patients who have heart problems such as cardiogenic shock or left ventricular failure with low filling pressure or cardiac decompensation or have a build-up of fluid in the lungs (pulmonary edema) should not use Lonit 10mg Tablet. Additionally, patients taking medicines to treat erectile dysfunction (e.g., sildenafil, tadalafil, and vardenafil) or medicines to treat pulmonary hypertension (e.g., riociguat) should not use the medication. Your blood pressure may be affected if these medicines are taken with Lonit 10mg Tablet or if you have low blood volume.'),
(32803, 'Lonit 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 10mg Tablet', 'Can Lonit 10mg Tablet affect my sex life?', 'No, Lonit 10mg Tablet does not affect your sex life. However, it is not recommended to take medicines used to treat erectile dysfunction (e.g., sildenafil or tadalafil) or premature ejaculation (e.g., vardenafil or dapoxetine) while taking Lonit 10mg Tablet. Taking them together can lead to a serious drop in your blood pressure.'),
(32804, 'Lonit 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 5mg Tablet', 'What is Lonit 5mg Tablet and what is it used for?', 'Lonit 5mg Tablet belongs to a class of medicines known as potassium channel openers. It helps in relaxing blood vessels. Widening peripheral blood vessels will decrease blood pressure. This decreases the workload of the heart to pump the blood and helps in the treatment of certain hypertension cases.'),
(32805, 'Lonit 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 5mg Tablet', 'Can I stop taking Lonit 5mg Tablet?', 'No, you should not stop taking Lonit 5mg Tablet without speaking to your doctor first. If you stop Lonit 5mg Tablet suddenly, rebound hypertension may occur. Talk to your doctor if you are experiencing any side effects.'),
(32806, 'Lonit 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 5mg Tablet', 'How long does it take Lonit 5mg Tablet to start working?', 'Lonit 5mg Tablet starts working after about an hour of taking the medicine, but full benefits may be seen only after 7 days.'),
(32807, 'Lonit 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 5mg Tablet', 'For how long do I need to continue Lonit 5mg Tablet?', 'Continue taking your medicine for as long as your doctor tells you. Lonit 5mg Tablet is generally prescribed for a long term. You may even need to take it for the rest of your life.'),
(32808, 'Lonit 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 5mg Tablet', 'What if somebody accidentally takes excess of Lonit 5mg Tablet?', 'He or she should be taken to the hospital immediately. The person may experience signs of low blood pressure, which include feeling weak or dizzy. He or she may also experience irregular or fast heart beat.'),
(32809, 'Lonit 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 5mg Tablet', 'Who should not use Lonit 5mg Tablet?', 'People who are allergic to Lonit 5mg Tablet or any of its ingredients should avoid using this medicine. Also, patients who have heart problems such as cardiogenic shock or left ventricular failure with low filling pressure or cardiac decompensation or have a build-up of fluid in the lungs (pulmonary edema) should not use Lonit 5mg Tablet. Additionally, patients taking medicines to treat erectile dysfunction (e.g., sildenafil, tadalafil, and vardenafil) or medicines to treat pulmonary hypertension (e.g., riociguat) should not use the medication. Your blood pressure may be affected if these medicines are taken with Lonit 5mg Tablet or if you have low blood volume.'),
(32810, 'Lonit 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Lonit 5mg Tablet', 'Can Lonit 5mg Tablet affect my sex life?', 'No, Lonit 5mg Tablet does not affect your sex life. However, it is not recommended to take medicines used to treat erectile dysfunction (e.g., sildenafil or tadalafil) or premature ejaculation (e.g., vardenafil or dapoxetine) while taking Lonit 5mg Tablet. Taking them together can lead to a serious drop in your blood pressure.'),
(32811, 'Lonitab 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 10 Tablet', 'What is Lonitab 10 Tablet and what is it used for?', 'Lonitab 10 Tablet belongs to a class of medicines known as potassium channel openers. It helps in relaxing blood vessels. Widening peripheral blood vessels will decrease blood pressure. This decreases the workload of the heart to pump the blood and helps in the treatment of certain hypertension cases.'),
(32812, 'Lonitab 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 10 Tablet', 'Can I stop taking Lonitab 10 Tablet?', 'No, you should not stop taking Lonitab 10 Tablet without speaking to your doctor first. If you stop Lonitab 10 Tablet suddenly, rebound hypertension may occur. Talk to your doctor if you are experiencing any side effects.'),
(32813, 'Lonitab 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 10 Tablet', 'How long does it take Lonitab 10 Tablet to start working?', 'Lonitab 10 Tablet starts working after about an hour of taking the medicine, but full benefits may be seen only after 7 days.'),
(32814, 'Lonitab 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 10 Tablet', 'For how long do I need to continue Lonitab 10 Tablet?', 'Continue taking your medicine for as long as your doctor tells you. Lonitab 10 Tablet is generally prescribed for a long term. You may even need to take it for the rest of your life.'),
(32815, 'Lonitab 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 10 Tablet', 'What if somebody accidentally takes excess of Lonitab 10 Tablet?', 'He or she should be taken to the hospital immediately. The person may experience signs of low blood pressure, which include feeling weak or dizzy. He or she may also experience irregular or fast heart beat.'),
(32816, 'Lonitab 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 10 Tablet', 'Who should not use Lonitab 10 Tablet?', 'People who are allergic to Lonitab 10 Tablet or any of its ingredients should avoid using this medicine. Also, patients who have heart problems such as cardiogenic shock or left ventricular failure with low filling pressure or cardiac decompensation or have a build-up of fluid in the lungs (pulmonary edema) should not use Lonitab 10 Tablet. Additionally, patients taking medicines to treat erectile dysfunction (e.g., sildenafil, tadalafil, and vardenafil) or medicines to treat pulmonary hypertension (e.g., riociguat) should not use the medication. Your blood pressure may be affected if these medicines are taken with Lonitab 10 Tablet or if you have low blood volume.'),
(32817, 'Lonitab 10 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 10 Tablet', 'Can Lonitab 10 Tablet affect my sex life?', 'No, Lonitab 10 Tablet does not affect your sex life. However, it is not recommended to take medicines used to treat erectile dysfunction (e.g., sildenafil or tadalafil) or premature ejaculation (e.g., vardenafil or dapoxetine) while taking Lonitab 10 Tablet. Taking them together can lead to a serious drop in your blood pressure.'),
(32818, 'Lonitab 2.5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 2.5 Tablet', 'What is Lonitab 2.5 Tablet used for?', 'Lonitab 2.5 Tablet is primarily used to treat high blood pressure (hypertension) by relaxing blood vessels. It can also be prescribed to promote hair growth in cases of hair loss.'),
(32819, 'Lonitab 2.5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 2.5 Tablet', 'How does Lonitab 2.5 Tablet lower blood pressure?', 'Lonitab 2.5 Tablet is a vasodilator, meaning it relaxes and widens blood vessels, improving blood flow and helping to lower blood pressure.'),
(32820, 'Lonitab 2.5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 2.5 Tablet', 'How long does it take to see results with Lonitab 2.5 Tablet for hair loss?', 'It may take several months of consistent use to see noticeable hair growth when using Lonitab 2.5 Tablet for hair loss.'),
(32821, 'Lonitab 2.5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 2.5 Tablet', 'Can I stop taking Lonitab 2.5 Tablet if my blood pressure improves?', 'You should not stop taking Lonitab 2.5 Tablet without consulting your doctor, as this may cause your blood pressure to rise again.'),
(32822, 'Lonitab 2.5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 2.5 Tablet', 'Can Lonitab 2.5 Tablet be used with other medicines?', 'Yes, Lonitab 2.5 Tablet is often used with other medicines to treat high blood pressure, but always consult your doctor before combining it with other treatments.'),
(32823, 'Lonitab 2.5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 2.5 Tablet', 'Is Lonitab 2.5 Tablet safe during pregnancy or breastfeeding?', 'Lonitab 2.5 Tablet may not be safe for pregnant or breastfeeding women. Discuss with your doctor before starting the medicine.'),
(32824, 'Lonitab 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 5 Tablet', 'What is Lonitab 5 Tablet and what is it used for?', 'Lonitab 5 Tablet belongs to a class of medicines known as potassium channel openers. It helps in relaxing blood vessels. Widening peripheral blood vessels will decrease blood pressure. This decreases the workload of the heart to pump the blood and helps in the treatment of certain hypertension cases.'),
(32825, 'Lonitab 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 5 Tablet', 'Can I stop taking Lonitab 5 Tablet?', 'No, you should not stop taking Lonitab 5 Tablet without speaking to your doctor first. If you stop Lonitab 5 Tablet suddenly, rebound hypertension may occur. Talk to your doctor if you are experiencing any side effects.'),
(32826, 'Lonitab 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 5 Tablet', 'How long does it take Lonitab 5 Tablet to start working?', 'Lonitab 5 Tablet starts working after about an hour of taking the medicine, but full benefits may be seen only after 7 days.'),
(32827, 'Lonitab 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 5 Tablet', 'For how long do I need to continue Lonitab 5 Tablet?', 'Continue taking your medicine for as long as your doctor tells you. Lonitab 5 Tablet is generally prescribed for a long term. You may even need to take it for the rest of your life.'),
(32828, 'Lonitab 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 5 Tablet', 'What if somebody accidentally takes excess of Lonitab 5 Tablet?', 'He or she should be taken to the hospital immediately. The person may experience signs of low blood pressure, which include feeling weak or dizzy. He or she may also experience irregular or fast heart beat.'),
(32829, 'Lonitab 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 5 Tablet', 'Who should not use Lonitab 5 Tablet?', 'People who are allergic to Lonitab 5 Tablet or any of its ingredients should avoid using this medicine. Also, patients who have heart problems such as cardiogenic shock or left ventricular failure with low filling pressure or cardiac decompensation or have a build-up of fluid in the lungs (pulmonary edema) should not use Lonitab 5 Tablet. Additionally, patients taking medicines to treat erectile dysfunction (e.g., sildenafil, tadalafil, and vardenafil) or medicines to treat pulmonary hypertension (e.g., riociguat) should not use the medication. Your blood pressure may be affected if these medicines are taken with Lonitab 5 Tablet or if you have low blood volume.'),
(32830, 'Lonitab 5 Tablet', 'Intas Pharmaceuticals Ltd', 'Lonitab 5 Tablet', 'Can Lonitab 5 Tablet affect my sex life?', 'No, Lonitab 5 Tablet does not affect your sex life. However, it is not recommended to take medicines used to treat erectile dysfunction (e.g., sildenafil or tadalafil) or premature ejaculation (e.g., vardenafil or dapoxetine) while taking Lonitab 5 Tablet. Taking them together can lead to a serious drop in your blood pressure.'),
(32831, 'Loniwin 250mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 250mg Tablet', 'Is Loniwin 250mg Tablet safe?', 'Loniwin 250mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32832, 'Loniwin 250mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 250mg Tablet', 'What if I forget to take a dose of Loniwin 250mg Tablet?', 'If you forget a dose of Loniwin 250mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32833, 'Loniwin 250mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 250mg Tablet', 'Can the use of Loniwin 250mg Tablet cause diarrhea?', 'Yes, the use of Loniwin 250mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(32834, 'Loniwin 250mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 250mg Tablet', 'Can I stop taking Loniwin 250mg Tablet when I feel better?', 'No, do not stop taking Loniwin 250mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Loniwin 250mg Tablet too early, the symptoms may return or worsen. Continue taking Loniwin 250mg Tablet in the dose and duration advised by the doctor.'),
(32835, 'Loniwin 250mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 250mg Tablet', 'Can the use of Loniwin 250mg Tablet increase the risk of muscle damage?', 'Yes, the use of Loniwin 250mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Loniwin 250mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(32836, 'Loniwin 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 500mg Tablet', 'Is Loniwin 500mg Tablet safe?', 'Loniwin 500mg Tablet is safe if used in the dose and duration advised by your doctor. Take it exactly as directed and do not skip any dose. Follow your doctor\'s instructions carefully and let your doctor know if any of the side effects bother you.'),
(32837, 'Loniwin 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 500mg Tablet', 'What if I forget to take a dose of Loniwin 500mg Tablet?', 'If you forget a dose of Loniwin 500mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose in the prescribed time. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32838, 'Loniwin 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 500mg Tablet', 'Can the use of Loniwin 500mg Tablet cause diarrhea?', 'Yes, the use of Loniwin 500mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(32839, 'Loniwin 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 500mg Tablet', 'Can I stop taking Loniwin 500mg Tablet when I feel better?', 'No, do not stop taking Loniwin 500mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured. If you stop using Loniwin 500mg Tablet too early, the symptoms may return or worsen. Continue taking Loniwin 500mg Tablet in the dose and duration advised by the doctor.'),
(32840, 'Loniwin 500mg Tablet', 'Marc Laboratories Pvt Ltd', 'Loniwin 500mg Tablet', 'Can the use of Loniwin 500mg Tablet increase the risk of muscle damage?', 'Yes, the use of Loniwin 500mg Tablet is known to increase the risk of muscle damage, commonly in the ankle. Muscle damage can happen in people of all ages who take Loniwin 500mg Tablet but it may be more significant in people above 60 years of age. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(32841, 'Lonizol 1% Cream', 'BestoChem Formulations  India  Ltd', 'Lonizol 1% Cream', 'Is Lonizol 1% Cream safe in pregnancy?', 'Lonizol 1% Cream should be avoided during pregnancy as there is no data to support its safety in pregnancy. However, you should consult your doctor who will evaluate the benefits versus risks to your unborn baby if it is necessary to use Lonizol 1% Cream.'),
(32842, 'Lonizol 1% Cream', 'BestoChem Formulations  India  Ltd', 'Lonizol 1% Cream', 'Is Lonizol 1% Cream fungicidal or Fungistatic?', 'Lonizol 1% Cream has fungicidal property as it acts by slowing the growth of fungi. It decreases an important constituent of the cell membrane of fungi (ergosterol), thereby exhibiting its fungicidal activity.'),
(32843, 'Lonizol 1% Cream', 'BestoChem Formulations  India  Ltd', 'Lonizol 1% Cream', 'How to use Lonizol 1% Cream?', 'Use Lonizol 1% Cream exactly as per your doctor’s advice. If you have an athlete\'s foot between the toes, apply a thin layer of this medicine to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 2 weeks. If you have jock itch or ringworm, apply it to the affected skin areas and spread it to cover at least 1 inch of the surrounding skin. Use it once a day for 1 week. Always wash your hands after you apply this medicine.'),
(32844, 'Lonizol 1% Cream', 'BestoChem Formulations  India  Ltd', 'Lonizol 1% Cream', 'How long does it take for Lonizol 1% Cream to work?', 'For different ailments, Lonizol 1% Cream works differently. Results for treating an athlete\'s foot between the toes are typically seen 4 weeks after treatment, but it may take up to 6 weeks in some patients. On the other hand, results for treating jock itch and ringworm are typically seen 3 weeks after treatment, and it may take up to 4 weeks.'),
(32845, 'Lonizol 1% Cream', 'BestoChem Formulations  India  Ltd', 'Lonizol 1% Cream', 'How should I store Lonizol 1% Cream?', 'Keep Lonizol 1% Cream in the container it came in. Keep the container tightly closed and out of the reach of children. Store it at room temperature (20°C to 25°C) and away from light, excess heat, and moisture (not in the bathroom).'),
(32846, 'Lonizol 1% Cream', 'BestoChem Formulations  India  Ltd', 'Lonizol 1% Cream', 'Is Lonizol 1% Cream safe to use in children?', 'Yes, Lonizol 1% Cream is safe and effective to be used in children above 2 years of age. Safety and effectiveness were observed to be the same between children and adults.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32847, 'Lonlee 5mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee 5mg Tablet', 'Is Lonlee 5mg Tablet a steroid? What is it used for?', 'No, Lonlee 5mg Tablet is not a steroid. It is an anti-allergic medication which is used to relieve the symptoms of allergy. It relieves runny nose, sneezing and redness, itching and watering of the eyes caused by hay fever or seasonal allergies. It also relieves similar symptoms caused due to allergies to substances, such as dust mites, animal dander and mold. Additionally, it is helpful in treating symptoms of hives, including itching and rash.'),
(32848, 'Lonlee 5mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee 5mg Tablet', 'Does Lonlee 5mg Tablet make you tired and drowsy?', 'Yes, Lonlee 5mg Tablet can make you feel tired, sleepy and weak. If you have these symptoms, avoid driving or operating heavy machinery. Consult your doctor if not sure.'),
(32849, 'Lonlee 5mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee 5mg Tablet', 'How long does it take for Lonlee 5mg Tablet to work?', 'Lonlee 5mg Tablet starts working and showing improvement within an hour of taking it. However, it may take a little longer to notice the full benefits.'),
(32850, 'Lonlee 5mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee 5mg Tablet', 'Can I take Lonlee 5mg Tablet and Fexofenadine together?', 'Sometimes the doctor may advise you to take two different antihistamines together if you are being treated for a severe itchy rash. If you are taking Lonlee 5mg Tablet during the daytime, your doctor may prescribe another antihistamine for the night which causes sleepiness, especially if the itch makes it difficult for you to sleep.'),
(32851, 'Lonlee 5mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee 5mg Tablet', 'Is it safe to take Lonlee 5mg Tablet for a long time?', 'Lonlee 5mg Tablet is safe if used as prescribed by your doctor. Moreover, it is unlikely to harm you if you take it for a long time. But, it is best to take Lonlee 5mg Tablet for only as long as you need it.'),
(32852, 'Lonlee 5mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee 5mg Tablet', 'For how long should I continue Lonlee 5mg Tablet?', 'The duration for which the medicine needs to be taken depends on the problem being treated. For instance, if you are taking it for an insect bite, you may need it for a day or two. While, if you are taking it to prevent symptoms of chronic allergic rhinitis (inflammation of nose) or chronic urticaria, you may need to take Lonlee 5mg Tablet for a longer time. Talk to your doctor if you are unsure about the duration of using Lonlee 5mg Tablet'),
(32853, 'Lonlee MT 5mg/10mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT 5mg/10mg Tablet', 'What is Lonlee MT 5mg/10mg Tablet?', 'Lonlee MT 5mg/10mg Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(32854, 'Lonlee MT 5mg/10mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT 5mg/10mg Tablet', 'Can the use of Lonlee MT 5mg/10mg Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lonlee MT 5mg/10mg Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(32855, 'Lonlee MT 5mg/10mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT 5mg/10mg Tablet', 'Can Lonlee MT 5mg/10mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lonlee MT 5mg/10mg Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(32856, 'Lonlee MT 5mg/10mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT 5mg/10mg Tablet', 'Can the use of Lonlee MT 5mg/10mg Tablet cause dry mouth?', 'Yes, the use of Lonlee MT 5mg/10mg Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(32857, 'Lonlee MT 5mg/10mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT 5mg/10mg Tablet', 'Can I drink alcohol while taking Lonlee MT 5mg/10mg Tablet?', 'No, do not take alcohol while taking Lonlee MT 5mg/10mg Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lonlee MT 5mg/10mg Tablet.'),
(32858, 'Lonlee MT 5mg/10mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT 5mg/10mg Tablet', 'Will Lonlee MT 5mg/10mg Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lonlee MT 5mg/10mg Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(32859, 'Lonlee MT 5mg/10mg Tablet', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT 5mg/10mg Tablet', 'What are the instructions for storage and disposal of Lonlee MT 5mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(32860, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'My child has a persistent cough along with allergic symptoms. Can I give cough and allergy medicine together?', 'No. Do not mix cough and allergy medicines because they usually both contain similar ingredients. This may result in double dosing of the active ingredients, thereby causing serious side effects.'),
(32861, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'Can I decrease the dose of Lonlee MT Syrup by myself if my child starts to feel better?', 'No, adhere to the dose as prescribed by your child’s doctor. Do not increase or decrease the dose by yourself as it can impact your child’s health. While increasing the dose may cause unwanted effects like sedation and depression, decreasing the dose or stopping it suddenly can result in rebound reversal of all symptoms.'),
(32862, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'How should Lonlee MT Syrup be stored?', 'Lonlee MT Syrup should be stored at room temperature in a dry place, away from direct heat and light. Also, keep all medicines out of the reach and sight of children to avoid any accidental intake.'),
(32863, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'Can Lonlee MT Syrup make my child sleepy?', 'Lonlee MT Syrup causes mild drowsiness which can make your child sleepy. However, never give this medicine to your child to induce sleep. Forced sleep could mask any underlying sleep disorder like insomnia.'),
(32864, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'My child is an athlete and has to participate in a sports event in the next two days. Can I start the course of Lonlee MT Syrup?', 'No, don’t start Lonlee MT Syrup without speaking to your child’s doctor. Moreover, Lonlee MT Syrup can hamper your child’s performance as it may cause mild sedation, dizziness, and sleepiness. So, it’s best to reach out to the doctor first.'),
(32865, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'Can I stop the medicine by myself?', 'No, all symptoms may reappear on sudden withdrawal of Lonlee MT Syrup usually if taken for a long-term. It is advised to stop this medicine gradually under the guidance of your child’s doctor.'),
(32866, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'My child is suffering from a mood disorder. Is it safe to give Lonlee MT Syrup to my child?', 'Some studies show that Lonlee MT Syrup can cause mood disorders, hallucinations, depression, anxiety, suicidal thoughts, shakiness, and trouble controlling body movements. Therefore, consult your child’s doctor before giving any medicine to your child.'),
(32867, 'Lonlee MT Syrup', 'Lucichem Pharma Pvt. Ltd', 'Lonlee MT Syrup', 'Can I use Lonlee MT Syrup for treating acute asthma attacks in my child?', 'Lonlee MT Syrup should only be used to prevent asthma attacks. It should not be used to stop an attack that has already started. Use your child’s reliever medicine to help with an attack that has already started.'),
(32868, 'Lonna 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 0.5mg Tablet', 'Is Lonna 0.5mg Tablet a sleeping pill?', 'Lonna 0.5mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32869, 'Lonna 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 0.5mg Tablet', 'Does Lonna 0.5mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonna 0.5mg Tablet?', 'Yes, Lonna 0.5mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonna 0.5mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32870, 'Lonna 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 0.5mg Tablet', 'For how long should I take Lonna 0.5mg Tablet?', 'The duration of treatment with Lonna 0.5mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32871, 'Lonna 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 0.5mg Tablet', 'Is it safe to take Lonna 0.5mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonna 0.5mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonna 0.5mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32872, 'Lonna 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 0.5mg Tablet', 'Is Lonna 0.5mg Tablet addictive?', 'People taking Lonna 0.5mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonna 0.5mg Tablet. Therefore, Lonna 0.5mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32873, 'Lonna 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 0.5mg Tablet', 'Can I stop taking Lonna 0.5mg Tablet if I start feeling better?', 'No, do not stop taking Lonna 0.5mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32874, 'Lonna 0.5mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 0.5mg Tablet', 'Are there any foods we need to avoid while taking Lonna 0.5mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonna 0.5mg Tablet. This is because caffeine stimulates your brain and Lonna 0.5mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonna 0.5mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonna 0.5mg Tablet.'),
(32875, 'Lonna 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 1mg Tablet', 'Is Lonna 1mg Tablet a sleeping pill?', 'Lonna 1mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32876, 'Lonna 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 1mg Tablet', 'Does Lonna 1mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonna 1mg Tablet?', 'Yes, Lonna 1mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonna 1mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32877, 'Lonna 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 1mg Tablet', 'For how long should I take Lonna 1mg Tablet?', 'The duration of treatment with Lonna 1mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32878, 'Lonna 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 1mg Tablet', 'Is it safe to take Lonna 1mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonna 1mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonna 1mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32879, 'Lonna 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 1mg Tablet', 'Is Lonna 1mg Tablet addictive?', 'People taking Lonna 1mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonna 1mg Tablet. Therefore, Lonna 1mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32880, 'Lonna 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 1mg Tablet', 'Can I stop taking Lonna 1mg Tablet if I start feeling better?', 'No, do not stop taking Lonna 1mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32881, 'Lonna 1mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 1mg Tablet', 'Are there any foods we need to avoid while taking Lonna 1mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonna 1mg Tablet. This is because caffeine stimulates your brain and Lonna 1mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonna 1mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonna 1mg Tablet.'),
(32882, 'Lonna 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 2mg Tablet', 'Is Lonna 2mg Tablet a sleeping pill?', 'Lonna 2mg Tablet belongs to a class of medicines called benzodiazepines and is used to treat anxiety, stop seizures (fits) or relax tense muscles. This can also help relieve difficulty sleeping (insomnia), and is usually prescribed for a short period of time, if used to treat sleeping problems. You should take it in the dose and duration advised by the doctor.'),
(32883, 'Lonna 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 2mg Tablet', 'Does Lonna 2mg Tablet cause sleepiness? If yes, then should I stop driving while taking Lonna 2mg Tablet?', 'Yes, Lonna 2mg Tablet causes drowsiness very commonly. It also causes forgetfulness and affects muscular function which may adversely affect your ability to drive. Sometimes, drowsiness persists even on the following day. So, in case Lonna 2mg Tablet makes you sleepy and affects your alertness, you should avoid driving.'),
(32884, 'Lonna 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 2mg Tablet', 'For how long should I take Lonna 2mg Tablet?', 'The duration of treatment with Lonna 2mg Tablet is mainly as short as possible. Your doctor will evaluate you after 4 weeks of treatment in order to assess the need for continuation of treatment, especially if you do not have any symptoms. Before taking you off this medicine, your doctor may gradually decrease your dose to prevent any withdrawal side effects. Follow your doctor’s instructions carefully to get the most benefit.'),
(32885, 'Lonna 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 2mg Tablet', 'Is it safe to take Lonna 2mg Tablet and alcohol together?', 'No, it is not at all recommended to take alcohol with Lonna 2mg Tablet since it can cause breathing problems, sleepiness and heart problems. Taking Lonna 2mg Tablet with alcohol may make you sleepy and your breathing may become so shallow that you may not wake up. This may even lead to death.'),
(32886, 'Lonna 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 2mg Tablet', 'Is Lonna 2mg Tablet addictive?', 'People taking Lonna 2mg Tablet in high doses or for a long term may become addicted to it. Also, people with a history of alcoholism and drug abuse are more likely to become addicted to Lonna 2mg Tablet. Therefore, Lonna 2mg Tablet should be taken for the shortest possible time and in the lowest effective dose.'),
(32887, 'Lonna 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 2mg Tablet', 'Can I stop taking Lonna 2mg Tablet if I start feeling better?', 'No, do not stop taking Lonna 2mg Tablet suddenly as you may experience withdrawal effects like depression, nervousness, difficulty in sleeping, irritability, sweating, upset stomach or diarrhea. Stopping it suddenly may even bring back the symptoms and make them harder to treat. You may also experience mood changes, anxiety, restlessness and changes in sleep patterns. These effects may occur even after taking low doses for a short period of time.'),
(32888, 'Lonna 2mg Tablet', 'Triton Healthcare Pvt Ltd', 'Lonna 2mg Tablet', 'Are there any foods we need to avoid while taking Lonna 2mg Tablet?', 'Yes, you should avoid taking foods containing caffeine such as tea, coffee, chocolates etc., while taking Lonna 2mg Tablet. This is because caffeine stimulates your brain and Lonna 2mg Tablet calms the brain. So, taking too much caffeine can affect the calming ability of this medicine and worsen your condition. Also, you should avoid taking alcohol while on treatment with Lonna 2mg Tablet. Alcohol can cause excessive sleepiness and make you more drowsy and inattentive. Talk to your doctor if you have any other doubts regarding your diet while taking Lonna 2mg Tablet.'),
(32889, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'How many hours does Lonol 100mg Tablet take to reduce high blood pressure?', 'Usually, Lonol 100mg Tablet starts working within 3 hours, but it can take up to 2 weeks to reach its full effect. You may not feel any difference in blood pressure after taking the medicine, but this does not mean that the medicine is not working. It is important to keep taking your medicine in the prescribed dose and duration to get the maximum benefit of Lonol 100mg Tablet.'),
(32890, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'Should I take Lonol 100mg Tablet in the morning or at night?', 'Lonol 100mg Tablet can be taken anytime in the morning or evening, usually prescribed once or twice daily. However, your very first dose of Lonol 100mg Tablet may make you feel dizzy, so it is better to take your first dose at bedtime. After that, if you do not feel dizzy, you may take it any time of the day. Follow the advice of your doctor. It is advised to take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(32891, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'What if I forget to take a dose of Lonol 100mg Tablet?', 'If you have missed a dose of Lonol 100mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32892, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'What if I take more than the prescribed dose of Lonol 100mg Tablet?', 'If you take more than the prescribed dose, your heart rate may slow down and you may find it difficult to breathe. It can also cause dizziness and trembling. If you experience any of such side effects, seek immediate medical assistance. Avoid driving yourself to avoid any mishap. Get someone else to drive you or call for an ambulance. Take the Lonol 100mg Tablet packet or leaflet inside it, plus any remaining medicine, with you.'),
(32893, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'What are the most common side effects of Lonol 100mg Tablet?', 'The most common side effects of Lonol 100mg Tablet include cold extremities (feeling extreme cold), fatigue, slow heart rate, nausea, diarrhea and dizziness. However, these are usually mild and short-lived and not everyone will experience these side effects. But, if these do not resolve and bother you, consult your doctor to know about ways of coping up with them. Your doctor may also suggest ways of preventing them in future.'),
(32894, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'Can Lonol 100mg Tablet cause dizziness? How do I prevent it?', 'Yes, Lonol 100mg Tablet can cause dizziness as a side effect. If this happens to you, you should sit or lie down until the symptoms pass. However, this is temporary and usually goes away as the treatment continues. It would be best to avoid alcohol while being on treatment, as it may worsen the dizziness.'),
(32895, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'What should I tell my doctor before taking Lonol 100mg Tablet?', 'Lonol 100mg Tablet is not suitable for everyone. Therefore, it is advised to inform your doctor if you are allergic to Lonol 100mg Tablet or any of its ingredients before starting treatment. You must tell the doctor if you have low blood pressure or a slow heart rate, serious blood circulation problems in your limbs (such as Raynaud\'s phenomenon), which may make your fingers and toes tingle or turn pale or blue. In addition to that, inform your doctor if you are suffering or have suffered from metabolic acidosis (when there\'s too much acid in your blood), lung disease or asthma. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you\'re trying to get pregnant, are already pregnant or breastfeeding to prevent any harmful effects on the baby.'),
(32896, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'Is Lonol 100mg Tablet effective?', 'Lonol 100mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lonol 100mg Tablet too early, the symptoms may return or worsen.'),
(32897, 'Lonol 100mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 100mg Tablet', 'What other lifestyle changes should I make while taking Lonol 100mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lonol 100mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lonol 100mg Tablet and to keep yourself healthy.'),
(32898, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'How many hours does Lonol 25mg Tablet take to reduce high blood pressure?', 'Usually, Lonol 25mg Tablet starts working within 3 hours, but it can take up to 2 weeks to reach its full effect. You may not feel any difference in blood pressure after taking the medicine, but this does not mean that the medicine is not working. It is important to keep taking your medicine in the prescribed dose and duration to get the maximum benefit of Lonol 25mg Tablet.'),
(32899, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'Should I take Lonol 25mg Tablet in the morning or at night?', 'Lonol 25mg Tablet can be taken anytime in the morning or evening, usually prescribed once or twice daily. However, your very first dose of Lonol 25mg Tablet may make you feel dizzy, so it is better to take your first dose at bedtime. After that, if you do not feel dizzy, you may take it any time of the day. Follow the advice of your doctor. It is advised to take it at the same time each day so that you remember to take it and consistent levels of medicine are maintained in the body.'),
(32900, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'What if I forget to take a dose of Lonol 25mg Tablet?', 'If you have missed a dose of Lonol 25mg Tablet, take it as soon as you remember. However, if it is almost time for your next dose, skip the missed dose and take the next scheduled dose. Do not double the dose to make up for the missed one as this may increase the chances of developing side effects.'),
(32901, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'What if I take more than the prescribed dose of Lonol 25mg Tablet?', 'If you take more than the prescribed dose, your heart rate may slow down and you may find it difficult to breathe. It can also cause dizziness and trembling. If you experience any of such side effects, seek immediate medical assistance. Avoid driving yourself to avoid any mishap. Get someone else to drive you or call for an ambulance. Take the Lonol 25mg Tablet packet or leaflet inside it, plus any remaining medicine, with you.'),
(32902, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'What are the most common side effects of Lonol 25mg Tablet?', 'The most common side effects of Lonol 25mg Tablet include cold extremities (feeling extreme cold), fatigue, slow heart rate, nausea, diarrhea and dizziness. However, these are usually mild and short-lived and not everyone will experience these side effects. But, if these do not resolve and bother you, consult your doctor to know about ways of coping up with them. Your doctor may also suggest ways of preventing them in future.'),
(32903, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'Can Lonol 25mg Tablet cause dizziness? How do I prevent it?', 'Yes, Lonol 25mg Tablet can cause dizziness as a side effect. If this happens to you, you should sit or lie down until the symptoms pass. However, this is temporary and usually goes away as the treatment continues. It would be best to avoid alcohol while being on treatment, as it may worsen the dizziness.'),
(32904, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'What should I tell my doctor before taking Lonol 25mg Tablet?', 'Lonol 25mg Tablet is not suitable for everyone. Therefore, it is advised to inform your doctor if you are allergic to Lonol 25mg Tablet or any of its ingredients before starting treatment. You must tell the doctor if you have low blood pressure or a slow heart rate, serious blood circulation problems in your limbs (such as Raynaud\'s phenomenon), which may make your fingers and toes tingle or turn pale or blue. In addition to that, inform your doctor if you are suffering or have suffered from metabolic acidosis (when there\'s too much acid in your blood), lung disease or asthma. Let your doctor know about all the other medicines you are taking because they may affect, or be affected by, this medicine. Also, inform your doctor if you\'re trying to get pregnant, are already pregnant or breastfeeding to prevent any harmful effects on the baby.'),
(32905, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'Is Lonol 25mg Tablet effective?', 'Lonol 25mg Tablet is effective if used in the dose and duration advised by your doctor. Do not stop taking it even if you see improvement in your condition. If you stop using Lonol 25mg Tablet too early, the symptoms may return or worsen.'),
(32906, 'Lonol 25mg Tablet', 'Khandelwal Laboratories Pvt Ltd', 'Lonol 25mg Tablet', 'What other lifestyle changes should I make while taking Lonol 25mg Tablet?', 'Lifestyle changes play a major role in keeping you healthy if you are taking Lonol 25mg Tablet. Avoid taking excess salt in your diet and find ways to reduce or manage stress in your life. Practice yoga or meditation or take up a hobby. Ensure that you have a sound sleep every night as this also helps to reduce stress levels and helps to keep your blood pressure normal. Stop smoking and alcohol consumption as this helps in lowering your blood pressure and preventing heart problems. Exercise regularly and take a balanced diet that includes whole grains, fresh fruits, vegetables and fat-free products. Consult your doctor if you need any further guidance to get the maximum benefit of Lonol 25mg Tablet and to keep yourself healthy.'),
(32907, 'Lonopin 20mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 20mg Injection', 'How do you administer Lonopin 20mg Injection?', 'Lonopin 20mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32908, 'Lonopin 20mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 20mg Injection', 'What are the conditions where I should be cautious before taking Lonopin 20mg Injection?', 'You must give a proper history to your doctor before you start taking Lonopin 20mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32909, 'Lonopin 20mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 20mg Injection', 'How to store Lonopin 20mg Injection injections?', 'Store Lonopin 20mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32910, 'Lonopin 20mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 20mg Injection', 'Can Lonopin 20mg Injection be used in heart attack?', 'Yes, Lonopin 20mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32911, 'Lonopin 20mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 20mg Injection', 'Is it ok to inject the air bubble in Lonopin 20mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32912, 'Lonopin 40mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 40mg Injection', 'How do you administer Lonopin 40mg Injection?', 'Lonopin 40mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32913, 'Lonopin 40mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 40mg Injection', 'What are the conditions where I should be cautious before taking Lonopin 40mg Injection?', 'You must give a proper history to your doctor before you start taking Lonopin 40mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32914, 'Lonopin 40mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 40mg Injection', 'How to store Lonopin 40mg Injection injections?', 'Store Lonopin 40mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32915, 'Lonopin 40mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 40mg Injection', 'Can Lonopin 40mg Injection be used in heart attack?', 'Yes, Lonopin 40mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32916, 'Lonopin 40mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 40mg Injection', 'Is it ok to inject the air bubble in Lonopin 40mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32917, 'Lonopin 60mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 60mg Injection', 'How do you administer Lonopin 60mg Injection?', 'Lonopin 60mg Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32918, 'Lonopin 60mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 60mg Injection', 'What are the conditions where I should be cautious before taking Lonopin 60mg Injection?', 'You must give a proper history to your doctor before you start taking Lonopin 60mg Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32919, 'Lonopin 60mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 60mg Injection', 'How to store Lonopin 60mg Injection injections?', 'Store Lonopin 60mg Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32920, 'Lonopin 60mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 60mg Injection', 'Can Lonopin 60mg Injection be used in heart attack?', 'Yes, Lonopin 60mg Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32921, 'Lonopin 60mg Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin 60mg Injection', 'Is it ok to inject the air bubble in Lonopin 60mg Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32922, 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'How do you administer Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection?', 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32923, 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'What are the conditions where I should be cautious before taking Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection?', 'You must give a proper history to your doctor before you start taking Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32924, 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'How to store Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection injections?', 'Store Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32925, 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'Can Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection be used in heart attack?', 'Yes, Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32926, 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection', 'Is it ok to inject the air bubble in Lonopin Lonopin-MD (Multidose Vial) 300mg/3ml Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32927, 'Lonopin Pen', 'Bharat Serums & Vaccines Ltd', 'Lonopin Pen', 'How do you administer Lonopin Pen?', 'Lonopin Pen is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32928, 'Lonopin Pen', 'Bharat Serums & Vaccines Ltd', 'Lonopin Pen', 'What are the conditions where I should be cautious before taking Lonopin Pen?', 'You must give a proper history to your doctor before you start taking Lonopin Pen. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32929, 'Lonopin Pen', 'Bharat Serums & Vaccines Ltd', 'Lonopin Pen', 'How to store Lonopin Pen injections?', 'Store Lonopin Pen injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32930, 'Lonopin Pen', 'Bharat Serums & Vaccines Ltd', 'Lonopin Pen', 'Can Lonopin Pen be used in heart attack?', 'Yes, Lonopin Pen is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32931, 'Lonopin Pen', 'Bharat Serums & Vaccines Ltd', 'Lonopin Pen', 'Is it ok to inject the air bubble in Lonopin Pen?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32932, 'Lonopin-MD Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin-MD Injection', 'How do you administer Lonopin-MD Injection?', 'Lonopin-MD Injection is a medicine which is injected beneath the skin. Fix the dose of the medicine and pinch the skin of your stomach between your finger and thumb to make a fold. After having cleaned the area, hold the syringe like a pencil and insert the full length of the needle into the skin fold. Inject the medicine and discard the syringe as instructed by your prescribing physician. Follow the instructions given by the healthcare provider strictly. Contact your doctor in case of any doubt or any reactions associated with the medicine.'),
(32933, 'Lonopin-MD Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin-MD Injection', 'What are the conditions where I should be cautious before taking Lonopin-MD Injection?', 'You must give a proper history to your doctor before you start taking Lonopin-MD Injection. Inform your doctor if you have a heart valve fitted or have gastric ulcer, high blood pressure, diabetes, or kidney problems. You should also let your doctor know if you ever had a reaction to heparin or had a recent stroke, brain or spinal surgery. The chances of side effects and complications increase in presence of these conditions. Consult with your doctor and follow the instructions strictly.'),
(32934, 'Lonopin-MD Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin-MD Injection', 'How to store Lonopin-MD Injection injections?', 'Store Lonopin-MD Injection injections at 25°C and do not freeze them. The multiple-dose vials should not be stored for more than 28 days after the first use. Discard the injection if you notice any particulate matter or abnormal color in the solution or any damage in the syringe. Read the medicine package leaflet before using this medication and ask the pharmacist in case of any doubt.'),
(32935, 'Lonopin-MD Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin-MD Injection', 'Can Lonopin-MD Injection be used in heart attack?', 'Yes, Lonopin-MD Injection is used in the treatment of chest pain and heart attack once the standard treatment has been provided to the patient. It is given along with another blood thinner like aspirin. Being a blood-thinning agent, it prevents the blood from clotting and prevents any further episodes and complications.'),
(32936, 'Lonopin-MD Injection', 'Bharat Serums & Vaccines Ltd', 'Lonopin-MD Injection', 'Is it ok to inject the air bubble in Lonopin-MD Injection?', 'Yes, you should push the air bubbles into the site of injection. Removing the air bubbles leads to loss of the medicine thereby altering the prescribed dose.'),
(32937, 'Lontif 400mg Tablet MR', 'Strassenburg Pharmaceuticals.Ltd', 'Lontif 400mg Tablet MR', 'How quickly does Lontif 400mg Tablet MR work?', 'Lontif 400mg Tablet MR starts acting quickly and you may notice improvement in symptoms within about half an hour of taking it. However, the medicine may take a little longer about 4-8 hours to show full effect. Consult your doctor if there is no considerable improvement in your symptoms.'),
(32938, 'Lontif 400mg Tablet MR', 'Strassenburg Pharmaceuticals.Ltd', 'Lontif 400mg Tablet MR', 'What foods to avoid while taking Lontif 400mg Tablet MR?', 'While on Lontif 400mg Tablet MR you should avoid foods rich in caffeine like tea, cocoa, coffee, and chocolate. These foods can increase side effects associated with Lontif 400mg Tablet MR. In addition to that, you should avoid alcohol and tobacco while on Lontif 400mg Tablet MR. Discuss with your doctor if you are not sure or have any concerns regarding food restriction.'),
(32939, 'Lontif 400mg Tablet MR', 'Strassenburg Pharmaceuticals.Ltd', 'Lontif 400mg Tablet MR', 'How should Lontif 400mg Tablet MR be taken?', 'Take the medicine exactly as prescribed by your doctor. Usually, it is prescribed to be taken twice a day. Do not crush or chew the tablets. The capsules can be taken whole or opened and the contents mixed with soft food and swallowed without chewing.'),
(32940, 'Lonto 30mg Capsule', 'Aronex Life Sciences Pvt Ltd', 'Lonto 30mg Capsule', 'What is Lonto 30mg Capsule? What is it used for?', 'Lonto 30mg Capsule belongs to a class of medicines known as proton pump inhibitors. Lonto 30mg Capsule is used for the treatment of peptic ulcer disease (gastric and duodenal ulcers), reflux esophagitis or gastroesophageal reflux disease (GERD). It is also used to treat a disease associated with excessive acid production in the stomach known as Zollinger Ellison syndrome (ZES). It works by reducing the amount of acid made by your stomach.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(32941, 'Lonto 30mg Capsule', 'Aronex Life Sciences Pvt Ltd', 'Lonto 30mg Capsule', 'How is Lonto 30mg Capsule given through the nasogastric tube?', 'Your doctor or nurse will show you the correct way of giving Lonto 30mg Capsule through the nasogastric (NG) tube. Open the Lonto 30mg Capsule capsule and empty the granules into a syringe. Mix the contents with apple juice in the syringe and attach it to the NG tube and give directly into the stomach. Once given, flush the NG tube with more apple juice to clear the tube.'),
(32942, 'Lonto 30mg Capsule', 'Aronex Life Sciences Pvt Ltd', 'Lonto 30mg Capsule', 'Should Lonto 30mg Capsule be taken empty stomach or with food?', 'Usually, Lonto 30mg Capsule is taken once a day, first thing in the morning, on an empty stomach. If you take Lonto 30mg Capsule twice a day, take 1 dose in the morning and 1 dose in the evening. The tablets should be swallowed whole (remember not be chewed or crushed) and taken at least 1 hour before a meal with some water.'),
(32943, 'Lonto 30mg Capsule', 'Aronex Life Sciences Pvt Ltd', 'Lonto 30mg Capsule', 'While taking Lonto 30mg Capsule, which foods should be avoided?', 'You should preferably avoid foods that cause acidity and heartburn as they will only worsen your condition, for example: fried or spicy food, butter, oil, and juices, caffeinated drinks like cola or tea, drinks from citrus fruits like lemon water or orange juice and alcohol.'),
(32944, 'Lonto 30mg Capsule', 'Aronex Life Sciences Pvt Ltd', 'Lonto 30mg Capsule', 'Is Lonto 30mg Capsule used for children?', 'Yes, Lonto 30mg Capsule is used in the management of gastroesophageal reflux disease (GERD) and erosive gastritis in children. However, the safety and effectiveness of Lonto 30mg Capsule are established only in children between 1 to 17 years of age.'),
(32945, 'Lonty FX 10mg/120mg Tablet', 'Cascade India Pharmaceuticals', 'Lonty FX 10mg/120mg Tablet', 'What is Lonty FX 10mg/120mg Tablet ?', 'Lonty FX 10mg/120mg Tablet is a combination of two medicines: Montelukast and Fexofenadine. This medicine is used to treat allergy symptoms like runny nose, sneeze and cough. It works by lowering the chemicals in the body that cause allergy symptoms.'),
(32946, 'Lonty FX 10mg/120mg Tablet', 'Cascade India Pharmaceuticals', 'Lonty FX 10mg/120mg Tablet', 'Can Lonty FX 10mg/120mg Tablet be stopped when allergy symptoms are relieved?', 'No, Lonty FX 10mg/120mg Tablet should be continued as advised by the doctor. If any problems are experienced due to Lonty FX 10mg/120mg Tablet, consult the doctor for re-evaluation.'),
(32947, 'Lonty FX 10mg/120mg Tablet', 'Cascade India Pharmaceuticals', 'Lonty FX 10mg/120mg Tablet', 'Can the use of Lonty FX 10mg/120mg Tablet cause dizziness?', 'Yes, the use of Lonty FX 10mg/120mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(32948, 'Lonty FX 10mg/120mg Tablet', 'Cascade India Pharmaceuticals', 'Lonty FX 10mg/120mg Tablet', 'What should be avoided in food while taking Lonty FX 10mg/120mg Tablet?', 'Do not take it with any fruit juices (such as apple, orange, or grapefruit) as they might make the drug less effective. Avoid drinking alcohol while taking Lonty FX 10mg/120mg Tablet as it might increase the severity of drowsiness or sleepiness caused by Lonty FX 10mg/120mg Tablet.'),
(32949, 'Lonty FX 10mg/120mg Tablet', 'Cascade India Pharmaceuticals', 'Lonty FX 10mg/120mg Tablet', 'Will Lonty FX 10mg/120mg Tablet be more effective if taken in higher doses?', 'No, taking more of this medicine will not make it more effective, rather it can lead to increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(32950, 'Lonty FX 10mg/120mg Tablet', 'Cascade India Pharmaceuticals', 'Lonty FX 10mg/120mg Tablet', 'What is the recommended storage condition for Lonty FX 10mg/120mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32951, 'Lonty LC Tablet', 'Cascade India Pharmaceuticals', 'Lonty LC Tablet', 'What is Lonty LC Tablet?', 'Lonty LC Tablet is a combination of two medicines: Montelukast and Levocetirizine. Levocetirizine is an antiallergic which helps to relieve allergy symptoms like runny nose, sneezing, watery eyes and cough. It works by lowering chemicals in the body that cause allergy symptoms. Montelukast works by blocking another chemical messenger (leukotriene) and reduces inflammation (swelling) in the airways and nose. This further helps to relieve the symptoms.'),
(32952, 'Lonty LC Tablet', 'Cascade India Pharmaceuticals', 'Lonty LC Tablet', 'Can the use of Lonty LC Tablet cause drowsiness or sleepiness?', 'Yes, the most common side effect of Lonty LC Tablet is sleepiness. Do not drive, operate heavy machinery or engage in other activities that need your full attention unless your doctor says that you may do so. Do not drink alcohol or take other central nervous system depressants, such as cough and cold medicines. Also avoid taking certain pain relief medicines and medicines that help you sleep as they can lead to severe drowsiness or can worsen it, causing falls or accidents.'),
(32953, 'Lonty LC Tablet', 'Cascade India Pharmaceuticals', 'Lonty LC Tablet', 'Can Lonty LC Tablet be stopped when allergy symptoms are relieved?', 'No, Lonty LC Tablet should be continued as advised by the doctor. If you experience any side effects of this medicine or the symptoms of allergy are worsened, consult the doctor for re-evaluation.'),
(32954, 'Lonty LC Tablet', 'Cascade India Pharmaceuticals', 'Lonty LC Tablet', 'Can the use of Lonty LC Tablet cause dry mouth?', 'Yes, the use of Lonty LC Tablet can cause dry mouth. If you experience dry mouth, drink plenty of water. Take regular sips during the day and keep some water by your bed at night. You may use lip balm if your lips are also dry.'),
(32955, 'Lonty LC Tablet', 'Cascade India Pharmaceuticals', 'Lonty LC Tablet', 'Can I drink alcohol while taking Lonty LC Tablet?', 'No, do not take alcohol while taking Lonty LC Tablet. Drinking alcohol will increase the severity of drowsiness/sleepiness caused by Lonty LC Tablet.'),
(32956, 'Lonty LC Tablet', 'Cascade India Pharmaceuticals', 'Lonty LC Tablet', 'Will Lonty LC Tablet be more effective if taken in higher doses?', 'No, taking a higher dose of this medicine than recommended will not make it more effective. Consuming higher than the recommended dose of Lonty LC Tablet can cause increased side effects. If the symptoms are getting severe, please consult the doctor for re-evaluation.'),
(32957, 'Lonty LC Tablet', 'Cascade India Pharmaceuticals', 'Lonty LC Tablet', 'What are the instructions for storage and disposal of Lonty LC Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children, and other people.'),
(32958, 'Loo Chek Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Loo Chek Suspension', 'Does Loo Chek Suspension reduce stool output?', 'Yes, it helps to reduce the stool output.'),
(32959, 'Loo Chek Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Loo Chek Suspension', 'How long does Loo Chek Suspension take to work?', 'Treatment with Loo Chek Suspension should be continued until two normal stools are passed. However, if the diarrhea does not get better after seven days of treatment you must talk to the doctor. Make sure neither to extend nor to stop the treatment by yourself without consulting your child’s doctor. Doing so may have side effects or may lead to a recurrence of symptoms.'),
(32960, 'Loo Chek Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Loo Chek Suspension', 'My child is one year old and is suffering from a neurological disorder. Is it safe to give Loo Chek Suspension?', 'Usually, Loo Chek Suspension does not enter into the central nervous system and lacks the potential to cause serious side effects such as neurotoxicity. But, since children below the age of 2 have underdeveloped membranes, there could be a chance of the medicine entering the brain and causing side effects. So, consult your child’s doctor before giving Loo Chek Suspension in such a condition.'),
(32961, 'Loo Chek Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Loo Chek Suspension', 'My child has milk intolerance. Can I give Loo Chek Suspension to my child?', 'No, children having intolerance to dairy products and milk are advised not to take this medicine as it contains lactose.'),
(32962, 'Loo Chek Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Loo Chek Suspension', 'My child is passing watery stools mixed with blood and is also suffering from fever. Is Loo Chek Suspension the right choice of treatment?', 'No, do not give Loo Chek Suspension if your child is passing stools mixed with blood or pus along with having a high body temperature (fever). These symptoms are indicative of some underlying pathology (infection) and may require some other line of treatment.'),
(32963, 'Loo Chek Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Loo Chek Suspension', 'My child is suffering from long-term (chronic) diarrhea. Can I give Loo Chek Suspension?', 'The use of Loo Chek Suspension in chronic diarrhea has not been sufficiently studied. Therefore, it is best to consult your child’s doctor before giving this medicine to your child for long-term diarrhea.'),
(32964, 'Loo Chek Suspension', 'Seagull Pharmaceutical Pvt Ltd', 'Loo Chek Suspension', 'What all other medicines should my child avoid while taking Loo Chek Suspension?', 'Although Loo Chek Suspension is not known to cause any interaction with other medicines, you should inform the doctor if your child is taking any medicine. It is best to narrate the complete medical history of your child as this will help the doctor understand your child’s needs better.'),
(32965, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'What is Loobid 200 mg/500 mg Tablet?', 'Loobid 200 mg/500 mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(32966, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'Is it safe to use Loobid 200 mg/500 mg Tablet?', 'Loobid 200 mg/500 mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(32967, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'Are there any specific contraindications associated with the use of Loobid 200 mg/500 mg Tablet?', 'The use of Loobid 200 mg/500 mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(32968, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loobid 200 mg/500 mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32969, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'What if I don\'t get better after using Loobid 200 mg/500 mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(32970, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'Can I stop taking Loobid 200 mg/500 mg Tablet when I feel better?', 'No, do not stop taking Loobid 200 mg/500 mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(32971, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'What if I miss my dose?', 'Take Loobid 200 mg/500 mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(32972, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'Can I take alcohol while on Loobid 200 mg/500 mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Loobid 200 mg/500 mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(32973, 'Loobid 200 mg/500 mg Tablet', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid 200 mg/500 mg Tablet', 'What are the instructions for the storage and disposal of Loobid 200 mg/500 mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32974, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'What is Loobid Infusion?', 'Loobid Infusion is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(32975, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'Is it safe to use Loobid Infusion?', 'Loobid Infusion is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(32976, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'Are there any specific contraindications associated with the use of Loobid Infusion?', 'The use of Loobid Infusion is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(32977, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loobid Infusion can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32978, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'What if I don\'t get better after using Loobid Infusion?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(32979, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'Can I stop taking Loobid Infusion when I feel better?', 'No, do not stop taking Loobid Infusion and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(32980, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'What if I miss my dose?', 'Take Loobid Infusion as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(32981, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'Can I take alcohol while on Loobid Infusion?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Loobid Infusion. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(32982, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'What are the instructions for the storage and disposal of Loobid Infusion?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(32983, 'Loobid Infusion', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Infusion', 'What is Loobid Infusion?', 'Loobid Infusion is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(32984, 'Loobid Suspension', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Suspension', 'My child is having a common cold. Is it safe to give Loobid Suspension along with cough & cold medicines?', 'Loobid Suspension can interfere with cough and cold medicines. One of the active ingredients of Loobid Suspension can interact with alcohol-containing medicines like cough syrups and can cause adverse effects. Don’t give your child any medicines along with Loobid Suspension without consulting the doctor.'),
(32985, 'Loobid Suspension', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Suspension', 'What if I give excess Loobid Suspension by mistake?', 'Though an extra dose of Loobid Suspension will not impact your child’s health, never give an overdose of any medicine. If you think you have given too much to your child, immediately speak to a doctor. Exceeding the recommended dose may cause unwanted side effects such as seizures, tremors, severe headache, sudden weakness, blood cell abnormalities, and rapid and irregular heart beat. Rush to your child’s doctor on an immediate basis if you notice any of these symptoms.'),
(32986, 'Loobid Suspension', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Suspension', 'What should I do if my child shows no improvement even after taking Loobid Suspension for the prescribed duration?', 'Not seeing any improvement could signify that the medicine is not able to act against the infection-causing bacteria. In such a case, visit your child’s doctor who may prescribe an antibiotic having a farther reach of impact than Loobid Suspension. Since not all medicines are given by oral route, your doctor may suggest giving an intravenous injection to your child in the hospital.'),
(32987, 'Loobid Suspension', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Suspension', 'Can other medicines be given at the same time as Loobid Suspension?', 'Loobid Suspension can sometimes interact with other medicines or substances. Tell your doctor about any other medicines your child is taking before starting Loobid Suspension. Also, check with your child’s doctor before giving any medicine to your child.'),
(32988, 'Loobid Suspension', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Suspension', 'Can I get my child vaccinated while on treatment with Loobid Suspension?', 'Antibiotics usually do not interfere with the ingredients in vaccines or cause a bad reaction in a child who has just been vaccinated. However, children taking antibiotics should not get vaccinated until they recover from the illness. As soon as your child feels better, the vaccine can be given.'),
(32989, 'Loobid Suspension', 'Cachet Pharmaceuticals Pvt Ltd', 'Loobid Suspension', 'What should I tell the doctor before giving Loobid Suspension to my child?', 'Inform the doctor if your child is suffering or has suffered from a heart disease, genetic disorders involving blood vessels, seizures, psychiatric disorders, diabetes, photoallergy (allergy from sunlight), neuromuscular disorders, or rheumatoid arthritis. This is because there is a possibility that Loobid Suspension may aggravate these conditions and result in complications.'),
(32990, 'Looca 200mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca 200mg Tablet', 'Can the use of Looca 200mg Tablet cause diarrhea?', 'Yes, the use of Looca 200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(32991, 'Looca 200mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca 200mg Tablet', 'Can I stop taking Looca 200mg Tablet when I feel better?', 'No, do not stop taking Looca 200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(32992, 'Looca 200mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca 200mg Tablet', 'Can the use of Looca 200mg Tablet increase the risk of muscle damage?', 'Yes, use of Looca 200mg Tablet is known to increase the risk of muscle damage, commonly in the ankle (achilies tendon). Muscle damage can happen in people of all ages who take Looca 200mg Tablet. Inform your doctor if you feel any kind of muscle pain while using this medicine.'),
(32993, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'What is Looca OZ 200mg/500mg Tablet?', 'Looca OZ 200mg/500mg Tablet is a combination of two medicines: Ofloxacin and Ornidazole. They work by killing the harmful micro-organisms that can cause infection. Together they help to treat your infection effectively.'),
(32994, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'Is it safe to use Looca OZ 200mg/500mg Tablet?', 'Looca OZ 200mg/500mg Tablet is safe for most of the patients. In some patients, it may cause common side effects like nausea, vomiting, stomach pain, dizziness, headache, dryness in the mouth, heartburn and other uncommon or rare side effects. Consult your doctor if you experience any persistent problem while taking this medication.'),
(32995, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'Are there any specific contraindications associated with the use of Looca OZ 200mg/500mg Tablet?', 'The use of Looca OZ 200mg/500mg Tablet is considered to be harmful for patients with known allergy to ofloxacin or to ornidazole or any medicine which belongs to the quinolone or nitroimidazole group of antimicrobial agents.'),
(32996, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Looca OZ 200mg/500mg Tablet can increase the risks of side effects. If you are experiencing increased severity of your symptoms which are not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(32997, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'What if I don\'t get better after using Looca OZ 200mg/500mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(32998, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'Can I stop taking Looca OZ 200mg/500mg Tablet when I feel better?', 'No, do not stop taking Looca OZ 200mg/500mg Tablet and complete the full course of treatment even if you are feeling better. Your symptoms may improve before the infection is completely cured.'),
(32999, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'What if I miss my dose?', 'Take Looca OZ 200mg/500mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(33000, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'Can I take alcohol while on Looca OZ 200mg/500mg Tablet?', 'You should avoid alcohol since it may add to the dizziness and sleepiness caused by Looca OZ 200mg/500mg Tablet. Consult with your doctor, if you are not sure about the effects of the medicine.'),
(33001, 'Looca OZ 200mg/500mg Tablet', 'Eviza Biotech Pvt Ltd', 'Looca OZ 200mg/500mg Tablet', 'What are the instructions for the storage and disposal of Looca OZ 200mg/500mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33002, 'Lookbrite Cream', 'Torrent Pharmaceuticals Ltd', 'Lookbrite Cream', 'What are the instructions for the storage and disposal of Lookbrite  Cream?', 'Keep this medicine in the packet or the container it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33003, 'Lookbrite Cream', 'Torrent Pharmaceuticals Ltd', 'Lookbrite Cream', 'How to use Lookbrite  Cream?', 'Follow the directions given by the doctor. Apply the medicine thinly and in sufficient quantity to cover the affected areas. Lookbrite  Cream is usually applied two or three times a day to the affected areas of skin.'),
(33004, 'Lookbrite Cream', 'Torrent Pharmaceuticals Ltd', 'Lookbrite Cream', 'Will Lookbrite  Cream be more effective if taken more than prescribed?', 'No, Lookbrite  Cream will not be more effective if overused. Overusing the medicine can result in too much medicine being absorbed into the body. This may lead to thinning or weakening of the skin and other serious side effects. If you are experiencing increased severity of your symptoms, please consult your doctor for re-evaluation.'),
(33005, 'Lookcef AZ LB Tablet 200mg/250mg', 'Genostic Pharma Private Limited', 'Lookcef AZ LB Tablet 200mg/250mg', 'Can I stop taking Lookcef AZ LB Tablet 200mg/250mg when I feel better?', 'No, do not stop taking Lookcef AZ LB Tablet 200mg/250mg and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(33006, 'Lookcef AZ LB Tablet 200mg/250mg', 'Genostic Pharma Private Limited', 'Lookcef AZ LB Tablet 200mg/250mg', 'What if I miss my dose?', 'Take Lookcef AZ LB Tablet 200mg/250mg as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(33007, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'How to take Lookcef CV 200mg/125mg Tablet?', 'Take this medication by mouth, with or without food as directed by your doctor, usually once a day. If you are consuming chewable tablets, chew thoroughly and then swallow. Complete the full course of this medicine, even if symptoms disappear after a few days.'),
(33008, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'Is the use of Lookcef CV 200mg/125mg Tablet contraindicated in patients with impaired renal function?', 'Lookcef CV 200mg/125mg Tablet should be used with particular care in patients with severely impaired renal function. Dose modification is advised for patients with moderate or severe renal impairment.'),
(33009, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'What are the precautions that need to be taken while taking Lookcef CV 200mg/125mg Tablet?', 'The dose of Lookcef CV 200mg/125mg Tablet should be adjusted in patients with impairment of kidneys and for those who have gastrointestinal disease or colitis.'),
(33010, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'What are the serious side effects associated with the use of Lookcef CV 200mg/125mg Tablet?', 'The use of Lookcef CV 200mg/125mg Tablet can also lead to serious side effects like severe stomach/abdominal pain, persistent nausea/vomiting, unusual tiredness, new signs of infection (e.g., persistent sore throat, fever), yellowing of eyes/skin, dark urine, easy bruising/bleeding, signs of kidney problems (such as change in the amount of urine) and mental/mood changes (such as confusion).'),
(33011, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'What all should I tell my doctor before starting the course of this medicine?', 'Please inform your doctor if you are pregnant or trying for a baby or breastfeeding before you start taking this medicine. Let your doctor know if you are using any other medicine.'),
(33012, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'Can the use of Lookcef CV 200mg/125mg Tablet cause diarrhea?', 'Yes, the use of Lookcef CV 200mg/125mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(33013, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'How long does Lookcef CV 200mg/125mg Tablet takes to work?', 'Usually, Lookcef CV 200mg/125mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(33014, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'What if I don\'t get better after using Lookcef CV 200mg/125mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(33015, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'Can I stop taking Lookcef CV 200mg/125mg Tablet when I feel better?', 'No, do not stop taking Lookcef CV 200mg/125mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(33016, 'Lookcef CV 200mg/125mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef CV 200mg/125mg Tablet', 'What are the instructions for storage and disposal of Lookcef CV 200mg/125mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33017, 'Lookcef LB 100mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 100mg Tablet DT', 'What if I miss my dose?', 'Take Lookcef LB 100mg Tablet DT as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(33018, 'Lookcef LB 100mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 100mg Tablet DT', 'How long does Lookcef LB 100mg Tablet DT take to work?', 'Usually, Lookcef LB 100mg Tablet DT starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(33019, 'Lookcef LB 100mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 100mg Tablet DT', 'What if I don\'t get better after using Lookcef LB 100mg Tablet DT?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(33020, 'Lookcef LB 100mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 100mg Tablet DT', 'Can I stop taking Lookcef LB 100mg Tablet DT when I feel better?', 'No, do not stop taking Lookcef LB 100mg Tablet DT and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(33021, 'Lookcef LB 200mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 200mg Tablet DT', 'What if I miss my dose?', 'Take Lookcef LB 200mg Tablet DT as soon you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(33022, 'Lookcef LB 200mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 200mg Tablet DT', 'How long does Lookcef LB 200mg Tablet DT take to work?', 'Usually, Lookcef LB 200mg Tablet DT starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(33023, 'Lookcef LB 200mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 200mg Tablet DT', 'What if I don\'t get better after using Lookcef LB 200mg Tablet DT?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(33024, 'Lookcef LB 200mg Tablet DT', 'Genostic Pharma Private Limited', 'Lookcef LB 200mg Tablet DT', 'Can I stop taking Lookcef LB 200mg Tablet DT when I feel better?', 'No, do not stop taking Lookcef LB 200mg Tablet DT and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(33025, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'Can I stop taking Lookcef O 200mg/200mg Tablet when I feel better?', 'No, do not stop taking Lookcef O 200mg/200mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(33026, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'What if I miss my dose?', 'Take Lookcef O 200mg/200mg Tablet as soon as you remember it. However, do not take it if it\'s almost time for your next dose. Also, do not take an extra dose to make up for your missed dose.'),
(33027, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'Can the use of Lookcef O 200mg/200mg Tablet cause diarrhea?', 'Yes, the use of Lookcef O 200mg/200mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(33028, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'What if I don\'t get better after using Lookcef O 200mg/200mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(33029, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'Does the use of Lookcef O 200mg/200mg Tablet help treat Urinary tract infections (UTIs)?', 'The use of Lookcef O 200mg/200mg Tablet is advised in the treatment of Urinary tract infections (UTIs).'),
(33030, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'What are the treatment options of UTI and how to prevent it?', 'Take your antibiotics exactly as prescribed and never skip doses. It will help cure the infection faster. Change personal hygiene habits and urinate before and after sexual activity. Drink plenty of water to help clear the bacteria from your body and always try to fully empty your bladder when you pee.'),
(33031, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'Can I drive while I am taking Lookcef O 200mg/200mg Tablet?', 'No, taking Lookcef O 200mg/200mg Tablet may make you feel sleepy, dizzy or could affect your eyesight. So, do not drive or use machines until you know how this medicine affects you.'),
(33032, 'Lookcef O 200mg/200mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef O 200mg/200mg Tablet', 'What are the instructions for storage and disposal of Lookcef O 200mg/200mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33033, 'Lookcef SB 200mg/150mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef SB 200mg/150mg Tablet', 'Can the use of Lookcef SB 200mg/150mg Tablet cause diarrhea?', 'Yes, the use of Lookcef SB 200mg/150mg Tablet can cause diarrhea. It is an antibiotic which kills the harmful bacteria. However, it also affects the helpful bacteria in your stomach or intestine and causes diarrhea. If you are experiencing severe diarrhea, talk to your doctor about it.'),
(33034, 'Lookcef SB 200mg/150mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef SB 200mg/150mg Tablet', 'How long does Lookcef SB 200mg/150mg Tablet takes to work?', 'Usually, Lookcef SB 200mg/150mg Tablet starts working soon after taking it. However, it may take some days to kill all the harmful bacteria and make you feel better.'),
(33035, 'Lookcef SB 200mg/150mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef SB 200mg/150mg Tablet', 'What if I don\'t get better after using Lookcef SB 200mg/150mg Tablet?', 'Inform your doctor if you don\'t feel better after finishing the full course of treatment. Also, inform him if your symptoms are getting worse while using this medicine.'),
(33036, 'Lookcef SB 200mg/150mg Tablet', 'Genostic Pharma Private Limited', 'Lookcef SB 200mg/150mg Tablet', 'Can I stop taking Lookcef SB 200mg/150mg Tablet when I feel better?', 'No, do not stop taking Lookcef SB 200mg/150mg Tablet and complete the full course of treatment even if you feel better. Your symptoms may improve before the infection is completely cured.'),
(33037, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Is it safe to use Loolax 5mg Tablet?', 'Loolax 5mg Tablet is safe if you use it for a prescribed duration and dose as recommended by your doctor. In case of any side effects, consult your doctor.'),
(33038, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Is Loolax 5mg Tablet a stimulant laxative?', 'Yes, Loolax 5mg Tablet belongs to a group of medicines known as stimulant laxatives which increase bowel movements. Loolax 5mg Tablet is used for recent or long-term constipation. It can also be used to clear the bowels before surgery, labor or radiological investigation.'),
(33039, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Is Loolax 5mg Tablet habit forming?', 'Loolax 5mg Tablet can be habit-forming. Long-term use can make your body depend on the laxative for regular bowel movements, damage the bowel, cause malnutrition, and problems with the amounts of water and salts in your body. Do not use this medicine for longer than directed by your doctor. If your constipation keeps returning, consult your doctor.'),
(33040, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Is Loolax 5mg Tablet effective?', 'Yes, Loolax 5mg Tablet is effective if used for an approved indication at prescribed doses for the prescribed duration as advised by your doctor.'),
(33041, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Can I take Loolax 5mg Tablet for constipation?', 'Loolax 5mg Tablet is used for the treatment of recent or long-term constipation. Loolax 5mg Tablet can also be used to clear the bowels before surgery, labor or radiological investigation. Loolax 5mg Tablet belongs to a group of medicines known as stimulant laxatives. Stimulant laxatives increase bowel movements, thus help in relieving constipation.'),
(33042, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Can I take Loolax 5mg Tablet with senna?', 'Loolax 5mg Tablet and senna both belong to a group of medicines called laxatives. However, no drug-drug interactions have been reported between the two, this does not mean that interactions cannot occur. Therefore, please consult your doctor before taking the two medicines together.'),
(33043, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Can the use of Loolax 5mg Tablet help lose weight?', 'Loolax 5mg Tablet does not cause weight loss. Please consult your doctor in case you experience weight loss while taking Loolax 5mg Tablet or if you need treatment for weight management.'),
(33044, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Does Loolax 5mg Tablet cause diarrhea?', 'Diarrhea is a common side effect of Loolax 5mg Tablet. Please consult your doctor if you experience intolerable diarrhea with Loolax 5mg Tablet.'),
(33045, 'Loolax 5mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loolax 5mg Tablet', 'Does Loolax 5mg Tablet cause cramping?', 'Abdominal cramps or pain is a common side effect of Loolax 5mg Tablet. Please consult your doctor if you experience cramps while taking Loolax 5mg Tablet.'),
(33046, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'How long does it take for Loomo 10gm Syrup to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Loomo 10gm Syrup.'),
(33047, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'What is Loomo 10gm Syrup used for?', 'Loomo 10gm Syrup is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(33048, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'Is Loomo 10gm Syrup a laxative?', 'Yes, Loomo 10gm Syrup is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.'),
(33049, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'What are the side effects of taking Loomo 10gm Syrup?', 'Loomo 10gm Syrup very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(33050, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'Is it okay to take Loomo 10gm Syrup every day?', 'You should take Loomo 10gm Syrup for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(33051, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'Who should not be given Loomo 10gm Syrup?', 'Loomo 10gm Syrup should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(33052, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'Can I take other laxatives along with Loomo 10gm Syrup?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Loomo 10gm Syrup. The risk of side effects is more with two laxatives.'),
(33053, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'What if I take more than the recommended dose of Loomo 10gm Syrup?', 'Taking more than the recommended dose of Loomo 10gm Syrup may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(33054, 'Loomo 10gm Syrup', 'Cellrox Life Sciences', 'Loomo 10gm Syrup', 'How should Loomo 10gm Syrup be taken?', 'You should take the prescribed amount in the measuring cup or spoon that is provided with the medicine. You can take it with water or fruit juice if you find it very sweet. Drink plenty of water for better results. Swallow it as soon as you keep it in mouth to prevent tooth decay which can occur if you take it for a longer time.'),
(33055, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'What are the storage condition for Looosepain SP 50mg/325mg/15mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it as mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33056, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'What is Looosepain SP 50mg/325mg/15mg Tablet?', 'Looosepain SP 50mg/325mg/15mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Serratiopeptidase. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that causes pain and inflammation.'),
(33057, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Is it safe to use Looosepain SP 50mg/325mg/15mg Tablet?', 'Yes, Looosepain SP 50mg/325mg/15mg Tablet is safe for most of the patients, however, in some patients it may cause common unwanted side effects like nausea, vomiting, stomach pain, heartburn and diarrhea. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(33058, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Can I stop taking Looosepain SP 50mg/325mg/15mg Tablet when my pain is relieved?', 'Looosepain SP 50mg/325mg/15mg Tablet is usually used for a short term and can be discontinued when the pain is relieved. However, Looosepain SP 50mg/325mg/15mg Tablet should be continued if you are advised by your physician to do so.'),
(33059, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Can the use of Looosepain SP 50mg/325mg/15mg Tablet cause nausea and vomiting?', 'Yes, the use of Looosepain SP 50mg/325mg/15mg Tablet can cause nausea and vomiting.Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(33060, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Can the use of Looosepain SP 50mg/325mg/15mg Tablet cause dizziness?', 'Yes, the use of $ame can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better. Do not drive or use any machines.'),
(33061, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Are there any specific contraindications associated with the use of Looosepain SP 50mg/325mg/15mg Tablet?', 'The use of Looosepain SP 50mg/325mg/15mg Tablet is considered to be harmful for patients with known allergy to any of the components or excipients of this medicine or in patients with known allergy to other painkillers (NSAIDs). The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with a history of heart failure, high blood pressure, and liver or kidney disease.'),
(33062, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Can I take Looosepain SP 50mg/325mg/15mg Tablet with Vitamin B-complex?', 'Looosepain SP 50mg/325mg/15mg Tablet can be taken with Vitamin B-complex preparations. While Looosepain SP 50mg/325mg/15mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing your symptoms.'),
(33063, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Can I take Looosepain SP 50mg/325mg/15mg Tablet for stomach pain?', 'No, Looosepain SP 50mg/325mg/15mg Tablet preferably should not be taken for stomach pain without consulting a physician. This drug can increase stomach acid secretion which may aggravate an unknown underlying condition.'),
(33064, 'Looosepain SP 50mg/325mg/15mg Tablet', 'Elgoog Health Series', 'Looosepain SP 50mg/325mg/15mg Tablet', 'Can the use of Looosepain SP 50mg/325mg/15mg Tablet cause damage to kidneys?', 'No, taking higher than the recommended dose of Looosepain SP 50mg/325mg/15mg Tablet can lead to increased chances of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(33065, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'Does Loop D 10mg Tablet raise blood sugar?', 'Yes, Loop D 10mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Loop D 10mg Tablet.'),
(33066, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'What are the side effects of Loop D 10mg Tablet?', 'The common side effects of Loop D 10mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Loop D 10mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33067, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'Does Loop D 10mg Tablet increase creatinine?', 'Yes, Loop D 10mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33068, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'Does Loop D 10mg Tablet cause loss of potassium?', 'Loop D 10mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33069, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'My blood pressure is controlled now. Can I stop taking Loop D 10mg Tablet?', 'Do not stop taking Loop D 10mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33070, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'How should Loop D 10mg Tablet be taken?', 'Take Loop D 10mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Loop D 10mg Tablet once daily preferably at the same time each day. Loop D 10mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33071, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'Is Loop D 10mg Tablet stronger than furosemide?', 'Both Loop D 10mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Loop D 10mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33072, 'Loop D 10mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 10mg Tablet', 'How long does it take for Loop D 10mg Tablet to show its effects?', 'Loop D 10mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33073, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'Does Loop D 5mg Tablet raise blood sugar?', 'Yes, Loop D 5mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Loop D 5mg Tablet.'),
(33074, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'What are the side effects of Loop D 5mg Tablet?', 'The common side effects of Loop D 5mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Loop D 5mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33075, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'Does Loop D 5mg Tablet increase creatinine?', 'Yes, Loop D 5mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33076, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'Does Loop D 5mg Tablet cause loss of potassium?', 'Loop D 5mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33077, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'My blood pressure is controlled now. Can I stop taking Loop D 5mg Tablet?', 'Do not stop taking Loop D 5mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33078, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'How should Loop D 5mg Tablet be taken?', 'Take Loop D 5mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Loop D 5mg Tablet once daily preferably at the same time each day. Loop D 5mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33079, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'Is Loop D 5mg Tablet stronger than furosemide?', 'Both Loop D 5mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Loop D 5mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33080, 'Loop D 5mg Tablet', 'Nephrostar Healthcare Pvt Ltd', 'Loop D 5mg Tablet', 'How long does it take for Loop D 5mg Tablet to show its effects?', 'Loop D 5mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33081, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'Does Loopgo 10mg Tablet raise blood sugar?', 'Yes, Loopgo 10mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Loopgo 10mg Tablet.'),
(33082, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'What are the side effects of Loopgo 10mg Tablet?', 'The common side effects of Loopgo 10mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Loopgo 10mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33083, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'Does Loopgo 10mg Tablet increase creatinine?', 'Yes, Loopgo 10mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33084, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'Does Loopgo 10mg Tablet cause loss of potassium?', 'Loopgo 10mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33085, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'My blood pressure is controlled now. Can I stop taking Loopgo 10mg Tablet?', 'Do not stop taking Loopgo 10mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33086, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'How should Loopgo 10mg Tablet be taken?', 'Take Loopgo 10mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Loopgo 10mg Tablet once daily preferably at the same time each day. Loopgo 10mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33087, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'Is Loopgo 10mg Tablet stronger than furosemide?', 'Both Loopgo 10mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Loopgo 10mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33088, 'Loopgo 10mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 10mg Tablet', 'How long does it take for Loopgo 10mg Tablet to show its effects?', 'Loopgo 10mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33089, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'Does Loopgo 20mg Tablet raise blood sugar?', 'Yes, Loopgo 20mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Loopgo 20mg Tablet.'),
(33090, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'What are the side effects of Loopgo 20mg Tablet?', 'The common side effects of Loopgo 20mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Loopgo 20mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33091, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'Does Loopgo 20mg Tablet increase creatinine?', 'Yes, Loopgo 20mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33092, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'Does Loopgo 20mg Tablet cause loss of potassium?', 'Loopgo 20mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33093, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'My blood pressure is controlled now. Can I stop taking Loopgo 20mg Tablet?', 'Do not stop taking Loopgo 20mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33094, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'How should Loopgo 20mg Tablet be taken?', 'Take Loopgo 20mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Loopgo 20mg Tablet once daily preferably at the same time each day. Loopgo 20mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33095, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'Is Loopgo 20mg Tablet stronger than furosemide?', 'Both Loopgo 20mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Loopgo 20mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33096, 'Loopgo 20mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 20mg Tablet', 'How long does it take for Loopgo 20mg Tablet to show its effects?', 'Loopgo 20mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33097, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'Does Loopgo 40mg Tablet raise blood sugar?', 'Yes, Loopgo 40mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Loopgo 40mg Tablet.'),
(33098, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'What are the side effects of Loopgo 40mg Tablet?', 'The common side effects of Loopgo 40mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Loopgo 40mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33099, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'Does Loopgo 40mg Tablet increase creatinine?', 'Yes, Loopgo 40mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33100, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'Does Loopgo 40mg Tablet cause loss of potassium?', 'Loopgo 40mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33101, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'My blood pressure is controlled now. Can I stop taking Loopgo 40mg Tablet?', 'Do not stop taking Loopgo 40mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33102, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'How should Loopgo 40mg Tablet be taken?', 'Take Loopgo 40mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Loopgo 40mg Tablet once daily preferably at the same time each day. Loopgo 40mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33103, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'Is Loopgo 40mg Tablet stronger than furosemide?', 'Both Loopgo 40mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Loopgo 40mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33104, 'Loopgo 40mg Tablet', 'Calren Care Lifesciences Pvt Ltd', 'Loopgo 40mg Tablet', 'How long does it take for Loopgo 40mg Tablet to show its effects?', 'Loopgo 40mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33105, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'Is Loopra 10mg Tablet safe?', 'Loopra 10mg Tablet is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(33106, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'What is Loopra 10mg Tablet used for?', 'Loopra 10mg Tablet is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(33107, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'Can Loopra 10mg Tablet be used for IBS?', 'Loopra 10mg Tablet may be used in few cases of IBS but please consult your doctor before its use.'),
(33108, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'Can I take Loopra 10mg Tablet with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Loopra 10mg Tablet may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Loopra 10mg Tablet might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(33109, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'Does Loopra 10mg Tablet help in opiate withdrawal?', 'Loopra 10mg Tablet is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(33110, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'Is Loopra 10mg Tablet addictive?', 'No, Loopra 10mg Tablet is a safe and non-addictive anti-diarrheal drug.'),
(33111, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'Can Loopra 10mg Tablet be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Loopra 10mg Tablet may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(33112, 'Loopra 10mg Tablet', 'Intas Pharmaceuticals Ltd', 'Loopra 10mg Tablet', 'Can I take Loopra 10mg Tablet with cimetidine?', 'Cimetidine can decrease the metabolism of Loopra 10mg Tablet, increase its blood levels and hence, increase its effects and side effects. Your dose of Loopra 10mg Tablet may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(33113, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'Is Loopra 2mg Capsule safe?', 'Loopra 2mg Capsule is relatively safe if used as recommended. In case of any side effects, consult your doctor.'),
(33114, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'What is Loopra 2mg Capsule used for?', 'Loopra 2mg Capsule is used for treating short-term or long-term diarrhea, with or without any associated disease.'),
(33115, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'Can Loopra 2mg Capsule be used for IBS?', 'Loopra 2mg Capsule may be used in few cases of IBS but please consult your doctor before its use.'),
(33116, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'Can I take Loopra 2mg Capsule with antibiotics, paracetamol, ibuprofen, omeprazole, ciprofloxacin, desmopressin, ritonavir, quinidine or cotrimoxazole?', 'Loopra 2mg Capsule may be taken simultaneously with antibiotics, paracetamol, ibuprofen, omiprazole or ciprofloxacin. Loopra 2mg Capsule might interact with desmopressin, ritonavir, quinidine or cotrimoxazole. Please consult your doctor before use'),
(33117, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'Does Loopra 2mg Capsule help in opiate withdrawal?', 'Loopra 2mg Capsule is used in higher doses as a part of opiate withdrawal process. However, do consult your doctor regarding the same.'),
(33118, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'Is Loopra 2mg Capsule addictive?', 'No, Loopra 2mg Capsule is a safe and non-addictive anti-diarrheal drug.'),
(33119, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'Can Loopra 2mg Capsule be used for stomach cramps, nausea, stomach flu, rota virus diarrhea and gas?', 'Loopra 2mg Capsule may benefit few cases of stomach cramps or nausea associated with diarrhea. It is sometimes used for stomach flu, rota virus diarrhea. It is not used for gas. Please consult your doctor before taking the drug.'),
(33120, 'Loopra 2mg Capsule', 'Intas Pharmaceuticals Ltd', 'Loopra 2mg Capsule', 'Can I take Loopra 2mg Capsule with cimetidine?', 'Cimetidine can decrease the metabolism of Loopra 2mg Capsule, increase its blood levels and hence, increase its effects and side effects. Your dose of Loopra 2mg Capsule may needs to be decreased. Consult your doctor prior to taking both the drugs together.'),
(33121, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'Does Loopstar 10mg Tablet raise blood sugar?', 'Yes, Loopstar 10mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Loopstar 10mg Tablet.'),
(33122, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'What are the side effects of Loopstar 10mg Tablet?', 'The common side effects of Loopstar 10mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Loopstar 10mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33123, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'Does Loopstar 10mg Tablet increase creatinine?', 'Yes, Loopstar 10mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33124, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'Does Loopstar 10mg Tablet cause loss of potassium?', 'Loopstar 10mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33125, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'My blood pressure is controlled now. Can I stop taking Loopstar 10mg Tablet?', 'Do not stop taking Loopstar 10mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33126, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'How should Loopstar 10mg Tablet be taken?', 'Take Loopstar 10mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Loopstar 10mg Tablet once daily preferably at the same time each day. Loopstar 10mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33127, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'Is Loopstar 10mg Tablet stronger than furosemide?', 'Both Loopstar 10mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Loopstar 10mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33128, 'Loopstar 10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 10mg Tablet', 'How long does it take for Loopstar 10mg Tablet to show its effects?', 'Loopstar 10mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33129, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'Does Loopstar 5mg Tablet raise blood sugar?', 'Yes, Loopstar 5mg Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Loopstar 5mg Tablet.'),
(33130, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'What are the side effects of Loopstar 5mg Tablet?', 'The common side effects of Loopstar 5mg Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Loopstar 5mg Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33131, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'Does Loopstar 5mg Tablet increase creatinine?', 'Yes, Loopstar 5mg Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33132, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'Does Loopstar 5mg Tablet cause loss of potassium?', 'Loopstar 5mg Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33133, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'My blood pressure is controlled now. Can I stop taking Loopstar 5mg Tablet?', 'Do not stop taking Loopstar 5mg Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33134, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'How should Loopstar 5mg Tablet be taken?', 'Take Loopstar 5mg Tablet exactly as advised by your doctor. Generally, it is recommended to take Loopstar 5mg Tablet once daily preferably at the same time each day. Loopstar 5mg Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33135, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'Is Loopstar 5mg Tablet stronger than furosemide?', 'Both Loopstar 5mg Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Loopstar 5mg Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33136, 'Loopstar 5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar 5mg Tablet', 'How long does it take for Loopstar 5mg Tablet to show its effects?', 'Loopstar 5mg Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33137, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'Can the use of Loopstar Plus 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Loopstar Plus 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(33138, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'Can the use of Loopstar Plus 50mg/10mg Tablet cause gout?', 'Yes, Loopstar Plus 50mg/10mg Tablet can cause gout. Loopstar Plus 50mg/10mg Tablet contains torasemide which can increase the blood uric acid levels by increasing its absorption from the kidneys. Increased uric acid levels can cause a gout attack. Inform your doctor if you have hyperuricemia (excess of uric acid in blood) or a history of gout before taking this medicine. Use of Loopstar Plus 50mg/10mg Tablet should be avoided in patients with gout.'),
(33139, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'Can the use of Loopstar Plus 50mg/10mg Tablet cause dehydration (excessive loss of fluid)?', 'Yes, the use of Loopstar Plus 50mg/10mg Tablet can cause dehydration (excessive loss of fluid). The patient may experience dryness of the mouth, thirst, drowsiness, restlessness, muscle pain, weakness, tiredness, fall in blood pressure (hypotension), decreased urination (oliguria), increased heart rate (tachycardia), nausea and vomiting. Inform your doctor if you experience persistent problems while taking this medicine.'),
(33140, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'Can the use of Loopstar Plus 50mg/10mg Tablet cause hyperkalemia (increased potassium levels)?', 'Yes, Loopstar Plus 50mg/10mg Tablet can cause hyperkalemia (increased potassium levels). This occurs more commonly in patients with underlying kidney disease or in patients taking excessive potassium in their diet. High potassium levels can cause fatal heart problems. It is very important to get electrolytes and kidney function tests done on a regular basis while you are taking this medicine.'),
(33141, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'What are the contraindications to the use of Loopstar Plus 50mg/10mg Tablet?', 'The use of Loopstar Plus 50mg/10mg Tablet should be avoided in patients with hypersensitivity to torasemide, sulfonylureas or spironolactone or any other ingredient of the product. The use of this medicine should also be avoided in patients with anuria, acute renal insufficiency, hepatic coma and pre-coma, low blood pressure (hypotension), cardiac arrhythmias, patients taking aminoglycosides or cephalosporins, kidney dysfunction due to drugs which cause renal damage, patients with high potassium levels (hyperkalemia), Addison\'s disease and in children with moderate to severe renal impairment.'),
(33142, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'What is the storage condition for the Loopstar Plus 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33143, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'What is Loopstar Plus 50mg/10mg Tablet?', 'Loopstar Plus 50mg/10mg Tablet is a fixed-dose combination of torasemide (a loop diuretic) and spironolactone (an antagonist of aldosterone). Both are diuretics and they help to remove excess fluid from the body. The use of this combination is advised in patients of congestive heart failure (heart failure leading to fluid accumulation in the lung and rest of the body), nephrotic syndrome (a kidney disorder), liver cirrhosis with fluid retention (edema) and swelling of the abdomen (ascites).'),
(33144, 'Loopstar Plus 50mg/10mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/10mg Tablet', 'Is it safe to use Loopstar Plus 50mg/10mg Tablet?', 'Yes, Loopstar Plus 50mg/10mg Tablet is safe to use in most of the patients. However, in some patients it may cause common side effects like dizziness, dehydration, decreased sodium level in blood, breast enlargement in males, decreased magnesium level in blood, decreased calcium level in blood, increased blood uric acid. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(33145, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'Can the use of Loopstar Plus 50mg/5mg Tablet cause dizziness?', 'Yes, the use of Loopstar Plus 50mg/5mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(33146, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'Can the use of Loopstar Plus 50mg/5mg Tablet cause gout?', 'Yes, Loopstar Plus 50mg/5mg Tablet can cause gout. Loopstar Plus 50mg/5mg Tablet contains torasemide which can increase the blood uric acid levels by increasing its absorption from the kidneys. Increased uric acid levels can cause a gout attack. Inform your doctor if you have hyperuricemia (excess of uric acid in blood) or a history of gout before taking this medicine. Use of Loopstar Plus 50mg/5mg Tablet should be avoided in patients with gout.'),
(33147, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'Can the use of Loopstar Plus 50mg/5mg Tablet cause dehydration (excessive loss of fluid)?', 'Yes, the use of Loopstar Plus 50mg/5mg Tablet can cause dehydration (excessive loss of fluid). The patient may experience dryness of the mouth, thirst, drowsiness, restlessness, muscle pain, weakness, tiredness, fall in blood pressure (hypotension), decreased urination (oliguria), increased heart rate (tachycardia), nausea and vomiting. Inform your doctor if you experience persistent problems while taking this medicine.'),
(33148, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'Can the use of Loopstar Plus 50mg/5mg Tablet cause hyperkalemia (increased potassium levels)?', 'Yes, Loopstar Plus 50mg/5mg Tablet can cause hyperkalemia (increased potassium levels). This occurs more commonly in patients with underlying kidney disease or in patients taking excessive potassium in their diet. High potassium levels can cause fatal heart problems. It is very important to get electrolytes and kidney function tests done on a regular basis while you are taking this medicine.'),
(33149, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'What are the contraindications to the use of Loopstar Plus 50mg/5mg Tablet?', 'The use of Loopstar Plus 50mg/5mg Tablet should be avoided in patients with hypersensitivity to torasemide, sulfonylureas or spironolactone or any other ingredient of the product. The use of this medicine should also be avoided in patients with anuria, acute renal insufficiency, hepatic coma and pre-coma, low blood pressure (hypotension), cardiac arrhythmias, patients taking aminoglycosides or cephalosporins, kidney dysfunction due to drugs which cause renal damage, patients with high potassium levels (hyperkalemia), Addison\'s disease and in children with moderate to severe renal impairment.'),
(33150, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'What is the storage condition for the Loopstar Plus 50mg/5mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33151, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'What is Loopstar Plus 50mg/5mg Tablet?', 'Loopstar Plus 50mg/5mg Tablet is a fixed-dose combination of torasemide (a loop diuretic) and spironolactone (an antagonist of aldosterone). Both are diuretics and they help to remove excess fluid from the body. The use of this combination is advised in patients of congestive heart failure (heart failure leading to fluid accumulation in the lung and rest of the body), nephrotic syndrome (a kidney disorder), liver cirrhosis with fluid retention (edema) and swelling of the abdomen (ascites).'),
(33152, 'Loopstar Plus 50mg/5mg Tablet', 'Katzung Pharmaceuticals Pvt Ltd', 'Loopstar Plus 50mg/5mg Tablet', 'Is it safe to use Loopstar Plus 50mg/5mg Tablet?', 'Yes, Loopstar Plus 50mg/5mg Tablet is safe to use in most of the patients. However, in some patients it may cause common side effects like dizziness, dehydration, decreased sodium level in blood, breast enlargement in males, decreased magnesium level in blood, decreased calcium level in blood, increased blood uric acid. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(33153, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'Does Looptor 10 Tablet raise blood sugar?', 'Yes, Looptor 10 Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Looptor 10 Tablet.'),
(33154, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'What are the side effects of Looptor 10 Tablet?', 'The common side effects of Looptor 10 Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Looptor 10 Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33155, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'Does Looptor 10 Tablet increase creatinine?', 'Yes, Looptor 10 Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33156, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'Does Looptor 10 Tablet cause loss of potassium?', 'Looptor 10 Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33157, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'My blood pressure is controlled now. Can I stop taking Looptor 10 Tablet?', 'Do not stop taking Looptor 10 Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33158, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'How should Looptor 10 Tablet be taken?', 'Take Looptor 10 Tablet exactly as advised by your doctor. Generally, it is recommended to take Looptor 10 Tablet once daily preferably at the same time each day. Looptor 10 Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33159, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'Is Looptor 10 Tablet stronger than furosemide?', 'Both Looptor 10 Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Looptor 10 Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33160, 'Looptor 10 Tablet', 'Kenriz Care', 'Looptor 10 Tablet', 'How long does it take for Looptor 10 Tablet to show its effects?', 'Looptor 10 Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33161, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'Does Looptor 20 Tablet raise blood sugar?', 'Yes, Looptor 20 Tablet may raise blood sugar levels causing hyperglycemia. Hence, it is important to keep a track of your blood glucose levels during treatment with Looptor 20 Tablet.'),
(33162, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'What are the side effects of Looptor 20 Tablet?', 'The common side effects of Looptor 20 Tablet include headache, dizziness, dehydration, constipation, decreased blood pressure and stomach upset. Some of the serious side effects of Looptor 20 Tablet include dehydration and electrolyte imbalance, rapid or excessive weight loss, vomiting blood, chest pain, difficulty breathing or swallowing, blisters or peeling skin, hives, rash, and itching. Consult your doctor immediately if you notice any such symptoms.'),
(33163, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'Does Looptor 20 Tablet increase creatinine?', 'Yes, Looptor 20 Tablet may cause a mild increase in creatinine values depending on the dose you are taking. These increased creatinine levels may increase slightly more when this medicine is used for long term. However, with discontinuation of the treatment, these levels return to their base value.'),
(33164, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'Does Looptor 20 Tablet cause loss of potassium?', 'Looptor 20 Tablet may not cause direct potassium loss. But, in some cases, its use may cause excess loss of water which may lead to dehydration. This, as a result, may cause loss of potassium, sodium, calcium and magnesium.'),
(33165, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'My blood pressure is controlled now. Can I stop taking Looptor 20 Tablet?', 'Do not stop taking Looptor 20 Tablet without talking to your doctor. Stopping the medicine may not overshoot your blood pressure levels but may make your condition as it was before treatment. Therefore, discuss this with your doctor who will advise you to change the medicine or the dosage as per your requirement.'),
(33166, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'How should Looptor 20 Tablet be taken?', 'Take Looptor 20 Tablet exactly as advised by your doctor. Generally, it is recommended to take Looptor 20 Tablet once daily preferably at the same time each day. Looptor 20 Tablet is known to cause excess urination, and hence it is advised to take it in the morning.'),
(33167, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'Is Looptor 20 Tablet stronger than furosemide?', 'Both Looptor 20 Tablet and furosemide are almost similar in terms of safety and effectiveness. The only difference is that Looptor 20 Tablet has a longer duration of action in comparison to furosemide but the effect of both starts within an hour of intake.'),
(33168, 'Looptor 20 Tablet', 'Kenriz Care', 'Looptor 20 Tablet', 'How long does it take for Looptor 20 Tablet to show its effects?', 'Looptor 20 Tablet starts acting within an hour of taking it orally and its effect lasts for about 6-8 hours when given orally.'),
(33169, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. Can the use of Looptor SP 50mg/10mg Tablet cause dizziness?', 'Yes, the use of Looptor SP 50mg/10mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for some time and resume once you feel better. Do not drive or use any machines.'),
(33170, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. Can the use of Looptor SP 50mg/10mg Tablet cause gout?', 'Yes, Looptor SP 50mg/10mg Tablet can cause gout. Looptor SP 50mg/10mg Tablet contains torasemide which can increase the blood uric acid levels by increasing its absorption from the kidneys. Increased uric acid levels can cause a gout attack. Inform your doctor if you have hyperuricemia (excess of uric acid in blood) or a history of gout before taking this medicine. Use of Looptor SP 50mg/10mg Tablet should be avoided in patients with gout.'),
(33171, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. Can the use of Looptor SP 50mg/10mg Tablet cause dehydration (excessive loss of fluid)?', 'Yes, the use of Looptor SP 50mg/10mg Tablet can cause dehydration (excessive loss of fluid). The patient may experience dryness of the mouth, thirst, drowsiness, restlessness, muscle pain, weakness, tiredness, fall in blood pressure (hypotension), decreased urination (oliguria), increased heart rate (tachycardia), nausea and vomiting. Inform your doctor if you experience persistent problems while taking this medicine.'),
(33172, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. Can the use of Looptor SP 50mg/10mg Tablet cause hyperkalemia (increased potassium levels)?', 'Yes, Looptor SP 50mg/10mg Tablet can cause hyperkalemia (increased potassium levels). This occurs more commonly in patients with underlying kidney disease or in patients taking excessive potassium in their diet. High potassium levels can cause fatal heart problems. It is very important to get electrolytes and kidney function tests done on a regular basis while you are taking this medicine.'),
(33173, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. What are the contraindications to the use of Looptor SP 50mg/10mg Tablet?', 'The use of Looptor SP 50mg/10mg Tablet should be avoided in patients with hypersensitivity to torasemide, sulfonylureas or spironolactone or any other ingredient of the product. The use of this medicine should also be avoided in patients with anuria, acute renal insufficiency, hepatic coma and pre-coma, low blood pressure (hypotension), cardiac arrhythmias, patients taking aminoglycosides or cephalosporins, kidney dysfunction due to drugs which cause renal damage, patients with high potassium levels (hyperkalemia), Addison\'s disease and in children with moderate to severe renal impairment.'),
(33174, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. What is the storage condition for the Looptor SP 50mg/10mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33175, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. What is Looptor SP 50mg/10mg Tablet?', 'Looptor SP 50mg/10mg Tablet is a fixed-dose combination of torasemide (a loop diuretic) and spironolactone (an antagonist of aldosterone). Both are diuretics and they help to remove excess fluid from the body. The use of this combination is advised in patients of congestive heart failure (heart failure leading to fluid accumulation in the lung and rest of the body), nephrotic syndrome (a kidney disorder), liver cirrhosis with fluid retention (edema) and swelling of the abdomen (ascites).'),
(33176, 'Looptor SP 50mg/10mg Tablet', 'Maksun Biotech Pvt Ltd', 'Looptor SP 50mg/10mg Tablet', 'Q. Is it safe to use Looptor SP 50mg/10mg Tablet?', 'Yes, Looptor SP 50mg/10mg Tablet is safe to use in most of the patients. However, in some patients it may cause common side effects like dizziness, dehydration, decreased sodium level in blood, breast enlargement in males, decreased magnesium level in blood, decreased calcium level in blood, increased blood uric acid. Inform your doctor if you experience any persistent problem while taking this medicine.'),
(33177, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'How long does it take for Loosep Solution Sugar Free to work?', 'It takes about 2-3 days to see the benefits of the treatment. Talk to your doctor if you feel constipated even after 3 days of taking Loosep Solution Sugar Free.'),
(33178, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'What is Loosep Solution Sugar Free used for?', 'Loosep Solution Sugar Free is used to treat constipation which is presented as infrequent bowel movements, hard and dry stools. It is also used in patients with hepatic encephalopathy which is a serious liver problem causing confusion, tremors and decreased level of consciousness.'),
(33179, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'Is Loosep Solution Sugar Free a laxative?', 'Yes, Loosep Solution Sugar Free is a laxative which softens the stools by pulling in water from the body to the large intestine. It is also used to reduce the amount of ammonia in the blood of patients with liver disease.');
INSERT INTO `adddummyfaq` (`id`, `name`, `manuf`, `new_name`, `qtn`, `ans`) VALUES
(33180, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'What are the side effects of taking Loosep Solution Sugar Free?', 'Loosep Solution Sugar Free very commonly causes diarrhea, flatulence, nausea, vomiting and abdominal pain. Diarrhea and abdominal pain occur due to a high dose. In such cases, the dose should be reduced. Flatulence may occur during the first few days of treatment and may disappear after sometime. This medicine may also cause electrolyte imbalance. However, this is an uncommon side effect.'),
(33181, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'Is it okay to take Loosep Solution Sugar Free every day?', 'You should take Loosep Solution Sugar Free for as long as advised by your doctor. You may also take it for as long as constipation lasts, which may be up to a week. For hepatic encephalopathy, the treatment may be longer, even several months.'),
(33182, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'Who should not be given Loosep Solution Sugar Free?', 'Loosep Solution Sugar Free should not be given to patients who are allergic to it or are intolerant to lactose (cannot process lactose). It should also be avoided in patients having galactosemia, a rare health problem where the body cannot process galactose.'),
(33183, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'Can I take other laxatives along with Loosep Solution Sugar Free?', 'Usually, one laxative is sufficient to relieve constipation. In case you need more, your doctor may advise you to take one more laxative along with Loosep Solution Sugar Free. The risk of side effects is more with two laxatives.'),
(33184, 'Loosep Solution Sugar Free', 'Sepik Life Sciences', 'Loosep Solution Sugar Free', 'What if I take more than the recommended dose of Loosep Solution Sugar Free?', 'Taking more than the recommended dose of Loosep Solution Sugar Free may cause abdominal pain, electrolyte imbalance and diarrhea, which may last for a couple of days.'),
(33185, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'How should Loosepain 75mg Injection injection be administered?', 'Loosepain 75mg Injection injection should only be given by a healthcare professional. It can be given deep into the muscle (intramuscularly), preferably in buttock, under the skin (subcutaneously), or directly into a vein (intravenously) as a bolus and not as infusion. The dose should not exceed the prescribed quantity and injection should not be given for more than 2 days.'),
(33186, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'What is the most important information I need to know about Loosepain 75mg Injection?', 'It is important to know that Loosepain 75mg Injection may increase your chance of having a heart attack or stroke. The risk is more if you take higher doses and have been using the medicine for a longer time. Also, taking Loosepain 75mg Injection may cause ulcers, bleeding, or holes in your stomach and intestine. These problems may happen without warning symptoms at any time during treatment and may even cause death. Therefore, if you encounter any such problems, consult your doctor immediately.'),
(33187, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'Is Loosepain 75mg Injection a good painkiller?', 'Loosepain 75mg Injection is effective in relieving pain and inflammation. It is used for various sorts of pain such as sprains, strains and other injuries. It is also helpful in various types of arthritis, gout, pain and inflammation following surgery.'),
(33188, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'Can Loosepain 75mg Injection hurt your kidneys?', 'Long-term use and high doses of Loosepain 75mg Injection may cause renal problems such as protein or blood in urine and painful urination. Patients who are at maximum risk of developing kidney problems include people who are dehydrated, have heart failure, impaired kidney function, hypertension, elderly, who are on medicines which cause excess urination (diuretics), or medicines which have significant impact on kidney function. Hence, for such patients kidney function monitoring is recommended.'),
(33189, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'Does Loosepain 75mg Injection make you drowsy?', 'Loosepain 75mg Injection can cause drowsiness and also dizziness, fatigue (tiredness) and visual disturbances. However, it is not very common and may not affect everyone. If you experience these symptoms avoid driving or operating heavy machinery.'),
(33190, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'Can Loosepain 75mg Injection be taken during pregnancy?', 'You should not take Loosepain 75mg Injection during the last 3 months of pregnancy as it may cause harmful effects on your baby. Use of Loosepain 75mg Injection can also lead to reduced labor (premature delivery). Hence, it is advised to avoid using Loosepain 75mg Injection during the first 6 months of pregnancy also.  In some cases, Loosepain 75mg Injection may be prescribed in pregnant women only if the benefits outweigh the risks involved with its use in pregnant women. If not sure, consult your doctor regarding its use.'),
(33191, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'Does Loosepain 75mg Injection get you high?', 'No, Loosepain 75mg Injection does not get you high. It does not have an abuse potential (drug-seeking behavior) and does not cause physical or psychological dependence. However, if you do not feel well, consult your doctor.'),
(33192, 'Loosepain 75mg Injection', 'Elgoog Health Series', 'Loosepain 75mg Injection', 'Is Loosepain 75mg Injection a narcotic?', 'No, Loosepain 75mg Injection is not a narcotic. It belongs to non-steroidal anti-inflammatory drugs (NSAIDs) group of medicines.'),
(33193, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'What is Loosepain MR 250mg/50mg/325mg Tablet?', 'Loosepain MR 250mg/50mg/325mg Tablet is a combination of three medicines: Diclofenac, Paracetamol, and Chlorzoxazone. This medication helps in relieving muscle pain. Chlorzoxazone is a muscle relaxant which works by acting on the central nervous system. Diclofenac and Paracetamol work by lowering the chemical substance (prostaglandins) in the body that causes pain and inflammation.'),
(33194, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'Is it safe to use Loosepain MR 250mg/50mg/325mg Tablet?', 'Loosepain MR 250mg/50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause common side effects like nausea, vomiting, heartburn, stomach pain, diarrhea, loss of appetite, dryness in the mouth, weakness, sleepiness and other uncommon or rare side effects. Inform your doctor as soon as possible if you experience any persistent problem due to the medication.'),
(33195, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'Can I stop taking Loosepain MR 250mg/50mg/325mg Tablet when my pain is relieved?', 'Loosepain MR 250mg/50mg/325mg Tablet should be continued if advised for a specific time duration by your doctor. However, it can be discontinued if you are using it for short-term pain relief.'),
(33196, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'Can the use of Loosepain MR 250mg/50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Loosepain MR 250mg/50mg/325mg Tablet can cause nausea and vomiting. In case, you experience nausea while taking this medicine, take it with milk, food or with antacids. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(33197, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'Can the use of Loosepain MR 250mg/50mg/325mg Tablet cause dizziness?', 'Yes, the use of Loosepain MR 250mg/50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded, it is better to rest for sometime and resume once you feel better.'),
(33198, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'Can the use of Loosepain MR 250mg/50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Loosepain MR 250mg/50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended to patients with underlying kidney disease.'),
(33199, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'Can I take a higher than the recommended dose of this medicine?', 'No, taking a higher than the recommended dose of Loosepain MR 250mg/50mg/325mg Tablet can increase the risks of side effects. If you are experiencing increased severity of pain or if the pain is not relieved by the recommended doses, please consult your doctor for re-evaluation.'),
(33200, 'Loosepain MR 250mg/50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain MR 250mg/50mg/325mg Tablet', 'What are the recommended storage conditions for Loosepain MR 250mg/50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.'),
(33201, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'What is Loosepain P 50mg/325mg Tablet?', 'Loosepain P 50mg/325mg Tablet is a combination of two medicines: Diclofenac and Paracetamol. This medication helps in relieving pain and inflammation. It works by lowering the levels of chemical substances in the body that cause pain and inflammation. Paracetamol / Acetaminophen has an early onset of action which means that it takes very less time to start its action and it helps in relieving the symptoms till diclofenac starts working.'),
(33202, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Is it safe to use Loosepain P 50mg/325mg Tablet?', 'Yes, Loosepain P 50mg/325mg Tablet is safe for most of the patients. However, in some patients it may cause some unwanted common side effects like nausea, vomiting, stomach pain, heartburn, diarrhea and other uncommon and rare side effects. Inform your doctor if you experience any persistent problem while taking this medication.'),
(33203, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Can I stop taking Loosepain P 50mg/325mg Tablet when my pain is relieved?', 'Loosepain P 50mg/325mg Tablet, when used for long-term pain relief, should be continued for as long as advised by your physician. It can be discontinued if you are using it for short-term pain relief.'),
(33204, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Can the use of Loosepain P 50mg/325mg Tablet cause nausea and vomiting?', 'Yes, the use of Loosepain P 50mg/325mg Tablet can cause nausea and vomiting. Taking it with milk, food or with antacids can prevent nausea. Avoid taking fatty or fried foods along with this medication. In case of vomiting, drink plenty of water or other fluids by taking small frequent sips. Talk to your doctor if vomiting persists and you notice signs of dehydration, like dark colored and strong-smelling urine and a low frequency of urination. Do not take any other medicine without speaking to your doctor.'),
(33205, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Can the use of Loosepain P 50mg/325mg Tablet cause dizziness?', 'Yes, the use of Loosepain P 50mg/325mg Tablet can cause dizziness (feeling faint, weak, unsteady or lightheaded) in some patients. If you feel dizzy or lightheaded it is better to rest for some time and resume once you feel better.'),
(33206, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Can the use of Loosepain P 50mg/325mg Tablet cause damage to kidneys?', 'Yes, the long-term use of Loosepain P 50mg/325mg Tablet can cause damage to the kidneys. Normal kidneys produce a chemical called prostaglandins that protect them from damage. Use of painkillers lowers the levels of prostaglandins in the body leading to kidney damage on long-term use. Use of painkillers is not recommended in patients with underlying kidney disease.'),
(33207, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Are there any specific contraindications associated with the use of Loosepain P 50mg/325mg Tablet?', 'The use of Loosepain P 50mg/325mg Tablet is considered to be harmful in patients with known allergy to  painkillers (NSAIDs) or any of the components or excipients of this medicine. The use of this medicine should preferably be avoided in patients with a history of stomach ulcers or in patients with active, recurrent stomach ulcer/bleeding. It should also be avoided in patients with the history of heart failure, high blood pressure, and liver or kidney disease.'),
(33208, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Can Loosepain P 50mg/325mg Tablet be taken with Vitamin B-complex?', 'Yes, Loosepain P 50mg/325mg Tablet can be taken with Vitamin B-complex preparations. While Loosepain P 50mg/325mg Tablet helps to relieve pain, Vitamin B-complex can help to correct the vitamin deficiency that might be causing the underlying painful condition.'),
(33209, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'Is it safe to take a higher than the recommended dose of Loosepain P 50mg/325mg Tablet?', 'No, taking a higher than the recommended dose of Loosepain P 50mg/325mg Tablet can lead to increased chances of side effects like nausea, vomiting, heartburn, indigestion, diarrhea and can also damage your kidneys on long-term use. If you are experiencing increased severity of pain or the pain is not relieved by the recommended doses of this medicine, please consult your doctor for re-evaluation.'),
(33210, 'Loosepain P 50mg/325mg Tablet', 'Elgoog Health Series', 'Loosepain P 50mg/325mg Tablet', 'What is the recommended storage condition for Loosepain P 50mg/325mg Tablet?', 'Keep this medicine in the container or the pack it came in, tightly closed. Store it according to the instructions mentioned on the pack or label. Dispose of the unused medicine. Make sure it is not consumed by pets, children and other people.');

-- --------------------------------------------------------

--
-- Table structure for table `addoninvoice`
--

CREATE TABLE `addoninvoice` (
  `addinv_stokinid` int NOT NULL COMMENT 'stockin_id',
  `addinv_ref` int NOT NULL COMMENT 'old invoice id',
  `addinv_invoice` int NOT NULL COMMENT 'new invoice_id',
  `addinv_item` int NOT NULL,
  `addinv_short` int NOT NULL,
  `addinv_supply` int NOT NULL,
  `addinv_status` int NOT NULL DEFAULT '1',
  `addinv_updby` int NOT NULL,
  `addinv_updon` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `addoninvoice`
--

INSERT INTO `addoninvoice` (`addinv_stokinid`, `addinv_ref`, `addinv_invoice`, `addinv_item`, `addinv_short`, `addinv_supply`, `addinv_status`, `addinv_updby`, `addinv_updon`) VALUES
(37, 28, 29, 546001, 10, 10, 1, 206, '2025-12-16'),
(59, 43, 44, 655369, 10, 10, 1, 206, '2026-01-20'),
(61, 45, 46, 26181, 10, 10, 1, 206, '2026-01-21'),
(70, 53, 55, 655367, 10, 10, 1, 206, '2026-03-12'),
(84, 61, 62, 56213, 5, 5, 1, 206, '2026-04-24'),
(86, 63, 64, 5218, 20, 20, 1, 206, '2026-04-28'),
(89, 66, 67, 310594, 10, 10, 1, 201, '2026-04-29');

-- --------------------------------------------------------

--
-- Table structure for table `address_tbl`
--

CREATE TABLE `address_tbl` (
  `addr_id` int NOT NULL,
  `addr_owner` int NOT NULL COMMENT 'Customer/guest id',
  `addr_type` int NOT NULL COMMENT '1:customer, 2:guest',
  `addr_party` varchar(50) NOT NULL,
  `addr_door` varchar(100) NOT NULL,
  `addr_street` varchar(100) NOT NULL,
  `addr_city` varchar(100) NOT NULL,
  `addr_state` varchar(100) NOT NULL,
  `addr_country` varchar(100) NOT NULL,
  `addr_pin` varchar(10) NOT NULL,
  `addr_phone` varchar(20) NOT NULL,
  `addr_email` varchar(50) NOT NULL,
  `addr_default` int NOT NULL,
  `addr_status` int NOT NULL DEFAULT '1',
  `addr_crtdby` int NOT NULL,
  `addr_crtdon` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `addr_updby` int NOT NULL,
  `addr_updon` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
